Beginning of the symbols from controller

Ref #496
pull/638/head
Julien Duponchelle 8 years ago
parent deb97f8ec0
commit b66f7daa28
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -37,3 +37,7 @@ Compute
The process running on each server with GNS3. The GNS3 compute node
is controlled by the GNS3 controller.
Symbol
------
Symbol are the icon used for nodes.

@ -25,6 +25,7 @@ from ..config import Config
from .project import Project
from .compute import Compute
from .notification import Notification
from .symbols import Symbols
from ..version import __version__
from .topology import load_topology
@ -39,6 +40,7 @@ class Controller:
self._computes = {}
self._projects = {}
self._notification = Notification(self)
self.symbols = Symbols()
if sys.platform.startswith("win"):
config_path = os.path.join(os.path.expandvars("%APPDATA%"), "GNS3")

@ -0,0 +1,50 @@
#!/usr/bin/env python
#
# Copyright (C) 2016 GNS3 Technologies Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
from ..utils.get_resource import get_resource
class Symbols:
"""
Manage GNS3 symbols
"""
def __init__(self):
self.list()
def list(self):
self._symbols_path = {}
symbols = []
for file in os.listdir(get_resource("symbols")):
if file.startswith('.'):
continue
symbol_id = ':/symbols/' + file
symbols.append({
'symbol_id': symbol_id,
'filename': file,
'builtin': True,
'url': '/static/builtin_symbols/' + file
})
self._symbols_path[symbol_id] = os.path.join(get_resource("symbols"), file)
#TODO: support ~/GNS3/symbols directory
return symbols
def get_path(self, symbol_id):
return self._symbols_path[symbol_id]

@ -16,6 +16,8 @@
from gns3server.handlers.index_handler import IndexHandler
from gns3server.handlers.static_handler import StaticHandler
from gns3server.handlers.api.controller import *
from gns3server.handlers.api.compute import *

@ -21,3 +21,4 @@ from .node_handler import NodeHandler
from .link_handler import LinkHandler
from .server_handler import ServerHandler
from .drawing_handler import DrawingHandler
from .symbol_handler import SymbolHandler

@ -0,0 +1,38 @@
#!/usr/bin/env python
#
# Copyright (C) 2016 GNS3 Technologies Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from gns3server.web.route import Route
from gns3server.controller import Controller
import logging
log = logging.getLogger(__name__)
class SymbolHandler:
"""API entry points for symbols management."""
@Route.get(
r"/symbols",
description="List of symbols",
status_codes={
200: "Symbols list returned"
})
def list(request, response):
controller = Controller.instance()
response.json(controller.symbols.list())

@ -0,0 +1,66 @@
#
# Copyright (C) 2016 GNS3 Technologies Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
import asyncio
import mimetypes
from aiohttp import hdrs
from gns3server.web.route import Route
from gns3server.utils.get_resource import get_resource
class StaticHandler:
@Route.get(
r"/static/{type}/{path:.+}",
description="Serve static content from various locations"
)
def get(request, response):
type = request.match_info["type"]
# CLeanup the path for security
path = os.path.normpath(request.match_info["path"]).strip('/.')
if type == "builtin_symbols":
try:
yield from StaticHandler._serve_file(os.path.join(get_resource("symbols"), path), request, response)
except OSError:
response.set_status(404)
@asyncio.coroutine
def _serve_file(path, request, response):
ct, encoding = mimetypes.guess_type(path)
if not ct:
ct = 'application/octet-stream'
if encoding:
response.headers[hdrs.CONTENT_ENCODING] = encoding
response.content_type = ct
st = os.stat(path)
response.last_modified = st.st_mtime
response.content_length = st.st_size
with open(path, 'rb') as fobj:
response.start(request)
chunk_size = 4096
chunk = fobj.read(chunk_size)
while chunk:
response.write(chunk)
yield from response.drain()
chunk = fobj.read(chunk_size)
if chunk:
response.write(chunk[:count])
yield from response.drain()

@ -0,0 +1,304 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:ns="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45.1"
width="51.358818"
height="47.630692"
version="1.0"
sodipodi:docname="PBX.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:docbase="X:\symbols">
<title
id="title4697">PBX</title>
<metadata
id="metadata2003">
<rdf:RDF>
<ns:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<ns:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
<dc:title>PBX</dc:title>
<dc:creator>
<ns:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</ns:Agent>
</dc:creator>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<dc:publisher>
<ns:Agent>
<dc:title>GNS-3</dc:title>
</ns:Agent>
</dc:publisher>
</ns:Work>
<ns:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<ns:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<ns:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<ns:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<ns:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<ns:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<ns:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</ns:License>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 23.815346 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="51.358818 : 23.815346 : 1"
inkscape:persp3d-origin="25.679409 : 15.876897 : 1"
id="perspective4471" />
<linearGradient
inkscape:collect="always"
id="linearGradient10123">
<stop
style="stop-color:#e4405c;stop-opacity:1;"
offset="0"
id="stop10125" />
<stop
style="stop-color:#e4405c;stop-opacity:0;"
offset="1"
id="stop10127" />
</linearGradient>
<linearGradient
id="linearGradient8331">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop8333" />
<stop
style="stop-color:#dde3ef;stop-opacity:1;"
offset="1"
id="stop8335" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6587">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942481e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942482e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10123"
id="linearGradient10129"
x1="1.3990936"
y1="1.4711363"
x2="0.49966058"
y2="0.56367606"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117962,0,0,1.035008,-4.0973e-2,-6.788682e-3)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8331"
id="linearGradient6875"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(24.897735,0,0,25.405463,-9.0988193,-4.8632254)"
x1="2.1178279"
y1="0.30649999"
x2="-0.4954865"
y2="0.30649999" />
<inkscape:perspective
id="perspective4645"
inkscape:persp3d-origin="88.58268 : 47.244095 : 1"
inkscape:vp_z="177.16536 : 70.866142 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 70.866142 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
inkscape:window-height="676"
inkscape:window-width="960"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="5.5831974"
inkscape:cx="17.682552"
inkscape:cy="20.972151"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:current-layer="svg1998"
showgrid="false"
inkscape:window-maximized="0" />
<path
id="path11907"
d="M 1.8402723,44.565612 L 1.8402723,47.615693 L 44.293781,47.615693 L 44.293781,44.565612 L 1.8402723,44.565612"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001" />
<path
id="path11020"
d="M 44.370594,6.1851672 L 51.194316,1.0980117 L 51.358819,41.344844 L 44.266438,47.63069 L 44.370594,6.1851672"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
sodipodi:nodetypes="ccccc" />
<path
id="path2037"
d="M 0.062500355,5.1558922 L 0.062500355,46.326915 L 44.407694,46.326915 L 44.407694,5.1558922 L 0.062500355,5.1558922"
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2041"
d="M -0.38461268,5.6292351 L 5.2920708,0.21786924 L 50.13289,0.21786924 L 44.406412,5.6292351 L -0.38461268,5.6292351"
style="fill:url(#linearGradient6875);fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2045"
d="M 44.273363,5.1335036 L 49.931392,0.17309204 L 49.931392,41.393412 L 44.273363,46.353824 L 44.273363,5.1335036"
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
style="fill:#131516"
d="M 22.054092,7.8443674 L 16.964157,13.466058 L 27.144079,13.466058 L 22.054092,7.8443674 z "
id="path4615" />
<path
style="fill:#131516"
d="M 22.054092,43.291105 L 27.144079,37.662687 L 16.964157,37.662687 L 22.054092,43.291105 z "
id="path4617" />
<path
style="fill:#131516"
d="M 2.5803714,26.587724 L 7.6703061,32.189174 L 7.6703061,20.966091 L 2.5803714,26.587724 z "
id="path4619" />
<path
style="fill:#131516"
d="M 41.509547,26.587724 L 36.419612,20.966091 L 36.419612,32.189174 L 41.509547,26.587724 z "
id="path4621" />
<path
style="fill:#131516"
d="M 25.995303,20.892031 L 18.436749,20.892031 L 18.436749,24.588171 L 14.220621,29.233573 L 14.220621,33.340433 L 14.64834,33.825156 L 29.747077,33.825156 L 30.217588,33.300011 L 30.217588,29.233573 L 25.995303,24.588171 L 25.995303,20.892031 z "
id="path4623" />
<path
style="fill:#131516"
d="M 24.204949,16.623597 L 22.934004,16.536083 L 20.483755,16.536083 L 18.613974,16.738022 L 16.621972,17.222802 L 14.825564,17.916248 L 13.389607,18.798179 L 12.210302,19.983133 L 11.226539,22.016323 L 11.226539,24.534294 L 12.118663,25.517251 L 15.033318,25.517251 L 15.894861,24.554476 L 15.894861,22.272197 L 15.406032,22.272197 L 15.760429,20.743912 L 17.984607,19.659985 L 19.567208,19.377201 L 20.728143,19.303142 L 22.237422,19.289687 L 23.422833,19.336779 L 25.042068,19.538775 L 26.65525,20.043738 L 27.962829,20.488038 L 28.854953,22.251957 L 28.421129,22.251957 L 28.421129,24.561203 L 29.276566,25.510524 L 32.142322,25.517251 L 33.003917,24.554476 L 33.003917,22.016323 L 32.252331,20.461128 L 30.816374,18.905934 L 29.319359,17.943158 L 27.742864,17.222802 L 25.567584,16.758261 L 24.204949,16.623597 L 24.204949,16.623597 z "
id="path4625" />
<path
style="fill:#ffffff;fill-opacity:1"
d="M 22.359642,8.1810282 L 17.275813,13.802661 L 27.449577,13.802661 L 22.359642,8.1810282 L 22.359642,8.1810282 z "
id="path4627" />
<path
style="fill:#ffffff"
d="M 22.359642,43.627708 L 27.449577,38.012803 L 17.275813,38.012803 L 22.359642,43.627708 z "
id="path4629" />
<path
style="fill:#ffffff"
d="M 2.8919756,26.924327 L 7.988016,32.53929 L 7.988016,21.302694 L 2.8919756,26.924327 L 2.8919756,26.924327 z "
id="path4631" />
<path
style="fill:#ffffff"
d="M 41.815045,26.924327 L 36.725111,21.302694 L 36.725111,32.53929 L 41.815045,26.924327 L 41.815045,26.924327 z "
id="path4633" />
<path
style="fill:#ffffff"
d="M 26.306959,21.228635 L 18.7423,21.228635 L 18.7423,24.924774 L 14.538331,29.570234 L 14.538331,33.677037 L 14.953838,34.161817 L 30.052576,34.161817 L 30.510875,33.636672 L 30.510875,29.570234 L 26.306959,24.924774 L 26.306959,21.228635 L 26.306959,21.228635 z "
id="path4635" />
<path
style="fill:#ffffff"
d="M 24.516605,16.966928 L 23.239503,16.886141 L 20.789253,16.886141 L 18.919472,17.074682 L 16.927522,17.559405 L 15.137168,18.259579 L 13.695105,19.148295 L 12.5158,20.319737 L 11.538143,22.352984 L 11.538143,24.870897 L 12.424161,25.860582 L 15.338816,25.860582 L 16.206465,24.897864 L 16.206465,22.615528 L 15.71153,22.615528 L 16.065927,21.080515 L 18.302317,20.003316 L 19.872706,19.713805 L 21.033694,19.639745 L 22.542921,19.62629 L 23.728331,19.680167 L 25.347619,19.875379 L 26.97296,20.380341 L 28.268379,20.831427 L 29.160504,22.588618 L 28.726627,22.588618 L 28.726627,24.911319 L 29.582116,25.853855 L 32.447873,25.860582 L 33.309416,24.897864 L 33.309416,22.352984 L 32.557829,20.797732 L 31.121924,19.242537 L 29.624857,18.279819 L 28.048414,17.559405 L 25.873082,17.094865 L 24.516605,16.966928 L 24.516605,16.966928 z "
id="path4637" />
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

@ -0,0 +1,187 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="66.000435"
height="44.5159"
version="1.0"
sodipodi:docname="PIX_firewall.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>PIX firewall</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
id="linearGradient9312">
<stop
style="stop-color:#3c8c8c;stop-opacity:1;"
offset="0"
id="stop9314" />
<stop
style="stop-color:#ffffff;stop-opacity:0.94117647;"
offset="1"
id="stop9316" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9312"
id="linearGradient2216"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.252829,0,0,14.082619,53.467529,3.4188377)"
x1="-1.0929121"
y1="0.63145506"
x2="-4.5832458"
y2="0.070047863" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="7.8958335"
inkscape:cx="27.334225"
inkscape:cy="24.784192"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="g4160" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.39215687;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4558"
width="64.552505"
height="41.53862"
x="1.4479325"
y="2.9772801"
ry="11.631706"
rx="32.212925"
inkscape:transform-center-x="8.4568136" />
<rect
style="opacity:1;fill:#3c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.015;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect9971"
width="64.499474"
height="42.154343"
x="0.0625"
y="0.18084908"
ry="11.557454"
rx="32.249737"
inkscape:transform-center-x="8.2952569" />
<g
id="g4160">
<path
id="path4815"
d="M 64.514069,11.541297 L 64.457031,10.955643 L 64.342949,10.36999 L 64.152814,9.8038604 L 63.867612,9.2182077 L 63.487345,8.6520765 L 63.050034,8.0859452 L 62.517657,7.5393369 L 61.909226,7.0122499 L 61.224742,6.4851607 L 60.464203,5.9775955 L 59.646626,5.4700289 L 58.752993,4.9819859 L 57.783307,4.4939413 L 56.75658,4.0644625 L 55.6538,3.6349838 L 54.493981,3.2055052 L 53.296132,2.8150692 L 52.022232,2.4636777 L 50.710303,2.1122862 L 49.341334,1.7999375 L 47.934339,1.5071117 L 46.489316,1.2338059 L 45.006267,0.99954576 L 43.504204,0.76528425 L 41.964114,0.58958842 L 40.385997,0.43341443 L 38.788867,0.29676153 L 37.191738,0.19915292 L 35.575597,0.12106555 L 33.940437,0.06250017 L 32.324296,0.06250017 L 32.324296,0.06250017 L 30.689136,0.06250017 L 29.053981,0.12106555 L 27.45685,0.19915292 L 25.840705,0.29676153 L 24.243576,0.43341443 L 22.684472,0.58958842 L 21.125372,0.76528425 L 19.623307,0.99954576 L 18.140258,1.2338059 L 16.695234,1.5071117 L 15.28824,1.7999375 L 13.919273,2.1122862 L 12.607342,2.4636777 L 11.333442,2.8150692 L 10.135592,3.2055052 L 8.9757693,3.6349838 L 7.8729941,4.0644625 L 6.8462664,4.4939413 L 5.8765785,4.9819859 L 4.9829488,5.4700289 L 4.1653682,5.9775955 L 3.4048335,6.4851607 L 2.7203448,7.0122499 L 2.1309311,7.5393369 L 1.5795405,8.0859452 L 1.1422325,8.6520765 L 0.76195982,9.2182077 L 0.47676065,9.8038604 L 0.26760898,10.36999 L 0.15353084,10.955643 L 0.11550327,11.541297 L 0.11550327,11.541297 L 0.15353084,12.12695 L 0.26760898,12.693081 L 0.47676065,13.278734 L 0.76195982,13.825344 L 1.1422325,14.410996 L 1.5795405,14.957605 L 2.1309311,15.523736 L 2.7203448,16.070348 L 3.4048335,16.597435 L 4.1653682,17.085479 L 4.9829488,17.593043 L 5.8765785,18.100608 L 6.8462664,18.549609 L 7.8729941,18.998611 L 8.9757693,19.447613 L 10.135592,19.857571 L 11.333442,20.248007 L 12.607342,20.599396 L 13.919273,20.950787 L 15.28824,21.263135 L 16.695234,21.575486 L 18.140258,21.829265 L 19.623307,22.083049 L 21.125372,22.297787 L 22.684472,22.473485 L 24.243576,22.629661 L 25.840705,22.766312 L 27.45685,22.863921 L 29.053981,22.942009 L 30.689136,23.000574 L 32.324296,23.000574 L 32.324296,23.000574 L 33.940437,23.000574 L 35.575597,22.942009 L 37.191738,22.863921 L 38.788867,22.766312 L 40.385997,22.629661 L 41.964114,22.473485 L 43.504204,22.297787 L 45.006267,22.083049 L 46.489316,21.829265 L 47.934339,21.575486 L 49.341334,21.263135 L 50.710303,20.950787 L 52.022232,20.599396 L 53.296132,20.248007 L 54.493981,19.857571 L 55.6538,19.447613 L 56.75658,18.998611 L 57.783307,18.549609 L 58.752993,18.100608 L 59.646626,17.593043 L 60.464203,17.085479 L 61.224742,16.597435 L 61.909226,16.070348 L 62.517657,15.523736 L 63.050034,14.957605 L 63.487345,14.410996 L 63.867612,13.825344 L 64.152814,13.278734 L 64.342949,12.693081 L 64.457031,12.12695 L 64.514069,11.541297"
style="fill:url(#linearGradient2216);fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 20.944567,2.9798116 L 20.944567,19.692911 L 37.445412,11.129174 L 20.944567,2.9798116"
id="path2363"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 38.706882,3.4139175 L 38.706882,18.055146 L 43.366183,18.055146 L 43.366183,3.4139175 L 38.706882,3.4139175"
id="path2365"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 21.371839,3.4139175 L 21.371839,20.067821 L 37.872683,11.543548 L 21.371839,3.4139175"
id="path2367"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 39.113807,3.80856 L 39.113807,18.449788 L 43.773109,18.449788 L 43.773109,3.80856 L 39.113807,3.80856"
id="path2369"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.2 KiB

@ -0,0 +1,516 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="71.851372"
height="32.285366"
version="1.0"
sodipodi:docname="access_point.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>Access Point</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
id="linearGradient6587">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#edeff3;stop-opacity:1;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119123,0,0,1.09281,-7.833718e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119124,0,0,1.09281,-7.8336875e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient11856"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.191597,0,0,15.33747,-2.6428869,0.1648577)"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="15.791667"
inkscape:cx="29.134315"
inkscape:cy="14.842697"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="svg1998" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 2.1663193,16.589602 L 2.1663193,32.285367 L 54.763443,32.285367 L 54.763443,16.589602 L 2.1663193,16.589602"
id="path13703" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 54.724715,18.919483 L 71.109211,3.1102265 L 71.109211,16.523256 L 54.724715,32.33251 L 54.724715,18.919483"
id="path14592" />
<path
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001"
d="M 54.781867,16.528044 L 71.793065,0.13423853 L 71.793065,14.043216 L 54.781867,30.437021 L 54.781867,16.528044"
id="path2009" />
<path
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.00110589"
d="M 0.21478248,16.474061 L 0.21478248,30.310372 L 55.069651,30.310372 L 55.069651,16.474061 L 0.21478248,16.474061"
id="path2007" />
<path
style="fill:url(#linearGradient11856);fill-opacity:1;stroke:none;stroke-width:0.01505287;stroke-opacity:1"
d="M 55.06494,16.770099 L 72.155489,0.17496232 L 16.934026,0.17496232 L -0.11094903,16.770099 L 55.06494,16.770099"
id="path2013" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2481"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2483"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2485"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2487"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2489"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2491"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2493"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2495"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2497"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2499"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2501"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2503"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2505"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2507"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2509"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2511"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.899931,23.450238 L 51.899931,23.401944 L 51.914244,23.365722 L 51.928558,23.329502 L 51.928558,23.293281 L 51.914244,23.269133 L 51.914244,23.232914 L 51.899931,23.196691 L 51.885618,23.172544 L 51.871304,23.136324 L 51.842676,23.112177 L 51.814049,23.088029 L 51.785421,23.075955 L 51.756794,23.039735 L 51.728166,23.027661 L 51.699538,23.015587 L 51.656597,23.003514 L 51.62797,22.99144 L 51.58503,22.979366 L 51.542088,22.979366 L 51.51346,22.979366 L 51.470518,22.979366 L 51.441891,22.979366 L 51.39895,22.99144 L 51.356008,23.003514 L 51.327381,23.015587 L 51.298753,23.015587 L 51.255812,23.039735 L 51.227184,23.075955 L 51.198557,23.100103 L 51.184243,23.124251 L 51.155616,23.160472 L 51.141301,23.196691 L 51.899931,23.450238"
id="path2513"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 43.311681,23.450238 L 43.311681,23.450238 L 43.411878,23.619269 L 43.497761,23.812448 L 43.61227,23.969404 L 43.712467,24.138434 L 43.812662,24.295392 L 43.912858,24.452349 L 44.013056,24.609307 L 44.127566,24.754191 L 44.213448,24.899074 L 44.327958,25.031884 L 44.41384,25.15262 L 44.52835,25.285429 L 44.628546,25.406165 L 44.728742,25.514828 L 44.814624,25.635565 L 44.929135,25.744228 L 45.029331,25.852891 L 45.129528,25.949479 L 45.229724,26.046068 L 45.32992,26.130584 L 45.430117,26.215098 L 45.530313,26.299615 L 45.630508,26.372056 L 45.730705,26.444498 L 45.816588,26.516939 L 45.931097,26.577308 L 46.031294,26.637676 L 46.13149,26.698045 L 46.231687,26.746339 L 46.331884,26.794633 L 46.446393,26.842929 L 46.532276,26.879148 L 46.632472,26.927443 L 46.732668,26.951591 L 46.832864,26.987811 L 46.93306,27.011959 L 47.033256,27.036106 L 47.133453,27.048179 L 47.23365,27.072326 L 47.348159,27.0844 L 47.434041,27.0844 L 47.548552,27.096474 L 47.634435,27.096474 L 47.73463,27.096474 L 47.834826,27.0844 L 47.920708,27.072326 L 48.020905,27.072326 L 48.121101,27.048179 L 48.206984,27.036106 L 48.307181,27.011959 L 48.393063,26.987811 L 48.478945,26.963665 L 48.564828,26.939517 L 48.665025,26.903296 L 48.736592,26.879148 L 48.822475,26.842929 L 48.908357,26.794633 L 48.99424,26.758412 L 49.065809,26.710118 L 49.151691,26.673897 L 49.309143,26.589382 L 49.452281,26.492793 L 49.595418,26.38413 L 49.738556,26.275467 L 49.867379,26.166805 L 49.996203,26.046068 L 50.125027,25.937405 L 50.253851,25.816669 L 50.36836,25.695932 L 50.482871,25.575197 L 50.597381,25.442388 L 50.697577,25.309577 L 50.797773,25.188841 L 50.897968,25.068104 L 50.998164,24.935294 L 51.084047,24.814558 L 51.169929,24.693822 L 51.241499,24.573086 L 51.39895,24.35576 L 51.527773,24.138434 L 51.62797,23.945256 L 51.728166,23.776226 L 51.85699,23.546827 L 51.899931,23.450238 L 51.141301,23.196691 L 51.09836,23.269133 L 50.983851,23.498533 L 50.897968,23.655489 L 50.797773,23.836594 L 50.668949,24.029772 L 50.540126,24.235023 L 50.468557,24.35576 L 50.382675,24.464424 L 50.296792,24.573086 L 50.210909,24.693822 L 50.125027,24.802485 L 50.024831,24.923221 L 49.924634,25.031884 L 49.838751,25.15262 L 49.738556,25.261282 L 49.624045,25.369945 L 49.52385,25.478608 L 49.40934,25.575197 L 49.294829,25.68386 L 49.180319,25.768375 L 49.065809,25.864964 L 48.936986,25.949479 L 48.822475,26.021922 L 48.693651,26.106436 L 48.636397,26.142658 L 48.579142,26.154731 L 48.507573,26.203026 L 48.450319,26.215098 L 48.393063,26.239246 L 48.321495,26.275467 L 48.264239,26.299615 L 48.206984,26.311688 L 48.135415,26.335835 L 48.07816,26.347909 L 48.006591,26.359983 L 47.949336,26.372056 L 47.892082,26.38413 L 47.820512,26.396203 L 47.763257,26.396203 L 47.691689,26.408277 L 47.634435,26.408277 L 47.562866,26.408277 L 47.491296,26.396203 L 47.434041,26.396203 L 47.362474,26.396203 L 47.305218,26.372056 L 47.23365,26.372056 L 47.162081,26.347909 L 47.090511,26.335835 L 47.018943,26.311688 L 46.947374,26.287541 L 46.875805,26.25132 L 46.804237,26.227172 L 46.718354,26.203026 L 46.646786,26.154731 L 46.560903,26.11851 L 46.489334,26.070216 L 46.417766,26.021922 L 46.331884,25.973627 L 46.246001,25.925332 L 46.160119,25.852891 L 46.088549,25.792522 L 46.002667,25.720081 L 45.916783,25.659712 L 45.816588,25.575197 L 45.74502,25.490682 L 45.644823,25.406165 L 45.55894,25.309577 L 45.473058,25.212988 L 45.372862,25.116398 L 45.286979,25.007736 L 45.201097,24.899074 L 45.1009,24.778338 L 45.015018,24.669675 L 44.914822,24.536864 L 44.814624,24.391982 L 44.728742,24.259171 L 44.628546,24.126361 L 44.52835,23.969404 L 44.442468,23.824521 L 44.342271,23.655489 L 44.242075,23.498533 L 44.14188,23.329502 L 44.041683,23.148398 L 44.041683,23.148398 L 43.311681,23.450238 L 43.311681,23.450238 L 43.311681,23.450238"
id="path2515"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.212061,23.401944 L 36.212061,23.401944 L 36.255003,23.329502 L 36.369513,23.112177 L 36.455395,22.95522 L 36.555591,22.774116 L 36.684415,22.580938 L 36.81324,22.363612 L 36.884808,22.254949 L 36.970691,22.146286 L 37.04226,22.025549 L 37.128142,21.916886 L 37.228337,21.796151 L 37.31422,21.675414 L 37.414415,21.566752 L 37.514612,21.446016 L 37.614808,21.349427 L 37.729319,21.22869 L 37.829515,21.120028 L 37.944025,21.02344 L 38.044221,20.92685 L 38.158732,20.830261 L 38.287555,20.733673 L 38.402064,20.649157 L 38.530888,20.576714 L 38.659712,20.504274 L 38.716968,20.468052 L 38.774222,20.443905 L 38.831477,20.419757 L 38.903046,20.383537 L 38.960302,20.359389 L 39.03187,20.335242 L 39.089124,20.311095 L 39.14638,20.286947 L 39.217949,20.2628 L 39.275204,20.2628 L 39.332459,20.238654 L 39.389714,20.22658 L 39.461282,20.22658 L 39.518537,20.202433 L 39.590106,20.202433 L 39.647361,20.202433 L 39.71893,20.202433 L 39.7905,20.202433 L 39.847754,20.202433 L 39.919323,20.202433 L 39.976578,20.22658 L 40.048147,20.22658 L 40.119715,20.22658 L 40.191284,20.2628 L 40.262853,20.2628 L 40.334421,20.299021 L 40.391676,20.323169 L 40.463245,20.335242 L 40.549127,20.371463 L 40.635009,20.407684 L 40.706579,20.443905 L 40.778147,20.480126 L 40.86403,20.528421 L 40.935599,20.576714 L 41.021482,20.62501 L 41.107364,20.685377 L 41.193246,20.733673 L 41.264816,20.806113 L 41.350698,20.878555 L 41.43658,20.963071 L 41.522463,21.02344 L 41.608345,21.120028 L 41.708541,21.204544 L 41.794424,21.289059 L 41.880306,21.385647 L 41.980503,21.482237 L 42.066385,21.5909 L 42.152267,21.711636 L 42.252464,21.820298 L 42.338347,21.941034 L 42.438542,22.073845 L 42.538739,22.206653 L 42.624621,22.339464 L 42.724817,22.472275 L 42.825014,22.629231 L 42.910895,22.786188 L 43.011092,22.943146 L 43.11129,23.100103 L 43.211485,23.269133 L 43.311681,23.450238 L 44.041683,23.148398 L 43.941486,22.979366 L 43.84129,22.798262 L 43.741093,22.629231 L 43.640897,22.460201 L 43.540701,22.303243 L 43.440505,22.146286 L 43.340309,21.98933 L 43.225798,21.844446 L 43.139916,21.711636 L 43.025407,21.578826 L 42.92521,21.446016 L 42.825014,21.313207 L 42.724817,21.19247 L 42.624621,21.083808 L 42.538739,20.963071 L 42.424229,20.854408 L 42.324032,20.745745 L 42.223836,20.649157 L 42.123641,20.564641 L 42.023443,20.480126 L 41.923248,20.383537 L 41.823052,20.299021 L 41.722854,20.22658 L 41.622658,20.166211 L 41.522463,20.081697 L 41.422265,20.033402 L 41.32207,19.96096 L 41.221874,19.900592 L 41.121677,19.852297 L 41.021482,19.804003 L 40.906971,19.755707 L 40.821088,19.719487 L 40.706579,19.683267 L 40.606382,19.647046 L 40.506186,19.622898 L 40.40599,19.586676 L 40.305794,19.562531 L 40.205598,19.550457 L 40.105401,19.526309 L 40.005206,19.526309 L 39.905009,19.514236 L 39.804812,19.502162 L 39.704617,19.502162 L 39.604419,19.502162 L 39.518537,19.526309 L 39.418342,19.526309 L 39.318145,19.526309 L 39.232263,19.550457 L 39.14638,19.562531 L 39.046183,19.59875 L 38.960302,19.622898 L 38.874419,19.647046 L 38.788536,19.671194 L 38.68834,19.695339 L 38.602457,19.731561 L 38.530888,19.767782 L 38.445006,19.804003 L 38.359123,19.840224 L 38.287555,19.888517 L 38.201673,19.924739 L 38.044221,20.021328 L 37.901085,20.117917 L 37.757946,20.22658 L 37.600496,20.323169 L 37.471671,20.431831 L 37.342848,20.552567 L 37.214023,20.673304 L 37.099514,20.794041 L 36.970691,20.914777 L 36.856181,21.035512 L 36.755985,21.168323 L 36.641474,21.289059 L 36.541278,21.409795 L 36.455395,21.542605 L 36.355199,21.663341 L 36.269317,21.796151 L 36.16912,21.916886 L 36.097552,22.025549 L 35.954414,22.254949 L 35.82559,22.472275 L 35.711082,22.653379 L 35.625199,22.82241 L 35.496374,23.051809 L 35.453433,23.160472 L 35.453433,23.160472 L 36.212061,23.401944 L 36.212061,23.401944 L 36.212061,23.401944"
id="path2517"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.623812,23.414018 L 27.623812,23.414018 L 27.724007,23.595121 L 27.838518,23.776226 L 27.938713,23.945256 L 28.038909,24.114288 L 28.139107,24.271245 L 28.239303,24.428201 L 28.339499,24.573086 L 28.439696,24.730042 L 28.539891,24.862853 L 28.640088,24.995662 L 28.740284,25.128472 L 28.84048,25.249209 L 28.940676,25.369945 L 29.040873,25.490682 L 29.141069,25.599344 L 29.241265,25.708007 L 29.355776,25.816669 L 29.455972,25.913259 L 29.556168,26.009848 L 29.656365,26.094363 L 29.742247,26.178878 L 29.842443,26.263394 L 29.956953,26.335835 L 30.057148,26.408277 L 30.157345,26.480719 L 30.257542,26.541087 L 30.357738,26.601456 L 30.457935,26.661823 L 30.558131,26.710118 L 30.658327,26.770486 L 30.758523,26.818781 L 30.858719,26.842929 L 30.958915,26.879148 L 31.059112,26.927443 L 31.159308,26.951591 L 31.273818,26.987811 L 31.374014,26.999885 L 31.47421,27.024033 L 31.574408,27.036106 L 31.674603,27.048179 L 31.774799,27.048179 L 31.874995,27.060253 L 31.960878,27.060253 L 32.061074,27.060253 L 32.146957,27.048179 L 32.247152,27.036106 L 32.34735,27.036106 L 32.447546,27.011959 L 32.533429,26.987811 L 32.619311,26.975737 L 32.719507,26.951591 L 32.80539,26.927443 L 32.891272,26.891223 L 32.977154,26.879148 L 33.063037,26.842929 L 33.148919,26.794633 L 33.234801,26.758412 L 33.30637,26.722192 L 33.392253,26.68597 L 33.478136,26.637676 L 33.621273,26.541087 L 33.778725,26.444498 L 33.921862,26.347909 L 34.064999,26.239246 L 34.193823,26.142658 L 34.336961,26.009848 L 34.45147,25.889111 L 34.580294,25.768375 L 34.694805,25.659712 L 34.809315,25.526902 L 34.923824,25.406165 L 35.024021,25.285429 L 35.124216,25.15262 L 35.224412,25.031884 L 35.324609,24.899074 L 35.396177,24.778338 L 35.48206,24.669675 L 35.567943,24.536864 L 35.711082,24.319539 L 35.839905,24.102215 L 35.954414,23.909036 L 36.040297,23.740005 L 36.16912,23.498533 L 36.212061,23.401944 L 35.453433,23.160472 L 35.424805,23.232914 L 35.295982,23.462311 L 35.210099,23.619269 L 35.109903,23.7883 L 34.995393,23.993552 L 34.852256,24.198804 L 34.780687,24.319539 L 34.694805,24.428201 L 34.623236,24.548938 L 34.537353,24.657601 L 34.45147,24.766264 L 34.351274,24.887 L 34.251078,24.995662 L 34.150882,25.116398 L 34.050685,25.225061 L 33.936175,25.333725 L 33.83598,25.442388 L 33.721469,25.551049 L 33.60696,25.647638 L 33.506764,25.744228 L 33.37794,25.828743 L 33.263429,25.913259 L 33.148919,25.9857 L 33.020096,26.058142 L 32.948527,26.094363 L 32.905586,26.130584 L 32.834017,26.154731 L 32.776762,26.190952 L 32.705193,26.215098 L 32.647939,26.239246 L 32.590684,26.25132 L 32.519116,26.275467 L 32.46186,26.299615 L 32.390291,26.311688 L 32.333035,26.335835 L 32.27578,26.335835 L 32.204211,26.347909 L 32.146957,26.359983 L 32.089703,26.372056 L 32.018133,26.372056 L 31.960878,26.372056 L 31.889309,26.372056 L 31.832055,26.372056 L 31.760486,26.359983 L 31.688917,26.347909 L 31.631662,26.347909 L 31.560094,26.335835 L 31.488526,26.311688 L 31.416956,26.299615 L 31.345387,26.275467 L 31.273818,26.25132 L 31.202249,26.227172 L 31.13068,26.203026 L 31.044797,26.154731 L 30.97323,26.11851 L 30.901661,26.082289 L 30.815777,26.046068 L 30.729896,25.9857 L 30.658327,25.937405 L 30.572444,25.889111 L 30.486562,25.828743 L 30.400679,25.756301 L 30.329111,25.695932 L 30.243229,25.611418 L 30.157345,25.538976 L 30.071463,25.454461 L 29.971267,25.369945 L 29.885384,25.285429 L 29.799501,25.188841 L 29.699306,25.068104 L 29.613423,24.971516 L 29.52754,24.862853 L 29.427345,24.742117 L 29.341463,24.633454 L 29.241265,24.500644 L 29.141069,24.367834 L 29.055186,24.222951 L 28.954991,24.090141 L 28.854794,23.945256 L 28.768911,23.7883 L 28.668716,23.631343 L 28.56852,23.462311 L 28.468322,23.293281 L 28.368127,23.124251 L 28.368127,23.124251 L 27.623812,23.414018 L 27.623812,23.414018 L 27.623812,23.414018"
id="path2519"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.567133,23.438165 L 20.567133,23.438165 L 20.59576,23.365722 L 20.71027,23.136324 L 20.796153,22.979366 L 20.896349,22.798262 L 21.025173,22.59301 L 21.153997,22.375685 L 21.239879,22.279097 L 21.311448,22.15836 L 21.39733,22.049697 L 21.483213,21.92896 L 21.569096,21.808224 L 21.654978,21.699562 L 21.755174,21.578826 L 21.855371,21.470163 L 21.955567,21.349427 L 22.070078,21.240764 L 22.170273,21.132101 L 22.284784,21.02344 L 22.399293,20.92685 L 22.49949,20.830261 L 22.628314,20.733673 L 22.742823,20.649157 L 22.871647,20.576714 L 23.000471,20.504274 L 23.057727,20.468052 L 23.114982,20.431831 L 23.172236,20.39561 L 23.243805,20.371463 L 23.30106,20.347316 L 23.358316,20.323169 L 23.429882,20.299021 L 23.472823,20.286947 L 23.558706,20.2628 L 23.615962,20.238654 L 23.673216,20.22658 L 23.73047,20.22658 L 23.80204,20.202433 L 23.873609,20.202433 L 23.930864,20.190359 L 24.002433,20.190359 L 24.059688,20.190359 L 24.131257,20.190359 L 24.188512,20.190359 L 24.26008,20.190359 L 24.317335,20.202433 L 24.388905,20.202433 L 24.460473,20.22658 L 24.517728,20.22658 L 24.589296,20.250727 L 24.660865,20.2628 L 24.746747,20.299021 L 24.818316,20.323169 L 24.889884,20.359389 L 24.961454,20.383537 L 25.033023,20.419757 L 25.104591,20.455978 L 25.176161,20.504274 L 25.262043,20.552567 L 25.347925,20.612937 L 25.433808,20.661231 L 25.505377,20.721599 L 25.591259,20.781967 L 25.677142,20.842334 L 25.777338,20.92685 L 25.848906,20.999292 L 25.934789,21.083808 L 26.034985,21.180397 L 26.120868,21.264911 L 26.221064,21.349427 L 26.292634,21.458089 L 26.392828,21.566752 L 26.493026,21.675414 L 26.578908,21.796151 L 26.664791,21.916886 L 26.764987,22.037623 L 26.850869,22.170434 L 26.951065,22.303243 L 27.051261,22.448127 L 27.151458,22.59301 L 27.237341,22.749968 L 27.337537,22.906924 L 27.437732,23.075955 L 27.523615,23.232914 L 27.623812,23.414018 L 28.368127,23.124251 L 28.267931,22.943146 L 28.167734,22.762042 L 28.067537,22.59301 L 27.967341,22.436053 L 27.852832,22.267023 L 27.766949,22.110065 L 27.666753,21.953108 L 27.566556,21.820298 L 27.452047,21.675414 L 27.366165,21.542605 L 27.251654,21.409795 L 27.151458,21.276985 L 27.051261,21.168323 L 26.951065,21.05966 L 26.850869,20.938923 L 26.750673,20.830261 L 26.650476,20.721599 L 26.564594,20.62501 L 26.450084,20.540494 L 26.349887,20.443905 L 26.249692,20.359389 L 26.149496,20.286947 L 26.063613,20.202433 L 25.949103,20.129991 L 25.848906,20.069623 L 25.74871,19.99718 L 25.648514,19.936813 L 25.548318,19.876444 L 25.448122,19.82815 L 25.347925,19.779856 L 25.24773,19.731561 L 25.147533,19.695339 L 25.047337,19.65912 L 24.94714,19.622898 L 24.846943,19.59875 L 24.746747,19.562531 L 24.646552,19.550457 L 24.546355,19.526309 L 24.446159,19.514236 L 24.345963,19.502162 L 24.231453,19.490088 L 24.145571,19.490088 L 24.03106,19.490088 L 23.945177,19.490088 L 23.844981,19.502162 L 23.744785,19.514236 L 23.658903,19.526309 L 23.558706,19.550457 L 23.472823,19.562531 L 23.386942,19.586676 L 23.286746,19.59875 L 23.18655,19.622898 L 23.114982,19.65912 L 23.029099,19.695339 L 22.943216,19.731561 L 22.857333,19.767782 L 22.771451,19.804003 L 22.685568,19.840224 L 22.614,19.888517 L 22.513803,19.924739 L 22.384979,20.021328 L 22.241843,20.117917 L 22.084392,20.22658 L 21.955567,20.335242 L 21.81243,20.443905 L 21.683606,20.552567 L 21.554783,20.685377 L 21.425958,20.806113 L 21.311448,20.92685 L 21.196938,21.05966 L 21.082428,21.180397 L 20.982232,21.301133 L 20.882036,21.433943 L 20.796153,21.566752 L 20.695957,21.675414 L 20.610074,21.808224 L 20.524192,21.92896 L 20.43831,22.049697 L 20.295171,22.279097 L 20.166348,22.49642 L 20.051839,22.689599 L 19.965957,22.846557 L 19.837133,23.100103 L 19.808505,23.196691 L 19.808505,23.196691 L 20.567133,23.438165 L 20.567133,23.438165 L 20.567133,23.438165"
id="path2521"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.978883,23.450238 L 11.978883,23.450238 L 12.07908,23.619269 L 12.193588,23.812448 L 12.279472,23.969404 L 12.393982,24.138434 L 12.494178,24.295392 L 12.594375,24.452349 L 12.694571,24.609307 L 12.794767,24.754191 L 12.894963,24.899074 L 12.995159,25.031884 L 13.095355,25.15262 L 13.195551,25.285429 L 13.295748,25.406165 L 13.395944,25.514828 L 13.49614,25.635565 L 13.596338,25.744228 L 13.710846,25.852891 L 13.796729,25.949479 L 13.911239,26.046068 L 13.997122,26.130584 L 14.097318,26.215098 L 14.197514,26.299615 L 14.29771,26.372056 L 14.397906,26.444498 L 14.512417,26.516939 L 14.5983,26.577308 L 14.712809,26.637676 L 14.813005,26.698045 L 14.913201,26.746339 L 15.013398,26.794633 L 15.113594,26.842929 L 15.21379,26.879148 L 15.313986,26.927443 L 15.414183,26.951591 L 15.514379,26.987811 L 15.614576,27.011959 L 15.714772,27.036106 L 15.829282,27.048179 L 15.915165,27.072326 L 16.029674,27.072326 L 16.129871,27.0844 L 16.215754,27.096474 L 16.315949,27.096474 L 16.416145,27.0844 L 16.502028,27.0844 L 16.616538,27.072326 L 16.702421,27.072326 L 16.802617,27.048179 L 16.902813,27.036106 L 16.974382,27.011959 L 17.074579,26.987811 L 17.16046,26.951591 L 17.246344,26.939517 L 17.332226,26.891223 L 17.418108,26.867075 L 17.50399,26.842929 L 17.589873,26.782559 L 17.675756,26.746339 L 17.747324,26.710118 L 17.818894,26.673897 L 17.976345,26.589382 L 18.133796,26.492793 L 18.276933,26.38413 L 18.405757,26.275467 L 18.534581,26.154731 L 18.677718,26.046068 L 18.806542,25.937405 L 18.921053,25.804596 L 19.049876,25.68386 L 19.164386,25.575197 L 19.264582,25.442388 L 19.364779,25.309577 L 19.464974,25.188841 L 19.56517,25.056031 L 19.665367,24.935294 L 19.75125,24.814558 L 19.837133,24.681749 L 19.923015,24.573086 L 20.051839,24.331613 L 20.194976,24.126361 L 20.295171,23.933184 L 20.395368,23.776226 L 20.509878,23.534754 L 20.567133,23.438165 L 19.808505,23.196691 L 19.75125,23.269133 L 19.636739,23.486458 L 19.56517,23.655489 L 19.464974,23.824521 L 19.336151,24.029772 L 19.207326,24.235023 L 19.135759,24.343687 L 19.049876,24.452349 L 18.963994,24.573086 L 18.892425,24.681749 L 18.792229,24.802485 L 18.706346,24.923221 L 18.606149,25.031884 L 18.505953,25.15262 L 18.405757,25.261282 L 18.291247,25.369945 L 18.191051,25.466534 L 18.076541,25.575197 L 17.962031,25.671786 L 17.847522,25.768375 L 17.733011,25.864964 L 17.618501,25.949479 L 17.489676,26.021922 L 17.375167,26.094363 L 17.317912,26.142658 L 17.260657,26.154731 L 17.189088,26.190952 L 17.131833,26.215098 L 17.060264,26.239246 L 17.017323,26.275467 L 16.945755,26.299615 L 16.874186,26.311688 L 16.816932,26.335835 L 16.759676,26.347909 L 16.688108,26.359983 L 16.630851,26.372056 L 16.573597,26.38413 L 16.502028,26.396203 L 16.430459,26.396203 L 16.373203,26.396203 L 16.301636,26.408277 L 16.24438,26.408277 L 16.187126,26.396203 L 16.115556,26.396203 L 16.043988,26.396203 L 15.97242,26.372056 L 15.915165,26.372056 L 15.843595,26.347909 L 15.772027,26.335835 L 15.700458,26.311688 L 15.62889,26.287541 L 15.543006,26.25132 L 15.485752,26.227172 L 15.399869,26.203026 L 15.3283,26.154731 L 15.242418,26.11851 L 15.170848,26.070216 L 15.084966,26.021922 L 15.013398,25.973627 L 14.927516,25.913259 L 14.841633,25.852891 L 14.755751,25.792522 L 14.669869,25.720081 L 14.583986,25.647638 L 14.498103,25.575197 L 14.41222,25.490682 L 14.326338,25.406165 L 14.240455,25.309577 L 14.154574,25.212988 L 14.054376,25.116398 L 13.95418,25.007736 L 13.868298,24.899074 L 13.782416,24.778338 L 13.68222,24.669675 L 13.596338,24.536864 L 13.49614,24.391982 L 13.395944,24.259171 L 13.310061,24.126361 L 13.209865,23.969404 L 13.123983,23.824521 L 13.023787,23.655489 L 12.92359,23.498533 L 12.823395,23.329502 L 12.723198,23.148398 L 12.723198,23.148398 L 11.978883,23.450238 L 11.978883,23.450238 L 11.978883,23.450238"
id="path2523"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.9078912,23.401944 L 4.9508321,23.329502 L 5.0653424,23.100103 L 5.1512243,22.943146 L 5.2514211,22.762042 L 5.3802448,22.568864 L 5.5090684,22.363612 L 5.5806369,22.242875 L 5.6522063,22.146286 L 5.738089,22.025549 L 5.8239708,21.916886 L 5.9241669,21.796151 L 6.0100496,21.675414 L 6.1102465,21.566752 L 6.1961275,21.446016 L 6.3106386,21.337353 L 6.4108347,21.22869 L 6.525345,21.120028 L 6.625541,21.02344 L 6.7400513,20.92685 L 6.8688742,20.830261 L 6.969071,20.733673 L 7.0978947,20.649157 L 7.2124051,20.576714 L 7.3412278,20.504274 L 7.3984829,20.468052 L 7.4700531,20.431831 L 7.5129941,20.407684 L 7.5845617,20.383537 L 7.6418177,20.359389 L 7.7133854,20.335242 L 7.7706412,20.311095 L 7.8278956,20.286947 L 7.8994649,20.2628 L 7.9567201,20.2628 L 8.0139744,20.238654 L 8.0855428,20.22658 L 8.1427989,20.22658 L 8.2143673,20.202433 L 8.2716226,20.202433 L 8.3431909,20.202433 L 8.4004462,20.202433 L 8.4720146,20.202433 L 8.5292698,20.202433 L 8.6008383,20.202433 L 8.6580935,20.202433 L 8.7439761,20.22658 L 8.8012313,20.22658 L 8.8727997,20.250727 L 8.9443683,20.2628 L 9.0159368,20.286947 L 9.087506,20.323169 L 9.1590746,20.335242 L 9.2306431,20.371463 L 9.3022124,20.407684 L 9.3880943,20.443905 L 9.4596637,20.480126 L 9.5312321,20.528421 L 9.6171148,20.576714 L 9.7029973,20.62501 L 9.7745663,20.685377 L 9.8747623,20.733673 L 9.9463303,20.806113 L 10.046527,20.878555 L 10.132409,20.963071 L 10.203978,21.02344 L 10.289861,21.120028 L 10.390057,21.19247 L 10.47594,21.289059 L 10.561822,21.385647 L 10.647704,21.482237 L 10.733586,21.5909 L 10.833783,21.711636 L 10.93398,21.820298 L 11.019863,21.941034 L 11.105745,22.073845 L 11.20594,22.206653 L 11.306137,22.339464 L 11.406333,22.472275 L 11.492216,22.629231 L 11.592411,22.786188 L 11.692608,22.943146 L 11.792804,23.100103 L 11.878686,23.269133 L 11.978883,23.450238 L 12.723198,23.148398 L 12.623002,22.979366 L 12.522806,22.798262 L 12.42261,22.629231 L 12.322413,22.460201 L 12.207903,22.303243 L 12.107706,22.146286 L 12.00751,21.98933 L 11.907315,21.844446 L 11.807118,21.711636 L 11.706922,21.578826 L 11.606726,21.446016 L 11.506529,21.313207 L 11.406333,21.19247 L 11.306137,21.083808 L 11.20594,20.963071 L 11.105745,20.854408 L 11.005549,20.745745 L 10.905352,20.649157 L 10.805156,20.564641 L 10.70496,20.480126 L 10.604764,20.383537 L 10.504567,20.311095 L 10.404371,20.22658 L 10.304174,20.166211 L 10.203978,20.081697 L 10.103782,20.021328 L 10.003585,19.96096 L 9.9033893,19.900592 L 9.8031933,19.852297 L 9.7029973,19.804003 L 9.6028006,19.755707 L 9.5026046,19.719487 L 9.4024084,19.683267 L 9.3022124,19.647046 L 9.2020155,19.622898 L 9.1018194,19.586676 L 8.9873101,19.562531 L 8.8871131,19.550457 L 8.786917,19.526309 L 8.7010344,19.526309 L 8.6008383,19.514236 L 8.486328,19.502162 L 8.4004462,19.502162 L 8.30025,19.502162 L 8.200054,19.526309 L 8.0998571,19.526309 L 8.0139744,19.526309 L 7.9137783,19.550457 L 7.8278956,19.562531 L 7.7420138,19.586676 L 7.6418177,19.622898 L 7.5559341,19.647046 L 7.4700531,19.671194 L 7.3841695,19.695339 L 7.2982878,19.731561 L 7.2124051,19.767782 L 7.1265223,19.804003 L 7.0406396,19.840224 L 6.969071,19.876444 L 6.8831883,19.924739 L 6.7400513,20.009254 L 6.5826001,20.105843 L 6.4394623,20.22658 L 6.2963246,20.323169 L 6.1675009,20.431831 L 6.0243629,20.552567 L 5.9098536,20.673304 L 5.7810299,20.781967 L 5.6665187,20.902704 L 5.5520094,21.035512 L 5.4374999,21.156249 L 5.337303,21.289059 L 5.237107,21.409795 L 5.1369108,21.542605 L 5.0510281,21.663341 L 4.9508321,21.784078 L 4.8792636,21.904814 L 4.7933809,22.025549 L 4.6502439,22.254949 L 4.5214194,22.460201 L 4.4069092,22.653379 L 4.3210273,22.82241 L 4.1922037,23.051809 L 4.1492618,23.148398 L 4.9078912,23.401944"
id="path2525"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.1492618,23.148398 L 4.1349484,23.196691 L 4.1206351,23.232914 L 4.1206351,23.269133 L 4.1206351,23.305354 L 4.1206351,23.329502 L 4.1349484,23.377796 L 4.1492618,23.401944 L 4.1635752,23.426091 L 4.1778902,23.462311 L 4.1922037,23.486458 L 4.2208311,23.510607 L 4.2494588,23.534754 L 4.2780864,23.5589 L 4.3210273,23.570974 L 4.3496539,23.583048 L 4.3925958,23.595121 L 4.4212234,23.607195 L 4.4498509,23.619269 L 4.4927928,23.619269 L 4.5357337,23.619269 L 4.5786746,23.619269 L 4.6073021,23.619269 L 4.6502439,23.619269 L 4.6788706,23.595121 L 4.7218124,23.595121 L 4.7504399,23.583048 L 4.7790676,23.5589 L 4.8220085,23.534754 L 4.8363218,23.498533 L 4.8649494,23.474385 L 4.893577,23.438165 L 4.9078912,23.401944 L 4.1492618,23.148398"
id="path2527"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 5.294362,23.075955 L 5.2800486,23.039735 L 5.2514211,23.003514 L 5.2227936,22.95522 L 5.2084793,22.918998 L 5.1798517,22.894851 L 5.1512243,22.858631 L 5.1225975,22.846557 L 5.0939699,22.82241 L 5.0653424,22.786188 L 5.0367148,22.762042 L 4.9937729,22.749968 L 4.9794596,22.72582 L 4.9078912,22.689599 L 4.8363218,22.665452 L 4.7504399,22.653379 L 4.6931849,22.641305 L 4.6073021,22.629231 L 4.5357337,22.629231 L 4.4498509,22.629231 L 4.3925958,22.641305 L 4.306713,22.653379 L 4.2351446,22.677526 L 4.1635752,22.701673 L 4.0920075,22.737894 L 4.0347515,22.774116 L 3.9774973,22.82241 L 3.9202421,22.846557 L 3.8773012,22.906924 L 3.8343594,22.95522 L 3.7771051,23.015587 L 3.7627918,23.039735 L 3.7627918,23.075955 L 3.7341633,23.100103 L 3.7341633,23.136324 L 3.71985,23.172544 L 3.71985,23.196691 L 3.7055358,23.232914 L 3.7055358,23.269133 L 3.7055358,23.305354 L 3.7055358,23.329502 L 3.71985,23.377796 L 3.71985,23.414018 L 3.71985,23.450238 L 3.7341633,23.486458 L 3.7484767,23.522681 L 3.7627918,23.570974 L 5.294362,23.075955"
id="path2529"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.621039,23.015587 L 11.621039,23.015587 L 11.535157,23.184618 L 11.434961,23.353649 L 11.349078,23.498533 L 11.248881,23.655489 L 11.148686,23.812448 L 11.04849,23.95733 L 10.962608,24.090141 L 10.876725,24.222951 L 10.790843,24.35576 L 10.690645,24.476497 L 10.604764,24.585159 L 10.51888,24.693822 L 10.418685,24.802485 L 10.347115,24.899074 L 10.261233,24.995662 L 10.175351,25.092252 L 10.089468,25.188841 L 10.003585,25.261282 L 9.9320173,25.333725 L 9.8461353,25.406165 L 9.7602523,25.478608 L 9.6886833,25.538976 L 9.6171148,25.599344 L 9.5312321,25.659712 L 9.4596637,25.695932 L 9.3880943,25.756301 L 9.33084,25.792522 L 9.2592706,25.828743 L 9.1733879,25.864964 L 9.130447,25.889111 L 9.0588785,25.925332 L 9.0016234,25.949479 L 8.930055,25.973627 L 8.8727997,25.9857 L 8.829858,26.009848 L 8.7726037,26.009848 L 8.7153486,26.033996 L 8.6580935,26.046068 L 8.6151525,26.046068 L 8.5722117,26.058142 L 8.5149556,26.058142 L 8.4720146,26.058142 L 8.4147595,26.058142 L 8.3718186,26.058142 L 8.3288768,26.058142 L 8.2716226,26.046068 L 8.2143673,26.046068 L 8.1857398,26.046068 L 8.1284846,26.021922 L 8.0855428,26.009848 L 8.0282885,26.009848 L 7.9853468,25.9857 L 7.9280916,25.973627 L 7.8851507,25.949479 L 7.8278956,25.937405 L 7.7849547,25.913259 L 7.7276994,25.889111 L 7.6847578,25.864964 L 7.6275035,25.840817 L 7.5845617,25.816669 L 7.4700531,25.756301 L 7.355542,25.68386 L 7.255346,25.599344 L 7.1408365,25.514828 L 7.0406396,25.442388 L 6.9404435,25.345798 L 6.8259333,25.249209 L 6.7257371,25.15262 L 6.625541,25.056031 L 6.5396583,24.947368 L 6.4394623,24.838705 L 6.3535795,24.730042 L 6.2676969,24.609307 L 6.1818151,24.500644 L 6.0959323,24.391982 L 6.0100496,24.295392 L 5.9384812,24.174656 L 5.8669118,24.078067 L 5.738089,23.872815 L 5.6235787,23.679637 L 5.5233817,23.498533 L 5.4374999,23.353649 L 5.3229904,23.136324 L 5.294362,23.075955 L 3.7627918,23.570974 L 3.820046,23.679637 L 3.9488697,23.92111 L 4.0347515,24.090141 L 4.1635752,24.295392 L 4.2923997,24.512718 L 4.4355375,24.742117 L 4.5214194,24.862853 L 4.6073021,24.995662 L 4.7074982,25.116398 L 4.7933809,25.249209 L 4.893577,25.382019 L 5.0080872,25.502755 L 5.1082833,25.647638 L 5.237107,25.768375 L 5.3516172,25.901185 L 5.4804417,26.046068 L 5.6092645,26.154731 L 5.738089,26.287541 L 5.881226,26.408277 L 6.0243629,26.529013 L 6.1818151,26.64975 L 6.3392662,26.746339 L 6.4967165,26.855001 L 6.6684819,26.951591 L 6.7543647,27.011959 L 6.8545607,27.048179 L 6.9404435,27.096474 L 7.0263253,27.144768 L 7.1265223,27.180989 L 7.2267184,27.21721 L 7.3269144,27.253432 L 7.4271113,27.289652 L 7.5273066,27.325873 L 7.6275035,27.337946 L 7.7420138,27.362094 L 7.8422098,27.386241 L 7.9567201,27.410389 L 8.0569153,27.422463 L 8.1857398,27.422463 L 8.2859359,27.434535 L 8.4004462,27.446608 L 8.5149556,27.434535 L 8.6294667,27.434535 L 8.7439761,27.422463 L 8.8584856,27.422463 L 8.9873101,27.398315 L 9.1018194,27.362094 L 9.2163297,27.35002 L 9.33084,27.325873 L 9.4453494,27.277578 L 9.574173,27.241358 L 9.6886833,27.205136 L 9.8031933,27.144768 L 9.9177033,27.108548 L 10.032213,27.048179 L 10.146724,26.987811 L 10.246919,26.927443 L 10.375743,26.855001 L 10.47594,26.782559 L 10.59045,26.710118 L 10.690645,26.625602 L 10.805156,26.541087 L 10.905352,26.456572 L 11.005549,26.372056 L 11.120059,26.275467 L 11.234568,26.178878 L 11.32045,26.058142 L 11.434961,25.961553 L 11.535157,25.852891 L 11.649667,25.732155 L 11.749864,25.599344 L 11.850059,25.478608 L 11.96457,25.345798 L 12.064765,25.212988 L 12.164961,25.068104 L 12.279472,24.935294 L 12.379668,24.778338 L 12.479865,24.633454 L 12.594375,24.464424 L 12.694571,24.295392 L 12.794767,24.126361 L 12.909276,23.95733 L 13.009473,23.776226 L 13.123983,23.595121 L 13.123983,23.595121 L 11.621039,23.015587 L 11.621039,23.015587 L 11.621039,23.015587"
id="path2531"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.967919,23.039735 L 20.967919,23.039735 L 20.924977,22.918998 L 20.796153,22.677526 L 20.695957,22.508494 L 20.581446,22.315316 L 20.43831,22.085918 L 20.295171,21.856519 L 20.20929,21.735782 L 20.123407,21.615046 L 20.037524,21.482237 L 19.937328,21.349427 L 19.837133,21.216617 L 19.722621,21.095881 L 19.622425,20.963071 L 19.507915,20.830261 L 19.379092,20.697451 L 19.264582,20.564641 L 19.135759,20.443905 L 19.006935,20.323169 L 18.849484,20.202433 L 18.706346,20.069623 L 18.563208,19.96096 L 18.391443,19.840224 L 18.233992,19.743634 L 18.076541,19.647046 L 17.976345,19.59875 L 17.890463,19.550457 L 17.804581,19.502162 L 17.704384,19.453868 L 17.618501,19.42972 L 17.518305,19.381427 L 17.418108,19.345204 L 17.317912,19.321056 L 17.217716,19.296909 L 17.117519,19.260689 L 17.017323,19.236542 L 16.902813,19.212395 L 16.788304,19.200321 L 16.673793,19.176173 L 16.573597,19.176173 L 16.459086,19.164101 L 16.344577,19.164101 L 16.230066,19.164101 L 16.115556,19.164101 L 15.986734,19.176173 L 15.872223,19.188247 L 15.757714,19.212395 L 15.643203,19.236542 L 15.514379,19.260689 L 15.399869,19.284837 L 15.285358,19.321056 L 15.170848,19.357278 L 15.056339,19.405572 L 14.941829,19.453868 L 14.827319,19.490088 L 14.712809,19.562531 L 14.5983,19.622898 L 14.483789,19.683267 L 14.383592,19.743634 L 14.269082,19.816075 L 14.154574,19.888517 L 14.054376,19.973033 L 13.939867,20.057549 L 13.83967,20.142065 L 13.725161,20.22658 L 13.61065,20.335242 L 13.510454,20.431831 L 13.410257,20.528421 L 13.295748,20.637084 L 13.195551,20.745745 L 13.081041,20.866481 L 12.980846,20.999292 L 12.880649,21.120028 L 12.76614,21.252838 L 12.680257,21.373575 L 12.565747,21.530531 L 12.465551,21.663341 L 12.365354,21.820298 L 12.250844,21.977255 L 12.150647,22.134213 L 12.036138,22.303243 L 11.935941,22.472275 L 11.835745,22.641305 L 11.73555,22.82241 L 11.621039,23.015587 L 13.123983,23.595121 L 13.195551,23.426091 L 13.295748,23.25706 L 13.395944,23.100103 L 13.481827,22.943146 L 13.596338,22.786188 L 13.68222,22.641305 L 13.768102,22.508494 L 13.868298,22.375685 L 13.95418,22.242875 L 14.040063,22.122139 L 14.140259,22.013476 L 14.226141,21.904814 L 14.312024,21.796151 L 14.397906,21.699562 L 14.483789,21.602974 L 14.569672,21.506384 L 14.655554,21.421869 L 14.741436,21.349427 L 14.813005,21.264911 L 14.898889,21.19247 L 14.970457,21.120028 L 15.056339,21.05966 L 15.127907,20.999292 L 15.199477,20.963071 L 15.285358,20.902704 L 15.342613,20.854408 L 15.414183,20.806113 L 15.485752,20.769893 L 15.543006,20.733673 L 15.614576,20.709525 L 15.686144,20.685377 L 15.7434,20.649157 L 15.800654,20.637084 L 15.857909,20.612937 L 15.915165,20.600863 L 15.97242,20.588788 L 16.029674,20.564641 L 16.072615,20.564641 L 16.129871,20.552567 L 16.172812,20.552567 L 16.230066,20.540494 L 16.273008,20.540494 L 16.315949,20.540494 L 16.373203,20.540494 L 16.416145,20.540494 L 16.4734,20.552567 L 16.516342,20.552567 L 16.573597,20.564641 L 16.616538,20.576714 L 16.65948,20.588788 L 16.716735,20.600863 L 16.759676,20.612937 L 16.816932,20.62501 L 16.859872,20.637084 L 16.917127,20.673304 L 16.960068,20.685377 L 17.017323,20.709525 L 17.060264,20.733673 L 17.117519,20.769893 L 17.16046,20.794041 L 17.27497,20.854408 L 17.38948,20.92685 L 17.489676,20.999292 L 17.604187,21.083808 L 17.704384,21.168323 L 17.804581,21.252838 L 17.904776,21.349427 L 18.019286,21.446016 L 18.105169,21.554679 L 18.205364,21.663341 L 18.291247,21.75993 L 18.391443,21.880667 L 18.477325,21.98933 L 18.563208,22.110065 L 18.64909,22.206653 L 18.734973,22.315316 L 18.806542,22.436053 L 18.863797,22.532643 L 19.006935,22.737894 L 19.135759,22.931072 L 19.221641,23.112177 L 19.293209,23.25706 L 19.407719,23.462311 L 19.450661,23.534754 L 19.450661,23.534754 L 20.967919,23.039735 L 20.967919,23.039735 L 20.967919,23.039735"
id="path2533"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.294596,22.979366 L 27.294596,22.979366 L 27.208713,23.148398 L 27.108517,23.317428 L 27.00832,23.474385 L 26.922437,23.631343 L 26.822242,23.776226 L 26.736359,23.92111 L 26.636163,24.065993 L 26.550281,24.198804 L 26.450084,24.319539 L 26.364202,24.452349 L 26.264005,24.561012 L 26.178123,24.669675 L 26.09224,24.766264 L 26.020672,24.874926 L 25.920475,24.971516 L 25.834592,25.056031 L 25.74871,25.15262 L 25.662827,25.225061 L 25.591259,25.309577 L 25.505377,25.369945 L 25.433808,25.442388 L 25.362239,25.502755 L 25.276356,25.575197 L 25.204789,25.611418 L 25.133219,25.671786 L 25.06165,25.708007 L 24.990082,25.756301 L 24.932826,25.792522 L 24.861258,25.828743 L 24.804002,25.864964 L 24.732434,25.889111 L 24.675179,25.913259 L 24.617924,25.937405 L 24.560669,25.949479 L 24.503413,25.973627 L 24.446159,25.9857 L 24.388905,25.997774 L 24.345963,26.009848 L 24.288707,26.009848 L 24.245766,26.021922 L 24.188512,26.021922 L 24.145571,26.021922 L 24.088316,26.021922 L 24.045374,26.021922 L 24.002433,26.021922 L 23.945177,26.009848 L 23.902236,26.009848 L 23.844981,26.009848 L 23.80204,25.9857 L 23.759098,25.9857 L 23.701844,25.973627 L 23.673216,25.949479 L 23.615962,25.937405 L 23.558706,25.925332 L 23.515764,25.901185 L 23.45851,25.877038 L 23.401256,25.852891 L 23.358316,25.828743 L 23.30106,25.804596 L 23.258118,25.780449 L 23.14361,25.708007 L 23.029099,25.647638 L 22.928903,25.575197 L 22.828705,25.490682 L 22.714196,25.406165 L 22.614,25.309577 L 22.49949,25.212988 L 22.399293,25.116398 L 22.313411,25.01981 L 22.213215,24.899074 L 22.127332,24.802485 L 22.027137,24.681749 L 21.941254,24.573086 L 21.855371,24.464424 L 21.769488,24.367834 L 21.697919,24.247097 L 21.612036,24.138434 L 21.554783,24.029772 L 21.411644,23.836594 L 21.282821,23.643417 L 21.196938,23.462311 L 21.12537,23.317428 L 20.996547,23.100103 L 20.967919,23.039735 L 19.450661,23.534754 L 19.493602,23.643417 L 19.622425,23.872815 L 19.722621,24.065993 L 19.837133,24.259171 L 19.965957,24.476497 L 20.123407,24.705895 L 20.20929,24.838705 L 20.280858,24.959442 L 20.381054,25.080178 L 20.481251,25.212988 L 20.581446,25.345798 L 20.681642,25.466534 L 20.796153,25.599344 L 20.896349,25.744228 L 21.039488,25.864964 L 21.153997,25.997774 L 21.282821,26.11851 L 21.411644,26.239246 L 21.554783,26.372056 L 21.697919,26.492793 L 21.855371,26.613529 L 22.012822,26.722192 L 22.170273,26.818781 L 22.327725,26.915369 L 22.427921,26.975737 L 22.513803,27.024033 L 22.614,27.072326 L 22.714196,27.108548 L 22.800079,27.144768 L 22.900275,27.180989 L 23.000471,27.21721 L 23.100668,27.253432 L 23.18655,27.277578 L 23.30106,27.3138 L 23.415569,27.325873 L 23.515764,27.35002 L 23.630275,27.362094 L 23.73047,27.386241 L 23.844981,27.398315 L 23.959492,27.398315 L 24.074002,27.410389 L 24.188512,27.410389 L 24.303022,27.398315 L 24.417531,27.386241 L 24.546355,27.374168 L 24.660865,27.362094 L 24.789688,27.337946 L 24.904199,27.3138 L 25.004395,27.277578 L 25.118906,27.241358 L 25.233416,27.21721 L 25.347925,27.168915 L 25.462436,27.120622 L 25.576945,27.072326 L 25.691455,27.011959 L 25.805965,26.951591 L 25.920475,26.879148 L 26.034985,26.818781 L 26.149496,26.746339 L 26.249692,26.68597 L 26.364202,26.589382 L 26.464398,26.516939 L 26.578908,26.432425 L 26.693417,26.335835 L 26.793615,26.239246 L 26.89381,26.142658 L 27.00832,26.046068 L 27.108517,25.925332 L 27.223026,25.816669 L 27.323224,25.695932 L 27.437732,25.575197 L 27.523615,25.454461 L 27.638125,25.309577 L 27.738321,25.188841 L 27.838518,25.031884 L 27.953027,24.899074 L 28.053224,24.742117 L 28.15342,24.585159 L 28.253617,24.428201 L 28.368127,24.271245 L 28.468322,24.102215 L 28.56852,23.92111 L 28.683029,23.752078 L 28.783225,23.5589 L 28.783225,23.5589 L 27.294596,22.979366 L 27.294596,22.979366 L 27.294596,22.979366"
id="path2535"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.612847,23.075955 L 36.612847,23.075955 L 36.569906,22.95522 L 36.455395,22.713747 L 36.355199,22.544716 L 36.24069,22.339464 L 36.097552,22.110065 L 35.954414,21.892741 L 35.868532,21.75993 L 35.782649,21.639193 L 35.696767,21.506384 L 35.59657,21.373575 L 35.496374,21.252838 L 35.396177,21.107954 L 35.281668,20.975144 L 35.167158,20.842334 L 35.052648,20.709525 L 34.923824,20.588788 L 34.795,20.455978 L 34.666177,20.323169 L 34.52304,20.202433 L 34.379902,20.081697 L 34.222451,19.973033 L 34.064999,19.852297 L 33.907549,19.743634 L 33.735783,19.647046 L 33.649902,19.59875 L 33.564019,19.550457 L 33.463822,19.502162 L 33.37794,19.453868 L 33.277742,19.42972 L 33.177547,19.381427 L 33.091664,19.345204 L 32.991469,19.308983 L 32.891272,19.272763 L 32.791076,19.248615 L 32.676565,19.236542 L 32.57637,19.200321 L 32.46186,19.188247 L 32.34735,19.176173 L 32.232839,19.164101 L 32.118329,19.152027 L 32.018133,19.139953 L 31.903622,19.139953 L 31.789114,19.152027 L 31.674603,19.164101 L 31.545779,19.176173 L 31.43127,19.188247 L 31.31676,19.212395 L 31.202249,19.236542 L 31.073425,19.272763 L 30.958915,19.296909 L 30.844406,19.333131 L 30.729896,19.369353 L 30.615385,19.42972 L 30.500877,19.478014 L 30.386365,19.526309 L 30.271855,19.586676 L 30.157345,19.65912 L 30.057148,19.719487 L 29.94264,19.79193 L 29.828129,19.864372 L 29.713619,19.936813 L 29.613423,20.033402 L 29.498913,20.105843 L 29.398717,20.202433 L 29.284207,20.299021 L 29.18401,20.39561 L 29.083814,20.504274 L 28.969304,20.612937 L 28.854794,20.721599 L 28.768911,20.842334 L 28.654402,20.963071 L 28.554205,21.095881 L 28.439696,21.216617 L 28.339499,21.349427 L 28.239303,21.494311 L 28.139107,21.639193 L 28.024596,21.796151 L 27.9244,21.941034 L 27.80989,22.110065 L 27.709694,22.267023 L 27.609498,22.436053 L 27.509302,22.617157 L 27.409105,22.786188 L 27.294596,22.979366 L 28.783225,23.5589 L 28.883421,23.38987 L 28.983617,23.22084 L 29.069499,23.051809 L 29.169697,22.906924 L 29.255579,22.749968 L 29.355776,22.617157 L 29.441658,22.472275 L 29.541854,22.351538 L 29.627736,22.218727 L 29.713619,22.097992 L 29.799501,21.977255 L 29.899698,21.868593 L 29.985581,21.75993 L 30.071463,21.663341 L 30.157345,21.566752 L 30.243229,21.470163 L 30.329111,21.385647 L 30.400679,21.313207 L 30.486562,21.240764 L 30.572444,21.168323 L 30.644013,21.095881 L 30.715582,21.035512 L 30.801464,20.975144 L 30.873032,20.92685 L 30.944601,20.878555 L 31.016171,20.830261 L 31.087738,20.794041 L 31.159308,20.745745 L 31.230877,20.709525 L 31.273818,20.685377 L 31.345387,20.649157 L 31.402642,20.637084 L 31.47421,20.612937 L 31.517152,20.600863 L 31.574408,20.576714 L 31.631662,20.564641 L 31.688917,20.552567 L 31.731858,20.540494 L 31.789114,20.540494 L 31.832055,20.528421 L 31.889309,20.528421 L 31.932251,20.528421 L 31.989506,20.528421 L 32.032447,20.528421 L 32.075388,20.528421 L 32.118329,20.540494 L 32.16127,20.540494 L 32.218526,20.552567 L 32.261467,20.552567 L 32.304408,20.576714 L 32.361664,20.588788 L 32.404604,20.600863 L 32.46186,20.612937 L 32.504801,20.637084 L 32.562056,20.649157 L 32.619311,20.673304 L 32.662252,20.709525 L 32.719507,20.733673 L 32.776762,20.757819 L 32.819704,20.781967 L 32.934213,20.842334 L 33.034409,20.92685 L 33.148919,20.999292 L 33.249115,21.083808 L 33.349312,21.168323 L 33.463822,21.252838 L 33.564019,21.349427 L 33.664215,21.458089 L 33.76441,21.566752 L 33.850293,21.663341 L 33.95049,21.772004 L 34.050685,21.892741 L 34.136568,22.001404 L 34.222451,22.110065 L 34.294019,22.218727 L 34.379902,22.339464 L 34.45147,22.448127 L 34.52304,22.544716 L 34.651864,22.762042 L 34.780687,22.95522 L 34.880883,23.124251 L 34.952452,23.269133 L 35.066961,23.498533 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 36.612847,23.075955"
id="path2537"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 42.939524,23.015587 L 42.939524,23.015587 L 42.853641,23.184618 L 42.767759,23.353649 L 42.653249,23.498533 L 42.567367,23.655489 L 42.46717,23.812448 L 42.381288,23.95733 L 42.281091,24.090141 L 42.195209,24.222951 L 42.109327,24.35576 L 42.009131,24.476497 L 41.923248,24.585159 L 41.837365,24.693822 L 41.751482,24.802485 L 41.665599,24.899074 L 41.579718,24.995662 L 41.479521,25.092252 L 41.407952,25.188841 L 41.32207,25.261282 L 41.236187,25.333725 L 41.150305,25.406165 L 41.078736,25.466534 L 41.007168,25.538976 L 40.935599,25.599344 L 40.849716,25.659712 L 40.778147,25.695932 L 40.706579,25.756301 L 40.635009,25.792522 L 40.577755,25.828743 L 40.506186,25.864964 L 40.448931,25.889111 L 40.377363,25.925332 L 40.320107,25.949479 L 40.262853,25.973627 L 40.205598,25.9857 L 40.148343,26.009848 L 40.091087,26.009848 L 40.033833,26.033996 L 39.990891,26.046068 L 39.933637,26.046068 L 39.890696,26.046068 L 39.83344,26.058142 L 39.7905,26.058142 L 39.747558,26.058142 L 39.690302,26.058142 L 39.647361,26.058142 L 39.590106,26.046068 L 39.547165,26.046068 L 39.504224,26.046068 L 39.446969,26.021922 L 39.389714,26.009848 L 39.361086,26.009848 L 39.30383,25.9857 L 39.26089,25.973627 L 39.203635,25.949479 L 39.160694,25.937405 L 39.117753,25.913259 L 39.046183,25.889111 L 39.003242,25.864964 L 38.945988,25.840817 L 38.903046,25.816669 L 38.788536,25.756301 L 38.68834,25.671786 L 38.573829,25.599344 L 38.473633,25.514828 L 38.359123,25.442388 L 38.258927,25.345798 L 38.158732,25.249209 L 38.058535,25.15262 L 37.958338,25.043958 L 37.872457,24.935294 L 37.77226,24.838705 L 37.686378,24.730042 L 37.58618,24.609307 L 37.500298,24.500644 L 37.428729,24.391982 L 37.342848,24.283319 L 37.271278,24.174656 L 37.19971,24.078067 L 37.056573,23.860741 L 36.942063,23.679637 L 36.841867,23.498533 L 36.770299,23.353649 L 36.655789,23.136324 L 36.612847,23.075955 L 35.095589,23.5589 L 35.152845,23.679637 L 35.281668,23.909036 L 35.367551,24.090141 L 35.48206,24.295392 L 35.610884,24.500644 L 35.768336,24.730042 L 35.854218,24.862853 L 35.940101,24.995662 L 36.025983,25.116398 L 36.126178,25.249209 L 36.226376,25.369945 L 36.340885,25.502755 L 36.441082,25.635565 L 36.555591,25.768375 L 36.684415,25.901185 L 36.81324,26.021922 L 36.927749,26.154731 L 37.056573,26.287541 L 37.214023,26.408277 L 37.357162,26.529013 L 37.500298,26.637676 L 37.65775,26.746339 L 37.829515,26.855001 L 37.986966,26.951591 L 38.087163,26.999885 L 38.173045,27.048179 L 38.273241,27.096474 L 38.359123,27.132696 L 38.445006,27.168915 L 38.559516,27.21721 L 38.645399,27.253432 L 38.745595,27.277578 L 38.845792,27.3138 L 38.945988,27.337946 L 39.060498,27.362094 L 39.160694,27.386241 L 39.275204,27.410389 L 39.3754,27.422463 L 39.489911,27.422463 L 39.604419,27.434535 L 39.71893,27.434535 L 39.83344,27.434535 L 39.947951,27.434535 L 40.06246,27.422463 L 40.191284,27.410389 L 40.305794,27.398315 L 40.420303,27.362094 L 40.534814,27.35002 L 40.649323,27.3138 L 40.778147,27.277578 L 40.892658,27.241358 L 41.007168,27.205136 L 41.107364,27.144768 L 41.221874,27.096474 L 41.350698,27.048179 L 41.450893,26.987811 L 41.565404,26.927443 L 41.679913,26.855001 L 41.794424,26.782559 L 41.908934,26.710118 L 42.009131,26.625602 L 42.123641,26.541087 L 42.223836,26.456572 L 42.338347,26.372056 L 42.438542,26.275467 L 42.553053,26.178878 L 42.653249,26.058142 L 42.767759,25.961553 L 42.867955,25.852891 L 42.982465,25.732155 L 43.082662,25.599344 L 43.182858,25.478608 L 43.297368,25.345798 L 43.38325,25.212988 L 43.497761,25.068104 L 43.597957,24.935294 L 43.698152,24.778338 L 43.812662,24.633454 L 43.912858,24.464424 L 44.013056,24.295392 L 44.127566,24.126361 L 44.227763,23.95733 L 44.327958,23.776226 L 44.428154,23.595121 L 44.428154,23.595121 L 42.939524,23.015587 L 42.939524,23.015587 L 42.939524,23.015587"
id="path2539"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 52.272089,23.027661 L 52.229147,22.918998 L 52.100324,22.677526 L 52.000126,22.49642 L 51.885618,22.303243 L 51.756794,22.085918 L 51.613656,21.856519 L 51.527773,21.735782 L 51.427577,21.602974 L 51.341695,21.470163 L 51.241499,21.349427 L 51.141301,21.216617 L 51.041106,21.095881 L 50.926595,20.963071 L 50.812087,20.830261 L 50.697577,20.697451 L 50.568754,20.564641 L 50.43993,20.443905 L 50.311106,20.323169 L 50.167967,20.190359 L 50.024831,20.069623 L 49.867379,19.96096 L 49.709929,19.840224 L 49.552477,19.743634 L 49.380712,19.647046 L 49.294829,19.59875 L 49.208946,19.550457 L 49.10875,19.502162 L 49.022867,19.453868 L 48.922672,19.42972 L 48.822475,19.381427 L 48.736592,19.345204 L 48.636397,19.321056 L 48.521886,19.284837 L 48.421691,19.260689 L 48.321495,19.236542 L 48.206984,19.212395 L 48.106788,19.188247 L 47.992277,19.176173 L 47.877768,19.176173 L 47.763257,19.164101 L 47.648748,19.164101 L 47.534238,19.164101 L 47.419728,19.164101 L 47.305218,19.176173 L 47.190709,19.188247 L 47.076198,19.200321 L 46.961687,19.236542 L 46.847179,19.248615 L 46.718354,19.284837 L 46.603844,19.321056 L 46.489334,19.357278 L 46.374825,19.405572 L 46.260315,19.441794 L 46.145804,19.502162 L 46.031294,19.562531 L 45.916783,19.622898 L 45.802274,19.683267 L 45.702078,19.743634 L 45.587567,19.816075 L 45.473058,19.888517 L 45.372862,19.973033 L 45.258352,20.057549 L 45.158155,20.142065 L 45.043646,20.22658 L 44.929135,20.335242 L 44.828938,20.431831 L 44.728742,20.528421 L 44.628546,20.637084 L 44.514036,20.745745 L 44.41384,20.866481 L 44.29933,20.999292 L 44.199135,21.120028 L 44.098938,21.252838 L 43.984428,21.385647 L 43.884231,21.530531 L 43.784034,21.663341 L 43.683839,21.820298 L 43.569328,21.977255 L 43.469132,22.134213 L 43.368937,22.303243 L 43.254426,22.472275 L 43.154231,22.641305 L 43.054034,22.82241 L 42.939524,23.015587 L 44.428154,23.595121 L 44.52835,23.426091 L 44.628546,23.25706 L 44.714429,23.100103 L 44.814624,22.943146 L 44.900507,22.786188 L 45.000704,22.641305 L 45.086587,22.508494 L 45.186783,22.375685 L 45.272666,22.242875 L 45.372862,22.122139 L 45.458744,22.013476 L 45.544626,21.904814 L 45.630508,21.796151 L 45.716392,21.699562 L 45.802274,21.602974 L 45.888156,21.506384 L 45.974038,21.421869 L 46.059921,21.349427 L 46.145804,21.264911 L 46.217374,21.19247 L 46.303256,21.120028 L 46.374825,21.05966 L 46.446393,20.999292 L 46.517962,20.938923 L 46.589531,20.902704 L 46.661098,20.842334 L 46.732668,20.806113 L 46.804237,20.769893 L 46.861492,20.733673 L 46.93306,20.709525 L 47.004629,20.673304 L 47.04757,20.649157 L 47.119139,20.637084 L 47.176394,20.612937 L 47.23365,20.600863 L 47.290904,20.576714 L 47.333846,20.564641 L 47.391101,20.552567 L 47.434041,20.552567 L 47.491296,20.552567 L 47.534238,20.540494 L 47.577179,20.540494 L 47.634435,20.540494 L 47.677375,20.540494 L 47.73463,20.540494 L 47.777571,20.552567 L 47.820512,20.552567 L 47.877768,20.564641 L 47.920708,20.576714 L 47.963649,20.576714 L 48.020905,20.600863 L 48.07816,20.612937 L 48.121101,20.62501 L 48.178356,20.637084 L 48.221298,20.673304 L 48.278553,20.685377 L 48.321495,20.709525 L 48.37875,20.733673 L 48.436005,20.769893 L 48.478945,20.781967 L 48.593455,20.842334 L 48.693651,20.92685 L 48.793848,20.999292 L 48.908357,21.083808 L 49.008554,21.168323 L 49.10875,21.252838 L 49.223261,21.349427 L 49.323457,21.446016 L 49.423653,21.554679 L 49.509536,21.663341 L 49.609732,21.75993 L 49.695615,21.868593 L 49.781497,21.98933 L 49.867379,22.085918 L 49.953262,22.206653 L 50.024831,22.315316 L 50.110712,22.42398 L 50.182282,22.532643 L 50.311106,22.737894 L 50.425616,22.918998 L 50.525813,23.100103 L 50.611694,23.232914 L 50.711891,23.462311 L 50.754832,23.522681 L 52.272089,23.027661"
id="path2541"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 50.754832,23.522681 L 50.769146,23.5589 L 50.797773,23.595121 L 50.812087,23.643417 L 50.840713,23.679637 L 50.869341,23.691711 L 50.883654,23.740005 L 50.912282,23.764153 L 50.940909,23.7883 L 50.983851,23.812448 L 51.012478,23.836594 L 51.041106,23.848667 L 51.069734,23.872815 L 51.09836,23.896962 L 51.141301,23.909036 L 51.184243,23.92111 L 51.212871,23.933184 L 51.28444,23.945256 L 51.356008,23.95733 L 51.427577,23.969404 L 51.51346,23.969404 L 51.58503,23.969404 L 51.656597,23.95733 L 51.74248,23.933184 L 51.799736,23.92111 L 51.885618,23.896962 L 51.942872,23.860741 L 52.014442,23.836594 L 52.071696,23.7883 L 52.128951,23.752078 L 52.171892,23.691711 L 52.214833,23.643417 L 52.257773,23.583048 L 52.272089,23.5589 L 52.300715,23.522681 L 52.300715,23.498533 L 52.31503,23.462311 L 52.329344,23.438165 L 52.329344,23.401944 L 52.329344,23.365722 L 52.329344,23.329502 L 52.329344,23.293281 L 52.329344,23.269133 L 52.329344,23.22084 L 52.329344,23.184618 L 52.31503,23.148398 L 52.300715,23.112177 L 52.300715,23.075955 L 52.272089,23.027661 L 50.754832,23.522681"
id="path2543"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2545"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2547"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2549"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2551"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2553"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2555"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2557"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2559"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2561"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2563"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2565"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2567"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2569"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2571"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2573"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2575"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.899931,23.450238 L 51.899931,23.401944 L 51.914244,23.365722 L 51.928558,23.329502 L 51.928558,23.293281 L 51.914244,23.269133 L 51.914244,23.232914 L 51.899931,23.196691 L 51.885618,23.172544 L 51.871304,23.136324 L 51.842676,23.112177 L 51.814049,23.088029 L 51.785421,23.075955 L 51.756794,23.039735 L 51.728166,23.027661 L 51.699538,23.015587 L 51.656597,23.003514 L 51.62797,22.99144 L 51.58503,22.979366 L 51.542088,22.979366 L 51.51346,22.979366 L 51.470518,22.979366 L 51.441891,22.979366 L 51.39895,22.99144 L 51.356008,23.003514 L 51.327381,23.015587 L 51.298753,23.015587 L 51.255812,23.039735 L 51.227184,23.075955 L 51.198557,23.100103 L 51.184243,23.124251 L 51.155616,23.160472 L 51.141301,23.196691 L 51.899931,23.450238"
id="path2577"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 43.311681,23.450238 L 43.311681,23.450238 L 43.411878,23.619269 L 43.497761,23.812448 L 43.61227,23.969404 L 43.712467,24.138434 L 43.812662,24.295392 L 43.912858,24.452349 L 44.013056,24.609307 L 44.127566,24.754191 L 44.213448,24.899074 L 44.327958,25.031884 L 44.41384,25.15262 L 44.52835,25.285429 L 44.628546,25.406165 L 44.728742,25.514828 L 44.814624,25.635565 L 44.929135,25.744228 L 45.029331,25.852891 L 45.129528,25.949479 L 45.229724,26.046068 L 45.32992,26.130584 L 45.430117,26.215098 L 45.530313,26.299615 L 45.630508,26.372056 L 45.730705,26.444498 L 45.816588,26.516939 L 45.931097,26.577308 L 46.031294,26.637676 L 46.13149,26.698045 L 46.231687,26.746339 L 46.331884,26.794633 L 46.446393,26.842929 L 46.532276,26.879148 L 46.632472,26.927443 L 46.732668,26.951591 L 46.832864,26.987811 L 46.93306,27.011959 L 47.033256,27.036106 L 47.133453,27.048179 L 47.23365,27.072326 L 47.348159,27.0844 L 47.434041,27.0844 L 47.548552,27.096474 L 47.634435,27.096474 L 47.73463,27.096474 L 47.834826,27.0844 L 47.920708,27.072326 L 48.020905,27.072326 L 48.121101,27.048179 L 48.206984,27.036106 L 48.307181,27.011959 L 48.393063,26.987811 L 48.478945,26.963665 L 48.564828,26.939517 L 48.665025,26.903296 L 48.736592,26.879148 L 48.822475,26.842929 L 48.908357,26.794633 L 48.99424,26.758412 L 49.065809,26.710118 L 49.151691,26.673897 L 49.309143,26.589382 L 49.452281,26.492793 L 49.595418,26.38413 L 49.738556,26.275467 L 49.867379,26.166805 L 49.996203,26.046068 L 50.125027,25.937405 L 50.253851,25.816669 L 50.36836,25.695932 L 50.482871,25.575197 L 50.597381,25.442388 L 50.697577,25.309577 L 50.797773,25.188841 L 50.897968,25.068104 L 50.998164,24.935294 L 51.084047,24.814558 L 51.169929,24.693822 L 51.241499,24.573086 L 51.39895,24.35576 L 51.527773,24.138434 L 51.62797,23.945256 L 51.728166,23.776226 L 51.85699,23.546827 L 51.899931,23.450238 L 51.141301,23.196691 L 51.09836,23.269133 L 50.983851,23.498533 L 50.897968,23.655489 L 50.797773,23.836594 L 50.668949,24.029772 L 50.540126,24.235023 L 50.468557,24.35576 L 50.382675,24.464424 L 50.296792,24.573086 L 50.210909,24.693822 L 50.125027,24.802485 L 50.024831,24.923221 L 49.924634,25.031884 L 49.838751,25.15262 L 49.738556,25.261282 L 49.624045,25.369945 L 49.52385,25.478608 L 49.40934,25.575197 L 49.294829,25.68386 L 49.180319,25.768375 L 49.065809,25.864964 L 48.936986,25.949479 L 48.822475,26.021922 L 48.693651,26.106436 L 48.636397,26.142658 L 48.579142,26.154731 L 48.507573,26.203026 L 48.450319,26.215098 L 48.393063,26.239246 L 48.321495,26.275467 L 48.264239,26.299615 L 48.206984,26.311688 L 48.135415,26.335835 L 48.07816,26.347909 L 48.006591,26.359983 L 47.949336,26.372056 L 47.892082,26.38413 L 47.820512,26.396203 L 47.763257,26.396203 L 47.691689,26.408277 L 47.634435,26.408277 L 47.562866,26.408277 L 47.491296,26.396203 L 47.434041,26.396203 L 47.362474,26.396203 L 47.305218,26.372056 L 47.23365,26.372056 L 47.162081,26.347909 L 47.090511,26.335835 L 47.018943,26.311688 L 46.947374,26.287541 L 46.875805,26.25132 L 46.804237,26.227172 L 46.718354,26.203026 L 46.646786,26.154731 L 46.560903,26.11851 L 46.489334,26.070216 L 46.417766,26.021922 L 46.331884,25.973627 L 46.246001,25.925332 L 46.160119,25.852891 L 46.088549,25.792522 L 46.002667,25.720081 L 45.916783,25.659712 L 45.816588,25.575197 L 45.74502,25.490682 L 45.644823,25.406165 L 45.55894,25.309577 L 45.473058,25.212988 L 45.372862,25.116398 L 45.286979,25.007736 L 45.201097,24.899074 L 45.1009,24.778338 L 45.015018,24.669675 L 44.914822,24.536864 L 44.814624,24.391982 L 44.728742,24.259171 L 44.628546,24.126361 L 44.52835,23.969404 L 44.442468,23.824521 L 44.342271,23.655489 L 44.242075,23.498533 L 44.14188,23.329502 L 44.041683,23.148398 L 44.041683,23.148398 L 43.311681,23.450238 L 43.311681,23.450238 L 43.311681,23.450238"
id="path2579"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.212061,23.401944 L 36.212061,23.401944 L 36.255003,23.329502 L 36.369513,23.112177 L 36.455395,22.95522 L 36.555591,22.774116 L 36.684415,22.580938 L 36.81324,22.363612 L 36.884808,22.254949 L 36.970691,22.146286 L 37.04226,22.025549 L 37.128142,21.916886 L 37.228337,21.796151 L 37.31422,21.675414 L 37.414415,21.566752 L 37.514612,21.446016 L 37.614808,21.349427 L 37.729319,21.22869 L 37.829515,21.120028 L 37.944025,21.02344 L 38.044221,20.92685 L 38.158732,20.830261 L 38.287555,20.733673 L 38.402064,20.649157 L 38.530888,20.576714 L 38.659712,20.504274 L 38.716968,20.468052 L 38.774222,20.443905 L 38.831477,20.419757 L 38.903046,20.383537 L 38.960302,20.359389 L 39.03187,20.335242 L 39.089124,20.311095 L 39.14638,20.286947 L 39.217949,20.2628 L 39.275204,20.2628 L 39.332459,20.238654 L 39.389714,20.22658 L 39.461282,20.22658 L 39.518537,20.202433 L 39.590106,20.202433 L 39.647361,20.202433 L 39.71893,20.202433 L 39.7905,20.202433 L 39.847754,20.202433 L 39.919323,20.202433 L 39.976578,20.22658 L 40.048147,20.22658 L 40.119715,20.22658 L 40.191284,20.2628 L 40.262853,20.2628 L 40.334421,20.299021 L 40.391676,20.323169 L 40.463245,20.335242 L 40.549127,20.371463 L 40.635009,20.407684 L 40.706579,20.443905 L 40.778147,20.480126 L 40.86403,20.528421 L 40.935599,20.576714 L 41.021482,20.62501 L 41.107364,20.685377 L 41.193246,20.733673 L 41.264816,20.806113 L 41.350698,20.878555 L 41.43658,20.963071 L 41.522463,21.02344 L 41.608345,21.120028 L 41.708541,21.204544 L 41.794424,21.289059 L 41.880306,21.385647 L 41.980503,21.482237 L 42.066385,21.5909 L 42.152267,21.711636 L 42.252464,21.820298 L 42.338347,21.941034 L 42.438542,22.073845 L 42.538739,22.206653 L 42.624621,22.339464 L 42.724817,22.472275 L 42.825014,22.629231 L 42.910895,22.786188 L 43.011092,22.943146 L 43.11129,23.100103 L 43.211485,23.269133 L 43.311681,23.450238 L 44.041683,23.148398 L 43.941486,22.979366 L 43.84129,22.798262 L 43.741093,22.629231 L 43.640897,22.460201 L 43.540701,22.303243 L 43.440505,22.146286 L 43.340309,21.98933 L 43.225798,21.844446 L 43.139916,21.711636 L 43.025407,21.578826 L 42.92521,21.446016 L 42.825014,21.313207 L 42.724817,21.19247 L 42.624621,21.083808 L 42.538739,20.963071 L 42.424229,20.854408 L 42.324032,20.745745 L 42.223836,20.649157 L 42.123641,20.564641 L 42.023443,20.480126 L 41.923248,20.383537 L 41.823052,20.299021 L 41.722854,20.22658 L 41.622658,20.166211 L 41.522463,20.081697 L 41.422265,20.033402 L 41.32207,19.96096 L 41.221874,19.900592 L 41.121677,19.852297 L 41.021482,19.804003 L 40.906971,19.755707 L 40.821088,19.719487 L 40.706579,19.683267 L 40.606382,19.647046 L 40.506186,19.622898 L 40.40599,19.586676 L 40.305794,19.562531 L 40.205598,19.550457 L 40.105401,19.526309 L 40.005206,19.526309 L 39.905009,19.514236 L 39.804812,19.502162 L 39.704617,19.502162 L 39.604419,19.502162 L 39.518537,19.526309 L 39.418342,19.526309 L 39.318145,19.526309 L 39.232263,19.550457 L 39.14638,19.562531 L 39.046183,19.59875 L 38.960302,19.622898 L 38.874419,19.647046 L 38.788536,19.671194 L 38.68834,19.695339 L 38.602457,19.731561 L 38.530888,19.767782 L 38.445006,19.804003 L 38.359123,19.840224 L 38.287555,19.888517 L 38.201673,19.924739 L 38.044221,20.021328 L 37.901085,20.117917 L 37.757946,20.22658 L 37.600496,20.323169 L 37.471671,20.431831 L 37.342848,20.552567 L 37.214023,20.673304 L 37.099514,20.794041 L 36.970691,20.914777 L 36.856181,21.035512 L 36.755985,21.168323 L 36.641474,21.289059 L 36.541278,21.409795 L 36.455395,21.542605 L 36.355199,21.663341 L 36.269317,21.796151 L 36.16912,21.916886 L 36.097552,22.025549 L 35.954414,22.254949 L 35.82559,22.472275 L 35.711082,22.653379 L 35.625199,22.82241 L 35.496374,23.051809 L 35.453433,23.160472 L 35.453433,23.160472 L 36.212061,23.401944 L 36.212061,23.401944 L 36.212061,23.401944"
id="path2581"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.623812,23.414018 L 27.623812,23.414018 L 27.724007,23.595121 L 27.838518,23.776226 L 27.938713,23.945256 L 28.038909,24.114288 L 28.139107,24.271245 L 28.239303,24.428201 L 28.339499,24.573086 L 28.439696,24.730042 L 28.539891,24.862853 L 28.640088,24.995662 L 28.740284,25.128472 L 28.84048,25.249209 L 28.940676,25.369945 L 29.040873,25.490682 L 29.141069,25.599344 L 29.241265,25.708007 L 29.355776,25.816669 L 29.455972,25.913259 L 29.556168,26.009848 L 29.656365,26.094363 L 29.742247,26.178878 L 29.842443,26.263394 L 29.956953,26.335835 L 30.057148,26.408277 L 30.157345,26.480719 L 30.257542,26.541087 L 30.357738,26.601456 L 30.457935,26.661823 L 30.558131,26.710118 L 30.658327,26.770486 L 30.758523,26.818781 L 30.858719,26.842929 L 30.958915,26.879148 L 31.059112,26.927443 L 31.159308,26.951591 L 31.273818,26.987811 L 31.374014,26.999885 L 31.47421,27.024033 L 31.574408,27.036106 L 31.674603,27.048179 L 31.774799,27.048179 L 31.874995,27.060253 L 31.960878,27.060253 L 32.061074,27.060253 L 32.146957,27.048179 L 32.247152,27.036106 L 32.34735,27.036106 L 32.447546,27.011959 L 32.533429,26.987811 L 32.619311,26.975737 L 32.719507,26.951591 L 32.80539,26.927443 L 32.891272,26.891223 L 32.977154,26.879148 L 33.063037,26.842929 L 33.148919,26.794633 L 33.234801,26.758412 L 33.30637,26.722192 L 33.392253,26.68597 L 33.478136,26.637676 L 33.621273,26.541087 L 33.778725,26.444498 L 33.921862,26.347909 L 34.064999,26.239246 L 34.193823,26.142658 L 34.336961,26.009848 L 34.45147,25.889111 L 34.580294,25.768375 L 34.694805,25.659712 L 34.809315,25.526902 L 34.923824,25.406165 L 35.024021,25.285429 L 35.124216,25.15262 L 35.224412,25.031884 L 35.324609,24.899074 L 35.396177,24.778338 L 35.48206,24.669675 L 35.567943,24.536864 L 35.711082,24.319539 L 35.839905,24.102215 L 35.954414,23.909036 L 36.040297,23.740005 L 36.16912,23.498533 L 36.212061,23.401944 L 35.453433,23.160472 L 35.424805,23.232914 L 35.295982,23.462311 L 35.210099,23.619269 L 35.109903,23.7883 L 34.995393,23.993552 L 34.852256,24.198804 L 34.780687,24.319539 L 34.694805,24.428201 L 34.623236,24.548938 L 34.537353,24.657601 L 34.45147,24.766264 L 34.351274,24.887 L 34.251078,24.995662 L 34.150882,25.116398 L 34.050685,25.225061 L 33.936175,25.333725 L 33.83598,25.442388 L 33.721469,25.551049 L 33.60696,25.647638 L 33.506764,25.744228 L 33.37794,25.828743 L 33.263429,25.913259 L 33.148919,25.9857 L 33.020096,26.058142 L 32.948527,26.094363 L 32.905586,26.130584 L 32.834017,26.154731 L 32.776762,26.190952 L 32.705193,26.215098 L 32.647939,26.239246 L 32.590684,26.25132 L 32.519116,26.275467 L 32.46186,26.299615 L 32.390291,26.311688 L 32.333035,26.335835 L 32.27578,26.335835 L 32.204211,26.347909 L 32.146957,26.359983 L 32.089703,26.372056 L 32.018133,26.372056 L 31.960878,26.372056 L 31.889309,26.372056 L 31.832055,26.372056 L 31.760486,26.359983 L 31.688917,26.347909 L 31.631662,26.347909 L 31.560094,26.335835 L 31.488526,26.311688 L 31.416956,26.299615 L 31.345387,26.275467 L 31.273818,26.25132 L 31.202249,26.227172 L 31.13068,26.203026 L 31.044797,26.154731 L 30.97323,26.11851 L 30.901661,26.082289 L 30.815777,26.046068 L 30.729896,25.9857 L 30.658327,25.937405 L 30.572444,25.889111 L 30.486562,25.828743 L 30.400679,25.756301 L 30.329111,25.695932 L 30.243229,25.611418 L 30.157345,25.538976 L 30.071463,25.454461 L 29.971267,25.369945 L 29.885384,25.285429 L 29.799501,25.188841 L 29.699306,25.068104 L 29.613423,24.971516 L 29.52754,24.862853 L 29.427345,24.742117 L 29.341463,24.633454 L 29.241265,24.500644 L 29.141069,24.367834 L 29.055186,24.222951 L 28.954991,24.090141 L 28.854794,23.945256 L 28.768911,23.7883 L 28.668716,23.631343 L 28.56852,23.462311 L 28.468322,23.293281 L 28.368127,23.124251 L 28.368127,23.124251 L 27.623812,23.414018 L 27.623812,23.414018 L 27.623812,23.414018"
id="path2583"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.567133,23.438165 L 20.567133,23.438165 L 20.59576,23.365722 L 20.71027,23.136324 L 20.796153,22.979366 L 20.896349,22.798262 L 21.025173,22.59301 L 21.153997,22.375685 L 21.239879,22.279097 L 21.311448,22.15836 L 21.39733,22.049697 L 21.483213,21.92896 L 21.569096,21.808224 L 21.654978,21.699562 L 21.755174,21.578826 L 21.855371,21.470163 L 21.955567,21.349427 L 22.070078,21.240764 L 22.170273,21.132101 L 22.284784,21.02344 L 22.399293,20.92685 L 22.49949,20.830261 L 22.628314,20.733673 L 22.742823,20.649157 L 22.871647,20.576714 L 23.000471,20.504274 L 23.057727,20.468052 L 23.114982,20.431831 L 23.172236,20.39561 L 23.243805,20.371463 L 23.30106,20.347316 L 23.358316,20.323169 L 23.429882,20.299021 L 23.472823,20.286947 L 23.558706,20.2628 L 23.615962,20.238654 L 23.673216,20.22658 L 23.73047,20.22658 L 23.80204,20.202433 L 23.873609,20.202433 L 23.930864,20.190359 L 24.002433,20.190359 L 24.059688,20.190359 L 24.131257,20.190359 L 24.188512,20.190359 L 24.26008,20.190359 L 24.317335,20.202433 L 24.388905,20.202433 L 24.460473,20.22658 L 24.517728,20.22658 L 24.589296,20.250727 L 24.660865,20.2628 L 24.746747,20.299021 L 24.818316,20.323169 L 24.889884,20.359389 L 24.961454,20.383537 L 25.033023,20.419757 L 25.104591,20.455978 L 25.176161,20.504274 L 25.262043,20.552567 L 25.347925,20.612937 L 25.433808,20.661231 L 25.505377,20.721599 L 25.591259,20.781967 L 25.677142,20.842334 L 25.777338,20.92685 L 25.848906,20.999292 L 25.934789,21.083808 L 26.034985,21.180397 L 26.120868,21.264911 L 26.221064,21.349427 L 26.292634,21.458089 L 26.392828,21.566752 L 26.493026,21.675414 L 26.578908,21.796151 L 26.664791,21.916886 L 26.764987,22.037623 L 26.850869,22.170434 L 26.951065,22.303243 L 27.051261,22.448127 L 27.151458,22.59301 L 27.237341,22.749968 L 27.337537,22.906924 L 27.437732,23.075955 L 27.523615,23.232914 L 27.623812,23.414018 L 28.368127,23.124251 L 28.267931,22.943146 L 28.167734,22.762042 L 28.067537,22.59301 L 27.967341,22.436053 L 27.852832,22.267023 L 27.766949,22.110065 L 27.666753,21.953108 L 27.566556,21.820298 L 27.452047,21.675414 L 27.366165,21.542605 L 27.251654,21.409795 L 27.151458,21.276985 L 27.051261,21.168323 L 26.951065,21.05966 L 26.850869,20.938923 L 26.750673,20.830261 L 26.650476,20.721599 L 26.564594,20.62501 L 26.450084,20.540494 L 26.349887,20.443905 L 26.249692,20.359389 L 26.149496,20.286947 L 26.063613,20.202433 L 25.949103,20.129991 L 25.848906,20.069623 L 25.74871,19.99718 L 25.648514,19.936813 L 25.548318,19.876444 L 25.448122,19.82815 L 25.347925,19.779856 L 25.24773,19.731561 L 25.147533,19.695339 L 25.047337,19.65912 L 24.94714,19.622898 L 24.846943,19.59875 L 24.746747,19.562531 L 24.646552,19.550457 L 24.546355,19.526309 L 24.446159,19.514236 L 24.345963,19.502162 L 24.231453,19.490088 L 24.145571,19.490088 L 24.03106,19.490088 L 23.945177,19.490088 L 23.844981,19.502162 L 23.744785,19.514236 L 23.658903,19.526309 L 23.558706,19.550457 L 23.472823,19.562531 L 23.386942,19.586676 L 23.286746,19.59875 L 23.18655,19.622898 L 23.114982,19.65912 L 23.029099,19.695339 L 22.943216,19.731561 L 22.857333,19.767782 L 22.771451,19.804003 L 22.685568,19.840224 L 22.614,19.888517 L 22.513803,19.924739 L 22.384979,20.021328 L 22.241843,20.117917 L 22.084392,20.22658 L 21.955567,20.335242 L 21.81243,20.443905 L 21.683606,20.552567 L 21.554783,20.685377 L 21.425958,20.806113 L 21.311448,20.92685 L 21.196938,21.05966 L 21.082428,21.180397 L 20.982232,21.301133 L 20.882036,21.433943 L 20.796153,21.566752 L 20.695957,21.675414 L 20.610074,21.808224 L 20.524192,21.92896 L 20.43831,22.049697 L 20.295171,22.279097 L 20.166348,22.49642 L 20.051839,22.689599 L 19.965957,22.846557 L 19.837133,23.100103 L 19.808505,23.196691 L 19.808505,23.196691 L 20.567133,23.438165 L 20.567133,23.438165 L 20.567133,23.438165"
id="path2585"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.978883,23.450238 L 11.978883,23.450238 L 12.07908,23.619269 L 12.193588,23.812448 L 12.279472,23.969404 L 12.393982,24.138434 L 12.494178,24.295392 L 12.594375,24.452349 L 12.694571,24.609307 L 12.794767,24.754191 L 12.894963,24.899074 L 12.995159,25.031884 L 13.095355,25.15262 L 13.195551,25.285429 L 13.295748,25.406165 L 13.395944,25.514828 L 13.49614,25.635565 L 13.596338,25.744228 L 13.710846,25.852891 L 13.796729,25.949479 L 13.911239,26.046068 L 13.997122,26.130584 L 14.097318,26.215098 L 14.197514,26.299615 L 14.29771,26.372056 L 14.397906,26.444498 L 14.512417,26.516939 L 14.5983,26.577308 L 14.712809,26.637676 L 14.813005,26.698045 L 14.913201,26.746339 L 15.013398,26.794633 L 15.113594,26.842929 L 15.21379,26.879148 L 15.313986,26.927443 L 15.414183,26.951591 L 15.514379,26.987811 L 15.614576,27.011959 L 15.714772,27.036106 L 15.829282,27.048179 L 15.915165,27.072326 L 16.029674,27.072326 L 16.129871,27.0844 L 16.215754,27.096474 L 16.315949,27.096474 L 16.416145,27.0844 L 16.502028,27.0844 L 16.616538,27.072326 L 16.702421,27.072326 L 16.802617,27.048179 L 16.902813,27.036106 L 16.974382,27.011959 L 17.074579,26.987811 L 17.16046,26.951591 L 17.246344,26.939517 L 17.332226,26.891223 L 17.418108,26.867075 L 17.50399,26.842929 L 17.589873,26.782559 L 17.675756,26.746339 L 17.747324,26.710118 L 17.818894,26.673897 L 17.976345,26.589382 L 18.133796,26.492793 L 18.276933,26.38413 L 18.405757,26.275467 L 18.534581,26.154731 L 18.677718,26.046068 L 18.806542,25.937405 L 18.921053,25.804596 L 19.049876,25.68386 L 19.164386,25.575197 L 19.264582,25.442388 L 19.364779,25.309577 L 19.464974,25.188841 L 19.56517,25.056031 L 19.665367,24.935294 L 19.75125,24.814558 L 19.837133,24.681749 L 19.923015,24.573086 L 20.051839,24.331613 L 20.194976,24.126361 L 20.295171,23.933184 L 20.395368,23.776226 L 20.509878,23.534754 L 20.567133,23.438165 L 19.808505,23.196691 L 19.75125,23.269133 L 19.636739,23.486458 L 19.56517,23.655489 L 19.464974,23.824521 L 19.336151,24.029772 L 19.207326,24.235023 L 19.135759,24.343687 L 19.049876,24.452349 L 18.963994,24.573086 L 18.892425,24.681749 L 18.792229,24.802485 L 18.706346,24.923221 L 18.606149,25.031884 L 18.505953,25.15262 L 18.405757,25.261282 L 18.291247,25.369945 L 18.191051,25.466534 L 18.076541,25.575197 L 17.962031,25.671786 L 17.847522,25.768375 L 17.733011,25.864964 L 17.618501,25.949479 L 17.489676,26.021922 L 17.375167,26.094363 L 17.317912,26.142658 L 17.260657,26.154731 L 17.189088,26.190952 L 17.131833,26.215098 L 17.060264,26.239246 L 17.017323,26.275467 L 16.945755,26.299615 L 16.874186,26.311688 L 16.816932,26.335835 L 16.759676,26.347909 L 16.688108,26.359983 L 16.630851,26.372056 L 16.573597,26.38413 L 16.502028,26.396203 L 16.430459,26.396203 L 16.373203,26.396203 L 16.301636,26.408277 L 16.24438,26.408277 L 16.187126,26.396203 L 16.115556,26.396203 L 16.043988,26.396203 L 15.97242,26.372056 L 15.915165,26.372056 L 15.843595,26.347909 L 15.772027,26.335835 L 15.700458,26.311688 L 15.62889,26.287541 L 15.543006,26.25132 L 15.485752,26.227172 L 15.399869,26.203026 L 15.3283,26.154731 L 15.242418,26.11851 L 15.170848,26.070216 L 15.084966,26.021922 L 15.013398,25.973627 L 14.927516,25.913259 L 14.841633,25.852891 L 14.755751,25.792522 L 14.669869,25.720081 L 14.583986,25.647638 L 14.498103,25.575197 L 14.41222,25.490682 L 14.326338,25.406165 L 14.240455,25.309577 L 14.154574,25.212988 L 14.054376,25.116398 L 13.95418,25.007736 L 13.868298,24.899074 L 13.782416,24.778338 L 13.68222,24.669675 L 13.596338,24.536864 L 13.49614,24.391982 L 13.395944,24.259171 L 13.310061,24.126361 L 13.209865,23.969404 L 13.123983,23.824521 L 13.023787,23.655489 L 12.92359,23.498533 L 12.823395,23.329502 L 12.723198,23.148398 L 12.723198,23.148398 L 11.978883,23.450238 L 11.978883,23.450238 L 11.978883,23.450238"
id="path2587"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.9078912,23.401944 L 4.9508321,23.329502 L 5.0653424,23.100103 L 5.1512243,22.943146 L 5.2514211,22.762042 L 5.3802448,22.568864 L 5.5090684,22.363612 L 5.5806369,22.242875 L 5.6522063,22.146286 L 5.738089,22.025549 L 5.8239708,21.916886 L 5.9241669,21.796151 L 6.0100496,21.675414 L 6.1102465,21.566752 L 6.1961275,21.446016 L 6.3106386,21.337353 L 6.4108347,21.22869 L 6.525345,21.120028 L 6.625541,21.02344 L 6.7400513,20.92685 L 6.8688742,20.830261 L 6.969071,20.733673 L 7.0978947,20.649157 L 7.2124051,20.576714 L 7.3412278,20.504274 L 7.3984829,20.468052 L 7.4700531,20.431831 L 7.5129941,20.407684 L 7.5845617,20.383537 L 7.6418177,20.359389 L 7.7133854,20.335242 L 7.7706412,20.311095 L 7.8278956,20.286947 L 7.8994649,20.2628 L 7.9567201,20.2628 L 8.0139744,20.238654 L 8.0855428,20.22658 L 8.1427989,20.22658 L 8.2143673,20.202433 L 8.2716226,20.202433 L 8.3431909,20.202433 L 8.4004462,20.202433 L 8.4720146,20.202433 L 8.5292698,20.202433 L 8.6008383,20.202433 L 8.6580935,20.202433 L 8.7439761,20.22658 L 8.8012313,20.22658 L 8.8727997,20.250727 L 8.9443683,20.2628 L 9.0159368,20.286947 L 9.087506,20.323169 L 9.1590746,20.335242 L 9.2306431,20.371463 L 9.3022124,20.407684 L 9.3880943,20.443905 L 9.4596637,20.480126 L 9.5312321,20.528421 L 9.6171148,20.576714 L 9.7029973,20.62501 L 9.7745663,20.685377 L 9.8747623,20.733673 L 9.9463303,20.806113 L 10.046527,20.878555 L 10.132409,20.963071 L 10.203978,21.02344 L 10.289861,21.120028 L 10.390057,21.19247 L 10.47594,21.289059 L 10.561822,21.385647 L 10.647704,21.482237 L 10.733586,21.5909 L 10.833783,21.711636 L 10.93398,21.820298 L 11.019863,21.941034 L 11.105745,22.073845 L 11.20594,22.206653 L 11.306137,22.339464 L 11.406333,22.472275 L 11.492216,22.629231 L 11.592411,22.786188 L 11.692608,22.943146 L 11.792804,23.100103 L 11.878686,23.269133 L 11.978883,23.450238 L 12.723198,23.148398 L 12.623002,22.979366 L 12.522806,22.798262 L 12.42261,22.629231 L 12.322413,22.460201 L 12.207903,22.303243 L 12.107706,22.146286 L 12.00751,21.98933 L 11.907315,21.844446 L 11.807118,21.711636 L 11.706922,21.578826 L 11.606726,21.446016 L 11.506529,21.313207 L 11.406333,21.19247 L 11.306137,21.083808 L 11.20594,20.963071 L 11.105745,20.854408 L 11.005549,20.745745 L 10.905352,20.649157 L 10.805156,20.564641 L 10.70496,20.480126 L 10.604764,20.383537 L 10.504567,20.311095 L 10.404371,20.22658 L 10.304174,20.166211 L 10.203978,20.081697 L 10.103782,20.021328 L 10.003585,19.96096 L 9.9033893,19.900592 L 9.8031933,19.852297 L 9.7029973,19.804003 L 9.6028006,19.755707 L 9.5026046,19.719487 L 9.4024084,19.683267 L 9.3022124,19.647046 L 9.2020155,19.622898 L 9.1018194,19.586676 L 8.9873101,19.562531 L 8.8871131,19.550457 L 8.786917,19.526309 L 8.7010344,19.526309 L 8.6008383,19.514236 L 8.486328,19.502162 L 8.4004462,19.502162 L 8.30025,19.502162 L 8.200054,19.526309 L 8.0998571,19.526309 L 8.0139744,19.526309 L 7.9137783,19.550457 L 7.8278956,19.562531 L 7.7420138,19.586676 L 7.6418177,19.622898 L 7.5559341,19.647046 L 7.4700531,19.671194 L 7.3841695,19.695339 L 7.2982878,19.731561 L 7.2124051,19.767782 L 7.1265223,19.804003 L 7.0406396,19.840224 L 6.969071,19.876444 L 6.8831883,19.924739 L 6.7400513,20.009254 L 6.5826001,20.105843 L 6.4394623,20.22658 L 6.2963246,20.323169 L 6.1675009,20.431831 L 6.0243629,20.552567 L 5.9098536,20.673304 L 5.7810299,20.781967 L 5.6665187,20.902704 L 5.5520094,21.035512 L 5.4374999,21.156249 L 5.337303,21.289059 L 5.237107,21.409795 L 5.1369108,21.542605 L 5.0510281,21.663341 L 4.9508321,21.784078 L 4.8792636,21.904814 L 4.7933809,22.025549 L 4.6502439,22.254949 L 4.5214194,22.460201 L 4.4069092,22.653379 L 4.3210273,22.82241 L 4.1922037,23.051809 L 4.1492618,23.148398 L 4.9078912,23.401944"
id="path2589"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.1492618,23.148398 L 4.1349484,23.196691 L 4.1206351,23.232914 L 4.1206351,23.269133 L 4.1206351,23.305354 L 4.1206351,23.329502 L 4.1349484,23.377796 L 4.1492618,23.401944 L 4.1635752,23.426091 L 4.1778902,23.462311 L 4.1922037,23.486458 L 4.2208311,23.510607 L 4.2494588,23.534754 L 4.2780864,23.5589 L 4.3210273,23.570974 L 4.3496539,23.583048 L 4.3925958,23.595121 L 4.4212234,23.607195 L 4.4498509,23.619269 L 4.4927928,23.619269 L 4.5357337,23.619269 L 4.5786746,23.619269 L 4.6073021,23.619269 L 4.6502439,23.619269 L 4.6788706,23.595121 L 4.7218124,23.595121 L 4.7504399,23.583048 L 4.7790676,23.5589 L 4.8220085,23.534754 L 4.8363218,23.498533 L 4.8649494,23.474385 L 4.893577,23.438165 L 4.9078912,23.401944 L 4.1492618,23.148398"
id="path2591"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 5.294362,23.075955 L 5.2800486,23.039735 L 5.2514211,23.003514 L 5.2227936,22.95522 L 5.2084793,22.918998 L 5.1798517,22.894851 L 5.1512243,22.858631 L 5.1225975,22.846557 L 5.0939699,22.82241 L 5.0653424,22.786188 L 5.0367148,22.762042 L 4.9937729,22.749968 L 4.9794596,22.72582 L 4.9078912,22.689599 L 4.8363218,22.665452 L 4.7504399,22.653379 L 4.6931849,22.641305 L 4.6073021,22.629231 L 4.5357337,22.629231 L 4.4498509,22.629231 L 4.3925958,22.641305 L 4.306713,22.653379 L 4.2351446,22.677526 L 4.1635752,22.701673 L 4.0920075,22.737894 L 4.0347515,22.774116 L 3.9774973,22.82241 L 3.9202421,22.846557 L 3.8773012,22.906924 L 3.8343594,22.95522 L 3.7771051,23.015587 L 3.7627918,23.039735 L 3.7627918,23.075955 L 3.7341633,23.100103 L 3.7341633,23.136324 L 3.71985,23.172544 L 3.71985,23.196691 L 3.7055358,23.232914 L 3.7055358,23.269133 L 3.7055358,23.305354 L 3.7055358,23.329502 L 3.71985,23.377796 L 3.71985,23.414018 L 3.71985,23.450238 L 3.7341633,23.486458 L 3.7484767,23.522681 L 3.7627918,23.570974 L 5.294362,23.075955"
id="path2593"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.621039,23.015587 L 11.621039,23.015587 L 11.535157,23.184618 L 11.434961,23.353649 L 11.349078,23.498533 L 11.248881,23.655489 L 11.148686,23.812448 L 11.04849,23.95733 L 10.962608,24.090141 L 10.876725,24.222951 L 10.790843,24.35576 L 10.690645,24.476497 L 10.604764,24.585159 L 10.51888,24.693822 L 10.418685,24.802485 L 10.347115,24.899074 L 10.261233,24.995662 L 10.175351,25.092252 L 10.089468,25.188841 L 10.003585,25.261282 L 9.9320173,25.333725 L 9.8461353,25.406165 L 9.7602523,25.478608 L 9.6886833,25.538976 L 9.6171148,25.599344 L 9.5312321,25.659712 L 9.4596637,25.695932 L 9.3880943,25.756301 L 9.33084,25.792522 L 9.2592706,25.828743 L 9.1733879,25.864964 L 9.130447,25.889111 L 9.0588785,25.925332 L 9.0016234,25.949479 L 8.930055,25.973627 L 8.8727997,25.9857 L 8.829858,26.009848 L 8.7726037,26.009848 L 8.7153486,26.033996 L 8.6580935,26.046068 L 8.6151525,26.046068 L 8.5722117,26.058142 L 8.5149556,26.058142 L 8.4720146,26.058142 L 8.4147595,26.058142 L 8.3718186,26.058142 L 8.3288768,26.058142 L 8.2716226,26.046068 L 8.2143673,26.046068 L 8.1857398,26.046068 L 8.1284846,26.021922 L 8.0855428,26.009848 L 8.0282885,26.009848 L 7.9853468,25.9857 L 7.9280916,25.973627 L 7.8851507,25.949479 L 7.8278956,25.937405 L 7.7849547,25.913259 L 7.7276994,25.889111 L 7.6847578,25.864964 L 7.6275035,25.840817 L 7.5845617,25.816669 L 7.4700531,25.756301 L 7.355542,25.68386 L 7.255346,25.599344 L 7.1408365,25.514828 L 7.0406396,25.442388 L 6.9404435,25.345798 L 6.8259333,25.249209 L 6.7257371,25.15262 L 6.625541,25.056031 L 6.5396583,24.947368 L 6.4394623,24.838705 L 6.3535795,24.730042 L 6.2676969,24.609307 L 6.1818151,24.500644 L 6.0959323,24.391982 L 6.0100496,24.295392 L 5.9384812,24.174656 L 5.8669118,24.078067 L 5.738089,23.872815 L 5.6235787,23.679637 L 5.5233817,23.498533 L 5.4374999,23.353649 L 5.3229904,23.136324 L 5.294362,23.075955 L 3.7627918,23.570974 L 3.820046,23.679637 L 3.9488697,23.92111 L 4.0347515,24.090141 L 4.1635752,24.295392 L 4.2923997,24.512718 L 4.4355375,24.742117 L 4.5214194,24.862853 L 4.6073021,24.995662 L 4.7074982,25.116398 L 4.7933809,25.249209 L 4.893577,25.382019 L 5.0080872,25.502755 L 5.1082833,25.647638 L 5.237107,25.768375 L 5.3516172,25.901185 L 5.4804417,26.046068 L 5.6092645,26.154731 L 5.738089,26.287541 L 5.881226,26.408277 L 6.0243629,26.529013 L 6.1818151,26.64975 L 6.3392662,26.746339 L 6.4967165,26.855001 L 6.6684819,26.951591 L 6.7543647,27.011959 L 6.8545607,27.048179 L 6.9404435,27.096474 L 7.0263253,27.144768 L 7.1265223,27.180989 L 7.2267184,27.21721 L 7.3269144,27.253432 L 7.4271113,27.289652 L 7.5273066,27.325873 L 7.6275035,27.337946 L 7.7420138,27.362094 L 7.8422098,27.386241 L 7.9567201,27.410389 L 8.0569153,27.422463 L 8.1857398,27.422463 L 8.2859359,27.434535 L 8.4004462,27.446608 L 8.5149556,27.434535 L 8.6294667,27.434535 L 8.7439761,27.422463 L 8.8584856,27.422463 L 8.9873101,27.398315 L 9.1018194,27.362094 L 9.2163297,27.35002 L 9.33084,27.325873 L 9.4453494,27.277578 L 9.574173,27.241358 L 9.6886833,27.205136 L 9.8031933,27.144768 L 9.9177033,27.108548 L 10.032213,27.048179 L 10.146724,26.987811 L 10.246919,26.927443 L 10.375743,26.855001 L 10.47594,26.782559 L 10.59045,26.710118 L 10.690645,26.625602 L 10.805156,26.541087 L 10.905352,26.456572 L 11.005549,26.372056 L 11.120059,26.275467 L 11.234568,26.178878 L 11.32045,26.058142 L 11.434961,25.961553 L 11.535157,25.852891 L 11.649667,25.732155 L 11.749864,25.599344 L 11.850059,25.478608 L 11.96457,25.345798 L 12.064765,25.212988 L 12.164961,25.068104 L 12.279472,24.935294 L 12.379668,24.778338 L 12.479865,24.633454 L 12.594375,24.464424 L 12.694571,24.295392 L 12.794767,24.126361 L 12.909276,23.95733 L 13.009473,23.776226 L 13.123983,23.595121 L 13.123983,23.595121 L 11.621039,23.015587 L 11.621039,23.015587 L 11.621039,23.015587"
id="path2595"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.967919,23.039735 L 20.967919,23.039735 L 20.924977,22.918998 L 20.796153,22.677526 L 20.695957,22.508494 L 20.581446,22.315316 L 20.43831,22.085918 L 20.295171,21.856519 L 20.20929,21.735782 L 20.123407,21.615046 L 20.037524,21.482237 L 19.937328,21.349427 L 19.837133,21.216617 L 19.722621,21.095881 L 19.622425,20.963071 L 19.507915,20.830261 L 19.379092,20.697451 L 19.264582,20.564641 L 19.135759,20.443905 L 19.006935,20.323169 L 18.849484,20.202433 L 18.706346,20.069623 L 18.563208,19.96096 L 18.391443,19.840224 L 18.233992,19.743634 L 18.076541,19.647046 L 17.976345,19.59875 L 17.890463,19.550457 L 17.804581,19.502162 L 17.704384,19.453868 L 17.618501,19.42972 L 17.518305,19.381427 L 17.418108,19.345204 L 17.317912,19.321056 L 17.217716,19.296909 L 17.117519,19.260689 L 17.017323,19.236542 L 16.902813,19.212395 L 16.788304,19.200321 L 16.673793,19.176173 L 16.573597,19.176173 L 16.459086,19.164101 L 16.344577,19.164101 L 16.230066,19.164101 L 16.115556,19.164101 L 15.986734,19.176173 L 15.872223,19.188247 L 15.757714,19.212395 L 15.643203,19.236542 L 15.514379,19.260689 L 15.399869,19.284837 L 15.285358,19.321056 L 15.170848,19.357278 L 15.056339,19.405572 L 14.941829,19.453868 L 14.827319,19.490088 L 14.712809,19.562531 L 14.5983,19.622898 L 14.483789,19.683267 L 14.383592,19.743634 L 14.269082,19.816075 L 14.154574,19.888517 L 14.054376,19.973033 L 13.939867,20.057549 L 13.83967,20.142065 L 13.725161,20.22658 L 13.61065,20.335242 L 13.510454,20.431831 L 13.410257,20.528421 L 13.295748,20.637084 L 13.195551,20.745745 L 13.081041,20.866481 L 12.980846,20.999292 L 12.880649,21.120028 L 12.76614,21.252838 L 12.680257,21.373575 L 12.565747,21.530531 L 12.465551,21.663341 L 12.365354,21.820298 L 12.250844,21.977255 L 12.150647,22.134213 L 12.036138,22.303243 L 11.935941,22.472275 L 11.835745,22.641305 L 11.73555,22.82241 L 11.621039,23.015587 L 13.123983,23.595121 L 13.195551,23.426091 L 13.295748,23.25706 L 13.395944,23.100103 L 13.481827,22.943146 L 13.596338,22.786188 L 13.68222,22.641305 L 13.768102,22.508494 L 13.868298,22.375685 L 13.95418,22.242875 L 14.040063,22.122139 L 14.140259,22.013476 L 14.226141,21.904814 L 14.312024,21.796151 L 14.397906,21.699562 L 14.483789,21.602974 L 14.569672,21.506384 L 14.655554,21.421869 L 14.741436,21.349427 L 14.813005,21.264911 L 14.898889,21.19247 L 14.970457,21.120028 L 15.056339,21.05966 L 15.127907,20.999292 L 15.199477,20.963071 L 15.285358,20.902704 L 15.342613,20.854408 L 15.414183,20.806113 L 15.485752,20.769893 L 15.543006,20.733673 L 15.614576,20.709525 L 15.686144,20.685377 L 15.7434,20.649157 L 15.800654,20.637084 L 15.857909,20.612937 L 15.915165,20.600863 L 15.97242,20.588788 L 16.029674,20.564641 L 16.072615,20.564641 L 16.129871,20.552567 L 16.172812,20.552567 L 16.230066,20.540494 L 16.273008,20.540494 L 16.315949,20.540494 L 16.373203,20.540494 L 16.416145,20.540494 L 16.4734,20.552567 L 16.516342,20.552567 L 16.573597,20.564641 L 16.616538,20.576714 L 16.65948,20.588788 L 16.716735,20.600863 L 16.759676,20.612937 L 16.816932,20.62501 L 16.859872,20.637084 L 16.917127,20.673304 L 16.960068,20.685377 L 17.017323,20.709525 L 17.060264,20.733673 L 17.117519,20.769893 L 17.16046,20.794041 L 17.27497,20.854408 L 17.38948,20.92685 L 17.489676,20.999292 L 17.604187,21.083808 L 17.704384,21.168323 L 17.804581,21.252838 L 17.904776,21.349427 L 18.019286,21.446016 L 18.105169,21.554679 L 18.205364,21.663341 L 18.291247,21.75993 L 18.391443,21.880667 L 18.477325,21.98933 L 18.563208,22.110065 L 18.64909,22.206653 L 18.734973,22.315316 L 18.806542,22.436053 L 18.863797,22.532643 L 19.006935,22.737894 L 19.135759,22.931072 L 19.221641,23.112177 L 19.293209,23.25706 L 19.407719,23.462311 L 19.450661,23.534754 L 19.450661,23.534754 L 20.967919,23.039735 L 20.967919,23.039735 L 20.967919,23.039735"
id="path2597"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.294596,22.979366 L 27.294596,22.979366 L 27.208713,23.148398 L 27.108517,23.317428 L 27.00832,23.474385 L 26.922437,23.631343 L 26.822242,23.776226 L 26.736359,23.92111 L 26.636163,24.065993 L 26.550281,24.198804 L 26.450084,24.319539 L 26.364202,24.452349 L 26.264005,24.561012 L 26.178123,24.669675 L 26.09224,24.766264 L 26.020672,24.874926 L 25.920475,24.971516 L 25.834592,25.056031 L 25.74871,25.15262 L 25.662827,25.225061 L 25.591259,25.309577 L 25.505377,25.369945 L 25.433808,25.442388 L 25.362239,25.502755 L 25.276356,25.575197 L 25.204789,25.611418 L 25.133219,25.671786 L 25.06165,25.708007 L 24.990082,25.756301 L 24.932826,25.792522 L 24.861258,25.828743 L 24.804002,25.864964 L 24.732434,25.889111 L 24.675179,25.913259 L 24.617924,25.937405 L 24.560669,25.949479 L 24.503413,25.973627 L 24.446159,25.9857 L 24.388905,25.997774 L 24.345963,26.009848 L 24.288707,26.009848 L 24.245766,26.021922 L 24.188512,26.021922 L 24.145571,26.021922 L 24.088316,26.021922 L 24.045374,26.021922 L 24.002433,26.021922 L 23.945177,26.009848 L 23.902236,26.009848 L 23.844981,26.009848 L 23.80204,25.9857 L 23.759098,25.9857 L 23.701844,25.973627 L 23.673216,25.949479 L 23.615962,25.937405 L 23.558706,25.925332 L 23.515764,25.901185 L 23.45851,25.877038 L 23.401256,25.852891 L 23.358316,25.828743 L 23.30106,25.804596 L 23.258118,25.780449 L 23.14361,25.708007 L 23.029099,25.647638 L 22.928903,25.575197 L 22.828705,25.490682 L 22.714196,25.406165 L 22.614,25.309577 L 22.49949,25.212988 L 22.399293,25.116398 L 22.313411,25.01981 L 22.213215,24.899074 L 22.127332,24.802485 L 22.027137,24.681749 L 21.941254,24.573086 L 21.855371,24.464424 L 21.769488,24.367834 L 21.697919,24.247097 L 21.612036,24.138434 L 21.554783,24.029772 L 21.411644,23.836594 L 21.282821,23.643417 L 21.196938,23.462311 L 21.12537,23.317428 L 20.996547,23.100103 L 20.967919,23.039735 L 19.450661,23.534754 L 19.493602,23.643417 L 19.622425,23.872815 L 19.722621,24.065993 L 19.837133,24.259171 L 19.965957,24.476497 L 20.123407,24.705895 L 20.20929,24.838705 L 20.280858,24.959442 L 20.381054,25.080178 L 20.481251,25.212988 L 20.581446,25.345798 L 20.681642,25.466534 L 20.796153,25.599344 L 20.896349,25.744228 L 21.039488,25.864964 L 21.153997,25.997774 L 21.282821,26.11851 L 21.411644,26.239246 L 21.554783,26.372056 L 21.697919,26.492793 L 21.855371,26.613529 L 22.012822,26.722192 L 22.170273,26.818781 L 22.327725,26.915369 L 22.427921,26.975737 L 22.513803,27.024033 L 22.614,27.072326 L 22.714196,27.108548 L 22.800079,27.144768 L 22.900275,27.180989 L 23.000471,27.21721 L 23.100668,27.253432 L 23.18655,27.277578 L 23.30106,27.3138 L 23.415569,27.325873 L 23.515764,27.35002 L 23.630275,27.362094 L 23.73047,27.386241 L 23.844981,27.398315 L 23.959492,27.398315 L 24.074002,27.410389 L 24.188512,27.410389 L 24.303022,27.398315 L 24.417531,27.386241 L 24.546355,27.374168 L 24.660865,27.362094 L 24.789688,27.337946 L 24.904199,27.3138 L 25.004395,27.277578 L 25.118906,27.241358 L 25.233416,27.21721 L 25.347925,27.168915 L 25.462436,27.120622 L 25.576945,27.072326 L 25.691455,27.011959 L 25.805965,26.951591 L 25.920475,26.879148 L 26.034985,26.818781 L 26.149496,26.746339 L 26.249692,26.68597 L 26.364202,26.589382 L 26.464398,26.516939 L 26.578908,26.432425 L 26.693417,26.335835 L 26.793615,26.239246 L 26.89381,26.142658 L 27.00832,26.046068 L 27.108517,25.925332 L 27.223026,25.816669 L 27.323224,25.695932 L 27.437732,25.575197 L 27.523615,25.454461 L 27.638125,25.309577 L 27.738321,25.188841 L 27.838518,25.031884 L 27.953027,24.899074 L 28.053224,24.742117 L 28.15342,24.585159 L 28.253617,24.428201 L 28.368127,24.271245 L 28.468322,24.102215 L 28.56852,23.92111 L 28.683029,23.752078 L 28.783225,23.5589 L 28.783225,23.5589 L 27.294596,22.979366 L 27.294596,22.979366 L 27.294596,22.979366"
id="path2599"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.612847,23.075955 L 36.612847,23.075955 L 36.569906,22.95522 L 36.455395,22.713747 L 36.355199,22.544716 L 36.24069,22.339464 L 36.097552,22.110065 L 35.954414,21.892741 L 35.868532,21.75993 L 35.782649,21.639193 L 35.696767,21.506384 L 35.59657,21.373575 L 35.496374,21.252838 L 35.396177,21.107954 L 35.281668,20.975144 L 35.167158,20.842334 L 35.052648,20.709525 L 34.923824,20.588788 L 34.795,20.455978 L 34.666177,20.323169 L 34.52304,20.202433 L 34.379902,20.081697 L 34.222451,19.973033 L 34.064999,19.852297 L 33.907549,19.743634 L 33.735783,19.647046 L 33.649902,19.59875 L 33.564019,19.550457 L 33.463822,19.502162 L 33.37794,19.453868 L 33.277742,19.42972 L 33.177547,19.381427 L 33.091664,19.345204 L 32.991469,19.308983 L 32.891272,19.272763 L 32.791076,19.248615 L 32.676565,19.236542 L 32.57637,19.200321 L 32.46186,19.188247 L 32.34735,19.176173 L 32.232839,19.164101 L 32.118329,19.152027 L 32.018133,19.139953 L 31.903622,19.139953 L 31.789114,19.152027 L 31.674603,19.164101 L 31.545779,19.176173 L 31.43127,19.188247 L 31.31676,19.212395 L 31.202249,19.236542 L 31.073425,19.272763 L 30.958915,19.296909 L 30.844406,19.333131 L 30.729896,19.369353 L 30.615385,19.42972 L 30.500877,19.478014 L 30.386365,19.526309 L 30.271855,19.586676 L 30.157345,19.65912 L 30.057148,19.719487 L 29.94264,19.79193 L 29.828129,19.864372 L 29.713619,19.936813 L 29.613423,20.033402 L 29.498913,20.105843 L 29.398717,20.202433 L 29.284207,20.299021 L 29.18401,20.39561 L 29.083814,20.504274 L 28.969304,20.612937 L 28.854794,20.721599 L 28.768911,20.842334 L 28.654402,20.963071 L 28.554205,21.095881 L 28.439696,21.216617 L 28.339499,21.349427 L 28.239303,21.494311 L 28.139107,21.639193 L 28.024596,21.796151 L 27.9244,21.941034 L 27.80989,22.110065 L 27.709694,22.267023 L 27.609498,22.436053 L 27.509302,22.617157 L 27.409105,22.786188 L 27.294596,22.979366 L 28.783225,23.5589 L 28.883421,23.38987 L 28.983617,23.22084 L 29.069499,23.051809 L 29.169697,22.906924 L 29.255579,22.749968 L 29.355776,22.617157 L 29.441658,22.472275 L 29.541854,22.351538 L 29.627736,22.218727 L 29.713619,22.097992 L 29.799501,21.977255 L 29.899698,21.868593 L 29.985581,21.75993 L 30.071463,21.663341 L 30.157345,21.566752 L 30.243229,21.470163 L 30.329111,21.385647 L 30.400679,21.313207 L 30.486562,21.240764 L 30.572444,21.168323 L 30.644013,21.095881 L 30.715582,21.035512 L 30.801464,20.975144 L 30.873032,20.92685 L 30.944601,20.878555 L 31.016171,20.830261 L 31.087738,20.794041 L 31.159308,20.745745 L 31.230877,20.709525 L 31.273818,20.685377 L 31.345387,20.649157 L 31.402642,20.637084 L 31.47421,20.612937 L 31.517152,20.600863 L 31.574408,20.576714 L 31.631662,20.564641 L 31.688917,20.552567 L 31.731858,20.540494 L 31.789114,20.540494 L 31.832055,20.528421 L 31.889309,20.528421 L 31.932251,20.528421 L 31.989506,20.528421 L 32.032447,20.528421 L 32.075388,20.528421 L 32.118329,20.540494 L 32.16127,20.540494 L 32.218526,20.552567 L 32.261467,20.552567 L 32.304408,20.576714 L 32.361664,20.588788 L 32.404604,20.600863 L 32.46186,20.612937 L 32.504801,20.637084 L 32.562056,20.649157 L 32.619311,20.673304 L 32.662252,20.709525 L 32.719507,20.733673 L 32.776762,20.757819 L 32.819704,20.781967 L 32.934213,20.842334 L 33.034409,20.92685 L 33.148919,20.999292 L 33.249115,21.083808 L 33.349312,21.168323 L 33.463822,21.252838 L 33.564019,21.349427 L 33.664215,21.458089 L 33.76441,21.566752 L 33.850293,21.663341 L 33.95049,21.772004 L 34.050685,21.892741 L 34.136568,22.001404 L 34.222451,22.110065 L 34.294019,22.218727 L 34.379902,22.339464 L 34.45147,22.448127 L 34.52304,22.544716 L 34.651864,22.762042 L 34.780687,22.95522 L 34.880883,23.124251 L 34.952452,23.269133 L 35.066961,23.498533 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 36.612847,23.075955"
id="path2601"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 42.939524,23.015587 L 42.939524,23.015587 L 42.853641,23.184618 L 42.767759,23.353649 L 42.653249,23.498533 L 42.567367,23.655489 L 42.46717,23.812448 L 42.381288,23.95733 L 42.281091,24.090141 L 42.195209,24.222951 L 42.109327,24.35576 L 42.009131,24.476497 L 41.923248,24.585159 L 41.837365,24.693822 L 41.751482,24.802485 L 41.665599,24.899074 L 41.579718,24.995662 L 41.479521,25.092252 L 41.407952,25.188841 L 41.32207,25.261282 L 41.236187,25.333725 L 41.150305,25.406165 L 41.078736,25.466534 L 41.007168,25.538976 L 40.935599,25.599344 L 40.849716,25.659712 L 40.778147,25.695932 L 40.706579,25.756301 L 40.635009,25.792522 L 40.577755,25.828743 L 40.506186,25.864964 L 40.448931,25.889111 L 40.377363,25.925332 L 40.320107,25.949479 L 40.262853,25.973627 L 40.205598,25.9857 L 40.148343,26.009848 L 40.091087,26.009848 L 40.033833,26.033996 L 39.990891,26.046068 L 39.933637,26.046068 L 39.890696,26.046068 L 39.83344,26.058142 L 39.7905,26.058142 L 39.747558,26.058142 L 39.690302,26.058142 L 39.647361,26.058142 L 39.590106,26.046068 L 39.547165,26.046068 L 39.504224,26.046068 L 39.446969,26.021922 L 39.389714,26.009848 L 39.361086,26.009848 L 39.30383,25.9857 L 39.26089,25.973627 L 39.203635,25.949479 L 39.160694,25.937405 L 39.117753,25.913259 L 39.046183,25.889111 L 39.003242,25.864964 L 38.945988,25.840817 L 38.903046,25.816669 L 38.788536,25.756301 L 38.68834,25.671786 L 38.573829,25.599344 L 38.473633,25.514828 L 38.359123,25.442388 L 38.258927,25.345798 L 38.158732,25.249209 L 38.058535,25.15262 L 37.958338,25.043958 L 37.872457,24.935294 L 37.77226,24.838705 L 37.686378,24.730042 L 37.58618,24.609307 L 37.500298,24.500644 L 37.428729,24.391982 L 37.342848,24.283319 L 37.271278,24.174656 L 37.19971,24.078067 L 37.056573,23.860741 L 36.942063,23.679637 L 36.841867,23.498533 L 36.770299,23.353649 L 36.655789,23.136324 L 36.612847,23.075955 L 35.095589,23.5589 L 35.152845,23.679637 L 35.281668,23.909036 L 35.367551,24.090141 L 35.48206,24.295392 L 35.610884,24.500644 L 35.768336,24.730042 L 35.854218,24.862853 L 35.940101,24.995662 L 36.025983,25.116398 L 36.126178,25.249209 L 36.226376,25.369945 L 36.340885,25.502755 L 36.441082,25.635565 L 36.555591,25.768375 L 36.684415,25.901185 L 36.81324,26.021922 L 36.927749,26.154731 L 37.056573,26.287541 L 37.214023,26.408277 L 37.357162,26.529013 L 37.500298,26.637676 L 37.65775,26.746339 L 37.829515,26.855001 L 37.986966,26.951591 L 38.087163,26.999885 L 38.173045,27.048179 L 38.273241,27.096474 L 38.359123,27.132696 L 38.445006,27.168915 L 38.559516,27.21721 L 38.645399,27.253432 L 38.745595,27.277578 L 38.845792,27.3138 L 38.945988,27.337946 L 39.060498,27.362094 L 39.160694,27.386241 L 39.275204,27.410389 L 39.3754,27.422463 L 39.489911,27.422463 L 39.604419,27.434535 L 39.71893,27.434535 L 39.83344,27.434535 L 39.947951,27.434535 L 40.06246,27.422463 L 40.191284,27.410389 L 40.305794,27.398315 L 40.420303,27.362094 L 40.534814,27.35002 L 40.649323,27.3138 L 40.778147,27.277578 L 40.892658,27.241358 L 41.007168,27.205136 L 41.107364,27.144768 L 41.221874,27.096474 L 41.350698,27.048179 L 41.450893,26.987811 L 41.565404,26.927443 L 41.679913,26.855001 L 41.794424,26.782559 L 41.908934,26.710118 L 42.009131,26.625602 L 42.123641,26.541087 L 42.223836,26.456572 L 42.338347,26.372056 L 42.438542,26.275467 L 42.553053,26.178878 L 42.653249,26.058142 L 42.767759,25.961553 L 42.867955,25.852891 L 42.982465,25.732155 L 43.082662,25.599344 L 43.182858,25.478608 L 43.297368,25.345798 L 43.38325,25.212988 L 43.497761,25.068104 L 43.597957,24.935294 L 43.698152,24.778338 L 43.812662,24.633454 L 43.912858,24.464424 L 44.013056,24.295392 L 44.127566,24.126361 L 44.227763,23.95733 L 44.327958,23.776226 L 44.428154,23.595121 L 44.428154,23.595121 L 42.939524,23.015587 L 42.939524,23.015587 L 42.939524,23.015587"
id="path2603"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 52.272089,23.027661 L 52.229147,22.918998 L 52.100324,22.677526 L 52.000126,22.49642 L 51.885618,22.303243 L 51.756794,22.085918 L 51.613656,21.856519 L 51.527773,21.735782 L 51.427577,21.602974 L 51.341695,21.470163 L 51.241499,21.349427 L 51.141301,21.216617 L 51.041106,21.095881 L 50.926595,20.963071 L 50.812087,20.830261 L 50.697577,20.697451 L 50.568754,20.564641 L 50.43993,20.443905 L 50.311106,20.323169 L 50.167967,20.190359 L 50.024831,20.069623 L 49.867379,19.96096 L 49.709929,19.840224 L 49.552477,19.743634 L 49.380712,19.647046 L 49.294829,19.59875 L 49.208946,19.550457 L 49.10875,19.502162 L 49.022867,19.453868 L 48.922672,19.42972 L 48.822475,19.381427 L 48.736592,19.345204 L 48.636397,19.321056 L 48.521886,19.284837 L 48.421691,19.260689 L 48.321495,19.236542 L 48.206984,19.212395 L 48.106788,19.188247 L 47.992277,19.176173 L 47.877768,19.176173 L 47.763257,19.164101 L 47.648748,19.164101 L 47.534238,19.164101 L 47.419728,19.164101 L 47.305218,19.176173 L 47.190709,19.188247 L 47.076198,19.200321 L 46.961687,19.236542 L 46.847179,19.248615 L 46.718354,19.284837 L 46.603844,19.321056 L 46.489334,19.357278 L 46.374825,19.405572 L 46.260315,19.441794 L 46.145804,19.502162 L 46.031294,19.562531 L 45.916783,19.622898 L 45.802274,19.683267 L 45.702078,19.743634 L 45.587567,19.816075 L 45.473058,19.888517 L 45.372862,19.973033 L 45.258352,20.057549 L 45.158155,20.142065 L 45.043646,20.22658 L 44.929135,20.335242 L 44.828938,20.431831 L 44.728742,20.528421 L 44.628546,20.637084 L 44.514036,20.745745 L 44.41384,20.866481 L 44.29933,20.999292 L 44.199135,21.120028 L 44.098938,21.252838 L 43.984428,21.385647 L 43.884231,21.530531 L 43.784034,21.663341 L 43.683839,21.820298 L 43.569328,21.977255 L 43.469132,22.134213 L 43.368937,22.303243 L 43.254426,22.472275 L 43.154231,22.641305 L 43.054034,22.82241 L 42.939524,23.015587 L 44.428154,23.595121 L 44.52835,23.426091 L 44.628546,23.25706 L 44.714429,23.100103 L 44.814624,22.943146 L 44.900507,22.786188 L 45.000704,22.641305 L 45.086587,22.508494 L 45.186783,22.375685 L 45.272666,22.242875 L 45.372862,22.122139 L 45.458744,22.013476 L 45.544626,21.904814 L 45.630508,21.796151 L 45.716392,21.699562 L 45.802274,21.602974 L 45.888156,21.506384 L 45.974038,21.421869 L 46.059921,21.349427 L 46.145804,21.264911 L 46.217374,21.19247 L 46.303256,21.120028 L 46.374825,21.05966 L 46.446393,20.999292 L 46.517962,20.938923 L 46.589531,20.902704 L 46.661098,20.842334 L 46.732668,20.806113 L 46.804237,20.769893 L 46.861492,20.733673 L 46.93306,20.709525 L 47.004629,20.673304 L 47.04757,20.649157 L 47.119139,20.637084 L 47.176394,20.612937 L 47.23365,20.600863 L 47.290904,20.576714 L 47.333846,20.564641 L 47.391101,20.552567 L 47.434041,20.552567 L 47.491296,20.552567 L 47.534238,20.540494 L 47.577179,20.540494 L 47.634435,20.540494 L 47.677375,20.540494 L 47.73463,20.540494 L 47.777571,20.552567 L 47.820512,20.552567 L 47.877768,20.564641 L 47.920708,20.576714 L 47.963649,20.576714 L 48.020905,20.600863 L 48.07816,20.612937 L 48.121101,20.62501 L 48.178356,20.637084 L 48.221298,20.673304 L 48.278553,20.685377 L 48.321495,20.709525 L 48.37875,20.733673 L 48.436005,20.769893 L 48.478945,20.781967 L 48.593455,20.842334 L 48.693651,20.92685 L 48.793848,20.999292 L 48.908357,21.083808 L 49.008554,21.168323 L 49.10875,21.252838 L 49.223261,21.349427 L 49.323457,21.446016 L 49.423653,21.554679 L 49.509536,21.663341 L 49.609732,21.75993 L 49.695615,21.868593 L 49.781497,21.98933 L 49.867379,22.085918 L 49.953262,22.206653 L 50.024831,22.315316 L 50.110712,22.42398 L 50.182282,22.532643 L 50.311106,22.737894 L 50.425616,22.918998 L 50.525813,23.100103 L 50.611694,23.232914 L 50.711891,23.462311 L 50.754832,23.522681 L 52.272089,23.027661"
id="path2605"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 50.754832,23.522681 L 50.769146,23.5589 L 50.797773,23.595121 L 50.812087,23.643417 L 50.840713,23.679637 L 50.869341,23.691711 L 50.883654,23.740005 L 50.912282,23.764153 L 50.940909,23.7883 L 50.983851,23.812448 L 51.012478,23.836594 L 51.041106,23.848667 L 51.069734,23.872815 L 51.09836,23.896962 L 51.141301,23.909036 L 51.184243,23.92111 L 51.212871,23.933184 L 51.28444,23.945256 L 51.356008,23.95733 L 51.427577,23.969404 L 51.51346,23.969404 L 51.58503,23.969404 L 51.656597,23.95733 L 51.74248,23.933184 L 51.799736,23.92111 L 51.885618,23.896962 L 51.942872,23.860741 L 52.014442,23.836594 L 52.071696,23.7883 L 52.128951,23.752078 L 52.171892,23.691711 L 52.214833,23.643417 L 52.257773,23.583048 L 52.272089,23.5589 L 52.300715,23.522681 L 52.300715,23.498533 L 52.31503,23.462311 L 52.329344,23.438165 L 52.329344,23.401944 L 52.329344,23.365722 L 52.329344,23.329502 L 52.329344,23.293281 L 52.329344,23.269133 L 52.329344,23.22084 L 52.329344,23.184618 L 52.31503,23.148398 L 52.300715,23.112177 L 52.300715,23.075955 L 52.272089,23.027661 L 50.754832,23.522681"
id="path2607"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2609"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2611"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2613"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2615"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2617"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2619"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2621"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2623"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2625"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2627"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2629"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2631"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2633"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2635"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2637"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2639"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</svg>

After

Width:  |  Height:  |  Size: 254 KiB

@ -0,0 +1,270 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45.1"
width="51.358818"
height="47.630692"
version="1.0"
sodipodi:docname="access_server.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata2003">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
<dc:title>ATM switch</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
inkscape:collect="always"
id="linearGradient10123">
<stop
style="stop-color:#e4405c;stop-opacity:1;"
offset="0"
id="stop10125" />
<stop
style="stop-color:#e4405c;stop-opacity:0;"
offset="1"
id="stop10127" />
</linearGradient>
<linearGradient
id="linearGradient8331">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop8333" />
<stop
style="stop-color:#dde3ef;stop-opacity:1;"
offset="1"
id="stop8335" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6587">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942481e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942482e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10123"
id="linearGradient10129"
x1="1.3990936"
y1="1.4711363"
x2="0.49966058"
y2="0.56367606"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117962,0,0,1.035008,-4.0973e-2,-6.788682e-3)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8331"
id="linearGradient6875"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(24.897735,0,0,25.405463,-9.0988193,-4.8632254)"
x1="2.1178279"
y1="0.30649999"
x2="-0.4954865"
y2="0.30649999" />
</defs>
<sodipodi:namedview
inkscape:window-height="940"
inkscape:window-width="1280"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="11.166395"
inkscape:cx="23.755426"
inkscape:cy="22.715931"
inkscape:window-x="5"
inkscape:window-y="49"
inkscape:current-layer="svg1998" />
<path
id="path11907"
d="M 1.8402723,44.565612 L 1.8402723,47.615693 L 44.293781,47.615693 L 44.293781,44.565612 L 1.8402723,44.565612"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001" />
<path
id="path11020"
d="M 44.370594,6.1851672 L 51.194316,1.0980117 L 51.358819,41.344844 L 44.266438,47.63069 L 44.370594,6.1851672"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
sodipodi:nodetypes="ccccc" />
<path
id="path2037"
d="M 0.062500355,5.1558922 L 0.062500355,46.326915 L 44.407694,46.326915 L 44.407694,5.1558922 L 0.062500355,5.1558922"
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2041"
d="M -0.38461268,5.6292351 L 5.2920708,0.21786924 L 50.13289,0.21786924 L 44.406412,5.6292351 L -0.38461268,5.6292351"
style="fill:url(#linearGradient6875);fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2045"
d="M 44.273363,5.1335036 L 49.931392,0.17309204 L 49.931392,41.393412 L 44.273363,46.353824 L 44.273363,5.1335036"
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
d="M 14.145491,26.350022 L 14.145491,15.386558 L 10.541356,15.386558 L 15.604832,9.752837 L 20.668311,15.386558 L 16.688284,15.386558 L 16.688284,22.357782 L 14.145491,26.350022"
id="path2511"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 21.37587,19.034292 L 33.293836,19.034292 L 33.293836,15.731066 L 39.418653,20.371793 L 33.293836,25.012519 L 33.293836,21.709296 L 25.355897,21.709296 L 21.37587,19.034292"
id="path2513"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 29.313811,26.350022 L 29.313811,36.989243 L 32.917945,36.989243 L 27.87658,42.622964 L 22.459322,36.989243 L 26.439347,36.989243 L 26.439347,29.997755 L 26.063457,29.997755 L 29.313811,26.350022"
id="path2515"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 21.729651,33.665753 L 9.8337973,33.665753 L 9.8337973,36.989243 L 3.6868682,32.32825 L 9.8337973,27.687523 L 9.8337973,30.990749 L 17.771736,30.990749 L 21.729651,33.665753"
id="path2517"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 29.247478,26.289227 L 29.225366,26.957978 L 29.114809,27.606464 L 28.96003,28.234684 L 28.76103,28.842639 L 28.495695,29.450594 L 28.164026,30.038285 L 27.788134,30.585446 L 27.36802,31.092075 L 26.903684,31.558174 L 26.373013,32.004008 L 25.842345,32.389047 L 25.245341,32.713289 L 24.648336,32.997003 L 24.007109,33.240185 L 23.343772,33.402306 L 22.680434,33.523896 L 21.994986,33.584692 L 21.309536,33.584692 L 20.646199,33.523896 L 19.960751,33.402306 L 19.319524,33.240185 L 18.678297,32.997003 L 18.059182,32.713289 L 17.484291,32.389047 L 16.931509,32.004008 L 16.422949,31.558174 L 15.936503,31.092075 L 15.516388,30.585446 L 15.140497,30.038285 L 14.830939,29.450594 L 14.543493,28.842639 L 14.344493,28.234684 L 14.189714,27.606464 L 14.101268,26.957978 L 14.079158,26.289227 L 14.101268,25.640741 L 14.189714,24.992255 L 14.344493,24.343769 L 14.543493,23.735814 L 14.830939,23.127858 L 15.140497,22.540167 L 15.516388,21.993007 L 15.936503,21.486378 L 16.422949,21.020279 L 16.931509,20.594711 L 17.484291,20.189407 L 18.059182,19.865163 L 18.678297,19.581452 L 19.319524,19.338269 L 19.960751,19.176148 L 20.646199,19.054556 L 21.309536,18.993761 L 21.994986,18.993761 L 22.680434,19.054556 L 23.343772,19.176148 L 24.007109,19.338269 L 24.648336,19.581452 L 25.245341,19.865163 L 25.842345,20.189407 L 26.373013,20.594711 L 26.903684,21.020279 L 27.36802,21.486378 L 27.788134,21.993007 L 28.164026,22.540167 L 28.495695,23.127858 L 28.76103,23.735814 L 28.96003,24.343769 L 29.114809,24.992255 L 29.225366,25.640741 L 29.247478,26.289227 L 26.704682,26.289227 L 26.682572,25.863657 L 26.638349,25.417823 L 26.527793,24.992255 L 26.373013,24.586951 L 26.218234,24.181648 L 25.997122,23.796609 L 25.753899,23.431836 L 25.466453,23.087327 L 25.156895,22.78335 L 24.803116,22.499637 L 24.449334,22.23619 L 24.051332,22.013273 L 23.65333,21.810622 L 23.211105,21.668765 L 22.790991,21.547175 L 22.326655,21.466113 L 21.88443,21.425582 L 21.420093,21.425582 L 20.977868,21.466113 L 20.535643,21.547175 L 20.093418,21.668765 L 19.673303,21.810622 L 19.253191,22.013273 L 18.877299,22.23619 L 18.501407,22.499637 L 18.169738,22.78335 L 17.86018,23.087327 L 17.572734,23.431836 L 17.329511,23.796609 L 17.108399,24.181648 L 16.931509,24.586951 L 16.77673,24.992255 L 16.688284,25.417823 L 16.621951,25.863657 L 16.599841,26.289227 L 16.621951,26.714795 L 16.688284,27.16063 L 16.77673,27.586198 L 16.931509,28.011767 L 17.108399,28.396805 L 17.329511,28.781844 L 17.572734,29.146617 L 17.86018,29.491125 L 18.169738,29.815369 L 18.501407,30.09908 L 18.877299,30.342263 L 19.253191,30.565179 L 19.673303,30.767831 L 20.093418,30.909688 L 20.535643,31.03128 L 20.977868,31.112339 L 21.420093,31.15287 L 21.88443,31.15287 L 22.326655,31.112339 L 22.790991,31.03128 L 23.211105,30.909688 L 23.65333,30.767831 L 24.051332,30.565179 L 24.449334,30.342263 L 24.803116,30.09908 L 25.156895,29.815369 L 25.466453,29.491125 L 25.753899,29.146617 L 25.997122,28.781844 L 26.218234,28.396805 L 26.373013,28.011767 L 26.527793,27.586198 L 26.638349,27.16063 L 26.682572,26.714795 L 26.704682,26.289227 L 29.247478,26.289227"
id="path2519"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 14.521383,26.674264 L 14.521383,15.731066 L 10.917247,15.731066 L 15.958613,10.077079 L 21.022091,15.731066 L 17.042066,15.731066 L 17.042066,22.702288 L 14.521383,26.674264"
id="path2521"
style="fill:#ffffff;stroke:none;stroke-width:0.08" />
<path
d="M 21.729651,19.3788 L 33.647618,19.3788 L 33.647618,16.05531 L 39.794545,20.696037 L 33.647618,25.357028 L 33.647618,22.033538 L 25.709676,22.033538 L 21.729651,19.3788"
id="path2523"
style="fill:#ffffff;stroke:none;stroke-width:0.08" />
<path
d="M 29.667591,26.674264 L 29.667591,37.313485 L 33.293836,37.313485 L 28.230359,42.967471 L 22.813103,37.313485 L 26.793128,37.313485 L 26.793128,30.342263 L 26.439347,30.342263 L 29.667591,26.674264"
id="path2525"
style="fill:#ffffff;stroke:none;stroke-width:0.08" />
<path
d="M 22.08343,33.989995 L 10.187577,33.989995 L 10.187577,37.313485 L 4.0406473,32.652494 L 10.187577,28.011767 L 10.187577,31.335258 L 18.125516,31.335258 L 22.08343,33.989995"
id="path2527"
style="fill:#ffffff;stroke:none;stroke-width:0.08" />
<path
d="M 29.667591,26.694531 L 29.64548,27.343017 L 29.557034,27.991501 L 29.402255,28.639987 L 29.203255,29.247943 L 28.915807,29.855898 L 28.606251,30.423324 L 28.230359,30.990749 L 27.810245,31.497379 L 27.345909,31.963477 L 26.815238,32.389047 L 26.28457,32.794351 L 25.687566,33.118593 L 25.068451,33.402306 L 24.427224,33.625222 L 23.785997,33.80761 L 23.100549,33.9292 L 22.437211,33.989995 L 21.751761,33.989995 L 21.066313,33.9292 L 20.402976,33.80761 L 19.761749,33.625222 L 19.098411,33.402306 L 18.501407,33.118593 L 17.904403,32.794351 L 17.373734,32.389047 L 16.843063,31.963477 L 16.378728,31.497379 L 15.958613,30.990749 L 15.582722,30.423324 L 15.251053,29.855898 L 14.985718,29.247943 L 14.786718,28.639987 L 14.631939,27.991501 L 14.543493,27.343017 L 14.49927,26.694531 L 14.543493,26.025778 L 14.631939,25.377294 L 14.786718,24.749073 L 14.985718,24.120853 L 15.251053,23.512897 L 15.582722,22.945471 L 15.958613,22.398311 L 16.378728,21.891681 L 16.843063,21.425582 L 17.373734,20.979748 L 17.904403,20.594711 L 18.501407,20.270467 L 19.098411,19.986756 L 19.761749,19.743573 L 20.402976,19.581452 L 21.066313,19.45986 L 21.751761,19.399065 L 22.437211,19.399065 L 23.100549,19.45986 L 23.785997,19.581452 L 24.427224,19.743573 L 25.068451,19.986756 L 25.687566,20.270467 L 26.28457,20.594711 L 26.815238,20.979748 L 27.345909,21.425582 L 27.810245,21.891681 L 28.230359,22.398311 L 28.606251,22.945471 L 28.915807,23.512897 L 29.203255,24.120853 L 29.402255,24.749073 L 29.557034,25.377294 L 29.64548,26.025778 L 29.667591,26.694531 L 27.146907,26.694531 L 27.124797,26.248697 L 27.058463,25.823127 L 26.970018,25.397559 L 26.815238,24.971991 L 26.638349,24.586951 L 26.439347,24.201912 L 26.174013,23.837139 L 25.886566,23.492631 L 25.577009,23.168389 L 25.245341,22.884676 L 24.869449,22.641493 L 24.493557,22.398311 L 24.073443,22.215925 L 23.65333,22.074069 L 23.211105,21.952478 L 22.76888,21.871417 L 22.326655,21.830886 L 21.862318,21.830886 L 21.420093,21.871417 L 20.977868,21.952478 L 20.535643,22.074069 L 20.115528,22.215925 L 19.695416,22.398311 L 19.297413,22.641493 L 18.943632,22.884676 L 18.589853,23.168389 L 18.280295,23.492631 L 17.992849,23.837139 L 17.749624,24.201912 L 17.528511,24.586951 L 17.373734,24.971991 L 17.218955,25.397559 L 17.130509,25.823127 L 17.064176,26.248697 L 17.042066,26.694531 L 17.064176,27.120099 L 17.130509,27.545669 L 17.218955,27.991501 L 17.373734,28.396805 L 17.528511,28.802108 L 17.749624,29.187147 L 17.992849,29.55192 L 18.280295,29.896429 L 18.589853,30.200406 L 18.943632,30.48412 L 19.297413,30.747567 L 19.695416,30.970483 L 20.115528,31.173136 L 20.535643,31.314991 L 20.977868,31.436583 L 21.420093,31.517643 L 21.862318,31.537909 L 22.326655,31.537909 L 22.76888,31.517643 L 23.211105,31.436583 L 23.65333,31.314991 L 24.073443,31.173136 L 24.493557,30.970483 L 24.869449,30.747567 L 25.245341,30.48412 L 25.577009,30.200406 L 25.886566,29.896429 L 26.174013,29.55192 L 26.439347,29.187147 L 26.638349,28.802108 L 26.815238,28.396805 L 26.970018,27.991501 L 27.058463,27.545669 L 27.124797,27.120099 L 27.146907,26.694531 L 29.667591,26.694531"
id="path2529"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

@ -0,0 +1,424 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.48.2 r9819"
width="51.604012"
height="59.644005"
version="1.0"
sodipodi:docname="asa.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<title
id="title3303">ASA</title>
<metadata
id="metadata2003">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
<dc:title>ASA</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 23.815346 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="51.358818 : 23.815346 : 1"
inkscape:persp3d-origin="25.679409 : 15.876897 : 1"
id="perspective43" />
<linearGradient
inkscape:collect="always"
id="linearGradient10123">
<stop
style="stop-color:#e4405c;stop-opacity:1;"
offset="0"
id="stop10125" />
<stop
style="stop-color:#e4405c;stop-opacity:0;"
offset="1"
id="stop10127" />
</linearGradient>
<linearGradient
id="linearGradient8331">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop8333" />
<stop
style="stop-color:#dde3ef;stop-opacity:1;"
offset="1"
id="stop8335" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6587">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
transform="matrix(1.1,0,0,1.1,1.1,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
inkscape:connector-curvature="0" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)"
inkscape:connector-curvature="0" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-0.00394248,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-0.00394248,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10123"
id="linearGradient10129"
x1="1.3990936"
y1="1.4711363"
x2="0.49966058"
y2="0.56367606"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117962,0,0,1.035008,-0.040973,-0.00678868)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8331"
id="linearGradient6875"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(24.897735,0,0,25.405463,-8.7142066,-5.036317)"
x1="2.1178279"
y1="0.30649999"
x2="-0.4954865"
y2="0.30649999" />
<inkscape:perspective
id="perspective418"
inkscape:persp3d-origin="283.46457 : 188.97638 : 1"
inkscape:vp_z="566.92914 : 283.46457 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 283.46457 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3145"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
inkscape:window-height="921"
inkscape:window-width="1680"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="7.8958336"
inkscape:cx="31.975593"
inkscape:cy="23.732941"
inkscape:window-x="36"
inkscape:window-y="42"
inkscape:current-layer="svg1998"
showgrid="false"
inkscape:window-maximized="0"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<path
id="path11907"
d="m 2.1353306,56.571921 0,3.050081 42.5430624,0 0,-3.050081 -42.5430624,0"
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path11020"
d="M 44.78029,7.669639 51.604012,1.290141 51.589402,54.040739 44.67613,59.644003 44.780286,7.669639"
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
id="path2037"
d="m 0.44711303,4.9828 0,41.171023 44.34519397,0 0,-41.171023 -44.34519397,0"
style="fill:#6e8caa;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path2041"
d="m 0,5.456143 5.6766835,-5.411366 44.8408195,0 -5.726478,5.411366 -44.791025,0"
style="fill:url(#linearGradient6875);fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path2045"
d="M 44.657976,4.960412 50.316005,0 l 0,41.22032 -5.658029,4.960412 0,-41.22032"
style="fill:#6e8296;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3151"
d="m 6.813052,19.432323 19.167626,0 0,-1.277787 4.122053,2.556266 -4.122053,2.768616 0,-1.277752 -19.167626,0 0,-2.769343 z"
style="fill:#000000;fill-opacity:1"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff"
d="m 6.9396898,19.052374 18.6464582,0 0,-1.277787 4.009979,2.556266 -4.009979,2.768616 0,-1.277752 -18.6464582,0 0,-2.769343 z"
id="path134"
inkscape:connector-curvature="0" />
<path
id="path3943"
d="m 35.319808,26.588492 -15.869923,0 0,-1.278496 -4.32815,2.556284 4.32815,2.769324 0,-1.278478 15.869923,0 0,-2.768634 z"
style="fill:#000000;fill-opacity:1"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff"
d="m 35.573119,26.081906 -15.869923,0 0,-1.278496 -4.32815,2.556283 4.32815,2.769325 0,-1.278478 15.869923,0 0,-2.768634 0,0 z"
id="path136"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff"
d="m 42.786689,39.501012 -2.679324,3.40859 -9.686817,-8.09495 2.679307,-3.620941 9.686834,8.307301 0,0 z"
id="path142"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.27946547"
d="m 42.786689,39.501012 -2.679324,3.40859 -9.686817,-8.09495 2.679307,-3.620941 9.686834,8.307301"
id="path144"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff"
d="M 7.7491937,21.608622 C 6.9247725,29.915923 12.695651,37.370917 20.527617,38.223242 28.565591,39.287935 35.779215,33.323805 36.809768,25.016504 37.634101,16.709185 31.863276,9.254209 23.825213,8.401884 15.993371,7.337209 8.5736327,13.301304 7.7491937,21.608622 l 2.0610531,0.213095 C 10.634686,14.792186 16.817704,9.680363 23.619117,10.531979 30.626662,11.171209 35.573119,17.774587 34.74868,24.80341 33.924276,31.832959 27.74117,36.944764 20.733713,36.306224 13.9323,35.4539 8.9858256,28.85054 9.8102468,21.821717 l -2.0610531,-0.213095 0,0 z"
id="path146"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.27946547"
d="M 7.7491937,21.608622 C 6.9247725,29.915923 12.695651,37.370917 20.527617,38.223242 28.565591,39.287935 35.779215,33.323805 36.809768,25.016504 37.634101,16.709185 31.863276,9.254209 23.825213,8.401884 15.993371,7.337209 8.5736327,13.301304 7.7491937,21.608622"
id="path148"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.27946547"
d="M 9.8102468,21.821717 C 10.634686,14.792186 16.817704,9.680363 23.619117,10.531979 30.626662,11.171209 35.573119,17.774587 34.74868,24.80341 33.924276,31.832959 27.74117,36.944764 20.733713,36.306224 13.9323,35.4539 8.9858256,28.85054 9.8102468,21.821717"
id="path150"
inkscape:connector-curvature="0" />
<path
style="fill:#ffffff"
d="M 5.894308,22.24787 C 5.0699044,30.555171 10.840783,38.010148 18.878757,39.074858 26.710705,39.927183 34.130373,33.963053 34.954811,25.655752 35.779215,17.348433 30.214434,9.893457 22.176389,9.041132 14.138414,7.97644 6.9247725,13.940569 5.894308,22.24787 l 2.0609999,0.212368 C 8.7797292,15.431434 14.962836,10.31892 21.970292,11.171209 28.771705,11.810457 33.718162,18.413126 32.893758,25.442658 32.06939,32.472207 25.886302,37.583994 19.084871,36.944764 12.077344,36.093148 7.130869,29.702847 7.9553079,22.460238 L 5.894308,22.24787 l 0,0 z"
id="path152"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.27946547"
d="M 5.894308,22.24787 C 5.0699044,30.555171 10.840783,38.010148 18.878757,39.074858 26.710705,39.927183 34.130373,33.963053 34.954811,25.655752 35.779215,17.348433 30.214434,9.893457 22.176389,9.041132 14.138414,7.97644 6.9247725,13.940569 5.894308,22.24787"
id="path154"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:0.27946547"
d="M 7.9553079,22.460238 C 8.7797292,15.431434 14.962836,10.31892 21.970292,11.171209 28.771705,11.810457 33.718162,18.413126 32.893758,25.442658 32.06939,32.472207 25.886302,37.583994 19.084871,36.944764 12.077344,36.093148 7.130869,29.702847 7.9553079,22.460238"
id="path156"
inkscape:connector-curvature="0" />
<g
id="surface17490"
transform="matrix(0.89081749,0,0,1.10942,40.083104,-163.42348)">
<path
id="path39"
d="m 26.585938,42.515625 34.03125,0 0,-2.195313 7.316406,4.390626 -7.316406,4.753906 0,-2.195313 -34.03125,0 0,-4.753906"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path61"
transform="matrix(20,0,0,20,-113.69838,-134.2)"
d="m 6.428864,8.945547 0.713477,0"
style="fill:none;stroke:#ffffff;stroke-width:0.05;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path99"
d="m -27.952349,199.55016 -16.598947,0 0,-5.20546 16.598947,0 0,5.20546"
style="fill:#ff545c;fill-opacity:1;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path101"
d="m -27.952349,199.55016 -16.437671,0"
style="fill:none;stroke:#e1e1e1;stroke-width:0.4523178;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path103"
d="m -44.290991,194.3447 16.338642,0 0,5.20546"
style="fill:none;stroke:#e1e1e1;stroke-width:0.45095325;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path105"
d="m 5.2889328,199.55016 -16.6163048,0 0,-5.20546 16.6163048,0 0,5.20546"
style="fill:#ff545c;fill-opacity:1;fill-rule:evenodd;stroke:#e1e1e1;stroke-width:0.45095325;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path107"
d="m -2.6048929,199.55016 -16.6336521,0 0,-5.20546 16.6336521,0 0,5.20546"
style="fill:#ff545c;fill-opacity:1;fill-rule:evenodd;stroke:#e1e1e1;stroke-width:0.45095325;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path109"
d="m -19.238545,199.55016 -16.60763,0 0,-5.20546 16.60763,0 0,5.20546"
style="fill:#ff545c;fill-opacity:1;fill-rule:evenodd;stroke:#e1e1e1;stroke-width:0.45095325;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path111"
d="m 8.458182,192.52515 2.776615,-2.31149 0,-5.751 -2.776615,2.29882 0,5.76367"
style="fill:#ff2833;fill-opacity:1;fill-rule:evenodd;stroke:#e1e1e1;stroke-width:0.47425574;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path125"
d="m 8.458182,197.47742 2.776615,-1.831 0,-5.21119 -2.776615,1.82528 0,5.21691"
style="fill:#ff2833;fill-opacity:1;fill-rule:evenodd;stroke:#e1e1e1;stroke-width:0.45095325;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path127"
d="m 5.2889328,199.55016 3.1692492,-2.07274 0,-5.21691 -3.1692492,2.08419 0,5.20546"
style="fill:#ff2833;fill-opacity:1;fill-rule:evenodd;stroke:#e1e1e1;stroke-width:0.45095325;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path133"
d="m -11.327372,194.3447 -16.624977,0 0,-5.21118 16.624977,0 0,5.21118"
style="fill:#ff545c;fill-opacity:1;fill-rule:evenodd;stroke:#e1e1e1;stroke-width:0.45095325;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path135"
d="m -27.952349,194.3447 -16.598947,0 0,-5.21119 16.598947,0 0,5.21119"
style="fill:#ff545c;fill-opacity:1;fill-rule:evenodd;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path137"
d="m -27.952349,194.3447 -16.536699,0"
style="fill:none;stroke:#e1e1e1;stroke-width:0.45367825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path139"
d="m -44.442086,189.13352 16.489737,0 0,5.21118"
style="fill:none;stroke:#e1e1e1;stroke-width:0.4530336;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path141"
d="m 5.2889328,194.3447 -16.6163048,0 0,-5.21118 16.6163048,0 0,5.21118"
style="fill:#ff545c;fill-opacity:1;fill-rule:evenodd;stroke:#e1e1e1;stroke-width:0.45095325;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="path145"
d="m 5.2889328,194.3447 3.1692492,-2.16099 0,-5.39729 -3.1692492,2.15507 0,5.40321"
style="fill:#ff2833;fill-opacity:1;fill-rule:evenodd;stroke:#e1e1e1;stroke-width:0.45918694;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

@ -0,0 +1,219 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45.1"
width="72.139786"
height="32.198273"
version="1.0"
sodipodi:docname="atm_bridge.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata2003">
<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>Hub</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
id="linearGradient6587">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#edeff3;stop-opacity:1;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119123,0,0,1.09281,-7.833718e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119124,0,0,1.09281,-7.8336875e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient11856"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.191599,0,0,15.33747,-2.531938,3.061917e-2)"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="15.791667"
inkscape:cx="33.948451"
inkscape:cy="14.842697"
inkscape:window-x="5"
inkscape:window-y="49"
inkscape:current-layer="svg1998" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 2.2772683,16.455363 L 2.2772683,32.151128 L 54.874392,32.151128 L 54.874392,16.455363 L 2.2772683,16.455363"
id="path13703" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 54.835664,18.785244 L 71.22016,2.975988 L 71.22016,16.389017 L 54.835664,32.198271 L 54.835664,18.785244"
id="path14592" />
<path
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001"
d="M 54.766167,16.462321 L 71.967339,2.4980018e-15 L 71.967339,13.967109 L 54.766167,30.42943 L 54.766167,16.462321"
id="path2009" />
<path
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.00110589"
d="M 0.26240697,16.276497 L 0.26240697,30.176133 L 55.117276,30.176133 L 55.117276,16.276497 L 0.26240697,16.276497"
id="path2007" />
<path
style="fill:url(#linearGradient11856);fill-opacity:1;stroke:none;stroke-width:0.01505287;stroke-opacity:1"
d="M 55.175888,16.63586 L 72.266438,0.04072379 L 17.044975,0.04072379 L 0,16.63586 L 55.175888,16.63586"
id="path2013" />
<path
d="M 30.805278,24.557898 L 9.0588129,24.576613 L 9.0588129,21.825614 L 30.805278,21.825614 L 30.805278,17.540044 L 40.474397,23.191756 L 30.805278,28.843468 L 30.805278,24.557898"
id="path2179"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
d="M 31.406861,24.937229 L 9.660396,24.955944 L 9.660396,22.204946 L 31.406861,22.204946 L 31.406861,17.919375 L 41.07598,23.571087 L 31.406861,29.2228 L 31.406861,24.937229"
id="path2271"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.182443,21.844327 L 10.164335,17.558758 L 0.49521577,23.210469 L 10.164335,28.862183 L 10.182443,24.576613 L 10.182443,21.844327"
id="path2181"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
d="M 10.784026,22.223658 L 10.765918,17.93809 L 1.0967991,23.589801 L 10.765918,29.241514 L 10.784026,24.955944 L 10.784026,22.223658"
id="path2275"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 52.06415,21.782664 L 52.06415,17.497096 L 42.39503,23.148807 L 52.06415,28.80052 L 52.06415,24.51495 L 52.06415,21.782664"
id="path2183"
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
d="M 52.665733,22.161996 L 52.665733,17.876427 L 42.996613,23.528138 L 52.665733,29.179851 L 52.665733,24.894282 L 52.665733,22.161996"
id="path2279"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</svg>

After

Width:  |  Height:  |  Size: 8.1 KiB

@ -0,0 +1,243 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="51.358818"
height="47.630692"
version="1.0"
sodipodi:docname="sw_atm.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
<dc:title>ATM switch</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
inkscape:collect="always"
id="linearGradient10123">
<stop
style="stop-color:#e4405c;stop-opacity:1;"
offset="0"
id="stop10125" />
<stop
style="stop-color:#e4405c;stop-opacity:0;"
offset="1"
id="stop10127" />
</linearGradient>
<linearGradient
id="linearGradient8331">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop8333" />
<stop
style="stop-color:#dde3ef;stop-opacity:1;"
offset="1"
id="stop8335" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6587">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942481e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942482e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10123"
id="linearGradient10129"
x1="1.3990936"
y1="1.4711363"
x2="0.49966058"
y2="0.56367606"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117962,0,0,1.035008,-4.0973e-2,-6.788682e-3)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8331"
id="linearGradient6875"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(24.897735,0,0,25.405463,-9.0988193,-4.8632254)"
x1="2.1178279"
y1="0.30649999"
x2="-0.4954865"
y2="0.30649999" />
</defs>
<sodipodi:namedview
inkscape:window-height="940"
inkscape:window-width="1280"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="15.791667"
inkscape:cx="23.755426"
inkscape:cy="27.781894"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:current-layer="svg1998" />
<path
id="path11907"
d="M 1.8402723,44.565612 L 1.8402723,47.615693 L 44.293781,47.615693 L 44.293781,44.565612 L 1.8402723,44.565612"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001" />
<path
id="path11020"
d="M 44.370594,6.1851672 L 51.194316,1.0980117 L 51.358819,41.344844 L 44.266438,47.63069 L 44.370594,6.1851672"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
sodipodi:nodetypes="ccccc" />
<path
id="path2037"
d="M 0.062500355,5.1558922 L 0.062500355,46.326915 L 44.407694,46.326915 L 44.407694,5.1558922 L 0.062500355,5.1558922"
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2041"
d="M -0.38461268,5.6292351 L 5.2920708,0.21786924 L 50.13289,0.21786924 L 44.406412,5.6292351 L -0.38461268,5.6292351"
style="fill:url(#linearGradient6875);fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2045"
d="M 44.273363,5.1335036 L 49.931392,0.17309204 L 49.931392,41.393412 L 44.273363,46.353824 L 44.273363,5.1335036"
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001" />
<g
id="g2348"
transform="matrix(22.004446,0,0,22.500606,35.022111,-1.6187087)">
<path
id="path2339"
d="M -1.142098,0.44241813 L -1.142098,0.62241813 L -0.780098,0.62241813 L -0.582098,1.0334181 L -0.385098,0.62241813 L -0.023097999,0.62241813 L -0.023097999,0.44241813 L 0.205902,0.67341813 L -0.023097999,0.90241813 L -0.023097999,0.73841813 L -0.286098,0.73841813 L -0.501098,1.1974181 L -0.286098,1.6564181 L -0.023097999,1.6564181 L -0.023097999,1.4924181 L 0.205902,1.7224181 L -0.023097999,1.9514181 L -0.023097999,1.7884181 L -0.385098,1.7884181 L -0.582098,1.3614181 L -0.780098,1.7884181 L -1.142098,1.7884181 L -1.142098,1.9514181 L -1.373098,1.7224181 L -1.142098,1.4924181 L -1.142098,1.6564181 L -0.895098,1.6564181 L -0.665098,1.1974181 L -0.895098,0.73841813 L -1.142098,0.73841813 L -1.142098,0.90241813 L -1.373098,0.67341813 L -1.142098,0.44241813"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2341"
d="M -1.126098,0.45941813 L -1.126098,0.64041813 L -0.764098,0.64041813 L -0.566098,1.0494181 L -0.369098,0.64041813 L -0.0080979988,0.64041813 L -0.0080979988,0.45941813 L 0.222902,0.68941813 L -0.0080979988,0.91941813 L -0.0080979988,0.75541813 L -0.270098,0.75541813 L -0.484098,1.2144181 L -0.270098,1.6734181 L -0.0080979988,1.6734181 L -0.0080979988,1.5094181 L 0.222902,1.7384181 L -0.0080979988,1.9684181 L -0.0080979988,1.8044181 L -0.369098,1.8044181 L -0.566098,1.3774181 L -0.764098,1.8044181 L -1.126098,1.8044181 L -1.126098,1.9684181 L -1.356098,1.7384181 L -1.126098,1.5094181 L -1.126098,1.6734181 L -0.879098,1.6734181 L -0.649098,1.2144181 L -0.879098,0.75541813 L -1.126098,0.75541813 L -1.126098,0.91941813 L -1.356098,0.68941813 L -1.126098,0.45941813"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.5 KiB

@ -0,0 +1,228 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
width="75.385796"
height="47.4576"
id="svg1998">
<title
id="title7771">Call manager</title>
<defs
id="defs2001">
<inkscape:perspective
id="perspective6662"
inkscape:persp3d-origin="25.679409 : 15.876897 : 1"
inkscape:vp_z="51.358818 : 23.815346 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 23.815346 : 1"
sodipodi:type="inkscape:persp3d" />
<linearGradient
id="linearGradient10123">
<stop
style="stop-color:#e4405c;stop-opacity:1"
offset="0"
id="stop10125" />
<stop
style="stop-color:#e4405c;stop-opacity:0"
offset="1"
id="stop10127" />
</linearGradient>
<linearGradient
id="linearGradient8331">
<stop
style="stop-color:#6e8caa;stop-opacity:1"
offset="0"
id="stop8333" />
<stop
style="stop-color:#dde3ef;stop-opacity:1"
offset="1"
id="stop8335" />
</linearGradient>
<linearGradient
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
id="linearGradient6587">
<stop
style="stop-color:#506eaa;stop-opacity:1"
offset="0"
id="stop6589" />
<stop
style="stop-color:#506eaa;stop-opacity:0"
offset="1"
id="stop6591" />
</linearGradient>
<marker
refX="0"
refY="0"
orient="auto"
style="overflow:visible"
id="Arrow2Lstart">
<path
d="M 8.7185878,4.0337352 L -2.2072895,0.01601326 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 L 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
id="path11918" />
</marker>
<marker
refX="0"
refY="0"
orient="auto"
style="overflow:visible"
id="Arrow1Send">
<path
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
id="path11921" />
</marker>
<marker
refX="0"
refY="0"
orient="auto"
style="overflow:visible"
id="Arrow1Lstart">
<path
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
id="path11936" />
</marker>
<linearGradient
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
id="linearGradient6593"
xlink:href="#linearGradient6587"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.94248e-3,-0.356572)" />
<linearGradient
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
id="linearGradient6609"
xlink:href="#linearGradient6603"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.94248e-3,-0.356572)" />
<linearGradient
x1="1.3990936"
y1="1.4711363"
x2="0.49966058"
y2="0.56367606"
id="linearGradient10129"
xlink:href="#linearGradient10123"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117962,0,0,1.035008,-4.0973e-2,-6.78868e-3)" />
<linearGradient
x1="2.1178279"
y1="0.30649999"
x2="-0.4954865"
y2="0.30649999"
id="linearGradient6875"
xlink:href="#linearGradient8331"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(36.273891,0,0,25.405463,-12.695862,-5.036317)" />
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 70.866142 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="177.16536 : 70.866142 : 1"
inkscape:persp3d-origin="88.58268 : 47.244095 : 1"
id="perspective6926" />
</defs>
<path
d="M 3.2414687,44.39252 L 3.2414687,47.4426 L 65.092636,47.4426 L 65.092636,44.39252 L 3.2414687,44.39252"
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
id="path11907" />
<path
d="M 65.204547,6.012075 L 75.146132,0.92492 L 75.385799,41.17175 L 65.0528,47.4576 L 65.204547,6.012075"
style="fill:#000000;fill-opacity:0.39215686;stroke:none"
id="path11020" />
<path
d="M 0.651406,4.9828 L 0.651406,46.15382 L 65.258598,46.15382 L 65.258598,4.9828 L 0.651406,4.9828"
style="fill:#6e8caa;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path2037" />
<path
d="M 0,5.456143 L 8.2704457,0.044778 L 73.599724,0.044778 L 65.25673,5.456143 L -1.4210855e-014,5.456143"
style="fill:url(#linearGradient6875);fill-opacity:1;stroke:none"
id="path2041" />
<path
d="M 65.062889,4.960412 L 73.306158,0 L 73.306158,41.22032 L 65.062889,46.18073 L 65.062889,4.960412"
style="fill:#6e8296;fill-opacity:1;stroke:none"
id="path2045" />
<path
d="M 20.386904,11.436169 L 18.121128,16.662569 L 19.192664,18.190674 L 27.577844,16.784539 L 27.700475,13.214693 L 27.700475,12.861501 L 27.823167,12.508388 L 28.068417,12.148875 L 28.068417,12.148875 L 28.423503,11.904855 L 28.791378,11.667313 L 29.262656,11.667313 L 29.139964,11.667313 L 39.442347,11.667313 L 39.442347,11.667313 L 39.932926,11.667313 L 40.16531,11.782878 L 40.410637,11.904837 L 40.888273,12.148856 L 41.010904,12.38 L 41.010904,12.38 L 41.2498,12.739511 L 41.2498,13.092626 L 41.2498,13.092626 L 41.482182,16.887292 L 49.738224,18.190653 L 50.700004,16.29016 L 48.782879,11.436151 L 48.059918,11.070162 L 46.633293,10.723445 L 45.071179,10.363856 L 43.509064,10.010739 L 41.850057,9.7795976 L 40.165318,9.5420555 L 38.364304,9.4200965 L 36.576239,9.2980357 L 35.13683,9.2980357 L 33.697337,9.2980357 L 32.37404,9.2980357 L 30.934549,9.4200965 L 30.934549,9.4200965 L 28.791398,9.5420555 L 26.98403,9.7795976 L 25.428349,10.132713 L 24.111483,10.363856 L 22.794619,10.723445 L 21.355131,11.070162 L 20.386918,11.436151 L 20.386904,11.436169 z "
style="fill:#000000"
id="path6890" />
<path
d="M 13.686465,14.164941 L 13.686465,19.494034 L 16.797829,19.494034 L 16.797829,21.163463 L 13.80909,21.163463 L 13.80909,26.139444 L 6.7407746,20.335185 L 13.686465,14.164941 L 13.686465,14.164941 z "
style="fill:#000000"
id="path6892" />
<path
d="M 9.0129855,37.773707 L 9.0129855,32.438136 L 5.9016217,32.438136 L 5.9016217,30.768707 L 8.9032285,30.768707 L 8.9032285,25.792727 L 15.965109,31.60986 L 9.0129855,37.773707 L 9.0129855,37.773707 z "
style="fill:#000000"
id="path6894" />
<path
d="M 54.657021,14.164941 L 54.657021,19.494034 L 51.539224,19.494034 L 51.539224,21.163463 L 54.540827,21.163463 L 54.540827,26.139444 L 61.615574,20.335185 L 54.657021,14.164941 L 54.657021,14.164941 z "
style="fill:#000000"
id="path6896" />
<path
d="M 59.330499,37.773707 L 59.330499,32.438136 L 62.448294,32.438136 L 62.448294,30.768707 L 59.453124,30.768707 L 59.453124,25.792727 L 52.38481,31.60986 L 59.330499,37.773707 L 59.330499,37.773707 z "
style="fill:#000000"
id="path6898" />
<path
d="M 22.071646,19.269366 L 47.110994,19.269366 L 47.110994,41.093134 L 22.071646,41.093134 L 22.071646,19.269366 L 22.071646,19.269366 z "
style="fill:#000000"
id="path6900" />
<path
d="M 19.915627,10.954609 L 17.630551,16.181005 L 18.715031,17.728386 L 27.10021,16.290178 L 27.222841,12.73953 L 27.222841,12.380016 L 27.345472,12.026826 L 27.577854,11.667313 L 27.577854,11.667313 L 27.945808,11.436169 L 28.300817,11.192149 L 28.791396,11.192149 L 28.668765,11.192149 L 38.964636,11.192149 L 38.964636,11.192149 L 39.442349,11.192149 L 39.687599,11.314108 L 39.932926,11.436169 L 40.410639,11.667313 L 40.53327,11.904855 L 40.53327,11.904855 L 40.765654,12.25797 L 40.765654,12.617561 L 40.765654,12.617561 L 41.010904,16.412149 L 49.27346,17.728386 L 50.222372,15.821492 L 48.305168,10.954609 L 47.58872,10.601492 L 46.142718,10.241903 L 44.593548,9.8887885 L 43.031353,9.5420738 L 41.372425,9.298056 L 39.687607,9.0669123 L 37.893107,8.9449533 L 36.085662,8.8229943 L 34.659119,8.8229943 L 33.219628,8.8229943 L 31.902764,8.8229943 L 30.463273,8.9449533 L 30.463273,8.9449533 L 28.300821,9.0669123 L 26.506321,9.298056 L 24.944207,9.6576447 L 23.620908,9.8887885 L 22.304042,10.241903 L 20.864554,10.601492 L 19.915642,10.954609 L 19.915627,10.954609 z "
style="fill:#ffffff"
id="path6902" />
<path
d="M 13.215264,13.683377 L 13.215264,19.031747 L 16.326628,19.031747 L 16.326628,20.6947 L 13.331456,20.6947 L 13.331456,25.670758 L 6.2501956,19.860023 L 13.215264,13.683377 L 13.215264,13.683377 z "
style="fill:#ffffff"
id="path6904" />
<path
d="M 8.5352723,37.298544 L 8.5352723,31.956576 L 5.423988,31.956576 L 5.423988,30.306422 L 8.4126494,30.306422 L 8.4126494,25.330441 L 15.493908,31.134698 L 8.5352723,37.298544 z "
style="fill:#ffffff"
id="path6906" />
<path
d="M 54.179307,13.683377 L 54.179307,19.031747 L 51.067944,19.031747 L 51.067944,20.6947 L 54.056683,20.6947 L 54.056683,25.670758 L 61.137942,19.860023 L 54.179307,13.683377 L 54.179307,13.683377 z "
style="fill:#ffffff"
id="path6908" />
<path
d="M 58.852786,37.298544 L 58.852786,31.956576 L 61.964152,31.956576 L 61.964152,30.306422 L 58.97549,30.306422 L 58.97549,25.330441 L 51.907099,31.134698 L 58.852786,37.298544 z "
style="fill:#ffffff"
id="path6910" />
<path
d="M 21.5875,18.781406 L 46.633281,18.781406 L 46.633281,40.61805 L 21.5875,40.61805 L 21.5875,18.781406 L 21.5875,18.781406 z "
style="fill:#ffffff"
id="path6912" />
<path
d="M 24.46648,21.285433 L 44.109387,21.285433 L 44.109387,25.201995 L 24.46648,25.201995 L 24.46648,21.285433"
style="fill:none;stroke:#000000;stroke-width:0.15649056;stroke-opacity:1"
id="path6914" />
<path
d="M 24.46648,28.630672 L 44.109387,28.630672 L 44.109387,38.479935 L 24.46648,38.479935 L 24.46648,28.630672"
style="fill:none;stroke:#000000;stroke-width:0.15649056;stroke-opacity:1"
id="path6916" />
<path
d="M 44.109387,26.974119 L 24.46648,26.974119"
style="fill:none;stroke:#000000;stroke-width:0.15649056;stroke-opacity:1"
id="path6918" />
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

@ -0,0 +1,163 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="4.5009999cm"
height="2.0009999cm"
viewBox="0.2 0.149 4.7 2.151"
id="svg2">
<metadata
id="metadata57">
<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>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs55" />
<path
d="m 3.7599791,0.61531938 -10e-4,-0.021 -0.003,-0.021 -0.007,-0.02 -0.009,-0.02 -0.011,-0.021 -0.013,-0.02 -0.017,-0.02 -0.018,-0.019 -0.021,-0.019 -0.023,-0.019 -0.024,-0.017 -0.028,-0.017 -0.03,-0.017 -0.031,-0.017 -0.033,-0.015 -0.035,-0.015 -0.037,-0.014 -0.038,-0.013 -0.04,-0.012 -0.041,-0.011 -0.043,-0.011 -0.045,-0.01 -0.044,-0.008 -0.046,-0.008 -0.048,-0.007 -0.047,-0.006 -0.048,-0.004 -0.049,-0.004 -0.05,-0.003 -0.049,-0.001 -0.049,-0.001 0,0 -0.05,0.001 -0.049,0.001 -0.05,0.003 -0.048,0.004 -0.049,0.004 -0.047,0.006 -0.047,0.007 -0.046,0.008 -0.045,0.008 -0.043,0.01 -0.043,0.011 -0.042,0.011 -0.04,0.012 -0.039,0.013 -0.036,0.014 -0.035,0.015 -0.033,0.015 -0.032,0.017 -0.029,0.017 -0.027,0.017 -0.026,0.017 -0.023,0.019 -0.02,0.019 -0.019,0.019 -0.016,0.02 -0.014,0.02 -0.01,0.021 -0.009,0.02 -0.006,0.02 -0.005,0.021 -0.001,0.021 0,0 0.001,0.02 0.005,0.022 0.006,0.02 0.009,0.021 0.01,0.02 0.014,0.019 0.016,0.02 0.019,0.02 0.02,0.019 0.023,0.018 0.026,0.018 0.027,0.017 0.029,0.017 0.032,0.016 0.033,0.016 0.035,0.014 0.036,0.014 0.039,0.013 0.04,0.013 0.042,0.011 0.043,0.01 0.043,0.011 0.045,0.008 0.046,0.007 0.047,0.007 0.047,0.006 0.049,0.005 0.048,0.003 0.05,0.003 0.049,10e-4 0.05,0.001 0,0 0.049,-0.001 0.049,-10e-4 0.05,-0.003 0.049,-0.003 0.048,-0.005 0.047,-0.006 0.048,-0.007 0.046,-0.007 0.044,-0.008 0.045,-0.011 0.043,-0.01 0.041,-0.011 0.04,-0.013 0.038,-0.013 0.037,-0.014 0.035,-0.014 0.033,-0.016 0.031,-0.016 0.03,-0.017 0.028,-0.017 0.024,-0.018 0.023,-0.018 0.021,-0.019 0.018,-0.02 0.017,-0.02 0.013,-0.019 0.011,-0.02 0.009,-0.021 0.007,-0.02 0.003,-0.022 10e-4,-0.02"
id="path4"
style="fill:#ffffff;stroke:none" />
<path
d="m 2.2259791,0.83031938 -10e-4,-0.021 -0.003,-0.02 -0.004,-0.021 -0.007,-0.02 -0.009,-0.021 -0.01,-0.02 -0.012,-0.02 -0.015,-0.018 -0.015,-0.019 -0.018,-0.019 -0.019,-0.018 -0.021,-0.017 -0.022,-0.017 -0.024,-0.016 -0.026,-0.015 -0.026,-0.015 -0.029,-0.014 -0.029,-0.013 -0.031,-0.013 -0.032,-0.011 -0.032,-0.011 -0.034,-0.009 -0.035,-0.009 -0.035,-0.008 -0.036,-0.006 -0.036,-0.006 -0.037,-0.005 -0.038,-0.004 -0.037,-0.002 -0.039,-0.002 -0.038,0 0,0 -0.037,0 -0.038,0.002 -0.038,0.002 -0.038,0.004 -0.037,0.005 -0.036,0.006 -0.036,0.006 -0.035,0.008 -0.035,0.009 -0.033,0.009 -0.033,0.011 -0.032,0.011 -0.03,0.013 -0.03,0.013 -0.028,0.014 -0.027,0.015 -0.025,0.015 -0.024,0.016 -0.023,0.017 -0.021,0.017 -0.018,0.018 -0.019,0.019 -0.015,0.019 -0.015,0.018 -0.012,0.02 -0.011,0.02 -0.008,0.021 -0.007,0.02 -0.005,0.021 -0.002,0.02 -0.001,0.021 0,0 0.001,0.021 0.002,0.021 0.005,0.02 0.007,0.021 0.008,0.02 0.011,0.02 0.012,0.02 0.015,0.019 0.015,0.019 0.019,0.018 0.018,0.018 0.021,0.018 0.023,0.016 0.024,0.016 0.025,0.016 0.027,0.014 0.028,0.015 0.03,0.012 0.03,0.013 0.032,0.012 0.033,0.01 0.033,0.01 0.035,0.008 0.035,0.008 0.036,0.007 0.036,0.005 0.037,0.005 0.038,0.004 0.038,0.002 0.038,0.002 0.037,0 0,0 0.038,0 0.039,-0.002 0.037,-0.002 0.038,-0.004 0.037,-0.005 0.036,-0.005 0.036,-0.007 0.035,-0.008 0.035,-0.008 0.034,-0.01 0.032,-0.01 0.032,-0.012 0.031,-0.013 0.029,-0.012 0.029,-0.015 0.026,-0.014 0.026,-0.016 0.024,-0.016 0.022,-0.016 0.021,-0.018 0.019,-0.018 0.018,-0.018 0.015,-0.019 0.015,-0.019 0.012,-0.02 0.01,-0.02 0.009,-0.02 0.007,-0.021 0.004,-0.02 0.003,-0.021 10e-4,-0.021"
id="path6"
style="fill:#ffffff;stroke:none" />
<path
d="m 1.2809791,1.2493194 -10e-4,-0.017 -0.001,-0.017 -0.004,-0.017 -0.005,-0.017 -0.005,-0.016 -0.007,-0.016 -0.009,-0.016 -0.009,-0.017 -0.011,-0.015 -0.012,-0.015 -0.012,-0.014 -0.014,-0.015 -0.015,-0.014 -0.017,-0.012 -0.017,-0.013 -0.018,-0.012 -0.019,-0.011 -0.02,-0.011 -0.02,-0.01 -0.022,-0.01 -0.022,-0.008 -0.023,-0.008 -0.023,-0.007 -0.024,-0.006 -0.024,-0.006 -0.025,-0.004 -0.024,-0.005 -0.026,-0.002 -0.025,-0.002 -0.025,-0.002 -0.026,0 0,0 -0.026,0 -0.026,0.002 -0.025,0.002 -0.025,0.002 -0.024,0.005 -0.026,0.004 -0.024,0.006 -0.023,0.006 -0.023,0.007 -0.023,0.008 -0.022,0.008 -0.022,0.01 -0.021,0.01 -0.019,0.011 -0.019,0.011 -0.018,0.012 -0.017,0.013 -0.017,0.012 -0.015,0.014 -0.014,0.015 -0.013,0.014 -0.011,0.015 -0.011,0.015 -0.01,0.017 -0.008,0.016 -0.007,0.016 -0.006,0.016 -0.004,0.017 -0.004,0.017 -0.002,0.017 0,0.017 0,0 0,0.016 0.002,0.018 0.004,0.016 0.004,0.017 0.006,0.017 0.007,0.016 0.008,0.016 0.01,0.015 0.011,0.016 0.011,0.015 0.013,0.015 0.014,0.014 0.015,0.014 0.017,0.013 0.017,0.012 0.018,0.012 0.019,0.012 0.019,0.01 0.021,0.01 0.022,0.01 0.022,0.008 0.023,0.008 0.023,0.007 0.023,0.007 0.024,0.005 0.026,0.005 0.024,0.004 0.025,0.003 0.025,10e-4 0.026,0.002 0.026,0.001 0,0 0.026,-0.001 0.025,-0.002 0.025,-10e-4 0.026,-0.003 0.024,-0.004 0.025,-0.005 0.024,-0.005 0.024,-0.007 0.023,-0.007 0.023,-0.008 0.022,-0.008 0.022,-0.01 0.02,-0.01 0.02,-0.01 0.019,-0.012 0.018,-0.012 0.017,-0.012 0.017,-0.013 0.015,-0.014 0.014,-0.014 0.012,-0.015 0.012,-0.015 0.011,-0.016 0.009,-0.015 0.009,-0.016 0.007,-0.016 0.005,-0.017 0.005,-0.017 0.004,-0.016 0.001,-0.018 10e-4,-0.016"
id="path8"
style="fill:#ffffff;stroke:none" />
<path
d="m 2.0969791,1.5713194 -0.002,-0.018 -0.003,-0.018 -0.004,-0.019 -0.007,-0.018 -0.009,-0.017 -0.01,-0.018 -0.013,-0.017 -0.015,-0.018 -0.016,-0.016 -0.017,-0.016 -0.019,-0.016 -0.021,-0.016 -0.024,-0.015 -0.024,-0.014 -0.026,-0.013 -0.027,-0.013 -0.028,-0.012 -0.031,-0.012 -0.03,-0.011 -0.032,-0.01 -0.034,-0.009 -0.035,-0.009 -0.034,-0.008 -0.036,-0.007 -0.036,-0.005 -0.038,-0.006 -0.037,-0.004 -0.038,-0.003 -0.038,-0.002 -0.039,-0.002 -0.038,0 0,0 -0.038,0 -0.039,0.002 -0.039,0.002 -0.038,0.003 -0.037,0.004 -0.037,0.006 -0.037,0.005 -0.035,0.007 -0.035,0.008 -0.034,0.009 -0.034,0.009 -0.032,0.01 -0.031,0.011 -0.03,0.012 -0.029,0.012 -0.027,0.013 -0.026,0.013 -0.024,0.014 -0.023,0.015 -0.021,0.016 -0.019,0.016 -0.018,0.016 -0.017,0.016 -0.014,0.018 -0.012,0.017 -0.01,0.018 -0.01,0.017 -0.006,0.018 -0.005,0.019 -0.003,0.018 -0.001,0.018 0,0 0.001,0.019 0.003,0.018 0.005,0.018 0.006,0.018 0.01,0.019 0.01,0.017 0.012,0.017 0.014,0.018 0.017,0.016 0.018,0.016 0.019,0.016 0.021,0.015 0.023,0.015 0.024,0.015 0.026,0.014 0.027,0.012 0.029,0.013 0.03,0.011 0.031,0.011 0.032,0.01 0.034,0.01 0.034,0.008 0.035,0.008 0.035,0.006 0.037,0.007 0.037,0.004 0.037,0.005 0.038,0.003 0.039,0.003 0.039,10e-4 0.038,0 0,0 0.038,0 0.039,-10e-4 0.038,-0.003 0.038,-0.003 0.037,-0.005 0.038,-0.004 0.036,-0.007 0.036,-0.006 0.034,-0.008 0.035,-0.008 0.034,-0.01 0.032,-0.01 0.03,-0.011 0.031,-0.011 0.028,-0.013 0.027,-0.012 0.026,-0.014 0.024,-0.015 0.024,-0.015 0.021,-0.015 0.019,-0.016 0.017,-0.016 0.016,-0.016 0.015,-0.018 0.013,-0.017 0.01,-0.017 0.009,-0.019 0.007,-0.018 0.004,-0.018 0.003,-0.018 0.002,-0.019"
id="path10"
style="fill:#ffffff;stroke:none" />
<path
d="m 3.9229791,1.7583194 -0.002,-0.021 -0.004,-0.022 -0.007,-0.022 -0.011,-0.021 -0.012,-0.021 -0.016,-0.021 -0.019,-0.021 -0.021,-0.02 -0.024,-0.02 -0.027,-0.02 -0.029,-0.018 -0.032,-0.019 -0.033,-0.017 -0.037,-0.017 -0.039,-0.016 -0.04,-0.016 -0.043,-0.014 -0.045,-0.014 -0.046,-0.013 -0.048,-0.012 -0.05,-0.01 -0.051,-0.011 -0.052,-0.009 -0.054,-0.008 -0.054,-0.007 -0.056,-0.006 -0.055,-0.005 -0.057,-0.004 -0.057,-0.002 -0.058,-0.002 -0.057,0 0,0 -0.057,0 -0.058,0.002 -0.057,0.002 -0.057,0.004 -0.056,0.005 -0.055,0.006 -0.054,0.007 -0.054,0.008 -0.052,0.009 -0.051,0.011 -0.05,0.01 -0.048,0.012 -0.047,0.013 -0.044,0.014 -0.043,0.014 -0.04,0.016 -0.039,0.016 -0.037,0.017 -0.034,0.017 -0.031,0.019 -0.029,0.018 -0.027,0.02 -0.024,0.02 -0.021,0.02 -0.018,0.021 -0.017,0.021 -0.012,0.021 -0.011,0.021 -0.007,0.022 -0.005,0.022 -10e-4,0.021 0,0 10e-4,0.023 0.005,0.021 0.007,0.022 0.011,0.021 0.012,0.022 0.017,0.02 0.018,0.021 0.021,0.02 0.024,0.02 0.027,0.02 0.029,0.018 0.031,0.018 0.034,0.018 0.037,0.017 0.039,0.016 0.04,0.016 0.043,0.015 0.044,0.013 0.047,0.013 0.048,0.012 0.05,0.011 0.051,0.01 0.052,0.009 0.054,0.009 0.054,0.007 0.055,0.005 0.056,0.005 0.057,0.004 0.057,0.003 0.058,0.002 0.057,0 0,0 0.057,0 0.058,-0.002 0.057,-0.003 0.057,-0.004 0.055,-0.005 0.056,-0.005 0.054,-0.007 0.054,-0.009 0.052,-0.009 0.051,-0.01 0.05,-0.011 0.048,-0.012 0.046,-0.013 0.045,-0.013 0.043,-0.015 0.04,-0.016 0.039,-0.016 0.037,-0.017 0.033,-0.018 0.032,-0.018 0.029,-0.018 0.027,-0.02 0.024,-0.02 0.021,-0.02 0.019,-0.021 0.016,-0.02 0.012,-0.022 0.011,-0.021 0.007,-0.022 0.004,-0.021 0.002,-0.023"
id="path12"
style="fill:#ffffff;stroke:none" />
<path
d="m 4.5529791,0.76631938 0,-0.016 -0.003,-0.016 -0.004,-0.017 -0.008,-0.016 -0.007,-0.016 -0.011,-0.016 -0.012,-0.015 -0.013,-0.015 -0.016,-0.015 -0.017,-0.015 -0.019,-0.013 -0.02,-0.014 -0.022,-0.013 -0.023,-0.013 -0.025,-0.012 -0.026,-0.011 -0.027,-0.012 -0.029,-0.01 -0.03,-0.01 -0.031,-0.009 -0.031,-0.008 -0.033,-0.008 -0.034,-0.007 -0.034,-0.006 -0.035,-0.005 -0.035,-0.005 -0.036,-0.003 -0.037,-0.003 -0.036,-0.002 -0.037,-0.001 -0.037,0 0,0 -0.037,0 -0.036,0.001 -0.038,0.002 -0.035,0.003 -0.036,0.003 -0.036,0.005 -0.034,0.005 -0.035,0.006 -0.034,0.007 -0.032,0.008 -0.032,0.008 -0.031,0.009 -0.03,0.01 -0.028,0.01 -0.028,0.012 -0.026,0.011 -0.025,0.012 -0.023,0.013 -0.022,0.013 -0.02,0.014 -0.019,0.013 -0.016,0.015 -0.016,0.015 -0.014,0.015 -0.012,0.015 -0.01,0.016 -0.009,0.016 -0.006,0.016 -0.005,0.017 -0.002,0.016 -10e-4,0.016 0,0 10e-4,0.016 0.002,0.016 0.005,0.017 0.006,0.016 0.009,0.016 0.01,0.016 0.012,0.016 0.014,0.014 0.016,0.016 0.016,0.014 0.019,0.014 0.02,0.013 0.022,0.014 0.023,0.013 0.025,0.012 0.026,0.011 0.028,0.011 0.028,0.011 0.03,0.009 0.031,0.009 0.032,0.009 0.032,0.007 0.034,0.007 0.035,0.006 0.034,0.006 0.036,0.004 0.036,0.003 0.035,0.003 0.038,0.003 0.036,0 0.037,10e-4 0,0 0.037,-10e-4 0.037,0 0.036,-0.003 0.037,-0.003 0.036,-0.003 0.035,-0.004 0.035,-0.006 0.034,-0.006 0.034,-0.007 0.033,-0.007 0.031,-0.009 0.031,-0.009 0.03,-0.009 0.029,-0.011 0.027,-0.011 0.026,-0.011 0.025,-0.012 0.023,-0.013 0.022,-0.014 0.02,-0.013 0.019,-0.014 0.017,-0.014 0.016,-0.016 0.013,-0.014 0.012,-0.016 0.011,-0.016 0.007,-0.016 0.008,-0.016 0.004,-0.017 0.003,-0.016 0,-0.016"
id="path14"
style="fill:#ffffff;stroke:none" />
<path
d="m 4.7599791,1.1813194 -10e-4,-0.016 -0.002,-0.016 -0.005,-0.017 -0.007,-0.016 -0.008,-0.016 -0.01,-0.016 -0.012,-0.016 -0.013,-0.014 -0.015,-0.015 -0.018,-0.015 -0.019,-0.014 -0.019,-0.013 -0.022,-0.013 -0.023,-0.014 -0.024,-0.011 -0.027,-0.012 -0.027,-0.011 -0.028,-0.01 -0.03,-0.01 -0.03,-0.009 -0.032,-0.008 -0.033,-0.008 -0.033,-0.007 -0.033,-0.005 -0.035,-0.006 -0.035,-0.004 -0.036,-0.004 -0.036,-0.003 -0.036,-0.002 -0.037,-0.001 -0.036,-0.001 0,0 -0.038,0.001 -0.036,0.001 -0.036,0.002 -0.036,0.003 -0.036,0.004 -0.035,0.004 -0.035,0.006 -0.033,0.005 -0.034,0.007 -0.032,0.008 -0.032,0.008 -0.03,0.009 -0.03,0.01 -0.028,0.01 -0.027,0.011 -0.027,0.012 -0.024,0.011 -0.022,0.014 -0.022,0.013 -0.021,0.013 -0.018,0.014 -0.018,0.015 -0.015,0.015 -0.013,0.014 -0.012,0.016 -0.01,0.016 -0.008,0.016 -0.007,0.016 -0.005,0.017 -0.002,0.016 -10e-4,0.016 0,0 10e-4,0.016 0.002,0.016 0.005,0.016 0.007,0.016 0.008,0.017 0.01,0.016 0.012,0.015 0.013,0.015 0.015,0.015 0.018,0.015 0.018,0.013 0.021,0.014 0.022,0.013 0.022,0.013 0.024,0.012 0.027,0.011 0.027,0.012 0.028,0.01 0.03,0.01 0.03,0.009 0.032,0.008 0.032,0.007 0.034,0.007 0.033,0.006 0.035,0.005 0.035,0.005 0.036,0.004 0.036,0.003 0.036,0.002 0.036,0.001 0.038,0 0,0 0.036,0 0.037,-0.001 0.036,-0.002 0.036,-0.003 0.036,-0.004 0.035,-0.005 0.035,-0.005 0.033,-0.006 0.033,-0.007 0.033,-0.007 0.032,-0.008 0.03,-0.009 0.03,-0.01 0.028,-0.01 0.027,-0.012 0.027,-0.011 0.024,-0.012 0.023,-0.013 0.022,-0.013 0.019,-0.014 0.019,-0.013 0.018,-0.015 0.015,-0.015 0.013,-0.015 0.012,-0.015 0.01,-0.016 0.008,-0.017 0.007,-0.016 0.005,-0.016 0.002,-0.016 10e-4,-0.016"
id="path16"
style="fill:#ffffff;stroke:none" />
<path
d="m 4.6189791,1.5243194 -10e-4,-0.027 -0.002,-0.027 -0.005,-0.026 -0.006,-0.027 -0.009,-0.026 -0.01,-0.026 -0.012,-0.025 -0.014,-0.025 -0.014,-0.025 -0.017,-0.023 -0.018,-0.024 -0.021,-0.022 -0.021,-0.022 -0.023,-0.02 -0.024,-0.021 -0.027,-0.018 -0.027,-0.018 -0.027,-0.018 -0.029,-0.015 -0.031,-0.015 -0.032,-0.013 -0.031,-0.013 -0.033,-0.011 -0.034,-0.01 -0.035,-0.009 -0.035,-0.007 -0.036,-0.006 -0.035,-0.005 -0.036,-0.003 -0.036,-0.002 -0.036,-0.001 0,0 -0.037,0.001 -0.036,0.002 -0.036,0.003 -0.036,0.005 -0.035,0.006 -0.035,0.007 -0.035,0.009 -0.034,0.01 -0.033,0.011 -0.032,0.013 -0.031,0.013 -0.031,0.015 -0.029,0.015 -0.028,0.018 -0.027,0.018 -0.026,0.018 -0.024,0.021 -0.023,0.02 -0.022,0.022 -0.019,0.022 -0.019,0.024 -0.017,0.023 -0.015,0.025 -0.014,0.025 -0.011,0.025 -0.01,0.026 -0.008,0.026 -0.007,0.027 -0.005,0.026 -0.002,0.027 -10e-4,0.027 0,0 10e-4,0.027 0.002,0.027 0.005,0.026 0.007,0.026 0.008,0.026 0.01,0.026 0.011,0.026 0.014,0.025 0.015,0.024 0.017,0.024 0.019,0.023 0.019,0.022 0.022,0.022 0.023,0.021 0.024,0.02 0.026,0.019 0.027,0.018 0.028,0.017 0.029,0.016 0.031,0.015 0.031,0.013 0.032,0.013 0.033,0.011 0.034,0.01 0.035,0.008 0.035,0.008 0.035,0.006 0.036,0.005 0.036,0.003 0.036,0.002 0.037,10e-4 0,0 0.036,-10e-4 0.036,-0.002 0.036,-0.003 0.035,-0.005 0.036,-0.006 0.035,-0.008 0.035,-0.008 0.034,-0.01 0.033,-0.011 0.031,-0.013 0.032,-0.013 0.031,-0.015 0.029,-0.016 0.027,-0.017 0.027,-0.018 0.027,-0.019 0.024,-0.02 0.023,-0.021 0.021,-0.022 0.021,-0.022 0.018,-0.023 0.017,-0.024 0.014,-0.024 0.014,-0.025 0.012,-0.026 0.01,-0.026 0.009,-0.026 0.006,-0.026 0.005,-0.026 0.002,-0.027 10e-4,-0.027"
id="path18"
style="fill:#ffffff;stroke:none" />
<path
d="m 2.7919791,0.61131938 0.965,-0.091 -0.013,-0.021 -0.014,-0.019 -0.017,-0.02 -0.019,-0.02 -0.022,-0.019 -0.024,-0.018 -0.026,-0.018 -0.028,-0.017 -0.031,-0.017 -0.032,-0.016 -0.034,-0.015 -0.036,-0.014 -0.038,-0.014 -0.039,-0.013 -0.042,-0.012 -0.042,-0.011 -0.043,-0.011 -0.045,-0.009 -0.046,-0.009 -0.047,-0.007 -0.048,-0.007 -0.048,-0.005 -0.049,-0.004 -0.049,-0.004 -0.049,-0.002 -0.051,-0.001 -0.05,0 -0.05,0 -0.049,0.003 -0.05,0.002 -0.049,0.004 -0.049,0.006 -0.047,0.006 -0.048,0.007 -0.046,0.008 -0.045,0.009 -0.044,0.01 -0.043,0.011 -0.041,0.012 -0.04,0.013 -0.038,0.013 -0.036,0.014 -0.036,0.016 -0.032,0.015 -0.032,0.017 -0.029,0.017 -0.026,0.018 -0.024,0.018 -0.024,0.019 -0.02,0.018 -0.018,0.02 -0.015,0.02 -0.012,0.021 -0.011,0.02 0.971,0.077"
id="path22"
style="fill:#ffffff;stroke:none" />
<path
d="m 3.7569791,0.51931938 -0.013,-0.021 -0.014,-0.019 -0.017,-0.02 -0.02,-0.019 -0.022,-0.019 -0.024,-0.018 -0.026,-0.018 -0.029,-0.018 -0.03,-0.016 -0.032,-0.016 -0.035,-0.016 -0.035,-0.014 -0.038,-0.014 -0.04,-0.012 -0.04,-0.013 -0.042,-0.011 -0.044,-0.01 -0.045,-0.01 -0.046,-0.008 -0.046,-0.008 -0.048,-0.006 -0.048,-0.005 -0.049,-0.004 -0.05,-0.004 -0.05,-0.002 -0.049,-0.001 -0.051,0 -0.049,0 -0.049,0.003 -0.051,0.002 -0.048,0.004 -0.049,0.006 -0.047,0.006 -0.048,0.007 -0.046,0.008 -0.045,0.009 -0.043,0.01 -0.043,0.011 -0.042,0.012 -0.039,0.013 -0.038,0.013 -0.036,0.014 -0.036,0.015 -0.033,0.015 -0.031,0.017 -0.028,0.018 -0.028,0.017 -0.024,0.018 -0.022,0.019 -0.021,0.019 -0.018,0.019 -0.016,0.02 -0.012,0.021 -0.011,0.02"
id="path24"
style="fill:none;stroke:#6c8f93;stroke-width:0.06067566;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="m 1.4819791,0.82631938 0.486,-0.317 -0.029,-0.013 -0.032,-0.012 -0.032,-0.012 -0.033,-0.01 -0.034,-0.01 -0.035,-0.008 -0.036,-0.008 -0.036,-0.006 -0.037,-0.006 -0.037,-0.005 -0.038,-0.003 -0.038,-0.003 -0.039,-0.001 -0.038,0 -0.038,0 -0.038,0.002 -0.038,0.003 -0.038,0.004 -0.037,0.005 -0.036,0.006 -0.037,0.007 -0.035,0.008 -0.034,0.009 -0.034,0.009 -0.033,0.011 -0.031,0.013 -0.031,0.012 -0.029,0.013 -0.028,0.015 -0.027,0.015 -0.026,0.015 -0.024,0.016 -0.022,0.018 -0.021,0.017 -0.018,0.018 -0.018,0.02 -0.016,0.018 -0.014,0.02 -0.012,0.02 -0.01,0.02 -0.008,0.02 -0.006,0.022 -0.005,0.02 -0.003,0.021 0,0.021 0.001,0.021 0.003,0.021 0.005,0.021 0.74600003,-0.067"
id="path26"
style="fill:#ffffff;stroke:none" />
<path
d="m 1.9659791,0.50831938 -0.03,-0.014 -0.031,-0.011 -0.033,-0.012 -0.033,-0.01 -0.035,-0.01 -0.034,-0.008 -0.036,-0.008 -0.036,-0.006 -0.037,-0.005 -0.037,-0.005 -0.038,-0.004 -0.038,-0.002 -0.039,-0.001 -0.038,0 -0.038,0 -0.038,0.003 -0.038,0.002 -0.038,0.004 -0.037,0.005 -0.036,0.007 -0.036,0.006 -0.035,0.009 -0.034,0.008 -0.034,0.011 -0.033,0.011 -0.032,0.011 -0.03,0.013 -0.029,0.013 -0.028,0.015 -0.027,0.015 -0.025,0.015 -0.024,0.016 -0.022,0.018 -0.02,0.017 -0.02,0.019 -0.017,0.018 -0.016,0.019 -0.013,0.02 -0.012,0.02 -0.01,0.02 -0.008,0.021 -0.006,0.02 -0.005,0.021 -0.003,0.02 0,0.022 0.002,0.021 0.002,0.02 0.006,0.021"
id="path28"
style="fill:none;stroke:#6c8f93;stroke-width:0.06067566;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="m 1.3459791,1.5683194 -0.78100003,-0.012 0,0.019 0.001,0.019 0.003,0.019 0.006,0.018 0.008,0.019 0.009,0.018 0.012,0.018 0.014,0.018 0.015,0.017 0.017,0.017 0.019,0.017 0.02,0.016 0.023,0.015 0.023,0.015 0.026,0.015 0.027,0.014 0.027,0.012 0.03,0.013 0.031,0.012 0.032,0.01 0.034,0.011 0.033,0.009 0.035,0.008 0.036,0.008 0.037,0.007 0.038,0.006 0.037,0.005 0.039,0.004 0.039,0.003 0.039,0.003 0.04,10e-4 0.039,0 0.039,-10e-4 0.039,-0.002 0.039,-0.002 0.039,-0.003 0.039,-0.005 0.037,-0.006 0.037,-0.005 0.037,-0.008 0.035,-0.008 0.035,-0.009 0.033,-0.009 0.033,-0.01 0.033,-0.011 0.03,-0.013 -0.513,-0.282"
id="path30"
style="fill:#ffffff;stroke:none" />
<path
d="m 0.56497907,1.5563194 -0.001,0.019 0.002,0.019 0.003,0.018 0.006,0.019 0.008,0.018 0.01,0.019 0.011,0.018 0.014,0.018 0.015,0.017 0.017,0.017 0.018,0.016 0.02,0.016 0.023,0.016 0.024,0.015 0.024,0.014 0.026,0.014 0.029,0.013 0.029,0.013 0.032,0.011 0.032,0.011 0.032,0.01 0.034,0.009 0.035,0.009 0.037,0.008 0.036,0.006 0.037,0.007 0.038,0.005 0.038,0.004 0.039,0.003 0.039,0.002 0.039,0.002 0.04,0 0.039,0 0.039,-0.003 0.039,-0.002 0.038,-0.003 0.038,-0.005 0.038,-0.004 0.038,-0.007 0.036,-0.007 0.036,-0.008 0.034,-0.009 0.034,-0.009 0.034,-0.01 0.031,-0.011 0.03,-0.012"
id="path32"
style="fill:none;stroke:#6c8f93;stroke-width:0.06067566;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="m 3.8359791,0.75931938 0.689,0.104 0.011,-0.016 0.01,-0.015 0.007,-0.016 0.006,-0.016 0.003,-0.016 0.002,-0.017 0,-0.016 -0.002,-0.017 -0.003,-0.016 -0.006,-0.016 -0.007,-0.016 -0.01,-0.016 -0.01,-0.016 -0.013,-0.015 -0.015,-0.015 -0.016,-0.015 -0.018,-0.014 -0.02,-0.014 -0.022,-0.014 -0.021,-0.012 -0.025,-0.013 -0.025,-0.012 -0.027,-0.011 -0.029,-0.011 -0.028,-0.01 -0.03,-0.009 -0.032,-0.009 -0.032,-0.008 -0.034,-0.007 -0.033,-0.006 -0.036,-0.006 -0.034,-0.005 -0.037,-0.004 -0.036,-0.003 -0.037,-0.003 -0.037,-0.001 -0.036,-0.001 -0.037,0 -0.037,0.001 -0.037,0.002 -0.036,0.002 -0.036,0.003 -0.036,0.004 -0.036,0.005 0.238,0.306"
id="path34"
style="fill:#ffffff;stroke:none" />
<path
d="m 4.4569791,0.92331938 0.067,-0.059 0.011,-0.016 0.009,-0.015 0.009,-0.016 0.005,-0.017 0.004,-0.016 0.002,-0.016 0.001,-0.016 -0.003,-0.017 -0.003,-0.016 -0.006,-0.017 -0.007,-0.015 -0.009,-0.016 -0.011,-0.016 -0.012,-0.015 -0.016,-0.015 -0.016,-0.015 -0.017,-0.014 -0.02,-0.014 -0.021,-0.014 -0.023,-0.013 -0.023,-0.012 -0.026,-0.012 -0.027,-0.011 -0.028,-0.011 -0.029,-0.011 -0.03,-0.009 -0.032,-0.008 -0.031,-0.008 -0.033,-0.008 -0.034,-0.006 -0.035,-0.006 -0.035,-0.005 -0.036,-0.004 -0.036,-0.003 -0.037,-0.002 -0.037,-0.002 -0.037,-0.001 -0.037,0 -0.037,0.001 -0.037,0.002 -0.036,0.002 -0.036,0.003 -0.036,0.004 -0.035,0.005"
id="path36"
style="fill:none;stroke:#6c8f93;stroke-width:0.06067566;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="m 3.9329791,1.1853194 0.775,0.132 0.016,-0.017 0.013,-0.017 0.012,-0.018 0.008,-0.018 0.008,-0.018 0.004,-0.019 10e-4,-0.018 0,-0.018 -0.003,-0.019 -0.004,-0.019 -0.008,-0.018 -0.009,-0.018 -0.012,-0.017 -0.014,-0.018 -0.016,-0.017 -0.018,-0.017 -0.02,-0.016 -0.023,-0.016 -0.024,-0.015 -0.686,0.20100002"
id="path38"
style="fill:#ffffff;stroke:none" />
<path
d="m 4.6121701,1.38473 0.098479,-0.059128 0.014482,-0.018039 0.013517,-0.018039 0.01062,-0.018039 0.00869,-0.018039 0.00772,-0.018039 0.00386,-0.018039 0.00193,-0.019041 0,-0.018039 -0.00386,-0.020044 -0.00386,-0.018039 -0.00676,-0.018039 -0.00965,-0.018039 -0.011586,-0.018039 -0.013517,-0.018039 -0.015448,-0.017037 -0.018344,-0.017037 -0.021241,-0.016035 -0.020275,-0.016035 -0.024137,-0.0160349 -0.1544773,-0.0591286"
id="path40"
style="fill:none;stroke:#6c8f93;stroke-width:0.0596842;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="m 3.9009791,1.5363194 -0.245,0.503 0.036,0.008 0.036,0.007 0.037,0.006 0.038,0.004 0.038,0.003 0.037,0.002 0.037,0 0.038,-0.002 0.037,-0.002 0.038,-0.004 0.036,-0.005 0.038,-0.007 0.035,-0.008 0.036,-0.009 0.034,-0.011 0.034,-0.012 0.033,-0.013 0.032,-0.014 0.031,-0.016 0.03,-0.016 0.028,-0.018 0.027,-0.019 0.027,-0.02 0.025,-0.02 0.022,-0.022 0.022,-0.021 0.02,-0.024 0.018,-0.024 0.016,-0.024 0.015,-0.025 0.014,-0.026 0.01,-0.025 0.01,-0.027 0.008,-0.027 0.006,-0.026 0.003,-0.028 0.002,-0.027 0,-0.027 -0.002,-0.027 -0.004,-0.027 -0.006,-0.026 -0.008,-0.028 -0.009,-0.025 -0.71,0.149"
id="path42"
style="fill:#ffffff;stroke:none" />
<path
d="m 3.6589791,2.0403194 0.036,0.008 0.036,0.007 0.037,0.006 0.037,0.004 0.037,0.002 0.038,0.002 0.038,10e-4 0.037,-0.003 0.038,-0.002 0.037,-0.004 0.037,-0.005 0.036,-0.007 0.036,-0.009 0.036,-0.009 0.034,-0.011 0.033,-0.011 0.034,-0.014 0.032,-0.014 0.031,-0.015 0.029,-0.018 0.029,-0.017 0.027,-0.019 0.026,-0.019 0.025,-0.021 0.023,-0.022 0.021,-0.022 0.019,-0.024 0.019,-0.023 0.016,-0.024 0.015,-0.025 0.014,-0.026 0.011,-0.026 0.008,-0.026 0.008,-0.027 0.006,-0.027 0.003,-0.027 0.002,-0.027 0,-0.027 -0.002,-0.027 -0.005,-0.027 -0.005,-0.028 -0.008,-0.026 -0.01,-0.026"
id="path44"
style="fill:none;stroke:#6c8f93;stroke-width:0.06067566;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="m 0.80297907,1.2493194 -0.037,-0.34200002 -0.028,0.002 -0.026,0.002 -0.027,0.004 -0.026,0.004 -0.026,0.005 -0.026,0.006 -0.024,0.007 -0.025,0.008 -0.024,0.008 -0.023,0.009 -0.022,0.01 -0.021,0.01 -0.021,0.012 -0.02,0.012 -0.019,0.013 -0.017,0.013 -0.017,0.014 -0.015,0.014 -0.015,0.015 -0.013,0.015 -0.011,0.016 -0.011,0.016 -0.01,0.016 -0.008,0.017 -0.006,0.017 -0.006,0.016 -0.004,0.018 -0.003,0.018 -0.001,0.017 0,0.017 0.001,0.018 0.003,0.017 0.004,0.017 0.006,0.017 0.007,0.017 0.008,0.017 0.009,0.016 0.011,0.016 0.012,0.016 0.013,0.015 0.016,0.015 0.015,0.014 0.017,0.014 0.018,0.013 0.018,0.013 0.02,0.011 0.021,0.011 0.021,0.012 0.022,0.009 0.024,0.009 0.023,0.009 0.243,-0.305"
id="path46"
style="fill:#ffffff;stroke:none" />
<path
d="m 0.76697907,0.90731938 -0.027,0.002 -0.027,0.002 -0.026,0.003 -0.026,0.005 -0.025,0.004 -0.026,0.006 -0.025,0.007 -0.023,0.007 -0.023,0.009 -0.023,0.009 -0.023,0.009 -0.021,0.01 -0.02,0.011 -0.02,0.012 -0.018,0.012 -0.018,0.013 -0.017,0.013 -0.016,0.015 -0.015,0.014 -0.012,0.014 -0.012,0.016 -0.012,0.015 -0.009,0.016 -0.009,0.016 -0.007,0.017 -0.006,0.017 -0.005,0.017 -0.003,0.017 -0.002,0.017 0,0.017 0,0.017 0.003,0.017 0.003,0.018 0.004,0.016 0.007,0.017 0.006,0.016 0.009,0.017 0.009,0.016 0.012,0.015 0.012,0.016 0.014,0.014 0.014,0.014 0.016,0.015 0.016,0.013 0.018,0.013 0.019,0.012 0.019,0.011 0.021,0.012 0.021,0.01 0.022,0.009 0.023,0.009 0.024,0.009"
id="path48"
style="fill:none;stroke:#6c8f93;stroke-width:0.06067566;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
<path
d="m 2.7759791,1.7874896 -1.109,0.040159 0.008,0.020594 0.009,0.019565 0.013,0.020594 0.015,0.020595 0.018,0.019565 0.021,0.018535 0.023,0.018535 0.025,0.018535 0.029,0.018535 0.031,0.017505 0.032,0.015446 0.036,0.016475 0.037,0.015446 0.039,0.015446 0.042,0.013386 0.043,0.013386 0.045,0.011327 0.047,0.012357 0.048,0.010297 0.049,0.00927 0.051,0.00927 0.052,0.00824 0.053,0.00618 0.053,0.00618 0.055,0.00515 0.055,0.00412 0.056,0.00206 0.055,0.00206 0.057,0.00103 0.055,0 0.057,-0.00103 0.055,-0.00309 0.055,-0.00309 0.055,-0.00515 0.054,-0.00515 0.053,-0.00618 0.052,-0.00721 0.052,-0.00824 0.05,-0.010297 0.049,-0.00927 0.047,-0.011327 0.046,-0.011327 0.044,-0.013386 0.042,-0.014416 0.04,-0.013386 0.039,-0.015446 0.036,-0.015446 0.034,-0.016476 0.031,-0.016476 0.03,-0.017505 0.027,-0.019565 0.025,-0.017505 0.022,-0.019565 0.018,-0.018535 -1.056,-0.1307748"
id="path50"
style="fill:#ffffff;stroke:none" />
<path
d="m 1.6669791,1.8393194 0.008,0.019 0.01,0.02 0.012,0.02 0.016,0.019 0.017,0.019 0.021,0.018 0.023,0.018 0.025,0.019 0.03,0.017 0.03,0.017 0.032,0.015 0.036,0.016 0.037,0.015 0.039,0.015 0.042,0.013 0.044,0.013 0.043,0.011 0.048,0.012 0.047,0.01 0.049,0.009 0.051,0.009 0.052,0.008 0.053,0.006 0.053,0.005 0.055,0.006 0.054,0.003 0.056,0.003 0.056,0.002 0.056,10e-4 0.056,0 0.056,-10e-4 0.055,-0.003 0.055,-0.003 0.055,-0.005 0.054,-0.005 0.054,-0.006 0.051,-0.007 0.052,-0.008 0.05,-0.009 0.048,-0.01 0.048,-0.011 0.046,-0.011 0.043,-0.013 0.043,-0.012 0.04,-0.015 0.039,-0.014 0.036,-0.016 0.034,-0.015 0.032,-0.017 0.029,-0.016 0.027,-0.018 0.024,-0.018 0.022,-0.019 0.02,-0.018"
id="path52"
style="fill:none;stroke:#6c8f93;stroke-width:0.06067566;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
<rect
width="2.7800133"
height="0.61515152"
rx="0"
ry="0.28983101"
x="1.2692652"
y="0.80605406"
transform="matrix(0.999604,0.02812984,-0.02812984,0.999604,0,0)"
id="rect1892"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" />
</svg>

After

Width:  |  Height:  |  Size: 27 KiB

@ -0,0 +1,560 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="59.253815"
id="Andysvg"
inkscape:version="0.45.1"
sodipodi:docbase="/home/grossmj/workspace/gns3-artwork/equipement"
sodipodi:docname="computer.svg"
sodipodi:version="0.32"
version="1.0"
width="65.414536"
x="0.00000000"
y="0.00000000"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata3">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>Etiquette Icons</dc:title>
<dc:description />
<dc:subject>
<rdf:Bag>
<rdf:li>hash</rdf:li>
<rdf:li />
<rdf:li>hardware</rdf:li>
<rdf:li>computer</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:publisher>
<cc:Agent
rdf:about="http://www.openclipart.org">
<dc:title>Andy Fitzsimon</dc:title>
</cc:Agent>
</dc:publisher>
<dc:creator>
<cc:Agent>
<dc:title>Andy Fitzsimon</dc:title>
</cc:Agent>
</dc:creator>
<dc:rights>
<cc:Agent>
<dc:title>Andy Fitzsimon</dc:title>
</cc:Agent>
</dc:rights>
<dc:date />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://web.resource.org/cc/PublicDomain" />
<dc:language>en</dc:language>
</cc:Work>
<cc:License
rdf:about="http://web.resource.org/cc/PublicDomain">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs3">
<linearGradient
id="linearGradient1806">
<stop
id="stop1807"
offset="0.0000000"
style="stop-color:#000000;stop-opacity:0.35051546;" />
<stop
id="stop3276"
offset="0.64999998"
style="stop-color:#000000;stop-opacity:0.13402061;" />
<stop
id="stop1808"
offset="1.0000000"
style="stop-color:#000000;stop-opacity:0.0000000;" />
</linearGradient>
<radialGradient
cx="42.007256"
cy="39.007645"
fx="42.280807"
fy="39.410465"
id="radialGradient1977"
r="11.574221"
xlink:href="#linearGradient1806"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient893">
<stop
id="stop895"
offset="0"
style="stop-color:#000;stop-opacity:1;" />
<stop
id="stop896"
offset="1"
style="stop-color:#fff;stop-opacity:1;" />
</linearGradient>
<linearGradient
id="linearGradient1317">
<stop
id="stop1318"
offset="0.00000000"
style="stop-color:#000000;stop-opacity:0.52892560;" />
<stop
id="stop1320"
offset="0.50000000"
style="stop-color:#000000;stop-opacity:0.17355372;" />
<stop
id="stop1319"
offset="1.0000000"
style="stop-color:#000000;stop-opacity:0.00000000;" />
</linearGradient>
<linearGradient
id="linearGradient1133">
<stop
id="stop1134"
offset="0.00000000"
style="stop-color:#8bb7df;stop-opacity:1.0000000;" />
<stop
id="stop1136"
offset="0.76209301"
style="stop-color:#2a6092;stop-opacity:1.0000000;" />
<stop
id="stop1135"
offset="1.0000000"
style="stop-color:#375e82;stop-opacity:1.0000000;" />
</linearGradient>
<linearGradient
id="linearGradient1098">
<stop
id="stop1099"
offset="0.00000000"
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
<stop
id="stop1101"
offset="0.50000000"
style="stop-color:#ffffff;stop-opacity:0.22314049;" />
<stop
id="stop1102"
offset="0.59930235"
style="stop-color:#ffffff;stop-opacity:0.00000000;" />
<stop
id="stop1100"
offset="1.0000000"
style="stop-color:#ffffff;stop-opacity:0.60330576;" />
</linearGradient>
<linearGradient
id="linearGradient902">
<stop
id="stop903"
offset="0.00000000"
style="stop-color:#000000;stop-opacity:0.00000000;" />
<stop
id="stop904"
offset="1.0000000"
style="stop-color:#000000;stop-opacity:0.22000000;" />
</linearGradient>
<linearGradient
id="linearGradient892">
<stop
id="stop893"
offset="0.00000000"
style="stop-color:#ffffff;stop-opacity:0.00000000;" />
<stop
id="stop894"
offset="1"
style="stop-color:#fff;stop-opacity:1;" />
</linearGradient>
<linearGradient
id="linearGradient888">
<stop
id="stop889"
offset="0.0000000"
style="stop-color:#626262;stop-opacity:1.0000000;" />
<stop
id="stop890"
offset="1"
style="stop-color:#fff;stop-opacity:1;" />
</linearGradient>
<linearGradient
id="linearGradient891"
x1="92.437965"
x2="27.674332"
xlink:href="#linearGradient888"
y1="-3.9104078"
y2="91.076988"
gradientTransform="matrix(0.8184166,0,0,0.530237,-9.8827678,-14.589608)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient901"
xlink:href="#linearGradient1806"
gradientTransform="matrix(0.8517959,0,0,0.5754549,70.875335,-17.351492)"
x1="9.4921856"
y1="22.862282"
x2="41.719688"
y2="22.862282"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient905"
x1="-77.726181"
x2="95.64444"
xlink:href="#linearGradient888"
y1="208.43991"
y2="11.699047"
gradientTransform="matrix(0.7314635,0,0,0.5932693,-9.8827694,-14.589616)"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="60.004654"
cy="56.485935"
fx="72.10788"
fy="39.288475"
id="radialGradient1132"
r="68.589226"
xlink:href="#linearGradient1133"
gradientTransform="matrix(0.8184166,0,0,0.530237,-9.8827678,-14.589608)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1138"
x1="-249.72067"
x2="-268.25406"
xlink:href="#linearGradient1806"
y1="375.922"
y2="75.912529"
gradientTransform="scale(1.087146,0.91984)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1140"
x1="45.685757"
x2="41.96706"
xlink:href="#linearGradient888"
y1="110.4447"
y2="232.24953"
gradientTransform="matrix(1.2743811,0,0,0.3405213,-9.8827694,-14.589616)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1141"
x1="0"
x2="0.92957747"
xlink:href="#linearGradient888"
y1="3.3012049"
y2="-0.45783132" />
<linearGradient
id="linearGradient1144"
x1="31.449743"
x2="31.617281"
xlink:href="#linearGradient892"
y1="203.49899"
y2="251.21892"
gradientTransform="matrix(1.4044089,0,0,0.3089952,-9.8827694,-14.589616)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1146"
x1="39.810947"
x2="17.87653"
xlink:href="#linearGradient892"
y1="90.197021"
y2="113.71949"
gradientTransform="matrix(0.8811179,0,0,0.4925045,-9.8827694,-14.589616)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1148"
x1="39.690613"
x2="70.224304"
xlink:href="#linearGradient892"
y1="49.507656"
y2="20.481863"
gradientTransform="scale(1.329144,0.752364)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1150"
x1="35.190361"
x2="8.3460579"
xlink:href="#linearGradient892"
y1="76.277557"
y2="105.42543"
gradientTransform="scale(1.328386,0.752793)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1156"
x1="25.220816"
x2="25.220816"
xlink:href="#linearGradient888"
y1="178.48862"
y2="234.26866"
gradientTransform="matrix(1.6156202,0,0,0.2685999,-9.8827678,-14.589608)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1157"
x1="51.46093"
x2="-16.224497"
xlink:href="#linearGradient888"
y1="269.85831"
y2="176.28694"
gradientTransform="matrix(1.6156202,0,0,0.2685999,-9.8827678,-14.589608)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1166"
x1="111.49758"
x2="107.04918"
xlink:href="#linearGradient1317"
y1="131.25249"
y2="148.78619"
gradientTransform="matrix(0.562951,0,0,0.378005,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1167"
x1="141.60217"
x2="88.447014"
xlink:href="#linearGradient888"
y1="228.39311"
y2="133.5471"
gradientTransform="matrix(0.544555,0,0,0.390775,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1169"
x1="146.69923"
x2="74.533691"
xlink:href="#linearGradient893"
y1="224.57898"
y2="81.4776"
gradientTransform="matrix(0.546024,0,0,0.389723,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<linearGradient
gradientTransform="scale(0.998371,1.001632)"
id="linearGradient1170"
x1="0.47284532"
x2="0.48655096"
xlink:href="#linearGradient902"
y1="-0.016295359"
y2="1.8378206" />
<linearGradient
id="linearGradient1171"
x1="101.10657"
x2="95.100159"
xlink:href="#linearGradient902"
y1="177.77768"
y2="173.03152"
gradientTransform="matrix(0.62565,0,0,0.340123,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="0.47887325"
cy="0.53333336"
fx="0.47535211"
fy="0.26666668"
id="radialGradient1315"
r="0.41197181"
xlink:href="#linearGradient1317" />
<radialGradient
cx="0.5"
cy="0.50000006"
fx="0.50352114"
fy="0.18269235"
id="radialGradient1316"
r="0.34964636"
xlink:href="#linearGradient1317" />
<linearGradient
id="linearGradient1404"
x1="88.755692"
x2="88.996956"
xlink:href="#linearGradient892"
y1="169.09755"
y2="182.99155"
gradientTransform="matrix(0.629979,0,0,0.337786,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<linearGradient
gradientTransform="scale(0.997825,1.00218)"
id="linearGradient1505"
x1="0.47157744"
x2="0.48548824"
xlink:href="#linearGradient902"
y1="-0.02485317"
y2="1.8570156" />
<linearGradient
gradientTransform="scale(0.995847,1.00417)"
id="linearGradient1506"
x1="0.4704251"
x2="0.48481107"
xlink:href="#linearGradient902"
y1="-0.04365262"
y2="1.9025002" />
<linearGradient
gradientTransform="scale(0.997153,1.002855)"
id="linearGradient2740"
x1="0.47041038"
x2="0.48453596"
xlink:href="#linearGradient902"
y1="-0.033741195"
y2="1.8771822" />
<linearGradient
id="linearGradient4283"
x1="-0.77314812"
x2="0.99074072"
xlink:href="#linearGradient893"
y1="2.0837989"
y2="-0.033519555" />
<linearGradient
id="linearGradient4284"
x1="-2.3960868e-17"
x2="0.92957747"
xlink:href="#linearGradient893"
y1="3.3012049"
y2="-0.45783132" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1806"
id="linearGradient1948"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.087146,0.91984)"
x1="-249.72067"
y1="375.922"
x2="-268.25406"
y2="75.912529" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1806"
id="linearGradient1950"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.087146,0.91984)"
x1="-249.72067"
y1="375.922"
x2="-268.25406"
y2="75.912529" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1806"
id="linearGradient1952"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.087146,0.91984)"
x1="-249.72067"
y1="375.922"
x2="-268.25406"
y2="75.912529" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient892"
id="linearGradient2625"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.329144,0.752364)"
x1="39.690613"
y1="49.507656"
x2="70.224304"
y2="20.481863" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient892"
id="linearGradient2627"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.328386,0.752793)"
x1="35.190361"
y1="76.277557"
x2="8.3460579"
y2="105.42543" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient888"
id="linearGradient2633"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.3870648,0,0,0.2694829,71.57581,-24.087318)"
x1="92.437965"
y1="-3.9104078"
x2="27.674332"
y2="91.076988" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient892"
id="linearGradient2635"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.8821916,0,0,0.491702,-8.9069314,-15.277305)"
x1="39.690613"
y1="49.507656"
x2="70.224304"
y2="20.481863" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient892"
id="linearGradient2637"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.8816883,0,0,0.4919824,-10.701684,-14.28309)"
x1="35.190361"
y1="76.277557"
x2="8.3460579"
y2="105.42543" />
</defs>
<sodipodi:namedview
bordercolor="#666666"
borderopacity="1.0"
id="base"
inkscape:cx="45.393129"
inkscape:cy="46.726833"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:window-height="975"
inkscape:window-width="1400"
inkscape:window-x="5"
inkscape:window-y="49"
inkscape:zoom="5.6568542"
pagecolor="#ffffff"
showborder="true"
inkscape:current-layer="Andysvg" />
<rect
height="5.4088969"
id="rect1155"
style="fill:url(#linearGradient1156);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient1157);stroke-width:0.95344429pt"
width="38.405891"
x="12.350429"
y="36.575089" />
<path
d="M 0.19287398,54.885213 C -0.67386281,56.46268 1.5579198,59.253939 3.3933636,59.253939 L 62.069027,59.253939 C 63.628857,59.253939 65.976201,57.281205 65.269522,55.925378 L 58.655165,43.235277 C 58.145696,42.257819 57.005954,41.779036 55.881408,41.779036 L 8.9408812,41.779036 C 8.0135624,41.779036 7.0317541,42.438291 6.5938539,43.235277 L 0.19287398,54.885213 z "
id="path1139"
sodipodi:nodetypes="czzzzzzzz"
style="fill:url(#linearGradient1140);fill-opacity:1;fill-rule:evenodd;stroke-width:1.44734821pt" />
<rect
height="39.110481"
id="rect1137"
rx="3.6272225"
ry="3.536587"
style="fill:url(#linearGradient905);fill-opacity:1;fill-rule:evenodd;stroke-width:1.62826681"
width="48.220726"
x="7.4732022"
y="-0.010164791" />
<rect
height="24.74659"
id="rect1131"
style="fill:url(#radialGradient1132);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient891);stroke-width:0.96503658pt"
width="38.813015"
x="12.390426"
y="6.027596" />
<path
d="M 8.5906358,19.782157 L 8.3772707,34.032521 C 8.3432557,36.304242 9.6712558,37.75887 12.004493,37.777143 L 38.568566,37.985175 L 41.128957,32.160207 L 11.471076,31.952177 L 11.257713,19.678141 L 8.5906358,19.782157 z "
id="path1145"
sodipodi:nodetypes="czzccccc"
style="fill:url(#linearGradient1146);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 2.7205883,54.675124 C 2.1113822,55.866786 2.9089235,57.975349 4.9701318,57.975349 L 60.179981,57.975349 C 61.276346,57.975349 62.926231,56.48511 62.429524,55.460899 L 57.78047,45.874547 C 57.422369,45.136152 56.621274,44.774474 55.830865,44.774474 L 8.8693353,44.774468 C 8.2175462,44.774468 7.5274604,45.272486 7.2196723,45.874547 L 2.7205883,54.675124 z "
id="path1143"
sodipodi:nodetypes="czzzzzzzz"
style="fill:url(#linearGradient1144);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 19.010905,6.5904681 L 42.426675,6.2948726 C 46.041292,6.2492425 50.532134,9.8297185 50.532134,13.389152 L 50.532134,24.030571 L 18.710703,23.734975 L 19.010905,6.5904681 z "
id="path1147"
sodipodi:nodetypes="czzccc"
style="fill:url(#linearGradient2635);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 41.29338,29.915511 L 20.310226,29.977799 C 17.071125,29.987414 13.079277,26.740463 13.111035,23.55121 L 13.205982,14.016504 L 41.715336,14.556637 L 41.29338,29.915511 z "
id="path1149"
sodipodi:nodetypes="czzccc"
style="fill:url(#linearGradient2637);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

@ -0,0 +1,657 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="59.253815"
id="Andysvg"
inkscape:version="0.48.4 r9939"
sodipodi:docname="docker_guest.svg"
sodipodi:version="0.32"
version="1.0"
width="65.414536"
x="0.00000000"
y="0.00000000"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata3">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>Etiquette Icons</dc:title>
<dc:description />
<dc:subject>
<rdf:Bag>
<rdf:li>hash</rdf:li>
<rdf:li />
<rdf:li>hardware</rdf:li>
<rdf:li>computer</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:publisher>
<cc:Agent
rdf:about="http://www.openclipart.org">
<dc:title>Andy Fitzsimon</dc:title>
</cc:Agent>
</dc:publisher>
<dc:creator>
<cc:Agent>
<dc:title>Andy Fitzsimon</dc:title>
</cc:Agent>
</dc:creator>
<dc:rights>
<cc:Agent>
<dc:title>Andy Fitzsimon</dc:title>
</cc:Agent>
</dc:rights>
<dc:date />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://web.resource.org/cc/PublicDomain" />
<dc:language>en</dc:language>
</cc:Work>
<cc:License
rdf:about="http://web.resource.org/cc/PublicDomain">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs3">
<linearGradient
id="linearGradient1806">
<stop
id="stop1807"
offset="0.0000000"
style="stop-color:#000000;stop-opacity:0.35051546;" />
<stop
id="stop3276"
offset="0.64999998"
style="stop-color:#000000;stop-opacity:0.13402061;" />
<stop
id="stop1808"
offset="1.0000000"
style="stop-color:#000000;stop-opacity:0.0000000;" />
</linearGradient>
<radialGradient
cx="42.007256"
cy="39.007645"
fx="42.280807"
fy="39.410465"
id="radialGradient1977"
r="11.574221"
xlink:href="#linearGradient1806"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient893">
<stop
id="stop895"
offset="0"
style="stop-color:#000;stop-opacity:1;" />
<stop
id="stop896"
offset="1"
style="stop-color:#fff;stop-opacity:1;" />
</linearGradient>
<linearGradient
id="linearGradient1317">
<stop
id="stop1318"
offset="0.00000000"
style="stop-color:#000000;stop-opacity:0.52892560;" />
<stop
id="stop1320"
offset="0.50000000"
style="stop-color:#000000;stop-opacity:0.17355372;" />
<stop
id="stop1319"
offset="1.0000000"
style="stop-color:#000000;stop-opacity:0.00000000;" />
</linearGradient>
<linearGradient
id="linearGradient1133">
<stop
id="stop1134"
offset="0.00000000"
style="stop-color:#8bb7df;stop-opacity:1.0000000;" />
<stop
id="stop1136"
offset="0.76209301"
style="stop-color:#2a6092;stop-opacity:1.0000000;" />
<stop
id="stop1135"
offset="1.0000000"
style="stop-color:#375e82;stop-opacity:1.0000000;" />
</linearGradient>
<linearGradient
id="linearGradient1098">
<stop
id="stop1099"
offset="0.00000000"
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
<stop
id="stop1101"
offset="0.50000000"
style="stop-color:#ffffff;stop-opacity:0.22314049;" />
<stop
id="stop1102"
offset="0.59930235"
style="stop-color:#ffffff;stop-opacity:0.00000000;" />
<stop
id="stop1100"
offset="1.0000000"
style="stop-color:#ffffff;stop-opacity:0.60330576;" />
</linearGradient>
<linearGradient
id="linearGradient902">
<stop
id="stop903"
offset="0.00000000"
style="stop-color:#000000;stop-opacity:0.00000000;" />
<stop
id="stop904"
offset="1.0000000"
style="stop-color:#000000;stop-opacity:0.22000000;" />
</linearGradient>
<linearGradient
id="linearGradient892">
<stop
id="stop893"
offset="0.00000000"
style="stop-color:#ffffff;stop-opacity:0.00000000;" />
<stop
id="stop894"
offset="1"
style="stop-color:#fff;stop-opacity:1;" />
</linearGradient>
<linearGradient
id="linearGradient888">
<stop
id="stop889"
offset="0.0000000"
style="stop-color:#626262;stop-opacity:1.0000000;" />
<stop
id="stop890"
offset="1"
style="stop-color:#fff;stop-opacity:1;" />
</linearGradient>
<linearGradient
id="linearGradient891"
x1="92.437965"
x2="27.674332"
xlink:href="#linearGradient888"
y1="-3.9104078"
y2="91.076988"
gradientTransform="matrix(0.8184166,0,0,0.530237,-9.8827678,-14.589608)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient901"
xlink:href="#linearGradient1806"
gradientTransform="matrix(0.8517959,0,0,0.5754549,70.875335,-17.351492)"
x1="9.4921856"
y1="22.862282"
x2="41.719688"
y2="22.862282"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient905"
x1="-77.726181"
x2="95.64444"
xlink:href="#linearGradient888"
y1="208.43991"
y2="11.699047"
gradientTransform="matrix(0.7314635,0,0,0.5932693,-9.8827694,-14.589616)"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="60.004654"
cy="56.485935"
fx="72.10788"
fy="39.288475"
id="radialGradient1132"
r="68.589226"
xlink:href="#linearGradient1133"
gradientTransform="matrix(0.8184166,0,0,0.530237,-9.8827678,-14.589608)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1138"
x1="-249.72067"
x2="-268.25406"
xlink:href="#linearGradient1806"
y1="375.922"
y2="75.912529"
gradientTransform="scale(1.087146,0.91984)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1140"
x1="45.685757"
x2="41.96706"
xlink:href="#linearGradient888"
y1="110.4447"
y2="232.24953"
gradientTransform="matrix(1.2743811,0,0,0.3405213,-9.8827694,-14.589616)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1141"
x1="0"
x2="0.92957747"
xlink:href="#linearGradient888"
y1="3.3012049"
y2="-0.45783132" />
<linearGradient
id="linearGradient1144"
x1="31.449743"
x2="31.617281"
xlink:href="#linearGradient892"
y1="203.49899"
y2="251.21892"
gradientTransform="matrix(1.4044089,0,0,0.3089952,-9.8827694,-14.589616)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1146"
x1="39.810947"
x2="17.87653"
xlink:href="#linearGradient892"
y1="90.197021"
y2="113.71949"
gradientTransform="matrix(0.8811179,0,0,0.4925045,-9.8827694,-14.589616)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1148"
x1="39.690613"
x2="70.224304"
xlink:href="#linearGradient892"
y1="49.507656"
y2="20.481863"
gradientTransform="scale(1.329144,0.752364)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1150"
x1="35.190361"
x2="8.3460579"
xlink:href="#linearGradient892"
y1="76.277557"
y2="105.42543"
gradientTransform="scale(1.328386,0.752793)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1156"
x1="25.220816"
x2="25.220816"
xlink:href="#linearGradient888"
y1="178.48862"
y2="234.26866"
gradientTransform="matrix(1.6156202,0,0,0.2685999,-9.8827678,-14.589608)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1157"
x1="51.46093"
x2="-16.224497"
xlink:href="#linearGradient888"
y1="269.85831"
y2="176.28694"
gradientTransform="matrix(1.6156202,0,0,0.2685999,-9.8827678,-14.589608)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1166"
x1="111.49758"
x2="107.04918"
xlink:href="#linearGradient1317"
y1="131.25249"
y2="148.78619"
gradientTransform="matrix(0.562951,0,0,0.378005,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1167"
x1="141.60217"
x2="88.447014"
xlink:href="#linearGradient888"
y1="228.39311"
y2="133.5471"
gradientTransform="matrix(0.544555,0,0,0.390775,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1169"
x1="146.69923"
x2="74.533691"
xlink:href="#linearGradient893"
y1="224.57898"
y2="81.4776"
gradientTransform="matrix(0.546024,0,0,0.389723,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<linearGradient
gradientTransform="scale(0.998371,1.001632)"
id="linearGradient1170"
x1="0.47284532"
x2="0.48655096"
xlink:href="#linearGradient902"
y1="-0.016295359"
y2="1.8378206" />
<linearGradient
id="linearGradient1171"
x1="101.10657"
x2="95.100159"
xlink:href="#linearGradient902"
y1="177.77768"
y2="173.03152"
gradientTransform="matrix(0.62565,0,0,0.340123,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="0.47887325"
cy="0.53333336"
fx="0.47535211"
fy="0.26666668"
id="radialGradient1315"
r="0.41197181"
xlink:href="#linearGradient1317" />
<radialGradient
cx="0.5"
cy="0.50000006"
fx="0.50352114"
fy="0.18269235"
id="radialGradient1316"
r="0.34964636"
xlink:href="#linearGradient1317" />
<linearGradient
id="linearGradient1404"
x1="88.755692"
x2="88.996956"
xlink:href="#linearGradient892"
y1="169.09755"
y2="182.99155"
gradientTransform="matrix(0.629979,0,0,0.337786,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<linearGradient
gradientTransform="scale(0.997825,1.00218)"
id="linearGradient1505"
x1="0.47157744"
x2="0.48548824"
xlink:href="#linearGradient902"
y1="-0.02485317"
y2="1.8570156" />
<linearGradient
gradientTransform="scale(0.995847,1.00417)"
id="linearGradient1506"
x1="0.4704251"
x2="0.48481107"
xlink:href="#linearGradient902"
y1="-0.04365262"
y2="1.9025002" />
<linearGradient
gradientTransform="scale(0.997153,1.002855)"
id="linearGradient2740"
x1="0.47041038"
x2="0.48453596"
xlink:href="#linearGradient902"
y1="-0.033741195"
y2="1.8771822" />
<linearGradient
id="linearGradient4283"
x1="-0.77314812"
x2="0.99074072"
xlink:href="#linearGradient893"
y1="2.0837989"
y2="-0.033519555" />
<linearGradient
id="linearGradient4284"
x1="-2.3960868e-17"
x2="0.92957747"
xlink:href="#linearGradient893"
y1="3.3012049"
y2="-0.45783132" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1806"
id="linearGradient1948"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.087146,0.91984)"
x1="-249.72067"
y1="375.922"
x2="-268.25406"
y2="75.912529" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1806"
id="linearGradient1950"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.087146,0.91984)"
x1="-249.72067"
y1="375.922"
x2="-268.25406"
y2="75.912529" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1806"
id="linearGradient1952"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.087146,0.91984)"
x1="-249.72067"
y1="375.922"
x2="-268.25406"
y2="75.912529" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient892"
id="linearGradient2625"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.329144,0.752364)"
x1="39.690613"
y1="49.507656"
x2="70.224304"
y2="20.481863" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient892"
id="linearGradient2627"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.328386,0.752793)"
x1="35.190361"
y1="76.277557"
x2="8.3460579"
y2="105.42543" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient888"
id="linearGradient2633"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.3870648,0,0,0.2694829,71.57581,-24.087318)"
x1="92.437965"
y1="-3.9104078"
x2="27.674332"
y2="91.076988" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient892"
id="linearGradient2635"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.8821916,0,0,0.491702,-8.9069314,-15.277305)"
x1="39.690613"
y1="49.507656"
x2="70.224304"
y2="20.481863" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient892"
id="linearGradient2637"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.8816883,0,0,0.4919824,-10.701684,-14.28309)"
x1="35.190361"
y1="76.277557"
x2="8.3460579"
y2="105.42543" />
</defs>
<sodipodi:namedview
bordercolor="#666666"
borderopacity="1.0"
id="base"
inkscape:cx="-42.363816"
inkscape:cy="25.513629"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:window-height="975"
inkscape:window-width="1400"
inkscape:window-x="245"
inkscape:window-y="75"
inkscape:zoom="5.6568542"
pagecolor="#ffffff"
showborder="true"
inkscape:current-layer="Andysvg"
showgrid="false"
inkscape:window-maximized="0" />
<rect
height="5.4088969"
id="rect1155"
style="fill:url(#linearGradient1156);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient1157);stroke-width:0.95344429pt"
width="38.405891"
x="12.350429"
y="36.575089" />
<path
d="M 0.19287398,54.885213 C -0.67386281,56.46268 1.5579198,59.253939 3.3933636,59.253939 L 62.069027,59.253939 C 63.628857,59.253939 65.976201,57.281205 65.269522,55.925378 L 58.655165,43.235277 C 58.145696,42.257819 57.005954,41.779036 55.881408,41.779036 L 8.9408812,41.779036 C 8.0135624,41.779036 7.0317541,42.438291 6.5938539,43.235277 L 0.19287398,54.885213 z "
id="path1139"
sodipodi:nodetypes="czzzzzzzz"
style="fill:url(#linearGradient1140);fill-opacity:1;fill-rule:evenodd;stroke-width:1.44734821pt" />
<rect
height="39.110481"
id="rect1137"
rx="3.6272225"
ry="3.536587"
style="fill:url(#linearGradient905);fill-opacity:1;fill-rule:evenodd;stroke-width:1.62826681"
width="48.220726"
x="7.4732022"
y="-0.010164791" />
<rect
height="24.74659"
id="rect1131"
style="fill:url(#radialGradient1132);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient891);stroke-width:0.96503658pt"
width="38.813015"
x="12.390426"
y="6.027596" />
<path
d="M 8.5906358,19.782157 L 8.3772707,34.032521 C 8.3432557,36.304242 9.6712558,37.75887 12.004493,37.777143 L 38.568566,37.985175 L 41.128957,32.160207 L 11.471076,31.952177 L 11.257713,19.678141 L 8.5906358,19.782157 z "
id="path1145"
sodipodi:nodetypes="czzccccc"
style="fill:url(#linearGradient1146);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 2.7205883,54.675124 C 2.1113822,55.866786 2.9089235,57.975349 4.9701318,57.975349 L 60.179981,57.975349 C 61.276346,57.975349 62.926231,56.48511 62.429524,55.460899 L 57.78047,45.874547 C 57.422369,45.136152 56.621274,44.774474 55.830865,44.774474 L 8.8693353,44.774468 C 8.2175462,44.774468 7.5274604,45.272486 7.2196723,45.874547 L 2.7205883,54.675124 z "
id="path1143"
sodipodi:nodetypes="czzzzzzzz"
style="fill:url(#linearGradient1144);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 19.010905,6.5904681 L 42.426675,6.2948726 C 46.041292,6.2492425 50.532134,9.8297185 50.532134,13.389152 L 50.532134,24.030571 L 18.710703,23.734975 L 19.010905,6.5904681 z "
id="path1147"
sodipodi:nodetypes="czzccc"
style="fill:url(#linearGradient2635);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 41.29338,29.915511 L 20.310226,29.977799 C 17.071125,29.987414 13.079277,26.740463 13.111035,23.55121 L 13.205982,14.016504 L 41.715336,14.556637 L 41.29338,29.915511 z "
id="path1149"
sodipodi:nodetypes="czzccc"
style="fill:url(#linearGradient2637);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<g
transform="matrix(0.07160825,0,0,0.07160825,15.772378,2.2486319)"
id="g3137">
<path
style="fill-rule:evenodd;fill:#4d4d4d"
inkscape:connector-curvature="0"
id="outline_7_"
clip-rule="evenodd"
d="m 242.133,168.481 h 47.146 v 48.194 h 23.837 c 11.008,0 22.33,-1.962 32.755,-5.494 5.123,-1.736 10.872,-4.154 15.926,-7.193 -6.656,-8.689 -10.053,-19.661 -11.054,-30.476 -1.358,-14.71 1.609,-33.855 11.564,-45.368 l 4.956,-5.732 5.905,4.747 c 14.867,11.946 27.372,28.638 29.577,47.665 17.901,-5.266 38.921,-4.02 54.701,5.088 l 6.475,3.734 -3.408,6.652 c -13.345,26.046 -41.246,34.113 -68.524,32.687 -40.817,101.663 -129.68,149.794 -237.428,149.794 -55.666,0 -106.738,-20.81 -135.821,-70.197 l -0.477,-0.807 -4.238,-8.621 C 4.195,271.415 0.93,247.6 3.145,223.803 l 0.664,-7.127 h 40.315 v -48.194 h 47.143 v -47.145 h 94.292 V 74.191 h 56.574 v 94.29 z" />
<g
style="display:none"
display="none"
id="g3140">
<path
style="fill:#394d54;display:inline"
inkscape:connector-curvature="0"
display="inline"
d="m 61.093,319.89 c 6.023,0 11.763,-0.157 17.219,-0.464 0.476,-0.026 0.932,-0.063 1.402,-0.092 0.005,-0.002 0.008,-0.002 0.012,-0.002 13.872,-0.855 25.876,-2.708 35.902,-5.57 0.002,-0.002 0.004,-0.002 0.006,-0.002 1.823,-0.521 3.588,-1.07 5.282,-1.656 1.894,-0.657 2.896,-2.725 2.241,-4.618 -0.656,-1.895 -2.722,-2.899 -4.618,-2.24 -12.734,4.412 -29.535,6.842 -50.125,7.298 -0.002,0 -0.004,0 -0.005,0 -10.477,0.232 -21.93,-0.044 -34.352,-0.843 0,0 0,0 -0.001,0 -0.635,-0.038 -1.259,-0.075 -1.9,-0.118 -1.995,-0.128 -3.731,1.374 -3.869,3.375 -0.136,1.999 1.376,3.73 3.375,3.866 2.537,0.173 5.03,0.321 7.49,0.453 0.392,0.021 0.77,0.034 1.158,0.054 l 0,0 c 7.256,0.366 14.194,0.559 20.783,0.559 z"
id="path3142" />
</g>
<g
id="Containers_8_">
<path
style="fill:#ffffff;fill-rule:evenodd"
inkscape:connector-curvature="0"
clip-rule="evenodd"
d="m 86.209,179.744 h 3.227 v 34.052 h -3.227 v -34.052 z m -6.189,0 h 3.354 v 34.052 H 80.02 v -34.052 z m -6.192,0 h 3.354 v 34.052 h -3.354 v -34.052 z m -6.192,0 h 3.354 v 34.052 h -3.354 v -34.052 z m -6.19,0 H 64.8 v 34.052 h -3.354 v -34.052 z m -6.062,0 h 3.224 v 34.052 h -3.224 v -34.052 z m -3.403,-3.406 h 40.858 v 40.86 H 51.981 v -40.86 z"
id="path3145" />
<path
style="fill:#ffffff;fill-rule:evenodd"
inkscape:connector-curvature="0"
clip-rule="evenodd"
d="m 133.354,132.598 h 3.229 v 34.051 h -3.229 v -34.051 z m -6.189,0 h 3.354 v 34.051 h -3.354 v -34.051 z m -6.192,0 h 3.354 v 34.051 h -3.354 v -34.051 z m -6.192,0 h 3.354 v 34.051 h -3.354 v -34.051 z m -6.188,0 h 3.352 v 34.051 h -3.352 v -34.051 z m -6.062,0 h 3.222 v 34.051 h -3.222 v -34.051 z m -3.407,-3.405 h 40.863 v 40.859 H 99.124 v -40.859 z"
id="path3147" />
<path
style="fill:#ffffff;fill-rule:evenodd"
inkscape:connector-curvature="0"
clip-rule="evenodd"
d="m 133.354,179.744 h 3.229 v 34.052 h -3.229 v -34.052 z m -6.189,0 h 3.354 v 34.052 h -3.354 v -34.052 z m -6.192,0 h 3.354 v 34.052 h -3.354 v -34.052 z m -6.192,0 h 3.354 v 34.052 h -3.354 v -34.052 z m -6.188,0 h 3.352 v 34.052 h -3.352 v -34.052 z m -6.062,0 h 3.222 v 34.052 h -3.222 v -34.052 z m -3.407,-3.406 h 40.863 v 40.86 H 99.124 v -40.86 z"
id="path3149" />
<path
style="fill:#ffffff;fill-rule:evenodd"
inkscape:connector-curvature="0"
clip-rule="evenodd"
d="m 180.501,179.744 h 3.225 v 34.052 h -3.225 v -34.052 z m -6.191,0 h 3.355 v 34.052 h -3.355 v -34.052 z m -6.19,0 h 3.354 v 34.052 h -3.354 v -34.052 z m -6.192,0 h 3.354 v 34.052 h -3.354 v -34.052 z m -6.192,0 h 3.354 v 34.052 h -3.354 v -34.052 z m -6.06,0 h 3.222 v 34.052 h -3.222 v -34.052 z m -3.405,-3.406 h 40.861 v 40.86 h -40.861 v -40.86 z"
id="path3151" />
<path
style="fill:#ffffff;fill-rule:evenodd"
inkscape:connector-curvature="0"
clip-rule="evenodd"
d="m 180.501,132.598 h 3.225 v 34.051 h -3.225 v -34.051 z m -6.191,0 h 3.355 v 34.051 h -3.355 v -34.051 z m -6.19,0 h 3.354 v 34.051 h -3.354 v -34.051 z m -6.192,0 h 3.354 v 34.051 h -3.354 v -34.051 z m -6.192,0 h 3.354 v 34.051 h -3.354 v -34.051 z m -6.06,0 h 3.222 v 34.051 h -3.222 v -34.051 z m -3.405,-3.405 h 40.861 v 40.859 h -40.861 v -40.859 z"
id="path3153" />
<path
style="fill:#ffffff;fill-rule:evenodd"
inkscape:connector-curvature="0"
clip-rule="evenodd"
d="m 227.647,179.744 h 3.226 v 34.052 h -3.226 v -34.052 z m -6.19,0 h 3.354 v 34.052 h -3.354 v -34.052 z m -6.192,0 h 3.354 v 34.052 h -3.354 v -34.052 z m -6.192,0 h 3.354 v 34.052 h -3.354 v -34.052 z m -6.189,0 h 3.354 v 34.052 h -3.354 v -34.052 z m -6.063,0 h 3.224 v 34.052 h -3.224 v -34.052 z m -3.405,-3.406 h 40.861 v 40.86 h -40.861 v -40.86 z"
id="path3155" />
<path
style="fill:#ffffff;fill-rule:evenodd"
inkscape:connector-curvature="0"
clip-rule="evenodd"
d="m 227.647,132.598 h 3.226 v 34.051 h -3.226 v -34.051 z m -6.19,0 h 3.354 v 34.051 h -3.354 v -34.051 z m -6.192,0 h 3.354 v 34.051 h -3.354 v -34.051 z m -6.192,0 h 3.354 v 34.051 h -3.354 v -34.051 z m -6.189,0 h 3.354 v 34.051 h -3.354 v -34.051 z m -6.063,0 h 3.224 v 34.051 h -3.224 v -34.051 z m -3.405,-3.405 h 40.861 v 40.859 h -40.861 v -40.859 z"
id="path3157" />
<path
style="fill:#ffffff;fill-rule:evenodd"
inkscape:connector-curvature="0"
clip-rule="evenodd"
d="m 227.647,85.451 h 3.226 v 34.053 h -3.226 V 85.451 z m -6.19,0 h 3.354 v 34.053 h -3.354 V 85.451 z m -6.192,0 h 3.354 v 34.053 h -3.354 V 85.451 z m -6.192,0 h 3.354 v 34.053 h -3.354 V 85.451 z m -6.189,0 h 3.354 v 34.053 h -3.354 V 85.451 z m -6.063,0 h 3.224 v 34.053 h -3.224 V 85.451 z m -3.405,-3.403 h 40.861 v 40.86 h -40.861 v -40.86 z"
id="path3159" />
<path
style="fill:#ffffff;fill-rule:evenodd"
inkscape:connector-curvature="0"
clip-rule="evenodd"
d="m 274.792,179.744 h 3.224 v 34.052 h -3.224 v -34.052 z m -6.19,0 h 3.352 v 34.052 h -3.352 v -34.052 z m -6.194,0 h 3.354 v 34.052 h -3.354 v -34.052 z m -6.19,0 h 3.354 v 34.052 h -3.354 v -34.052 z m -6.192,0 h 3.354 v 34.052 h -3.354 v -34.052 z m -6.062,0 h 3.227 v 34.052 h -3.227 v -34.052 z m -3.403,-3.406 h 40.86 v 40.86 h -40.86 v -40.86 z"
id="path3161" />
</g>
<path
style="fill:#ffffff;fill-rule:evenodd"
inkscape:connector-curvature="0"
clip-rule="evenodd"
d="m 137.428,283.445 c 6.225,0 11.271,5.049 11.271,11.272 0,6.225 -5.046,11.271 -11.271,11.271 -6.226,0 -11.272,-5.046 -11.272,-11.271 0,-6.223 5.046,-11.272 11.272,-11.272"
id="path3163" />
<path
style="fill-rule:evenodd"
inkscape:connector-curvature="0"
clip-rule="evenodd"
d="m 137.428,286.644 c 1.031,0 2.015,0.194 2.923,0.546 -0.984,0.569 -1.65,1.635 -1.65,2.854 0,1.82 1.476,3.293 3.296,3.293 1.247,0 2.329,-0.693 2.89,-1.715 0.395,0.953 0.615,1.999 0.615,3.097 0,4.458 -3.615,8.073 -8.073,8.073 -4.458,0 -8.074,-3.615 -8.074,-8.073 -10e-4,-4.461 3.616,-8.075 8.073,-8.075"
id="path3165" />
<path
style="fill:#ffffff"
inkscape:connector-curvature="0"
d="m 167.394,364.677 c -27.916,-13.247 -43.239,-31.256 -51.765,-50.915 -10.37,2.961 -22.835,4.852 -37.317,5.664 -5.457,0.307 -11.196,0.464 -17.219,0.464 -6.942,0 -14.26,-0.205 -21.94,-0.613 25.6,25.585 57.094,45.283 115.408,45.645 4.305,-0.001 8.579,-0.085 12.833,-0.245 z"
id="path3167" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

@ -0,0 +1,155 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.0"
width="50"
height="52.851002"
viewBox="0.549 0.399 2.292 2.401"
id="svg2">
<metadata
id="metadata43">
<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="defs41">
<linearGradient
id="linearGradient3184">
<stop
id="stop3186"
style="stop-color:#6e8caa;stop-opacity:1"
offset="0" />
<stop
id="stop3188"
style="stop-color:#6e8caa;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient3176">
<stop
id="stop3178"
style="stop-color:#6e8caa;stop-opacity:1"
offset="0" />
<stop
id="stop3180"
style="stop-color:#6e8caa;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
id="linearGradient3168">
<stop
id="stop3170"
style="stop-color:#6e8caa;stop-opacity:1"
offset="0" />
<stop
id="stop3172"
style="stop-color:#6e8caa;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
x1="0.2645601"
y1="0.29689455"
x2="1.7966568"
y2="0.71062529"
id="linearGradient3174"
xlink:href="#linearGradient3168"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.2914583,0,0,1.1929584,-0.1523275,-0.0809076)" />
<linearGradient
x1="1.0112149"
y1="0.3356818"
x2="3.0507782"
y2="1.5413191"
id="linearGradient3182"
xlink:href="#linearGradient3176"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.287462,0,0,1.1929584,-0.1486101,-0.0809076)" />
<linearGradient
x1="1.5639333"
y1="0.5199213"
x2="4.2693448"
y2="1.9065658"
id="linearGradient3190"
xlink:href="#linearGradient3184"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.2639698,0,0,1.0836045,-0.09230348,0.02066747)" />
</defs>
<path
d="M 2.3941279,0.97172994 1.2700398,0.39735179 1.0491214,0.5880117 2.2043972,1.1479998 2.3941279,0.97172994"
id="path2181"
style="fill:#ffffff;fill-opacity:1;stroke:none" />
<path
d="M 2.3941279,0.97065381 1.2700398,0.39627555 1.0491214,0.58693558 2.2043972,1.1469238 2.3941279,0.97065381"
id="path4"
style="fill:url(#linearGradient3182);fill-opacity:1;stroke:none" />
<path
d="m 1.0591098,0.59088839 0.2220811,-0.1935366 -0.52515878,0 -0.20640573,0.1935366 0.50948341,0"
id="path2183"
style="fill:#ffffff;fill-opacity:1;stroke:none" />
<path
d="m 2.2179342,1.1798528 -1.1282158,-0.55711132 -0.49494083,0 0,2.19623822 0.49494083,0 1.1282158,-0.527289 0.3858005,0 0,-1.1118379 -0.3858005,0"
id="path4163"
style="fill:#000000;fill-opacity:0.39215686;stroke:none" />
<path
d="m 2.2043303,1.1475321 0.399824,0 0.1992969,-0.17329961 -0.4145821,0 -0.1845388,0.17329961"
id="path2185"
style="fill:#ffffff;fill-opacity:1;stroke:none" />
<path
d="m 2.2097502,1.1430678 -1.1481056,-0.55711153 -0.50366938,0 0,2.19623873 0.50366938,0 1.1481056,-0.5272895 0.3926032,0 0,-1.1118377 -0.3926032,0"
id="path10"
style="fill:#6e8caa;fill-opacity:1;stroke:none" />
<path
d="m 2.6026831,2.2913358 0.2389433,-0.2163176 -0.00758,-1.0544695 -0.2313634,0.1742648 0,1.0965223"
id="path3192"
style="fill:#000000;fill-opacity:0.39215686;stroke:none" />
<path
d="M 2.6011531,2.258763 2.8117998,2.0551034 2.8035667,0.96657373 2.6011531,1.1471464 l 0,1.1116166"
id="path14"
style="fill:#6e8296;fill-opacity:1;stroke:none" />
<path
d="m 1.0591098,0.58981226 0.2220811,-0.19353671 -0.52515868,0 -0.20640583,0.19353671 0.50948341,0"
id="path18"
style="fill:url(#linearGradient3174);fill-opacity:1;stroke:none" />
<path
d="m 2.2043303,1.1464561 0.399824,0 0.1992969,-0.17329973 -0.4145821,0 -0.1845388,0.17329973"
id="path24"
style="fill:url(#linearGradient3190);fill-opacity:1;stroke:none" />
<path
d="m 1.9101319,2.2704158 0.4248898,-0.2648385 0.032286,0.059648 0.1407685,-0.2051891 -0.2518346,0.029825 0.030995,0.042946 -0.408101,0.2493295 -1.06932668,0 0,0.088279 1.10032248,0"
id="path28"
style="fill:#000000;stroke:none" />
<path
d="M 2.2407445,1.815897 2.4770816,1.7133036 2.2407445,1.6107089 l 0,0.072769 -1.43093508,0 0,0.073965 1.43093508,0 0,0.058454"
id="path30"
style="fill:#000000;stroke:none" />
<path
d="m 1.9101319,1.171699 0.4248898,0.263644 0.032286,-0.058454 0.1407685,0.2051879 -0.2518346,-0.029823 0.030995,-0.058456 -0.408101,-0.2481354 -1.06932668,0 0,-0.073963 1.10032248,0"
id="path32"
style="fill:#000000;stroke:none" />
<path
d="m 1.92692,2.2549055 0.4235985,-0.2636423 0.032286,0.058454 0.1407686,-0.2039949 -0.251833,0.028629 0.032286,0.044139 -0.4093923,0.2481361 -1.06932718,0 0,0.088279 1.10161318,0"
id="path34"
style="fill:#ffffff;stroke:none" />
<path
d="M 2.2562416,1.8015826 2.4925793,1.698988 2.2562416,1.5963928 l 0,0.073963 -1.43093478,0 0,0.072772 1.43093478,0 0,0.058455"
id="path36"
style="fill:#ffffff;stroke:none" />
<path
d="m 1.92692,1.1573835 0.4235985,0.2624516 0.032286,-0.058456 0.1407686,0.2063823 -0.251833,-0.029824 0.032286,-0.058455 -0.4093923,-0.2493279 -1.06932718,0 0,-0.072771 1.10161318,0"
id="path38"
style="fill:#ffffff;stroke:none" />
</svg>

After

Width:  |  Height:  |  Size: 5.9 KiB

@ -0,0 +1,216 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="66.000435"
height="44.5159"
version="1.0"
sodipodi:docname="edgelabel_swproc.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>Edge label switch router</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
id="linearGradient9312">
<stop
style="stop-color:#3c8c8c;stop-opacity:1;"
offset="0"
id="stop9314" />
<stop
style="stop-color:#ebf9f9;stop-opacity:1;"
offset="1"
id="stop9316" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9312"
id="linearGradient9318"
x1="-1.0929121"
y1="0.63145506"
x2="-4.5832458"
y2="0.070047863"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.995127,0,0,0.935706,-4.6935468e-3,1.810452e-2)" />
</defs>
<sodipodi:namedview
inkscape:window-height="940"
inkscape:window-width="1280"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="7.8958335"
inkscape:cx="30.34404"
inkscape:cy="6.6332881"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:current-layer="g4844" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.39215687;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4558"
width="64.552505"
height="41.53862"
x="1.4479325"
y="2.9772801"
ry="11.631706"
rx="32.212925"
inkscape:transform-center-x="8.4568136" />
<rect
style="opacity:1;fill:#3c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:#00ff00;stroke-width:0.015;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect9971"
width="64.499474"
height="42.154343"
x="0.0625"
y="0.18084903"
ry="11.557454"
rx="32.249737"
inkscape:transform-center-x="8.2952569" />
<g
id="g4844"
transform="matrix(15.32752,0,0,15.05026,53.53947,3.14636)">
<path
id="path4815"
d="M 0.71600616,0.5577935 L 0.71228488,0.51888027 L 0.70484194,0.47996714 L 0.69243716,0.44235119 L 0.67382996,0.40343806 L 0.64902046,0.36582202 L 0.62048936,0.32820597 L 0.58575606,0.29188711 L 0.54606071,0.25686532 L 0.50140351,0.22184339 L 0.45178431,0.18811871 L 0.39844386,0.15439394 L 0.34014136,0.12196639 L 0.27687701,0.089538736 L 0.20989111,0.061002435 L 0.13794336,0.032466134 L 0.062274256,0.0039298431 L -0.015875897,-0.0220123 L -0.098987847,-0.045360166 L -0.18458085,-0.068708033 L -0.2738953,-0.089461745 L -0.36569065,-0.10891827 L -0.45996705,-0.12707781 L -0.5567243,-0.142643 L -0.65472215,-0.15820828 L -0.7552008,-0.16988222 L -0.8581605,-0.18025905 L -0.96236065,-0.18933882 L -1.0665608,-0.19582433 L -1.1720013,-0.20101277 L -1.2786826,-0.20490409 L -1.3841231,-0.20490409 L -1.3841231,-0.20490409 L -1.4908044,-0.20490409 L -1.5974854,-0.20101277 L -1.7016856,-0.19582433 L -1.8071263,-0.18933882 L -1.9113264,-0.18025905 L -2.0130457,-0.16988222 L -2.1147647,-0.15820828 L -2.2127626,-0.142643 L -2.3095199,-0.12707781 L -2.4037963,-0.10891827 L -2.4955916,-0.089461745 L -2.5849059,-0.068708033 L -2.6704991,-0.045360166 L -2.753611,-0.0220123 L -2.8317613,0.0039298431 L -2.9074306,0.032466134 L -2.979378,0.061002435 L -3.0463639,0.089538736 L -3.1096284,0.12196639 L -3.1679307,0.15439394 L -3.2212714,0.18811871 L -3.2708903,0.22184339 L -3.3155478,0.25686532 L -3.3540024,0.29188711 L -3.3899763,0.32820597 L -3.4185072,0.36582202 L -3.443317,0.40343806 L -3.461924,0.44235119 L -3.4755695,0.47996714 L -3.4830122,0.51888027 L -3.4854932,0.5577935 L -3.4854932,0.5577935 L -3.4830122,0.59670663 L -3.4755695,0.63432269 L -3.461924,0.6732358 L -3.443317,0.70955478 L -3.4185072,0.74846789 L -3.3899763,0.78478677 L -3.3540024,0.82240282 L -3.3155478,0.85872189 L -3.2708903,0.89374367 L -3.2212714,0.9261713 L -3.1679307,0.9598959 L -3.1096284,0.9936206 L -3.0463639,1.023454 L -2.979378,1.0532875 L -2.9074306,1.083121 L -2.8317613,1.1103603 L -2.753611,1.1363024 L -2.6704991,1.1596501 L -2.5849059,1.182998 L -2.4955916,1.2037516 L -2.4037963,1.2245055 L -2.3095199,1.2413676 L -2.2127626,1.25823 L -2.1147647,1.2724981 L -2.0130457,1.2841722 L -1.9113264,1.2945491 L -1.8071263,1.3036288 L -1.7016856,1.3101143 L -1.5974854,1.3153028 L -1.4908044,1.3191941 L -1.3841231,1.3191941 L -1.3841231,1.3191941 L -1.2786826,1.3191941 L -1.1720013,1.3153028 L -1.0665608,1.3101143 L -0.96236065,1.3036288 L -0.8581605,1.2945491 L -0.7552008,1.2841722 L -0.65472215,1.2724981 L -0.5567243,1.25823 L -0.45996705,1.2413676 L -0.36569065,1.2245055 L -0.2738953,1.2037516 L -0.18458085,1.182998 L -0.098987847,1.1596501 L -0.015875897,1.1363024 L 0.062274256,1.1103603 L 0.13794336,1.083121 L 0.20989111,1.0532875 L 0.27687701,1.023454 L 0.34014136,0.9936206 L 0.39844386,0.9598959 L 0.45178431,0.9261713 L 0.50140351,0.89374367 L 0.54606071,0.85872189 L 0.58575606,0.82240282 L 0.62048936,0.78478677 L 0.64902046,0.74846789 L 0.67382996,0.70955478 L 0.69243716,0.6732358 L 0.70484194,0.63432269 L 0.71228488,0.59670663 L 0.71600616,0.5577935"
style="fill:url(#linearGradient9318);fill-opacity:1;stroke:none;stroke-width:0.0012698;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path4819"
d="M -1.33849,0.36858725 L -1.0356914,0.47713947 L -0.30208129,0.15279051 L 0.026566252,0.26003493 L -0.15068185,-0.0080759962 L -1.0098426,-0.0080759962 L -0.65657744,0.071703344 L -1.33849,0.36858725"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4821"
d="M -1.4652716,0.66547114 L -1.7680705,0.55691872 L -2.4758321,0.88257557 L -2.8290973,0.77271548 L -2.6530801,1.0695994 L -1.7680705,1.0695994 L -2.1471844,0.96235491 L -1.4652716,0.66547114"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4823"
d="M -2.7540132,0.071703344 L -2.4512142,-0.035541049 L -1.7176041,0.26003493 L -1.3889566,0.18025558 L -1.5649738,0.4483666 L -2.4253655,0.4483666 L -2.0721002,0.36858725 L -2.7540132,0.071703344"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4825"
d="M -0.025131126,0.98851204 L -0.32792995,1.0970646 L -1.0356914,0.77271548 L -1.3889566,0.88257557 L -1.2117084,0.61054094 L -0.32792995,0.61054094 L -0.70704393,0.69162816 L -0.025131126,0.98851204"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4827"
d="M -1.3126412,0.39605225 L -1.0098426,0.5032966 L -0.27746349,0.18025558 L 0.051183983,0.28880781 L -0.12606407,0.01808111 L -0.98522494,0.01808111 L -0.63072878,0.097860584 L -1.3126412,0.39605225"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4829"
d="M -1.4394233,0.69162816 L -1.7434526,0.58438371 L -2.4512142,0.90742492 L -2.8044796,0.80018047 L -2.6284624,1.0970646 L -1.7434526,1.0970646 L -2.1225667,0.98851204 L -1.4394233,0.69162816"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4831"
d="M -2.7281644,0.097860584 L -2.4253655,-0.0080759962 L -1.6917554,0.28880781 L -1.3643387,0.20641282 L -1.5403559,0.47713947 L -2.4007476,0.47713947 L -2.0462515,0.39605225 L -2.7281644,0.097860584"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4833"
d="M -0.00051329876,1.0159771 L -0.30208129,1.1245296 L -1.0098426,0.80018047 L -1.3643387,0.90742492 L -1.1870906,0.6393139 L -0.30208129,0.6393139 L -0.68119522,0.71909325 L -0.00051329876,1.0159771"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
<g
id="g2040"
transform="matrix(9.319843,0,0,8.682484,-4.674263,-30.2553)">
<path
id="path2031"
d="M 2.6307782,6.6117127 L 3.4278384,6.6117127 L 3.9162228,7.0345223 L 4.4024929,6.6117127 L 5.1551546,6.6117127 L 5.1551546,6.4253128 L 5.6879375,6.7049127 L 5.1551546,6.9867857 L 5.1551546,6.8003858 L 4.4912901,6.8003858 L 4.0473043,7.1277222 L 4.4912901,7.5005221 L 5.1551546,7.5005221 L 5.1551546,7.2686588 L 5.6879375,7.5959952 L 5.1551546,7.8778683 L 5.1551546,7.6891952 L 4.4024929,7.6891952 L 3.9162228,7.2686588 L 3.4278384,7.6891952 L 2.6307782,7.6891952 L 2.6307782,7.8778683 L 2.0979952,7.5959952 L 2.6307782,7.2686588 L 2.6307782,7.5005221 L 3.3390412,7.5005221 L 3.7830271,7.1731856 L 3.3390412,6.8003858 L 2.6307782,6.8003858 L 2.6307782,6.9867857 L 2.0979952,6.7049127 L 2.6307782,6.4253128 L 2.6307782,6.6117127"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2033"
d="M 2.6751767,6.6571761 L 3.472237,6.6571761 L 3.9585071,7.0777125 L 4.4468916,6.6571761 L 5.2016674,6.6571761 L 5.2016674,6.4707762 L 5.7323362,6.7526493 L 5.2016674,7.0345223 L 5.2016674,6.8481224 L 4.5356887,6.8481224 L 4.0917028,7.1731856 L 4.5356887,7.5482587 L 5.2016674,7.5482587 L 5.2016674,7.3141222 L 5.7323362,7.6414586 L 5.2016674,7.9233317 L 5.2016674,7.7346586 L 4.4468916,7.7346586 L 3.9585071,7.3141222 L 3.472237,7.7346586 L 2.6751767,7.7346586 L 2.6751767,7.9233317 L 2.1423937,7.6414586 L 2.6751767,7.3141222 L 2.6751767,7.5482587 L 3.3813256,7.5482587 L 3.8253114,7.2209222 L 3.3813256,6.8481224 L 2.6751767,6.8481224 L 2.6751767,7.0345223 L 2.1423937,6.7526493 L 2.6751767,6.4707762 L 2.6751767,6.6571761"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

@ -0,0 +1,228 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="71.851372"
height="32.285366"
version="1.0"
sodipodi:docname="sw_standard.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>Switch</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
id="linearGradient6587">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#edeff3;stop-opacity:1;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119123,0,0,1.09281,-7.833718e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119124,0,0,1.09281,-7.8336875e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient11856"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.191597,0,0,15.33747,-2.6428869,0.1648577)"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="15.791667"
inkscape:cx="33.948451"
inkscape:cy="19.90866"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="svg1998" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 2.1663193,16.589602 L 2.1663193,32.285367 L 54.763443,32.285367 L 54.763443,16.589602 L 2.1663193,16.589602"
id="path13703" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 54.724715,18.919483 L 71.109211,3.1102265 L 71.109211,16.523256 L 54.724715,32.33251 L 54.724715,18.919483"
id="path14592" />
<path
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001"
d="M 54.781867,16.528044 L 71.793065,0.13423853 L 71.793065,14.043216 L 54.781867,30.437021 L 54.781867,16.528044"
id="path2009" />
<path
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.00110589"
d="M 0.21478248,16.474061 L 0.21478248,30.310372 L 55.069651,30.310372 L 55.069651,16.474061 L 0.21478248,16.474061"
id="path2007" />
<path
style="fill:url(#linearGradient11856);fill-opacity:1;stroke:none;stroke-width:0.01505287;stroke-opacity:1"
d="M 55.06494,16.770099 L 72.155489,0.17496232 L 16.934026,0.17496232 L -0.11094903,16.770099 L 55.06494,16.770099"
id="path2013" />
<path
style="fill:#000000;stroke:none;stroke-width:0.001"
d="M 34.445201,8.5762092 L 32.460781,10.520528 L 46.35171,10.520528 L 44.382325,13.007447 L 55.792729,10.038216 L 49.839474,7.5814414 L 48.336128,8.5762092 L 34.445201,8.5762092"
id="path2017" />
<path
style="fill:#000000;stroke:none;stroke-width:0.001"
d="M 41.390664,2.1403638 L 39.406245,4.1148268 L 53.312208,4.1148268 L 50.831684,6.5866738 L 62.738193,3.1502034 L 56.288834,0.64821244 L 55.326692,2.1403638 L 41.390664,2.1403638"
id="path2019" />
<path
style="fill:#000000;stroke:none;stroke-width:0.001"
d="M 29.469121,14.002214 L 31.49864,12.012679 L 17.066506,12.012679 L 19.562064,9.5408322 L 8.1065578,12.494991 L 14.08988,14.98191 L 15.097122,14.002214 L 29.469121,14.002214"
id="path2021" />
<path
style="fill:#000000;stroke:none;stroke-width:0.001"
d="M 35.948548,7.0539132 L 37.932966,5.1246667 L 24.027005,5.1246667 L 26.52256,2.6377476 L 14.585984,6.08929 L 21.035343,8.5762092 L 22.027552,7.0539132 L 35.948548,7.0539132"
id="path2023" />
<path
style="fill:#ffffff;stroke:none;stroke-width:0.001"
d="M 34.941305,9.028376 L 32.956886,11.017911 L 46.862849,11.017911 L 44.87843,13.489758 L 56.288834,10.520528 L 50.320547,8.0637529 L 48.847268,9.028376 L 34.941305,9.028376"
id="path2025" />
<path
style="fill:#ffffff;stroke:none;stroke-width:0.001"
d="M 41.901802,2.6377476 L 39.90235,4.5971384 L 53.808312,4.5971384 L 51.327789,7.0539132 L 63.249333,3.6023707 L 56.799974,1.1455961 L 55.792729,2.6377476 L 41.901802,2.6377476"
id="path2027" />
<path
style="fill:#ffffff;stroke:none;stroke-width:0.001"
d="M 29.965225,14.484526 L 31.949645,12.494991 L 17.577645,12.494991 L 20.028101,10.038216 L 8.6176958,13.007447 L 14.585984,15.479293 L 15.563159,14.484526 L 29.965225,14.484526"
id="path2029" />
<path
style="fill:#ffffff;stroke:none;stroke-width:0.001"
d="M 36.414585,7.5814414 L 38.429071,5.5919059 L 24.508076,5.5919059 L 27.003632,3.1502034 L 15.097122,6.5866738 L 21.546481,9.028376 L 22.508625,7.5814414 L 36.414585,7.5814414"
id="path2031" />
</svg>

After

Width:  |  Height:  |  Size: 8.8 KiB

@ -0,0 +1,187 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="66.000435"
height="44.5159"
version="1.0"
sodipodi:docname="firewall.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>PIX firewall</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
id="linearGradient9312">
<stop
style="stop-color:#3c8c8c;stop-opacity:1;"
offset="0"
id="stop9314" />
<stop
style="stop-color:#ffffff;stop-opacity:0.94117647;"
offset="1"
id="stop9316" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9312"
id="linearGradient2216"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.252829,0,0,14.082619,53.467529,3.4188377)"
x1="-1.0929121"
y1="0.63145506"
x2="-4.5832458"
y2="0.070047863" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="7.8958335"
inkscape:cx="27.334225"
inkscape:cy="24.784192"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="g4160" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.39215687;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4558"
width="64.552505"
height="41.53862"
x="1.4479325"
y="2.9772801"
ry="11.631706"
rx="32.212925"
inkscape:transform-center-x="8.4568136" />
<rect
style="opacity:1;fill:#3c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.015;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect9971"
width="64.499474"
height="42.154343"
x="0.0625"
y="0.18084908"
ry="11.557454"
rx="32.249737"
inkscape:transform-center-x="8.2952569" />
<g
id="g4160">
<path
id="path4815"
d="M 64.514069,11.541297 L 64.457031,10.955643 L 64.342949,10.36999 L 64.152814,9.8038604 L 63.867612,9.2182077 L 63.487345,8.6520765 L 63.050034,8.0859452 L 62.517657,7.5393369 L 61.909226,7.0122499 L 61.224742,6.4851607 L 60.464203,5.9775955 L 59.646626,5.4700289 L 58.752993,4.9819859 L 57.783307,4.4939413 L 56.75658,4.0644625 L 55.6538,3.6349838 L 54.493981,3.2055052 L 53.296132,2.8150692 L 52.022232,2.4636777 L 50.710303,2.1122862 L 49.341334,1.7999375 L 47.934339,1.5071117 L 46.489316,1.2338059 L 45.006267,0.99954576 L 43.504204,0.76528425 L 41.964114,0.58958842 L 40.385997,0.43341443 L 38.788867,0.29676153 L 37.191738,0.19915292 L 35.575597,0.12106555 L 33.940437,0.06250017 L 32.324296,0.06250017 L 32.324296,0.06250017 L 30.689136,0.06250017 L 29.053981,0.12106555 L 27.45685,0.19915292 L 25.840705,0.29676153 L 24.243576,0.43341443 L 22.684472,0.58958842 L 21.125372,0.76528425 L 19.623307,0.99954576 L 18.140258,1.2338059 L 16.695234,1.5071117 L 15.28824,1.7999375 L 13.919273,2.1122862 L 12.607342,2.4636777 L 11.333442,2.8150692 L 10.135592,3.2055052 L 8.9757693,3.6349838 L 7.8729941,4.0644625 L 6.8462664,4.4939413 L 5.8765785,4.9819859 L 4.9829488,5.4700289 L 4.1653682,5.9775955 L 3.4048335,6.4851607 L 2.7203448,7.0122499 L 2.1309311,7.5393369 L 1.5795405,8.0859452 L 1.1422325,8.6520765 L 0.76195982,9.2182077 L 0.47676065,9.8038604 L 0.26760898,10.36999 L 0.15353084,10.955643 L 0.11550327,11.541297 L 0.11550327,11.541297 L 0.15353084,12.12695 L 0.26760898,12.693081 L 0.47676065,13.278734 L 0.76195982,13.825344 L 1.1422325,14.410996 L 1.5795405,14.957605 L 2.1309311,15.523736 L 2.7203448,16.070348 L 3.4048335,16.597435 L 4.1653682,17.085479 L 4.9829488,17.593043 L 5.8765785,18.100608 L 6.8462664,18.549609 L 7.8729941,18.998611 L 8.9757693,19.447613 L 10.135592,19.857571 L 11.333442,20.248007 L 12.607342,20.599396 L 13.919273,20.950787 L 15.28824,21.263135 L 16.695234,21.575486 L 18.140258,21.829265 L 19.623307,22.083049 L 21.125372,22.297787 L 22.684472,22.473485 L 24.243576,22.629661 L 25.840705,22.766312 L 27.45685,22.863921 L 29.053981,22.942009 L 30.689136,23.000574 L 32.324296,23.000574 L 32.324296,23.000574 L 33.940437,23.000574 L 35.575597,22.942009 L 37.191738,22.863921 L 38.788867,22.766312 L 40.385997,22.629661 L 41.964114,22.473485 L 43.504204,22.297787 L 45.006267,22.083049 L 46.489316,21.829265 L 47.934339,21.575486 L 49.341334,21.263135 L 50.710303,20.950787 L 52.022232,20.599396 L 53.296132,20.248007 L 54.493981,19.857571 L 55.6538,19.447613 L 56.75658,18.998611 L 57.783307,18.549609 L 58.752993,18.100608 L 59.646626,17.593043 L 60.464203,17.085479 L 61.224742,16.597435 L 61.909226,16.070348 L 62.517657,15.523736 L 63.050034,14.957605 L 63.487345,14.410996 L 63.867612,13.825344 L 64.152814,13.278734 L 64.342949,12.693081 L 64.457031,12.12695 L 64.514069,11.541297"
style="fill:url(#linearGradient2216);fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 20.944567,2.9798116 L 20.944567,19.692911 L 37.445412,11.129174 L 20.944567,2.9798116"
id="path2363"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 38.706882,3.4139175 L 38.706882,18.055146 L 43.366183,18.055146 L 43.366183,3.4139175 L 38.706882,3.4139175"
id="path2365"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 21.371839,3.4139175 L 21.371839,20.067821 L 37.872683,11.543548 L 21.371839,3.4139175"
id="path2367"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 39.113807,3.80856 L 39.113807,18.449788 L 43.773109,18.449788 L 43.773109,3.80856 L 39.113807,3.80856"
id="path2369"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.2 KiB

@ -0,0 +1,263 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="51.358818"
height="47.630692"
version="1.0"
sodipodi:docname="sw_frame_relay.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
<dc:title>Frame Relay switch</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
inkscape:collect="always"
id="linearGradient10123">
<stop
style="stop-color:#e4405c;stop-opacity:1;"
offset="0"
id="stop10125" />
<stop
style="stop-color:#e4405c;stop-opacity:0;"
offset="1"
id="stop10127" />
</linearGradient>
<linearGradient
id="linearGradient8331">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop8333" />
<stop
style="stop-color:#dde3ef;stop-opacity:1;"
offset="1"
id="stop8335" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6587">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942481e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942482e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10123"
id="linearGradient10129"
x1="1.3990936"
y1="1.4711363"
x2="0.49966058"
y2="0.56367606"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117962,0,0,1.035008,-4.0973e-2,-6.788682e-3)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8331"
id="linearGradient6875"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(24.897735,0,0,25.405463,-9.0988193,-4.8632254)"
x1="2.1178279"
y1="0.30649999"
x2="-0.4954865"
y2="0.30649999" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="15.791667"
inkscape:cx="23.755426"
inkscape:cy="22.715931"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="svg1998" />
<path
id="path11907"
d="M 1.8402723,44.565612 L 1.8402723,47.615693 L 44.293781,47.615693 L 44.293781,44.565612 L 1.8402723,44.565612"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001" />
<path
id="path11020"
d="M 44.370594,6.1851672 L 51.194316,1.0980117 L 51.358819,41.344844 L 44.266438,47.63069 L 44.370594,6.1851672"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
sodipodi:nodetypes="ccccc" />
<path
id="path2037"
d="M 0.062500355,5.1558922 L 0.062500355,46.326915 L 44.407694,46.326915 L 44.407694,5.1558922 L 0.062500355,5.1558922"
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2041"
d="M -0.38461268,5.6292351 L 5.2920708,0.21786924 L 50.13289,0.21786924 L 44.406412,5.6292351 L -0.38461268,5.6292351"
style="fill:url(#linearGradient6875);fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2045"
d="M 44.273363,5.1335036 L 49.931392,0.17309204 L 49.931392,41.393412 L 44.273363,46.353824 L 44.273363,5.1335036"
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
d="M 6.9008645,9.9249678 L 6.9008645,15.823002 L 8.6688089,14.104511 L 13.26115,18.262836 L 15.352498,16.183674 L 11.148242,11.664677 L 12.894625,9.9249678 L 6.9008645,9.9249678"
id="path2308"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 38.572933,41.21849 L 38.572933,35.320457 L 36.80499,37.060165 L 32.255767,32.541168 L 29.776335,34.959786 L 34.347116,39.478782 L 32.600733,41.21849 L 38.572933,41.21849"
id="path2310"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 20.63477,25.561122 L 23.092643,23.142504 L 17.465406,17.923381 L 14.985974,20.341999 L 20.63477,25.561122"
id="path2312"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 27.663426,32.880623 L 30.121299,30.440789 L 24.860587,25.221667 L 22.402714,27.6615 L 27.663426,32.880623"
id="path2314"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 6.57746,10.603879 L 6.57746,16.183674 L 8.3022831,14.443966 L 12.894625,18.941746 L 15.352498,16.544345 L 10.781716,12.364803 L 12.54966,10.603879 L 6.57746,10.603879"
id="path2316"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 38.572933,41.579161 L 38.572933,36.020583 L 36.80499,37.739075 L 32.255767,33.220078 L 29.776335,35.659912 L 34.347116,39.839454 L 32.600733,41.579161 L 38.572933,41.579161"
id="path2318"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.289805,26.261248 L 22.747678,23.821414 L 17.465406,18.623508 L 14.985974,21.063342 L 20.289805,26.261248"
id="path2320"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 27.663426,33.559533 L 30.121299,31.1197 L 24.860587,25.921793 L 22.402714,28.000956 L 27.663426,33.559533"
id="path2322"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</svg>

After

Width:  |  Height:  |  Size: 9.6 KiB

@ -0,0 +1,309 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45.1"
width="65.937935"
height="55.615818"
version="1.0"
sodipodi:docname="gateway.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata2003">
<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>Router</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
inkscape:collect="always"
id="linearGradient10123">
<stop
style="stop-color:#e4405c;stop-opacity:1;"
offset="0"
id="stop10125" />
<stop
style="stop-color:#e4405c;stop-opacity:0;"
offset="1"
id="stop10127" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10123"
id="linearGradient9177"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(19.859681,0,0,16.579703,8.0113379,16.798412)"
x1="1.3990936"
y1="1.4711363"
x2="0.49966058"
y2="0.56367606" />
<linearGradient
id="linearGradient9312">
<stop
style="stop-color:#3c8c8c;stop-opacity:1;"
offset="0"
id="stop9314" />
<stop
style="stop-color:#ffffff;stop-opacity:0.94117647;"
offset="1"
id="stop9316" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9312"
id="linearGradient2216"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.252829,0,0,14.082619,53.467529,3.4188377)"
x1="-1.0929121"
y1="0.63145506"
x2="-4.5832458"
y2="0.070047863" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="11.166395"
inkscape:cx="27.334225"
inkscape:cy="28.112601"
inkscape:window-x="124"
inkscape:window-y="71"
inkscape:current-layer="svg1998" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.39215686;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4558"
width="64.553001"
height="54.450546"
x="1.3854325"
y="1.1652724"
ry="15.247324"
rx="32.213169"
inkscape:transform-center-x="8.4568758" />
<rect
style="opacity:1;fill:#3c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.015;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect9971"
width="64.499474"
height="52.040936"
x="0"
y="0.91024613"
ry="11.802391"
rx="32.249737"
inkscape:transform-center-x="8.2952569" />
<g
id="g3579"
transform="matrix(1.0000067,0,0,0.9900067,40.759311,2.327137)">
<path
id="path3581"
d="M 23.677527,9.7502028 L 23.620489,9.1645488 L 23.506407,8.5788958 L 23.316272,8.0127658 L 23.03107,7.4271138 L 22.650803,6.8609828 L 22.213492,6.2948508 L 21.681115,5.7482428 L 21.072684,5.2211558 L 20.3882,4.6940668 L 19.627661,4.1865018 L 18.810084,3.6789348 L 17.916451,3.1908918 L 16.946765,2.7028468 L 15.920038,2.2733688 L 14.817258,1.8438898 L 13.657439,1.4144108 L 12.45959,1.0239748 L 11.18569,0.6725838 L 9.8737612,0.3211921 L 8.5047922,0.0088434012 L 7.0977972,-0.2839824 L 5.6527742,-0.5572882 L 4.1697252,-0.7915484 L 2.6676622,-1.0258099 L 1.1275722,-1.2015057 L -0.45054482,-1.3576797 L -2.0476748,-1.4943326 L -3.6448038,-1.5919412 L -5.2609448,-1.6700286 L -6.8961048,-1.7285939 L -8.5122458,-1.7285939 L -8.5122458,-1.7285939 L -10.147406,-1.7285939 L -11.78256,-1.6700286 L -13.379691,-1.5919412 L -14.995836,-1.4943326 L -16.592965,-1.3576797 L -18.152069,-1.2015057 L -19.711169,-1.0258099 L -21.213234,-0.7915484 L -22.696283,-0.5572882 L -24.141307,-0.2839824 L -25.548301,0.0088434012 L -26.917268,0.3211921 L -28.229199,0.6725838 L -29.503099,1.0239748 L -30.700949,1.4144108 L -31.860772,1.8438898 L -32.963548,2.2733688 L -33.990275,2.7028468 L -34.959963,3.1908918 L -35.853593,3.6789348 L -36.671173,4.1865018 L -37.431708,4.6940668 L -38.116197,5.2211558 L -38.705611,5.7482428 L -39.257001,6.2948508 L -39.694309,6.8609828 L -40.074582,7.4271138 L -40.359781,8.0127658 L -40.568933,8.5788958 L -40.683011,9.1645488 L -40.721038,9.7502028 L -40.721038,9.7502028 L -40.683011,10.335856 L -40.568933,10.901987 L -40.359781,11.48764 L -40.074582,12.03425 L -39.694309,12.619902 L -39.257001,13.166511 L -38.705611,13.732642 L -38.116197,14.279254 L -37.431708,14.806341 L -36.671173,15.294385 L -35.853593,15.801949 L -34.959963,16.309514 L -33.990275,16.758515 L -32.963548,17.207517 L -31.860772,17.656519 L -30.700949,18.066477 L -29.503099,18.456913 L -28.229199,18.808302 L -26.917268,19.159693 L -25.548301,19.472041 L -24.141307,19.784392 L -22.696283,20.038171 L -21.213234,20.291955 L -19.711169,20.506693 L -18.152069,20.682391 L -16.592965,20.838567 L -14.995836,20.975218 L -13.379691,21.072827 L -11.78256,21.150915 L -10.147406,21.20948 L -8.5122458,21.20948 L -8.5122458,21.20948 L -6.8961048,21.20948 L -5.2609448,21.150915 L -3.6448038,21.072827 L -2.0476748,20.975218 L -0.45054482,20.838567 L 1.1275722,20.682391 L 2.6676622,20.506693 L 4.1697252,20.291955 L 5.6527742,20.038171 L 7.0977972,19.784392 L 8.5047922,19.472041 L 9.8737612,19.159693 L 11.18569,18.808302 L 12.45959,18.456913 L 13.657439,18.066477 L 14.817258,17.656519 L 15.920038,17.207517 L 16.946765,16.758515 L 17.916451,16.309514 L 18.810084,15.801949 L 19.627661,15.294385 L 20.3882,14.806341 L 21.072684,14.279254 L 21.681115,13.732642 L 22.213492,13.166511 L 22.650803,12.619902 L 23.03107,12.03425 L 23.316272,11.48764 L 23.506407,10.901987 L 23.620489,10.335856 L 23.677527,9.7502028"
style="fill:#3c8c8c;fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g4160"
transform="matrix(1.0000067,0,0,0.9900067,-7.7865845e-2,0.5539581)">
<path
id="path4815"
d="M 64.514069,11.541297 L 64.457031,10.955643 L 64.342949,10.36999 L 64.152814,9.8038604 L 63.867612,9.2182077 L 63.487345,8.6520765 L 63.050034,8.0859452 L 62.517657,7.5393369 L 61.909226,7.0122499 L 61.224742,6.4851607 L 60.464203,5.9775955 L 59.646626,5.4700289 L 58.752993,4.9819859 L 57.783307,4.4939413 L 56.75658,4.0644625 L 55.6538,3.6349838 L 54.493981,3.2055052 L 53.296132,2.8150692 L 52.022232,2.4636777 L 50.710303,2.1122862 L 49.341334,1.7999375 L 47.934339,1.5071117 L 46.489316,1.2338059 L 45.006267,0.99954576 L 43.504204,0.76528425 L 41.964114,0.58958842 L 40.385997,0.43341443 L 38.788867,0.29676153 L 37.191738,0.19915292 L 35.575597,0.12106555 L 33.940437,0.06250017 L 32.324296,0.06250017 L 32.324296,0.06250017 L 30.689136,0.06250017 L 29.053981,0.12106555 L 27.45685,0.19915292 L 25.840705,0.29676153 L 24.243576,0.43341443 L 22.684472,0.58958842 L 21.125372,0.76528425 L 19.623307,0.99954576 L 18.140258,1.2338059 L 16.695234,1.5071117 L 15.28824,1.7999375 L 13.919273,2.1122862 L 12.607342,2.4636777 L 11.333442,2.8150692 L 10.135592,3.2055052 L 8.9757693,3.6349838 L 7.8729941,4.0644625 L 6.8462664,4.4939413 L 5.8765785,4.9819859 L 4.9829488,5.4700289 L 4.1653682,5.9775955 L 3.4048335,6.4851607 L 2.7203448,7.0122499 L 2.1309311,7.5393369 L 1.5795405,8.0859452 L 1.1422325,8.6520765 L 0.76195982,9.2182077 L 0.47676065,9.8038604 L 0.26760898,10.36999 L 0.15353084,10.955643 L 0.11550327,11.541297 L 0.11550327,11.541297 L 0.15353084,12.12695 L 0.26760898,12.693081 L 0.47676065,13.278734 L 0.76195982,13.825344 L 1.1422325,14.410996 L 1.5795405,14.957605 L 2.1309311,15.523736 L 2.7203448,16.070348 L 3.4048335,16.597435 L 4.1653682,17.085479 L 4.9829488,17.593043 L 5.8765785,18.100608 L 6.8462664,18.549609 L 7.8729941,18.998611 L 8.9757693,19.447613 L 10.135592,19.857571 L 11.333442,20.248007 L 12.607342,20.599396 L 13.919273,20.950787 L 15.28824,21.263135 L 16.695234,21.575486 L 18.140258,21.829265 L 19.623307,22.083049 L 21.125372,22.297787 L 22.684472,22.473485 L 24.243576,22.629661 L 25.840705,22.766312 L 27.45685,22.863921 L 29.053981,22.942009 L 30.689136,23.000574 L 32.324296,23.000574 L 32.324296,23.000574 L 33.940437,23.000574 L 35.575597,22.942009 L 37.191738,22.863921 L 38.788867,22.766312 L 40.385997,22.629661 L 41.964114,22.473485 L 43.504204,22.297787 L 45.006267,22.083049 L 46.489316,21.829265 L 47.934339,21.575486 L 49.341334,21.263135 L 50.710303,20.950787 L 52.022232,20.599396 L 53.296132,20.248007 L 54.493981,19.857571 L 55.6538,19.447613 L 56.75658,18.998611 L 57.783307,18.549609 L 58.752993,18.100608 L 59.646626,17.593043 L 60.464203,17.085479 L 61.224742,16.597435 L 61.909226,16.070348 L 62.517657,15.523736 L 63.050034,14.957605 L 63.487345,14.410996 L 63.867612,13.825344 L 64.152814,13.278734 L 64.342949,12.693081 L 64.457031,12.12695 L 64.514069,11.541297"
style="fill:url(#linearGradient2216);fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path4819"
d="M 33.023738,8.6936939 L 37.664889,10.327433 L 48.909313,5.4458969 L 53.946665,7.0599533 L 51.229891,3.0248142 L 38.061087,3.0248142 L 43.475766,4.225514 L 33.023738,8.6936939"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4821"
d="M 31.08049,13.161874 L 26.439334,11.528132 L 15.591104,16.429352 L 10.176425,14.775929 L 12.874332,19.244109 L 26.439334,19.244109 L 20.628458,17.630052 L 31.08049,13.161874"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4823"
d="M 11.327278,4.225514 L 15.968435,2.611458 L 27.212859,7.0599533 L 32.25021,5.8592533 L 29.552303,9.8943939 L 16.364632,9.8943939 L 21.779313,8.6936939 L 11.327278,4.225514"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4825"
d="M 53.154272,18.023723 L 48.513117,19.657467 L 37.664889,14.775929 L 32.25021,16.429352 L 34.966985,12.33516 L 48.513117,12.33516 L 42.70224,13.555544 L 53.154272,18.023723"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4827"
d="M 33.419936,9.1070493 L 38.061087,10.721105 L 49.286643,5.8592533 L 54.323994,7.4929926 L 51.60722,3.4184854 L 38.438415,3.4184854 L 43.871962,4.6191872 L 33.419936,9.1070493"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4829"
d="M 31.476681,13.555544 L 26.816665,11.941487 L 15.968435,16.803341 L 10.553753,15.189284 L 13.25166,19.657467 L 26.816665,19.657467 L 21.005786,18.023723 L 31.476681,13.555544"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4831"
d="M 11.723476,4.6191872 L 16.364632,3.0248142 L 27.609055,7.4929926 L 32.627541,6.2529266 L 29.929634,10.327433 L 16.741963,10.327433 L 22.175509,9.1070493 L 11.723476,4.6191872"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4833"
d="M 53.531602,18.43708 L 48.909313,20.070823 L 38.061087,15.189284 L 32.627541,16.803341 L 35.344315,12.7682 L 48.909313,12.7682 L 43.098437,13.9689 L 53.531602,18.43708"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
<path
id="path2049"
d="M 28.943442,36.959341 L 19.490234,36.959341 L 19.490234,35.865079 L 16.59072,38.0536 L 19.490234,40.490818 L 19.490234,39.413136 L 28.943442,39.413136 L 28.943442,36.959341"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2051"
d="M 30.869831,35.334527 L 24.05796,29.631107 L 25.031085,28.818701 L 21.138587,28.818701 L 21.138587,32.068324 L 22.091852,31.255919 L 28.943442,36.959341 L 30.869831,35.334527"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2053"
d="M 33.789205,35.334527 L 33.789205,27.17731 L 35.080083,27.17731 L 32.498325,25.005368 L 29.578952,27.17731 L 30.869831,27.17731 L 30.869831,35.334527 L 33.789205,35.334527"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2055"
d="M 35.755312,36.959341 L 42.587042,31.255919 L 43.540307,32.068324 L 43.540307,28.818701 L 39.667669,28.818701 L 40.620934,29.631107 L 33.789205,35.334527 L 35.755312,36.959341"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2057"
d="M 35.755312,39.413136 L 45.486557,39.413136 L 45.486557,40.490818 L 48.108033,38.0536 L 45.486557,35.865079 L 45.486557,36.959341 L 35.755312,36.959341 L 35.755312,39.413136"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2059"
d="M 33.789205,41.037947 L 40.620934,46.741366 L 39.667669,47.570353 L 43.540307,47.305077 L 43.540307,44.320729 L 42.587042,45.133135 L 35.755312,39.413136 L 33.789205,41.037947"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2061"
d="M 30.869831,41.037947 L 30.869831,49.211745 L 29.578952,49.211745 L 32.498325,51.367106 L 35.080083,49.211745 L 33.789205,49.211745 L 33.789205,41.037947 L 30.869831,41.037947"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2063"
d="M 28.943442,39.413136 L 22.091852,45.133135 L 21.138587,44.320729 L 21.138587,47.570353 L 25.031085,47.570353 L 24.05796,46.741366 L 30.869831,41.037947 L 28.943442,39.413136"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2065"
d="M 29.241337,37.241194 L 19.827848,37.241194 L 19.827848,36.146935 L 16.908475,38.318876 L 19.827848,40.772673 L 19.827848,39.694992 L 29.241337,39.694992 L 29.241337,37.241194"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2067"
d="M 31.207444,35.616383 L 24.375715,29.896383 L 25.368699,29.083976 L 21.456342,29.083976 L 21.456342,32.35018 L 22.409607,31.521194 L 29.241337,37.241194 L 31.207444,35.616383"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2069"
d="M 34.126818,35.616383 L 34.126818,27.442585 L 35.417699,27.442585 L 32.816079,25.270643 L 29.896705,27.442585 L 31.207444,27.442585 L 31.207444,35.616383 L 34.126818,35.616383"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2071"
d="M 36.092927,37.241194 L 42.904797,31.521194 L 43.877921,32.35018 L 43.877921,29.083976 L 39.965564,29.083976 L 40.93869,29.896383 L 34.126818,35.616383 L 36.092927,37.241194"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2073"
d="M 36.092927,39.694992 L 45.804311,39.694992 L 45.804311,40.772673 L 48.425789,38.318876 L 45.804311,36.146935 L 45.804311,37.241194 L 36.092927,37.241194 L 36.092927,39.694992"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2075"
d="M 34.126818,41.319804 L 40.93869,47.023223 L 39.965564,47.835628 L 43.877921,47.570353 L 43.877921,44.569425 L 42.904797,45.381831 L 36.092927,39.694992 L 34.126818,41.319804"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2077"
d="M 31.207444,41.319804 L 31.207444,49.460439 L 29.896705,49.460439 L 32.816079,51.648961 L 35.417699,49.460439 L 34.126818,49.460439 L 34.126818,41.319804 L 31.207444,41.319804"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2079"
d="M 29.241337,39.694992 L 22.409607,45.381831 L 21.456342,44.569425 L 21.456342,47.835628 L 25.368699,47.835628 L 24.375715,47.023223 L 31.207444,41.319804 L 29.241337,39.694992"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2081"
d="M 37.701562,38.451512 L 37.681701,38.235977 L 37.661842,37.987282 L 37.622121,37.771746 L 37.582403,37.556209 L 37.522824,37.324094 L 37.443385,37.108556 L 37.344088,36.89302 L 37.264648,36.677484 L 37.145489,36.478527 L 37.026332,36.279571 L 36.887313,36.080614 L 36.728436,35.881657 L 36.56956,35.699281 L 36.390823,35.533484 L 36.212085,35.351106 L 36.033348,35.201891 L 35.814891,35.052673 L 35.616295,34.903455 L 35.397838,34.770819 L 35.179381,34.65476 L 34.921206,34.522121 L 34.702749,34.422644 L 34.444573,34.339745 L 34.186396,34.256846 L 33.948082,34.173949 L 33.670045,34.124209 L 33.431731,34.057891 L 33.133834,34.024731 L 32.875657,33.991571 L 32.597624,33.97499 L 32.339447,33.97499 L 32.339447,33.97499 L 32.061412,33.97499 L 31.803236,33.991571 L 31.5252,34.024731 L 31.267024,34.057891 L 30.988988,34.124209 L 30.730812,34.173949 L 30.472636,34.256846 L 30.214461,34.339745 L 29.976146,34.422644 L 29.757688,34.522121 L 29.499513,34.65476 L 29.261197,34.770819 L 29.062599,34.903455 L 28.844144,35.052673 L 28.645546,35.201891 L 28.46681,35.351106 L 28.268213,35.533484 L 28.109336,35.699281 L 27.950458,35.881657 L 27.791581,36.080614 L 27.652562,36.279571 L 27.533405,36.478527 L 27.414245,36.677484 L 27.314948,36.89302 L 27.21565,37.108556 L 27.156071,37.324094 L 27.096491,37.556209 L 27.036912,37.771746 L 26.997193,37.987282 L 26.997193,38.235977 L 26.977333,38.451512 L 26.977333,38.451512 L 26.997193,38.667049 L 26.997193,38.899166 L 27.036912,39.131282 L 27.096491,39.363398 L 27.156071,39.578934 L 27.21565,39.79447 L 27.314948,40.010006 L 27.414245,40.225542 L 27.533405,40.424498 L 27.652562,40.623454 L 27.791581,40.822411 L 27.950458,41.021368 L 28.109336,41.203745 L 28.268213,41.369542 L 28.46681,41.535339 L 28.645546,41.701137 L 28.844144,41.850354 L 29.062599,41.999571 L 29.261197,42.132209 L 29.499513,42.248267 L 29.757688,42.364324 L 29.976146,42.480382 L 30.214461,42.579861 L 30.472636,42.66276 L 30.730812,42.712498 L 30.988988,42.778817 L 31.267024,42.845137 L 31.5252,42.861715 L 31.803236,42.911455 L 32.061412,42.928035 L 32.339447,42.928035 L 32.339447,42.928035 L 32.597624,42.928035 L 32.875657,42.911455 L 33.133834,42.861715 L 33.431731,42.845137 L 33.670045,42.778817 L 33.948082,42.712498 L 34.186396,42.66276 L 34.444573,42.579861 L 34.702749,42.480382 L 34.921206,42.364324 L 35.179381,42.248267 L 35.397838,42.132209 L 35.616295,41.999571 L 35.814891,41.850354 L 36.033348,41.701137 L 36.212085,41.535339 L 36.390823,41.369542 L 36.56956,41.203745 L 36.728436,41.021368 L 36.887313,40.822411 L 37.026332,40.623454 L 37.145489,40.424498 L 37.264648,40.225542 L 37.344088,40.010006 L 37.443385,39.79447 L 37.522824,39.578934 L 37.582403,39.363398 L 37.622121,39.131282 L 37.661842,38.899166 L 37.681701,38.667049 L 37.701562,38.451512"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2083"
d="M 38.337071,38.998644 L 38.31721,38.783107 L 38.29735,38.550991 L 38.257632,38.318876 L 38.237774,38.086759 L 38.158333,37.871223 L 38.078896,37.655687 L 37.999456,37.440151 L 37.900158,37.241194 L 37.780998,37.025657 L 37.661842,36.826701 L 37.522824,36.627746 L 37.383806,36.428789 L 37.205068,36.246412 L 37.026332,36.080614 L 36.867455,35.914817 L 36.668858,35.749021 L 36.450401,35.599803 L 36.251806,35.450585 L 36.033348,35.317948 L 35.814891,35.201891 L 35.576576,35.085832 L 35.338258,34.969775 L 35.080083,34.870296 L 34.841767,34.787398 L 34.583592,34.721078 L 34.325416,34.67134 L 34.067238,34.605021 L 33.789205,34.571861 L 33.531028,34.538701 L 33.252992,34.522121 L 32.974957,34.522121 L 32.974957,34.522121 L 32.696921,34.522121 L 32.438746,34.538701 L 32.18057,34.571861 L 31.902534,34.605021 L 31.644359,34.67134 L 31.386182,34.721078 L 31.108147,34.787398 L 30.869831,34.870296 L 30.631514,34.969775 L 30.373338,35.085832 L 30.154882,35.201891 L 29.916566,35.317948 L 29.698109,35.450585 L 29.479652,35.599803 L 29.281055,35.749021 L 29.10232,35.914817 L 28.903721,36.080614 L 28.744845,36.246412 L 28.585968,36.428789 L 28.42709,36.627746 L 28.288072,36.826701 L 28.168916,37.025657 L 28.049756,37.241194 L 27.950458,37.440151 L 27.871019,37.655687 L 27.791581,37.871223 L 27.732001,38.086759 L 27.692283,38.318876 L 27.652562,38.550991 L 27.632703,38.783107 L 27.632703,38.998644 L 27.632703,38.998644 L 27.632703,39.23076 L 27.652562,39.462875 L 27.692283,39.661832 L 27.732001,39.893949 L 27.791581,40.126065 L 27.871019,40.341601 L 27.950458,40.557137 L 28.049756,40.772673 L 28.168916,40.971629 L 28.288072,41.170585 L 28.42709,41.369542 L 28.585968,41.551919 L 28.744845,41.750875 L 28.903721,41.916673 L 29.10232,42.08247 L 29.281055,42.248267 L 29.479652,42.397484 L 29.698109,42.530121 L 29.916566,42.67934 L 30.154882,42.795397 L 30.373338,42.911455 L 30.631514,43.027514 L 30.869831,43.110413 L 31.108147,43.193309 L 31.386182,43.276209 L 31.644359,43.342529 L 31.902534,43.392267 L 32.18057,43.425426 L 32.438746,43.458586 L 32.696921,43.475165 L 32.974957,43.475165 L 32.974957,43.475165 L 33.252992,43.475165 L 33.531028,43.458586 L 33.789205,43.425426 L 34.067238,43.392267 L 34.325416,43.342529 L 34.583592,43.276209 L 34.841767,43.193309 L 35.080083,43.110413 L 35.338258,43.027514 L 35.576576,42.911455 L 35.814891,42.795397 L 36.033348,42.67934 L 36.251806,42.530121 L 36.450401,42.397484 L 36.668858,42.248267 L 36.867455,42.08247 L 37.026332,41.916673 L 37.205068,41.750875 L 37.383806,41.551919 L 37.522824,41.369542 L 37.661842,41.170585 L 37.780998,40.971629 L 37.900158,40.772673 L 37.999456,40.557137 L 38.078896,40.341601 L 38.158333,40.126065 L 38.237774,39.893949 L 38.257632,39.661832 L 38.29735,39.462875 L 38.31721,39.23076 L 38.337071,38.998644"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2085"
d="M 37.999456,38.733368 L 37.979595,38.501252 L 37.979595,38.269136 L 37.939876,38.0536 L 37.880298,37.821484 L 37.82072,37.605948 L 37.761141,37.390412 L 37.661842,37.174875 L 37.562542,36.959341 L 37.463244,36.760383 L 37.344088,36.561426 L 37.18521,36.36247 L 37.026332,36.163513 L 36.887313,35.981137 L 36.708577,35.81534 L 36.529839,35.649542 L 36.331243,35.483745 L 36.132646,35.334527 L 35.93405,35.18531 L 35.715593,35.052673 L 35.477275,34.920034 L 35.238961,34.803977 L 35.020503,34.704498 L 34.762328,34.605021 L 34.504152,34.522121 L 34.245976,34.439224 L 33.9878,34.389486 L 33.729625,34.339745 L 33.451589,34.306585 L 33.193413,34.273426 L 32.915378,34.256846 L 32.657203,34.256846 L 32.657203,34.256846 L 32.379166,34.256846 L 32.120991,34.273426 L 31.842954,34.306585 L 31.564918,34.339745 L 31.306743,34.389486 L 31.048567,34.439224 L 30.790391,34.522121 L 30.532215,34.605021 L 30.2939,34.704498 L 30.055582,34.803977 L 29.817268,34.920034 L 29.578952,35.052673 L 29.380354,35.18531 L 29.161899,35.334527 L 28.963301,35.483745 L 28.784564,35.649542 L 28.585968,35.81534 L 28.40723,35.981137 L 28.268213,36.163513 L 28.109336,36.36247 L 27.950458,36.561426 L 27.85116,36.760383 L 27.732001,36.959341 L 27.632703,37.174875 L 27.533405,37.390412 L 27.473825,37.605948 L 27.414245,37.821484 L 27.354667,38.0536 L 27.314948,38.269136 L 27.314948,38.501252 L 27.295087,38.733368 L 27.295087,38.733368 L 27.314948,38.948905 L 27.314948,39.18102 L 27.354667,39.413136 L 27.414245,39.628672 L 27.473825,39.860787 L 27.533405,40.076325 L 27.632703,40.291862 L 27.732001,40.490818 L 27.85116,40.706354 L 27.950458,40.90531 L 28.109336,41.104268 L 28.268213,41.286643 L 28.40723,41.469021 L 28.585968,41.634817 L 28.784564,41.817194 L 28.963301,41.966412 L 29.161899,42.132209 L 29.380354,42.264847 L 29.578952,42.414063 L 29.817268,42.530121 L 30.055582,42.64618 L 30.2939,42.762237 L 30.532215,42.845137 L 30.790391,42.928035 L 31.048567,43.010934 L 31.306743,43.060674 L 31.564918,43.110413 L 31.842954,43.160151 L 32.120991,43.193309 L 32.379166,43.193309 L 32.657203,43.209889 L 32.657203,43.209889 L 32.915378,43.193309 L 33.193413,43.193309 L 33.451589,43.160151 L 33.729625,43.110413 L 33.9878,43.060674 L 34.245976,43.010934 L 34.504152,42.928035 L 34.762328,42.845137 L 35.020503,42.762237 L 35.238961,42.64618 L 35.477275,42.530121 L 35.715593,42.414063 L 35.93405,42.264847 L 36.132646,42.132209 L 36.331243,41.966412 L 36.529839,41.817194 L 36.708577,41.634817 L 36.887313,41.469021 L 37.026332,41.286643 L 37.18521,41.104268 L 37.344088,40.90531 L 37.463244,40.706354 L 37.562542,40.490818 L 37.661842,40.291862 L 37.761141,40.076325 L 37.82072,39.860787 L 37.880298,39.628672 L 37.939876,39.413136 L 37.979595,39.18102 L 37.979595,38.948905 L 37.999456,38.733368"
style="fill:url(#linearGradient9177);fill-opacity:1;stroke:none;stroke-width:0.001" />
</svg>

After

Width:  |  Height:  |  Size: 27 KiB

@ -0,0 +1,204 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="72.139786"
height="32.198273"
version="1.0"
sodipodi:docname="hub.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>Hub</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
id="linearGradient6587">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#edeff3;stop-opacity:1;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119123,0,0,1.09281,-7.833718e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119124,0,0,1.09281,-7.8336875e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient11856"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.191599,0,0,15.33747,-2.531938,3.061917e-2)"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="15.791667"
inkscape:cx="33.948451"
inkscape:cy="19.90866"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="svg1998" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 2.2772683,16.455363 L 2.2772683,32.151128 L 54.874392,32.151128 L 54.874392,16.455363 L 2.2772683,16.455363"
id="path13703" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 54.835664,18.785244 L 71.22016,2.975988 L 71.22016,16.389017 L 54.835664,32.198271 L 54.835664,18.785244"
id="path14592" />
<path
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001"
d="M 54.766167,16.462321 L 71.967339,2.4980018e-15 L 71.967339,13.967109 L 54.766167,30.42943 L 54.766167,16.462321"
id="path2009" />
<path
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.00110589"
d="M 0.26240697,16.276497 L 0.26240697,30.176133 L 55.117276,30.176133 L 55.117276,16.276497 L 0.26240697,16.276497"
id="path2007" />
<path
style="fill:url(#linearGradient11856);fill-opacity:1;stroke:none;stroke-width:0.01505287;stroke-opacity:1"
d="M 55.175888,16.63586 L 72.266438,0.04072379 L 17.044975,0.04072379 L 0,16.63586 L 55.175888,16.63586"
id="path2013" />
<path
style="fill:#000000;stroke:none;stroke-width:0.001"
d="M 17.204076,6.3582344 L 13.617458,8.6449991 L 38.750949,8.6449991 L 34.267676,11.507819 L 55.787376,7.5278009 L 44.130872,4.6300688 L 42.391907,6.3582344 L 17.204076,6.3582344"
id="path2019" />
<path
style="fill:#ffffff;stroke:none;stroke-width:0.001"
d="M 18.127901,6.9342897 L 14.514113,9.2035982 L 39.647603,9.2035982 L 35.164332,12.048963 L 56.711205,8.0514876 L 45.054702,5.2061239 L 43.234218,6.9342897 L 18.127901,6.9342897"
id="path2027" />
</svg>

After

Width:  |  Height:  |  Size: 7.2 KiB

@ -0,0 +1,310 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.47 r22583"
width="51.358818"
height="47.630692"
version="1.0"
sodipodi:docname="ids.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<title
id="title2849">IDS</title>
<metadata
id="metadata2003">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
<dc:title>IDS</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 23.815346 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="51.358818 : 23.815346 : 1"
inkscape:persp3d-origin="25.679409 : 15.876897 : 1"
id="perspective43" />
<linearGradient
inkscape:collect="always"
id="linearGradient10123">
<stop
style="stop-color:#e4405c;stop-opacity:1;"
offset="0"
id="stop10125" />
<stop
style="stop-color:#e4405c;stop-opacity:0;"
offset="1"
id="stop10127" />
</linearGradient>
<linearGradient
id="linearGradient8331">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop8333" />
<stop
style="stop-color:#dde3ef;stop-opacity:1;"
offset="1"
id="stop8335" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6587">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942481e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942482e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10123"
id="linearGradient10129"
x1="1.3990936"
y1="1.4711363"
x2="0.49966058"
y2="0.56367606"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117962,0,0,1.035008,-4.0973e-2,-6.788682e-3)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8331"
id="linearGradient6875"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(24.897735,0,0,25.405463,-9.0988193,-4.8632254)"
x1="2.1178279"
y1="0.30649999"
x2="-0.4954865"
y2="0.30649999" />
<inkscape:perspective
id="perspective418"
inkscape:persp3d-origin="283.46457 : 188.97638 : 1"
inkscape:vp_z="566.92914 : 283.46457 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 283.46457 : 1"
sodipodi:type="inkscape:persp3d" />
<inkscape:perspective
id="perspective3145"
inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
inkscape:vp_z="1 : 0.5 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_x="0 : 0.5 : 1"
sodipodi:type="inkscape:persp3d" />
</defs>
<sodipodi:namedview
inkscape:window-height="676"
inkscape:window-width="960"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="7.8958336"
inkscape:cx="-14.193457"
inkscape:cy="31.087025"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:current-layer="svg1998"
showgrid="false"
inkscape:window-maximized="0" />
<path
id="path11907"
d="M 1.8402723,44.565612 L 1.8402723,47.615693 L 44.293781,47.615693 L 44.293781,44.565612 L 1.8402723,44.565612"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001" />
<path
id="path11020"
d="M 44.370594,6.1851672 L 51.194316,1.0980117 L 51.358819,41.344844 L 44.266438,47.63069 L 44.370594,6.1851672"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
sodipodi:nodetypes="ccccc" />
<path
id="path2037"
d="M 0.062500355,5.1558922 L 0.062500355,46.326915 L 44.407694,46.326915 L 44.407694,5.1558922 L 0.062500355,5.1558922"
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2041"
d="M -0.38461268,5.6292351 L 5.2920708,0.21786924 L 50.13289,0.21786924 L 44.406412,5.6292351 L -0.38461268,5.6292351"
style="fill:url(#linearGradient6875);fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2045"
d="M 44.273363,5.1335036 L 49.931392,0.17309204 L 49.931392,41.393412 L 44.273363,46.353824 L 44.273363,5.1335036"
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path3151"
d="M 6.4284393,19.605415 L 25.596065,19.605415 L 25.596065,18.327628 L 29.718118,20.883894 L 25.596065,23.65251 L 25.596065,22.374758 L 6.4284393,22.374758 L 6.4284393,19.605415 z "
style="fill:#000000;fill-opacity:1" />
<path
style="fill:#ffffff"
d="M 6.5550771,19.225466 L 25.201535,19.225466 L 25.201535,17.947679 L 29.211514,20.503945 L 25.201535,23.272561 L 25.201535,21.994809 L 6.5550771,21.994809 L 6.5550771,19.225466 z "
id="path134" />
<path
id="path3943"
d="M 34.935195,26.761584 L 19.065272,26.761584 L 19.065272,25.483088 L 14.737122,28.039372 L 19.065272,30.808696 L 19.065272,29.530218 L 34.935195,29.530218 L 34.935195,26.761584 z "
style="fill:#000000;fill-opacity:1" />
<path
style="fill:#ffffff"
d="M 35.188506,26.254998 L 19.318583,26.254998 L 19.318583,24.976502 L 14.990433,27.532785 L 19.318583,30.30211 L 19.318583,29.023632 L 35.188506,29.023632 L 35.188506,26.254998 L 35.188506,26.254998 z "
id="path136" />
<path
style="fill:#ffffff"
d="M 42.402076,39.674104 L 39.722752,43.082694 L 30.035935,34.987744 L 32.715242,31.366803 L 42.402076,39.674104 L 42.402076,39.674104 z "
id="path142" />
<path
style="fill:none;stroke:#000000;stroke-width:0.27946547"
d="M 42.402076,39.674104 L 39.722752,43.082694 L 30.035935,34.987744 L 32.715242,31.366803 L 42.402076,39.674104"
id="path144" />
<path
style="fill:#ffffff"
d="M 7.364581,21.781714 C 6.5401598,30.089015 12.311038,37.544009 20.143004,38.396334 C 28.180978,39.461027 35.394602,33.496897 36.425155,25.189596 C 37.249488,16.882277 31.478663,9.4273013 23.4406,8.5749765 C 15.608758,7.5103013 8.18902,13.474396 7.364581,21.781714 L 9.4256341,21.994809 C 10.250073,14.965278 16.433091,9.8534548 23.234504,10.705071 C 30.242049,11.344301 35.188506,17.947679 34.364067,24.976502 C 33.539663,32.006051 27.356557,37.117856 20.3491,36.479316 C 13.547687,35.626992 8.6012129,29.023632 9.4256341,21.994809 L 7.364581,21.781714 L 7.364581,21.781714 z "
id="path146" />
<path
style="fill:none;stroke:#000000;stroke-width:0.27946547"
d="M 7.364581,21.781714 C 6.5401598,30.089015 12.311038,37.544009 20.143004,38.396334 C 28.180978,39.461027 35.394602,33.496897 36.425155,25.189596 C 37.249488,16.882277 31.478663,9.4273013 23.4406,8.5749765 C 15.608758,7.5103013 8.18902,13.474396 7.364581,21.781714"
id="path148" />
<path
style="fill:none;stroke:#000000;stroke-width:0.27946547"
d="M 9.4256341,21.994809 C 10.250073,14.965278 16.433091,9.8534548 23.234504,10.705071 C 30.242049,11.344301 35.188506,17.947679 34.364067,24.976502 C 33.539663,32.006051 27.356557,37.117856 20.3491,36.479316 C 13.547687,35.626992 8.6012129,29.023632 9.4256341,21.994809"
id="path150" />
<path
style="fill:#ffffff"
d="M 5.5096953,22.420962 C 4.6852917,30.728263 10.45617,38.18324 18.494144,39.24795 C 26.326092,40.100275 33.74576,34.136145 34.570198,25.828844 C 35.394602,17.521525 29.829821,10.066549 21.791776,9.2142245 C 13.753801,8.1495316 6.5401598,14.113661 5.5096953,22.420962 L 7.5706952,22.63333 C 8.3951165,15.604526 14.578223,10.492012 21.585679,11.344301 C 28.387092,11.983549 33.333549,18.586218 32.509145,25.61575 C 31.684777,32.645299 25.501689,37.757086 18.700258,37.117856 C 11.692731,36.26624 6.7462563,29.875939 7.5706952,22.63333 L 5.5096953,22.420962 L 5.5096953,22.420962 z "
id="path152" />
<path
style="fill:none;stroke:#000000;stroke-width:0.27946547"
d="M 5.5096953,22.420962 C 4.6852917,30.728263 10.45617,38.18324 18.494144,39.24795 C 26.326092,40.100275 33.74576,34.136145 34.570198,25.828844 C 35.394602,17.521525 29.829821,10.066549 21.791776,9.2142245 C 13.753801,8.1495316 6.5401598,14.113661 5.5096953,22.420962"
id="path154" />
<path
style="fill:none;stroke:#000000;stroke-width:0.27946547"
d="M 7.5706952,22.63333 C 8.3951165,15.604526 14.578223,10.492012 21.585679,11.344301 C 28.387092,11.983549 33.333549,18.586218 32.509145,25.61575 C 31.684777,32.645299 25.501689,37.757086 18.700258,37.117856 C 11.692731,36.26624 6.7462563,29.875939 7.5706952,22.63333"
id="path156" />
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

@ -0,0 +1,286 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.48.4 r9939"
width="51.358818"
height="47.630692"
version="1.0"
sodipodi:docname="vios_l2.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>Multilayer switch</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
id="linearGradient8331">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop8333" />
<stop
style="stop-color:#cfd8e9;stop-opacity:1;"
offset="1"
id="stop8335" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6587">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942481e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942482e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8331"
id="linearGradient8337"
x1="2.1178279"
y1="0.30649999"
x2="-0.4954865"
y2="0.30649999"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117962,0,0,1.035008,-4.0973e-2,-6.788682e-3)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8331"
id="linearGradient9199"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(24.666332,1.3331909e-2,-1.2883406e-2,23.708747,-8.6563136,-4.6316275)"
x1="2.1178279"
y1="0.30649999"
x2="-0.4954865"
y2="0.30649999" />
<path
transform="scale(10,-10) translate(26,-26)"
id="p"
d="M 2.8117,-1.046 A 3 3 0 0 1 .5,2.958 V 4.5119 A 10.5 10.5 0 0 1 2,25.3078 V 25.8661 A 15 15 0 0 0 14.7975,8.5433 15 15 0 0 0 23.4007,-11.201 L 22.9172,-10.9218 A 10.5 10.5 0 0 1 4.1574,-1.8229 z M 6.2265,7.825 A 10 10 0 0 1 -6.2265,7.825 9.5 9.5 0 0 0 -8.4021,10.5667 13.5 13.5 0 0 0 8.4021,10.5667 10 10 0 0 0 6.2265,7.825 z" />
</defs>
<sodipodi:namedview
inkscape:window-height="631"
inkscape:window-width="710"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="5.6568542"
inkscape:cx="45.594763"
inkscape:cy="27.091102"
inkscape:window-x="1129"
inkscape:window-y="285"
inkscape:current-layer="svg1998"
showgrid="false"
inkscape:window-maximized="0" />
<path
id="path11907"
d="M 1.8402723,44.565612 L 1.8402723,47.615693 L 44.293781,47.615693 L 44.293781,44.565612 L 1.8402723,44.565612"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001" />
<path
id="path11020"
d="M 44.370594,6.1851672 L 51.194316,1.0980117 L 51.358819,41.344844 L 44.266438,47.63069 L 44.370594,6.1851672"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
sodipodi:nodetypes="ccccc" />
<path
id="path2037"
d="m -0.02588799,5.0439492 0,41.2829658 44.25563999,0 0,-41.2829658 -44.25563999,0"
style="fill:#6e8caa;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path2041"
d="M -0.028418806,5.1647552 L 5.5982489,0.11782966 L 50.022311,0.14184042 L 44.346312,5.1887393 L -0.028418806,5.1647552"
style="fill:url(#linearGradient9199);fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2045"
d="m 44.228586,5.2655031 5.747583,-4.96041157 0,41.22032047 -5.747583,4.960412 0,-41.2203209"
style="fill:#6e8296;fill-opacity:1;stroke:none"
inkscape:connector-curvature="0" />
<g
transform="matrix(0.11988204,0,0,0.11988204,-17.597288,73.349552)"
id="biohazard-5">
<use
style="fill:#000000"
transform="matrix(0.59107234,0,0,0.59107234,184.79656,-531.9575)"
xlink:href="#p"
id="use3175"
x="0"
y="0"
width="1"
height="1" />
<use
height="1"
width="1"
y="0"
x="0"
id="use3341-4"
xlink:href="#p"
transform="matrix(0.59107234,0,0,0.59107234,178.54041,-531.9575)"
style="fill:#ffffff" />
<use
style="fill:#000000"
xlink:href="#p"
transform="matrix(-0.29553617,0.51188366,-0.51188366,-0.29553617,548.40456,-434.52903)"
id="use3177"
x="0"
y="0"
width="1"
height="1" />
<use
height="1"
width="1"
y="0"
x="0"
id="use3343-1"
transform="matrix(-0.29553617,0.51188366,-0.51188366,-0.29553617,542.14838,-434.52903)"
xlink:href="#p"
style="fill:#ffffff" />
<use
style="fill:#000000"
xlink:href="#p"
transform="matrix(-0.29400183,-0.50773227,0.5092261,-0.29313937,279.18389,-169.44999)"
id="use3179"
x="0"
y="0"
width="1"
height="1" />
<use
height="1"
width="1"
y="0"
x="0"
id="use3345-1"
transform="matrix(-0.28939879,-0.51188366,0.5012534,-0.29553617,274.12647,-168.34953)"
xlink:href="#p"
style="fill:#ffffff" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.3 KiB

@ -0,0 +1,394 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.48.4 r9939"
width="65.937935"
height="55.615818"
version="1.0"
sodipodi:docname="vios.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata2003">
<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>Router</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
id="linearGradient9312">
<stop
style="stop-color:#3c8c8c;stop-opacity:1;"
offset="0"
id="stop9314" />
<stop
style="stop-color:#ffffff;stop-opacity:0.94117647;"
offset="1"
id="stop9316" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9312"
id="linearGradient2216"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.252829,0,0,14.082619,53.467529,3.4188377)"
x1="-1.0929121"
y1="0.63145506"
x2="-4.5832458"
y2="0.070047863" />
<path
d="M 2.8117,-1.046 A 3 3 0 0 1 .5,2.958 V 4.5119 A 10.5 10.5 0 0 1 2,25.3078 V 25.8661 A 15 15 0 0 0 14.7975,8.5433 15 15 0 0 0 23.4007,-11.201 L 22.9172,-10.9218 A 10.5 10.5 0 0 1 4.1574,-1.8229 z M 6.2265,7.825 A 10 10 0 0 1 -6.2265,7.825 9.5 9.5 0 0 0 -8.4021,10.5667 13.5 13.5 0 0 0 8.4021,10.5667 10 10 0 0 0 6.2265,7.825 z"
id="p"
transform="scale(10,-10) translate(26,-26)" />
<linearGradient
y2="0.30649999"
x2="-0.4954865"
y1="0.30649999"
x1="2.1178279"
gradientTransform="matrix(24.666332,1.3331909e-2,-1.2883406e-2,23.708747,-8.6563136,-4.6316275)"
gradientUnits="userSpaceOnUse"
id="linearGradient9199"
xlink:href="#linearGradient8331"
inkscape:collect="always" />
<linearGradient
gradientTransform="matrix(1.117962,0,0,1.035008,-4.0973e-2,-6.788682e-3)"
gradientUnits="userSpaceOnUse"
y2="0.30649999"
x2="-0.4954865"
y1="0.30649999"
x1="2.1178279"
id="linearGradient8337"
xlink:href="#linearGradient8331"
inkscape:collect="always" />
<linearGradient
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942482e-3,-0.356572)"
gradientUnits="userSpaceOnUse"
y2="1.4649135"
x2="-0.41311559"
y1="1.4519272"
x1="2.2801981"
id="linearGradient6609"
xlink:href="#linearGradient6603"
inkscape:collect="always" />
<linearGradient
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942481e-3,-0.356572)"
gradientUnits="userSpaceOnUse"
y2="0.62730032"
x2="-1.2664427"
y1="0.64267641"
x1="3.95626"
id="linearGradient6593"
xlink:href="#linearGradient6587"
inkscape:collect="always" />
<marker
style="overflow:visible"
id="Arrow1Lstart-0"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart">
<path
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
id="path11936-1" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Send-4"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Send">
<path
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
id="path11921-5" />
</marker>
<marker
style="overflow:visible"
id="Arrow2Lstart-1"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lstart">
<path
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
id="path11918-3" />
</marker>
<linearGradient
id="linearGradient6587"
inkscape:collect="always">
<stop
id="stop6589"
offset="0"
style="stop-color:#506eaa;stop-opacity:1;" />
<stop
id="stop6591"
offset="1"
style="stop-color:#506eaa;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient6603"
inkscape:collect="always">
<stop
id="stop6605"
offset="0"
style="stop-color:#506eaa;stop-opacity:1;" />
<stop
id="stop6607"
offset="1"
style="stop-color:#506eaa;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient8331">
<stop
id="stop8333"
offset="0"
style="stop-color:#6e8caa;stop-opacity:1;" />
<stop
id="stop8335"
offset="1"
style="stop-color:#cfd8e9;stop-opacity:1;" />
</linearGradient>
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="11.166395"
inkscape:cx="27.334225"
inkscape:cy="20.948248"
inkscape:window-x="124"
inkscape:window-y="51"
inkscape:current-layer="svg1998"
showgrid="false"
inkscape:window-maximized="0" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.39215686;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4558"
width="64.553001"
height="54.450546"
x="1.3854325"
y="1.1652724"
ry="15.247324"
rx="32.213169"
inkscape:transform-center-x="8.4568758" />
<rect
style="opacity:1;fill:#3c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.015;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect9971"
width="64.499474"
height="52.040936"
x="0"
y="0.91024613"
ry="11.802391"
rx="32.249737"
inkscape:transform-center-x="8.2952569" />
<g
id="g3579"
transform="matrix(1.0000067,0,0,0.9900067,40.759311,2.327137)">
<path
id="path3581"
d="M 23.677527,9.7502028 L 23.620489,9.1645488 L 23.506407,8.5788958 L 23.316272,8.0127658 L 23.03107,7.4271138 L 22.650803,6.8609828 L 22.213492,6.2948508 L 21.681115,5.7482428 L 21.072684,5.2211558 L 20.3882,4.6940668 L 19.627661,4.1865018 L 18.810084,3.6789348 L 17.916451,3.1908918 L 16.946765,2.7028468 L 15.920038,2.2733688 L 14.817258,1.8438898 L 13.657439,1.4144108 L 12.45959,1.0239748 L 11.18569,0.6725838 L 9.8737612,0.3211921 L 8.5047922,0.0088434012 L 7.0977972,-0.2839824 L 5.6527742,-0.5572882 L 4.1697252,-0.7915484 L 2.6676622,-1.0258099 L 1.1275722,-1.2015057 L -0.45054482,-1.3576797 L -2.0476748,-1.4943326 L -3.6448038,-1.5919412 L -5.2609448,-1.6700286 L -6.8961048,-1.7285939 L -8.5122458,-1.7285939 L -8.5122458,-1.7285939 L -10.147406,-1.7285939 L -11.78256,-1.6700286 L -13.379691,-1.5919412 L -14.995836,-1.4943326 L -16.592965,-1.3576797 L -18.152069,-1.2015057 L -19.711169,-1.0258099 L -21.213234,-0.7915484 L -22.696283,-0.5572882 L -24.141307,-0.2839824 L -25.548301,0.0088434012 L -26.917268,0.3211921 L -28.229199,0.6725838 L -29.503099,1.0239748 L -30.700949,1.4144108 L -31.860772,1.8438898 L -32.963548,2.2733688 L -33.990275,2.7028468 L -34.959963,3.1908918 L -35.853593,3.6789348 L -36.671173,4.1865018 L -37.431708,4.6940668 L -38.116197,5.2211558 L -38.705611,5.7482428 L -39.257001,6.2948508 L -39.694309,6.8609828 L -40.074582,7.4271138 L -40.359781,8.0127658 L -40.568933,8.5788958 L -40.683011,9.1645488 L -40.721038,9.7502028 L -40.721038,9.7502028 L -40.683011,10.335856 L -40.568933,10.901987 L -40.359781,11.48764 L -40.074582,12.03425 L -39.694309,12.619902 L -39.257001,13.166511 L -38.705611,13.732642 L -38.116197,14.279254 L -37.431708,14.806341 L -36.671173,15.294385 L -35.853593,15.801949 L -34.959963,16.309514 L -33.990275,16.758515 L -32.963548,17.207517 L -31.860772,17.656519 L -30.700949,18.066477 L -29.503099,18.456913 L -28.229199,18.808302 L -26.917268,19.159693 L -25.548301,19.472041 L -24.141307,19.784392 L -22.696283,20.038171 L -21.213234,20.291955 L -19.711169,20.506693 L -18.152069,20.682391 L -16.592965,20.838567 L -14.995836,20.975218 L -13.379691,21.072827 L -11.78256,21.150915 L -10.147406,21.20948 L -8.5122458,21.20948 L -8.5122458,21.20948 L -6.8961048,21.20948 L -5.2609448,21.150915 L -3.6448038,21.072827 L -2.0476748,20.975218 L -0.45054482,20.838567 L 1.1275722,20.682391 L 2.6676622,20.506693 L 4.1697252,20.291955 L 5.6527742,20.038171 L 7.0977972,19.784392 L 8.5047922,19.472041 L 9.8737612,19.159693 L 11.18569,18.808302 L 12.45959,18.456913 L 13.657439,18.066477 L 14.817258,17.656519 L 15.920038,17.207517 L 16.946765,16.758515 L 17.916451,16.309514 L 18.810084,15.801949 L 19.627661,15.294385 L 20.3882,14.806341 L 21.072684,14.279254 L 21.681115,13.732642 L 22.213492,13.166511 L 22.650803,12.619902 L 23.03107,12.03425 L 23.316272,11.48764 L 23.506407,10.901987 L 23.620489,10.335856 L 23.677527,9.7502028"
style="fill:#3c8c8c;fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g4160"
transform="matrix(1.0000067,0,0,0.9900067,-7.7865845e-2,0.5539581)">
<path
id="path4815"
d="M 64.514069,11.541297 L 64.457031,10.955643 L 64.342949,10.36999 L 64.152814,9.8038604 L 63.867612,9.2182077 L 63.487345,8.6520765 L 63.050034,8.0859452 L 62.517657,7.5393369 L 61.909226,7.0122499 L 61.224742,6.4851607 L 60.464203,5.9775955 L 59.646626,5.4700289 L 58.752993,4.9819859 L 57.783307,4.4939413 L 56.75658,4.0644625 L 55.6538,3.6349838 L 54.493981,3.2055052 L 53.296132,2.8150692 L 52.022232,2.4636777 L 50.710303,2.1122862 L 49.341334,1.7999375 L 47.934339,1.5071117 L 46.489316,1.2338059 L 45.006267,0.99954576 L 43.504204,0.76528425 L 41.964114,0.58958842 L 40.385997,0.43341443 L 38.788867,0.29676153 L 37.191738,0.19915292 L 35.575597,0.12106555 L 33.940437,0.06250017 L 32.324296,0.06250017 L 32.324296,0.06250017 L 30.689136,0.06250017 L 29.053981,0.12106555 L 27.45685,0.19915292 L 25.840705,0.29676153 L 24.243576,0.43341443 L 22.684472,0.58958842 L 21.125372,0.76528425 L 19.623307,0.99954576 L 18.140258,1.2338059 L 16.695234,1.5071117 L 15.28824,1.7999375 L 13.919273,2.1122862 L 12.607342,2.4636777 L 11.333442,2.8150692 L 10.135592,3.2055052 L 8.9757693,3.6349838 L 7.8729941,4.0644625 L 6.8462664,4.4939413 L 5.8765785,4.9819859 L 4.9829488,5.4700289 L 4.1653682,5.9775955 L 3.4048335,6.4851607 L 2.7203448,7.0122499 L 2.1309311,7.5393369 L 1.5795405,8.0859452 L 1.1422325,8.6520765 L 0.76195982,9.2182077 L 0.47676065,9.8038604 L 0.26760898,10.36999 L 0.15353084,10.955643 L 0.11550327,11.541297 L 0.11550327,11.541297 L 0.15353084,12.12695 L 0.26760898,12.693081 L 0.47676065,13.278734 L 0.76195982,13.825344 L 1.1422325,14.410996 L 1.5795405,14.957605 L 2.1309311,15.523736 L 2.7203448,16.070348 L 3.4048335,16.597435 L 4.1653682,17.085479 L 4.9829488,17.593043 L 5.8765785,18.100608 L 6.8462664,18.549609 L 7.8729941,18.998611 L 8.9757693,19.447613 L 10.135592,19.857571 L 11.333442,20.248007 L 12.607342,20.599396 L 13.919273,20.950787 L 15.28824,21.263135 L 16.695234,21.575486 L 18.140258,21.829265 L 19.623307,22.083049 L 21.125372,22.297787 L 22.684472,22.473485 L 24.243576,22.629661 L 25.840705,22.766312 L 27.45685,22.863921 L 29.053981,22.942009 L 30.689136,23.000574 L 32.324296,23.000574 L 32.324296,23.000574 L 33.940437,23.000574 L 35.575597,22.942009 L 37.191738,22.863921 L 38.788867,22.766312 L 40.385997,22.629661 L 41.964114,22.473485 L 43.504204,22.297787 L 45.006267,22.083049 L 46.489316,21.829265 L 47.934339,21.575486 L 49.341334,21.263135 L 50.710303,20.950787 L 52.022232,20.599396 L 53.296132,20.248007 L 54.493981,19.857571 L 55.6538,19.447613 L 56.75658,18.998611 L 57.783307,18.549609 L 58.752993,18.100608 L 59.646626,17.593043 L 60.464203,17.085479 L 61.224742,16.597435 L 61.909226,16.070348 L 62.517657,15.523736 L 63.050034,14.957605 L 63.487345,14.410996 L 63.867612,13.825344 L 64.152814,13.278734 L 64.342949,12.693081 L 64.457031,12.12695 L 64.514069,11.541297"
style="fill:url(#linearGradient2216);fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path4819"
d="M 33.023738,8.6936939 L 37.664889,10.327433 L 48.909313,5.4458969 L 53.946665,7.0599533 L 51.229891,3.0248142 L 38.061087,3.0248142 L 43.475766,4.225514 L 33.023738,8.6936939"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4821"
d="M 31.08049,13.161874 L 26.439334,11.528132 L 15.591104,16.429352 L 10.176425,14.775929 L 12.874332,19.244109 L 26.439334,19.244109 L 20.628458,17.630052 L 31.08049,13.161874"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4823"
d="M 11.327278,4.225514 L 15.968435,2.611458 L 27.212859,7.0599533 L 32.25021,5.8592533 L 29.552303,9.8943939 L 16.364632,9.8943939 L 21.779313,8.6936939 L 11.327278,4.225514"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4825"
d="M 53.154272,18.023723 L 48.513117,19.657467 L 37.664889,14.775929 L 32.25021,16.429352 L 34.966985,12.33516 L 48.513117,12.33516 L 42.70224,13.555544 L 53.154272,18.023723"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4827"
d="M 33.419936,9.1070493 L 38.061087,10.721105 L 49.286643,5.8592533 L 54.323994,7.4929926 L 51.60722,3.4184854 L 38.438415,3.4184854 L 43.871962,4.6191872 L 33.419936,9.1070493"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4829"
d="M 31.476681,13.555544 L 26.816665,11.941487 L 15.968435,16.803341 L 10.553753,15.189284 L 13.25166,19.657467 L 26.816665,19.657467 L 21.005786,18.023723 L 31.476681,13.555544"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4831"
d="M 11.723476,4.6191872 L 16.364632,3.0248142 L 27.609055,7.4929926 L 32.627541,6.2529266 L 29.929634,10.327433 L 16.741963,10.327433 L 22.175509,9.1070493 L 11.723476,4.6191872"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4833"
d="M 53.531602,18.43708 L 48.909313,20.070823 L 38.061087,15.189284 L 32.627541,16.803341 L 35.344315,12.7682 L 48.909313,12.7682 L 43.098437,13.9689 L 53.531602,18.43708"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
<g
id="g3377"
transform="translate(27.261461,25.114531)">
<g
id="biohazard-5"
transform="matrix(0.08208805,0,0,0.08208805,-22.699733,44.974166)">
<use
height="1"
width="1"
y="0"
x="0"
id="use3175"
xlink:href="#p"
transform="matrix(0.59107234,0,0,0.59107234,184.79656,-531.9575)"
style="fill:#000000" />
<use
style="fill:#ffffff"
transform="matrix(0.59107234,0,0,0.59107234,178.54041,-531.9575)"
xlink:href="#p"
id="use3341-4"
x="0"
y="0"
width="1"
height="1" />
<use
height="1"
width="1"
y="0"
x="0"
id="use3177"
transform="matrix(-0.29553617,0.51188366,-0.51188366,-0.29553617,548.40456,-434.52903)"
xlink:href="#p"
style="fill:#000000" />
<use
style="fill:#ffffff"
xlink:href="#p"
transform="matrix(-0.29553617,0.51188366,-0.51188366,-0.29553617,542.14838,-434.52903)"
id="use3343-1"
x="0"
y="0"
width="1"
height="1" />
<use
height="1"
width="1"
y="0"
x="0"
id="use3179"
transform="matrix(-0.29400183,-0.50773227,0.5092261,-0.29313937,279.18389,-169.44999)"
xlink:href="#p"
style="fill:#000000" />
<use
style="fill:#ffffff"
xlink:href="#p"
transform="matrix(-0.28939879,-0.51188366,0.5012534,-0.29553617,274.12647,-168.34953)"
id="use3345-1"
x="0"
y="0"
width="1"
height="1" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

@ -0,0 +1,171 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="40"
height="25.000114"
viewBox="11 7 20.696297 13.758396"
id="svg2">
<title
id="title3763">IP phone</title>
<metadata
id="metadata160">
<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>IP phone</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project
(www.gns3.net)</dc:description>
</cc:Work>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs158" />
<g
transform="translate(-18.08621,-19.965562)"
id="g4">
<path
d="m 46.042574,40.140708 -0.497708,0.04989 -0.477151,0.04767 -0.452812,0.04988 -0.43595,0.04554 -0.823307,0.08889 -0.761547,0.0824 -0.364865,0.03684 -0.35551,0.03251 -0.348033,0.03256 -0.336801,0.03035 -0.334953,0.02168 -0.33117,0.01951 -0.329323,0.01951 -0.325598,0.01302 -0.333047,0.0065 -0.329323,0.0065 -0.3368,-0.0022 -0.344279,-0.0065 -0.348033,-0.01301 -0.357386,-0.01733 -0.370496,-0.02171 -0.37982,-0.03035 -0.392958,-0.03686 -0.411639,-0.04549 -0.426625,-0.0477 -0.443456,-0.05637 -0.464043,-0.06503 -0.4846,-0.06938 -0.507092,-0.0824 -0.537004,-0.08889 -4.67782,0 0,-2.877018 0.815799,0 0.720404,-0.0043 0.621197,0 0.529527,0 0.452811,0 0.37422,0 0.308737,0 0.248883,0 0.192725,0 0.145952,0 0.106657,0 0.07296,0 0.04302,0 0.02622,0 0.01308,0 0.0056,0.0043 0.537005,0.08454 0.507092,0.0824 0.4846,0.06935 0.464043,0.06507 0.443456,0.05851 0.426625,0.04989 0.411639,0.04335 0.392958,0.0347 0.379821,0.03035 0.370495,0.02168 0.357386,0.01954 0.348033,0.01084 0.344279,0.0065 0.3368,0.0043 0.329322,-0.0065 0.333048,-0.0086 0.325598,-0.01302 0.329323,-0.01516 0.33117,-0.01954 0.334953,-0.026 0.336801,-0.02603 0.348032,-0.0347 0.355511,-0.03469 0.364865,-0.03687 0.761547,-0.07805 0.823308,-0.09321 0.435949,-0.04554 0.452811,-0.04553 0.477152,-0.04988 0.497709,-0.04767 0,2.877018 -10e-7,-7e-6 2.7e-5,-5.3e-5 z"
id="path3757"
style="fill:#000000;fill-opacity:0.39256197" />
<path
d="m 50.441025,29.648941 0,5.563555 -4.39845,5.000912 0,-2.986572 4.39845,-7.577895 0,0 z"
id="path3740"
style="fill:#000000;fill-opacity:0.39215686" />
<path
d="m 49.665662,27.95622 0,1.140104 0,0.555115 -1.060497,0 1.060497,-1.695219 0,0 z"
id="path6"
style="fill:#8c8c8c;fill-opacity:1" />
<path
d="m 48.660854,29.592658 0.08373,0.170091 0.921087,0 0,-0.222587 -0.921087,0 -0.08373,0.0525 0.08373,-0.0525 -0.01143,0 -0.01142,0.0042 -0.01331,0.0021 -0.0076,0.0042 -0.0114,0.0021 -0.0057,0.0063 -0.0095,0.0105 -0.0057,0.0063 -0.0076,0.0063 -0.0038,0.0105 -0.0057,0.0084 -0.002,0.0105 -0.0038,0.01261 -0.002,0.0063 0,0.01261 0,0.0084 0,0.0105 0,0.01261 0.002,0.0084 0.0038,0.0105 0.002,0.0105 0.0057,0.0084 0.0038,0.0105 0.0076,0.0084 0.0057,0.0063 0.0095,0.0063 0.0057,0.0063 0.0114,0.0063 0.0076,0.0042 0.01331,0.0021 0.01142,0 0.01143,0 -0.08373,-0.170091 0,0 0,-4.3e-5 z"
id="path10"
style="fill:#add6e7" />
<path
d="m 38.829545,27.994679 0,1.65676 -1.187421,0 1.187421,-1.65676 0,0 z"
id="path14"
style="fill:#8c8c8c;fill-opacity:1" />
<path
d="m 37.664839,29.586339 0.08184,0.17641 1.082864,0 0,-0.222587 -1.082864,0 -0.08184,0.04617 0.08184,-0.04617 -0.01142,0 -0.01143,0.0042 -0.01142,0.0021 -0.0095,0.0042 -0.0114,0.0021 -0.0057,0.0063 -0.0095,0.0105 -0.0057,0.0063 -0.0076,0.0063 -0.0038,0.0105 -0.0057,0.0084 -0.0019,0.0105 -0.0038,0.01261 -0.002,0.0063 0,0.01261 0,0.0084 0,0.0105 0,0.01261 0.002,0.0084 0.0038,0.0105 0.0019,0.0105 0.0057,0.0084 0.0038,0.0105 0.0076,0.0084 0.0057,0.0063 0.0095,0.0063 0.0057,0.0063 0.0114,0.0063 0.0095,0.0042 0.01142,0.0021 0.01143,0 0.01142,0 -0.08184,-0.17641 0,0 0,-4.3e-5 z"
id="path18"
style="fill:#add6e7" />
<path
d="m 38.829545,27.998746 -4.904261,0 -5.399015,8.612139 0.82973,0 0.732706,-0.0042 0.631804,0 0.538569,0 0.460543,0 0.380609,0 0.314009,0 0.253133,0 0.196017,0 0.148444,0 0.108477,0 0.07421,0 0.04376,0 0.02666,0 0.01331,0 0.0057,0.0042 0.546173,0.08189 0.515752,0.07981 0.492874,0.06717 0.471967,0.06303 0.451029,0.05667 0.433909,0.04831 0.418668,0.042 0.399668,0.0336 0.386306,0.02939 0.376823,0.021 0.363489,0.01892 0.353975,0.0105 0.350157,0.0063 0.342552,0.0042 0.334946,-0.0063 0.338734,-0.0084 0.331158,-0.01261 0.334946,-0.01467 0.336825,-0.01892 0.340673,-0.02517 0.342552,-0.02522 0.353975,-0.03361 0.36158,-0.03361 0.371096,-0.03571 0.774551,-0.0756 0.837366,-0.09028 0.443393,-0.04411 0.460543,-0.0441 0.4853,-0.04831 0.506206,-0.04617 4.004142,-7.070722 -1.400719,0 0.921087,-1.541417 -9.665745,0 -1.05238,1.541417 -1.200855,0 1.082863,-1.541417 0,0 1.6e-5,0 z"
id="path22"
style="fill:#c8c8c8;fill-opacity:1" />
<path
d="m 38.78576,36.155181 -3.448364,0 1.922108,-2.790934 3.328463,0 -1.802207,2.790934 0,0 z"
id="path46"
style="fill:#000000;fill-opacity:1" />
<path
d="m 35.266977,36.09426 0.07042,0.159625 3.448364,0 0,-0.197408 -3.448364,0 -0.07042,0.03778 0,0 -0.108477,0.159624 0.178896,0 -0.07042,-0.159624 10e-7,3e-6 z"
id="path48"
style="fill:#ffffff;fill-opacity:1" />
<path
d="m 37.259504,33.265576 -0.07233,0.03778 -1.920199,2.790901 0.140809,0.117596 1.920228,-2.790901 -0.06851,-0.155379 0,0 -0.04379,0 -0.02854,0.03778 0.07233,-0.03778 0,0 2e-6,3e-6 z"
id="path50"
style="fill:#ffffff;fill-opacity:1" />
<path
d="m 40.660295,33.418849 -0.07233,-0.153273 -3.328463,0 0,0.195302 3.328463,0 0.07233,-0.04203 0,0 0.09705,-0.153272 -0.169381,0 0.07233,0.153272 0,0 10e-7,1e-6 z"
id="path52"
style="fill:#ffffff;fill-opacity:1" />
<path
d="m 38.78576,36.253885 0.07233,-0.04203 1.802207,-2.793007 -0.144626,-0.111277 -1.800328,2.790901 0.07042,0.155412 0,0 0.04379,0 0.02854,-0.04203 -0.07233,0.04203 0,0 -3e-6,10e-7 z"
id="path54"
style="fill:#ffffff;fill-opacity:1" />
<path
d="m 50.046715,29.594552 0,5.191197 -4.00414,4.666213 0,-2.786688 4.00414,-7.070722 0,0 0,0 z"
id="path56"
style="fill:#8c8c8c;fill-opacity:1" />
<path
d="m 36.250847,29.966443 -0.123688,0.159625 -0.127507,0.159592 -0.129414,0.161698 -0.135112,0.163805 -0.133203,0.170091 -0.133233,0.170091 -0.131294,0.170124 -0.131323,0.174304 -0.131325,0.17427 -0.127506,0.174304 -0.06088,0.09031 -0.06282,0.0861 -0.06091,0.08821 -0.06091,0.0882 -0.06088,0.0861 -0.0533,0.09239 -0.05708,0.0861 -0.05521,0.08821 -0.05517,0.09031 -0.05518,0.0882 -0.0476,0.09028 -0.04945,0.08402 0.04376,0.611083 -1.621431,2.753117 -0.186502,-1.789214 0.03997,-0.1407 0.05708,-0.159592 0.07614,-0.18059 0.09515,-0.199515 0.108477,-0.214193 0.123689,-0.231012 0.13893,-0.245691 0.146535,-0.256222 0.161777,-0.266689 0.173169,-0.277187 0.180806,-0.283507 0.18838,-0.289794 0.192229,-0.294005 0.199835,-0.296113 0.201713,-0.298185 0.20744,-0.296113 0.20553,-0.296112 0.209349,-0.289793 0.20741,-0.285581 0.205531,-0.279326 0.201744,-0.270902 0.196016,-0.260403 0.196017,-0.247796 0.186501,-0.237299 0.178897,-0.220479 0.167473,-0.203728 0.157958,-0.186876 0.150323,-0.165911 0.135113,-0.144913 0.121809,-0.123882 0.106568,-0.0987 0.08754,-0.07139 0.188411,1.78918 -1.406386,1.785002 -0.03997,-0.5733 0,0 1.4e-5,-3e-6 z"
id="path66"
style="fill:#8c8c8c;fill-opacity:1" />
<path
d="m 29.49111,34.277762 -0.186501,1.789214 3.38558,0 -0.186502,-1.789214 -3.012577,0 0,0 z"
id="path84"
style="fill:#b4b4b4;fill-opacity:1" />
<path
d="m 37.50879,26.965562 -0.08754,0.07139 -0.106568,0.0987 -0.12181,0.123882 -0.135111,0.144913 -0.150324,0.165911 -0.157957,0.186876 -0.167474,0.203728 -0.178896,0.220479 -0.186503,0.237298 -0.196016,0.247797 -0.196016,0.260403 -0.201744,0.270901 -0.20553,0.279327 -0.207411,0.28558 -0.209349,0.289794 -0.20553,0.296112 -0.20744,0.296113 -0.201714,0.298185 -0.199834,0.296113 -0.192229,0.294005 -0.188381,0.289794 -0.180804,0.283507 -0.173171,0.277187 -0.161777,0.266689 -0.146534,0.256222 -0.13893,0.245691 -0.123688,0.231012 -0.108478,0.214193 -0.09515,0.199515 -0.07614,0.18059 -0.05708,0.159592 -0.03997,0.1407 -3.012576,0 0.04188,-0.1407 0.059,-0.159592 0.07611,-0.18059 0.09136,-0.199515 0.112295,-0.214193 0.121779,-0.231012 0.13893,-0.245691 0.146534,-0.256222 0.163657,-0.266689 0.169381,-0.277187 0.176988,-0.283507 0.190319,-0.289794 0.196017,-0.294005 0.196017,-0.296113 0.205531,-0.298185 0.205531,-0.296113 0.207439,-0.296112 0.205532,-0.289794 0.209319,-0.28558 0.20553,-0.279327 0.201744,-0.270901 0.199834,-0.260403 0.192199,-0.247797 0.184593,-0.237298 0.178897,-0.220479 0.173169,-0.203728 0.157958,-0.186876 0.146536,-0.165911 0.135112,-0.144913 0.121809,-0.123882 0.106568,-0.0987 0.09136,-0.07139 3.008758,0 -1.1e-5,0 z"
id="path94"
style="fill:#c8c8c8;fill-opacity:1" />
<path
d="m 38.532657,31.545643 1.9868,-2.887498 7.745546,0 -1.781299,2.887498 -7.951047,0 0,0 z"
id="path104"
style="fill:#ffffff" />
<path
d="m 39.377628,31.010159 1.334057,-1.940412 5.208724,0 -1.197036,1.940412 -5.345745,0 0,0 z"
id="path114"
style="fill:#000000" />
<path
d="m 37.676262,36.211856 1.802207,-2.793007 -0.140808,-0.111277 -1.804116,2.790901 0.142717,0.113383 0,0 0,0 z"
id="path124"
style="fill:#ffffff;fill-opacity:1" />
<path
d="m 36.587703,36.211856 1.800328,-2.793007 -0.142748,-0.111277 -1.802206,2.790901 0.144626,0.113383 0,0 z"
id="path126"
style="fill:#ffffff;fill-opacity:1" />
<path
d="m 40.138847,33.93758 -3.315161,0 0,0.193195 3.315161,0 0,-0.193195 z"
id="path128"
style="fill:#ffffff;fill-opacity:1" />
<path
d="m 39.697332,34.649474 -3.374156,0 0,0.193196 3.374156,0 0,-0.193196 z"
id="path130"
style="fill:#ffffff;fill-opacity:1" />
<path
d="m 39.213942,35.405471 -3.425517,0 0,0.193195 3.425517,0 0,-0.193195 z"
id="path132"
style="fill:#ffffff;fill-opacity:1" />
<path
d="m 46.042573,39.397573 -0.506206,0.04831 -0.485299,0.04617 -0.460544,0.04831 -0.443394,0.0441 -0.837364,0.0861 -0.774551,0.07981 -0.371095,0.03567 -0.361582,0.0315 -0.353975,0.03153 -0.342551,0.02939 -0.340673,0.021 -0.336826,0.01889 -0.334946,0.01889 -0.331158,0.01261 -0.338733,0.0063 -0.334946,0.0063 -0.342552,-0.0021 -0.350157,-0.0063 -0.353975,-0.01261 -0.363489,-0.01678 -0.376822,-0.02103 -0.386306,-0.02939 -0.399669,-0.03571 -0.418668,-0.04407 -0.433908,-0.04621 -0.45103,-0.05461 -0.471967,-0.063 -0.492874,-0.06721 -0.515751,-0.07981 -0.546174,-0.0861 -4.757696,0 0,-2.786688 0.82973,0 0.732706,-0.0042 0.631804,0 0.538568,0 0.460543,0 0.38061,0 0.314008,0 0.253134,0 0.196016,0 0.148445,0 0.108477,0 0.07421,0 0.04376,0 0.02666,0 0.01331,0 0.0057,0.0042 0.546174,0.08189 0.515752,0.07981 0.492874,0.06717 0.471967,0.06303 0.451028,0.05667 0.43391,0.04831 0.418668,0.042 0.399667,0.03361 0.386307,0.02939 0.376822,0.021 0.363489,0.01892 0.353975,0.0105 0.350157,0.0063 0.342552,0.0042 0.334946,-0.0063 0.338734,-0.0084 0.331158,-0.01261 0.334946,-0.01467 0.336825,-0.01892 0.340674,-0.02517 0.342551,-0.02522 0.353975,-0.03361 0.36158,-0.03361 0.371096,-0.03571 0.774551,-0.0756 0.837365,-0.09028 0.443394,-0.04411 0.460543,-0.0441 0.485299,-0.04831 0.506207,-0.04617 0,2.786688 0,-3e-6 1.4e-5,4.3e-5 z"
id="path134"
style="fill:#b4b4b4;fill-opacity:1" />
<path
d="m 42.000049,36.190858 0,-3.607785 0.662287,0 0,3.607785 -0.662287,0 z"
id="path148"
style="fill:#1f1a17" />
<path
d="m 43.29417,36.190858 0,-3.607785 1.060016,0 0.144627,0 0.133202,0.0021 0.117992,0.0042 0.102781,0.0063 0.04948,0.0021 0.04376,0.0063 0.03997,0.0042 0.03806,0.0042 0.03427,0.0063 0.03045,0.0063 0.03045,0.0063 0.02282,0.0063 0.03427,0.0084 0.03424,0.01261 0.03427,0.01678 0.03233,0.01261 0.03045,0.01889 0.03236,0.01472 0.02854,0.02311 0.03236,0.01889 0.02854,0.02311 0.02854,0.02521 0.02663,0.02517 0.02854,0.02939 0.02666,0.02731 0.02473,0.02939 0.02284,0.03361 0.02663,0.03361 0.02284,0.03361 0.02094,0.03571 0.01903,0.03778 0.02094,0.03781 0.01712,0.03778 0.01521,0.042 0.01333,0.0441 0.01143,0.042 0.01142,0.04411 0.0095,0.04411 0.0076,0.04831 0.0095,0.04828 0.002,0.05042 0.0057,0.05039 0,0.05039 0.0038,0.0546 -0.0038,0.042 0,0.03992 -0.002,0.03989 -0.0038,0.03778 -0.002,0.03781 -0.0057,0.03781 -0.0057,0.03567 -0.0057,0.03361 -0.0057,0.03571 -0.0095,0.03571 -0.01142,0.0315 -0.0076,0.0315 -0.01142,0.0315 -0.0095,0.02939 -0.01521,0.0315 -0.01143,0.02939 -0.01333,0.02731 -0.01521,0.02522 -0.01334,0.02939 -0.01712,0.02522 -0.01521,0.02308 -0.01715,0.02521 -0.01521,0.021 -0.01903,0.02311 -0.01715,0.021 -0.01713,0.02311 -0.01712,0.01889 -0.02094,0.02311 -0.02094,0.01889 -0.01903,0.01472 -0.02094,0.01678 -0.01903,0.01892 -0.04376,0.02939 -0.03997,0.02728 -0.04379,0.02521 -0.04376,0.02311 -0.04379,0.02311 -0.04188,0.01469 -0.04376,0.01681 -0.04379,0.0084 -0.06088,0.01261 -0.06851,0.01261 -0.07802,0.0105 -0.07993,0.0063 -0.08945,0.0021 -0.09518,0.0063 -0.10466,0.0042 -0.108477,0 -0.430091,0 0,1.360793 -0.662257,0 0.662257,-2.998808 0,1.024824 0.361581,0 0.09327,-0.0042 0.08373,0 0.07802,-0.0021 0.07233,-0.0063 0.02854,-0.0063 0.03236,-0.0042 0.02663,-0.0063 0.02473,-0.0021 0.02284,-0.0063 0.02285,-0.0063 0.02094,-0.0063 0.01712,-0.0063 0.03236,-0.01678 0.02854,-0.01681 0.02854,-0.01889 0.02663,-0.021 0.02473,-0.02311 0.02285,-0.02522 0.02094,-0.02939 0.02094,-0.02522 0.01713,-0.0315 0.01712,-0.0315 0.01142,-0.03571 0.01143,-0.03361 0.0057,-0.03567 0.0095,-0.03361 0.0019,-0.042 0,-0.03781 0,-0.02311 0,-0.02517 -0.0019,-0.02311 -0.0038,-0.021 -0.0057,-0.02521 -0.0038,-0.01889 -0.0057,-0.02311 -0.0057,-0.01889 -0.0076,-0.02311 -0.0057,-0.01889 -0.0095,-0.01892 -0.0076,-0.01889 -0.01142,-0.01472 -0.01143,-0.021 -0.0114,-0.01468 -0.01142,-0.01681 -0.01524,-0.01467 -0.0114,-0.01682 -0.01715,-0.01261 -0.01521,-0.01258 -0.01334,-0.01261 -0.01521,-0.01261 -0.01715,-0.0105 -0.01521,-0.01261 -0.01712,-0.0084 -0.01712,-0.0105 -0.01716,-0.0063 -0.01903,-0.0084 -0.01903,-0.0042 -0.01903,-0.0063 -0.02094,-0.0063 -0.01712,-0.0063 -0.03427,-0.0063 -0.03994,-0.0021 -0.04948,-0.0042 -0.05521,-0.0021 -0.06279,-0.0042 -0.06851,-0.0042 -0.08184,0 -0.08376,0 -0.319704,0 -0.662257,2.998809 0,0 1.1e-4,-6.3e-5 z"
id="path150"
style="fill:#1f1a17" />
<path
d="m 41.899208,36.079582 0,-3.612031 0.662256,0 0,3.612031 -0.662256,0 z"
id="path152"
style="fill:#ffffff" />
<path
d="m 43.189481,36.079582 0,-3.612031 1.063834,0 0.144626,0.0042 0.133204,0.0021 0.117991,0.0042 0.10278,0.0063 0.04566,0.0021 0.04757,0.0042 0.03997,0.0063 0.03809,0.0042 0.03424,0.0063 0.03045,0.0021 0.03045,0.0063 0.02282,0.0105 0.03427,0.0084 0.03424,0.01261 0.03236,0.01261 0.03427,0.01678 0.03045,0.01472 0.03233,0.021 0.02854,0.021 0.03236,0.01889 0.02854,0.02311 0.02854,0.02522 0.02666,0.02517 0.02473,0.02942 0.03045,0.02728 0.02473,0.02942 0.02285,0.0315 0.02663,0.03567 0.02285,0.0315 0.02094,0.03781 0.01903,0.03571 0.01712,0.03989 0.01712,0.03778 0.01906,0.04203 0.0114,0.042 0.01333,0.04411 0.01143,0.04411 0.0095,0.04407 0.0076,0.04831 0.0057,0.04831 0.0057,0.05039 0.0057,0.05039 0,0.05042 0.0038,0.0546 -0.0038,0.042 0,0.03778 -0.0019,0.042 -0.0038,0.03781 -0.002,0.03778 -0.0057,0.03571 -0.0057,0.03778 -0.0057,0.0336 -0.0095,0.03571 -0.0076,0.03571 -0.0095,0.0315 -0.0076,0.0315 -0.0114,0.0315 -0.01142,0.02939 -0.01334,0.0315 -0.01334,0.02522 -0.01521,0.02939 -0.01143,0.02731 -0.01712,0.02521 -0.01333,0.02517 -0.01521,0.02731 -0.01712,0.02517 -0.01716,0.021 -0.01712,0.02311 -0.01712,0.02311 -0.01712,0.021 -0.02094,0.01889 -0.01715,0.01892 -0.02091,0.01889 -0.01906,0.01889 -0.02091,0.01681 -0.01903,0.01678 -0.04379,0.0315 -0.04379,0.02731 -0.03994,0.02517 -0.04379,0.02311 -0.04379,0.01892 -0.04185,0.01889 -0.04379,0.01678 -0.04376,0.0084 -0.06282,0.01261 -0.06851,0.0105 -0.07611,0.0084 -0.08375,0.0105 -0.08564,0.0021 -0.09896,0.0042 -0.100871,0.0042 -0.108478,0 -0.435787,0 0,1.3629 -0.660378,0 0.660378,-2.996735 0,1.022719 0.367277,0 0.09136,-0.0042 0.08563,0 0.07802,-0.0063 0.07042,-0.0063 0.03045,-0.0021 0.03236,-0.0042 0.02663,-0.0063 0.02476,-0.0021 0.02282,-0.0063 0.02094,-0.0063 0.02094,-0.0063 0.01903,-0.0063 0.02854,-0.01678 0.03236,-0.01472 0.02854,-0.021 0.02663,-0.021 0.02285,-0.02311 0.02473,-0.02517 0.02094,-0.02731 0.02094,-0.02939 0.01712,-0.0315 0.01333,-0.02942 0.01524,-0.03567 0.0076,-0.03361 0.0095,-0.03571 0.0095,-0.03778 0,-0.03781 0.002,-0.03778 0,-0.02521 -0.002,-0.02311 0,-0.02522 -0.0038,-0.02311 -0.0057,-0.021 -0.0038,-0.01889 -0.0057,-0.02311 -0.0057,-0.02311 -0.0076,-0.01889 -0.0057,-0.01889 -0.0095,-0.01889 -0.01143,-0.01892 -0.0076,-0.01889 -0.01143,-0.01678 -0.01142,-0.01472 -0.01524,-0.01889 -0.0114,-0.01261 -0.01524,-0.01678 -0.01331,-0.01472 -0.01524,-0.0105 -0.01333,-0.01682 -0.01521,-0.0084 -0.01712,-0.01261 -0.01715,-0.0105 -0.01521,-0.0084 -0.01712,-0.0105 -0.01903,-0.0063 -0.01716,-0.0084 -0.01903,-0.0063 -0.01903,-0.0063 -0.02094,-0.0042 -0.01712,-0.0063 -0.03424,-0.0063 -0.03997,-0.0021 -0.04948,-0.0063 -0.05708,-0.0042 -0.06091,0 -0.07233,-0.0021 -0.07802,0 -0.08564,0 -0.323522,0 -0.660377,2.996736 0,0 1.23e-4,7.1e-5 z"
id="path154"
style="fill:#ffffff" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

@ -0,0 +1,223 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45.1"
width="65.937935"
height="55.615818"
version="1.0"
sodipodi:docname="label_switch_router.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata2003">
<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>Router</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
id="linearGradient9312">
<stop
style="stop-color:#3c8c8c;stop-opacity:1;"
offset="0"
id="stop9314" />
<stop
style="stop-color:#ffffff;stop-opacity:0.94117647;"
offset="1"
id="stop9316" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9312"
id="linearGradient2216"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.252829,0,0,14.082619,53.467529,3.4188377)"
x1="-1.0929121"
y1="0.63145506"
x2="-4.5832458"
y2="0.070047863" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="7.8958336"
inkscape:cx="22.434518"
inkscape:cy="33.547491"
inkscape:window-x="124"
inkscape:window-y="71"
inkscape:current-layer="svg1998" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.39215686;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4558"
width="64.552505"
height="54.450546"
x="1.3854325"
y="1.1652727"
ry="15.247324"
rx="32.212925"
inkscape:transform-center-x="8.4568136" />
<rect
style="opacity:1;fill:#3c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.015;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect9971"
width="64.499474"
height="52.040936"
x="0"
y="0.91024631"
ry="11.802391"
rx="32.249737"
inkscape:transform-center-x="8.2952569" />
<g
id="g3579"
transform="matrix(1.0000067,0,0,0.9900067,40.759311,2.3271372)">
<path
id="path3581"
d="M 23.677527,9.7502028 L 23.620489,9.1645488 L 23.506407,8.5788958 L 23.316272,8.0127658 L 23.03107,7.4271138 L 22.650803,6.8609828 L 22.213492,6.2948508 L 21.681115,5.7482428 L 21.072684,5.2211558 L 20.3882,4.6940668 L 19.627661,4.1865018 L 18.810084,3.6789348 L 17.916451,3.1908918 L 16.946765,2.7028468 L 15.920038,2.2733688 L 14.817258,1.8438898 L 13.657439,1.4144108 L 12.45959,1.0239748 L 11.18569,0.6725838 L 9.8737612,0.3211921 L 8.5047922,0.0088434012 L 7.0977972,-0.2839824 L 5.6527742,-0.5572882 L 4.1697252,-0.7915484 L 2.6676622,-1.0258099 L 1.1275722,-1.2015057 L -0.45054482,-1.3576797 L -2.0476748,-1.4943326 L -3.6448038,-1.5919412 L -5.2609448,-1.6700286 L -6.8961048,-1.7285939 L -8.5122458,-1.7285939 L -8.5122458,-1.7285939 L -10.147406,-1.7285939 L -11.78256,-1.6700286 L -13.379691,-1.5919412 L -14.995836,-1.4943326 L -16.592965,-1.3576797 L -18.152069,-1.2015057 L -19.711169,-1.0258099 L -21.213234,-0.7915484 L -22.696283,-0.5572882 L -24.141307,-0.2839824 L -25.548301,0.0088434012 L -26.917268,0.3211921 L -28.229199,0.6725838 L -29.503099,1.0239748 L -30.700949,1.4144108 L -31.860772,1.8438898 L -32.963548,2.2733688 L -33.990275,2.7028468 L -34.959963,3.1908918 L -35.853593,3.6789348 L -36.671173,4.1865018 L -37.431708,4.6940668 L -38.116197,5.2211558 L -38.705611,5.7482428 L -39.257001,6.2948508 L -39.694309,6.8609828 L -40.074582,7.4271138 L -40.359781,8.0127658 L -40.568933,8.5788958 L -40.683011,9.1645488 L -40.721038,9.7502028 L -40.721038,9.7502028 L -40.683011,10.335856 L -40.568933,10.901987 L -40.359781,11.48764 L -40.074582,12.03425 L -39.694309,12.619902 L -39.257001,13.166511 L -38.705611,13.732642 L -38.116197,14.279254 L -37.431708,14.806341 L -36.671173,15.294385 L -35.853593,15.801949 L -34.959963,16.309514 L -33.990275,16.758515 L -32.963548,17.207517 L -31.860772,17.656519 L -30.700949,18.066477 L -29.503099,18.456913 L -28.229199,18.808302 L -26.917268,19.159693 L -25.548301,19.472041 L -24.141307,19.784392 L -22.696283,20.038171 L -21.213234,20.291955 L -19.711169,20.506693 L -18.152069,20.682391 L -16.592965,20.838567 L -14.995836,20.975218 L -13.379691,21.072827 L -11.78256,21.150915 L -10.147406,21.20948 L -8.5122458,21.20948 L -8.5122458,21.20948 L -6.8961048,21.20948 L -5.2609448,21.150915 L -3.6448038,21.072827 L -2.0476748,20.975218 L -0.45054482,20.838567 L 1.1275722,20.682391 L 2.6676622,20.506693 L 4.1697252,20.291955 L 5.6527742,20.038171 L 7.0977972,19.784392 L 8.5047922,19.472041 L 9.8737612,19.159693 L 11.18569,18.808302 L 12.45959,18.456913 L 13.657439,18.066477 L 14.817258,17.656519 L 15.920038,17.207517 L 16.946765,16.758515 L 17.916451,16.309514 L 18.810084,15.801949 L 19.627661,15.294385 L 20.3882,14.806341 L 21.072684,14.279254 L 21.681115,13.732642 L 22.213492,13.166511 L 22.650803,12.619902 L 23.03107,12.03425 L 23.316272,11.48764 L 23.506407,10.901987 L 23.620489,10.335856 L 23.677527,9.7502028"
style="fill:#3c8c8c;fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g4160"
transform="matrix(1.0000067,0,0,0.9900067,-7.7865845e-2,0.5539583)">
<path
id="path4815"
d="M 64.514069,11.541297 L 64.457031,10.955643 L 64.342949,10.36999 L 64.152814,9.8038604 L 63.867612,9.2182077 L 63.487345,8.6520765 L 63.050034,8.0859452 L 62.517657,7.5393369 L 61.909226,7.0122499 L 61.224742,6.4851607 L 60.464203,5.9775955 L 59.646626,5.4700289 L 58.752993,4.9819859 L 57.783307,4.4939413 L 56.75658,4.0644625 L 55.6538,3.6349838 L 54.493981,3.2055052 L 53.296132,2.8150692 L 52.022232,2.4636777 L 50.710303,2.1122862 L 49.341334,1.7999375 L 47.934339,1.5071117 L 46.489316,1.2338059 L 45.006267,0.99954576 L 43.504204,0.76528425 L 41.964114,0.58958842 L 40.385997,0.43341443 L 38.788867,0.29676153 L 37.191738,0.19915292 L 35.575597,0.12106555 L 33.940437,0.06250017 L 32.324296,0.06250017 L 32.324296,0.06250017 L 30.689136,0.06250017 L 29.053981,0.12106555 L 27.45685,0.19915292 L 25.840705,0.29676153 L 24.243576,0.43341443 L 22.684472,0.58958842 L 21.125372,0.76528425 L 19.623307,0.99954576 L 18.140258,1.2338059 L 16.695234,1.5071117 L 15.28824,1.7999375 L 13.919273,2.1122862 L 12.607342,2.4636777 L 11.333442,2.8150692 L 10.135592,3.2055052 L 8.9757693,3.6349838 L 7.8729941,4.0644625 L 6.8462664,4.4939413 L 5.8765785,4.9819859 L 4.9829488,5.4700289 L 4.1653682,5.9775955 L 3.4048335,6.4851607 L 2.7203448,7.0122499 L 2.1309311,7.5393369 L 1.5795405,8.0859452 L 1.1422325,8.6520765 L 0.76195982,9.2182077 L 0.47676065,9.8038604 L 0.26760898,10.36999 L 0.15353084,10.955643 L 0.11550327,11.541297 L 0.11550327,11.541297 L 0.15353084,12.12695 L 0.26760898,12.693081 L 0.47676065,13.278734 L 0.76195982,13.825344 L 1.1422325,14.410996 L 1.5795405,14.957605 L 2.1309311,15.523736 L 2.7203448,16.070348 L 3.4048335,16.597435 L 4.1653682,17.085479 L 4.9829488,17.593043 L 5.8765785,18.100608 L 6.8462664,18.549609 L 7.8729941,18.998611 L 8.9757693,19.447613 L 10.135592,19.857571 L 11.333442,20.248007 L 12.607342,20.599396 L 13.919273,20.950787 L 15.28824,21.263135 L 16.695234,21.575486 L 18.140258,21.829265 L 19.623307,22.083049 L 21.125372,22.297787 L 22.684472,22.473485 L 24.243576,22.629661 L 25.840705,22.766312 L 27.45685,22.863921 L 29.053981,22.942009 L 30.689136,23.000574 L 32.324296,23.000574 L 32.324296,23.000574 L 33.940437,23.000574 L 35.575597,22.942009 L 37.191738,22.863921 L 38.788867,22.766312 L 40.385997,22.629661 L 41.964114,22.473485 L 43.504204,22.297787 L 45.006267,22.083049 L 46.489316,21.829265 L 47.934339,21.575486 L 49.341334,21.263135 L 50.710303,20.950787 L 52.022232,20.599396 L 53.296132,20.248007 L 54.493981,19.857571 L 55.6538,19.447613 L 56.75658,18.998611 L 57.783307,18.549609 L 58.752993,18.100608 L 59.646626,17.593043 L 60.464203,17.085479 L 61.224742,16.597435 L 61.909226,16.070348 L 62.517657,15.523736 L 63.050034,14.957605 L 63.487345,14.410996 L 63.867612,13.825344 L 64.152814,13.278734 L 64.342949,12.693081 L 64.457031,12.12695 L 64.514069,11.541297"
style="fill:url(#linearGradient2216);fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path4819"
d="M 33.023738,8.6936939 L 37.664889,10.327433 L 48.909313,5.4458969 L 53.946665,7.0599533 L 51.229891,3.0248142 L 38.061087,3.0248142 L 43.475766,4.225514 L 33.023738,8.6936939"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4821"
d="M 31.08049,13.161874 L 26.439334,11.528132 L 15.591104,16.429352 L 10.176425,14.775929 L 12.874332,19.244109 L 26.439334,19.244109 L 20.628458,17.630052 L 31.08049,13.161874"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4823"
d="M 11.327278,4.225514 L 15.968435,2.611458 L 27.212859,7.0599533 L 32.25021,5.8592533 L 29.552303,9.8943939 L 16.364632,9.8943939 L 21.779313,8.6936939 L 11.327278,4.225514"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4825"
d="M 53.154272,18.023723 L 48.513117,19.657467 L 37.664889,14.775929 L 32.25021,16.429352 L 34.966985,12.33516 L 48.513117,12.33516 L 42.70224,13.555544 L 53.154272,18.023723"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4827"
d="M 33.419936,9.1070493 L 38.061087,10.721105 L 49.286643,5.8592533 L 54.323994,7.4929926 L 51.60722,3.4184854 L 38.438415,3.4184854 L 43.871962,4.6191872 L 33.419936,9.1070493"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4829"
d="M 31.476681,13.555544 L 26.816665,11.941487 L 15.968435,16.803341 L 10.553753,15.189284 L 13.25166,19.657467 L 26.816665,19.657467 L 21.005786,18.023723 L 31.476681,13.555544"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4831"
d="M 11.723476,4.6191872 L 16.364632,3.0248142 L 27.609055,7.4929926 L 32.627541,6.2529266 L 29.929634,10.327433 L 16.741963,10.327433 L 22.175509,9.1070493 L 11.723476,4.6191872"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4833"
d="M 53.531602,18.43708 L 48.909313,20.070823 L 38.061087,15.189284 L 32.627541,16.803341 L 35.344315,12.7682 L 48.909313,12.7682 L 43.098437,13.9689 L 53.531602,18.43708"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
<g
id="g2348"
transform="matrix(17.401911,0,0,14.71664,42.176668,19.193922)">
<path
id="path2339"
d="M -1.142098,0.44241813 L -1.142098,0.62241813 L -0.780098,0.62241813 L -0.582098,1.0334181 L -0.385098,0.62241813 L -0.023097999,0.62241813 L -0.023097999,0.44241813 L 0.205902,0.67341813 L -0.023097999,0.90241813 L -0.023097999,0.73841813 L -0.286098,0.73841813 L -0.501098,1.1974181 L -0.286098,1.6564181 L -0.023097999,1.6564181 L -0.023097999,1.4924181 L 0.205902,1.7224181 L -0.023097999,1.9514181 L -0.023097999,1.7884181 L -0.385098,1.7884181 L -0.582098,1.3614181 L -0.780098,1.7884181 L -1.142098,1.7884181 L -1.142098,1.9514181 L -1.373098,1.7224181 L -1.142098,1.4924181 L -1.142098,1.6564181 L -0.895098,1.6564181 L -0.665098,1.1974181 L -0.895098,0.73841813 L -1.142098,0.73841813 L -1.142098,0.90241813 L -1.373098,0.67341813 L -1.142098,0.44241813"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2341"
d="M -1.126098,0.45941813 L -1.126098,0.64041813 L -0.764098,0.64041813 L -0.566098,1.0494181 L -0.369098,0.64041813 L -0.0080979988,0.64041813 L -0.0080979988,0.45941813 L 0.222902,0.68941813 L -0.0080979988,0.91941813 L -0.0080979988,0.75541813 L -0.270098,0.75541813 L -0.484098,1.2144181 L -0.270098,1.6734181 L -0.0080979988,1.6734181 L -0.0080979988,1.5094181 L 0.222902,1.7384181 L -0.0080979988,1.9684181 L -0.0080979988,1.8044181 L -0.369098,1.8044181 L -0.566098,1.3774181 L -0.764098,1.8044181 L -1.126098,1.8044181 L -1.126098,1.9684181 L -1.356098,1.7384181 L -1.126098,1.5094181 L -1.126098,1.6734181 L -0.879098,1.6734181 L -0.649098,1.2144181 L -0.879098,0.75541813 L -1.126098,0.75541813 L -1.126098,0.91941813 L -1.356098,0.68941813 L -1.126098,0.45941813"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

@ -0,0 +1,536 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="71.851372"
height="32.285366"
version="1.0"
sodipodi:docname="lightweight_ap.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>Lightweight Access Point</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
id="linearGradient6587">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#edeff3;stop-opacity:1;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119123,0,0,1.09281,-7.833718e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119124,0,0,1.09281,-7.8336875e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient11856"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.191597,0,0,15.33747,-2.6428869,0.1648577)"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="15.791667"
inkscape:cx="29.134315"
inkscape:cy="14.842697"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="svg1998" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 2.1663193,16.589602 L 2.1663193,32.285367 L 54.763443,32.285367 L 54.763443,16.589602 L 2.1663193,16.589602"
id="path13703" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 54.724715,18.919483 L 71.109211,3.1102265 L 71.109211,16.523256 L 54.724715,32.33251 L 54.724715,18.919483"
id="path14592" />
<path
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001"
d="M 54.781867,16.528044 L 71.793065,0.13423853 L 71.793065,14.043216 L 54.781867,30.437021 L 54.781867,16.528044"
id="path2009" />
<path
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.00110589"
d="M 0.21478248,16.474061 L 0.21478248,30.310372 L 55.069651,30.310372 L 55.069651,16.474061 L 0.21478248,16.474061"
id="path2007" />
<path
style="fill:url(#linearGradient11856);fill-opacity:1;stroke:none;stroke-width:0.01505287;stroke-opacity:1"
d="M 55.06494,16.770099 L 72.155489,0.17496232 L 16.934026,0.17496232 L -0.11094903,16.770099 L 55.06494,16.770099"
id="path2013" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2481"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2483"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2485"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2487"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2489"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2491"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2493"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2495"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2497"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2499"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2501"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2503"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2505"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2507"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2509"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2511"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.899931,23.450238 L 51.899931,23.401944 L 51.914244,23.365722 L 51.928558,23.329502 L 51.928558,23.293281 L 51.914244,23.269133 L 51.914244,23.232914 L 51.899931,23.196691 L 51.885618,23.172544 L 51.871304,23.136324 L 51.842676,23.112177 L 51.814049,23.088029 L 51.785421,23.075955 L 51.756794,23.039735 L 51.728166,23.027661 L 51.699538,23.015587 L 51.656597,23.003514 L 51.62797,22.99144 L 51.58503,22.979366 L 51.542088,22.979366 L 51.51346,22.979366 L 51.470518,22.979366 L 51.441891,22.979366 L 51.39895,22.99144 L 51.356008,23.003514 L 51.327381,23.015587 L 51.298753,23.015587 L 51.255812,23.039735 L 51.227184,23.075955 L 51.198557,23.100103 L 51.184243,23.124251 L 51.155616,23.160472 L 51.141301,23.196691 L 51.899931,23.450238"
id="path2513"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 43.311681,23.450238 L 43.311681,23.450238 L 43.411878,23.619269 L 43.497761,23.812448 L 43.61227,23.969404 L 43.712467,24.138434 L 43.812662,24.295392 L 43.912858,24.452349 L 44.013056,24.609307 L 44.127566,24.754191 L 44.213448,24.899074 L 44.327958,25.031884 L 44.41384,25.15262 L 44.52835,25.285429 L 44.628546,25.406165 L 44.728742,25.514828 L 44.814624,25.635565 L 44.929135,25.744228 L 45.029331,25.852891 L 45.129528,25.949479 L 45.229724,26.046068 L 45.32992,26.130584 L 45.430117,26.215098 L 45.530313,26.299615 L 45.630508,26.372056 L 45.730705,26.444498 L 45.816588,26.516939 L 45.931097,26.577308 L 46.031294,26.637676 L 46.13149,26.698045 L 46.231687,26.746339 L 46.331884,26.794633 L 46.446393,26.842929 L 46.532276,26.879148 L 46.632472,26.927443 L 46.732668,26.951591 L 46.832864,26.987811 L 46.93306,27.011959 L 47.033256,27.036106 L 47.133453,27.048179 L 47.23365,27.072326 L 47.348159,27.0844 L 47.434041,27.0844 L 47.548552,27.096474 L 47.634435,27.096474 L 47.73463,27.096474 L 47.834826,27.0844 L 47.920708,27.072326 L 48.020905,27.072326 L 48.121101,27.048179 L 48.206984,27.036106 L 48.307181,27.011959 L 48.393063,26.987811 L 48.478945,26.963665 L 48.564828,26.939517 L 48.665025,26.903296 L 48.736592,26.879148 L 48.822475,26.842929 L 48.908357,26.794633 L 48.99424,26.758412 L 49.065809,26.710118 L 49.151691,26.673897 L 49.309143,26.589382 L 49.452281,26.492793 L 49.595418,26.38413 L 49.738556,26.275467 L 49.867379,26.166805 L 49.996203,26.046068 L 50.125027,25.937405 L 50.253851,25.816669 L 50.36836,25.695932 L 50.482871,25.575197 L 50.597381,25.442388 L 50.697577,25.309577 L 50.797773,25.188841 L 50.897968,25.068104 L 50.998164,24.935294 L 51.084047,24.814558 L 51.169929,24.693822 L 51.241499,24.573086 L 51.39895,24.35576 L 51.527773,24.138434 L 51.62797,23.945256 L 51.728166,23.776226 L 51.85699,23.546827 L 51.899931,23.450238 L 51.141301,23.196691 L 51.09836,23.269133 L 50.983851,23.498533 L 50.897968,23.655489 L 50.797773,23.836594 L 50.668949,24.029772 L 50.540126,24.235023 L 50.468557,24.35576 L 50.382675,24.464424 L 50.296792,24.573086 L 50.210909,24.693822 L 50.125027,24.802485 L 50.024831,24.923221 L 49.924634,25.031884 L 49.838751,25.15262 L 49.738556,25.261282 L 49.624045,25.369945 L 49.52385,25.478608 L 49.40934,25.575197 L 49.294829,25.68386 L 49.180319,25.768375 L 49.065809,25.864964 L 48.936986,25.949479 L 48.822475,26.021922 L 48.693651,26.106436 L 48.636397,26.142658 L 48.579142,26.154731 L 48.507573,26.203026 L 48.450319,26.215098 L 48.393063,26.239246 L 48.321495,26.275467 L 48.264239,26.299615 L 48.206984,26.311688 L 48.135415,26.335835 L 48.07816,26.347909 L 48.006591,26.359983 L 47.949336,26.372056 L 47.892082,26.38413 L 47.820512,26.396203 L 47.763257,26.396203 L 47.691689,26.408277 L 47.634435,26.408277 L 47.562866,26.408277 L 47.491296,26.396203 L 47.434041,26.396203 L 47.362474,26.396203 L 47.305218,26.372056 L 47.23365,26.372056 L 47.162081,26.347909 L 47.090511,26.335835 L 47.018943,26.311688 L 46.947374,26.287541 L 46.875805,26.25132 L 46.804237,26.227172 L 46.718354,26.203026 L 46.646786,26.154731 L 46.560903,26.11851 L 46.489334,26.070216 L 46.417766,26.021922 L 46.331884,25.973627 L 46.246001,25.925332 L 46.160119,25.852891 L 46.088549,25.792522 L 46.002667,25.720081 L 45.916783,25.659712 L 45.816588,25.575197 L 45.74502,25.490682 L 45.644823,25.406165 L 45.55894,25.309577 L 45.473058,25.212988 L 45.372862,25.116398 L 45.286979,25.007736 L 45.201097,24.899074 L 45.1009,24.778338 L 45.015018,24.669675 L 44.914822,24.536864 L 44.814624,24.391982 L 44.728742,24.259171 L 44.628546,24.126361 L 44.52835,23.969404 L 44.442468,23.824521 L 44.342271,23.655489 L 44.242075,23.498533 L 44.14188,23.329502 L 44.041683,23.148398 L 44.041683,23.148398 L 43.311681,23.450238 L 43.311681,23.450238 L 43.311681,23.450238"
id="path2515"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.212061,23.401944 L 36.212061,23.401944 L 36.255003,23.329502 L 36.369513,23.112177 L 36.455395,22.95522 L 36.555591,22.774116 L 36.684415,22.580938 L 36.81324,22.363612 L 36.884808,22.254949 L 36.970691,22.146286 L 37.04226,22.025549 L 37.128142,21.916886 L 37.228337,21.796151 L 37.31422,21.675414 L 37.414415,21.566752 L 37.514612,21.446016 L 37.614808,21.349427 L 37.729319,21.22869 L 37.829515,21.120028 L 37.944025,21.02344 L 38.044221,20.92685 L 38.158732,20.830261 L 38.287555,20.733673 L 38.402064,20.649157 L 38.530888,20.576714 L 38.659712,20.504274 L 38.716968,20.468052 L 38.774222,20.443905 L 38.831477,20.419757 L 38.903046,20.383537 L 38.960302,20.359389 L 39.03187,20.335242 L 39.089124,20.311095 L 39.14638,20.286947 L 39.217949,20.2628 L 39.275204,20.2628 L 39.332459,20.238654 L 39.389714,20.22658 L 39.461282,20.22658 L 39.518537,20.202433 L 39.590106,20.202433 L 39.647361,20.202433 L 39.71893,20.202433 L 39.7905,20.202433 L 39.847754,20.202433 L 39.919323,20.202433 L 39.976578,20.22658 L 40.048147,20.22658 L 40.119715,20.22658 L 40.191284,20.2628 L 40.262853,20.2628 L 40.334421,20.299021 L 40.391676,20.323169 L 40.463245,20.335242 L 40.549127,20.371463 L 40.635009,20.407684 L 40.706579,20.443905 L 40.778147,20.480126 L 40.86403,20.528421 L 40.935599,20.576714 L 41.021482,20.62501 L 41.107364,20.685377 L 41.193246,20.733673 L 41.264816,20.806113 L 41.350698,20.878555 L 41.43658,20.963071 L 41.522463,21.02344 L 41.608345,21.120028 L 41.708541,21.204544 L 41.794424,21.289059 L 41.880306,21.385647 L 41.980503,21.482237 L 42.066385,21.5909 L 42.152267,21.711636 L 42.252464,21.820298 L 42.338347,21.941034 L 42.438542,22.073845 L 42.538739,22.206653 L 42.624621,22.339464 L 42.724817,22.472275 L 42.825014,22.629231 L 42.910895,22.786188 L 43.011092,22.943146 L 43.11129,23.100103 L 43.211485,23.269133 L 43.311681,23.450238 L 44.041683,23.148398 L 43.941486,22.979366 L 43.84129,22.798262 L 43.741093,22.629231 L 43.640897,22.460201 L 43.540701,22.303243 L 43.440505,22.146286 L 43.340309,21.98933 L 43.225798,21.844446 L 43.139916,21.711636 L 43.025407,21.578826 L 42.92521,21.446016 L 42.825014,21.313207 L 42.724817,21.19247 L 42.624621,21.083808 L 42.538739,20.963071 L 42.424229,20.854408 L 42.324032,20.745745 L 42.223836,20.649157 L 42.123641,20.564641 L 42.023443,20.480126 L 41.923248,20.383537 L 41.823052,20.299021 L 41.722854,20.22658 L 41.622658,20.166211 L 41.522463,20.081697 L 41.422265,20.033402 L 41.32207,19.96096 L 41.221874,19.900592 L 41.121677,19.852297 L 41.021482,19.804003 L 40.906971,19.755707 L 40.821088,19.719487 L 40.706579,19.683267 L 40.606382,19.647046 L 40.506186,19.622898 L 40.40599,19.586676 L 40.305794,19.562531 L 40.205598,19.550457 L 40.105401,19.526309 L 40.005206,19.526309 L 39.905009,19.514236 L 39.804812,19.502162 L 39.704617,19.502162 L 39.604419,19.502162 L 39.518537,19.526309 L 39.418342,19.526309 L 39.318145,19.526309 L 39.232263,19.550457 L 39.14638,19.562531 L 39.046183,19.59875 L 38.960302,19.622898 L 38.874419,19.647046 L 38.788536,19.671194 L 38.68834,19.695339 L 38.602457,19.731561 L 38.530888,19.767782 L 38.445006,19.804003 L 38.359123,19.840224 L 38.287555,19.888517 L 38.201673,19.924739 L 38.044221,20.021328 L 37.901085,20.117917 L 37.757946,20.22658 L 37.600496,20.323169 L 37.471671,20.431831 L 37.342848,20.552567 L 37.214023,20.673304 L 37.099514,20.794041 L 36.970691,20.914777 L 36.856181,21.035512 L 36.755985,21.168323 L 36.641474,21.289059 L 36.541278,21.409795 L 36.455395,21.542605 L 36.355199,21.663341 L 36.269317,21.796151 L 36.16912,21.916886 L 36.097552,22.025549 L 35.954414,22.254949 L 35.82559,22.472275 L 35.711082,22.653379 L 35.625199,22.82241 L 35.496374,23.051809 L 35.453433,23.160472 L 35.453433,23.160472 L 36.212061,23.401944 L 36.212061,23.401944 L 36.212061,23.401944"
id="path2517"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.623812,23.414018 L 27.623812,23.414018 L 27.724007,23.595121 L 27.838518,23.776226 L 27.938713,23.945256 L 28.038909,24.114288 L 28.139107,24.271245 L 28.239303,24.428201 L 28.339499,24.573086 L 28.439696,24.730042 L 28.539891,24.862853 L 28.640088,24.995662 L 28.740284,25.128472 L 28.84048,25.249209 L 28.940676,25.369945 L 29.040873,25.490682 L 29.141069,25.599344 L 29.241265,25.708007 L 29.355776,25.816669 L 29.455972,25.913259 L 29.556168,26.009848 L 29.656365,26.094363 L 29.742247,26.178878 L 29.842443,26.263394 L 29.956953,26.335835 L 30.057148,26.408277 L 30.157345,26.480719 L 30.257542,26.541087 L 30.357738,26.601456 L 30.457935,26.661823 L 30.558131,26.710118 L 30.658327,26.770486 L 30.758523,26.818781 L 30.858719,26.842929 L 30.958915,26.879148 L 31.059112,26.927443 L 31.159308,26.951591 L 31.273818,26.987811 L 31.374014,26.999885 L 31.47421,27.024033 L 31.574408,27.036106 L 31.674603,27.048179 L 31.774799,27.048179 L 31.874995,27.060253 L 31.960878,27.060253 L 32.061074,27.060253 L 32.146957,27.048179 L 32.247152,27.036106 L 32.34735,27.036106 L 32.447546,27.011959 L 32.533429,26.987811 L 32.619311,26.975737 L 32.719507,26.951591 L 32.80539,26.927443 L 32.891272,26.891223 L 32.977154,26.879148 L 33.063037,26.842929 L 33.148919,26.794633 L 33.234801,26.758412 L 33.30637,26.722192 L 33.392253,26.68597 L 33.478136,26.637676 L 33.621273,26.541087 L 33.778725,26.444498 L 33.921862,26.347909 L 34.064999,26.239246 L 34.193823,26.142658 L 34.336961,26.009848 L 34.45147,25.889111 L 34.580294,25.768375 L 34.694805,25.659712 L 34.809315,25.526902 L 34.923824,25.406165 L 35.024021,25.285429 L 35.124216,25.15262 L 35.224412,25.031884 L 35.324609,24.899074 L 35.396177,24.778338 L 35.48206,24.669675 L 35.567943,24.536864 L 35.711082,24.319539 L 35.839905,24.102215 L 35.954414,23.909036 L 36.040297,23.740005 L 36.16912,23.498533 L 36.212061,23.401944 L 35.453433,23.160472 L 35.424805,23.232914 L 35.295982,23.462311 L 35.210099,23.619269 L 35.109903,23.7883 L 34.995393,23.993552 L 34.852256,24.198804 L 34.780687,24.319539 L 34.694805,24.428201 L 34.623236,24.548938 L 34.537353,24.657601 L 34.45147,24.766264 L 34.351274,24.887 L 34.251078,24.995662 L 34.150882,25.116398 L 34.050685,25.225061 L 33.936175,25.333725 L 33.83598,25.442388 L 33.721469,25.551049 L 33.60696,25.647638 L 33.506764,25.744228 L 33.37794,25.828743 L 33.263429,25.913259 L 33.148919,25.9857 L 33.020096,26.058142 L 32.948527,26.094363 L 32.905586,26.130584 L 32.834017,26.154731 L 32.776762,26.190952 L 32.705193,26.215098 L 32.647939,26.239246 L 32.590684,26.25132 L 32.519116,26.275467 L 32.46186,26.299615 L 32.390291,26.311688 L 32.333035,26.335835 L 32.27578,26.335835 L 32.204211,26.347909 L 32.146957,26.359983 L 32.089703,26.372056 L 32.018133,26.372056 L 31.960878,26.372056 L 31.889309,26.372056 L 31.832055,26.372056 L 31.760486,26.359983 L 31.688917,26.347909 L 31.631662,26.347909 L 31.560094,26.335835 L 31.488526,26.311688 L 31.416956,26.299615 L 31.345387,26.275467 L 31.273818,26.25132 L 31.202249,26.227172 L 31.13068,26.203026 L 31.044797,26.154731 L 30.97323,26.11851 L 30.901661,26.082289 L 30.815777,26.046068 L 30.729896,25.9857 L 30.658327,25.937405 L 30.572444,25.889111 L 30.486562,25.828743 L 30.400679,25.756301 L 30.329111,25.695932 L 30.243229,25.611418 L 30.157345,25.538976 L 30.071463,25.454461 L 29.971267,25.369945 L 29.885384,25.285429 L 29.799501,25.188841 L 29.699306,25.068104 L 29.613423,24.971516 L 29.52754,24.862853 L 29.427345,24.742117 L 29.341463,24.633454 L 29.241265,24.500644 L 29.141069,24.367834 L 29.055186,24.222951 L 28.954991,24.090141 L 28.854794,23.945256 L 28.768911,23.7883 L 28.668716,23.631343 L 28.56852,23.462311 L 28.468322,23.293281 L 28.368127,23.124251 L 28.368127,23.124251 L 27.623812,23.414018 L 27.623812,23.414018 L 27.623812,23.414018"
id="path2519"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.567133,23.438165 L 20.567133,23.438165 L 20.59576,23.365722 L 20.71027,23.136324 L 20.796153,22.979366 L 20.896349,22.798262 L 21.025173,22.59301 L 21.153997,22.375685 L 21.239879,22.279097 L 21.311448,22.15836 L 21.39733,22.049697 L 21.483213,21.92896 L 21.569096,21.808224 L 21.654978,21.699562 L 21.755174,21.578826 L 21.855371,21.470163 L 21.955567,21.349427 L 22.070078,21.240764 L 22.170273,21.132101 L 22.284784,21.02344 L 22.399293,20.92685 L 22.49949,20.830261 L 22.628314,20.733673 L 22.742823,20.649157 L 22.871647,20.576714 L 23.000471,20.504274 L 23.057727,20.468052 L 23.114982,20.431831 L 23.172236,20.39561 L 23.243805,20.371463 L 23.30106,20.347316 L 23.358316,20.323169 L 23.429882,20.299021 L 23.472823,20.286947 L 23.558706,20.2628 L 23.615962,20.238654 L 23.673216,20.22658 L 23.73047,20.22658 L 23.80204,20.202433 L 23.873609,20.202433 L 23.930864,20.190359 L 24.002433,20.190359 L 24.059688,20.190359 L 24.131257,20.190359 L 24.188512,20.190359 L 24.26008,20.190359 L 24.317335,20.202433 L 24.388905,20.202433 L 24.460473,20.22658 L 24.517728,20.22658 L 24.589296,20.250727 L 24.660865,20.2628 L 24.746747,20.299021 L 24.818316,20.323169 L 24.889884,20.359389 L 24.961454,20.383537 L 25.033023,20.419757 L 25.104591,20.455978 L 25.176161,20.504274 L 25.262043,20.552567 L 25.347925,20.612937 L 25.433808,20.661231 L 25.505377,20.721599 L 25.591259,20.781967 L 25.677142,20.842334 L 25.777338,20.92685 L 25.848906,20.999292 L 25.934789,21.083808 L 26.034985,21.180397 L 26.120868,21.264911 L 26.221064,21.349427 L 26.292634,21.458089 L 26.392828,21.566752 L 26.493026,21.675414 L 26.578908,21.796151 L 26.664791,21.916886 L 26.764987,22.037623 L 26.850869,22.170434 L 26.951065,22.303243 L 27.051261,22.448127 L 27.151458,22.59301 L 27.237341,22.749968 L 27.337537,22.906924 L 27.437732,23.075955 L 27.523615,23.232914 L 27.623812,23.414018 L 28.368127,23.124251 L 28.267931,22.943146 L 28.167734,22.762042 L 28.067537,22.59301 L 27.967341,22.436053 L 27.852832,22.267023 L 27.766949,22.110065 L 27.666753,21.953108 L 27.566556,21.820298 L 27.452047,21.675414 L 27.366165,21.542605 L 27.251654,21.409795 L 27.151458,21.276985 L 27.051261,21.168323 L 26.951065,21.05966 L 26.850869,20.938923 L 26.750673,20.830261 L 26.650476,20.721599 L 26.564594,20.62501 L 26.450084,20.540494 L 26.349887,20.443905 L 26.249692,20.359389 L 26.149496,20.286947 L 26.063613,20.202433 L 25.949103,20.129991 L 25.848906,20.069623 L 25.74871,19.99718 L 25.648514,19.936813 L 25.548318,19.876444 L 25.448122,19.82815 L 25.347925,19.779856 L 25.24773,19.731561 L 25.147533,19.695339 L 25.047337,19.65912 L 24.94714,19.622898 L 24.846943,19.59875 L 24.746747,19.562531 L 24.646552,19.550457 L 24.546355,19.526309 L 24.446159,19.514236 L 24.345963,19.502162 L 24.231453,19.490088 L 24.145571,19.490088 L 24.03106,19.490088 L 23.945177,19.490088 L 23.844981,19.502162 L 23.744785,19.514236 L 23.658903,19.526309 L 23.558706,19.550457 L 23.472823,19.562531 L 23.386942,19.586676 L 23.286746,19.59875 L 23.18655,19.622898 L 23.114982,19.65912 L 23.029099,19.695339 L 22.943216,19.731561 L 22.857333,19.767782 L 22.771451,19.804003 L 22.685568,19.840224 L 22.614,19.888517 L 22.513803,19.924739 L 22.384979,20.021328 L 22.241843,20.117917 L 22.084392,20.22658 L 21.955567,20.335242 L 21.81243,20.443905 L 21.683606,20.552567 L 21.554783,20.685377 L 21.425958,20.806113 L 21.311448,20.92685 L 21.196938,21.05966 L 21.082428,21.180397 L 20.982232,21.301133 L 20.882036,21.433943 L 20.796153,21.566752 L 20.695957,21.675414 L 20.610074,21.808224 L 20.524192,21.92896 L 20.43831,22.049697 L 20.295171,22.279097 L 20.166348,22.49642 L 20.051839,22.689599 L 19.965957,22.846557 L 19.837133,23.100103 L 19.808505,23.196691 L 19.808505,23.196691 L 20.567133,23.438165 L 20.567133,23.438165 L 20.567133,23.438165"
id="path2521"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.978883,23.450238 L 11.978883,23.450238 L 12.07908,23.619269 L 12.193588,23.812448 L 12.279472,23.969404 L 12.393982,24.138434 L 12.494178,24.295392 L 12.594375,24.452349 L 12.694571,24.609307 L 12.794767,24.754191 L 12.894963,24.899074 L 12.995159,25.031884 L 13.095355,25.15262 L 13.195551,25.285429 L 13.295748,25.406165 L 13.395944,25.514828 L 13.49614,25.635565 L 13.596338,25.744228 L 13.710846,25.852891 L 13.796729,25.949479 L 13.911239,26.046068 L 13.997122,26.130584 L 14.097318,26.215098 L 14.197514,26.299615 L 14.29771,26.372056 L 14.397906,26.444498 L 14.512417,26.516939 L 14.5983,26.577308 L 14.712809,26.637676 L 14.813005,26.698045 L 14.913201,26.746339 L 15.013398,26.794633 L 15.113594,26.842929 L 15.21379,26.879148 L 15.313986,26.927443 L 15.414183,26.951591 L 15.514379,26.987811 L 15.614576,27.011959 L 15.714772,27.036106 L 15.829282,27.048179 L 15.915165,27.072326 L 16.029674,27.072326 L 16.129871,27.0844 L 16.215754,27.096474 L 16.315949,27.096474 L 16.416145,27.0844 L 16.502028,27.0844 L 16.616538,27.072326 L 16.702421,27.072326 L 16.802617,27.048179 L 16.902813,27.036106 L 16.974382,27.011959 L 17.074579,26.987811 L 17.16046,26.951591 L 17.246344,26.939517 L 17.332226,26.891223 L 17.418108,26.867075 L 17.50399,26.842929 L 17.589873,26.782559 L 17.675756,26.746339 L 17.747324,26.710118 L 17.818894,26.673897 L 17.976345,26.589382 L 18.133796,26.492793 L 18.276933,26.38413 L 18.405757,26.275467 L 18.534581,26.154731 L 18.677718,26.046068 L 18.806542,25.937405 L 18.921053,25.804596 L 19.049876,25.68386 L 19.164386,25.575197 L 19.264582,25.442388 L 19.364779,25.309577 L 19.464974,25.188841 L 19.56517,25.056031 L 19.665367,24.935294 L 19.75125,24.814558 L 19.837133,24.681749 L 19.923015,24.573086 L 20.051839,24.331613 L 20.194976,24.126361 L 20.295171,23.933184 L 20.395368,23.776226 L 20.509878,23.534754 L 20.567133,23.438165 L 19.808505,23.196691 L 19.75125,23.269133 L 19.636739,23.486458 L 19.56517,23.655489 L 19.464974,23.824521 L 19.336151,24.029772 L 19.207326,24.235023 L 19.135759,24.343687 L 19.049876,24.452349 L 18.963994,24.573086 L 18.892425,24.681749 L 18.792229,24.802485 L 18.706346,24.923221 L 18.606149,25.031884 L 18.505953,25.15262 L 18.405757,25.261282 L 18.291247,25.369945 L 18.191051,25.466534 L 18.076541,25.575197 L 17.962031,25.671786 L 17.847522,25.768375 L 17.733011,25.864964 L 17.618501,25.949479 L 17.489676,26.021922 L 17.375167,26.094363 L 17.317912,26.142658 L 17.260657,26.154731 L 17.189088,26.190952 L 17.131833,26.215098 L 17.060264,26.239246 L 17.017323,26.275467 L 16.945755,26.299615 L 16.874186,26.311688 L 16.816932,26.335835 L 16.759676,26.347909 L 16.688108,26.359983 L 16.630851,26.372056 L 16.573597,26.38413 L 16.502028,26.396203 L 16.430459,26.396203 L 16.373203,26.396203 L 16.301636,26.408277 L 16.24438,26.408277 L 16.187126,26.396203 L 16.115556,26.396203 L 16.043988,26.396203 L 15.97242,26.372056 L 15.915165,26.372056 L 15.843595,26.347909 L 15.772027,26.335835 L 15.700458,26.311688 L 15.62889,26.287541 L 15.543006,26.25132 L 15.485752,26.227172 L 15.399869,26.203026 L 15.3283,26.154731 L 15.242418,26.11851 L 15.170848,26.070216 L 15.084966,26.021922 L 15.013398,25.973627 L 14.927516,25.913259 L 14.841633,25.852891 L 14.755751,25.792522 L 14.669869,25.720081 L 14.583986,25.647638 L 14.498103,25.575197 L 14.41222,25.490682 L 14.326338,25.406165 L 14.240455,25.309577 L 14.154574,25.212988 L 14.054376,25.116398 L 13.95418,25.007736 L 13.868298,24.899074 L 13.782416,24.778338 L 13.68222,24.669675 L 13.596338,24.536864 L 13.49614,24.391982 L 13.395944,24.259171 L 13.310061,24.126361 L 13.209865,23.969404 L 13.123983,23.824521 L 13.023787,23.655489 L 12.92359,23.498533 L 12.823395,23.329502 L 12.723198,23.148398 L 12.723198,23.148398 L 11.978883,23.450238 L 11.978883,23.450238 L 11.978883,23.450238"
id="path2523"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.9078912,23.401944 L 4.9508321,23.329502 L 5.0653424,23.100103 L 5.1512243,22.943146 L 5.2514211,22.762042 L 5.3802448,22.568864 L 5.5090684,22.363612 L 5.5806369,22.242875 L 5.6522063,22.146286 L 5.738089,22.025549 L 5.8239708,21.916886 L 5.9241669,21.796151 L 6.0100496,21.675414 L 6.1102465,21.566752 L 6.1961275,21.446016 L 6.3106386,21.337353 L 6.4108347,21.22869 L 6.525345,21.120028 L 6.625541,21.02344 L 6.7400513,20.92685 L 6.8688742,20.830261 L 6.969071,20.733673 L 7.0978947,20.649157 L 7.2124051,20.576714 L 7.3412278,20.504274 L 7.3984829,20.468052 L 7.4700531,20.431831 L 7.5129941,20.407684 L 7.5845617,20.383537 L 7.6418177,20.359389 L 7.7133854,20.335242 L 7.7706412,20.311095 L 7.8278956,20.286947 L 7.8994649,20.2628 L 7.9567201,20.2628 L 8.0139744,20.238654 L 8.0855428,20.22658 L 8.1427989,20.22658 L 8.2143673,20.202433 L 8.2716226,20.202433 L 8.3431909,20.202433 L 8.4004462,20.202433 L 8.4720146,20.202433 L 8.5292698,20.202433 L 8.6008383,20.202433 L 8.6580935,20.202433 L 8.7439761,20.22658 L 8.8012313,20.22658 L 8.8727997,20.250727 L 8.9443683,20.2628 L 9.0159368,20.286947 L 9.087506,20.323169 L 9.1590746,20.335242 L 9.2306431,20.371463 L 9.3022124,20.407684 L 9.3880943,20.443905 L 9.4596637,20.480126 L 9.5312321,20.528421 L 9.6171148,20.576714 L 9.7029973,20.62501 L 9.7745663,20.685377 L 9.8747623,20.733673 L 9.9463303,20.806113 L 10.046527,20.878555 L 10.132409,20.963071 L 10.203978,21.02344 L 10.289861,21.120028 L 10.390057,21.19247 L 10.47594,21.289059 L 10.561822,21.385647 L 10.647704,21.482237 L 10.733586,21.5909 L 10.833783,21.711636 L 10.93398,21.820298 L 11.019863,21.941034 L 11.105745,22.073845 L 11.20594,22.206653 L 11.306137,22.339464 L 11.406333,22.472275 L 11.492216,22.629231 L 11.592411,22.786188 L 11.692608,22.943146 L 11.792804,23.100103 L 11.878686,23.269133 L 11.978883,23.450238 L 12.723198,23.148398 L 12.623002,22.979366 L 12.522806,22.798262 L 12.42261,22.629231 L 12.322413,22.460201 L 12.207903,22.303243 L 12.107706,22.146286 L 12.00751,21.98933 L 11.907315,21.844446 L 11.807118,21.711636 L 11.706922,21.578826 L 11.606726,21.446016 L 11.506529,21.313207 L 11.406333,21.19247 L 11.306137,21.083808 L 11.20594,20.963071 L 11.105745,20.854408 L 11.005549,20.745745 L 10.905352,20.649157 L 10.805156,20.564641 L 10.70496,20.480126 L 10.604764,20.383537 L 10.504567,20.311095 L 10.404371,20.22658 L 10.304174,20.166211 L 10.203978,20.081697 L 10.103782,20.021328 L 10.003585,19.96096 L 9.9033893,19.900592 L 9.8031933,19.852297 L 9.7029973,19.804003 L 9.6028006,19.755707 L 9.5026046,19.719487 L 9.4024084,19.683267 L 9.3022124,19.647046 L 9.2020155,19.622898 L 9.1018194,19.586676 L 8.9873101,19.562531 L 8.8871131,19.550457 L 8.786917,19.526309 L 8.7010344,19.526309 L 8.6008383,19.514236 L 8.486328,19.502162 L 8.4004462,19.502162 L 8.30025,19.502162 L 8.200054,19.526309 L 8.0998571,19.526309 L 8.0139744,19.526309 L 7.9137783,19.550457 L 7.8278956,19.562531 L 7.7420138,19.586676 L 7.6418177,19.622898 L 7.5559341,19.647046 L 7.4700531,19.671194 L 7.3841695,19.695339 L 7.2982878,19.731561 L 7.2124051,19.767782 L 7.1265223,19.804003 L 7.0406396,19.840224 L 6.969071,19.876444 L 6.8831883,19.924739 L 6.7400513,20.009254 L 6.5826001,20.105843 L 6.4394623,20.22658 L 6.2963246,20.323169 L 6.1675009,20.431831 L 6.0243629,20.552567 L 5.9098536,20.673304 L 5.7810299,20.781967 L 5.6665187,20.902704 L 5.5520094,21.035512 L 5.4374999,21.156249 L 5.337303,21.289059 L 5.237107,21.409795 L 5.1369108,21.542605 L 5.0510281,21.663341 L 4.9508321,21.784078 L 4.8792636,21.904814 L 4.7933809,22.025549 L 4.6502439,22.254949 L 4.5214194,22.460201 L 4.4069092,22.653379 L 4.3210273,22.82241 L 4.1922037,23.051809 L 4.1492618,23.148398 L 4.9078912,23.401944"
id="path2525"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.1492618,23.148398 L 4.1349484,23.196691 L 4.1206351,23.232914 L 4.1206351,23.269133 L 4.1206351,23.305354 L 4.1206351,23.329502 L 4.1349484,23.377796 L 4.1492618,23.401944 L 4.1635752,23.426091 L 4.1778902,23.462311 L 4.1922037,23.486458 L 4.2208311,23.510607 L 4.2494588,23.534754 L 4.2780864,23.5589 L 4.3210273,23.570974 L 4.3496539,23.583048 L 4.3925958,23.595121 L 4.4212234,23.607195 L 4.4498509,23.619269 L 4.4927928,23.619269 L 4.5357337,23.619269 L 4.5786746,23.619269 L 4.6073021,23.619269 L 4.6502439,23.619269 L 4.6788706,23.595121 L 4.7218124,23.595121 L 4.7504399,23.583048 L 4.7790676,23.5589 L 4.8220085,23.534754 L 4.8363218,23.498533 L 4.8649494,23.474385 L 4.893577,23.438165 L 4.9078912,23.401944 L 4.1492618,23.148398"
id="path2527"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 5.294362,23.075955 L 5.2800486,23.039735 L 5.2514211,23.003514 L 5.2227936,22.95522 L 5.2084793,22.918998 L 5.1798517,22.894851 L 5.1512243,22.858631 L 5.1225975,22.846557 L 5.0939699,22.82241 L 5.0653424,22.786188 L 5.0367148,22.762042 L 4.9937729,22.749968 L 4.9794596,22.72582 L 4.9078912,22.689599 L 4.8363218,22.665452 L 4.7504399,22.653379 L 4.6931849,22.641305 L 4.6073021,22.629231 L 4.5357337,22.629231 L 4.4498509,22.629231 L 4.3925958,22.641305 L 4.306713,22.653379 L 4.2351446,22.677526 L 4.1635752,22.701673 L 4.0920075,22.737894 L 4.0347515,22.774116 L 3.9774973,22.82241 L 3.9202421,22.846557 L 3.8773012,22.906924 L 3.8343594,22.95522 L 3.7771051,23.015587 L 3.7627918,23.039735 L 3.7627918,23.075955 L 3.7341633,23.100103 L 3.7341633,23.136324 L 3.71985,23.172544 L 3.71985,23.196691 L 3.7055358,23.232914 L 3.7055358,23.269133 L 3.7055358,23.305354 L 3.7055358,23.329502 L 3.71985,23.377796 L 3.71985,23.414018 L 3.71985,23.450238 L 3.7341633,23.486458 L 3.7484767,23.522681 L 3.7627918,23.570974 L 5.294362,23.075955"
id="path2529"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.621039,23.015587 L 11.621039,23.015587 L 11.535157,23.184618 L 11.434961,23.353649 L 11.349078,23.498533 L 11.248881,23.655489 L 11.148686,23.812448 L 11.04849,23.95733 L 10.962608,24.090141 L 10.876725,24.222951 L 10.790843,24.35576 L 10.690645,24.476497 L 10.604764,24.585159 L 10.51888,24.693822 L 10.418685,24.802485 L 10.347115,24.899074 L 10.261233,24.995662 L 10.175351,25.092252 L 10.089468,25.188841 L 10.003585,25.261282 L 9.9320173,25.333725 L 9.8461353,25.406165 L 9.7602523,25.478608 L 9.6886833,25.538976 L 9.6171148,25.599344 L 9.5312321,25.659712 L 9.4596637,25.695932 L 9.3880943,25.756301 L 9.33084,25.792522 L 9.2592706,25.828743 L 9.1733879,25.864964 L 9.130447,25.889111 L 9.0588785,25.925332 L 9.0016234,25.949479 L 8.930055,25.973627 L 8.8727997,25.9857 L 8.829858,26.009848 L 8.7726037,26.009848 L 8.7153486,26.033996 L 8.6580935,26.046068 L 8.6151525,26.046068 L 8.5722117,26.058142 L 8.5149556,26.058142 L 8.4720146,26.058142 L 8.4147595,26.058142 L 8.3718186,26.058142 L 8.3288768,26.058142 L 8.2716226,26.046068 L 8.2143673,26.046068 L 8.1857398,26.046068 L 8.1284846,26.021922 L 8.0855428,26.009848 L 8.0282885,26.009848 L 7.9853468,25.9857 L 7.9280916,25.973627 L 7.8851507,25.949479 L 7.8278956,25.937405 L 7.7849547,25.913259 L 7.7276994,25.889111 L 7.6847578,25.864964 L 7.6275035,25.840817 L 7.5845617,25.816669 L 7.4700531,25.756301 L 7.355542,25.68386 L 7.255346,25.599344 L 7.1408365,25.514828 L 7.0406396,25.442388 L 6.9404435,25.345798 L 6.8259333,25.249209 L 6.7257371,25.15262 L 6.625541,25.056031 L 6.5396583,24.947368 L 6.4394623,24.838705 L 6.3535795,24.730042 L 6.2676969,24.609307 L 6.1818151,24.500644 L 6.0959323,24.391982 L 6.0100496,24.295392 L 5.9384812,24.174656 L 5.8669118,24.078067 L 5.738089,23.872815 L 5.6235787,23.679637 L 5.5233817,23.498533 L 5.4374999,23.353649 L 5.3229904,23.136324 L 5.294362,23.075955 L 3.7627918,23.570974 L 3.820046,23.679637 L 3.9488697,23.92111 L 4.0347515,24.090141 L 4.1635752,24.295392 L 4.2923997,24.512718 L 4.4355375,24.742117 L 4.5214194,24.862853 L 4.6073021,24.995662 L 4.7074982,25.116398 L 4.7933809,25.249209 L 4.893577,25.382019 L 5.0080872,25.502755 L 5.1082833,25.647638 L 5.237107,25.768375 L 5.3516172,25.901185 L 5.4804417,26.046068 L 5.6092645,26.154731 L 5.738089,26.287541 L 5.881226,26.408277 L 6.0243629,26.529013 L 6.1818151,26.64975 L 6.3392662,26.746339 L 6.4967165,26.855001 L 6.6684819,26.951591 L 6.7543647,27.011959 L 6.8545607,27.048179 L 6.9404435,27.096474 L 7.0263253,27.144768 L 7.1265223,27.180989 L 7.2267184,27.21721 L 7.3269144,27.253432 L 7.4271113,27.289652 L 7.5273066,27.325873 L 7.6275035,27.337946 L 7.7420138,27.362094 L 7.8422098,27.386241 L 7.9567201,27.410389 L 8.0569153,27.422463 L 8.1857398,27.422463 L 8.2859359,27.434535 L 8.4004462,27.446608 L 8.5149556,27.434535 L 8.6294667,27.434535 L 8.7439761,27.422463 L 8.8584856,27.422463 L 8.9873101,27.398315 L 9.1018194,27.362094 L 9.2163297,27.35002 L 9.33084,27.325873 L 9.4453494,27.277578 L 9.574173,27.241358 L 9.6886833,27.205136 L 9.8031933,27.144768 L 9.9177033,27.108548 L 10.032213,27.048179 L 10.146724,26.987811 L 10.246919,26.927443 L 10.375743,26.855001 L 10.47594,26.782559 L 10.59045,26.710118 L 10.690645,26.625602 L 10.805156,26.541087 L 10.905352,26.456572 L 11.005549,26.372056 L 11.120059,26.275467 L 11.234568,26.178878 L 11.32045,26.058142 L 11.434961,25.961553 L 11.535157,25.852891 L 11.649667,25.732155 L 11.749864,25.599344 L 11.850059,25.478608 L 11.96457,25.345798 L 12.064765,25.212988 L 12.164961,25.068104 L 12.279472,24.935294 L 12.379668,24.778338 L 12.479865,24.633454 L 12.594375,24.464424 L 12.694571,24.295392 L 12.794767,24.126361 L 12.909276,23.95733 L 13.009473,23.776226 L 13.123983,23.595121 L 13.123983,23.595121 L 11.621039,23.015587 L 11.621039,23.015587 L 11.621039,23.015587"
id="path2531"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.967919,23.039735 L 20.967919,23.039735 L 20.924977,22.918998 L 20.796153,22.677526 L 20.695957,22.508494 L 20.581446,22.315316 L 20.43831,22.085918 L 20.295171,21.856519 L 20.20929,21.735782 L 20.123407,21.615046 L 20.037524,21.482237 L 19.937328,21.349427 L 19.837133,21.216617 L 19.722621,21.095881 L 19.622425,20.963071 L 19.507915,20.830261 L 19.379092,20.697451 L 19.264582,20.564641 L 19.135759,20.443905 L 19.006935,20.323169 L 18.849484,20.202433 L 18.706346,20.069623 L 18.563208,19.96096 L 18.391443,19.840224 L 18.233992,19.743634 L 18.076541,19.647046 L 17.976345,19.59875 L 17.890463,19.550457 L 17.804581,19.502162 L 17.704384,19.453868 L 17.618501,19.42972 L 17.518305,19.381427 L 17.418108,19.345204 L 17.317912,19.321056 L 17.217716,19.296909 L 17.117519,19.260689 L 17.017323,19.236542 L 16.902813,19.212395 L 16.788304,19.200321 L 16.673793,19.176173 L 16.573597,19.176173 L 16.459086,19.164101 L 16.344577,19.164101 L 16.230066,19.164101 L 16.115556,19.164101 L 15.986734,19.176173 L 15.872223,19.188247 L 15.757714,19.212395 L 15.643203,19.236542 L 15.514379,19.260689 L 15.399869,19.284837 L 15.285358,19.321056 L 15.170848,19.357278 L 15.056339,19.405572 L 14.941829,19.453868 L 14.827319,19.490088 L 14.712809,19.562531 L 14.5983,19.622898 L 14.483789,19.683267 L 14.383592,19.743634 L 14.269082,19.816075 L 14.154574,19.888517 L 14.054376,19.973033 L 13.939867,20.057549 L 13.83967,20.142065 L 13.725161,20.22658 L 13.61065,20.335242 L 13.510454,20.431831 L 13.410257,20.528421 L 13.295748,20.637084 L 13.195551,20.745745 L 13.081041,20.866481 L 12.980846,20.999292 L 12.880649,21.120028 L 12.76614,21.252838 L 12.680257,21.373575 L 12.565747,21.530531 L 12.465551,21.663341 L 12.365354,21.820298 L 12.250844,21.977255 L 12.150647,22.134213 L 12.036138,22.303243 L 11.935941,22.472275 L 11.835745,22.641305 L 11.73555,22.82241 L 11.621039,23.015587 L 13.123983,23.595121 L 13.195551,23.426091 L 13.295748,23.25706 L 13.395944,23.100103 L 13.481827,22.943146 L 13.596338,22.786188 L 13.68222,22.641305 L 13.768102,22.508494 L 13.868298,22.375685 L 13.95418,22.242875 L 14.040063,22.122139 L 14.140259,22.013476 L 14.226141,21.904814 L 14.312024,21.796151 L 14.397906,21.699562 L 14.483789,21.602974 L 14.569672,21.506384 L 14.655554,21.421869 L 14.741436,21.349427 L 14.813005,21.264911 L 14.898889,21.19247 L 14.970457,21.120028 L 15.056339,21.05966 L 15.127907,20.999292 L 15.199477,20.963071 L 15.285358,20.902704 L 15.342613,20.854408 L 15.414183,20.806113 L 15.485752,20.769893 L 15.543006,20.733673 L 15.614576,20.709525 L 15.686144,20.685377 L 15.7434,20.649157 L 15.800654,20.637084 L 15.857909,20.612937 L 15.915165,20.600863 L 15.97242,20.588788 L 16.029674,20.564641 L 16.072615,20.564641 L 16.129871,20.552567 L 16.172812,20.552567 L 16.230066,20.540494 L 16.273008,20.540494 L 16.315949,20.540494 L 16.373203,20.540494 L 16.416145,20.540494 L 16.4734,20.552567 L 16.516342,20.552567 L 16.573597,20.564641 L 16.616538,20.576714 L 16.65948,20.588788 L 16.716735,20.600863 L 16.759676,20.612937 L 16.816932,20.62501 L 16.859872,20.637084 L 16.917127,20.673304 L 16.960068,20.685377 L 17.017323,20.709525 L 17.060264,20.733673 L 17.117519,20.769893 L 17.16046,20.794041 L 17.27497,20.854408 L 17.38948,20.92685 L 17.489676,20.999292 L 17.604187,21.083808 L 17.704384,21.168323 L 17.804581,21.252838 L 17.904776,21.349427 L 18.019286,21.446016 L 18.105169,21.554679 L 18.205364,21.663341 L 18.291247,21.75993 L 18.391443,21.880667 L 18.477325,21.98933 L 18.563208,22.110065 L 18.64909,22.206653 L 18.734973,22.315316 L 18.806542,22.436053 L 18.863797,22.532643 L 19.006935,22.737894 L 19.135759,22.931072 L 19.221641,23.112177 L 19.293209,23.25706 L 19.407719,23.462311 L 19.450661,23.534754 L 19.450661,23.534754 L 20.967919,23.039735 L 20.967919,23.039735 L 20.967919,23.039735"
id="path2533"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.294596,22.979366 L 27.294596,22.979366 L 27.208713,23.148398 L 27.108517,23.317428 L 27.00832,23.474385 L 26.922437,23.631343 L 26.822242,23.776226 L 26.736359,23.92111 L 26.636163,24.065993 L 26.550281,24.198804 L 26.450084,24.319539 L 26.364202,24.452349 L 26.264005,24.561012 L 26.178123,24.669675 L 26.09224,24.766264 L 26.020672,24.874926 L 25.920475,24.971516 L 25.834592,25.056031 L 25.74871,25.15262 L 25.662827,25.225061 L 25.591259,25.309577 L 25.505377,25.369945 L 25.433808,25.442388 L 25.362239,25.502755 L 25.276356,25.575197 L 25.204789,25.611418 L 25.133219,25.671786 L 25.06165,25.708007 L 24.990082,25.756301 L 24.932826,25.792522 L 24.861258,25.828743 L 24.804002,25.864964 L 24.732434,25.889111 L 24.675179,25.913259 L 24.617924,25.937405 L 24.560669,25.949479 L 24.503413,25.973627 L 24.446159,25.9857 L 24.388905,25.997774 L 24.345963,26.009848 L 24.288707,26.009848 L 24.245766,26.021922 L 24.188512,26.021922 L 24.145571,26.021922 L 24.088316,26.021922 L 24.045374,26.021922 L 24.002433,26.021922 L 23.945177,26.009848 L 23.902236,26.009848 L 23.844981,26.009848 L 23.80204,25.9857 L 23.759098,25.9857 L 23.701844,25.973627 L 23.673216,25.949479 L 23.615962,25.937405 L 23.558706,25.925332 L 23.515764,25.901185 L 23.45851,25.877038 L 23.401256,25.852891 L 23.358316,25.828743 L 23.30106,25.804596 L 23.258118,25.780449 L 23.14361,25.708007 L 23.029099,25.647638 L 22.928903,25.575197 L 22.828705,25.490682 L 22.714196,25.406165 L 22.614,25.309577 L 22.49949,25.212988 L 22.399293,25.116398 L 22.313411,25.01981 L 22.213215,24.899074 L 22.127332,24.802485 L 22.027137,24.681749 L 21.941254,24.573086 L 21.855371,24.464424 L 21.769488,24.367834 L 21.697919,24.247097 L 21.612036,24.138434 L 21.554783,24.029772 L 21.411644,23.836594 L 21.282821,23.643417 L 21.196938,23.462311 L 21.12537,23.317428 L 20.996547,23.100103 L 20.967919,23.039735 L 19.450661,23.534754 L 19.493602,23.643417 L 19.622425,23.872815 L 19.722621,24.065993 L 19.837133,24.259171 L 19.965957,24.476497 L 20.123407,24.705895 L 20.20929,24.838705 L 20.280858,24.959442 L 20.381054,25.080178 L 20.481251,25.212988 L 20.581446,25.345798 L 20.681642,25.466534 L 20.796153,25.599344 L 20.896349,25.744228 L 21.039488,25.864964 L 21.153997,25.997774 L 21.282821,26.11851 L 21.411644,26.239246 L 21.554783,26.372056 L 21.697919,26.492793 L 21.855371,26.613529 L 22.012822,26.722192 L 22.170273,26.818781 L 22.327725,26.915369 L 22.427921,26.975737 L 22.513803,27.024033 L 22.614,27.072326 L 22.714196,27.108548 L 22.800079,27.144768 L 22.900275,27.180989 L 23.000471,27.21721 L 23.100668,27.253432 L 23.18655,27.277578 L 23.30106,27.3138 L 23.415569,27.325873 L 23.515764,27.35002 L 23.630275,27.362094 L 23.73047,27.386241 L 23.844981,27.398315 L 23.959492,27.398315 L 24.074002,27.410389 L 24.188512,27.410389 L 24.303022,27.398315 L 24.417531,27.386241 L 24.546355,27.374168 L 24.660865,27.362094 L 24.789688,27.337946 L 24.904199,27.3138 L 25.004395,27.277578 L 25.118906,27.241358 L 25.233416,27.21721 L 25.347925,27.168915 L 25.462436,27.120622 L 25.576945,27.072326 L 25.691455,27.011959 L 25.805965,26.951591 L 25.920475,26.879148 L 26.034985,26.818781 L 26.149496,26.746339 L 26.249692,26.68597 L 26.364202,26.589382 L 26.464398,26.516939 L 26.578908,26.432425 L 26.693417,26.335835 L 26.793615,26.239246 L 26.89381,26.142658 L 27.00832,26.046068 L 27.108517,25.925332 L 27.223026,25.816669 L 27.323224,25.695932 L 27.437732,25.575197 L 27.523615,25.454461 L 27.638125,25.309577 L 27.738321,25.188841 L 27.838518,25.031884 L 27.953027,24.899074 L 28.053224,24.742117 L 28.15342,24.585159 L 28.253617,24.428201 L 28.368127,24.271245 L 28.468322,24.102215 L 28.56852,23.92111 L 28.683029,23.752078 L 28.783225,23.5589 L 28.783225,23.5589 L 27.294596,22.979366 L 27.294596,22.979366 L 27.294596,22.979366"
id="path2535"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.612847,23.075955 L 36.612847,23.075955 L 36.569906,22.95522 L 36.455395,22.713747 L 36.355199,22.544716 L 36.24069,22.339464 L 36.097552,22.110065 L 35.954414,21.892741 L 35.868532,21.75993 L 35.782649,21.639193 L 35.696767,21.506384 L 35.59657,21.373575 L 35.496374,21.252838 L 35.396177,21.107954 L 35.281668,20.975144 L 35.167158,20.842334 L 35.052648,20.709525 L 34.923824,20.588788 L 34.795,20.455978 L 34.666177,20.323169 L 34.52304,20.202433 L 34.379902,20.081697 L 34.222451,19.973033 L 34.064999,19.852297 L 33.907549,19.743634 L 33.735783,19.647046 L 33.649902,19.59875 L 33.564019,19.550457 L 33.463822,19.502162 L 33.37794,19.453868 L 33.277742,19.42972 L 33.177547,19.381427 L 33.091664,19.345204 L 32.991469,19.308983 L 32.891272,19.272763 L 32.791076,19.248615 L 32.676565,19.236542 L 32.57637,19.200321 L 32.46186,19.188247 L 32.34735,19.176173 L 32.232839,19.164101 L 32.118329,19.152027 L 32.018133,19.139953 L 31.903622,19.139953 L 31.789114,19.152027 L 31.674603,19.164101 L 31.545779,19.176173 L 31.43127,19.188247 L 31.31676,19.212395 L 31.202249,19.236542 L 31.073425,19.272763 L 30.958915,19.296909 L 30.844406,19.333131 L 30.729896,19.369353 L 30.615385,19.42972 L 30.500877,19.478014 L 30.386365,19.526309 L 30.271855,19.586676 L 30.157345,19.65912 L 30.057148,19.719487 L 29.94264,19.79193 L 29.828129,19.864372 L 29.713619,19.936813 L 29.613423,20.033402 L 29.498913,20.105843 L 29.398717,20.202433 L 29.284207,20.299021 L 29.18401,20.39561 L 29.083814,20.504274 L 28.969304,20.612937 L 28.854794,20.721599 L 28.768911,20.842334 L 28.654402,20.963071 L 28.554205,21.095881 L 28.439696,21.216617 L 28.339499,21.349427 L 28.239303,21.494311 L 28.139107,21.639193 L 28.024596,21.796151 L 27.9244,21.941034 L 27.80989,22.110065 L 27.709694,22.267023 L 27.609498,22.436053 L 27.509302,22.617157 L 27.409105,22.786188 L 27.294596,22.979366 L 28.783225,23.5589 L 28.883421,23.38987 L 28.983617,23.22084 L 29.069499,23.051809 L 29.169697,22.906924 L 29.255579,22.749968 L 29.355776,22.617157 L 29.441658,22.472275 L 29.541854,22.351538 L 29.627736,22.218727 L 29.713619,22.097992 L 29.799501,21.977255 L 29.899698,21.868593 L 29.985581,21.75993 L 30.071463,21.663341 L 30.157345,21.566752 L 30.243229,21.470163 L 30.329111,21.385647 L 30.400679,21.313207 L 30.486562,21.240764 L 30.572444,21.168323 L 30.644013,21.095881 L 30.715582,21.035512 L 30.801464,20.975144 L 30.873032,20.92685 L 30.944601,20.878555 L 31.016171,20.830261 L 31.087738,20.794041 L 31.159308,20.745745 L 31.230877,20.709525 L 31.273818,20.685377 L 31.345387,20.649157 L 31.402642,20.637084 L 31.47421,20.612937 L 31.517152,20.600863 L 31.574408,20.576714 L 31.631662,20.564641 L 31.688917,20.552567 L 31.731858,20.540494 L 31.789114,20.540494 L 31.832055,20.528421 L 31.889309,20.528421 L 31.932251,20.528421 L 31.989506,20.528421 L 32.032447,20.528421 L 32.075388,20.528421 L 32.118329,20.540494 L 32.16127,20.540494 L 32.218526,20.552567 L 32.261467,20.552567 L 32.304408,20.576714 L 32.361664,20.588788 L 32.404604,20.600863 L 32.46186,20.612937 L 32.504801,20.637084 L 32.562056,20.649157 L 32.619311,20.673304 L 32.662252,20.709525 L 32.719507,20.733673 L 32.776762,20.757819 L 32.819704,20.781967 L 32.934213,20.842334 L 33.034409,20.92685 L 33.148919,20.999292 L 33.249115,21.083808 L 33.349312,21.168323 L 33.463822,21.252838 L 33.564019,21.349427 L 33.664215,21.458089 L 33.76441,21.566752 L 33.850293,21.663341 L 33.95049,21.772004 L 34.050685,21.892741 L 34.136568,22.001404 L 34.222451,22.110065 L 34.294019,22.218727 L 34.379902,22.339464 L 34.45147,22.448127 L 34.52304,22.544716 L 34.651864,22.762042 L 34.780687,22.95522 L 34.880883,23.124251 L 34.952452,23.269133 L 35.066961,23.498533 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 36.612847,23.075955"
id="path2537"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 42.939524,23.015587 L 42.939524,23.015587 L 42.853641,23.184618 L 42.767759,23.353649 L 42.653249,23.498533 L 42.567367,23.655489 L 42.46717,23.812448 L 42.381288,23.95733 L 42.281091,24.090141 L 42.195209,24.222951 L 42.109327,24.35576 L 42.009131,24.476497 L 41.923248,24.585159 L 41.837365,24.693822 L 41.751482,24.802485 L 41.665599,24.899074 L 41.579718,24.995662 L 41.479521,25.092252 L 41.407952,25.188841 L 41.32207,25.261282 L 41.236187,25.333725 L 41.150305,25.406165 L 41.078736,25.466534 L 41.007168,25.538976 L 40.935599,25.599344 L 40.849716,25.659712 L 40.778147,25.695932 L 40.706579,25.756301 L 40.635009,25.792522 L 40.577755,25.828743 L 40.506186,25.864964 L 40.448931,25.889111 L 40.377363,25.925332 L 40.320107,25.949479 L 40.262853,25.973627 L 40.205598,25.9857 L 40.148343,26.009848 L 40.091087,26.009848 L 40.033833,26.033996 L 39.990891,26.046068 L 39.933637,26.046068 L 39.890696,26.046068 L 39.83344,26.058142 L 39.7905,26.058142 L 39.747558,26.058142 L 39.690302,26.058142 L 39.647361,26.058142 L 39.590106,26.046068 L 39.547165,26.046068 L 39.504224,26.046068 L 39.446969,26.021922 L 39.389714,26.009848 L 39.361086,26.009848 L 39.30383,25.9857 L 39.26089,25.973627 L 39.203635,25.949479 L 39.160694,25.937405 L 39.117753,25.913259 L 39.046183,25.889111 L 39.003242,25.864964 L 38.945988,25.840817 L 38.903046,25.816669 L 38.788536,25.756301 L 38.68834,25.671786 L 38.573829,25.599344 L 38.473633,25.514828 L 38.359123,25.442388 L 38.258927,25.345798 L 38.158732,25.249209 L 38.058535,25.15262 L 37.958338,25.043958 L 37.872457,24.935294 L 37.77226,24.838705 L 37.686378,24.730042 L 37.58618,24.609307 L 37.500298,24.500644 L 37.428729,24.391982 L 37.342848,24.283319 L 37.271278,24.174656 L 37.19971,24.078067 L 37.056573,23.860741 L 36.942063,23.679637 L 36.841867,23.498533 L 36.770299,23.353649 L 36.655789,23.136324 L 36.612847,23.075955 L 35.095589,23.5589 L 35.152845,23.679637 L 35.281668,23.909036 L 35.367551,24.090141 L 35.48206,24.295392 L 35.610884,24.500644 L 35.768336,24.730042 L 35.854218,24.862853 L 35.940101,24.995662 L 36.025983,25.116398 L 36.126178,25.249209 L 36.226376,25.369945 L 36.340885,25.502755 L 36.441082,25.635565 L 36.555591,25.768375 L 36.684415,25.901185 L 36.81324,26.021922 L 36.927749,26.154731 L 37.056573,26.287541 L 37.214023,26.408277 L 37.357162,26.529013 L 37.500298,26.637676 L 37.65775,26.746339 L 37.829515,26.855001 L 37.986966,26.951591 L 38.087163,26.999885 L 38.173045,27.048179 L 38.273241,27.096474 L 38.359123,27.132696 L 38.445006,27.168915 L 38.559516,27.21721 L 38.645399,27.253432 L 38.745595,27.277578 L 38.845792,27.3138 L 38.945988,27.337946 L 39.060498,27.362094 L 39.160694,27.386241 L 39.275204,27.410389 L 39.3754,27.422463 L 39.489911,27.422463 L 39.604419,27.434535 L 39.71893,27.434535 L 39.83344,27.434535 L 39.947951,27.434535 L 40.06246,27.422463 L 40.191284,27.410389 L 40.305794,27.398315 L 40.420303,27.362094 L 40.534814,27.35002 L 40.649323,27.3138 L 40.778147,27.277578 L 40.892658,27.241358 L 41.007168,27.205136 L 41.107364,27.144768 L 41.221874,27.096474 L 41.350698,27.048179 L 41.450893,26.987811 L 41.565404,26.927443 L 41.679913,26.855001 L 41.794424,26.782559 L 41.908934,26.710118 L 42.009131,26.625602 L 42.123641,26.541087 L 42.223836,26.456572 L 42.338347,26.372056 L 42.438542,26.275467 L 42.553053,26.178878 L 42.653249,26.058142 L 42.767759,25.961553 L 42.867955,25.852891 L 42.982465,25.732155 L 43.082662,25.599344 L 43.182858,25.478608 L 43.297368,25.345798 L 43.38325,25.212988 L 43.497761,25.068104 L 43.597957,24.935294 L 43.698152,24.778338 L 43.812662,24.633454 L 43.912858,24.464424 L 44.013056,24.295392 L 44.127566,24.126361 L 44.227763,23.95733 L 44.327958,23.776226 L 44.428154,23.595121 L 44.428154,23.595121 L 42.939524,23.015587 L 42.939524,23.015587 L 42.939524,23.015587"
id="path2539"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 52.272089,23.027661 L 52.229147,22.918998 L 52.100324,22.677526 L 52.000126,22.49642 L 51.885618,22.303243 L 51.756794,22.085918 L 51.613656,21.856519 L 51.527773,21.735782 L 51.427577,21.602974 L 51.341695,21.470163 L 51.241499,21.349427 L 51.141301,21.216617 L 51.041106,21.095881 L 50.926595,20.963071 L 50.812087,20.830261 L 50.697577,20.697451 L 50.568754,20.564641 L 50.43993,20.443905 L 50.311106,20.323169 L 50.167967,20.190359 L 50.024831,20.069623 L 49.867379,19.96096 L 49.709929,19.840224 L 49.552477,19.743634 L 49.380712,19.647046 L 49.294829,19.59875 L 49.208946,19.550457 L 49.10875,19.502162 L 49.022867,19.453868 L 48.922672,19.42972 L 48.822475,19.381427 L 48.736592,19.345204 L 48.636397,19.321056 L 48.521886,19.284837 L 48.421691,19.260689 L 48.321495,19.236542 L 48.206984,19.212395 L 48.106788,19.188247 L 47.992277,19.176173 L 47.877768,19.176173 L 47.763257,19.164101 L 47.648748,19.164101 L 47.534238,19.164101 L 47.419728,19.164101 L 47.305218,19.176173 L 47.190709,19.188247 L 47.076198,19.200321 L 46.961687,19.236542 L 46.847179,19.248615 L 46.718354,19.284837 L 46.603844,19.321056 L 46.489334,19.357278 L 46.374825,19.405572 L 46.260315,19.441794 L 46.145804,19.502162 L 46.031294,19.562531 L 45.916783,19.622898 L 45.802274,19.683267 L 45.702078,19.743634 L 45.587567,19.816075 L 45.473058,19.888517 L 45.372862,19.973033 L 45.258352,20.057549 L 45.158155,20.142065 L 45.043646,20.22658 L 44.929135,20.335242 L 44.828938,20.431831 L 44.728742,20.528421 L 44.628546,20.637084 L 44.514036,20.745745 L 44.41384,20.866481 L 44.29933,20.999292 L 44.199135,21.120028 L 44.098938,21.252838 L 43.984428,21.385647 L 43.884231,21.530531 L 43.784034,21.663341 L 43.683839,21.820298 L 43.569328,21.977255 L 43.469132,22.134213 L 43.368937,22.303243 L 43.254426,22.472275 L 43.154231,22.641305 L 43.054034,22.82241 L 42.939524,23.015587 L 44.428154,23.595121 L 44.52835,23.426091 L 44.628546,23.25706 L 44.714429,23.100103 L 44.814624,22.943146 L 44.900507,22.786188 L 45.000704,22.641305 L 45.086587,22.508494 L 45.186783,22.375685 L 45.272666,22.242875 L 45.372862,22.122139 L 45.458744,22.013476 L 45.544626,21.904814 L 45.630508,21.796151 L 45.716392,21.699562 L 45.802274,21.602974 L 45.888156,21.506384 L 45.974038,21.421869 L 46.059921,21.349427 L 46.145804,21.264911 L 46.217374,21.19247 L 46.303256,21.120028 L 46.374825,21.05966 L 46.446393,20.999292 L 46.517962,20.938923 L 46.589531,20.902704 L 46.661098,20.842334 L 46.732668,20.806113 L 46.804237,20.769893 L 46.861492,20.733673 L 46.93306,20.709525 L 47.004629,20.673304 L 47.04757,20.649157 L 47.119139,20.637084 L 47.176394,20.612937 L 47.23365,20.600863 L 47.290904,20.576714 L 47.333846,20.564641 L 47.391101,20.552567 L 47.434041,20.552567 L 47.491296,20.552567 L 47.534238,20.540494 L 47.577179,20.540494 L 47.634435,20.540494 L 47.677375,20.540494 L 47.73463,20.540494 L 47.777571,20.552567 L 47.820512,20.552567 L 47.877768,20.564641 L 47.920708,20.576714 L 47.963649,20.576714 L 48.020905,20.600863 L 48.07816,20.612937 L 48.121101,20.62501 L 48.178356,20.637084 L 48.221298,20.673304 L 48.278553,20.685377 L 48.321495,20.709525 L 48.37875,20.733673 L 48.436005,20.769893 L 48.478945,20.781967 L 48.593455,20.842334 L 48.693651,20.92685 L 48.793848,20.999292 L 48.908357,21.083808 L 49.008554,21.168323 L 49.10875,21.252838 L 49.223261,21.349427 L 49.323457,21.446016 L 49.423653,21.554679 L 49.509536,21.663341 L 49.609732,21.75993 L 49.695615,21.868593 L 49.781497,21.98933 L 49.867379,22.085918 L 49.953262,22.206653 L 50.024831,22.315316 L 50.110712,22.42398 L 50.182282,22.532643 L 50.311106,22.737894 L 50.425616,22.918998 L 50.525813,23.100103 L 50.611694,23.232914 L 50.711891,23.462311 L 50.754832,23.522681 L 52.272089,23.027661"
id="path2541"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 50.754832,23.522681 L 50.769146,23.5589 L 50.797773,23.595121 L 50.812087,23.643417 L 50.840713,23.679637 L 50.869341,23.691711 L 50.883654,23.740005 L 50.912282,23.764153 L 50.940909,23.7883 L 50.983851,23.812448 L 51.012478,23.836594 L 51.041106,23.848667 L 51.069734,23.872815 L 51.09836,23.896962 L 51.141301,23.909036 L 51.184243,23.92111 L 51.212871,23.933184 L 51.28444,23.945256 L 51.356008,23.95733 L 51.427577,23.969404 L 51.51346,23.969404 L 51.58503,23.969404 L 51.656597,23.95733 L 51.74248,23.933184 L 51.799736,23.92111 L 51.885618,23.896962 L 51.942872,23.860741 L 52.014442,23.836594 L 52.071696,23.7883 L 52.128951,23.752078 L 52.171892,23.691711 L 52.214833,23.643417 L 52.257773,23.583048 L 52.272089,23.5589 L 52.300715,23.522681 L 52.300715,23.498533 L 52.31503,23.462311 L 52.329344,23.438165 L 52.329344,23.401944 L 52.329344,23.365722 L 52.329344,23.329502 L 52.329344,23.293281 L 52.329344,23.269133 L 52.329344,23.22084 L 52.329344,23.184618 L 52.31503,23.148398 L 52.300715,23.112177 L 52.300715,23.075955 L 52.272089,23.027661 L 50.754832,23.522681"
id="path2543"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2545"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2547"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2549"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2551"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2553"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2555"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2557"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2559"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2561"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2563"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2565"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2567"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2569"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2571"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2573"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2575"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.899931,23.450238 L 51.899931,23.401944 L 51.914244,23.365722 L 51.928558,23.329502 L 51.928558,23.293281 L 51.914244,23.269133 L 51.914244,23.232914 L 51.899931,23.196691 L 51.885618,23.172544 L 51.871304,23.136324 L 51.842676,23.112177 L 51.814049,23.088029 L 51.785421,23.075955 L 51.756794,23.039735 L 51.728166,23.027661 L 51.699538,23.015587 L 51.656597,23.003514 L 51.62797,22.99144 L 51.58503,22.979366 L 51.542088,22.979366 L 51.51346,22.979366 L 51.470518,22.979366 L 51.441891,22.979366 L 51.39895,22.99144 L 51.356008,23.003514 L 51.327381,23.015587 L 51.298753,23.015587 L 51.255812,23.039735 L 51.227184,23.075955 L 51.198557,23.100103 L 51.184243,23.124251 L 51.155616,23.160472 L 51.141301,23.196691 L 51.899931,23.450238"
id="path2577"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 43.311681,23.450238 L 43.311681,23.450238 L 43.411878,23.619269 L 43.497761,23.812448 L 43.61227,23.969404 L 43.712467,24.138434 L 43.812662,24.295392 L 43.912858,24.452349 L 44.013056,24.609307 L 44.127566,24.754191 L 44.213448,24.899074 L 44.327958,25.031884 L 44.41384,25.15262 L 44.52835,25.285429 L 44.628546,25.406165 L 44.728742,25.514828 L 44.814624,25.635565 L 44.929135,25.744228 L 45.029331,25.852891 L 45.129528,25.949479 L 45.229724,26.046068 L 45.32992,26.130584 L 45.430117,26.215098 L 45.530313,26.299615 L 45.630508,26.372056 L 45.730705,26.444498 L 45.816588,26.516939 L 45.931097,26.577308 L 46.031294,26.637676 L 46.13149,26.698045 L 46.231687,26.746339 L 46.331884,26.794633 L 46.446393,26.842929 L 46.532276,26.879148 L 46.632472,26.927443 L 46.732668,26.951591 L 46.832864,26.987811 L 46.93306,27.011959 L 47.033256,27.036106 L 47.133453,27.048179 L 47.23365,27.072326 L 47.348159,27.0844 L 47.434041,27.0844 L 47.548552,27.096474 L 47.634435,27.096474 L 47.73463,27.096474 L 47.834826,27.0844 L 47.920708,27.072326 L 48.020905,27.072326 L 48.121101,27.048179 L 48.206984,27.036106 L 48.307181,27.011959 L 48.393063,26.987811 L 48.478945,26.963665 L 48.564828,26.939517 L 48.665025,26.903296 L 48.736592,26.879148 L 48.822475,26.842929 L 48.908357,26.794633 L 48.99424,26.758412 L 49.065809,26.710118 L 49.151691,26.673897 L 49.309143,26.589382 L 49.452281,26.492793 L 49.595418,26.38413 L 49.738556,26.275467 L 49.867379,26.166805 L 49.996203,26.046068 L 50.125027,25.937405 L 50.253851,25.816669 L 50.36836,25.695932 L 50.482871,25.575197 L 50.597381,25.442388 L 50.697577,25.309577 L 50.797773,25.188841 L 50.897968,25.068104 L 50.998164,24.935294 L 51.084047,24.814558 L 51.169929,24.693822 L 51.241499,24.573086 L 51.39895,24.35576 L 51.527773,24.138434 L 51.62797,23.945256 L 51.728166,23.776226 L 51.85699,23.546827 L 51.899931,23.450238 L 51.141301,23.196691 L 51.09836,23.269133 L 50.983851,23.498533 L 50.897968,23.655489 L 50.797773,23.836594 L 50.668949,24.029772 L 50.540126,24.235023 L 50.468557,24.35576 L 50.382675,24.464424 L 50.296792,24.573086 L 50.210909,24.693822 L 50.125027,24.802485 L 50.024831,24.923221 L 49.924634,25.031884 L 49.838751,25.15262 L 49.738556,25.261282 L 49.624045,25.369945 L 49.52385,25.478608 L 49.40934,25.575197 L 49.294829,25.68386 L 49.180319,25.768375 L 49.065809,25.864964 L 48.936986,25.949479 L 48.822475,26.021922 L 48.693651,26.106436 L 48.636397,26.142658 L 48.579142,26.154731 L 48.507573,26.203026 L 48.450319,26.215098 L 48.393063,26.239246 L 48.321495,26.275467 L 48.264239,26.299615 L 48.206984,26.311688 L 48.135415,26.335835 L 48.07816,26.347909 L 48.006591,26.359983 L 47.949336,26.372056 L 47.892082,26.38413 L 47.820512,26.396203 L 47.763257,26.396203 L 47.691689,26.408277 L 47.634435,26.408277 L 47.562866,26.408277 L 47.491296,26.396203 L 47.434041,26.396203 L 47.362474,26.396203 L 47.305218,26.372056 L 47.23365,26.372056 L 47.162081,26.347909 L 47.090511,26.335835 L 47.018943,26.311688 L 46.947374,26.287541 L 46.875805,26.25132 L 46.804237,26.227172 L 46.718354,26.203026 L 46.646786,26.154731 L 46.560903,26.11851 L 46.489334,26.070216 L 46.417766,26.021922 L 46.331884,25.973627 L 46.246001,25.925332 L 46.160119,25.852891 L 46.088549,25.792522 L 46.002667,25.720081 L 45.916783,25.659712 L 45.816588,25.575197 L 45.74502,25.490682 L 45.644823,25.406165 L 45.55894,25.309577 L 45.473058,25.212988 L 45.372862,25.116398 L 45.286979,25.007736 L 45.201097,24.899074 L 45.1009,24.778338 L 45.015018,24.669675 L 44.914822,24.536864 L 44.814624,24.391982 L 44.728742,24.259171 L 44.628546,24.126361 L 44.52835,23.969404 L 44.442468,23.824521 L 44.342271,23.655489 L 44.242075,23.498533 L 44.14188,23.329502 L 44.041683,23.148398 L 44.041683,23.148398 L 43.311681,23.450238 L 43.311681,23.450238 L 43.311681,23.450238"
id="path2579"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.212061,23.401944 L 36.212061,23.401944 L 36.255003,23.329502 L 36.369513,23.112177 L 36.455395,22.95522 L 36.555591,22.774116 L 36.684415,22.580938 L 36.81324,22.363612 L 36.884808,22.254949 L 36.970691,22.146286 L 37.04226,22.025549 L 37.128142,21.916886 L 37.228337,21.796151 L 37.31422,21.675414 L 37.414415,21.566752 L 37.514612,21.446016 L 37.614808,21.349427 L 37.729319,21.22869 L 37.829515,21.120028 L 37.944025,21.02344 L 38.044221,20.92685 L 38.158732,20.830261 L 38.287555,20.733673 L 38.402064,20.649157 L 38.530888,20.576714 L 38.659712,20.504274 L 38.716968,20.468052 L 38.774222,20.443905 L 38.831477,20.419757 L 38.903046,20.383537 L 38.960302,20.359389 L 39.03187,20.335242 L 39.089124,20.311095 L 39.14638,20.286947 L 39.217949,20.2628 L 39.275204,20.2628 L 39.332459,20.238654 L 39.389714,20.22658 L 39.461282,20.22658 L 39.518537,20.202433 L 39.590106,20.202433 L 39.647361,20.202433 L 39.71893,20.202433 L 39.7905,20.202433 L 39.847754,20.202433 L 39.919323,20.202433 L 39.976578,20.22658 L 40.048147,20.22658 L 40.119715,20.22658 L 40.191284,20.2628 L 40.262853,20.2628 L 40.334421,20.299021 L 40.391676,20.323169 L 40.463245,20.335242 L 40.549127,20.371463 L 40.635009,20.407684 L 40.706579,20.443905 L 40.778147,20.480126 L 40.86403,20.528421 L 40.935599,20.576714 L 41.021482,20.62501 L 41.107364,20.685377 L 41.193246,20.733673 L 41.264816,20.806113 L 41.350698,20.878555 L 41.43658,20.963071 L 41.522463,21.02344 L 41.608345,21.120028 L 41.708541,21.204544 L 41.794424,21.289059 L 41.880306,21.385647 L 41.980503,21.482237 L 42.066385,21.5909 L 42.152267,21.711636 L 42.252464,21.820298 L 42.338347,21.941034 L 42.438542,22.073845 L 42.538739,22.206653 L 42.624621,22.339464 L 42.724817,22.472275 L 42.825014,22.629231 L 42.910895,22.786188 L 43.011092,22.943146 L 43.11129,23.100103 L 43.211485,23.269133 L 43.311681,23.450238 L 44.041683,23.148398 L 43.941486,22.979366 L 43.84129,22.798262 L 43.741093,22.629231 L 43.640897,22.460201 L 43.540701,22.303243 L 43.440505,22.146286 L 43.340309,21.98933 L 43.225798,21.844446 L 43.139916,21.711636 L 43.025407,21.578826 L 42.92521,21.446016 L 42.825014,21.313207 L 42.724817,21.19247 L 42.624621,21.083808 L 42.538739,20.963071 L 42.424229,20.854408 L 42.324032,20.745745 L 42.223836,20.649157 L 42.123641,20.564641 L 42.023443,20.480126 L 41.923248,20.383537 L 41.823052,20.299021 L 41.722854,20.22658 L 41.622658,20.166211 L 41.522463,20.081697 L 41.422265,20.033402 L 41.32207,19.96096 L 41.221874,19.900592 L 41.121677,19.852297 L 41.021482,19.804003 L 40.906971,19.755707 L 40.821088,19.719487 L 40.706579,19.683267 L 40.606382,19.647046 L 40.506186,19.622898 L 40.40599,19.586676 L 40.305794,19.562531 L 40.205598,19.550457 L 40.105401,19.526309 L 40.005206,19.526309 L 39.905009,19.514236 L 39.804812,19.502162 L 39.704617,19.502162 L 39.604419,19.502162 L 39.518537,19.526309 L 39.418342,19.526309 L 39.318145,19.526309 L 39.232263,19.550457 L 39.14638,19.562531 L 39.046183,19.59875 L 38.960302,19.622898 L 38.874419,19.647046 L 38.788536,19.671194 L 38.68834,19.695339 L 38.602457,19.731561 L 38.530888,19.767782 L 38.445006,19.804003 L 38.359123,19.840224 L 38.287555,19.888517 L 38.201673,19.924739 L 38.044221,20.021328 L 37.901085,20.117917 L 37.757946,20.22658 L 37.600496,20.323169 L 37.471671,20.431831 L 37.342848,20.552567 L 37.214023,20.673304 L 37.099514,20.794041 L 36.970691,20.914777 L 36.856181,21.035512 L 36.755985,21.168323 L 36.641474,21.289059 L 36.541278,21.409795 L 36.455395,21.542605 L 36.355199,21.663341 L 36.269317,21.796151 L 36.16912,21.916886 L 36.097552,22.025549 L 35.954414,22.254949 L 35.82559,22.472275 L 35.711082,22.653379 L 35.625199,22.82241 L 35.496374,23.051809 L 35.453433,23.160472 L 35.453433,23.160472 L 36.212061,23.401944 L 36.212061,23.401944 L 36.212061,23.401944"
id="path2581"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.623812,23.414018 L 27.623812,23.414018 L 27.724007,23.595121 L 27.838518,23.776226 L 27.938713,23.945256 L 28.038909,24.114288 L 28.139107,24.271245 L 28.239303,24.428201 L 28.339499,24.573086 L 28.439696,24.730042 L 28.539891,24.862853 L 28.640088,24.995662 L 28.740284,25.128472 L 28.84048,25.249209 L 28.940676,25.369945 L 29.040873,25.490682 L 29.141069,25.599344 L 29.241265,25.708007 L 29.355776,25.816669 L 29.455972,25.913259 L 29.556168,26.009848 L 29.656365,26.094363 L 29.742247,26.178878 L 29.842443,26.263394 L 29.956953,26.335835 L 30.057148,26.408277 L 30.157345,26.480719 L 30.257542,26.541087 L 30.357738,26.601456 L 30.457935,26.661823 L 30.558131,26.710118 L 30.658327,26.770486 L 30.758523,26.818781 L 30.858719,26.842929 L 30.958915,26.879148 L 31.059112,26.927443 L 31.159308,26.951591 L 31.273818,26.987811 L 31.374014,26.999885 L 31.47421,27.024033 L 31.574408,27.036106 L 31.674603,27.048179 L 31.774799,27.048179 L 31.874995,27.060253 L 31.960878,27.060253 L 32.061074,27.060253 L 32.146957,27.048179 L 32.247152,27.036106 L 32.34735,27.036106 L 32.447546,27.011959 L 32.533429,26.987811 L 32.619311,26.975737 L 32.719507,26.951591 L 32.80539,26.927443 L 32.891272,26.891223 L 32.977154,26.879148 L 33.063037,26.842929 L 33.148919,26.794633 L 33.234801,26.758412 L 33.30637,26.722192 L 33.392253,26.68597 L 33.478136,26.637676 L 33.621273,26.541087 L 33.778725,26.444498 L 33.921862,26.347909 L 34.064999,26.239246 L 34.193823,26.142658 L 34.336961,26.009848 L 34.45147,25.889111 L 34.580294,25.768375 L 34.694805,25.659712 L 34.809315,25.526902 L 34.923824,25.406165 L 35.024021,25.285429 L 35.124216,25.15262 L 35.224412,25.031884 L 35.324609,24.899074 L 35.396177,24.778338 L 35.48206,24.669675 L 35.567943,24.536864 L 35.711082,24.319539 L 35.839905,24.102215 L 35.954414,23.909036 L 36.040297,23.740005 L 36.16912,23.498533 L 36.212061,23.401944 L 35.453433,23.160472 L 35.424805,23.232914 L 35.295982,23.462311 L 35.210099,23.619269 L 35.109903,23.7883 L 34.995393,23.993552 L 34.852256,24.198804 L 34.780687,24.319539 L 34.694805,24.428201 L 34.623236,24.548938 L 34.537353,24.657601 L 34.45147,24.766264 L 34.351274,24.887 L 34.251078,24.995662 L 34.150882,25.116398 L 34.050685,25.225061 L 33.936175,25.333725 L 33.83598,25.442388 L 33.721469,25.551049 L 33.60696,25.647638 L 33.506764,25.744228 L 33.37794,25.828743 L 33.263429,25.913259 L 33.148919,25.9857 L 33.020096,26.058142 L 32.948527,26.094363 L 32.905586,26.130584 L 32.834017,26.154731 L 32.776762,26.190952 L 32.705193,26.215098 L 32.647939,26.239246 L 32.590684,26.25132 L 32.519116,26.275467 L 32.46186,26.299615 L 32.390291,26.311688 L 32.333035,26.335835 L 32.27578,26.335835 L 32.204211,26.347909 L 32.146957,26.359983 L 32.089703,26.372056 L 32.018133,26.372056 L 31.960878,26.372056 L 31.889309,26.372056 L 31.832055,26.372056 L 31.760486,26.359983 L 31.688917,26.347909 L 31.631662,26.347909 L 31.560094,26.335835 L 31.488526,26.311688 L 31.416956,26.299615 L 31.345387,26.275467 L 31.273818,26.25132 L 31.202249,26.227172 L 31.13068,26.203026 L 31.044797,26.154731 L 30.97323,26.11851 L 30.901661,26.082289 L 30.815777,26.046068 L 30.729896,25.9857 L 30.658327,25.937405 L 30.572444,25.889111 L 30.486562,25.828743 L 30.400679,25.756301 L 30.329111,25.695932 L 30.243229,25.611418 L 30.157345,25.538976 L 30.071463,25.454461 L 29.971267,25.369945 L 29.885384,25.285429 L 29.799501,25.188841 L 29.699306,25.068104 L 29.613423,24.971516 L 29.52754,24.862853 L 29.427345,24.742117 L 29.341463,24.633454 L 29.241265,24.500644 L 29.141069,24.367834 L 29.055186,24.222951 L 28.954991,24.090141 L 28.854794,23.945256 L 28.768911,23.7883 L 28.668716,23.631343 L 28.56852,23.462311 L 28.468322,23.293281 L 28.368127,23.124251 L 28.368127,23.124251 L 27.623812,23.414018 L 27.623812,23.414018 L 27.623812,23.414018"
id="path2583"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.567133,23.438165 L 20.567133,23.438165 L 20.59576,23.365722 L 20.71027,23.136324 L 20.796153,22.979366 L 20.896349,22.798262 L 21.025173,22.59301 L 21.153997,22.375685 L 21.239879,22.279097 L 21.311448,22.15836 L 21.39733,22.049697 L 21.483213,21.92896 L 21.569096,21.808224 L 21.654978,21.699562 L 21.755174,21.578826 L 21.855371,21.470163 L 21.955567,21.349427 L 22.070078,21.240764 L 22.170273,21.132101 L 22.284784,21.02344 L 22.399293,20.92685 L 22.49949,20.830261 L 22.628314,20.733673 L 22.742823,20.649157 L 22.871647,20.576714 L 23.000471,20.504274 L 23.057727,20.468052 L 23.114982,20.431831 L 23.172236,20.39561 L 23.243805,20.371463 L 23.30106,20.347316 L 23.358316,20.323169 L 23.429882,20.299021 L 23.472823,20.286947 L 23.558706,20.2628 L 23.615962,20.238654 L 23.673216,20.22658 L 23.73047,20.22658 L 23.80204,20.202433 L 23.873609,20.202433 L 23.930864,20.190359 L 24.002433,20.190359 L 24.059688,20.190359 L 24.131257,20.190359 L 24.188512,20.190359 L 24.26008,20.190359 L 24.317335,20.202433 L 24.388905,20.202433 L 24.460473,20.22658 L 24.517728,20.22658 L 24.589296,20.250727 L 24.660865,20.2628 L 24.746747,20.299021 L 24.818316,20.323169 L 24.889884,20.359389 L 24.961454,20.383537 L 25.033023,20.419757 L 25.104591,20.455978 L 25.176161,20.504274 L 25.262043,20.552567 L 25.347925,20.612937 L 25.433808,20.661231 L 25.505377,20.721599 L 25.591259,20.781967 L 25.677142,20.842334 L 25.777338,20.92685 L 25.848906,20.999292 L 25.934789,21.083808 L 26.034985,21.180397 L 26.120868,21.264911 L 26.221064,21.349427 L 26.292634,21.458089 L 26.392828,21.566752 L 26.493026,21.675414 L 26.578908,21.796151 L 26.664791,21.916886 L 26.764987,22.037623 L 26.850869,22.170434 L 26.951065,22.303243 L 27.051261,22.448127 L 27.151458,22.59301 L 27.237341,22.749968 L 27.337537,22.906924 L 27.437732,23.075955 L 27.523615,23.232914 L 27.623812,23.414018 L 28.368127,23.124251 L 28.267931,22.943146 L 28.167734,22.762042 L 28.067537,22.59301 L 27.967341,22.436053 L 27.852832,22.267023 L 27.766949,22.110065 L 27.666753,21.953108 L 27.566556,21.820298 L 27.452047,21.675414 L 27.366165,21.542605 L 27.251654,21.409795 L 27.151458,21.276985 L 27.051261,21.168323 L 26.951065,21.05966 L 26.850869,20.938923 L 26.750673,20.830261 L 26.650476,20.721599 L 26.564594,20.62501 L 26.450084,20.540494 L 26.349887,20.443905 L 26.249692,20.359389 L 26.149496,20.286947 L 26.063613,20.202433 L 25.949103,20.129991 L 25.848906,20.069623 L 25.74871,19.99718 L 25.648514,19.936813 L 25.548318,19.876444 L 25.448122,19.82815 L 25.347925,19.779856 L 25.24773,19.731561 L 25.147533,19.695339 L 25.047337,19.65912 L 24.94714,19.622898 L 24.846943,19.59875 L 24.746747,19.562531 L 24.646552,19.550457 L 24.546355,19.526309 L 24.446159,19.514236 L 24.345963,19.502162 L 24.231453,19.490088 L 24.145571,19.490088 L 24.03106,19.490088 L 23.945177,19.490088 L 23.844981,19.502162 L 23.744785,19.514236 L 23.658903,19.526309 L 23.558706,19.550457 L 23.472823,19.562531 L 23.386942,19.586676 L 23.286746,19.59875 L 23.18655,19.622898 L 23.114982,19.65912 L 23.029099,19.695339 L 22.943216,19.731561 L 22.857333,19.767782 L 22.771451,19.804003 L 22.685568,19.840224 L 22.614,19.888517 L 22.513803,19.924739 L 22.384979,20.021328 L 22.241843,20.117917 L 22.084392,20.22658 L 21.955567,20.335242 L 21.81243,20.443905 L 21.683606,20.552567 L 21.554783,20.685377 L 21.425958,20.806113 L 21.311448,20.92685 L 21.196938,21.05966 L 21.082428,21.180397 L 20.982232,21.301133 L 20.882036,21.433943 L 20.796153,21.566752 L 20.695957,21.675414 L 20.610074,21.808224 L 20.524192,21.92896 L 20.43831,22.049697 L 20.295171,22.279097 L 20.166348,22.49642 L 20.051839,22.689599 L 19.965957,22.846557 L 19.837133,23.100103 L 19.808505,23.196691 L 19.808505,23.196691 L 20.567133,23.438165 L 20.567133,23.438165 L 20.567133,23.438165"
id="path2585"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.978883,23.450238 L 11.978883,23.450238 L 12.07908,23.619269 L 12.193588,23.812448 L 12.279472,23.969404 L 12.393982,24.138434 L 12.494178,24.295392 L 12.594375,24.452349 L 12.694571,24.609307 L 12.794767,24.754191 L 12.894963,24.899074 L 12.995159,25.031884 L 13.095355,25.15262 L 13.195551,25.285429 L 13.295748,25.406165 L 13.395944,25.514828 L 13.49614,25.635565 L 13.596338,25.744228 L 13.710846,25.852891 L 13.796729,25.949479 L 13.911239,26.046068 L 13.997122,26.130584 L 14.097318,26.215098 L 14.197514,26.299615 L 14.29771,26.372056 L 14.397906,26.444498 L 14.512417,26.516939 L 14.5983,26.577308 L 14.712809,26.637676 L 14.813005,26.698045 L 14.913201,26.746339 L 15.013398,26.794633 L 15.113594,26.842929 L 15.21379,26.879148 L 15.313986,26.927443 L 15.414183,26.951591 L 15.514379,26.987811 L 15.614576,27.011959 L 15.714772,27.036106 L 15.829282,27.048179 L 15.915165,27.072326 L 16.029674,27.072326 L 16.129871,27.0844 L 16.215754,27.096474 L 16.315949,27.096474 L 16.416145,27.0844 L 16.502028,27.0844 L 16.616538,27.072326 L 16.702421,27.072326 L 16.802617,27.048179 L 16.902813,27.036106 L 16.974382,27.011959 L 17.074579,26.987811 L 17.16046,26.951591 L 17.246344,26.939517 L 17.332226,26.891223 L 17.418108,26.867075 L 17.50399,26.842929 L 17.589873,26.782559 L 17.675756,26.746339 L 17.747324,26.710118 L 17.818894,26.673897 L 17.976345,26.589382 L 18.133796,26.492793 L 18.276933,26.38413 L 18.405757,26.275467 L 18.534581,26.154731 L 18.677718,26.046068 L 18.806542,25.937405 L 18.921053,25.804596 L 19.049876,25.68386 L 19.164386,25.575197 L 19.264582,25.442388 L 19.364779,25.309577 L 19.464974,25.188841 L 19.56517,25.056031 L 19.665367,24.935294 L 19.75125,24.814558 L 19.837133,24.681749 L 19.923015,24.573086 L 20.051839,24.331613 L 20.194976,24.126361 L 20.295171,23.933184 L 20.395368,23.776226 L 20.509878,23.534754 L 20.567133,23.438165 L 19.808505,23.196691 L 19.75125,23.269133 L 19.636739,23.486458 L 19.56517,23.655489 L 19.464974,23.824521 L 19.336151,24.029772 L 19.207326,24.235023 L 19.135759,24.343687 L 19.049876,24.452349 L 18.963994,24.573086 L 18.892425,24.681749 L 18.792229,24.802485 L 18.706346,24.923221 L 18.606149,25.031884 L 18.505953,25.15262 L 18.405757,25.261282 L 18.291247,25.369945 L 18.191051,25.466534 L 18.076541,25.575197 L 17.962031,25.671786 L 17.847522,25.768375 L 17.733011,25.864964 L 17.618501,25.949479 L 17.489676,26.021922 L 17.375167,26.094363 L 17.317912,26.142658 L 17.260657,26.154731 L 17.189088,26.190952 L 17.131833,26.215098 L 17.060264,26.239246 L 17.017323,26.275467 L 16.945755,26.299615 L 16.874186,26.311688 L 16.816932,26.335835 L 16.759676,26.347909 L 16.688108,26.359983 L 16.630851,26.372056 L 16.573597,26.38413 L 16.502028,26.396203 L 16.430459,26.396203 L 16.373203,26.396203 L 16.301636,26.408277 L 16.24438,26.408277 L 16.187126,26.396203 L 16.115556,26.396203 L 16.043988,26.396203 L 15.97242,26.372056 L 15.915165,26.372056 L 15.843595,26.347909 L 15.772027,26.335835 L 15.700458,26.311688 L 15.62889,26.287541 L 15.543006,26.25132 L 15.485752,26.227172 L 15.399869,26.203026 L 15.3283,26.154731 L 15.242418,26.11851 L 15.170848,26.070216 L 15.084966,26.021922 L 15.013398,25.973627 L 14.927516,25.913259 L 14.841633,25.852891 L 14.755751,25.792522 L 14.669869,25.720081 L 14.583986,25.647638 L 14.498103,25.575197 L 14.41222,25.490682 L 14.326338,25.406165 L 14.240455,25.309577 L 14.154574,25.212988 L 14.054376,25.116398 L 13.95418,25.007736 L 13.868298,24.899074 L 13.782416,24.778338 L 13.68222,24.669675 L 13.596338,24.536864 L 13.49614,24.391982 L 13.395944,24.259171 L 13.310061,24.126361 L 13.209865,23.969404 L 13.123983,23.824521 L 13.023787,23.655489 L 12.92359,23.498533 L 12.823395,23.329502 L 12.723198,23.148398 L 12.723198,23.148398 L 11.978883,23.450238 L 11.978883,23.450238 L 11.978883,23.450238"
id="path2587"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.9078912,23.401944 L 4.9508321,23.329502 L 5.0653424,23.100103 L 5.1512243,22.943146 L 5.2514211,22.762042 L 5.3802448,22.568864 L 5.5090684,22.363612 L 5.5806369,22.242875 L 5.6522063,22.146286 L 5.738089,22.025549 L 5.8239708,21.916886 L 5.9241669,21.796151 L 6.0100496,21.675414 L 6.1102465,21.566752 L 6.1961275,21.446016 L 6.3106386,21.337353 L 6.4108347,21.22869 L 6.525345,21.120028 L 6.625541,21.02344 L 6.7400513,20.92685 L 6.8688742,20.830261 L 6.969071,20.733673 L 7.0978947,20.649157 L 7.2124051,20.576714 L 7.3412278,20.504274 L 7.3984829,20.468052 L 7.4700531,20.431831 L 7.5129941,20.407684 L 7.5845617,20.383537 L 7.6418177,20.359389 L 7.7133854,20.335242 L 7.7706412,20.311095 L 7.8278956,20.286947 L 7.8994649,20.2628 L 7.9567201,20.2628 L 8.0139744,20.238654 L 8.0855428,20.22658 L 8.1427989,20.22658 L 8.2143673,20.202433 L 8.2716226,20.202433 L 8.3431909,20.202433 L 8.4004462,20.202433 L 8.4720146,20.202433 L 8.5292698,20.202433 L 8.6008383,20.202433 L 8.6580935,20.202433 L 8.7439761,20.22658 L 8.8012313,20.22658 L 8.8727997,20.250727 L 8.9443683,20.2628 L 9.0159368,20.286947 L 9.087506,20.323169 L 9.1590746,20.335242 L 9.2306431,20.371463 L 9.3022124,20.407684 L 9.3880943,20.443905 L 9.4596637,20.480126 L 9.5312321,20.528421 L 9.6171148,20.576714 L 9.7029973,20.62501 L 9.7745663,20.685377 L 9.8747623,20.733673 L 9.9463303,20.806113 L 10.046527,20.878555 L 10.132409,20.963071 L 10.203978,21.02344 L 10.289861,21.120028 L 10.390057,21.19247 L 10.47594,21.289059 L 10.561822,21.385647 L 10.647704,21.482237 L 10.733586,21.5909 L 10.833783,21.711636 L 10.93398,21.820298 L 11.019863,21.941034 L 11.105745,22.073845 L 11.20594,22.206653 L 11.306137,22.339464 L 11.406333,22.472275 L 11.492216,22.629231 L 11.592411,22.786188 L 11.692608,22.943146 L 11.792804,23.100103 L 11.878686,23.269133 L 11.978883,23.450238 L 12.723198,23.148398 L 12.623002,22.979366 L 12.522806,22.798262 L 12.42261,22.629231 L 12.322413,22.460201 L 12.207903,22.303243 L 12.107706,22.146286 L 12.00751,21.98933 L 11.907315,21.844446 L 11.807118,21.711636 L 11.706922,21.578826 L 11.606726,21.446016 L 11.506529,21.313207 L 11.406333,21.19247 L 11.306137,21.083808 L 11.20594,20.963071 L 11.105745,20.854408 L 11.005549,20.745745 L 10.905352,20.649157 L 10.805156,20.564641 L 10.70496,20.480126 L 10.604764,20.383537 L 10.504567,20.311095 L 10.404371,20.22658 L 10.304174,20.166211 L 10.203978,20.081697 L 10.103782,20.021328 L 10.003585,19.96096 L 9.9033893,19.900592 L 9.8031933,19.852297 L 9.7029973,19.804003 L 9.6028006,19.755707 L 9.5026046,19.719487 L 9.4024084,19.683267 L 9.3022124,19.647046 L 9.2020155,19.622898 L 9.1018194,19.586676 L 8.9873101,19.562531 L 8.8871131,19.550457 L 8.786917,19.526309 L 8.7010344,19.526309 L 8.6008383,19.514236 L 8.486328,19.502162 L 8.4004462,19.502162 L 8.30025,19.502162 L 8.200054,19.526309 L 8.0998571,19.526309 L 8.0139744,19.526309 L 7.9137783,19.550457 L 7.8278956,19.562531 L 7.7420138,19.586676 L 7.6418177,19.622898 L 7.5559341,19.647046 L 7.4700531,19.671194 L 7.3841695,19.695339 L 7.2982878,19.731561 L 7.2124051,19.767782 L 7.1265223,19.804003 L 7.0406396,19.840224 L 6.969071,19.876444 L 6.8831883,19.924739 L 6.7400513,20.009254 L 6.5826001,20.105843 L 6.4394623,20.22658 L 6.2963246,20.323169 L 6.1675009,20.431831 L 6.0243629,20.552567 L 5.9098536,20.673304 L 5.7810299,20.781967 L 5.6665187,20.902704 L 5.5520094,21.035512 L 5.4374999,21.156249 L 5.337303,21.289059 L 5.237107,21.409795 L 5.1369108,21.542605 L 5.0510281,21.663341 L 4.9508321,21.784078 L 4.8792636,21.904814 L 4.7933809,22.025549 L 4.6502439,22.254949 L 4.5214194,22.460201 L 4.4069092,22.653379 L 4.3210273,22.82241 L 4.1922037,23.051809 L 4.1492618,23.148398 L 4.9078912,23.401944"
id="path2589"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.1492618,23.148398 L 4.1349484,23.196691 L 4.1206351,23.232914 L 4.1206351,23.269133 L 4.1206351,23.305354 L 4.1206351,23.329502 L 4.1349484,23.377796 L 4.1492618,23.401944 L 4.1635752,23.426091 L 4.1778902,23.462311 L 4.1922037,23.486458 L 4.2208311,23.510607 L 4.2494588,23.534754 L 4.2780864,23.5589 L 4.3210273,23.570974 L 4.3496539,23.583048 L 4.3925958,23.595121 L 4.4212234,23.607195 L 4.4498509,23.619269 L 4.4927928,23.619269 L 4.5357337,23.619269 L 4.5786746,23.619269 L 4.6073021,23.619269 L 4.6502439,23.619269 L 4.6788706,23.595121 L 4.7218124,23.595121 L 4.7504399,23.583048 L 4.7790676,23.5589 L 4.8220085,23.534754 L 4.8363218,23.498533 L 4.8649494,23.474385 L 4.893577,23.438165 L 4.9078912,23.401944 L 4.1492618,23.148398"
id="path2591"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 5.294362,23.075955 L 5.2800486,23.039735 L 5.2514211,23.003514 L 5.2227936,22.95522 L 5.2084793,22.918998 L 5.1798517,22.894851 L 5.1512243,22.858631 L 5.1225975,22.846557 L 5.0939699,22.82241 L 5.0653424,22.786188 L 5.0367148,22.762042 L 4.9937729,22.749968 L 4.9794596,22.72582 L 4.9078912,22.689599 L 4.8363218,22.665452 L 4.7504399,22.653379 L 4.6931849,22.641305 L 4.6073021,22.629231 L 4.5357337,22.629231 L 4.4498509,22.629231 L 4.3925958,22.641305 L 4.306713,22.653379 L 4.2351446,22.677526 L 4.1635752,22.701673 L 4.0920075,22.737894 L 4.0347515,22.774116 L 3.9774973,22.82241 L 3.9202421,22.846557 L 3.8773012,22.906924 L 3.8343594,22.95522 L 3.7771051,23.015587 L 3.7627918,23.039735 L 3.7627918,23.075955 L 3.7341633,23.100103 L 3.7341633,23.136324 L 3.71985,23.172544 L 3.71985,23.196691 L 3.7055358,23.232914 L 3.7055358,23.269133 L 3.7055358,23.305354 L 3.7055358,23.329502 L 3.71985,23.377796 L 3.71985,23.414018 L 3.71985,23.450238 L 3.7341633,23.486458 L 3.7484767,23.522681 L 3.7627918,23.570974 L 5.294362,23.075955"
id="path2593"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.621039,23.015587 L 11.621039,23.015587 L 11.535157,23.184618 L 11.434961,23.353649 L 11.349078,23.498533 L 11.248881,23.655489 L 11.148686,23.812448 L 11.04849,23.95733 L 10.962608,24.090141 L 10.876725,24.222951 L 10.790843,24.35576 L 10.690645,24.476497 L 10.604764,24.585159 L 10.51888,24.693822 L 10.418685,24.802485 L 10.347115,24.899074 L 10.261233,24.995662 L 10.175351,25.092252 L 10.089468,25.188841 L 10.003585,25.261282 L 9.9320173,25.333725 L 9.8461353,25.406165 L 9.7602523,25.478608 L 9.6886833,25.538976 L 9.6171148,25.599344 L 9.5312321,25.659712 L 9.4596637,25.695932 L 9.3880943,25.756301 L 9.33084,25.792522 L 9.2592706,25.828743 L 9.1733879,25.864964 L 9.130447,25.889111 L 9.0588785,25.925332 L 9.0016234,25.949479 L 8.930055,25.973627 L 8.8727997,25.9857 L 8.829858,26.009848 L 8.7726037,26.009848 L 8.7153486,26.033996 L 8.6580935,26.046068 L 8.6151525,26.046068 L 8.5722117,26.058142 L 8.5149556,26.058142 L 8.4720146,26.058142 L 8.4147595,26.058142 L 8.3718186,26.058142 L 8.3288768,26.058142 L 8.2716226,26.046068 L 8.2143673,26.046068 L 8.1857398,26.046068 L 8.1284846,26.021922 L 8.0855428,26.009848 L 8.0282885,26.009848 L 7.9853468,25.9857 L 7.9280916,25.973627 L 7.8851507,25.949479 L 7.8278956,25.937405 L 7.7849547,25.913259 L 7.7276994,25.889111 L 7.6847578,25.864964 L 7.6275035,25.840817 L 7.5845617,25.816669 L 7.4700531,25.756301 L 7.355542,25.68386 L 7.255346,25.599344 L 7.1408365,25.514828 L 7.0406396,25.442388 L 6.9404435,25.345798 L 6.8259333,25.249209 L 6.7257371,25.15262 L 6.625541,25.056031 L 6.5396583,24.947368 L 6.4394623,24.838705 L 6.3535795,24.730042 L 6.2676969,24.609307 L 6.1818151,24.500644 L 6.0959323,24.391982 L 6.0100496,24.295392 L 5.9384812,24.174656 L 5.8669118,24.078067 L 5.738089,23.872815 L 5.6235787,23.679637 L 5.5233817,23.498533 L 5.4374999,23.353649 L 5.3229904,23.136324 L 5.294362,23.075955 L 3.7627918,23.570974 L 3.820046,23.679637 L 3.9488697,23.92111 L 4.0347515,24.090141 L 4.1635752,24.295392 L 4.2923997,24.512718 L 4.4355375,24.742117 L 4.5214194,24.862853 L 4.6073021,24.995662 L 4.7074982,25.116398 L 4.7933809,25.249209 L 4.893577,25.382019 L 5.0080872,25.502755 L 5.1082833,25.647638 L 5.237107,25.768375 L 5.3516172,25.901185 L 5.4804417,26.046068 L 5.6092645,26.154731 L 5.738089,26.287541 L 5.881226,26.408277 L 6.0243629,26.529013 L 6.1818151,26.64975 L 6.3392662,26.746339 L 6.4967165,26.855001 L 6.6684819,26.951591 L 6.7543647,27.011959 L 6.8545607,27.048179 L 6.9404435,27.096474 L 7.0263253,27.144768 L 7.1265223,27.180989 L 7.2267184,27.21721 L 7.3269144,27.253432 L 7.4271113,27.289652 L 7.5273066,27.325873 L 7.6275035,27.337946 L 7.7420138,27.362094 L 7.8422098,27.386241 L 7.9567201,27.410389 L 8.0569153,27.422463 L 8.1857398,27.422463 L 8.2859359,27.434535 L 8.4004462,27.446608 L 8.5149556,27.434535 L 8.6294667,27.434535 L 8.7439761,27.422463 L 8.8584856,27.422463 L 8.9873101,27.398315 L 9.1018194,27.362094 L 9.2163297,27.35002 L 9.33084,27.325873 L 9.4453494,27.277578 L 9.574173,27.241358 L 9.6886833,27.205136 L 9.8031933,27.144768 L 9.9177033,27.108548 L 10.032213,27.048179 L 10.146724,26.987811 L 10.246919,26.927443 L 10.375743,26.855001 L 10.47594,26.782559 L 10.59045,26.710118 L 10.690645,26.625602 L 10.805156,26.541087 L 10.905352,26.456572 L 11.005549,26.372056 L 11.120059,26.275467 L 11.234568,26.178878 L 11.32045,26.058142 L 11.434961,25.961553 L 11.535157,25.852891 L 11.649667,25.732155 L 11.749864,25.599344 L 11.850059,25.478608 L 11.96457,25.345798 L 12.064765,25.212988 L 12.164961,25.068104 L 12.279472,24.935294 L 12.379668,24.778338 L 12.479865,24.633454 L 12.594375,24.464424 L 12.694571,24.295392 L 12.794767,24.126361 L 12.909276,23.95733 L 13.009473,23.776226 L 13.123983,23.595121 L 13.123983,23.595121 L 11.621039,23.015587 L 11.621039,23.015587 L 11.621039,23.015587"
id="path2595"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.967919,23.039735 L 20.967919,23.039735 L 20.924977,22.918998 L 20.796153,22.677526 L 20.695957,22.508494 L 20.581446,22.315316 L 20.43831,22.085918 L 20.295171,21.856519 L 20.20929,21.735782 L 20.123407,21.615046 L 20.037524,21.482237 L 19.937328,21.349427 L 19.837133,21.216617 L 19.722621,21.095881 L 19.622425,20.963071 L 19.507915,20.830261 L 19.379092,20.697451 L 19.264582,20.564641 L 19.135759,20.443905 L 19.006935,20.323169 L 18.849484,20.202433 L 18.706346,20.069623 L 18.563208,19.96096 L 18.391443,19.840224 L 18.233992,19.743634 L 18.076541,19.647046 L 17.976345,19.59875 L 17.890463,19.550457 L 17.804581,19.502162 L 17.704384,19.453868 L 17.618501,19.42972 L 17.518305,19.381427 L 17.418108,19.345204 L 17.317912,19.321056 L 17.217716,19.296909 L 17.117519,19.260689 L 17.017323,19.236542 L 16.902813,19.212395 L 16.788304,19.200321 L 16.673793,19.176173 L 16.573597,19.176173 L 16.459086,19.164101 L 16.344577,19.164101 L 16.230066,19.164101 L 16.115556,19.164101 L 15.986734,19.176173 L 15.872223,19.188247 L 15.757714,19.212395 L 15.643203,19.236542 L 15.514379,19.260689 L 15.399869,19.284837 L 15.285358,19.321056 L 15.170848,19.357278 L 15.056339,19.405572 L 14.941829,19.453868 L 14.827319,19.490088 L 14.712809,19.562531 L 14.5983,19.622898 L 14.483789,19.683267 L 14.383592,19.743634 L 14.269082,19.816075 L 14.154574,19.888517 L 14.054376,19.973033 L 13.939867,20.057549 L 13.83967,20.142065 L 13.725161,20.22658 L 13.61065,20.335242 L 13.510454,20.431831 L 13.410257,20.528421 L 13.295748,20.637084 L 13.195551,20.745745 L 13.081041,20.866481 L 12.980846,20.999292 L 12.880649,21.120028 L 12.76614,21.252838 L 12.680257,21.373575 L 12.565747,21.530531 L 12.465551,21.663341 L 12.365354,21.820298 L 12.250844,21.977255 L 12.150647,22.134213 L 12.036138,22.303243 L 11.935941,22.472275 L 11.835745,22.641305 L 11.73555,22.82241 L 11.621039,23.015587 L 13.123983,23.595121 L 13.195551,23.426091 L 13.295748,23.25706 L 13.395944,23.100103 L 13.481827,22.943146 L 13.596338,22.786188 L 13.68222,22.641305 L 13.768102,22.508494 L 13.868298,22.375685 L 13.95418,22.242875 L 14.040063,22.122139 L 14.140259,22.013476 L 14.226141,21.904814 L 14.312024,21.796151 L 14.397906,21.699562 L 14.483789,21.602974 L 14.569672,21.506384 L 14.655554,21.421869 L 14.741436,21.349427 L 14.813005,21.264911 L 14.898889,21.19247 L 14.970457,21.120028 L 15.056339,21.05966 L 15.127907,20.999292 L 15.199477,20.963071 L 15.285358,20.902704 L 15.342613,20.854408 L 15.414183,20.806113 L 15.485752,20.769893 L 15.543006,20.733673 L 15.614576,20.709525 L 15.686144,20.685377 L 15.7434,20.649157 L 15.800654,20.637084 L 15.857909,20.612937 L 15.915165,20.600863 L 15.97242,20.588788 L 16.029674,20.564641 L 16.072615,20.564641 L 16.129871,20.552567 L 16.172812,20.552567 L 16.230066,20.540494 L 16.273008,20.540494 L 16.315949,20.540494 L 16.373203,20.540494 L 16.416145,20.540494 L 16.4734,20.552567 L 16.516342,20.552567 L 16.573597,20.564641 L 16.616538,20.576714 L 16.65948,20.588788 L 16.716735,20.600863 L 16.759676,20.612937 L 16.816932,20.62501 L 16.859872,20.637084 L 16.917127,20.673304 L 16.960068,20.685377 L 17.017323,20.709525 L 17.060264,20.733673 L 17.117519,20.769893 L 17.16046,20.794041 L 17.27497,20.854408 L 17.38948,20.92685 L 17.489676,20.999292 L 17.604187,21.083808 L 17.704384,21.168323 L 17.804581,21.252838 L 17.904776,21.349427 L 18.019286,21.446016 L 18.105169,21.554679 L 18.205364,21.663341 L 18.291247,21.75993 L 18.391443,21.880667 L 18.477325,21.98933 L 18.563208,22.110065 L 18.64909,22.206653 L 18.734973,22.315316 L 18.806542,22.436053 L 18.863797,22.532643 L 19.006935,22.737894 L 19.135759,22.931072 L 19.221641,23.112177 L 19.293209,23.25706 L 19.407719,23.462311 L 19.450661,23.534754 L 19.450661,23.534754 L 20.967919,23.039735 L 20.967919,23.039735 L 20.967919,23.039735"
id="path2597"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.294596,22.979366 L 27.294596,22.979366 L 27.208713,23.148398 L 27.108517,23.317428 L 27.00832,23.474385 L 26.922437,23.631343 L 26.822242,23.776226 L 26.736359,23.92111 L 26.636163,24.065993 L 26.550281,24.198804 L 26.450084,24.319539 L 26.364202,24.452349 L 26.264005,24.561012 L 26.178123,24.669675 L 26.09224,24.766264 L 26.020672,24.874926 L 25.920475,24.971516 L 25.834592,25.056031 L 25.74871,25.15262 L 25.662827,25.225061 L 25.591259,25.309577 L 25.505377,25.369945 L 25.433808,25.442388 L 25.362239,25.502755 L 25.276356,25.575197 L 25.204789,25.611418 L 25.133219,25.671786 L 25.06165,25.708007 L 24.990082,25.756301 L 24.932826,25.792522 L 24.861258,25.828743 L 24.804002,25.864964 L 24.732434,25.889111 L 24.675179,25.913259 L 24.617924,25.937405 L 24.560669,25.949479 L 24.503413,25.973627 L 24.446159,25.9857 L 24.388905,25.997774 L 24.345963,26.009848 L 24.288707,26.009848 L 24.245766,26.021922 L 24.188512,26.021922 L 24.145571,26.021922 L 24.088316,26.021922 L 24.045374,26.021922 L 24.002433,26.021922 L 23.945177,26.009848 L 23.902236,26.009848 L 23.844981,26.009848 L 23.80204,25.9857 L 23.759098,25.9857 L 23.701844,25.973627 L 23.673216,25.949479 L 23.615962,25.937405 L 23.558706,25.925332 L 23.515764,25.901185 L 23.45851,25.877038 L 23.401256,25.852891 L 23.358316,25.828743 L 23.30106,25.804596 L 23.258118,25.780449 L 23.14361,25.708007 L 23.029099,25.647638 L 22.928903,25.575197 L 22.828705,25.490682 L 22.714196,25.406165 L 22.614,25.309577 L 22.49949,25.212988 L 22.399293,25.116398 L 22.313411,25.01981 L 22.213215,24.899074 L 22.127332,24.802485 L 22.027137,24.681749 L 21.941254,24.573086 L 21.855371,24.464424 L 21.769488,24.367834 L 21.697919,24.247097 L 21.612036,24.138434 L 21.554783,24.029772 L 21.411644,23.836594 L 21.282821,23.643417 L 21.196938,23.462311 L 21.12537,23.317428 L 20.996547,23.100103 L 20.967919,23.039735 L 19.450661,23.534754 L 19.493602,23.643417 L 19.622425,23.872815 L 19.722621,24.065993 L 19.837133,24.259171 L 19.965957,24.476497 L 20.123407,24.705895 L 20.20929,24.838705 L 20.280858,24.959442 L 20.381054,25.080178 L 20.481251,25.212988 L 20.581446,25.345798 L 20.681642,25.466534 L 20.796153,25.599344 L 20.896349,25.744228 L 21.039488,25.864964 L 21.153997,25.997774 L 21.282821,26.11851 L 21.411644,26.239246 L 21.554783,26.372056 L 21.697919,26.492793 L 21.855371,26.613529 L 22.012822,26.722192 L 22.170273,26.818781 L 22.327725,26.915369 L 22.427921,26.975737 L 22.513803,27.024033 L 22.614,27.072326 L 22.714196,27.108548 L 22.800079,27.144768 L 22.900275,27.180989 L 23.000471,27.21721 L 23.100668,27.253432 L 23.18655,27.277578 L 23.30106,27.3138 L 23.415569,27.325873 L 23.515764,27.35002 L 23.630275,27.362094 L 23.73047,27.386241 L 23.844981,27.398315 L 23.959492,27.398315 L 24.074002,27.410389 L 24.188512,27.410389 L 24.303022,27.398315 L 24.417531,27.386241 L 24.546355,27.374168 L 24.660865,27.362094 L 24.789688,27.337946 L 24.904199,27.3138 L 25.004395,27.277578 L 25.118906,27.241358 L 25.233416,27.21721 L 25.347925,27.168915 L 25.462436,27.120622 L 25.576945,27.072326 L 25.691455,27.011959 L 25.805965,26.951591 L 25.920475,26.879148 L 26.034985,26.818781 L 26.149496,26.746339 L 26.249692,26.68597 L 26.364202,26.589382 L 26.464398,26.516939 L 26.578908,26.432425 L 26.693417,26.335835 L 26.793615,26.239246 L 26.89381,26.142658 L 27.00832,26.046068 L 27.108517,25.925332 L 27.223026,25.816669 L 27.323224,25.695932 L 27.437732,25.575197 L 27.523615,25.454461 L 27.638125,25.309577 L 27.738321,25.188841 L 27.838518,25.031884 L 27.953027,24.899074 L 28.053224,24.742117 L 28.15342,24.585159 L 28.253617,24.428201 L 28.368127,24.271245 L 28.468322,24.102215 L 28.56852,23.92111 L 28.683029,23.752078 L 28.783225,23.5589 L 28.783225,23.5589 L 27.294596,22.979366 L 27.294596,22.979366 L 27.294596,22.979366"
id="path2599"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.612847,23.075955 L 36.612847,23.075955 L 36.569906,22.95522 L 36.455395,22.713747 L 36.355199,22.544716 L 36.24069,22.339464 L 36.097552,22.110065 L 35.954414,21.892741 L 35.868532,21.75993 L 35.782649,21.639193 L 35.696767,21.506384 L 35.59657,21.373575 L 35.496374,21.252838 L 35.396177,21.107954 L 35.281668,20.975144 L 35.167158,20.842334 L 35.052648,20.709525 L 34.923824,20.588788 L 34.795,20.455978 L 34.666177,20.323169 L 34.52304,20.202433 L 34.379902,20.081697 L 34.222451,19.973033 L 34.064999,19.852297 L 33.907549,19.743634 L 33.735783,19.647046 L 33.649902,19.59875 L 33.564019,19.550457 L 33.463822,19.502162 L 33.37794,19.453868 L 33.277742,19.42972 L 33.177547,19.381427 L 33.091664,19.345204 L 32.991469,19.308983 L 32.891272,19.272763 L 32.791076,19.248615 L 32.676565,19.236542 L 32.57637,19.200321 L 32.46186,19.188247 L 32.34735,19.176173 L 32.232839,19.164101 L 32.118329,19.152027 L 32.018133,19.139953 L 31.903622,19.139953 L 31.789114,19.152027 L 31.674603,19.164101 L 31.545779,19.176173 L 31.43127,19.188247 L 31.31676,19.212395 L 31.202249,19.236542 L 31.073425,19.272763 L 30.958915,19.296909 L 30.844406,19.333131 L 30.729896,19.369353 L 30.615385,19.42972 L 30.500877,19.478014 L 30.386365,19.526309 L 30.271855,19.586676 L 30.157345,19.65912 L 30.057148,19.719487 L 29.94264,19.79193 L 29.828129,19.864372 L 29.713619,19.936813 L 29.613423,20.033402 L 29.498913,20.105843 L 29.398717,20.202433 L 29.284207,20.299021 L 29.18401,20.39561 L 29.083814,20.504274 L 28.969304,20.612937 L 28.854794,20.721599 L 28.768911,20.842334 L 28.654402,20.963071 L 28.554205,21.095881 L 28.439696,21.216617 L 28.339499,21.349427 L 28.239303,21.494311 L 28.139107,21.639193 L 28.024596,21.796151 L 27.9244,21.941034 L 27.80989,22.110065 L 27.709694,22.267023 L 27.609498,22.436053 L 27.509302,22.617157 L 27.409105,22.786188 L 27.294596,22.979366 L 28.783225,23.5589 L 28.883421,23.38987 L 28.983617,23.22084 L 29.069499,23.051809 L 29.169697,22.906924 L 29.255579,22.749968 L 29.355776,22.617157 L 29.441658,22.472275 L 29.541854,22.351538 L 29.627736,22.218727 L 29.713619,22.097992 L 29.799501,21.977255 L 29.899698,21.868593 L 29.985581,21.75993 L 30.071463,21.663341 L 30.157345,21.566752 L 30.243229,21.470163 L 30.329111,21.385647 L 30.400679,21.313207 L 30.486562,21.240764 L 30.572444,21.168323 L 30.644013,21.095881 L 30.715582,21.035512 L 30.801464,20.975144 L 30.873032,20.92685 L 30.944601,20.878555 L 31.016171,20.830261 L 31.087738,20.794041 L 31.159308,20.745745 L 31.230877,20.709525 L 31.273818,20.685377 L 31.345387,20.649157 L 31.402642,20.637084 L 31.47421,20.612937 L 31.517152,20.600863 L 31.574408,20.576714 L 31.631662,20.564641 L 31.688917,20.552567 L 31.731858,20.540494 L 31.789114,20.540494 L 31.832055,20.528421 L 31.889309,20.528421 L 31.932251,20.528421 L 31.989506,20.528421 L 32.032447,20.528421 L 32.075388,20.528421 L 32.118329,20.540494 L 32.16127,20.540494 L 32.218526,20.552567 L 32.261467,20.552567 L 32.304408,20.576714 L 32.361664,20.588788 L 32.404604,20.600863 L 32.46186,20.612937 L 32.504801,20.637084 L 32.562056,20.649157 L 32.619311,20.673304 L 32.662252,20.709525 L 32.719507,20.733673 L 32.776762,20.757819 L 32.819704,20.781967 L 32.934213,20.842334 L 33.034409,20.92685 L 33.148919,20.999292 L 33.249115,21.083808 L 33.349312,21.168323 L 33.463822,21.252838 L 33.564019,21.349427 L 33.664215,21.458089 L 33.76441,21.566752 L 33.850293,21.663341 L 33.95049,21.772004 L 34.050685,21.892741 L 34.136568,22.001404 L 34.222451,22.110065 L 34.294019,22.218727 L 34.379902,22.339464 L 34.45147,22.448127 L 34.52304,22.544716 L 34.651864,22.762042 L 34.780687,22.95522 L 34.880883,23.124251 L 34.952452,23.269133 L 35.066961,23.498533 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 36.612847,23.075955"
id="path2601"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 42.939524,23.015587 L 42.939524,23.015587 L 42.853641,23.184618 L 42.767759,23.353649 L 42.653249,23.498533 L 42.567367,23.655489 L 42.46717,23.812448 L 42.381288,23.95733 L 42.281091,24.090141 L 42.195209,24.222951 L 42.109327,24.35576 L 42.009131,24.476497 L 41.923248,24.585159 L 41.837365,24.693822 L 41.751482,24.802485 L 41.665599,24.899074 L 41.579718,24.995662 L 41.479521,25.092252 L 41.407952,25.188841 L 41.32207,25.261282 L 41.236187,25.333725 L 41.150305,25.406165 L 41.078736,25.466534 L 41.007168,25.538976 L 40.935599,25.599344 L 40.849716,25.659712 L 40.778147,25.695932 L 40.706579,25.756301 L 40.635009,25.792522 L 40.577755,25.828743 L 40.506186,25.864964 L 40.448931,25.889111 L 40.377363,25.925332 L 40.320107,25.949479 L 40.262853,25.973627 L 40.205598,25.9857 L 40.148343,26.009848 L 40.091087,26.009848 L 40.033833,26.033996 L 39.990891,26.046068 L 39.933637,26.046068 L 39.890696,26.046068 L 39.83344,26.058142 L 39.7905,26.058142 L 39.747558,26.058142 L 39.690302,26.058142 L 39.647361,26.058142 L 39.590106,26.046068 L 39.547165,26.046068 L 39.504224,26.046068 L 39.446969,26.021922 L 39.389714,26.009848 L 39.361086,26.009848 L 39.30383,25.9857 L 39.26089,25.973627 L 39.203635,25.949479 L 39.160694,25.937405 L 39.117753,25.913259 L 39.046183,25.889111 L 39.003242,25.864964 L 38.945988,25.840817 L 38.903046,25.816669 L 38.788536,25.756301 L 38.68834,25.671786 L 38.573829,25.599344 L 38.473633,25.514828 L 38.359123,25.442388 L 38.258927,25.345798 L 38.158732,25.249209 L 38.058535,25.15262 L 37.958338,25.043958 L 37.872457,24.935294 L 37.77226,24.838705 L 37.686378,24.730042 L 37.58618,24.609307 L 37.500298,24.500644 L 37.428729,24.391982 L 37.342848,24.283319 L 37.271278,24.174656 L 37.19971,24.078067 L 37.056573,23.860741 L 36.942063,23.679637 L 36.841867,23.498533 L 36.770299,23.353649 L 36.655789,23.136324 L 36.612847,23.075955 L 35.095589,23.5589 L 35.152845,23.679637 L 35.281668,23.909036 L 35.367551,24.090141 L 35.48206,24.295392 L 35.610884,24.500644 L 35.768336,24.730042 L 35.854218,24.862853 L 35.940101,24.995662 L 36.025983,25.116398 L 36.126178,25.249209 L 36.226376,25.369945 L 36.340885,25.502755 L 36.441082,25.635565 L 36.555591,25.768375 L 36.684415,25.901185 L 36.81324,26.021922 L 36.927749,26.154731 L 37.056573,26.287541 L 37.214023,26.408277 L 37.357162,26.529013 L 37.500298,26.637676 L 37.65775,26.746339 L 37.829515,26.855001 L 37.986966,26.951591 L 38.087163,26.999885 L 38.173045,27.048179 L 38.273241,27.096474 L 38.359123,27.132696 L 38.445006,27.168915 L 38.559516,27.21721 L 38.645399,27.253432 L 38.745595,27.277578 L 38.845792,27.3138 L 38.945988,27.337946 L 39.060498,27.362094 L 39.160694,27.386241 L 39.275204,27.410389 L 39.3754,27.422463 L 39.489911,27.422463 L 39.604419,27.434535 L 39.71893,27.434535 L 39.83344,27.434535 L 39.947951,27.434535 L 40.06246,27.422463 L 40.191284,27.410389 L 40.305794,27.398315 L 40.420303,27.362094 L 40.534814,27.35002 L 40.649323,27.3138 L 40.778147,27.277578 L 40.892658,27.241358 L 41.007168,27.205136 L 41.107364,27.144768 L 41.221874,27.096474 L 41.350698,27.048179 L 41.450893,26.987811 L 41.565404,26.927443 L 41.679913,26.855001 L 41.794424,26.782559 L 41.908934,26.710118 L 42.009131,26.625602 L 42.123641,26.541087 L 42.223836,26.456572 L 42.338347,26.372056 L 42.438542,26.275467 L 42.553053,26.178878 L 42.653249,26.058142 L 42.767759,25.961553 L 42.867955,25.852891 L 42.982465,25.732155 L 43.082662,25.599344 L 43.182858,25.478608 L 43.297368,25.345798 L 43.38325,25.212988 L 43.497761,25.068104 L 43.597957,24.935294 L 43.698152,24.778338 L 43.812662,24.633454 L 43.912858,24.464424 L 44.013056,24.295392 L 44.127566,24.126361 L 44.227763,23.95733 L 44.327958,23.776226 L 44.428154,23.595121 L 44.428154,23.595121 L 42.939524,23.015587 L 42.939524,23.015587 L 42.939524,23.015587"
id="path2603"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 52.272089,23.027661 L 52.229147,22.918998 L 52.100324,22.677526 L 52.000126,22.49642 L 51.885618,22.303243 L 51.756794,22.085918 L 51.613656,21.856519 L 51.527773,21.735782 L 51.427577,21.602974 L 51.341695,21.470163 L 51.241499,21.349427 L 51.141301,21.216617 L 51.041106,21.095881 L 50.926595,20.963071 L 50.812087,20.830261 L 50.697577,20.697451 L 50.568754,20.564641 L 50.43993,20.443905 L 50.311106,20.323169 L 50.167967,20.190359 L 50.024831,20.069623 L 49.867379,19.96096 L 49.709929,19.840224 L 49.552477,19.743634 L 49.380712,19.647046 L 49.294829,19.59875 L 49.208946,19.550457 L 49.10875,19.502162 L 49.022867,19.453868 L 48.922672,19.42972 L 48.822475,19.381427 L 48.736592,19.345204 L 48.636397,19.321056 L 48.521886,19.284837 L 48.421691,19.260689 L 48.321495,19.236542 L 48.206984,19.212395 L 48.106788,19.188247 L 47.992277,19.176173 L 47.877768,19.176173 L 47.763257,19.164101 L 47.648748,19.164101 L 47.534238,19.164101 L 47.419728,19.164101 L 47.305218,19.176173 L 47.190709,19.188247 L 47.076198,19.200321 L 46.961687,19.236542 L 46.847179,19.248615 L 46.718354,19.284837 L 46.603844,19.321056 L 46.489334,19.357278 L 46.374825,19.405572 L 46.260315,19.441794 L 46.145804,19.502162 L 46.031294,19.562531 L 45.916783,19.622898 L 45.802274,19.683267 L 45.702078,19.743634 L 45.587567,19.816075 L 45.473058,19.888517 L 45.372862,19.973033 L 45.258352,20.057549 L 45.158155,20.142065 L 45.043646,20.22658 L 44.929135,20.335242 L 44.828938,20.431831 L 44.728742,20.528421 L 44.628546,20.637084 L 44.514036,20.745745 L 44.41384,20.866481 L 44.29933,20.999292 L 44.199135,21.120028 L 44.098938,21.252838 L 43.984428,21.385647 L 43.884231,21.530531 L 43.784034,21.663341 L 43.683839,21.820298 L 43.569328,21.977255 L 43.469132,22.134213 L 43.368937,22.303243 L 43.254426,22.472275 L 43.154231,22.641305 L 43.054034,22.82241 L 42.939524,23.015587 L 44.428154,23.595121 L 44.52835,23.426091 L 44.628546,23.25706 L 44.714429,23.100103 L 44.814624,22.943146 L 44.900507,22.786188 L 45.000704,22.641305 L 45.086587,22.508494 L 45.186783,22.375685 L 45.272666,22.242875 L 45.372862,22.122139 L 45.458744,22.013476 L 45.544626,21.904814 L 45.630508,21.796151 L 45.716392,21.699562 L 45.802274,21.602974 L 45.888156,21.506384 L 45.974038,21.421869 L 46.059921,21.349427 L 46.145804,21.264911 L 46.217374,21.19247 L 46.303256,21.120028 L 46.374825,21.05966 L 46.446393,20.999292 L 46.517962,20.938923 L 46.589531,20.902704 L 46.661098,20.842334 L 46.732668,20.806113 L 46.804237,20.769893 L 46.861492,20.733673 L 46.93306,20.709525 L 47.004629,20.673304 L 47.04757,20.649157 L 47.119139,20.637084 L 47.176394,20.612937 L 47.23365,20.600863 L 47.290904,20.576714 L 47.333846,20.564641 L 47.391101,20.552567 L 47.434041,20.552567 L 47.491296,20.552567 L 47.534238,20.540494 L 47.577179,20.540494 L 47.634435,20.540494 L 47.677375,20.540494 L 47.73463,20.540494 L 47.777571,20.552567 L 47.820512,20.552567 L 47.877768,20.564641 L 47.920708,20.576714 L 47.963649,20.576714 L 48.020905,20.600863 L 48.07816,20.612937 L 48.121101,20.62501 L 48.178356,20.637084 L 48.221298,20.673304 L 48.278553,20.685377 L 48.321495,20.709525 L 48.37875,20.733673 L 48.436005,20.769893 L 48.478945,20.781967 L 48.593455,20.842334 L 48.693651,20.92685 L 48.793848,20.999292 L 48.908357,21.083808 L 49.008554,21.168323 L 49.10875,21.252838 L 49.223261,21.349427 L 49.323457,21.446016 L 49.423653,21.554679 L 49.509536,21.663341 L 49.609732,21.75993 L 49.695615,21.868593 L 49.781497,21.98933 L 49.867379,22.085918 L 49.953262,22.206653 L 50.024831,22.315316 L 50.110712,22.42398 L 50.182282,22.532643 L 50.311106,22.737894 L 50.425616,22.918998 L 50.525813,23.100103 L 50.611694,23.232914 L 50.711891,23.462311 L 50.754832,23.522681 L 52.272089,23.027661"
id="path2605"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 50.754832,23.522681 L 50.769146,23.5589 L 50.797773,23.595121 L 50.812087,23.643417 L 50.840713,23.679637 L 50.869341,23.691711 L 50.883654,23.740005 L 50.912282,23.764153 L 50.940909,23.7883 L 50.983851,23.812448 L 51.012478,23.836594 L 51.041106,23.848667 L 51.069734,23.872815 L 51.09836,23.896962 L 51.141301,23.909036 L 51.184243,23.92111 L 51.212871,23.933184 L 51.28444,23.945256 L 51.356008,23.95733 L 51.427577,23.969404 L 51.51346,23.969404 L 51.58503,23.969404 L 51.656597,23.95733 L 51.74248,23.933184 L 51.799736,23.92111 L 51.885618,23.896962 L 51.942872,23.860741 L 52.014442,23.836594 L 52.071696,23.7883 L 52.128951,23.752078 L 52.171892,23.691711 L 52.214833,23.643417 L 52.257773,23.583048 L 52.272089,23.5589 L 52.300715,23.522681 L 52.300715,23.498533 L 52.31503,23.462311 L 52.329344,23.438165 L 52.329344,23.401944 L 52.329344,23.365722 L 52.329344,23.329502 L 52.329344,23.293281 L 52.329344,23.269133 L 52.329344,23.22084 L 52.329344,23.184618 L 52.31503,23.148398 L 52.300715,23.112177 L 52.300715,23.075955 L 52.272089,23.027661 L 50.754832,23.522681"
id="path2607"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2609"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2611"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2613"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2615"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2617"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2619"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2621"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2623"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2625"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2627"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2629"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2631"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2633"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2635"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2637"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2639"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.127442,3.9896238 L 18.111228,3.9896238 L 9.2645717,12.137837 L 16.095014,12.137837 L 17.494019,10.114274 L 12.823808,10.114274 L 20.127442,3.9896238"
id="path2479"
style="fill:#ffffff;stroke:none;stroke-width:0.085" />
<path
d="M 25.250271,12.137837 L 36.730348,3.9896238 L 34.570119,3.9896238 L 26.484688,10.707853 L 31.463503,3.9896238 L 29.447288,3.9896238 L 21.361858,10.707853 L 26.484688,3.9896238 L 24.324458,3.9896238 L 18.255243,12.137837 L 20.127442,12.137837 L 28.665493,5.4196081 L 23.378072,12.137837 L 25.250271,12.137837"
id="path2496"
style="fill:#ffffff;stroke:none;stroke-width:0.085" />
<path
d="M 35.804536,10.114274 L 34.714135,12.137837 L 36.730348,12.137837 L 42.182358,3.9896238 L 39.836965,3.9896238 L 27.57509,12.137837 L 28.665493,12.137837 L 32.553904,10.114274 L 34.261514,8.0637305 L 38.911151,5.6354549 L 36.730348,8.0637305 L 34.261514,8.0637305 L 32.553904,10.114274 L 35.804536,10.114274"
id="path2498"
style="fill:#ffffff;stroke:none;stroke-width:0.085" />
<path
d="M 43.10817,10.114274 L 45.741592,10.114274 C 47.449202,10.114274 49.774021,8.6842902 51.481631,6.2290334 C 53.353828,4.3943364 53.18924,3.9896238 51.173025,3.9896238 L 46.831994,3.9896238 L 37.98534,12.137837 L 40.001554,12.137837 L 44.65119,8.0637305 L 47.305186,6.0401675 L 49.156813,6.0401675 C 50.247213,6.0401675 50.411802,6.2290334 49.465415,6.4448802 C 48.539603,7.470152 47.613791,8.0637305 46.523388,8.0637305 L 44.65119,8.0637305 L 40.001554,12.137837 L 43.10817,10.114274"
id="path2500"
style="fill:#ffffff;stroke:none;stroke-width:0.085" />
<path
d="M 52.119413,10.114274 L 54.588246,10.114274 C 56.460445,10.114274 58.785264,8.6842902 60.492875,6.2290334 C 62.365073,4.3943364 62.200483,3.9896238 60.019681,3.9896238 L 55.678648,3.9896238 L 46.996583,12.137837 L 49.012797,12.137837 L 53.662434,8.0637305 L 56.295856,6.0401675 L 58.168056,6.0401675 C 59.258457,6.0401675 59.258457,6.2290334 58.476661,6.4448802 C 57.550846,7.470152 56.60446,8.0637305 55.534633,8.0637305 L 53.662434,8.0637305 L 49.012797,12.137837 L 52.119413,10.114274"
id="path2502"
style="fill:#ffffff;stroke:none;stroke-width:0.085" />
</svg>

After

Width:  |  Height:  |  Size: 256 KiB

@ -0,0 +1,317 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="51.358818"
height="47.630692"
version="1.0"
sodipodi:docname="sw_multilayer.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>Multilayer switch</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
inkscape:collect="always"
id="linearGradient10123">
<stop
style="stop-color:#e4405c;stop-opacity:1;"
offset="0"
id="stop10125" />
<stop
style="stop-color:#e4405c;stop-opacity:0;"
offset="1"
id="stop10127" />
</linearGradient>
<linearGradient
id="linearGradient8331">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop8333" />
<stop
style="stop-color:#cfd8e9;stop-opacity:1;"
offset="1"
id="stop8335" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6587">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942481e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942482e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8331"
id="linearGradient8337"
x1="2.1178279"
y1="0.30649999"
x2="-0.4954865"
y2="0.30649999"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117962,0,0,1.035008,-4.0973e-2,-6.788682e-3)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10123"
id="linearGradient9177"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(24.600134,0,0,23.288307,-8.5475463,-4.5293485)"
x1="1.3990936"
y1="1.4711363"
x2="0.49966058"
y2="0.56367606" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8331"
id="linearGradient9199"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(24.666332,1.3331909e-2,-1.2883406e-2,23.708747,-8.6563136,-4.6316275)"
x1="2.1178279"
y1="0.30649999"
x2="-0.4954865"
y2="0.30649999" />
</defs>
<sodipodi:namedview
inkscape:window-height="940"
inkscape:window-width="1280"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="15.791667"
inkscape:cx="28.769432"
inkscape:cy="30.461883"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:current-layer="svg1998" />
<path
id="path11907"
d="M 1.8402723,44.565612 L 1.8402723,47.615693 L 44.293781,47.615693 L 44.293781,44.565612 L 1.8402723,44.565612"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001" />
<path
id="path11020"
d="M 44.370594,6.1851672 L 51.194316,1.0980117 L 51.358819,41.344844 L 44.266438,47.63069 L 44.370594,6.1851672"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
sodipodi:nodetypes="ccccc" />
<path
id="path2037"
d="M 0.062500355,5.0439492 L 0.062500355,46.326915 L 44.31814,46.326915 L 44.31814,5.0439492 L 0.062500355,5.0439492"
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2041"
d="M -0.028418806,5.1647552 L 5.5982489,0.11782966 L 50.022311,0.14184042 L 44.346312,5.1887393 L -0.028418806,5.1647552"
style="fill:url(#linearGradient9199);fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2045"
d="M 44.228586,5.0887264 L 49.976169,0.12831483 L 49.976169,41.348635 L 44.228586,46.309047 L 44.228586,5.0887264"
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2049"
d="M 17.380994,23.789246 L 5.6713307,23.789246 L 5.6713307,22.252216 L 2.0797111,25.326273 L 5.6713307,28.749657 L 5.6713307,27.235915 L 17.380994,27.235915 L 17.380994,23.789246"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2051"
d="M 19.767207,21.506989 L 11.329361,13.495809 L 12.534768,12.354681 L 7.7131417,12.354681 L 7.7131417,16.919191 L 8.893948,15.778064 L 17.380994,23.789246 L 19.767207,21.506989"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2053"
d="M 23.383427,21.506989 L 23.383427,10.049138 L 24.982435,10.049138 L 21.784419,6.9983684 L 18.168199,10.049138 L 19.767207,10.049138 L 19.767207,21.506989 L 23.383427,21.506989"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2055"
d="M 25.818839,23.789246 L 34.281285,15.778064 L 35.462092,16.919191 L 35.462092,12.354681 L 30.665065,12.354681 L 31.845872,13.495809 L 23.383427,21.506989 L 25.818839,23.789246"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2057"
d="M 25.818839,27.235915 L 37.872905,27.235915 L 37.872905,28.749657 L 41.120121,25.326273 L 37.872905,22.252216 L 37.872905,23.789246 L 25.818839,23.789246 L 25.818839,27.235915"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2059"
d="M 23.383427,29.51817 L 31.845872,37.529351 L 30.665065,38.693768 L 35.462092,38.321154 L 35.462092,34.129257 L 34.281285,35.270385 L 25.818839,27.235915 L 23.383427,29.51817"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2061"
d="M 19.767207,29.51817 L 19.767207,40.999311 L 18.168199,40.999311 L 21.784419,44.026792 L 24.982435,40.999311 L 23.383427,40.999311 L 23.383427,29.51817 L 19.767207,29.51817"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2063"
d="M 17.380994,27.235915 L 8.893948,35.270385 L 7.7131417,34.129257 L 7.7131417,38.693768 L 12.534768,38.693768 L 11.329361,37.529351 L 19.767207,29.51817 L 17.380994,27.235915"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2065"
d="M 17.749996,24.185146 L 6.0895329,24.185146 L 6.0895329,22.648118 L 2.4733134,25.698888 L 6.0895329,29.145558 L 6.0895329,27.631818 L 17.749996,27.631818 L 17.749996,24.185146"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2067"
d="M 20.185408,21.902892 L 11.722963,13.868422 L 12.95297,12.727294 L 8.1067438,12.727294 L 8.1067438,17.315093 L 9.2875501,16.150677 L 17.749996,24.185146 L 20.185408,21.902892"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2069"
d="M 23.801628,21.902892 L 23.801628,10.421751 L 25.400638,10.421751 L 22.178019,7.3709816 L 18.561799,10.421751 L 20.185408,10.421751 L 20.185408,21.902892 L 23.801628,21.902892"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2071"
d="M 26.237042,24.185146 L 34.674887,16.150677 L 35.880293,17.315093 L 35.880293,12.727294 L 31.034067,12.727294 L 32.239475,13.868422 L 23.801628,21.902892 L 26.237042,24.185146"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2073"
d="M 26.237042,27.631818 L 38.266506,27.631818 L 38.266506,29.145558 L 41.513724,25.698888 L 38.266506,22.648118 L 38.266506,24.185146 L 26.237042,24.185146 L 26.237042,27.631818"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2075"
d="M 23.801628,29.914073 L 32.239475,37.925254 L 31.034067,39.066381 L 35.880293,38.693768 L 35.880293,34.478581 L 34.674887,35.619709 L 26.237042,27.631818 L 23.801628,29.914073"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2077"
d="M 20.185408,29.914073 L 20.185408,41.348635 L 18.561799,41.348635 L 22.178019,44.422693 L 25.400638,41.348635 L 23.801628,41.348635 L 23.801628,29.914073 L 20.185408,29.914073"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2079"
d="M 17.749996,27.631818 L 9.2875501,35.619709 L 8.1067438,34.478581 L 8.1067438,39.066381 L 12.95297,39.066381 L 11.722963,37.925254 L 20.185408,29.914073 L 17.749996,27.631818"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2081"
d="M 28.229653,25.885193 L 28.205052,25.582445 L 28.180453,25.233121 L 28.131251,24.930373 L 28.082051,24.627625 L 28.008251,24.301589 L 27.909851,23.998839 L 27.786851,23.696091 L 27.688449,23.393343 L 27.540848,23.113883 L 27.393248,22.834423 L 27.221046,22.554964 L 27.024245,22.275504 L 26.827446,22.019332 L 26.606044,21.786449 L 26.384642,21.530277 L 26.163242,21.320684 L 25.89264,21.111088 L 25.646639,20.901493 L 25.376037,20.715188 L 25.105435,20.552169 L 24.785634,20.365862 L 24.515032,20.226133 L 24.19523,20.10969 L 23.875428,19.993249 L 23.580228,19.876809 L 23.235825,19.806942 L 22.940625,19.71379 L 22.571621,19.667213 L 22.251819,19.620637 L 21.907419,19.597347 L 21.587617,19.597347 L 21.587617,19.597347 L 21.243215,19.597347 L 20.923413,19.620637 L 20.579011,19.667213 L 20.259209,19.71379 L 19.914806,19.806942 L 19.595005,19.876809 L 19.275203,19.993249 L 18.955402,20.10969 L 18.660201,20.226133 L 18.389599,20.365862 L 18.069797,20.552169 L 17.774597,20.715188 L 17.528594,20.901493 L 17.257994,21.111088 L 17.011991,21.320684 L 16.790591,21.530277 L 16.54459,21.786449 L 16.347789,22.019332 L 16.150988,22.275504 L 15.954187,22.554964 L 15.781984,22.834423 L 15.634385,23.113883 L 15.486783,23.393343 L 15.363783,23.696091 L 15.240783,23.998839 L 15.166982,24.301589 L 15.093181,24.627625 L 15.01938,24.930373 L 14.970181,25.233121 L 14.970181,25.582445 L 14.94558,25.885193 L 14.94558,25.885193 L 14.970181,26.187941 L 14.970181,26.513979 L 15.01938,26.840015 L 15.093181,27.166051 L 15.166982,27.468799 L 15.240783,27.771547 L 15.363783,28.074295 L 15.486783,28.377043 L 15.634385,28.656502 L 15.781984,28.935962 L 15.954187,29.215422 L 16.150988,29.494882 L 16.347789,29.751053 L 16.54459,29.983937 L 16.790591,30.21682 L 17.011991,30.449704 L 17.257994,30.659299 L 17.528594,30.868893 L 17.774597,31.0552 L 18.069797,31.218219 L 18.389599,31.381236 L 18.660201,31.544255 L 18.955402,31.683984 L 19.275203,31.800427 L 19.595005,31.870291 L 19.914806,31.963443 L 20.259209,32.056598 L 20.579011,32.079886 L 20.923413,32.149751 L 21.243215,32.173039 L 21.587617,32.173039 L 21.587617,32.173039 L 21.907419,32.173039 L 22.251819,32.149751 L 22.571621,32.079886 L 22.940625,32.056598 L 23.235825,31.963443 L 23.580228,31.870291 L 23.875428,31.800427 L 24.19523,31.683984 L 24.515032,31.544255 L 24.785634,31.381236 L 25.105435,31.218219 L 25.376037,31.0552 L 25.646639,30.868893 L 25.89264,30.659299 L 26.163242,30.449704 L 26.384642,30.21682 L 26.606044,29.983937 L 26.827446,29.751053 L 27.024245,29.494882 L 27.221046,29.215422 L 27.393248,28.935962 L 27.540848,28.656502 L 27.688449,28.377043 L 27.786851,28.074295 L 27.909851,27.771547 L 28.008251,27.468799 L 28.082051,27.166051 L 28.131251,26.840015 L 28.180453,26.513979 L 28.205052,26.187941 L 28.229653,25.885193"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2083"
d="M 29.016857,26.653708 L 28.992256,26.35096 L 28.967655,26.024924 L 28.918456,25.698888 L 28.893857,25.372849 L 28.795455,25.070102 L 28.697056,24.767354 L 28.598654,24.464606 L 28.475654,24.185146 L 28.328052,23.882398 L 28.180453,23.602938 L 28.008251,23.323479 L 27.83605,23.044019 L 27.614648,22.787847 L 27.393248,22.554964 L 27.196447,22.32208 L 26.950446,22.089199 L 26.679844,21.879603 L 26.433844,21.670008 L 26.163242,21.483701 L 25.89264,21.320684 L 25.597439,21.157665 L 25.302236,20.994648 L 24.982435,20.854917 L 24.687234,20.738476 L 24.367432,20.645321 L 24.047631,20.575457 L 23.727827,20.482305 L 23.383427,20.435728 L 23.063625,20.38915 L 22.719222,20.365862 L 22.37482,20.365862 L 22.37482,20.365862 L 22.030419,20.365862 L 21.710618,20.38915 L 21.390816,20.435728 L 21.046414,20.482305 L 20.726612,20.575457 L 20.40681,20.645321 L 20.062408,20.738476 L 19.767207,20.854917 L 19.472004,20.994648 L 19.152203,21.157665 L 18.881601,21.320684 L 18.5864,21.483701 L 18.315798,21.670008 L 18.045196,21.879603 L 17.799195,22.089199 L 17.577796,22.32208 L 17.331792,22.554964 L 17.134993,22.787847 L 16.938192,23.044019 L 16.741391,23.323479 L 16.569189,23.602938 L 16.42159,23.882398 L 16.273988,24.185146 L 16.150988,24.464606 L 16.052586,24.767354 L 15.954187,25.070102 L 15.880386,25.372849 L 15.831186,25.698888 L 15.781984,26.024924 L 15.757385,26.35096 L 15.757385,26.653708 L 15.757385,26.653708 L 15.757385,26.979744 L 15.781984,27.30578 L 15.831186,27.58524 L 15.880386,27.911278 L 15.954187,28.237314 L 16.052586,28.540062 L 16.150988,28.84281 L 16.273988,29.145558 L 16.42159,29.425017 L 16.569189,29.704477 L 16.741391,29.983937 L 16.938192,30.240109 L 17.134993,30.519568 L 17.331792,30.752452 L 17.577796,30.985335 L 17.799195,31.218219 L 18.045196,31.427812 L 18.315798,31.614119 L 18.5864,31.823715 L 18.881601,31.986732 L 19.152203,32.149751 L 19.472004,32.31277 L 19.767207,32.429211 L 20.062408,32.545651 L 20.40681,32.662094 L 20.726612,32.755247 L 21.046414,32.825111 L 21.390816,32.871689 L 21.710618,32.918266 L 22.030419,32.941554 L 22.37482,32.941554 L 22.37482,32.941554 L 22.719222,32.941554 L 23.063625,32.918266 L 23.383427,32.871689 L 23.727827,32.825111 L 24.047631,32.755247 L 24.367432,32.662094 L 24.687234,32.545651 L 24.982435,32.429211 L 25.302236,32.31277 L 25.597439,32.149751 L 25.89264,31.986732 L 26.163242,31.823715 L 26.433844,31.614119 L 26.679844,31.427812 L 26.950446,31.218219 L 27.196447,30.985335 L 27.393248,30.752452 L 27.614648,30.519568 L 27.83605,30.240109 L 28.008251,29.983937 L 28.180453,29.704477 L 28.328052,29.425017 L 28.475654,29.145558 L 28.598654,28.84281 L 28.697056,28.540062 L 28.795455,28.237314 L 28.893857,27.911278 L 28.918456,27.58524 L 28.967655,27.30578 L 28.992256,26.979744 L 29.016857,26.653708"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2085"
d="M 28.598654,26.281095 L 28.574053,25.955059 L 28.574053,25.629021 L 28.524853,25.326273 L 28.451053,25.000237 L 28.377254,24.697489 L 28.303453,24.394741 L 28.180453,24.091993 L 28.05745,23.789246 L 27.93445,23.509786 L 27.786851,23.230326 L 27.59005,22.950866 L 27.393248,22.671406 L 27.221046,22.415235 L 26.999646,22.182351 L 26.778244,21.949468 L 26.532243,21.716584 L 26.286242,21.506989 L 26.040241,21.297396 L 25.769639,21.111088 L 25.474436,20.924781 L 25.179236,20.761764 L 24.908634,20.622033 L 24.588832,20.482305 L 24.269031,20.365862 L 23.949229,20.249421 L 23.629427,20.179557 L 23.309626,20.10969 L 22.965223,20.063114 L 22.645422,20.016537 L 22.301021,19.993249 L 21.98122,19.993249 L 21.98122,19.993249 L 21.636817,19.993249 L 21.317015,20.016537 L 20.972613,20.063114 L 20.62821,20.10969 L 20.308409,20.179557 L 19.988607,20.249421 L 19.668805,20.365862 L 19.349004,20.482305 L 19.053803,20.622033 L 18.7586,20.761764 L 18.4634,20.924781 L 18.168199,21.111088 L 17.922196,21.297396 L 17.651596,21.506989 L 17.405593,21.716584 L 17.184193,21.949468 L 16.938192,22.182351 L 16.71679,22.415235 L 16.54459,22.671406 L 16.347789,22.950866 L 16.150988,23.230326 L 16.027987,23.509786 L 15.880386,23.789246 L 15.757385,24.091993 L 15.634385,24.394741 L 15.560584,24.697489 L 15.486783,25.000237 L 15.412983,25.326273 L 15.363783,25.629021 L 15.363783,25.955059 L 15.339182,26.281095 L 15.339182,26.281095 L 15.363783,26.583843 L 15.363783,26.909879 L 15.412983,27.235915 L 15.486783,27.538663 L 15.560584,27.864699 L 15.634385,28.167449 L 15.757385,28.470197 L 15.880386,28.749657 L 16.027987,29.052405 L 16.150988,29.331865 L 16.347789,29.611325 L 16.54459,29.867496 L 16.71679,30.123668 L 16.938192,30.356549 L 17.184193,30.612721 L 17.405593,30.822316 L 17.651596,31.0552 L 17.922196,31.241507 L 18.168199,31.4511 L 18.4634,31.614119 L 18.7586,31.777138 L 19.053803,31.940155 L 19.349004,32.056598 L 19.668805,32.173039 L 19.988607,32.28948 L 20.308409,32.359346 L 20.62821,32.429211 L 20.972613,32.499075 L 21.317015,32.545651 L 21.636817,32.545651 L 21.98122,32.568939 L 21.98122,32.568939 L 22.301021,32.545651 L 22.645422,32.545651 L 22.965223,32.499075 L 23.309626,32.429211 L 23.629427,32.359346 L 23.949229,32.28948 L 24.269031,32.173039 L 24.588832,32.056598 L 24.908634,31.940155 L 25.179236,31.777138 L 25.474436,31.614119 L 25.769639,31.4511 L 26.040241,31.241507 L 26.286242,31.0552 L 26.532243,30.822316 L 26.778244,30.612721 L 26.999646,30.356549 L 27.221046,30.123668 L 27.393248,29.867496 L 27.59005,29.611325 L 27.786851,29.331865 L 27.93445,29.052405 L 28.05745,28.749657 L 28.180453,28.470197 L 28.303453,28.167449 L 28.377254,27.864699 L 28.451053,27.538663 L 28.524853,27.235915 L 28.574053,26.909879 L 28.574053,26.583843 L 28.598654,26.281095"
style="fill:url(#linearGradient9177);fill-opacity:1;stroke:none;stroke-width:0.001" />
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

@ -0,0 +1,207 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45.1"
width="65.937935"
height="55.615818"
version="1.0"
sodipodi:docname="optical_router.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata2003">
<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>Router</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
id="linearGradient9312">
<stop
style="stop-color:#3c8c8c;stop-opacity:1;"
offset="0"
id="stop9314" />
<stop
style="stop-color:#ffffff;stop-opacity:0.94117647;"
offset="1"
id="stop9316" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9312"
id="linearGradient2216"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.252829,0,0,14.082619,53.467529,3.4188377)"
x1="-1.0929121"
y1="0.63145506"
x2="-4.5832458"
y2="0.070047863" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="7.8958336"
inkscape:cx="1.710508"
inkscape:cy="33.547491"
inkscape:window-x="124"
inkscape:window-y="71"
inkscape:current-layer="svg1998" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.39215686;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4558"
width="64.552505"
height="54.450546"
x="1.3854325"
y="1.1652732"
ry="15.247323"
rx="32.212925"
inkscape:transform-center-x="8.4568136" />
<rect
style="opacity:1;fill:#3c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.015;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect9971"
width="64.499474"
height="52.040936"
x="0"
y="0.91024679"
ry="11.802391"
rx="32.249737"
inkscape:transform-center-x="8.2952569" />
<g
id="g3579"
transform="matrix(1.0000067,0,0,0.9900067,40.759311,2.3271376)">
<path
id="path3581"
d="M 23.677527,9.7502028 L 23.620489,9.1645488 L 23.506407,8.5788958 L 23.316272,8.0127658 L 23.03107,7.4271138 L 22.650803,6.8609828 L 22.213492,6.2948508 L 21.681115,5.7482428 L 21.072684,5.2211558 L 20.3882,4.6940668 L 19.627661,4.1865018 L 18.810084,3.6789348 L 17.916451,3.1908918 L 16.946765,2.7028468 L 15.920038,2.2733688 L 14.817258,1.8438898 L 13.657439,1.4144108 L 12.45959,1.0239748 L 11.18569,0.6725838 L 9.8737612,0.3211921 L 8.5047922,0.0088434012 L 7.0977972,-0.2839824 L 5.6527742,-0.5572882 L 4.1697252,-0.7915484 L 2.6676622,-1.0258099 L 1.1275722,-1.2015057 L -0.45054482,-1.3576797 L -2.0476748,-1.4943326 L -3.6448038,-1.5919412 L -5.2609448,-1.6700286 L -6.8961048,-1.7285939 L -8.5122458,-1.7285939 L -8.5122458,-1.7285939 L -10.147406,-1.7285939 L -11.78256,-1.6700286 L -13.379691,-1.5919412 L -14.995836,-1.4943326 L -16.592965,-1.3576797 L -18.152069,-1.2015057 L -19.711169,-1.0258099 L -21.213234,-0.7915484 L -22.696283,-0.5572882 L -24.141307,-0.2839824 L -25.548301,0.0088434012 L -26.917268,0.3211921 L -28.229199,0.6725838 L -29.503099,1.0239748 L -30.700949,1.4144108 L -31.860772,1.8438898 L -32.963548,2.2733688 L -33.990275,2.7028468 L -34.959963,3.1908918 L -35.853593,3.6789348 L -36.671173,4.1865018 L -37.431708,4.6940668 L -38.116197,5.2211558 L -38.705611,5.7482428 L -39.257001,6.2948508 L -39.694309,6.8609828 L -40.074582,7.4271138 L -40.359781,8.0127658 L -40.568933,8.5788958 L -40.683011,9.1645488 L -40.721038,9.7502028 L -40.721038,9.7502028 L -40.683011,10.335856 L -40.568933,10.901987 L -40.359781,11.48764 L -40.074582,12.03425 L -39.694309,12.619902 L -39.257001,13.166511 L -38.705611,13.732642 L -38.116197,14.279254 L -37.431708,14.806341 L -36.671173,15.294385 L -35.853593,15.801949 L -34.959963,16.309514 L -33.990275,16.758515 L -32.963548,17.207517 L -31.860772,17.656519 L -30.700949,18.066477 L -29.503099,18.456913 L -28.229199,18.808302 L -26.917268,19.159693 L -25.548301,19.472041 L -24.141307,19.784392 L -22.696283,20.038171 L -21.213234,20.291955 L -19.711169,20.506693 L -18.152069,20.682391 L -16.592965,20.838567 L -14.995836,20.975218 L -13.379691,21.072827 L -11.78256,21.150915 L -10.147406,21.20948 L -8.5122458,21.20948 L -8.5122458,21.20948 L -6.8961048,21.20948 L -5.2609448,21.150915 L -3.6448038,21.072827 L -2.0476748,20.975218 L -0.45054482,20.838567 L 1.1275722,20.682391 L 2.6676622,20.506693 L 4.1697252,20.291955 L 5.6527742,20.038171 L 7.0977972,19.784392 L 8.5047922,19.472041 L 9.8737612,19.159693 L 11.18569,18.808302 L 12.45959,18.456913 L 13.657439,18.066477 L 14.817258,17.656519 L 15.920038,17.207517 L 16.946765,16.758515 L 17.916451,16.309514 L 18.810084,15.801949 L 19.627661,15.294385 L 20.3882,14.806341 L 21.072684,14.279254 L 21.681115,13.732642 L 22.213492,13.166511 L 22.650803,12.619902 L 23.03107,12.03425 L 23.316272,11.48764 L 23.506407,10.901987 L 23.620489,10.335856 L 23.677527,9.7502028"
style="fill:#3c8c8c;fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g4160"
transform="matrix(1.0000067,0,0,0.9900067,-7.7865845e-2,0.5539587)">
<path
id="path4815"
d="M 64.514069,11.541297 L 64.457031,10.955643 L 64.342949,10.36999 L 64.152814,9.8038604 L 63.867612,9.2182077 L 63.487345,8.6520765 L 63.050034,8.0859452 L 62.517657,7.5393369 L 61.909226,7.0122499 L 61.224742,6.4851607 L 60.464203,5.9775955 L 59.646626,5.4700289 L 58.752993,4.9819859 L 57.783307,4.4939413 L 56.75658,4.0644625 L 55.6538,3.6349838 L 54.493981,3.2055052 L 53.296132,2.8150692 L 52.022232,2.4636777 L 50.710303,2.1122862 L 49.341334,1.7999375 L 47.934339,1.5071117 L 46.489316,1.2338059 L 45.006267,0.99954576 L 43.504204,0.76528425 L 41.964114,0.58958842 L 40.385997,0.43341443 L 38.788867,0.29676153 L 37.191738,0.19915292 L 35.575597,0.12106555 L 33.940437,0.06250017 L 32.324296,0.06250017 L 32.324296,0.06250017 L 30.689136,0.06250017 L 29.053981,0.12106555 L 27.45685,0.19915292 L 25.840705,0.29676153 L 24.243576,0.43341443 L 22.684472,0.58958842 L 21.125372,0.76528425 L 19.623307,0.99954576 L 18.140258,1.2338059 L 16.695234,1.5071117 L 15.28824,1.7999375 L 13.919273,2.1122862 L 12.607342,2.4636777 L 11.333442,2.8150692 L 10.135592,3.2055052 L 8.9757693,3.6349838 L 7.8729941,4.0644625 L 6.8462664,4.4939413 L 5.8765785,4.9819859 L 4.9829488,5.4700289 L 4.1653682,5.9775955 L 3.4048335,6.4851607 L 2.7203448,7.0122499 L 2.1309311,7.5393369 L 1.5795405,8.0859452 L 1.1422325,8.6520765 L 0.76195982,9.2182077 L 0.47676065,9.8038604 L 0.26760898,10.36999 L 0.15353084,10.955643 L 0.11550327,11.541297 L 0.11550327,11.541297 L 0.15353084,12.12695 L 0.26760898,12.693081 L 0.47676065,13.278734 L 0.76195982,13.825344 L 1.1422325,14.410996 L 1.5795405,14.957605 L 2.1309311,15.523736 L 2.7203448,16.070348 L 3.4048335,16.597435 L 4.1653682,17.085479 L 4.9829488,17.593043 L 5.8765785,18.100608 L 6.8462664,18.549609 L 7.8729941,18.998611 L 8.9757693,19.447613 L 10.135592,19.857571 L 11.333442,20.248007 L 12.607342,20.599396 L 13.919273,20.950787 L 15.28824,21.263135 L 16.695234,21.575486 L 18.140258,21.829265 L 19.623307,22.083049 L 21.125372,22.297787 L 22.684472,22.473485 L 24.243576,22.629661 L 25.840705,22.766312 L 27.45685,22.863921 L 29.053981,22.942009 L 30.689136,23.000574 L 32.324296,23.000574 L 32.324296,23.000574 L 33.940437,23.000574 L 35.575597,22.942009 L 37.191738,22.863921 L 38.788867,22.766312 L 40.385997,22.629661 L 41.964114,22.473485 L 43.504204,22.297787 L 45.006267,22.083049 L 46.489316,21.829265 L 47.934339,21.575486 L 49.341334,21.263135 L 50.710303,20.950787 L 52.022232,20.599396 L 53.296132,20.248007 L 54.493981,19.857571 L 55.6538,19.447613 L 56.75658,18.998611 L 57.783307,18.549609 L 58.752993,18.100608 L 59.646626,17.593043 L 60.464203,17.085479 L 61.224742,16.597435 L 61.909226,16.070348 L 62.517657,15.523736 L 63.050034,14.957605 L 63.487345,14.410996 L 63.867612,13.825344 L 64.152814,13.278734 L 64.342949,12.693081 L 64.457031,12.12695 L 64.514069,11.541297"
style="fill:url(#linearGradient2216);fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g2348"
transform="matrix(17.401911,0,0,14.71664,42.176668,19.193921)">
<path
id="path2339"
d="M -1.142098,0.44241813 L -1.142098,0.62241813 L -0.780098,0.62241813 L -0.582098,1.0334181 L -0.385098,0.62241813 L -0.023097999,0.62241813 L -0.023097999,0.44241813 L 0.205902,0.67341813 L -0.023097999,0.90241813 L -0.023097999,0.73841813 L -0.286098,0.73841813 L -0.501098,1.1974181 L -0.286098,1.6564181 L -0.023097999,1.6564181 L -0.023097999,1.4924181 L 0.205902,1.7224181 L -0.023097999,1.9514181 L -0.023097999,1.7884181 L -0.385098,1.7884181 L -0.582098,1.3614181 L -0.780098,1.7884181 L -1.142098,1.7884181 L -1.142098,1.9514181 L -1.373098,1.7224181 L -1.142098,1.4924181 L -1.142098,1.6564181 L -0.895098,1.6564181 L -0.665098,1.1974181 L -0.895098,0.73841813 L -1.142098,0.73841813 L -1.142098,0.90241813 L -1.373098,0.67341813 L -1.142098,0.44241813"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2341"
d="M -1.126098,0.45941813 L -1.126098,0.64041813 L -0.764098,0.64041813 L -0.566098,1.0494181 L -0.369098,0.64041813 L -0.0080979988,0.64041813 L -0.0080979988,0.45941813 L 0.222902,0.68941813 L -0.0080979988,0.91941813 L -0.0080979988,0.75541813 L -0.270098,0.75541813 L -0.484098,1.2144181 L -0.270098,1.6734181 L -0.0080979988,1.6734181 L -0.0080979988,1.5094181 L 0.222902,1.7384181 L -0.0080979988,1.9684181 L -0.0080979988,1.8044181 L -0.369098,1.8044181 L -0.566098,1.3774181 L -0.764098,1.8044181 L -1.126098,1.8044181 L -1.126098,1.9684181 L -1.356098,1.7384181 L -1.126098,1.5094181 L -1.126098,1.6734181 L -0.879098,1.6734181 L -0.649098,1.2144181 L -0.879098,0.75541813 L -1.126098,0.75541813 L -1.126098,0.91941813 L -1.356098,0.68941813 L -1.126098,0.45941813"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
<path
d="M 7.447082,13.971201 L 12.519423,15.52448 L 33.42696,6.1703937 L 38.9551,7.3338214 L 36.053482,3.5658555 L 21.628559,3.3715594 L 27.525178,4.935936 L 7.447082,13.971201 L 7.447082,13.971201 L 7.447082,13.971201"
id="path7562"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 27.764824,18.369743 L 32.799692,19.922511 L 53.290455,10.859807 L 59.229705,12.094769 L 56.328593,8.2938103 L 41.491534,8.0939631 L 47.843439,9.3014841 L 27.764824,18.369743 L 27.764824,18.369743 L 27.764824,18.369743"
id="path7564"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 7.8910148,14.340171 L 12.925372,15.925932 L 33.871408,6.5063705 L 39.361566,7.7022854 L 36.459948,3.9343184 L 22.035027,3.7400222 L 27.969119,5.304905 L 7.8910148,14.340171 L 7.8910148,14.340171 L 7.8910148,14.340171"
id="path7566"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 28.17129,18.738207 L 33.206157,20.290975 L 54.146012,11.267318 L 59.636686,12.430244 L 56.734542,8.6952661 L 42.309624,8.50097 L 48.243714,10.065851 L 28.17129,18.738207 L 28.17129,18.738207 L 28.17129,18.738207"
id="path7568"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

@ -0,0 +1,178 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
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"
height="67.474899"
id="svg548"
inkscape:version="0.45.1"
sodipodi:docbase="/home/grossmj/workspace/gns3-artwork/symbols"
sodipodi:docname="printer.svg"
sodipodi:version="0.32"
width="68.484467"
version="1.0"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata3">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>Clipart by Nicu Buculei - antenna</dc:title>
<dc:description />
<dc:subject>
<rdf:Bag>
<rdf:li>hash</rdf:li>
<rdf:li />
<rdf:li>hardware</rdf:li>
<rdf:li>computer</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:publisher>
<cc:Agent
rdf:about="http://www.openclipart.org">
<dc:title>Nicu Buculei</dc:title>
</cc:Agent>
</dc:publisher>
<dc:creator>
<cc:Agent>
<dc:title>Nicu Buculei</dc:title>
</cc:Agent>
</dc:creator>
<dc:rights>
<cc:Agent>
<dc:title>Nicu Buculei</dc:title>
</cc:Agent>
</dc:rights>
<dc:date />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://web.resource.org/cc/PublicDomain" />
<dc:language>en</dc:language>
</cc:Work>
<cc:License
rdf:about="http://web.resource.org/cc/PublicDomain">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs550" />
<sodipodi:namedview
id="base"
inkscape:cx="101.36943"
inkscape:cy="41.642029"
inkscape:window-height="724"
inkscape:window-width="998"
inkscape:window-x="425"
inkscape:window-y="191"
inkscape:zoom="3.09"
showgrid="true"
inkscape:current-layer="g1066" />
<g
id="g1066"
transform="matrix(0.209872,0,0,0.201542,-11.68339,-8.1785571)">
<path
d="M 61.448647,162.38358 L 238.43286,205.90412 C 285.76967,159.62064 329.92797,138.20522 380.44414,113.68201 L 197.10121,70.161458 C 148.70462,90.5401 103.48653,123.35352 61.448647,162.38358 z "
id="path762"
sodipodi:nodetypes="ccccc"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.14378476;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 59.329076,162.38358 L 57.209505,320.92272 L 234.19371,371.69669 C 234.19371,371.69669 238.43286,204.86792 237.37307,204.86792 C 236.31329,204.86792 57.209505,163.41978 59.329076,162.38358 z "
id="path763"
sodipodi:nodetypes="ccccc"
style="fill:#e6e6e6;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.14378476;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 236.31329,206.94033 C 251.15028,185.18005 368.7865,112.6458 379.38435,114.71821 L 374.08542,274.29356 L 234.19371,373.7691 L 236.31329,206.94033 z "
id="path764"
sodipodi:nodetypes="ccccc"
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.14378476;stroke-linecap:butt;stroke-linejoin:bevel;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 101.7205,152.02154 C 134.9274,140.96898 184.03024,120.58976 198.161,106.42858 L 303.07978,135.44228 C 274.46557,150.98534 245.85136,164.45598 228.89479,188.28866 C 217.23714,184.14385 109.139,156.16635 101.7205,152.02154 z "
id="path766"
sodipodi:nodetypes="ccccc"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.14378476;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 197.10121,106.42858 L 247.97093,42.183962 L 332.75378,62.908033 L 303.07978,135.44228 L 197.10121,106.42858 z "
id="path767"
sodipodi:nodetypes="ccccc"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.14378476;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 63.568219,286.728 L 229.95457,337.50198 L 228.89479,366.51568 L 63.568219,317.81411 C 61.448647,316.77791 63.568219,290.87282 63.568219,286.728 z "
id="path768"
sodipodi:nodetypes="ccccc"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.14378476;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 63.568219,280.51078 C 66.747576,281.54698 228.89479,332.32096 228.89479,330.24855 C 228.89479,328.17615 229.95457,300.19865 229.95457,299.16245 L 64.628005,250.46088 L 63.568219,280.51078 z "
id="path769"
sodipodi:nodetypes="ccccc"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:3.14378476;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 65.215974,314.91191 L 69.782633,306.6198 L 71.087356,316.18768 L 71.087356,316.82599"
id="path789"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.83834267pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 67.524611,310.64358 C 68.829504,311.28105 69.983398,311.42778 69.983398,311.42778"
id="path790"
sodipodi:nodetypes="cc"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.83834267pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 76.055546,307.01272 L 72.94444,312.36036 L 76.055546,312.75412 L 76.005609,317.46346"
id="path791"
sodipodi:nodetypes="cccc"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.83834267pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 67.925464,270.65524 L 67.173101,277.91613 L 69.782633,278.79897"
id="path792"
sodipodi:nodetypes="ccc"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.83834267pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 71.739675,272.17556 C 71.739675,272.17556 71.087356,278.55443 71.087356,279.1919 C 71.087356,279.8302 75.001611,280.51741 75.001611,280.51741"
id="path793"
sodipodi:nodetypes="ccc"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.83834267pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 71.739675,272.81386 L 76.22189,274.25377"
id="path794"
sodipodi:nodetypes="cc"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.83834267pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 71.087356,276.24991 L 75.285548,277.52569"
id="path795"
sodipodi:nodetypes="cc"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.83834267pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 77.32712,274.72711 L 81.273761,275.62736"
id="path796"
sodipodi:nodetypes="cc"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.83834267pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 79.050246,275.38116 L 78.881528,281.6448"
id="path797"
sodipodi:nodetypes="cc"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.83834267pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 241.88013,359.78699 C 247.24688,358.47557 363.95726,282.39916 366.63979,270.59473 C 369.32317,258.78947 373.34781,123.69008 372.0057,123.69008 C 370.66444,123.69008 389.44553,286.33425 241.88013,359.78699 z "
id="path567"
style="fill:#000000;fill-opacity:0.25;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 66.143922,237.80344 C 68.826875,231.24552 64.802403,181.40247 67.485441,178.7788 C 70.168394,176.15596 201.6354,206.32358 201.6354,206.32358 C 201.6354,206.32358 76.875905,172.22088 66.143922,237.80344 z "
id="path568"
style="fill:#ffffff;fill-opacity:0.8;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 197.61076,111.88482 C 198.95287,111.88482 296.88216,134.18309 286.15034,138.11817 C 275.41768,142.05326 232.49043,170.90946 232.49043,170.90946 C 232.49043,170.90946 315.66325,131.55942 197.61076,111.88482 z "
id="path569"
style="fill:#000000;fill-opacity:0.247059;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.5 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 44 KiB

@ -0,0 +1,395 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="51.399269"
height="66.033699"
version="1.0"
sodipodi:docbase="/home/grossmj/workspace/gns3-artwork/symbols"
sodipodi:docname="route_swproc.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>Route switch processor</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
id="linearGradient2276">
<stop
style="stop-color:#e4405c;stop-opacity:1;"
offset="0"
id="stop2278" />
<stop
style="stop-color:#fad3d5;stop-opacity:1;"
offset="1"
id="stop2280" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient10123">
<stop
style="stop-color:#e4405c;stop-opacity:1;"
offset="0"
id="stop10125" />
<stop
style="stop-color:#e4405c;stop-opacity:0;"
offset="1"
id="stop10127" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6587">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942481e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942482e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10123"
id="linearGradient10129"
x1="1.3990936"
y1="1.4711363"
x2="0.49966058"
y2="0.56367606"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117962,0,0,1.035008,-4.0972948e-2,-6.788682e-3)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2276"
id="linearGradient2282"
x1="0.88995945"
y1="0.14170313"
x2="-0.82563519"
y2="-0.82482123"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0012147,0,0,1.0037569,-6.9120064e-4,2.6084526e-3)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10123"
id="linearGradient5943"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(24.600134,0,0,23.288307,-8.5070951,13.747007)"
x1="1.3990936"
y1="1.4711363"
x2="0.49966058"
y2="0.56367606" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="22.33279"
inkscape:cx="21.886346"
inkscape:cy="53.66193"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="svg1998" />
<path
id="path11907"
d="M 1.8807223,62.841967 L 1.8807223,65.892048 L 44.334231,65.892048 L 44.334231,62.841967 L 1.8807223,62.841967"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001" />
<path
id="path11020"
d="M 44.411044,6.8397503 L 51.29809,0.71178991 L 51.264938,59.616654 L 44.325436,65.854587 L 44.411044,6.8397503"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
sodipodi:nodetypes="ccccc" />
<path
id="path2037"
d="M 0.058173141,22.648646 L 0.058173141,64.60327 L 44.37442,64.60327 L 44.37442,22.648646 L 0.058173141,22.648646"
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2045"
d="M 44.114388,23.203353 L 49.960305,18.908684 L 50.036765,59.697473 L 44.124843,64.691373 L 44.114388,23.203353"
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001"
sodipodi:nodetypes="ccccc" />
<path
id="path2049"
d="M 17.421444,42.065601 L 5.7117807,42.065601 L 5.7117807,40.528571 L 2.1201611,43.602628 L 5.7117807,47.026012 L 5.7117807,45.51227 L 17.421444,45.51227 L 17.421444,42.065601"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2051"
d="M 19.807657,39.783344 L 11.369811,31.772164 L 12.575218,30.631036 L 7.7535917,30.631036 L 7.7535917,35.195546 L 8.934398,34.054419 L 17.421444,42.065601 L 19.807657,39.783344"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2053"
d="M 23.423877,39.783344 L 23.423877,28.325493 L 25.022885,28.325493 L 21.824869,25.274723 L 18.208649,28.325493 L 19.807657,28.325493 L 19.807657,39.783344 L 23.423877,39.783344"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2055"
d="M 25.859289,42.065601 L 34.321735,34.054419 L 35.502542,35.195546 L 35.502542,30.631036 L 30.705515,30.631036 L 31.886322,31.772164 L 23.423877,39.783344 L 25.859289,42.065601"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2057"
d="M 25.859289,45.51227 L 37.913355,45.51227 L 37.913355,47.026012 L 41.160571,43.602628 L 37.913355,40.528571 L 37.913355,42.065601 L 25.859289,42.065601 L 25.859289,45.51227"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2059"
d="M 23.423877,47.794525 L 31.886322,55.805706 L 30.705515,56.970123 L 35.502542,56.597509 L 35.502542,52.405612 L 34.321735,53.54674 L 25.859289,45.51227 L 23.423877,47.794525"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2061"
d="M 19.807657,47.794525 L 19.807657,59.275666 L 18.208649,59.275666 L 21.824869,62.303147 L 25.022885,59.275666 L 23.423877,59.275666 L 23.423877,47.794525 L 19.807657,47.794525"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2063"
d="M 17.421444,45.51227 L 8.934398,53.54674 L 7.7535917,52.405612 L 7.7535917,56.970123 L 12.575218,56.970123 L 11.369811,55.805706 L 19.807657,47.794525 L 17.421444,45.51227"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2065"
d="M 17.790446,42.461501 L 6.1299829,42.461501 L 6.1299829,40.924473 L 2.5137634,43.975243 L 6.1299829,47.421913 L 6.1299829,45.908173 L 17.790446,45.908173 L 17.790446,42.461501"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2067"
d="M 20.225858,40.179247 L 11.763413,32.144777 L 12.99342,31.003649 L 8.1471938,31.003649 L 8.1471938,35.591448 L 9.3280001,34.427032 L 17.790446,42.461501 L 20.225858,40.179247"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2069"
d="M 23.842078,40.179247 L 23.842078,28.698106 L 25.441088,28.698106 L 22.218469,25.647337 L 18.602249,28.698106 L 20.225858,28.698106 L 20.225858,40.179247 L 23.842078,40.179247"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2071"
d="M 26.277492,42.461501 L 34.715337,34.427032 L 35.920743,35.591448 L 35.920743,31.003649 L 31.074517,31.003649 L 32.279925,32.144777 L 23.842078,40.179247 L 26.277492,42.461501"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2073"
d="M 26.277492,45.908173 L 38.306956,45.908173 L 38.306956,47.421913 L 41.554174,43.975243 L 38.306956,40.924473 L 38.306956,42.461501 L 26.277492,42.461501 L 26.277492,45.908173"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2075"
d="M 23.842078,48.190428 L 32.279925,56.201609 L 31.074517,57.342736 L 35.920743,56.970123 L 35.920743,52.754936 L 34.715337,53.896064 L 26.277492,45.908173 L 23.842078,48.190428"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2077"
d="M 20.225858,48.190428 L 20.225858,59.62499 L 18.602249,59.62499 L 22.218469,62.699048 L 25.441088,59.62499 L 23.842078,59.62499 L 23.842078,48.190428 L 20.225858,48.190428"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2079"
d="M 17.790446,45.908173 L 9.3280001,53.896064 L 8.1471938,52.754936 L 8.1471938,57.342736 L 12.99342,57.342736 L 11.763413,56.201609 L 20.225858,48.190428 L 17.790446,45.908173"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2081"
d="M 28.270103,44.161548 L 28.245502,43.8588 L 28.220903,43.509476 L 28.171701,43.206728 L 28.122501,42.90398 L 28.048701,42.577944 L 27.950301,42.275194 L 27.827301,41.972446 L 27.728899,41.669698 L 27.581298,41.390238 L 27.433698,41.110778 L 27.261496,40.831319 L 27.064695,40.551859 L 26.867896,40.295687 L 26.646494,40.062804 L 26.425092,39.806632 L 26.203692,39.597039 L 25.93309,39.387443 L 25.687089,39.177848 L 25.416487,38.991543 L 25.145885,38.828524 L 24.826084,38.642217 L 24.555482,38.502488 L 24.23568,38.386045 L 23.915878,38.269604 L 23.620678,38.153164 L 23.276275,38.083297 L 22.981075,37.990145 L 22.612071,37.943568 L 22.292269,37.896992 L 21.947869,37.873702 L 21.628067,37.873702 L 21.628067,37.873702 L 21.283665,37.873702 L 20.963863,37.896992 L 20.619461,37.943568 L 20.299659,37.990145 L 19.955256,38.083297 L 19.635455,38.153164 L 19.315653,38.269604 L 18.995852,38.386045 L 18.700651,38.502488 L 18.430049,38.642217 L 18.110247,38.828524 L 17.815047,38.991543 L 17.569044,39.177848 L 17.298444,39.387443 L 17.052441,39.597039 L 16.831041,39.806632 L 16.58504,40.062804 L 16.388239,40.295687 L 16.191438,40.551859 L 15.994637,40.831319 L 15.822434,41.110778 L 15.674835,41.390238 L 15.527233,41.669698 L 15.404233,41.972446 L 15.281233,42.275194 L 15.207432,42.577944 L 15.133631,42.90398 L 15.05983,43.206728 L 15.010631,43.509476 L 15.010631,43.8588 L 14.98603,44.161548 L 14.98603,44.161548 L 15.010631,44.464296 L 15.010631,44.790334 L 15.05983,45.11637 L 15.133631,45.442406 L 15.207432,45.745154 L 15.281233,46.047902 L 15.404233,46.35065 L 15.527233,46.653398 L 15.674835,46.932857 L 15.822434,47.212317 L 15.994637,47.491777 L 16.191438,47.771237 L 16.388239,48.027408 L 16.58504,48.260292 L 16.831041,48.493175 L 17.052441,48.726059 L 17.298444,48.935654 L 17.569044,49.145248 L 17.815047,49.331555 L 18.110247,49.494574 L 18.430049,49.657591 L 18.700651,49.82061 L 18.995852,49.960339 L 19.315653,50.076782 L 19.635455,50.146646 L 19.955256,50.239798 L 20.299659,50.332953 L 20.619461,50.356241 L 20.963863,50.426106 L 21.283665,50.449394 L 21.628067,50.449394 L 21.628067,50.449394 L 21.947869,50.449394 L 22.292269,50.426106 L 22.612071,50.356241 L 22.981075,50.332953 L 23.276275,50.239798 L 23.620678,50.146646 L 23.915878,50.076782 L 24.23568,49.960339 L 24.555482,49.82061 L 24.826084,49.657591 L 25.145885,49.494574 L 25.416487,49.331555 L 25.687089,49.145248 L 25.93309,48.935654 L 26.203692,48.726059 L 26.425092,48.493175 L 26.646494,48.260292 L 26.867896,48.027408 L 27.064695,47.771237 L 27.261496,47.491777 L 27.433698,47.212317 L 27.581298,46.932857 L 27.728899,46.653398 L 27.827301,46.35065 L 27.950301,46.047902 L 28.048701,45.745154 L 28.122501,45.442406 L 28.171701,45.11637 L 28.220903,44.790334 L 28.245502,44.464296 L 28.270103,44.161548"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path2083"
d="M 29.057307,44.930063 L 29.032706,44.627315 L 29.008105,44.301279 L 28.958906,43.975243 L 28.934307,43.649204 L 28.835905,43.346457 L 28.737506,43.043709 L 28.639104,42.740961 L 28.516104,42.461501 L 28.368502,42.158753 L 28.220903,41.879293 L 28.048701,41.599834 L 27.8765,41.320374 L 27.655098,41.064202 L 27.433698,40.831319 L 27.236897,40.598435 L 26.990896,40.365554 L 26.720294,40.155958 L 26.474294,39.946363 L 26.203692,39.760056 L 25.93309,39.597039 L 25.637889,39.43402 L 25.342686,39.271003 L 25.022885,39.131272 L 24.727684,39.014831 L 24.407882,38.921676 L 24.088081,38.851812 L 23.768277,38.75866 L 23.423877,38.712083 L 23.104075,38.665505 L 22.759672,38.642217 L 22.41527,38.642217 L 22.41527,38.642217 L 22.070869,38.642217 L 21.751068,38.665505 L 21.431266,38.712083 L 21.086864,38.75866 L 20.767062,38.851812 L 20.44726,38.921676 L 20.102858,39.014831 L 19.807657,39.131272 L 19.512454,39.271003 L 19.192653,39.43402 L 18.922051,39.597039 L 18.62685,39.760056 L 18.356248,39.946363 L 18.085646,40.155958 L 17.839645,40.365554 L 17.618246,40.598435 L 17.372242,40.831319 L 17.175443,41.064202 L 16.978642,41.320374 L 16.781841,41.599834 L 16.609639,41.879293 L 16.46204,42.158753 L 16.314438,42.461501 L 16.191438,42.740961 L 16.093036,43.043709 L 15.994637,43.346457 L 15.920836,43.649204 L 15.871636,43.975243 L 15.822434,44.301279 L 15.797835,44.627315 L 15.797835,44.930063 L 15.797835,44.930063 L 15.797835,45.256099 L 15.822434,45.582135 L 15.871636,45.861595 L 15.920836,46.187633 L 15.994637,46.513669 L 16.093036,46.816417 L 16.191438,47.119165 L 16.314438,47.421913 L 16.46204,47.701372 L 16.609639,47.980832 L 16.781841,48.260292 L 16.978642,48.516464 L 17.175443,48.795923 L 17.372242,49.028807 L 17.618246,49.26169 L 17.839645,49.494574 L 18.085646,49.704167 L 18.356248,49.890474 L 18.62685,50.10007 L 18.922051,50.263087 L 19.192653,50.426106 L 19.512454,50.589125 L 19.807657,50.705566 L 20.102858,50.822006 L 20.44726,50.938449 L 20.767062,51.031602 L 21.086864,51.101466 L 21.431266,51.148044 L 21.751068,51.194621 L 22.070869,51.217909 L 22.41527,51.217909 L 22.41527,51.217909 L 22.759672,51.217909 L 23.104075,51.194621 L 23.423877,51.148044 L 23.768277,51.101466 L 24.088081,51.031602 L 24.407882,50.938449 L 24.727684,50.822006 L 25.022885,50.705566 L 25.342686,50.589125 L 25.637889,50.426106 L 25.93309,50.263087 L 26.203692,50.10007 L 26.474294,49.890474 L 26.720294,49.704167 L 26.990896,49.494574 L 27.236897,49.26169 L 27.433698,49.028807 L 27.655098,48.795923 L 27.8765,48.516464 L 28.048701,48.260292 L 28.220903,47.980832 L 28.368502,47.701372 L 28.516104,47.421913 L 28.639104,47.119165 L 28.737506,46.816417 L 28.835905,46.513669 L 28.934307,46.187633 L 28.958906,45.861595 L 29.008105,45.582135 L 29.032706,45.256099 L 29.057307,44.930063"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path2085"
d="M 28.639104,44.55745 L 28.614503,44.231414 L 28.614503,43.905376 L 28.565303,43.602628 L 28.491503,43.276592 L 28.417704,42.973844 L 28.343903,42.671096 L 28.220903,42.368348 L 28.0979,42.065601 L 27.9749,41.786141 L 27.827301,41.506681 L 27.6305,41.227221 L 27.433698,40.947761 L 27.261496,40.69159 L 27.040096,40.458706 L 26.818694,40.225823 L 26.572693,39.992939 L 26.326692,39.783344 L 26.080691,39.573751 L 25.810089,39.387443 L 25.514886,39.201136 L 25.219686,39.038119 L 24.949084,38.898388 L 24.629282,38.75866 L 24.309481,38.642217 L 23.989679,38.525776 L 23.669877,38.455912 L 23.350076,38.386045 L 23.005673,38.339469 L 22.685872,38.292892 L 22.341471,38.269604 L 22.02167,38.269604 L 22.02167,38.269604 L 21.677267,38.269604 L 21.357465,38.292892 L 21.013063,38.339469 L 20.66866,38.386045 L 20.348859,38.455912 L 20.029057,38.525776 L 19.709255,38.642217 L 19.389454,38.75866 L 19.094253,38.898388 L 18.79905,39.038119 L 18.50385,39.201136 L 18.208649,39.387443 L 17.962646,39.573751 L 17.692046,39.783344 L 17.446043,39.992939 L 17.224643,40.225823 L 16.978642,40.458706 L 16.75724,40.69159 L 16.58504,40.947761 L 16.388239,41.227221 L 16.191438,41.506681 L 16.068437,41.786141 L 15.920836,42.065601 L 15.797835,42.368348 L 15.674835,42.671096 L 15.601034,42.973844 L 15.527233,43.276592 L 15.453433,43.602628 L 15.404233,43.905376 L 15.404233,44.231414 L 15.379632,44.55745 L 15.379632,44.55745 L 15.404233,44.860198 L 15.404233,45.186234 L 15.453433,45.51227 L 15.527233,45.815018 L 15.601034,46.141054 L 15.674835,46.443804 L 15.797835,46.746552 L 15.920836,47.026012 L 16.068437,47.32876 L 16.191438,47.60822 L 16.388239,47.88768 L 16.58504,48.143851 L 16.75724,48.400023 L 16.978642,48.632904 L 17.224643,48.889076 L 17.446043,49.098671 L 17.692046,49.331555 L 17.962646,49.517862 L 18.208649,49.727455 L 18.50385,49.890474 L 18.79905,50.053493 L 19.094253,50.21651 L 19.389454,50.332953 L 19.709255,50.449394 L 20.029057,50.565835 L 20.348859,50.635701 L 20.66866,50.705566 L 21.013063,50.77543 L 21.357465,50.822006 L 21.677267,50.822006 L 22.02167,50.845294 L 22.02167,50.845294 L 22.341471,50.822006 L 22.685872,50.822006 L 23.005673,50.77543 L 23.350076,50.705566 L 23.669877,50.635701 L 23.989679,50.565835 L 24.309481,50.449394 L 24.629282,50.332953 L 24.949084,50.21651 L 25.219686,50.053493 L 25.514886,49.890474 L 25.810089,49.727455 L 26.080691,49.517862 L 26.326692,49.331555 L 26.572693,49.098671 L 26.818694,48.889076 L 27.040096,48.632904 L 27.261496,48.400023 L 27.433698,48.143851 L 27.6305,47.88768 L 27.827301,47.60822 L 27.9749,47.32876 L 28.0979,47.026012 L 28.220903,46.746552 L 28.343903,46.443804 L 28.417704,46.141054 L 28.491503,45.815018 L 28.565303,45.51227 L 28.614503,45.186234 L 28.614503,44.860198 L 28.639104,44.55745"
style="fill:url(#linearGradient5943);fill-opacity:1;stroke:none;stroke-width:0.001" />
<g
id="g2219"
transform="matrix(33.241698,0,0,26.670396,7.212902,14.366269)">
<path
id="path2154"
d="M -0.21510344,-0.37831648 L -0.21510344,0.33868352 L 1.1168966,0.33868352 L 1.1168966,-0.37831648 L -0.21510344,-0.37831648"
style="fill:#cf0e30;stroke:none;stroke-width:0.001" />
<path
id="path2158"
d="M -0.21605593,-0.37712931 L -0.046850643,-0.53572289 L 1.2867674,-0.53572289 L 1.1175621,-0.37712931 L -0.21605593,-0.37712931"
style="fill:url(#linearGradient2282);fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2162"
d="M 1.1074675,-0.37740699 L 1.2764721,-0.53631648 L 1.2764721,0.18481076 L 1.1074675,0.34372025 L 1.1074675,-0.37740699"
style="fill:#790015;stroke:none;stroke-width:0.001" />
<path
id="path2166"
d="M 0.14689656,-0.15931648 L 0.72789656,0.094683521"
style="fill:none;stroke:#000000;stroke-width:0.03" />
<path
id="path2168"
d="M -0.034103438,-0.22131648 L 0.89589656,-0.22131648"
style="fill:none;stroke:#000000;stroke-width:0.03" />
<path
id="path2170"
d="M -0.034103438,0.14368352 L 0.89589656,0.14368352"
style="fill:none;stroke:#000000;stroke-width:0.03" />
<path
id="path2172"
d="M -0.13010344,-0.29331648 L 0.17189656,-0.29331648 L 0.17189656,-0.13531648 L -0.13010344,-0.13531648 L -0.13010344,-0.29331648"
style="fill:#000000;stroke:none;stroke-width:0.03" />
<path
id="path2176"
d="M 0.69089656,-0.29331648 L 0.98089656,-0.29331648 L 0.98089656,-0.13531648 L 0.69089656,-0.13531648 L 0.69089656,-0.29331648"
style="fill:#000000;stroke:none;stroke-width:0.002" />
<path
id="path2180"
d="M -0.13010344,0.070683521 L 0.17189656,0.070683521 L 0.17189656,0.22868352 L -0.13010344,0.22868352 L -0.13010344,0.070683521"
style="fill:#000000;stroke:none;stroke-width:0.002" />
<path
id="path2184"
d="M 0.69089656,0.070683521 L 0.9808966,0.070683521 L 0.9808966,0.22868352 L 0.69089656,0.22868352 L 0.69089656,0.070683521"
style="fill:#000000;stroke:none;stroke-width:0.002" />
<path
id="path2188"
d="M 0.71589656,-0.15931648 L 0.13489656,0.094683521"
style="fill:none;stroke:#000000;stroke-width:0.03" />
<path
id="path2190"
d="M 0.15889656,-0.14831648 L 0.73889656,0.10768352"
style="fill:none;stroke:#ffffff;stroke-width:0.03" />
<path
id="path2192"
d="M -0.021103438,-0.20931648 L 0.90789656,-0.20931648"
style="fill:none;stroke:#ffffff;stroke-width:0.03" />
<path
id="path2194"
d="M -0.021103438,0.15568352 L 0.90789656,0.15568352"
style="fill:none;stroke:#ffffff;stroke-width:0.03" />
<path
id="path2196"
d="M -0.11810344,-0.28131648 L 0.18389656,-0.28131648 L 0.18389656,-0.12431648 L -0.11810344,-0.12431648 L -0.11810344,-0.28131648"
style="fill:#ffffff;stroke:none;stroke-width:0.03" />
<path
id="path2200"
d="M 0.70289656,-0.28131648 L 0.9928966,-0.28131648 L 0.9928966,-0.12431648 L 0.70289656,-0.12431648 L 0.70289656,-0.28131648"
style="fill:#ffffff;stroke:none;stroke-width:0.002" />
<path
id="path2204"
d="M -0.11810344,0.082683521 L 0.18389656,0.082683521 L 0.18389656,0.24068352 L -0.11810344,0.24068352 L -0.11810344,0.082683521"
style="fill:#ffffff;stroke:none;stroke-width:0.002" />
<path
id="path2208"
d="M 0.70289656,0.082683521 L 0.9928966,0.082683521 L 0.9928966,0.24068352 L 0.70289656,0.24068352 L 0.70289656,0.082683521"
style="fill:#ffffff;stroke:none;stroke-width:0.002" />
<path
id="path2212"
d="M 0.72789656,-0.14831648 L 0.14689656,0.10768352"
style="fill:none;stroke:#ffffff;stroke-width:0.03" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

@ -0,0 +1,362 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="70"
height="50"
id="svg2"
version="1.1"
inkscape:version="0.48.3.1 r9886"
sodipodi:docname="awp_router.svg">
<defs
id="defs4">
<linearGradient
osb:paint="solid"
id="linearGradient5972">
<stop
id="stop5974"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
</linearGradient>
<linearGradient
osb:paint="gradient"
id="linearGradient5948">
<stop
id="stop5950"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop5952"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient9312">
<stop
id="stop9314"
offset="0"
style="stop-color:#3c8c8c;stop-opacity:1;" />
<stop
id="stop9316"
offset="1"
style="stop-color:#ffffff;stop-opacity:0.94117647;" />
</linearGradient>
<marker
style="overflow:visible"
id="Arrow2Lstart"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Lstart">
<path
inkscape:connector-curvature="0"
transform="matrix(1.1,0,0,1.1,1.1,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
id="path11918" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Send"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Send">
<path
inkscape:connector-curvature="0"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
id="path11921" />
</marker>
<marker
style="overflow:visible"
id="Arrow1Lstart"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lstart">
<path
inkscape:connector-curvature="0"
transform="matrix(0.8,0,0,0.8,10,0)"
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
d="M 0,0 5,-5 -12.5,0 5,5 0,0 z"
id="path11936" />
</marker>
<filter
color-interpolation-filters="sRGB"
inkscape:label="Drop Shadow"
id="filter3714">
<feFlood
result="flood"
flood-color="rgb(0,0,0)"
flood-opacity="0.5"
id="feFlood3716" />
<feComposite
result="composite1"
operator="in"
in="flood"
in2="SourceGraphic"
id="feComposite3718" />
<feOffset
result="offset"
dy="0.6"
dx="0.6"
id="feOffset3720" />
<feComposite
result="composite2"
operator="over"
in="SourceGraphic"
in2="offset"
id="feComposite3722" />
</filter>
<linearGradient
gradientUnits="userSpaceOnUse"
y2="31.977701"
x2="53.815125"
y1="31.977701"
x1="12.608591"
id="linearGradient5958"
xlink:href="#linearGradient5948"
inkscape:collect="always" />
<linearGradient
gradientUnits="userSpaceOnUse"
y2="31.977701"
x2="54.415127"
y1="31.977701"
x1="12.008591"
id="linearGradient5976"
xlink:href="#linearGradient5972"
inkscape:collect="always" />
<filter
color-interpolation-filters="sRGB"
id="filter6107"
inkscape:label="Drop Shadow">
<feFlood
id="feFlood6109"
flood-opacity="1"
flood-color="rgb(0,0,0)"
result="flood" />
<feComposite
id="feComposite6111"
in2="SourceGraphic"
in="flood"
operator="in"
result="composite1" />
<feOffset
id="feOffset6113"
dx="0.6"
dy="0.6"
result="offset" />
<feComposite
id="feComposite6115"
in2="offset"
in="SourceGraphic"
operator="over"
result="composite2" />
</filter>
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.8"
inkscape:cx="15.290945"
inkscape:cy="-7.2028474"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
borderlayer="true"
inkscape:window-width="1680"
inkscape:window-height="995"
inkscape:window-x="-4"
inkscape:window-y="-3"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-107.5,-497.36219)">
<g
transform="matrix(1,0,0,0.83333334,-61.740185,137.53692)"
id="layer1-7"
inkscape:label="Layer 1">
<g
transform="matrix(1.038776,0,0,1.4193121,-246.66807,24.117043)"
id="g2986-9">
<linearGradient
y2="308.42871"
x2="464.88181"
y1="308.42871"
x1="400.38281"
gradientUnits="userSpaceOnUse"
id="rect9971_3_-8">
<stop
id="stop2989-7"
style="stop-color:#003965"
offset="0.0099" />
<stop
id="stop2991-2"
style="stop-color:#7EB0CC"
offset="0.33" />
<stop
id="stop2993-9"
style="stop-color:#05273D"
offset="1" />
</linearGradient>
<path
d="m 432.632,287.352 0,0 c 17.812,0 32.25,5.175 32.25,11.558 v 19.039 c 0,6.383 -14.438,11.558 -32.25,11.558 l 0,0 c -17.811,0 -32.249,-5.175 -32.249,-11.558 V 298.91 c 0,-6.384 14.438,-11.558 32.249,-11.558 z"
transform-center-x="8.2952569"
id="rect9971_1_-5"
inkscape:connector-curvature="0"
style="fill:url(#rect9971_3_-8)" />
<path
d="m 464.834,298.712 -0.057,-0.586 -0.114,-0.585 -0.19,-0.566 -0.285,-0.586 -0.38,-0.566 -0.438,-0.565 -0.532,-0.547 -0.608,-0.527 -0.685,-0.526 -0.761,-0.508 -0.817,-0.508 -0.894,-0.488 -0.97,-0.487 -1.027,-0.43 -1.103,-0.43 -1.159,-0.43 -1.198,-0.391 -1.273,-0.351 -1.313,-0.352 -1.369,-0.313 -1.406,-0.293 -1.445,-0.273 -1.483,-0.234 -1.502,-0.234 -1.54,-0.176 -1.578,-0.155 -1.597,-0.137 -1.598,-0.098 -1.616,-0.078 -1.635,-0.059 h -1.616 l 0,0 h -1.636 l -1.635,0.059 -1.597,0.078 -1.616,0.098 -1.598,0.137 -1.559,0.155 -1.56,0.176 -1.502,0.234 -1.483,0.234 -1.444,0.273 -1.407,0.293 -1.369,0.313 -1.312,0.352 -1.274,0.351 -1.197,0.391 -1.16,0.43 -1.103,0.43 -1.027,0.43 -0.97,0.487 -0.894,0.488 -0.817,0.508 -0.761,0.508 -0.685,0.526 -0.589,0.527 -0.552,0.547 -0.438,0.565 -0.38,0.566 -0.285,0.586 -0.209,0.566 -0.114,0.585 -0.038,0.586 0,0 0.038,0.586 0.114,0.565 0.209,0.586 0.285,0.547 0.38,0.586 0.438,0.546 0.552,0.566 0.589,0.547 0.685,0.526 0.761,0.488 0.817,0.508 0.894,0.508 0.97,0.449 1.027,0.448 1.103,0.449 1.16,0.41 1.197,0.391 1.274,0.351 1.312,0.352 1.369,0.313 1.407,0.313 1.445,0.253 1.483,0.254 1.502,0.215 1.56,0.176 1.559,0.155 1.598,0.137 1.616,0.098 1.597,0.078 1.635,0.059 h 1.636 l 0,0 h 1.616 l 1.635,-0.059 1.616,-0.078 1.598,-0.098 1.597,-0.137 1.578,-0.155 1.54,-0.176 1.502,-0.215 1.482,-0.254 1.445,-0.254 1.406,-0.313 1.369,-0.313 1.313,-0.352 1.273,-0.351 1.198,-0.391 1.159,-0.41 1.103,-0.449 1.027,-0.448 0.97,-0.449 0.894,-0.508 0.817,-0.508 0.761,-0.488 0.685,-0.526 0.608,-0.547 0.532,-0.566 0.438,-0.546 0.38,-0.586 0.285,-0.547 0.19,-0.586 0.114,-0.565 0.057,-0.585"
id="path4815_1_-4"
inkscape:connector-curvature="0"
style="fill:#003965" />
<path
d="m 433.344,295.864 4.642,1.634 11.244,-4.882 5.037,1.614 -2.717,-4.035 h -13.169 l 5.415,1.201 -10.452,4.468"
id="path4819_1_-1"
inkscape:connector-curvature="0"
style="fill:#010101" />
<path
d="m 431.4,300.332 -4.641,-1.633 -10.849,4.9 -5.415,-1.653 2.698,4.469 h 13.565 l -5.812,-1.614 10.454,-4.469"
id="path4821_1_-6"
inkscape:connector-curvature="0"
style="fill:#010101" />
<path
d="m 411.647,291.396 4.641,-1.614 11.245,4.448 5.037,-1.2 -2.698,4.035 h -13.188 l 5.415,-1.201 -10.452,-4.468"
id="path4823_1_-8"
inkscape:connector-curvature="0"
style="fill:#010101" />
<path
d="m 453.475,305.194 -4.642,1.634 -10.848,-4.882 -5.415,1.653 2.717,-4.094 h 13.546 l -5.811,1.221 10.453,4.468"
id="path4825_1_-2"
inkscape:connector-curvature="0"
style="fill:#010101" />
<path
d="m 433.74,296.277 4.641,1.614 11.226,-4.861 5.038,1.634 -2.717,-4.075 h -13.169 l 5.434,1.201 -10.453,4.487"
id="path4827_1_-7"
inkscape:connector-curvature="0"
style="fill:#ffffff" />
<path
d="m 431.797,300.727 -4.66,-1.614 -10.849,4.861 -5.414,-1.613 2.697,4.468 h 13.565 l -5.811,-1.634 10.472,-4.468"
id="path4829_1_-8"
inkscape:connector-curvature="0"
style="fill:#ffffff" />
<path
d="m 412.044,291.79 4.641,-1.595 11.244,4.469 5.019,-1.24 -2.697,4.074 h -13.188 l 5.433,-1.221 -10.452,-4.487"
id="path4831_1_-8"
inkscape:connector-curvature="0"
style="fill:#ffffff" />
<path
d="m 453.852,305.607 -4.622,1.634 -10.849,-4.881 -5.434,1.613 2.717,-4.035 h 13.565 l -5.811,1.201 10.434,4.468"
id="path4833_1_-2"
inkscape:connector-curvature="0"
style="fill:#ffffff" />
<g
id="g3005-9">
<path
id="path3007-4"
d="m 403.871,304.003 c 13.285,13.404 56.792,10.082 63.899,0"
inkscape:connector-curvature="0"
style="fill:none" />
<text
id="text3009-5"
font-size="15"
transform="matrix(0.8225,0.5688,0,1,404.7891,317.4531)"
style="font-size:15px;font-family:GillSansStd-Bold" />
<text
id="text3011-4"
font-size="15"
transform="matrix(0.9033,0.429,0,1,408.2275,319.8066)"
style="font-size:15px;font-family:GillSansStd-Bold" />
<text
id="text3013-3"
font-size="15"
transform="matrix(0.9472,0.3207,0,1,412.0205,321.5938)"
style="font-size:15px;font-family:GillSansStd-Bold" />
<text
id="text3015-8"
font-size="15"
transform="matrix(0.9849,0.1731,0,1,415.9219,323.1719)"
style="font-size:15px;font-family:GillSansStd-Bold">A</text>
<text
id="text3017-7"
font-size="15"
transform="matrix(0.9999,-0.0102,0,1,427.4932,325.3906)"
style="font-size:15px;font-family:GillSansStd-Bold">W</text>
<text
id="text3019-6"
font-size="15"
transform="matrix(0.9871,-0.1604,0,1,444.9902,324.9102)"
style="font-size:15px;font-family:GillSansStd-Bold">+</text>
<path
id="path3021-5"
d="m 402.79,304.004 c 13.285,13.404 56.792,10.082 63.899,0"
inkscape:connector-curvature="0"
style="fill:none" />
<text
id="text3023-1"
font-size="15"
transform="matrix(0.8225,0.5688,0,1,403.708,317.4551)"
style="font-size:15px;fill:#ffffff;font-family:GillSansStd-Bold" />
<text
id="text3025-3"
font-size="15"
transform="matrix(0.9033,0.429,0,1,407.1465,319.8086)"
style="font-size:15px;fill:#ffffff;font-family:GillSansStd-Bold" />
<text
id="text3027-6"
font-size="15"
transform="matrix(0.9472,0.3207,0,1,410.9395,321.5957)"
style="font-size:15px;fill:#ffffff;font-family:GillSansStd-Bold" />
<text
id="text3029-7"
font-size="15"
transform="matrix(0.9849,0.1731,0,1,414.8408,323.1719)"
style="font-size:15px;fill:#ffffff;font-family:GillSansStd-Bold">A</text>
<text
id="text3031-0"
font-size="15"
transform="matrix(0.9999,-0.0102,0,1,426.4121,325.3906)"
style="font-size:15px;fill:#ffffff;font-family:GillSansStd-Bold">W</text>
<text
id="text3033-8"
font-size="15"
transform="matrix(0.9871,-0.1604,0,1,443.9092,324.9121)"
style="font-size:15px;fill:#ffffff;font-family:GillSansStd-Bold">+</text>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

@ -0,0 +1,203 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="66.000435"
height="44.5159"
version="1.0"
sodipodi:docname="rt_standard.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>Router</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
id="linearGradient9312">
<stop
style="stop-color:#3c8c8c;stop-opacity:1;"
offset="0"
id="stop9314" />
<stop
style="stop-color:#ffffff;stop-opacity:0.94117647;"
offset="1"
id="stop9316" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9312"
id="linearGradient2216"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.252829,0,0,14.082619,53.467529,3.4188377)"
x1="-1.0929121"
y1="0.63145506"
x2="-4.5832458"
y2="0.070047863" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="7.8958335"
inkscape:cx="27.334225"
inkscape:cy="24.784192"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="g4160" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.39215687;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4558"
width="64.552505"
height="41.53862"
x="1.4479325"
y="2.9772801"
ry="11.631706"
rx="32.212925"
inkscape:transform-center-x="8.4568136" />
<rect
style="opacity:1;fill:#3c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.015;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect9971"
width="64.499474"
height="42.154343"
x="0.0625"
y="0.18084908"
ry="11.557454"
rx="32.249737"
inkscape:transform-center-x="8.2952569" />
<g
id="g4160">
<path
id="path4815"
d="M 64.514069,11.541297 L 64.457031,10.955643 L 64.342949,10.36999 L 64.152814,9.8038604 L 63.867612,9.2182077 L 63.487345,8.6520765 L 63.050034,8.0859452 L 62.517657,7.5393369 L 61.909226,7.0122499 L 61.224742,6.4851607 L 60.464203,5.9775955 L 59.646626,5.4700289 L 58.752993,4.9819859 L 57.783307,4.4939413 L 56.75658,4.0644625 L 55.6538,3.6349838 L 54.493981,3.2055052 L 53.296132,2.8150692 L 52.022232,2.4636777 L 50.710303,2.1122862 L 49.341334,1.7999375 L 47.934339,1.5071117 L 46.489316,1.2338059 L 45.006267,0.99954576 L 43.504204,0.76528425 L 41.964114,0.58958842 L 40.385997,0.43341443 L 38.788867,0.29676153 L 37.191738,0.19915292 L 35.575597,0.12106555 L 33.940437,0.06250017 L 32.324296,0.06250017 L 32.324296,0.06250017 L 30.689136,0.06250017 L 29.053981,0.12106555 L 27.45685,0.19915292 L 25.840705,0.29676153 L 24.243576,0.43341443 L 22.684472,0.58958842 L 21.125372,0.76528425 L 19.623307,0.99954576 L 18.140258,1.2338059 L 16.695234,1.5071117 L 15.28824,1.7999375 L 13.919273,2.1122862 L 12.607342,2.4636777 L 11.333442,2.8150692 L 10.135592,3.2055052 L 8.9757693,3.6349838 L 7.8729941,4.0644625 L 6.8462664,4.4939413 L 5.8765785,4.9819859 L 4.9829488,5.4700289 L 4.1653682,5.9775955 L 3.4048335,6.4851607 L 2.7203448,7.0122499 L 2.1309311,7.5393369 L 1.5795405,8.0859452 L 1.1422325,8.6520765 L 0.76195982,9.2182077 L 0.47676065,9.8038604 L 0.26760898,10.36999 L 0.15353084,10.955643 L 0.11550327,11.541297 L 0.11550327,11.541297 L 0.15353084,12.12695 L 0.26760898,12.693081 L 0.47676065,13.278734 L 0.76195982,13.825344 L 1.1422325,14.410996 L 1.5795405,14.957605 L 2.1309311,15.523736 L 2.7203448,16.070348 L 3.4048335,16.597435 L 4.1653682,17.085479 L 4.9829488,17.593043 L 5.8765785,18.100608 L 6.8462664,18.549609 L 7.8729941,18.998611 L 8.9757693,19.447613 L 10.135592,19.857571 L 11.333442,20.248007 L 12.607342,20.599396 L 13.919273,20.950787 L 15.28824,21.263135 L 16.695234,21.575486 L 18.140258,21.829265 L 19.623307,22.083049 L 21.125372,22.297787 L 22.684472,22.473485 L 24.243576,22.629661 L 25.840705,22.766312 L 27.45685,22.863921 L 29.053981,22.942009 L 30.689136,23.000574 L 32.324296,23.000574 L 32.324296,23.000574 L 33.940437,23.000574 L 35.575597,22.942009 L 37.191738,22.863921 L 38.788867,22.766312 L 40.385997,22.629661 L 41.964114,22.473485 L 43.504204,22.297787 L 45.006267,22.083049 L 46.489316,21.829265 L 47.934339,21.575486 L 49.341334,21.263135 L 50.710303,20.950787 L 52.022232,20.599396 L 53.296132,20.248007 L 54.493981,19.857571 L 55.6538,19.447613 L 56.75658,18.998611 L 57.783307,18.549609 L 58.752993,18.100608 L 59.646626,17.593043 L 60.464203,17.085479 L 61.224742,16.597435 L 61.909226,16.070348 L 62.517657,15.523736 L 63.050034,14.957605 L 63.487345,14.410996 L 63.867612,13.825344 L 64.152814,13.278734 L 64.342949,12.693081 L 64.457031,12.12695 L 64.514069,11.541297"
style="fill:url(#linearGradient2216);fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path4819"
d="M 33.023738,8.6936939 L 37.664889,10.327433 L 48.909313,5.4458969 L 53.946665,7.0599533 L 51.229891,3.0248142 L 38.061087,3.0248142 L 43.475766,4.225514 L 33.023738,8.6936939"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4821"
d="M 31.08049,13.161874 L 26.439334,11.528132 L 15.591104,16.429352 L 10.176425,14.775929 L 12.874332,19.244109 L 26.439334,19.244109 L 20.628458,17.630052 L 31.08049,13.161874"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4823"
d="M 11.327278,4.225514 L 15.968435,2.611458 L 27.212859,7.0599533 L 32.25021,5.8592533 L 29.552303,9.8943939 L 16.364632,9.8943939 L 21.779313,8.6936939 L 11.327278,4.225514"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4825"
d="M 53.154272,18.023723 L 48.513117,19.657467 L 37.664889,14.775929 L 32.25021,16.429352 L 34.966985,12.33516 L 48.513117,12.33516 L 42.70224,13.555544 L 53.154272,18.023723"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4827"
d="M 33.419936,9.1070493 L 38.061087,10.721105 L 49.286643,5.8592533 L 54.323994,7.4929926 L 51.60722,3.4184854 L 38.438415,3.4184854 L 43.871962,4.6191872 L 33.419936,9.1070493"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4829"
d="M 31.476681,13.555544 L 26.816665,11.941487 L 15.968435,16.803341 L 10.553753,15.189284 L 13.25166,19.657467 L 26.816665,19.657467 L 21.005786,18.023723 L 31.476681,13.555544"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4831"
d="M 11.723476,4.6191872 L 16.364632,3.0248142 L 27.609055,7.4929926 L 32.627541,6.2529266 L 29.929634,10.327433 L 16.741963,10.327433 L 22.175509,9.1070493 L 11.723476,4.6191872"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4833"
d="M 53.531602,18.43708 L 48.909313,20.070823 L 38.061087,15.189284 L 32.627541,16.803341 L 35.344315,12.7682 L 48.909313,12.7682 L 43.098437,13.9689 L 53.531602,18.43708"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

@ -0,0 +1,395 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="66.000435"
height="44.5159"
version="1.0"
sodipodi:docname="rt_firewall.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>Router with firewall</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
id="linearGradient10310">
<stop
style="stop-color:#d25e6c;stop-opacity:1;"
offset="0"
id="stop10312" />
<stop
style="stop-color:#ffe6e6;stop-opacity:1;"
offset="1"
id="stop10314" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10310"
id="linearGradient10316"
x1="10.303786"
y1="3.8715167"
x2="5.81774"
y2="1.5821224"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
inkscape:window-height="940"
inkscape:window-width="1280"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="4"
inkscape:cx="27.67188"
inkscape:cy="20.275743"
inkscape:window-x="0"
inkscape:window-y="46"
inkscape:current-layer="svg1998" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.39215687;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4558"
width="64.552505"
height="41.53862"
x="1.4479325"
y="2.9772801"
ry="11.631706"
rx="32.212925"
inkscape:transform-center-x="8.4568136" />
<rect
style="opacity:1;fill:#3c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.015;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect9971"
width="64.499474"
height="42.154343"
x="0.0625"
y="0.18084903"
ry="11.557454"
rx="32.249737"
inkscape:transform-center-x="8.2952569" />
<g
id="g2708"
transform="matrix(12.83041,0,0,10.93561,-81.22974,-21.98874)">
<path
id="path2411"
d="M 11.354848,3.6699657 L 11.350851,3.7197874 L 11.341527,3.769609 L 11.325541,3.817921 L 11.302895,3.8647229 L 11.274919,3.9130349 L 11.241615,3.9583273 L 11.201651,4.0036198 L 11.156357,4.0489123 L 11.108401,4.0911851 L 11.052451,4.1319481 L 10.991173,4.1727114 L 10.925897,4.2119647 L 10.857958,4.2497086 L 10.782025,4.2859425 L 10.704761,4.3221764 L 10.62217,4.3569005 L 10.534246,4.3870956 L 10.443661,4.4188001 L 10.34908,4.4474854 L 10.251833,4.473151 L 10.149258,4.5003264 L 10.044018,4.5229726 L 9.9374453,4.545619 L 9.8255466,4.5637358 L 9.7123136,4.580343 L 9.5964174,4.5969504 L 9.4778565,4.6090283 L 9.3566315,4.6195965 L 9.232742,4.6286549 L 9.1075205,4.634694 L 8.9809668,4.6377135 L 8.8517487,4.640733 L 8.7238629,4.6377135 L 8.5973091,4.634694 L 8.4720877,4.6286549 L 8.3481983,4.6195965 L 8.2269731,4.6090283 L 8.1084123,4.5969504 L 7.9911835,4.580343 L 7.8792833,4.5637358 L 7.7687155,4.545619 L 7.6594798,4.5229726 L 7.5555723,4.5003264 L 7.4529974,4.473151 L 7.3544186,4.4474854 L 7.2598362,4.4188001 L 7.1705827,4.3870956 L 7.0826613,4.3569005 L 7.0014004,4.3221764 L 6.9214717,4.2859425 L 6.8468715,4.2497086 L 6.7776001,4.2119647 L 6.712325,4.1727114 L 6.6523786,4.1319481 L 6.5964285,4.0911851 L 6.5471392,4.0489123 L 6.5031784,4.0036198 L 6.4618819,3.9583273 L 6.4285784,3.9130349 L 6.4006033,3.8647229 L 6.3779568,3.817921 L 6.3633034,3.769609 L 6.3539782,3.7197874 L 6.3499817,3.6699657 L 6.3539782,3.6201441 L 6.3633034,3.5703223 L 6.3779568,3.5220105 L 6.4006033,3.4752083 L 6.4285784,3.4268965 L 6.4618819,3.3800944 L 6.5031784,3.3363116 L 6.5471392,3.292529 L 6.5964285,3.2502561 L 6.6523786,3.2064734 L 6.712325,3.1657101 L 6.7776001,3.1264567 L 6.8468715,3.088713 L 6.9214717,3.0509693 L 7.0014004,3.0177548 L 7.0826613,2.9830308 L 7.1705827,2.9498163 L 7.2598362,2.9211312 L 7.3544186,2.8924459 L 7.4529974,2.8652705 L 7.5555723,2.8411145 L 7.6594798,2.8169585 L 7.7687155,2.7943124 L 7.8792833,2.7761955 L 7.9911835,2.7580784 L 8.1084123,2.7429811 L 8.2269731,2.7293933 L 8.3481983,2.7203348 L 8.4720877,2.7097666 L 8.5973091,2.7037277 L 8.7238629,2.7007081 L 8.8517487,2.7007081 L 8.9809668,2.7007081 L 9.1075205,2.7037277 L 9.232742,2.7097666 L 9.3566315,2.7203348 L 9.4778565,2.7293933 L 9.5964174,2.7429811 L 9.7123136,2.7580784 L 9.8255466,2.7761955 L 9.9374453,2.7943124 L 10.044018,2.8169585 L 10.149258,2.8411145 L 10.251833,2.8652705 L 10.34908,2.8924459 L 10.443661,2.9211312 L 10.534246,2.9498163 L 10.62217,2.9830308 L 10.704761,3.0177548 L 10.782025,3.0509693 L 10.857958,3.088713 L 10.925897,3.1264567 L 10.991173,3.1657101 L 11.052451,3.2064734 L 11.108401,3.2502561 L 11.156357,3.292529 L 11.201651,3.3363116 L 11.241615,3.3800944 L 11.274919,3.4268965 L 11.302895,3.4752083 L 11.325541,3.5220105 L 11.341527,3.5703223 L 11.350851,3.6201441 L 11.354848,3.6699657"
style="fill:#a04f5c;stroke:none;stroke-width:0.001" />
<path
id="path2413"
d="M 8.8517487,4.6573403 L 8.8517487,4.6573403 L 8.9170238,4.6558304 L 8.9809668,4.6558304 L 9.0462418,4.6543207 L 9.1075205,4.6528109 L 9.1714634,4.6497915 L 9.2340742,4.6467719 L 9.2953528,4.6422427 L 9.3579635,4.6377135 L 9.4179101,4.6316744 L 9.4791887,4.6271452 L 9.5391352,4.6195965 L 9.5977495,4.6135576 L 9.6550313,4.6060088 L 9.7136457,4.5969504 L 9.77226,4.5894016 L 9.8282104,4.580343 L 9.8841603,4.5712846 L 9.9387793,4.5607164 L 9.9947293,4.5516579 L 10.048014,4.5395799 L 10.099967,4.5290116 L 10.153253,4.5169336 L 10.203876,4.5033459 L 10.25583,4.4912679 L 10.30512,4.4776801 L 10.353077,4.4640925 L 10.401033,4.4505049 L 10.447657,4.4354074 L 10.470304,4.4278586 L 10.494283,4.4203099 L 10.516928,4.4127611 L 10.538243,4.4052123 L 10.56089,4.396154 L 10.582204,4.3886052 L 10.604851,4.3795468 L 10.626165,4.371998 L 10.647479,4.3644493 L 10.667462,4.3553908 L 10.688776,4.3478421 L 10.708758,4.3387836 L 10.730071,4.3297251 L 10.750055,4.3206666 L 10.770037,4.3131178 L 10.790017,4.3040594 L 10.808669,4.295001 L 10.825987,4.2844327 L 10.84597,4.2753741 L 10.863286,4.2663159 L 10.881937,4.2557475 L 10.899255,4.2466891 L 10.916573,4.2376306 L 10.933891,4.2270623 L 10.951207,4.2180039 L 10.967195,4.2074355 L 10.98318,4.1983771 L 10.999165,4.1893186 L 11.015151,4.1787503 L 11.031137,4.168182 L 11.045791,4.1576141 L 11.060445,4.1470457 L 11.075097,4.1364775 L 11.08842,4.1259092 L 11.103072,4.1153409 L 11.116394,4.1047728 L 11.129716,4.0942044 L 11.143036,4.0836364 L 11.153693,4.0730681 L 11.168348,4.0609902 L 11.179004,4.0504218 L 11.189662,4.0398537 L 11.201651,4.0277758 L 11.21364,4.0156978 L 11.222965,4.0051296 L 11.233623,3.9930516 L 11.242949,3.9824833 L 11.253605,3.9704054 L 11.261598,3.9583273 L 11.270923,3.9477591 L 11.280248,3.9356811 L 11.28824,3.9236032 L 11.294903,3.9115252 L 11.302895,3.8994471 L 11.309555,3.8873692 L 11.317548,3.8752913 L 11.322875,3.8617036 L 11.329538,3.8496255 L 11.334867,3.8375476 L 11.338863,3.8239598 L 11.344192,3.8118818 L 11.349519,3.7998038 L 11.352183,3.7877259 L 11.35618,3.7741383 L 11.358844,3.7620603 L 11.36284,3.7484725 L 11.364173,3.7363946 L 11.366837,3.722807 L 11.368169,3.7092192 L 11.369502,3.6956315 L 11.369502,3.6835535 L 11.369502,3.6699657 L 11.338863,3.6699657 L 11.338863,3.6820436 L 11.338863,3.6941217 L 11.338863,3.7061996 L 11.336198,3.7182775 L 11.334867,3.7303557 L 11.333534,3.7409237 L 11.329538,3.7530018 L 11.326872,3.76357 L 11.322875,3.7756479 L 11.321544,3.7877259 L 11.316216,3.7998038 L 11.310886,3.8103722 L 11.305559,3.8224502 L 11.301563,3.8330183 L 11.296234,3.8450964 L 11.290905,3.8571743 L 11.285576,3.8677426 L 11.277584,3.8798205 L 11.270923,3.8903888 L 11.26293,3.9024668 L 11.25627,3.9130349 L 11.246944,3.9251129 L 11.240284,3.9356811 L 11.230958,3.9477591 L 11.221634,3.9568176 L 11.212307,3.9688956 L 11.201651,3.9794638 L 11.192327,3.9915419 L 11.18167,4.00211 L 11.172344,4.0126784 L 11.160354,4.0232466 L 11.148365,4.0338146 L 11.136377,4.0458926 L 11.124387,4.0564609 L 11.111066,4.0670291 L 11.099076,4.0760876 L 11.085755,4.0866558 L 11.072433,4.0972241 L 11.059113,4.1077923 L 11.044459,4.1168507 L 11.029806,4.127419 L 11.015151,4.1379873 L 10.999165,4.1485554 L 10.984513,4.1576141 L 10.969858,4.168182 L 10.953872,4.1772406 L 10.937887,4.1878087 L 10.92057,4.1968673 L 10.903251,4.2074355 L 10.885935,4.2164939 L 10.868616,4.2255526 L 10.849966,4.2346111 L 10.833979,4.2436695 L 10.813997,4.252728 L 10.796679,4.2617865 L 10.776698,4.270845 L 10.758047,4.2799034 L 10.738065,4.2889619 L 10.718082,4.2980204 L 10.698102,4.3070789 L 10.67945,4.3161374 L 10.658137,4.3221764 L 10.636822,4.3327445 L 10.61684,4.3402933 L 10.595526,4.3478421 L 10.574211,4.3553908 L 10.551566,4.3629394 L 10.53025,4.3704882 L 10.507604,4.3795468 L 10.48629,4.3870956 L 10.462311,4.3946442 L 10.439664,4.4021929 L 10.39304,4.4157807 L 10.345084,4.4308782 L 10.297125,4.4429561 L 10.247837,4.4580534 L 10.197216,4.4701315 L 10.146594,4.4837192 L 10.094641,4.4942874 L 10.042686,4.5063654 L 9.9893993,4.5169336 L 9.9334503,4.5275018 L 9.8801653,4.5365604 L 9.8242138,4.5471287 L 9.7682638,4.556187 L 9.7109822,4.5652457 L 9.6523677,4.5712846 L 9.5950853,4.5788332 L 9.5351388,4.586382 L 9.4751922,4.5924209 L 9.416578,4.5969504 L 9.3552992,4.6029892 L 9.2953528,4.6075185 L 9.232742,4.610538 L 9.1714634,4.6150671 L 9.1075205,4.6180868 L 9.0449097,4.6195965 L 8.9809668,4.6211064 L 8.9170238,4.6226159 L 8.8517487,4.6226159 L 8.8517487,4.6226159 L 8.8517487,4.6573403 L 8.8517487,4.6573403 L 8.8517487,4.6573403"
style="fill:#d98e9a;stroke:none;stroke-width:0.001" />
<path
id="path2415"
d="M 6.3353283,3.6699657 L 6.3353283,3.6699657 L 6.3353283,3.6835535 L 6.3353283,3.6956315 L 6.3353283,3.7092192 L 6.3379927,3.722807 L 6.3393245,3.7363946 L 6.3433211,3.7484725 L 6.3446532,3.7620603 L 6.3486497,3.7741383 L 6.351314,3.7877259 L 6.3553104,3.7998038 L 6.3593069,3.8118818 L 6.3646355,3.8239598 L 6.3699641,3.8375476 L 6.3752925,3.8496255 L 6.3806213,3.8617036 L 6.3872819,3.8752913 L 6.3939426,3.8873692 L 6.4019355,3.8994471 L 6.4099282,3.9115252 L 6.416589,3.9236032 L 6.4245819,3.9356811 L 6.4339069,3.9477591 L 6.4418998,3.9583273 L 6.4498926,3.9704054 L 6.4618819,3.9824833 L 6.4698749,3.9930516 L 6.4805319,4.0051296 L 6.4911892,4.0156978 L 6.5031784,4.0277758 L 6.5138355,4.0398537 L 6.5258249,4.0504218 L 6.5364819,4.0609902 L 6.5498035,4.0730681 L 6.5617927,4.0836364 L 6.5737821,4.0942044 L 6.5884357,4.1047728 L 6.6017571,4.1153409 L 6.6150785,4.1259092 L 6.6297321,4.1364775 L 6.6443858,4.1470457 L 6.6590392,4.1576141 L 6.6736929,4.168182 L 6.6896786,4.1787503 L 6.7043322,4.1893186 L 6.7203179,4.1983771 L 6.7363036,4.2074355 L 6.7536215,4.2180039 L 6.7709395,4.2270623 L 6.7882574,4.2376306 L 6.8055752,4.2466891 L 6.8228931,4.2557475 L 6.8415431,4.2663159 L 6.860193,4.2753741 L 6.8775111,4.2844327 L 6.896161,4.295001 L 6.9148111,4.3040594 L 6.9347932,4.3131178 L 6.9547753,4.3206666 L 6.9747574,4.3297251 L 6.9947396,4.3387836 L 7.0147218,4.3478421 L 7.0360362,4.3553908 L 7.0573504,4.3644493 L 7.0786647,4.371998 L 7.099979,4.3795468 L 7.1212933,4.3886052 L 7.1426077,4.396154 L 7.165254,4.4052123 L 7.1879007,4.4127611 L 7.2105472,4.4203099 L 7.2331933,4.4278586 L 7.2571721,4.4354074 L 7.3037971,4.4505049 L 7.3517543,4.4640925 L 7.3997116,4.4776801 L 7.4490009,4.4912679 L 7.5009545,4.5033459 L 7.5515759,4.5169336 L 7.6048617,4.5290116 L 7.6568154,4.5395799 L 7.710101,4.5516579 L 7.7660512,4.5607164 L 7.8206691,4.5712846 L 7.875287,4.580343 L 7.9339014,4.5894016 L 7.9911835,4.5969504 L 8.0484657,4.6060088 L 8.1057479,4.6135576 L 8.1656946,4.6195965 L 8.2243088,4.6271452 L 8.2855875,4.6316744 L 8.3468661,4.6377135 L 8.4081447,4.6422427 L 8.4707555,4.6467719 L 8.5333662,4.6497915 L 8.5973091,4.6528109 L 8.6585878,4.6543207 L 8.7225308,4.6558304 L 8.7878059,4.6558304 L 8.8517487,4.6573403 L 8.8517487,4.6226159 L 8.7878059,4.6226159 L 8.7238629,4.6211064 L 8.6612521,4.6195965 L 8.5973091,4.6180868 L 8.5333662,4.6150671 L 8.4720877,4.610538 L 8.4094768,4.6075185 L 8.3495304,4.6029892 L 8.2882517,4.5969504 L 8.2283052,4.5924209 L 8.169691,4.586382 L 8.1097444,4.5788332 L 8.0524622,4.5712846 L 7.9938478,4.5652457 L 7.9365656,4.556187 L 7.8806156,4.5471287 L 7.8246655,4.5365604 L 7.7700476,4.5275018 L 7.7154298,4.5169336 L 7.6634761,4.5063654 L 7.6088582,4.4942874 L 7.5582368,4.4837192 L 7.5076152,4.4701315 L 7.4569937,4.4580534 L 7.4063723,4.4429561 L 7.358415,4.4308782 L 7.31179,4.4157807 L 7.265165,4.4021929 L 7.2425185,4.3946442 L 7.2185398,4.3870956 L 7.1972255,4.3795468 L 7.1745791,4.3704882 L 7.1519327,4.3629394 L 7.1306183,4.3553908 L 7.1106361,4.3478421 L 7.0879898,4.3402933 L 7.0680076,4.3327445 L 7.0466933,4.3221764 L 7.0253789,4.3161374 L 7.0053968,4.3070789 L 6.9854148,4.2980204 L 6.9654324,4.2889619 L 6.9467825,4.2799034 L 6.9281325,4.270845 L 6.9081504,4.2617865 L 6.8895002,4.252728 L 6.8721824,4.2436695 L 6.8535323,4.2346111 L 6.8362145,4.2255526 L 6.8188966,4.2164939 L 6.8015788,4.2074355 L 6.7842609,4.1968673 L 6.766943,4.1878087 L 6.7509573,4.1772406 L 6.7349716,4.168182 L 6.7189857,4.1576141 L 6.7043322,4.1485554 L 6.6896786,4.1379873 L 6.6750251,4.127419 L 6.6603714,4.1168507 L 6.6457178,4.1077923 L 6.6323965,4.0972241 L 6.619075,4.0866558 L 6.6057536,4.0760876 L 6.5937642,4.0670291 L 6.5791106,4.0564609 L 6.5684535,4.0458926 L 6.5564642,4.0338146 L 6.5444749,4.0232466 L 6.5324855,4.0126784 L 6.5231606,4.00211 L 6.5125035,3.9915419 L 6.5031784,3.9794638 L 6.4925213,3.9688956 L 6.4831963,3.9568176 L 6.4725391,3.9477591 L 6.4645463,3.9356811 L 6.4565534,3.9251129 L 6.4485605,3.9130349 L 6.4418998,3.9024668 L 6.4339069,3.8903888 L 6.4259141,3.8798205 L 6.4205855,3.8677426 L 6.4139248,3.8571743 L 6.4085961,3.8450964 L 6.4019355,3.8330183 L 6.3966068,3.8224502 L 6.3939426,3.8103722 L 6.388614,3.7998038 L 6.3832854,3.7877259 L 6.3806213,3.7756479 L 6.3779568,3.76357 L 6.3739604,3.7530018 L 6.3712961,3.7409237 L 6.3699641,3.7303557 L 6.3686319,3.7182775 L 6.3659676,3.7061996 L 6.3659676,3.6941217 L 6.3659676,3.6820436 L 6.3646355,3.6699657 L 6.3646355,3.6699657 L 6.3353283,3.6699657 L 6.3353283,3.6699657 L 6.3353283,3.6699657"
style="fill:#d98e9a;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2421"
d="M 6.3433211,3.0449305 L 6.3433211,3.7031801 L 11.354848,3.7031801 L 11.354848,3.0449305 L 6.3433211,3.0449305"
style="fill:#a04f5c;stroke:none;stroke-width:0.001" />
<path
id="path2423"
d="M 11.354848,3.0177548 L 11.350851,3.0675766 L 11.341527,3.1173982 L 11.325541,3.1657101 L 11.302895,3.2125124 L 11.274919,3.2608243 L 11.241615,3.3061167 L 11.201651,3.3529188 L 11.156357,3.3951919 L 11.108401,3.4389744 L 11.052451,3.4797376 L 10.991173,3.5205007 L 10.925897,3.5597541 L 10.857958,3.5974979 L 10.782025,3.6352415 L 10.704761,3.6699657 L 10.62217,3.7046898 L 10.534246,3.7363946 L 10.443661,3.7665896 L 10.34908,3.7952748 L 10.251833,3.8224502 L 10.149258,3.8466061 L 10.044018,3.870762 L 9.9374457,3.8918984 L 9.8255464,3.9115252 L 9.7123139,3.9296422 L 9.5964174,3.9447396 L 9.4778565,3.9568176 L 9.3566315,3.9688956 L 9.232742,3.9764445 L 9.1075205,3.9824833 L 8.9809668,3.9870125 L 8.8517487,3.9885224 L 8.7238629,3.9870125 L 8.5973091,3.9824833 L 8.4720877,3.9764445 L 8.3481983,3.9688956 L 8.2269731,3.9568176 L 8.1084123,3.9447396 L 7.9911835,3.9296422 L 7.8792833,3.9115252 L 7.7687155,3.8918984 L 7.6594798,3.870762 L 7.5555723,3.8466061 L 7.4529974,3.8224502 L 7.3544186,3.7952748 L 7.2598362,3.7665896 L 7.1705827,3.7363946 L 7.0826613,3.7046898 L 7.0014004,3.6699657 L 6.9214717,3.6352415 L 6.8468715,3.5974979 L 6.7776001,3.5597541 L 6.712325,3.5205007 L 6.6523786,3.4797376 L 6.5964285,3.4389744 L 6.5471392,3.3951919 L 6.5031784,3.3529188 L 6.4618819,3.3061167 L 6.4285784,3.2608243 L 6.4006033,3.2125124 L 6.3779568,3.1657101 L 6.3633034,3.1173982 L 6.3539782,3.0675766 L 6.3499817,3.0177548 L 6.3539782,2.9679333 L 6.3633034,2.9181116 L 6.3779568,2.8713095 L 6.4006033,2.8229976 L 6.4285784,2.7761955 L 6.4618819,2.7293933 L 6.5031784,2.6841009 L 6.5471392,2.6403181 L 6.5964285,2.5980453 L 6.6523786,2.5572822 L 6.712325,2.5150092 L 6.7776001,2.4757558 L 6.8468715,2.4380122 L 6.9214717,2.4017782 L 7.0014004,2.3670541 L 7.0826613,2.3323298 L 7.1705827,2.3006251 L 7.2598362,2.2689205 L 7.3544186,2.2417451 L 7.4529974,2.2145696 L 7.5555723,2.188904 L 7.6594798,2.1662577 L 7.7687155,2.1436114 L 7.8792833,2.1239848 L 7.9911835,2.1073775 L 8.1084123,2.0922801 L 8.2269731,2.0786924 L 8.3481983,2.0681242 L 8.4720877,2.0590658 L 8.5973091,2.0545364 L 8.7238629,2.0500072 L 8.8517487,2.0484975 L 8.9809668,2.0500072 L 9.1075205,2.0545364 L 9.232742,2.0590658 L 9.3566315,2.0681242 L 9.4778565,2.0786924 L 9.5964174,2.0922801 L 9.7123139,2.1073775 L 9.8255464,2.1239848 L 9.9374457,2.1436114 L 10.044018,2.1662577 L 10.149258,2.188904 L 10.251833,2.2145696 L 10.34908,2.2417451 L 10.443661,2.2689205 L 10.534246,2.3006251 L 10.62217,2.3323298 L 10.704761,2.3670541 L 10.782025,2.4017782 L 10.857958,2.4380122 L 10.925897,2.4757558 L 10.991173,2.5150092 L 11.052451,2.5572822 L 11.108401,2.5980453 L 11.156357,2.6403181 L 11.201651,2.6841009 L 11.241615,2.7293933 L 11.274919,2.7761955 L 11.302895,2.8229976 L 11.325541,2.8713095 L 11.341527,2.9181116 L 11.350851,2.9679333 L 11.354848,3.0177548"
style="fill:url(#linearGradient10316);fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2435"
d="M 6.3646355,3.7122386 L 6.3646355,2.9985218 L 6.3353283,2.9985218 L 6.3353283,3.7122386 L 6.3646355,3.7122386"
style="fill:#d98e9a;stroke:none;stroke-width:0.001" />
<path
id="path2441"
d="M 11.369502,3.7122386 L 11.369502,3.0046744 L 11.338863,3.0046744 L 11.338863,3.7122386 L 11.369502,3.7122386"
style="fill:#d98e9a;stroke:none;stroke-width:0.001" />
<path
id="path2453"
d="M 9.416578,3.5645033 L 8.8581814,3.2858638 L 8.8442909,3.3189227 L 9.4040765,3.5959881 L 9.416578,3.5645033"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2459"
d="M 9.0895948,2.0386742 L 6.4372966,3.2595341 L 6.4481779,3.2919056 L 9.1004761,2.0710454 L 9.0895948,2.0386742"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2465"
d="M 10.065122,2.1636107 L 6.9054859,3.619958 L 6.9162056,3.6518488 L 10.077183,2.1955014 L 10.065122,2.1636107"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2471"
d="M 10.78469,2.3987589 L 7.6221796,3.8556645 L 7.6341688,3.8873692 L 10.796679,2.4304634 L 10.78469,2.3987589"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2477"
d="M 7.7331351,2.1593475 L 6.4245144,2.7611569 L 6.4357232,2.7960905 L 7.7443437,2.1926931 L 7.7331351,2.1593475"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2483"
d="M 11.241615,2.7354322 L 8.5893163,3.9568176 L 8.6013057,3.9885224 L 11.253605,2.7671371 L 11.241615,2.7354322"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2489"
d="M 11.170525,3.3619774 L 10.294347,3.792958 L 10.306885,3.8261104 L 11.18167,3.3951297 L 11.170525,3.3619774"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2495"
d="M 7.2318612,2.8949803 L 6.7151958,2.6389946 L 6.7043754,2.6711845 L 7.218336,2.9271701 L 7.2318612,2.8949803"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2501"
d="M 8.2402945,2.4164801 L 7.7395948,2.1671677 L 7.7287981,2.1977583 L 8.2281481,2.4470706 L 8.2402945,2.4164801"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2507"
d="M 7.3024648,3.4442645 L 6.7011144,3.1429107 L 6.6874783,3.1769096 L 7.2901925,3.4767181 L 7.3024648,3.4442645"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2513"
d="M 8.3295482,2.9644837 L 7.7422026,2.6722091 L 7.7300504,2.7028138 L 8.3160459,2.9966186 L 8.3295482,2.9644837"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2519"
d="M 9.371285,2.4782017 L 8.7853869,2.184623 L 8.7718245,2.2169012 L 9.3590788,2.51048 L 9.371285,2.4782017"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2525"
d="M 8.3854982,3.4918156 L 7.8220014,3.2094929 L 7.8086797,3.2411975 L 8.373509,3.5235202 L 8.3854982,3.4918156"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2531"
d="M 9.4338958,3.0169892 L 8.8533795,2.7259604 L 8.8410862,2.7584689 L 9.4216024,3.0479499 L 9.4338958,3.0169892"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2537"
d="M 10.475632,2.5285969 L 9.9054755,2.2432548 L 9.894818,2.2749594 L 10.463644,2.5603017 L 10.475632,2.5285969"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2543"
d="M 10.52359,3.0565577 L 9.9731605,2.780022 L 9.960393,2.813785 L 10.510823,3.088713 L 10.52359,3.0565577"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2549"
d="M 9.3379814,3.9598372 L 8.9862954,3.7831968 L 8.9729738,3.8149014 L 9.325992,3.9915419 L 9.3379814,3.9598372"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2555"
d="M 10.636822,3.6141051 L 10.025368,3.3061167 L 10.012047,3.3393313 L 10.624833,3.6458097 L 10.636822,3.6141051"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2561"
d="M 11.356269,2.9633493 L 11.06951,2.817269 L 11.055028,2.8533787 L 11.341785,2.9978178 L 11.356269,2.9633493"
style="fill:#714049;stroke:none;stroke-width:0.001" />
<path
id="path2567"
d="M 9.4069527,3.5548147 L 8.8486255,3.2748167 L 8.8360632,3.3080367 L 9.3957861,3.5880347 L 9.4069527,3.5548147"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2579"
d="M 10.038869,2.1484391 L 6.8841716,3.6034082 L 6.8948701,3.6367514 L 10.050905,2.1832977 L 10.038869,2.1484391"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2585"
d="M 10.763442,2.3826119 L 7.591393,3.8439615 L 7.6021049,3.8758288 L 10.775494,2.4144792 L 10.763442,2.3826119"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2597"
d="M 11.232291,2.715268 L 8.5153114,3.9667687 L 8.5274167,3.9987802 L 11.244396,2.7457553 L 11.232291,2.715268"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2603"
d="M 11.214243,3.3136654 L 10.152984,3.8373657 L 10.165701,3.8693963 L 11.226962,3.3456962 L 11.214243,3.3136654"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2609"
d="M 7.2105472,2.8798878 L 6.6953158,2.6208778 L 6.6831448,2.6530625 L 7.1983762,2.9120727 L 7.2105472,2.8798878"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2615"
d="M 8.2334313,2.4073733 L 7.7135893,2.1469415 L 7.7009786,2.1802893 L 8.2208207,2.4407211 L 8.2334313,2.4073733"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2627"
d="M 8.309566,2.9473191 L 7.710658,2.6499745 L 7.6969217,2.6826668 L 8.2958296,2.9800113 L 8.309566,2.9473191"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2639"
d="M 8.3815566,3.4844228 L 7.7984166,3.1929478 L 7.7860385,3.2256803 L 8.3691784,3.5171553 L 8.3815566,3.4844228"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2645"
d="M 9.4139136,3.0006065 L 8.8380861,2.7119281 L 8.825892,2.7441739 L 9.4017196,3.0328525 L 9.4139136,3.0006065"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2651"
d="M 10.455651,2.5119897 L 9.8854922,2.2266476 L 9.8735032,2.2583522 L 10.443661,2.5452043 L 10.455651,2.5119897"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2657"
d="M 10.514843,3.0453656 L 9.9541634,2.7653184 L 9.9397122,2.7997102 L 10.501837,3.0797576 L 10.514843,3.0453656"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2663"
d="M 9.3505158,3.9604755 L 8.9660491,3.7680991 L 8.9529918,3.8026282 L 9.3360076,3.9933603 L 9.3505158,3.9604755"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2669"
d="M 10.632545,3.6051853 L 10.004388,3.2910192 L 9.9907332,3.3235193 L 10.61889,3.6376853 L 10.632545,3.6051853"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2675"
d="M 11.353516,2.9581748 L 11.053651,2.8083348 L 11.040021,2.8407742 L 11.341249,2.9890698 L 11.353516,2.9581748"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2679"
d="M 8.8511398,4.0131389 L 8.8511398,4.0131389 L 8.9164307,4.0131389 L 8.9803891,4.0116168 L 9.0456799,4.0116168 L 9.1069735,4.0085728 L 9.1709318,4.0055288 L 9.2335578,4.0009629 L 9.2948512,3.997919 L 9.357477,3.9918309 L 9.4174381,3.9872649 L 9.4787315,3.9826989 L 9.53736,3.9766109 L 9.597321,3.9690009 L 9.6546167,3.9629131 L 9.7132452,3.9537811 L 9.7718737,3.9461712 L 9.8278376,3.9370391 L 9.8838013,3.9263853 L 9.9384333,3.9172533 L 9.9943963,3.9065991 L 10.047694,3.8944233 L 10.09966,3.8837693 L 10.152959,3.8715933 L 10.203594,3.8578955 L 10.255561,3.8441975 L 10.304863,3.8335435 L 10.352831,3.8183236 L 10.400799,3.8046257 L 10.447434,3.7894058 L 10.470087,3.7817958 L 10.494071,3.7741857 L 10.516722,3.7665759 L 10.538042,3.7589659 L 10.560694,3.749834 L 10.582014,3.742224 L 10.604666,3.733092 L 10.625985,3.725482 L 10.647304,3.7178721 L 10.667292,3.70874 L 10.688611,3.6996082 L 10.708598,3.6919983 L 10.729916,3.6828663 L 10.749905,3.6737342 L 10.769892,3.6646024 L 10.789877,3.6554705 L 10.808533,3.6463385 L 10.825856,3.6372064 L 10.845843,3.6280744 L 10.863164,3.6189426 L 10.881819,3.6082885 L 10.899141,3.5991566 L 10.916463,3.5900247 L 10.933786,3.5793706 L 10.951106,3.5702387 L 10.967098,3.5611067 L 10.983087,3.5504528 L 10.999075,3.5397988 L 11.015065,3.529145 L 11.031055,3.5200129 L 11.045713,3.5093589 L 11.06037,3.498705 L 11.075026,3.488051 L 11.088352,3.4773971 L 11.103008,3.4667432 L 11.116333,3.4560891 L 11.129658,3.4454353 L 11.142981,3.4332593 L 11.153641,3.4226054 L 11.168299,3.4104294 L 11.178958,3.4012975 L 11.189619,3.3891215 L 11.20161,3.3784676 L 11.213602,3.3662915 L 11.22293,3.3556376 L 11.23359,3.3434617 L 11.242918,3.3328077 L 11.253577,3.3206318 L 11.261572,3.3084558 L 11.270899,3.2978021 L 11.280226,3.2856262 L 11.28822,3.2734498 L 11.294885,3.2597519 L 11.302879,3.2490981 L 11.309541,3.2354001 L 11.317535,3.2232241 L 11.322864,3.2110482 L 11.329528,3.1988722 L 11.334859,3.1866962 L 11.338856,3.1745205 L 11.344186,3.1623442 L 11.349514,3.1486463 L 11.352179,3.1364705 L 11.356177,3.1227725 L 11.358841,3.1105965 L 11.362838,3.0968986 L 11.364172,3.0832006 L 11.366836,3.0710246 L 11.368169,3.0573268 L 11.369502,3.045151 L 11.369502,3.0314529 L 11.369502,3.0177548 L 11.338856,3.0177548 L 11.338856,3.0299309 L 11.338856,3.0421067 L 11.338856,3.0542826 L 11.33619,3.0664587 L 11.334859,3.0786345 L 11.333525,3.0892886 L 11.329528,3.1014646 L 11.326862,3.1136404 L 11.322864,3.1242945 L 11.321532,3.1364705 L 11.316203,3.1486463 L 11.310872,3.1593004 L 11.305544,3.1714764 L 11.301547,3.1836524 L 11.296216,3.1958284 L 11.290886,3.2064822 L 11.285556,3.2171361 L 11.277562,3.2293121 L 11.270899,3.2399661 L 11.262904,3.2521421 L 11.256243,3.262796 L 11.246914,3.274972 L 11.240253,3.2856262 L 11.230924,3.2978021 L 11.221598,3.3084558 L 11.212269,3.3206318 L 11.20161,3.3312857 L 11.192284,3.3419398 L 11.181625,3.3525936 L 11.172296,3.3632476 L 11.160303,3.3739016 L 11.148312,3.3845555 L 11.136321,3.3967314 L 11.124328,3.4058634 L 11.111003,3.4165173 L 11.099011,3.4286932 L 11.085686,3.4378253 L 11.072361,3.4484791 L 11.059038,3.4576113 L 11.04438,3.4697871 L 11.029724,3.4789191 L 11.015065,3.489573 L 10.999075,3.500227 L 10.98442,3.5093589 L 10.969761,3.5200129 L 10.953771,3.529145 L 10.937783,3.5397988 L 10.920461,3.5504528 L 10.903138,3.5580626 L 10.885818,3.5687168 L 10.868495,3.5778485 L 10.84984,3.5869806 L 10.833849,3.5976346 L 10.813863,3.6052447 L 10.79654,3.6143765 L 10.776555,3.6235085 L 10.757899,3.6326405 L 10.737912,3.6417725 L 10.717924,3.6509043 L 10.69794,3.6600363 L 10.679283,3.6676463 L 10.657965,3.6767784 L 10.636645,3.6859103 L 10.616658,3.6919983 L 10.595339,3.7011302 L 10.574019,3.70874 L 10.551368,3.7178721 L 10.530047,3.7239599 L 10.507396,3.733092 L 10.486076,3.740702 L 10.462092,3.748312 L 10.439439,3.7559219 L 10.392804,3.7696198 L 10.344836,3.7848398 L 10.296866,3.7985376 L 10.247566,3.8122357 L 10.196932,3.8244117 L 10.146298,3.8365876 L 10.094333,3.8487635 L 10.042365,3.8609395 L 9.9890653,3.8715933 L 9.9331033,3.8822474 L 9.8798053,3.8913792 L 9.8238401,3.9020334 L 9.7678765,3.9111654 L 9.7105811,3.9187752 L 9.6519524,3.9263853 L 9.5946562,3.9355172 L 9.5346952,3.9416052 L 9.4747341,3.9476933 L 9.4161057,3.9537811 L 9.3548121,3.9583471 L 9.2948512,3.9629131 L 9.2322252,3.9674791 L 9.1709318,3.9705231 L 9.1069735,3.973567 L 9.0443475,3.975089 L 8.9803891,3.9766109 L 8.9164307,3.9781331 L 8.8511398,3.9781331 L 8.8511398,3.9781331 L 8.8511398,4.0131389 L 8.8511398,4.0131389 L 8.8511398,4.0131389"
style="fill:#d98e9a;stroke:none;stroke-width:0.001" />
<path
id="path2681"
d="M 6.3353283,3.0177548 L 6.3353283,3.0177548 L 6.3353283,3.0314585 L 6.3353283,3.045162 L 6.3353283,3.0573428 L 6.337993,3.0710461 L 6.339325,3.0832271 L 6.3433221,3.0969306 L 6.3446543,3.110634 L 6.3486513,3.122815 L 6.3513159,3.1365184 L 6.3553128,3.1486991 L 6.3593098,3.1624026 L 6.364639,3.1745838 L 6.3699683,3.1867645 L 6.3752973,3.1989454 L 6.3806268,3.2111263 L 6.3872882,3.223307 L 6.3939497,3.2354879 L 6.4019436,3.2491915 L 6.4099372,3.2598496 L 6.4165988,3.2720305 L 6.4245927,3.2857344 L 6.4339188,3.2979152 L 6.4419127,3.3085731 L 6.4499065,3.3207541 L 6.4618972,3.3329349 L 6.4698912,3.3435932 L 6.4805495,3.3557741 L 6.4912081,3.3664323 L 6.5031987,3.3786132 L 6.5138571,3.3892715 L 6.5258479,3.4014524 L 6.5365062,3.410588 L 6.5498294,3.422769 L 6.5618201,3.4334272 L 6.5738109,3.445608 L 6.5884663,3.4562661 L 6.6017893,3.4669245 L 6.6151123,3.4775827 L 6.6297677,3.4882409 L 6.6444232,3.4988993 L 6.6590784,3.5095574 L 6.6737338,3.5202157 L 6.6897215,3.5293515 L 6.7043768,3.5400096 L 6.7203645,3.5506679 L 6.7363521,3.5613261 L 6.7536721,3.5704618 L 6.7709922,3.5795974 L 6.7883122,3.5902559 L 6.8056321,3.5993914 L 6.8229521,3.608527 L 6.8416043,3.6191854 L 6.8602565,3.6283208 L 6.8775767,3.6374566 L 6.8962289,3.6465923 L 6.9148812,3.6557281 L 6.9348657,3.6648636 L 6.9548502,3.6739991 L 6.9748348,3.6831349 L 6.9948194,3.6922706 L 7.014804,3.6998835 L 7.036121,3.7090191 L 7.0574378,3.7181547 L 7.0787546,3.7257678 L 7.1000715,3.7333809 L 7.1213884,3.7425166 L 7.1427054,3.7501296 L 7.1653544,3.7592652 L 7.1880038,3.7668783 L 7.2106531,3.7744911 L 7.2333019,3.7821043 L 7.2572836,3.7897175 L 7.3039143,3.8049435 L 7.3518773,3.8186469 L 7.3998404,3.8338729 L 7.4491356,3.8445312 L 7.5010955,3.8582348 L 7.551723,3.8719382 L 7.6050153,3.884119 L 7.6569753,3.8947773 L 7.7102673,3.906958 L 7.7662243,3.9176165 L 7.8208488,3.9267522 L 7.8754733,3.9374104 L 7.9340948,3.9465461 L 7.9913838,3.954159 L 8.048673,3.9632948 L 8.1059621,3.9693851 L 8.165916,3.9769981 L 8.2245373,3.9830886 L 8.2858235,3.9876563 L 8.3471095,3.9922243 L 8.4083955,3.9983148 L 8.4710139,4.00136 L 8.5336321,4.0059276 L 8.5975828,4.008973 L 8.6588689,4.0120182 L 8.7228196,4.0120182 L 8.7881026,4.0135408 L 8.8520532,4.0135408 L 8.8520532,3.9785209 L 8.7881026,3.9785209 L 8.7241519,3.9769981 L 8.6615335,3.9754756 L 8.5975828,3.9739529 L 8.5336321,3.9709078 L 8.4723462,3.9678626 L 8.4097277,3.9632948 L 8.3497741,3.9587269 L 8.288488,3.954159 L 8.2285342,3.9480689 L 8.1699129,3.9419782 L 8.1099591,3.9358878 L 8.0526699,3.9267522 L 7.9940485,3.9191391 L 7.9367593,3.9115262 L 7.8808026,3.9023904 L 7.8248457,3.8917321 L 7.7702212,3.8825965 L 7.7155968,3.8719382 L 7.6636368,3.8612801 L 7.6090123,3.8490991 L 7.5583848,3.8369182 L 7.507757,3.8247375 L 7.4571294,3.8125566 L 7.4065019,3.7988529 L 7.3585388,3.7851496 L 7.3119081,3.7699235 L 7.2652775,3.75622 L 7.2426283,3.7486071 L 7.2186467,3.740994 L 7.1973298,3.7333809 L 7.1746806,3.7242451 L 7.1520315,3.7181547 L 7.1307145,3.7090191 L 7.1080655,3.7014062 L 7.0880809,3.6922706 L 7.0680962,3.6861801 L 7.0467794,3.6770446 L 7.0254624,3.6679087 L 7.0054779,3.6602956 L 6.9854935,3.6511599 L 6.9655086,3.6420245 L 6.9468565,3.6328888 L 6.9282042,3.6237531 L 6.9082197,3.6146173 L 6.8895672,3.605482 L 6.8722474,3.5978688 L 6.853595,3.5872104 L 6.8362751,3.5780747 L 6.8189551,3.5689393 L 6.8016352,3.5582808 L 6.7843152,3.5506679 L 6.7669952,3.5400096 L 6.7510076,3.5293515 L 6.73502,3.5202157 L 6.7190321,3.5095574 L 6.7043768,3.5004218 L 6.6897215,3.4897636 L 6.6750662,3.4791054 L 6.6604107,3.4699697 L 6.6457554,3.4577889 L 6.6324324,3.4486531 L 6.6191093,3.4379949 L 6.6057863,3.4288592 L 6.5937955,3.4166783 L 6.5791401,3.4060202 L 6.5684817,3.3968844 L 6.556491,3.3847036 L 6.5445002,3.3740455 L 6.5325094,3.3633871 L 6.5231833,3.3527288 L 6.5125249,3.3420707 L 6.5031987,3.3314122 L 6.4925403,3.3207541 L 6.4832142,3.3085731 L 6.4725557,3.2979152 L 6.4645619,3.2857344 L 6.4565681,3.2750759 L 6.4485742,3.2628951 L 6.4419127,3.2522367 L 6.4339188,3.2400558 L 6.4259251,3.2293975 L 6.4205958,3.2172167 L 6.4139343,3.2065585 L 6.408605,3.1959003 L 6.4019436,3.1837193 L 6.3966142,3.1715385 L 6.3939497,3.1593577 L 6.3886204,3.1486991 L 6.3832912,3.1365184 L 6.3806268,3.1243375 L 6.377962,3.1136792 L 6.3739651,3.1014984 L 6.3713005,3.0893175 L 6.3699683,3.078659 L 6.3686359,3.0664784 L 6.3659713,3.0542974 L 6.3659713,3.0421165 L 6.3659713,3.0299359 L 6.364639,3.0177548 L 6.364639,3.0177548 L 6.3353283,3.0177548 L 6.3353283,3.0177548 L 6.3353283,3.0177548"
style="fill:#d98e9a;stroke:none;stroke-width:0.001" />
<path
id="path2591"
d="M 7.7073334,2.1451213 L 6.4523682,2.7243987 L 6.4631289,2.7548867 L 7.718094,2.177134 L 7.7073334,2.1451213"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2683"
d="M 8.8517487,2.0303805 L 8.8517487,2.0303805 L 8.7878059,2.0303805 L 8.7225308,2.0303805 L 8.6585878,2.0334 L 8.5973091,2.0349098 L 8.5333662,2.0394391 L 8.4707555,2.0424585 L 8.4081447,2.0469879 L 8.3468661,2.051517 L 8.2855875,2.0560462 L 8.2243088,2.0620852 L 8.1656946,2.0681242 L 8.1057479,2.075673 L 8.0484657,2.0817119 L 7.9911835,2.0907703 L 7.9339014,2.0998289 L 7.875287,2.1073775 L 7.8206691,2.1179459 L 7.7660512,2.1270042 L 7.710101,2.1360628 L 7.6568154,2.1481408 L 7.6048617,2.158709 L 7.5515759,2.1722967 L 7.5009545,2.1843747 L 7.4490009,2.1979625 L 7.3997116,2.2115501 L 7.3517543,2.223628 L 7.3037971,2.2387255 L 7.2571721,2.2523132 L 7.2105472,2.2689205 L 7.165254,2.2825082 L 7.1426077,2.2915668 L 7.1212933,2.3006251 L 7.099979,2.3081738 L 7.0786647,2.3157227 L 7.0573504,2.3232714 L 7.0360362,2.3323298 L 7.0147218,2.3413884 L 6.9947396,2.3504468 L 6.9747574,2.3595054 L 6.9547753,2.3685638 L 6.9347932,2.3761127 L 6.9148111,2.385171 L 6.896161,2.3942295 L 6.8775111,2.403288 L 6.860193,2.4138562 L 6.8415431,2.4214049 L 6.8228931,2.4319732 L 6.8055752,2.4410316 L 6.7882574,2.4500902 L 6.7709395,2.4606584 L 6.7536215,2.4697168 L 6.7363036,2.4802851 L 6.7203179,2.4908533 L 6.7043322,2.4999118 L 6.6896786,2.51048 L 6.6736929,2.5210483 L 6.6590392,2.5316164 L 6.6443858,2.5421846 L 6.6297321,2.552753 L 6.6150785,2.5618114 L 6.6017571,2.5738894 L 6.5884357,2.5844576 L 6.5737821,2.5935161 L 6.5617927,2.6055941 L 6.5498035,2.6161623 L 6.5364819,2.6267303 L 6.5258249,2.6372987 L 6.5138355,2.6493766 L 6.5031784,2.659945 L 6.4911892,2.672023 L 6.4805319,2.6841009 L 6.4698749,2.6946692 L 6.4618819,2.7067471 L 6.4498926,2.7188252 L 6.4418998,2.7293933 L 6.4339069,2.7414712 L 6.4245819,2.7535493 L 6.416589,2.7656272 L 6.4099282,2.7761955 L 6.4019355,2.7897832 L 6.3939426,2.8018612 L 6.3872819,2.8124294 L 6.3806213,2.8260172 L 6.3752925,2.8380951 L 6.3699641,2.850173 L 6.3646355,2.8637608 L 6.3593069,2.8758388 L 6.3553104,2.8879167 L 6.351314,2.9015044 L 6.3486497,2.9135824 L 6.3446532,2.9271701 L 6.3433211,2.939248 L 6.3393245,2.9528358 L 6.3379927,2.9664234 L 6.3353283,2.9785015 L 6.3353283,2.9920893 L 6.3353283,3.0056769 L 6.3353283,3.0177548 L 6.3646355,3.0177548 L 6.3659676,3.0056769 L 6.3659676,2.9935991 L 6.3659676,2.9830308 L 6.3686319,2.9709529 L 6.3699641,2.9588747 L 6.3712961,2.9467968 L 6.3739604,2.9362286 L 6.3779568,2.9226408 L 6.3806213,2.9120727 L 6.3832854,2.9015044 L 6.388614,2.8894264 L 6.3939426,2.8773485 L 6.3966068,2.8652705 L 6.4019355,2.8547023 L 6.4085961,2.8441339 L 6.4139248,2.8305463 L 6.4205855,2.8214877 L 6.4259141,2.8079 L 6.4339069,2.7973318 L 6.4418998,2.7852538 L 6.4485605,2.7761955 L 6.4565534,2.7626079 L 6.4645463,2.7535493 L 6.4725391,2.7399616 L 6.4831963,2.7293933 L 6.4925213,2.7203348 L 6.5031784,2.7082569 L 6.5125035,2.6976887 L 6.5231606,2.6856106 L 6.5324855,2.6765521 L 6.5444749,2.6659839 L 6.5564642,2.6554157 L 6.5684535,2.6433376 L 6.5791106,2.6327696 L 6.5937642,2.6222013 L 6.6057536,2.6116329 L 6.619075,2.6025745 L 6.6323965,2.5920062 L 6.6457178,2.5799283 L 6.6603714,2.5708698 L 6.6750251,2.5603017 L 6.6896786,2.5512431 L 6.7043322,2.5406749 L 6.7189857,2.5316164 L 6.7349716,2.5210483 L 6.7509573,2.51048 L 6.766943,2.5014215 L 6.7842609,2.4908533 L 6.8015788,2.4817947 L 6.8188966,2.4727364 L 6.8362145,2.4636779 L 6.8535323,2.4531095 L 6.8721824,2.4440512 L 6.8895002,2.4365025 L 6.9081504,2.4259341 L 6.9281325,2.4168756 L 6.9467825,2.4078173 L 6.9654324,2.4002686 L 6.9854148,2.3912101 L 7.0053968,2.3821515 L 7.0253789,2.3730929 L 7.0466933,2.3670541 L 7.0680076,2.3564859 L 7.0879898,2.3489371 L 7.107972,2.3413884 L 7.1306183,2.3323298 L 7.1519327,2.3232714 L 7.1745791,2.3172323 L 7.2185398,2.3006251 L 7.265165,2.2870374 L 7.31179,2.2719399 L 7.358415,2.2583522 L 7.4063723,2.2447646 L 7.4569937,2.2296671 L 7.5076152,2.2190989 L 7.5582368,2.2055112 L 7.6088582,2.1949429 L 7.6634761,2.1813553 L 7.7154298,2.1722967 L 7.7700476,2.1617286 L 7.8246655,2.1511602 L 7.8806156,2.1421018 L 7.9365656,2.1330434 L 7.9938478,2.1239848 L 8.0524622,2.1164361 L 8.1097444,2.1088874 L 8.169691,2.1028484 L 8.2283052,2.0968095 L 8.2882517,2.0907703 L 8.3495304,2.0847314 L 8.4094768,2.0802022 L 8.4720877,2.0771827 L 8.5333662,2.0741632 L 8.5973091,2.0711437 L 8.6612521,2.0681242 L 8.7238629,2.0681242 L 8.7878059,2.0666145 L 8.8517487,2.0651047 L 8.8517487,2.0651047 L 8.8517487,2.0303805 L 8.8517487,2.0303805 L 8.8517487,2.0303805"
style="fill:#d98e9a;stroke:none;stroke-width:0.001" />
<path
id="path2573"
d="M 9.0315883,2.0394391 L 6.4339069,3.2351585 L 6.4458961,3.268373 L 9.0422454,2.0711437 L 9.0315883,2.0394391"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2685"
d="M 11.369502,3.0177548 L 11.369502,3.0056769 L 11.369502,2.9920893 L 11.368169,2.9785015 L 11.366837,2.9664234 L 11.364173,2.9528358 L 11.36284,2.939248 L 11.358844,2.9271701 L 11.35618,2.9135824 L 11.352183,2.9015044 L 11.349519,2.8879167 L 11.344192,2.8758388 L 11.338863,2.8637608 L 11.334867,2.850173 L 11.329538,2.8380951 L 11.322875,2.8260172 L 11.317548,2.8124294 L 11.309555,2.8018612 L 11.302895,2.7897832 L 11.294903,2.7761955 L 11.28824,2.7656272 L 11.280248,2.7535493 L 11.270923,2.7414712 L 11.261598,2.7293933 L 11.253605,2.7188252 L 11.242949,2.7067471 L 11.233623,2.6946692 L 11.222965,2.6841009 L 11.21364,2.672023 L 11.201651,2.659945 L 11.189662,2.6493766 L 11.179004,2.6372987 L 11.168348,2.6267303 L 11.153693,2.6161623 L 11.143036,2.6055941 L 11.129716,2.5935161 L 11.116394,2.5844576 L 11.103072,2.5738894 L 11.08842,2.5618114 L 11.075097,2.552753 L 11.060445,2.5421846 L 11.045791,2.5316164 L 11.031137,2.5210483 L 11.015151,2.51048 L 10.999165,2.4999118 L 10.98318,2.4908533 L 10.967195,2.4802851 L 10.951207,2.4697168 L 10.933891,2.4606584 L 10.916573,2.4500902 L 10.899255,2.4410316 L 10.881937,2.4319732 L 10.863286,2.4214049 L 10.84597,2.4138562 L 10.825987,2.403288 L 10.808669,2.3942295 L 10.790017,2.385171 L 10.770037,2.3761127 L 10.750055,2.3685638 L 10.730071,2.3595054 L 10.708758,2.3504468 L 10.688776,2.3413884 L 10.667462,2.3323298 L 10.647479,2.3232714 L 10.626165,2.3157227 L 10.604851,2.3081738 L 10.582204,2.3006251 L 10.56089,2.2915668 L 10.538243,2.2825082 L 10.494283,2.2689205 L 10.447657,2.2523132 L 10.401033,2.2387255 L 10.353077,2.223628 L 10.30512,2.2115501 L 10.25583,2.1979625 L 10.203876,2.1843747 L 10.153253,2.1722967 L 10.099967,2.158709 L 10.048014,2.1481408 L 9.9947289,2.1360628 L 9.9387792,2.1270042 L 9.8841606,2.1179459 L 9.8282104,2.1073775 L 9.77226,2.0998289 L 9.7136457,2.0907703 L 9.6550313,2.0817119 L 9.5977495,2.075673 L 9.537803,2.0681242 L 9.4791887,2.0620852 L 9.4179101,2.0560462 L 9.3579635,2.051517 L 9.2953528,2.0469879 L 9.2340742,2.0424585 L 9.1714634,2.0394391 L 9.1075205,2.0349098 L 9.0462418,2.0334 L 8.9809668,2.0303805 L 8.9170238,2.0303805 L 8.8517487,2.0303805 L 8.8517487,2.0651047 L 8.9170238,2.0666145 L 8.9809668,2.0681242 L 9.0449097,2.0681242 L 9.1075205,2.0711437 L 9.1714634,2.0741632 L 9.232742,2.0771827 L 9.2953528,2.0802022 L 9.3552992,2.0847314 L 9.416578,2.0907703 L 9.4751922,2.0968095 L 9.5351388,2.1028484 L 9.5950853,2.1088874 L 9.6523677,2.1164361 L 9.7109822,2.1239848 L 9.7682638,2.1330434 L 9.8242138,2.1421018 L 9.880165,2.1511602 L 9.93345,2.1617286 L 9.9893996,2.1722967 L 10.042686,2.1813553 L 10.094641,2.1949429 L 10.146594,2.2055112 L 10.197216,2.2190989 L 10.247837,2.2296671 L 10.297125,2.2447646 L 10.345084,2.2583522 L 10.39304,2.2719399 L 10.439664,2.2870374 L 10.48629,2.3006251 L 10.53025,2.3172323 L 10.551566,2.3232714 L 10.574211,2.3323298 L 10.595526,2.3413884 L 10.61684,2.3489371 L 10.636822,2.3564859 L 10.658137,2.3670541 L 10.67945,2.3730929 L 10.698102,2.3821515 L 10.718082,2.3912101 L 10.738065,2.4002686 L 10.758047,2.4078173 L 10.776698,2.4168756 L 10.796679,2.4259341 L 10.813997,2.4365025 L 10.833979,2.4440512 L 10.849966,2.4531095 L 10.868616,2.4636779 L 10.885935,2.4727364 L 10.903251,2.4817947 L 10.92057,2.4908533 L 10.937887,2.5014215 L 10.953872,2.51048 L 10.969858,2.5210483 L 10.984513,2.5316164 L 10.999165,2.5406749 L 11.015151,2.5512431 L 11.029806,2.5603017 L 11.044459,2.5708698 L 11.059113,2.5799283 L 11.072433,2.5920062 L 11.085755,2.6025745 L 11.099076,2.6116329 L 11.111066,2.6222013 L 11.124387,2.6327696 L 11.136377,2.6433376 L 11.148365,2.6554157 L 11.160354,2.6659839 L 11.172344,2.6765521 L 11.18167,2.6856106 L 11.192327,2.6976887 L 11.201651,2.7082569 L 11.212307,2.7203348 L 11.221634,2.7293933 L 11.230958,2.7399616 L 11.240284,2.7535493 L 11.246944,2.7626079 L 11.25627,2.7761955 L 11.26293,2.7852538 L 11.270923,2.7973318 L 11.277584,2.8079 L 11.285576,2.8214877 L 11.290905,2.8305463 L 11.296234,2.8441339 L 11.301563,2.8547023 L 11.305559,2.8652705 L 11.310886,2.8773485 L 11.316216,2.8894264 L 11.321544,2.9015044 L 11.322875,2.9120727 L 11.326872,2.9226408 L 11.329538,2.9362286 L 11.333534,2.9467968 L 11.334867,2.9588747 L 11.336198,2.9709529 L 11.338863,2.9830308 L 11.338863,2.9935991 L 11.338863,3.0056769 L 11.338863,3.0177548 L 11.369502,3.0177548"
style="fill:#d98e9a;stroke:none;stroke-width:0.001" />
<path
id="path2687"
d="M 8.9170238,2.803371 L 9.2846956,2.9422675 L 10.155919,2.5497334 L 10.563556,2.6614548 L 10.34908,2.3127031 L 9.3006814,2.3127031 L 9.7389564,2.4334828 L 8.9170238,2.803371"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
id="path2621"
d="M 7.2824828,3.42961 L 6.6877075,3.1322254 L 6.6755968,3.1627264 L 7.2690263,3.4601109 L 7.2824828,3.42961"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
<path
id="path2689"
d="M 8.7638272,3.2034539 L 8.3948232,3.0660668 L 7.5236009,3.4586011 L 7.1186291,3.34688 L 7.3317721,3.6956315 L 8.3815018,3.6956315 L 7.9432263,3.5733418 L 8.7638272,3.2034539"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
id="path2691"
d="M 7.2065506,2.4334828 L 7.5768866,2.2960959 L 8.446777,2.6886302 L 8.8544132,2.575399 L 8.6386056,2.9241506 L 7.588876,2.9241506 L 8.0284836,2.803371 L 7.2065506,2.4334828"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
id="path2693"
d="M 8.9476631,2.8380951 L 9.316667,2.9769919 L 10.18789,2.5844576 L 10.594193,2.6961789 L 10.379719,2.3459176 L 9.3299885,2.3459176 L 9.7682638,2.4682071 L 8.9476631,2.8380951"
style="fill:white;stroke:none;stroke-width:0.001" />
<path
id="path2695"
d="M 8.7957987,3.2381781 L 8.4254627,3.100791 L 7.5542404,3.4933253 L 7.1479361,3.3800944 L 7.3624115,3.7303557 L 8.4121412,3.7303557 L 7.9738656,3.6095758 L 8.7957987,3.2381781"
style="fill:white;stroke:none;stroke-width:0.001" />
<path
id="path2697"
d="M 7.23719,2.4682071 L 7.6061939,2.3293103 L 8.4774162,2.7218445 L 8.8837202,2.6101233 L 8.6705771,2.9588747 L 7.6208474,2.9588747 L 8.059123,2.8380951 L 7.23719,2.4682071"
style="fill:white;stroke:none;stroke-width:0.001" />
<path
id="path2699"
d="M 10.470304,3.6382611 L 10.105297,3.7756479 L 9.2433991,3.3861333 L 8.8397595,3.4978545 L 9.0529024,3.1521225 L 10.090643,3.1521225 L 9.6576958,3.2729024 L 10.470304,3.6382611"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
id="path2701"
d="M 10.495615,3.6820436 L 10.133272,3.8194307 L 9.2713742,3.429916 L 8.8677345,3.5416372 L 9.0808777,3.1959051 L 10.118618,3.1959051 L 9.6843384,3.3151753 L 10.495615,3.6820436"
style="fill:white;stroke:none;stroke-width:0.001" />
<path
id="path2633"
d="M 9.3513028,2.4618837 L 8.76931,2.1724586 L 8.7572132,2.2029244 L 9.3392062,2.4938728 L 9.3513028,2.4618837"
style="fill:#ecaab4;stroke:none;stroke-width:0.001" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 49 KiB

@ -0,0 +1,215 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="66.000435"
height="44.5159"
version="1.0"
sodipodi:docname="rt_netflow.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>Netflow router</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
id="linearGradient9312">
<stop
style="stop-color:#3c8c8c;stop-opacity:1;"
offset="0"
id="stop9314" />
<stop
style="stop-color:#ffffff;stop-opacity:0.94117647;"
offset="1"
id="stop9316" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9312"
id="linearGradient2216"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.252829,0,0,14.082619,53.467529,3.4188377)"
x1="-1.0929121"
y1="0.63145506"
x2="-4.5832458"
y2="0.070047863" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="7.8958335"
inkscape:cx="27.334225"
inkscape:cy="34.916118"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="g4160" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.39215687;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4558"
width="64.552505"
height="41.53862"
x="1.4479325"
y="2.9772801"
ry="11.631706"
rx="32.212925"
inkscape:transform-center-x="8.4568136" />
<rect
style="opacity:1;fill:#3c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.015;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect9971"
width="64.499474"
height="42.154343"
x="0.0625"
y="0.18084908"
ry="11.557454"
rx="32.249737"
inkscape:transform-center-x="8.2952569" />
<g
id="g4160">
<path
id="path4815"
d="M 64.514069,11.541297 L 64.457031,10.955643 L 64.342949,10.36999 L 64.152814,9.8038604 L 63.867612,9.2182077 L 63.487345,8.6520765 L 63.050034,8.0859452 L 62.517657,7.5393369 L 61.909226,7.0122499 L 61.224742,6.4851607 L 60.464203,5.9775955 L 59.646626,5.4700289 L 58.752993,4.9819859 L 57.783307,4.4939413 L 56.75658,4.0644625 L 55.6538,3.6349838 L 54.493981,3.2055052 L 53.296132,2.8150692 L 52.022232,2.4636777 L 50.710303,2.1122862 L 49.341334,1.7999375 L 47.934339,1.5071117 L 46.489316,1.2338059 L 45.006267,0.99954576 L 43.504204,0.76528425 L 41.964114,0.58958842 L 40.385997,0.43341443 L 38.788867,0.29676153 L 37.191738,0.19915292 L 35.575597,0.12106555 L 33.940437,0.06250017 L 32.324296,0.06250017 L 32.324296,0.06250017 L 30.689136,0.06250017 L 29.053981,0.12106555 L 27.45685,0.19915292 L 25.840705,0.29676153 L 24.243576,0.43341443 L 22.684472,0.58958842 L 21.125372,0.76528425 L 19.623307,0.99954576 L 18.140258,1.2338059 L 16.695234,1.5071117 L 15.28824,1.7999375 L 13.919273,2.1122862 L 12.607342,2.4636777 L 11.333442,2.8150692 L 10.135592,3.2055052 L 8.9757693,3.6349838 L 7.8729941,4.0644625 L 6.8462664,4.4939413 L 5.8765785,4.9819859 L 4.9829488,5.4700289 L 4.1653682,5.9775955 L 3.4048335,6.4851607 L 2.7203448,7.0122499 L 2.1309311,7.5393369 L 1.5795405,8.0859452 L 1.1422325,8.6520765 L 0.76195982,9.2182077 L 0.47676065,9.8038604 L 0.26760898,10.36999 L 0.15353084,10.955643 L 0.11550327,11.541297 L 0.11550327,11.541297 L 0.15353084,12.12695 L 0.26760898,12.693081 L 0.47676065,13.278734 L 0.76195982,13.825344 L 1.1422325,14.410996 L 1.5795405,14.957605 L 2.1309311,15.523736 L 2.7203448,16.070348 L 3.4048335,16.597435 L 4.1653682,17.085479 L 4.9829488,17.593043 L 5.8765785,18.100608 L 6.8462664,18.549609 L 7.8729941,18.998611 L 8.9757693,19.447613 L 10.135592,19.857571 L 11.333442,20.248007 L 12.607342,20.599396 L 13.919273,20.950787 L 15.28824,21.263135 L 16.695234,21.575486 L 18.140258,21.829265 L 19.623307,22.083049 L 21.125372,22.297787 L 22.684472,22.473485 L 24.243576,22.629661 L 25.840705,22.766312 L 27.45685,22.863921 L 29.053981,22.942009 L 30.689136,23.000574 L 32.324296,23.000574 L 32.324296,23.000574 L 33.940437,23.000574 L 35.575597,22.942009 L 37.191738,22.863921 L 38.788867,22.766312 L 40.385997,22.629661 L 41.964114,22.473485 L 43.504204,22.297787 L 45.006267,22.083049 L 46.489316,21.829265 L 47.934339,21.575486 L 49.341334,21.263135 L 50.710303,20.950787 L 52.022232,20.599396 L 53.296132,20.248007 L 54.493981,19.857571 L 55.6538,19.447613 L 56.75658,18.998611 L 57.783307,18.549609 L 58.752993,18.100608 L 59.646626,17.593043 L 60.464203,17.085479 L 61.224742,16.597435 L 61.909226,16.070348 L 62.517657,15.523736 L 63.050034,14.957605 L 63.487345,14.410996 L 63.867612,13.825344 L 64.152814,13.278734 L 64.342949,12.693081 L 64.457031,12.12695 L 64.514069,11.541297"
style="fill:url(#linearGradient2216);fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 2.9265595,6.8895923 L 5.6373838,5.3601584 L 8.7134984,3.7115477 L 12.693221,2.4403287 L 14.250503,1.6656807 L 15.11566,1.6656807 L 15.846236,1.6656807 L 16.211526,2.0629359 L 16.596038,2.4403287 L 17.076682,2.9170364 L 17.826485,3.7115477 L 18.191773,4.0889405 L 19.056931,4.9827655 L 20.172021,5.3601584 L 20.902598,5.7375513 L 22.133044,5.7375513 L 22.882846,5.7375513 L 24.113292,5.7375513 L 24.84387,5.3601584 L 25.6898,4.9827655 L 26.420378,4.0889405 L 27.689274,3.3341547 L 29.285008,2.0629359 L 30.4001,1.6656807 L 31.630544,1.6656807 L 32.726411,1.6656807 L 33.93763,1.6656807 L 35.071948,2.0629359 L 36.302392,2.9170364 L 37.513612,3.7115477 L 38.647929,4.4464701 L 39.859148,5.3601584 L 40.993466,5.7375513 L 42.550748,5.7375513 L 43.781194,5.7375513 L 44.877059,5.3601584 L 46.126731,4.9827655 L 47.222596,4.0889405 L 48.106979,3.3341547 L 48.837556,2.4403287 L 50.068001,2.0629359 L 50.817804,2.0629359 L 51.663735,2.0629359 L 53.144116,2.9170364 L 54.759075,3.3341547 L 55.970293,3.7115477 L 57.585253,4.4464701 L 58.681119,4.9827655 L 59.430923,5.3601584 L 60.296079,5.7375513 L 57.085385,4.9827655 L 55.124363,4.9827655 L 54.009272,4.9827655 L 52.413538,5.3601584 L 51.183091,5.7375513 L 50.068001,6.5320618 L 48.837556,7.4060243 L 47.722465,7.7834172 L 46.49202,8.1608101 L 44.530997,8.5382041 L 42.550748,8.9354593 L 40.993466,8.5382041 L 39.493861,8.5382041 L 38.647929,7.7834172 L 37.917352,7.4060243 L 37.052195,6.5320618 L 36.302392,5.7375513 L 35.071948,5.3601584 L 33.93763,4.9827655 L 32.361122,4.9827655 L 31.246031,4.9827655 L 30.015585,5.3601584 L 29.285008,5.7375513 L 28.054563,6.5320618 L 26.824117,7.4060243 L 25.6898,8.1608101 L 24.47858,8.5382041 L 23.344264,8.9354593 L 21.402467,8.9354593 L 19.422219,8.9354593 L 18.191773,8.1608101 L 17.461197,7.7834172 L 16.211526,6.8895923 L 15.480948,6.1348065 L 14.615792,5.7375513 L 13.519926,4.9827655 L 11.558903,4.9827655 L 10.328458,4.9827655 L 8.7134984,4.9827655 L 7.9829211,4.9827655 L 6.7524754,5.3601584 L 5.2720957,5.7375513 L 2.9265595,6.8895923"
id="path2472"
style="fill:#0082a0;stroke:none;stroke-width:0.001;fill-opacity:1" />
<path
id="path4819"
d="M 33.023738,8.6936939 L 37.664889,10.327433 L 48.909313,5.4458969 L 53.946665,7.0599533 L 51.229891,3.0248142 L 38.061087,3.0248142 L 43.475766,4.225514 L 33.023738,8.6936939"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 0.46566785,9.8292844 L 0.10037977,10.58407 L 0.10037977,11.477897 L 0.10037977,11.855288 L 0.10037977,12.629938 L 0.46566785,13.484036 L 0.46566785,13.901155 L 2.0614017,13.00733 L 3.2918475,12.232683 L 4.0416509,11.855288 L 4.9068076,11.477897 L 6.002673,11.477897 L 7.2331178,10.961463 L 8.7134984,10.961463 L 10.328458,10.961463 L 11.21284,10.961463 L 12.28948,11.477897 L 13.154637,11.855288 L 13.885214,11.855288 L 14.615792,12.629938 L 15.480948,13.00733 L 17.076682,13.901155 L 17.826485,14.65594 L 19.422219,15.033333 L 21.402467,15.033333 L 22.882846,15.033333 L 24.113292,15.033333 L 24.84387,15.033333 L 26.055089,14.65594 L 26.824117,13.901155 L 27.689274,13.00733 L 28.400625,12.232683 L 30.015585,11.477897 L 31.246031,10.961463 L 33.110924,11.477897 L 34.34137,11.477897 L 35.071948,11.855288 L 35.937104,12.629938 L 37.052195,13.484036 L 37.917352,13.901155 L 38.647929,14.278547 L 40.224438,15.033333 L 42.18546,15.033333 L 43.415907,15.033333 L 44.877059,14.65594 L 46.857307,13.901155 L 47.722465,13.484036 L 48.837556,13.00733 L 50.068001,12.232683 L 51.183091,11.855288 L 52.413538,11.477897 L 54.009272,10.961463 L 55.624231,10.961463 L 57.085385,10.961463 L 57.950544,10.961463 L 59.065634,11.477897 L 60.296079,11.855288 L 61.391944,11.855288 L 63.987415,13.384725 L 64.102769,11.855288 L 64.23735,10.58407 L 63.006904,9.8292844 L 61.391944,8.9354593 L 59.911565,8.5382041 L 57.950544,7.7834172 L 56.720097,7.7834172 L 55.624231,7.7834172 L 54.37456,8.1608101 L 53.144116,8.5382041 L 52.04825,8.9354593 L 50.817804,9.4320291 L 49.202845,10.206677 L 48.106979,10.58407 L 46.49202,11.477897 L 44.877059,11.855288 L 43.415907,12.232683 L 42.18546,12.232683 L 40.993466,11.855288 L 40.224438,11.855288 L 38.993992,11.477897 L 38.282642,10.58407 L 37.513612,9.8292844 L 36.648455,8.9354593 L 35.571816,8.5382041 L 34.706659,8.1608101 L 33.93763,7.7834172 L 33.110924,7.7834172 L 31.995834,7.4060243 L 31.246031,7.7834172 L 30.4001,7.7834172 L 29.650297,8.1608101 L 28.765915,8.5382041 L 28.054563,9.4320291 L 26.824117,10.58407 L 25.6898,11.477897 L 24.84387,11.855288 L 24.113292,11.855288 L 22.882846,12.232683 L 21.767755,12.232683 L 20.902598,12.232683 L 19.787507,11.855288 L 19.056931,11.477897 L 17.826485,10.58407 L 16.596038,9.8292844 L 15.480948,9.4320291 L 14.615792,8.5382041 L 13.885214,8.1608101 L 13.154637,7.7834172 L 11.924192,7.4060243 L 10.328458,7.4060243 L 9.213367,7.4060243 L 7.9829211,7.4060243 L 6.7524754,7.7834172 L 6.002673,7.7834172 L 5.2720957,8.1608101 L 4.0416509,8.5382041 L 3.2918475,8.5382041 L 2.4651423,8.9354593 L 2.0614017,9.4320291 L 1.3308255,9.4320291 L 0.46566785,9.8292844"
id="path2474"
style="fill:#0082a0;stroke:none;stroke-width:0.001;fill-opacity:1" />
<path
id="path4821"
d="M 31.08049,13.161874 L 26.439334,11.528132 L 15.591104,16.429352 L 10.176425,14.775929 L 12.874332,19.244109 L 26.439334,19.244109 L 20.628458,17.630052 L 31.08049,13.161874"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 32.361122,13.901155 L 33.110924,13.901155 L 34.34137,13.901155 L 35.071948,14.278547 L 35.571816,14.65594 L 36.302392,15.033333 L 37.052195,15.549766 L 37.513612,16.284688 L 38.282642,16.701807 L 38.647929,17.079199 L 39.493861,17.595631 L 39.859148,17.973025 L 40.628178,17.973025 L 41.454882,18.350417 L 42.18546,18.350417 L 42.916037,18.350417 L 44.146482,17.973025 L 44.877059,17.973025 L 45.761442,17.595631 L 46.857307,17.079199 L 48.106979,16.284688 L 48.837556,15.927158 L 49.702713,15.549766 L 50.43329,14.65594 L 51.183091,14.278547 L 52.413538,13.901155 L 53.643985,13.901155 L 54.37456,13.901155 L 55.124363,13.901155 L 56.354809,13.901155 L 57.585253,14.278547 L 58.681119,14.278547 L 59.911565,14.65594 L 60.661368,15.033333 L 61.391944,15.549766 L 62.276328,15.927158 L 61.026657,16.701807 L 59.430923,17.973025 L 58.681119,17.595631 L 57.950544,17.079199 L 57.085385,16.701807 L 55.970293,16.701807 L 54.759075,16.701807 L 53.643985,16.701807 L 52.778825,17.079199 L 51.663735,17.595631 L 50.817804,17.973025 L 49.702713,18.707947 L 48.837556,19.621636 L 47.722465,20.356558 L 46.126731,20.773677 L 44.530997,21.15107 L 42.916037,21.15107 L 41.820172,21.508599 L 40.628178,21.15107 L 39.493861,20.773677 L 38.647929,20.356558 L 37.917352,19.979166 L 37.052195,19.085341 L 36.648455,18.350417 L 35.937104,17.973025 L 35.071948,17.595631 L 34.34137,17.595631 L 33.110924,17.595631 L 31.995834,17.595631 L 30.765388,17.595631 L 29.650297,17.973025 L 28.765915,18.350417 L 28.054563,18.707947 L 27.689274,19.085341 L 26.824117,19.979166 L 26.055089,20.773677 L 24.84387,21.15107 L 24.113292,21.508599 L 22.882846,21.508599 L 21.767755,21.508599 L 20.53731,21.508599 L 19.422219,21.15107 L 18.557062,21.15107 L 17.826485,20.356558 L 16.596038,19.621636 L 15.846236,18.707947 L 15.11566,18.350417 L 13.885214,17.973025 L 13.154637,17.595631 L 11.924192,17.595631 L 10.693745,17.595631 L 9.213367,17.595631 L 7.9829211,17.595631 L 7.2331178,17.973025 L 6.7524754,17.973025 L 6.3871873,18.350417 L 6.3871873,18.707947 L 4.9068076,17.973025 L 4.0416509,17.079199 L 3.2918475,16.701807 L 4.406939,15.549766 L 6.002673,14.65594 L 7.2331178,14.278547 L 8.7134984,13.901155 L 9.9823946,13.901155 L 11.558903,13.901155 L 12.28948,14.278547 L 13.154637,14.278547 L 14.250503,14.65594 L 15.11566,15.033333 L 15.846236,15.927158 L 16.596038,16.284688 L 17.826485,17.079199 L 19.056931,17.973025 L 20.172021,18.350417 L 21.767755,18.350417 L 22.882846,18.350417 L 24.47858,17.973025 L 25.343738,17.595631 L 26.055089,17.079199 L 26.824117,16.701807 L 27.689274,15.927158 L 28.400625,15.033333 L 29.650297,14.278547 L 30.4001,13.901155 L 31.630544,13.901155 L 32.361122,13.901155"
id="path2476"
style="fill:#0082a0;stroke:none;stroke-width:0.001;fill-opacity:1" />
<path
id="path4823"
d="M 11.327278,4.225514 L 15.968435,2.611458 L 27.212859,7.0599533 L 32.25021,5.8592533 L 29.552303,9.8943939 L 16.364632,9.8943939 L 21.779313,8.6936939 L 11.327278,4.225514"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4825"
d="M 53.154272,18.023723 L 48.513117,19.657467 L 37.664889,14.775929 L 32.25021,16.429352 L 34.966985,12.33516 L 48.513117,12.33516 L 42.70224,13.555544 L 53.154272,18.023723"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4827"
d="M 33.419936,9.1070493 L 38.061087,10.721105 L 49.286643,5.8592533 L 54.323994,7.4929926 L 51.60722,3.4184854 L 38.438415,3.4184854 L 43.871962,4.6191872 L 33.419936,9.1070493"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4829"
d="M 31.476681,13.555544 L 26.816665,11.941487 L 15.968435,16.803341 L 10.553753,15.189284 L 13.25166,19.657467 L 26.816665,19.657467 L 21.005786,18.023723 L 31.476681,13.555544"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4831"
d="M 11.723476,4.6191872 L 16.364632,3.0248142 L 27.609055,7.4929926 L 32.627541,6.2529266 L 29.929634,10.327433 L 16.741963,10.327433 L 22.175509,9.1070493 L 11.723476,4.6191872"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4833"
d="M 53.531602,18.43708 L 48.909313,20.070823 L 38.061087,15.189284 L 32.627541,16.803341 L 35.344315,12.7682 L 48.909313,12.7682 L 43.098437,13.9689 L 53.531602,18.43708"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

@ -0,0 +1,226 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="69.512581"
id="svg2"
inkscape:version="0.45.1"
sodipodi:docname="server.svg"
sodipodi:version="0.32"
width="49.476486"
version="1.0"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata3">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>server</dc:title>
<dc:description />
<dc:subject>
<rdf:Bag>
<rdf:li>computer</rdf:li>
<rdf:li>server</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:publisher>
<cc:Agent
rdf:about="http://www.openclipart.org/">
<dc:title>Open Clip Art Library</dc:title>
</cc:Agent>
</dc:publisher>
<dc:creator>
<cc:Agent>
<dc:title>mimooh</dc:title>
</cc:Agent>
</dc:creator>
<dc:rights>
<cc:Agent>
<dc:title>mimooh</dc:title>
</cc:Agent>
</dc:rights>
<dc:date />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://web.resource.org/cc/PublicDomain" />
<dc:language>en</dc:language>
</cc:Work>
<cc:License
rdf:about="http://web.resource.org/cc/PublicDomain">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs3">
<linearGradient
id="linearGradient5992"
inkscape:collect="always">
<stop
id="stop5994"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop5996"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient5963"
inkscape:collect="always">
<stop
id="stop5965"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop5967"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient3586">
<stop
id="stop3588"
offset="0.0000000"
style="stop-color:#000000;stop-opacity:1.0000000;" />
<stop
id="stop3590"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
gradientUnits="userSpaceOnUse"
id="linearGradient5969"
inkscape:collect="always"
x1="383.95898"
x2="458.91232"
xlink:href="#linearGradient5963"
y1="225.4008"
y2="187.57059" />
<radialGradient
cx="495.5"
cy="285.36218"
fx="495.5"
fy="285.36218"
gradientTransform="matrix(1,0,0,1.693685,0,-197.9515)"
gradientUnits="userSpaceOnUse"
id="radialGradient6000"
inkscape:collect="always"
r="33.15625"
xlink:href="#linearGradient5992" />
</defs>
<sodipodi:namedview
bordercolor="#666666"
borderopacity="1.0"
id="base"
inkscape:current-layer="g6052"
inkscape:cx="107.58466"
inkscape:cy="72.335358"
inkscape:document-units="px"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:window-height="975"
inkscape:window-width="1400"
inkscape:window-x="5"
inkscape:window-y="49"
inkscape:zoom="2.8284271"
pagecolor="#ffffff" />
<g
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Layer 1"
transform="translate(-132.89081,-130.88478)">
<g
id="g6052"
transform="matrix(0.282664,0,0,0.256012,30.79975,86.71058)">
<path
d="M 362.77592,187.283 C 360.50343,190.98677 361.20593,367.68763 364.14011,374.65173 C 366.46268,380.1642 441.02381,442.12988 444.93699,443.78694 C 495.35017,443.444 529.34176,425.0858 534.99109,415.38735 C 537.14042,403.1889 535.31621,215.19709 533.25552,211.25359 C 531.47859,207.85312 436.04893,173.6386 432.71615,172.86054 C 429.71763,172.16052 365.30189,183.1661 362.77592,187.283 z "
id="path1306"
sodipodi:nodetypes="czcczzz"
style="fill:#c7c7c7;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.53529978;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 366.42857,190.93361 C 391.19048,201.4098 418.60601,218.30739 446.22506,231.64072 C 472.394,225.42153 510.2022,217.10972 529.24981,213.77639 C 504.726,221.39543 472.52022,228.51448 447.99641,236.13353 C 446.56784,293.51448 447.257,380.45861 445.82843,437.83956 C 445.11414,379.98242 443.14285,291.6479 442.42856,233.79075 C 415.99999,219.50504 390,206.64789 366.42857,190.93361 z "
id="path2066"
sodipodi:nodetypes="ccccccc"
style="fill:#ffffff;fill-opacity:0.54385968;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 519.99794,379.97737 C 510.93834,392.99882 482.41849,399.43361 468.8726,394.16864 C 471.21835,393.5424 516.96143,380.96883 519.99794,379.97737 z "
id="path4356"
sodipodi:nodetypes="ccc"
style="fill:#000000;fill-opacity:0.16228069;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
id="g4374"
transform="translate(2.035534,15.20712)">
<path
d="M 471.29127,340.59039 L 513.55921,324.30516 C 517.9002,325.84805 517.04588,332.27818 517.04588,332.27818 L 510.46155,334.58088 C 510.46155,334.58088 501.26764,349.01224 484.93096,343.36795 C 484.93096,343.36795 472.7787,345.52605 471.29127,340.59039 z "
id="path4362"
sodipodi:nodetypes="cccccc"
style="fill:#ffffff;fill-opacity:0.39473685;fill-rule:evenodd;stroke:none;stroke-width:1.01199996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 471.66824,335.10501 C 485.70133,331.45482 499.73443,327.80464 513.76752,324.15445 C 514.30594,326.13864 514.34437,328.99782 513.50779,330.48201 C 511.36566,331.50652 507.10221,332.35425 504.96008,333.37876 C 498.80357,339.27354 493.45917,339.80363 483.65919,338.95243 C 479.87505,339.74603 476.0909,340.36284 472.30676,341.15644 C 471.15285,338.85897 470.82215,337.90248 471.66824,335.10501 z "
id="path2826"
sodipodi:nodetypes="ccccccc"
style="fill:#606060;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.11199999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<path
d="M 364.8671,189.69191 L 446.71991,235.61832 L 446.39149,441.00771 L 366.28132,373.53968 L 364.8671,189.69191 z "
id="path4423"
sodipodi:nodetypes="ccccc"
style="fill:#ffffff;fill-opacity:0.40350874;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 515.24794,392.97737 C 505.81506,405.42036 486.94113,407.56087 476.3726,403.76831 C 478.1563,403.29212 512.93901,393.73127 515.24794,392.97737 z "
id="path5957"
sodipodi:nodetypes="ccc"
style="fill:#000000;fill-opacity:0.16228069;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 508.24794,405.72737 C 502.79158,413.09279 492.2492,415.37141 483.8726,412.49343 C 484.991,412.19485 506.80021,406.20008 508.24794,405.72737 z "
id="path5959"
sodipodi:nodetypes="ccc"
style="fill:#000000;fill-opacity:0.16228069;fill-rule:evenodd;stroke:none;stroke-width:0.25pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="M 522.875,227.86218 L 527.04289,228.4302 L 527.79289,326.56929 L 463.46862,344.54896 L 461.88388,339.34073 L 523.68934,322.86218 L 522.875,227.86218 z "
id="path5973"
sodipodi:nodetypes="ccccccc"
style="fill:#fcfcfc;fill-opacity:0.44298245;fill-rule:evenodd;stroke:none;stroke-width:0.31200001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
d="M 462.21967,264.23013 L 462.31434,266.99086 L 522.7929,249.54632 L 462.21967,264.23013 z "
id="path6026"
sodipodi:nodetypes="cccc"
style="opacity:1;color:#000000;fill:#000000;fill-opacity:0.22745098;fill-rule:evenodd;stroke:none;stroke-width:2.61199999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22807013;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" />
<path
d="M 461.33579,284.2059 L 461.43046,286.96663 L 521.90902,269.52209 L 461.33579,284.2059 z "
id="path6036"
sodipodi:nodetypes="cccc"
style="opacity:1;color:#000000;fill:#000000;fill-opacity:0.22745098;fill-rule:evenodd;stroke:none;stroke-width:2.61199999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22807013;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" />
<path
d="M 462.21967,302.64613 L 462.31434,305.40686 L 522.7929,287.96232 L 462.21967,302.64613 z "
id="path6038"
sodipodi:nodetypes="cccc"
style="opacity:1;color:#000000;fill:#000000;fill-opacity:0.22745098;fill-rule:evenodd;stroke:none;stroke-width:2.61199999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22807013;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" />
<path
d="M 462.21967,320.79868 L 462.31434,323.55941 L 522.7929,306.11487 L 462.21967,320.79868 z "
id="path6040"
sodipodi:nodetypes="cccc"
style="opacity:1;color:#000000;fill:#000000;fill-opacity:0.22745098;fill-rule:evenodd;stroke:none;stroke-width:2.61199999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.22807013;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" />
<path
d="M 522.55191,229.64344 L 462.03362,244.76045 L 462.53549,344.35813"
id="path5988"
sodipodi:nodetypes="ccc"
style="opacity:1;color:#000000;fill:none;fill-opacity:0.75;fill-rule:evenodd;stroke:#9e9e9e;stroke-width:2.61199999;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;font-family:Bitstream Vera Sans" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

@ -0,0 +1,305 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="40.016354"
height="59.99538"
viewBox="4 5 19.575408 26.667946"
id="svg2">
<title
id="title5193">SIP server</title>
<metadata
id="metadata122">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="" />
<dc:title>SIP server</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project
(www.gns3.net)</dc:description>
</cc:Work>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs120">
<linearGradient
id="linearGradient5116">
<stop
id="stop5118"
style="stop-color:#6e8caa;stop-opacity:1"
offset="0" />
<stop
id="stop5120"
style="stop-color:#6e8caa;stop-opacity:0"
offset="1" />
</linearGradient>
<linearGradient
x1="42.174862"
y1="18.114693"
x2="13.401131"
y2="18.114693"
id="linearGradient5122"
xlink:href="#linearGradient5116"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.0266399,0,0,1,-0.5486097,0)" />
<linearGradient
x1="42.174862"
y1="18.114693"
x2="13.401131"
y2="18.114693"
id="linearGradient2257"
xlink:href="#linearGradient5116"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.76961353,0,0,0.71533288,-11.818463,-7.0704459)" />
<linearGradient
x1="42.174862"
y1="18.114693"
x2="13.401131"
y2="18.114693"
id="linearGradient2263"
xlink:href="#linearGradient5116"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.7696135,0,0,0.7153329,-11.818463,-7.0704459)" />
<linearGradient
x1="42.174862"
y1="18.114693"
x2="13.401131"
y2="18.114693"
id="linearGradient2310"
xlink:href="#linearGradient5116"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.7696135,0,0,0.7153329,-11.818463,-7.0704459)" />
</defs>
<rect
width="15.636623"
height="1.1821179"
x="4.7503614"
y="31.806076"
id="rect5191"
style="fill:#000000;fill-opacity:0.39215686" />
<path
d="m 20.369026,33.008399 3.206382,-2.15474 0,-26.8428981 -3.206382,2.151477 0,26.8461611 z"
id="path5176"
style="fill:#000000;fill-opacity:0.39215686" />
<path
d="m 4.0305741,5.7825119 0,26.4903491 16.3659829,0 0,-26.4903491 -16.3659829,0 0,0 0,0 z"
id="path6"
style="fill:#6e8caa;fill-opacity:1" />
<path
d="m 4.0305741,5.7825119 0,26.4257551"
id="path8"
style="fill:none;stroke:#8dcaef;stroke-width:0.01464574" />
<path
d="m 4.0305741,5.8875899 2.2596628,-2.122965 16.8367581,0 -2.280519,2.122965 -16.8159019,0 0,0 0,0 z"
id="path12"
style="fill:url(#linearGradient2310);fill-opacity:1" />
<path
d="m 4.9888429,7.3303489 7.2771601,0 0,3.2862401 -7.2771601,0 0,-3.2862401 0,0 z"
id="path16"
style="fill:#009bdf" />
<path
d="m 4.9888429,7.3303489 7.2771601,0 0,3.2862401 -7.2771601,0 0,-3.2862401 0,0 z"
id="path18"
style="fill:#6e8296;fill-opacity:1" />
<path
d="m 12.367655,7.3303489 -0.101652,-0.097 -7.2771601,0 0,0.197146 7.2771601,0 0.101652,-0.100147 0,0 0,-0.097 -0.101652,0 0.101652,0.097 0,1e-6 z"
id="path20"
style="fill:#00688f" />
<path
d="m 12.266003,10.707078 0.101652,-0.09049 0,-3.2862401 -0.199855,0 0,3.2862401 0.0982,0.09049 0,0 0.101652,0 0,-0.09049 -0.101652,0.09049 3e-6,0 z"
id="path22"
style="fill:#00688f" />
<path
d="m 4.8906396,10.616589 0.098203,0.09049 7.2771604,0 0,-0.187417 -7.2771604,0 -0.098203,0.09693 0,0 0,0.09049 0.098203,0 -0.098203,-0.09049 0,-3e-6 z"
id="path24"
style="fill:#00688f" />
<path
d="m 4.9888429,7.2333499 -0.098203,0.097 0,3.2862401 0.1964065,0 0,-3.2862401 -0.098203,-0.097 0,0 -0.098203,0 0,0.097 0.098203,-0.097 -5e-7,0 z"
id="path26"
style="fill:#00688f" />
<path
d="m 11.057129,9.1982769 -4.8525891,0 0,-0.452906 4.8525891,0 0,0.452906 z"
id="path30"
style="fill:#000000;fill-opacity:1" />
<path
d="m 4.335304,30.288814 -0.1997799,0 0,0.387782 0.1997799,0 0,-0.387782 z"
id="path34"
style="fill:#e6e9e9" />
<path
d="m 20.081632,30.288814 -15.746328,0 0,0.387782 15.746328,0 0,-0.387782 z"
id="path36"
style="fill:#e6e9e9" />
<path
d="m 20.081632,30.676596 0.203154,0 0,-0.387782 -0.203154,0 0,0.387782 z"
id="path38"
style="fill:#e6e9e9" />
<path
d="m 4.335304,16.145325 -0.1997799,0 0,0.381344 0.1997799,0 0,-0.381344 z"
id="path40"
style="fill:#e6e9e9" />
<path
d="m 20.105321,16.145325 -15.770017,0 0,0.381344 15.770017,0 0,-0.381344 z"
id="path42"
style="fill:#e6e9e9" />
<path
d="m 20.105321,16.526669 0.19978,0 0,-0.381344 -0.19978,0 0,0.381344 z"
id="path44"
style="fill:#e6e9e9" />
<path
d="m 4.2337274,30.169282 -0.2031533,0 0,0.387782 0.2031533,0 0,-0.387782 z"
id="path46"
style="fill:#00688f" />
<path
d="m 20.179836,30.169282 -15.9461086,0 0,0.387782 15.9461086,0 0,-0.387782 z"
id="path48"
style="fill:#00688f" />
<path
d="m 20.179836,30.557064 0.19978,0 0,-0.387782 -0.19978,0 0,0.387782 z"
id="path50"
style="fill:#00688f" />
<path
d="m 4.2607895,16.022573 -0.2065267,0 0,0.384492 0.2065267,0 0,-0.384492 z"
id="path52"
style="fill:#00688f" />
<path
d="m 20.230587,16.022573 -15.9697975,0 0,0.384492 15.9697975,0 0,-0.384492 z"
id="path54"
style="fill:#00688f" />
<path
d="m 20.230587,16.407065 0.203227,0 0,-0.384492 -0.203227,0 0,0.384492 z"
id="path56"
style="fill:#00688f" />
<path
d="m 14.179317,27.68114 -1.161497,0 0,-5.312277 1.161497,0 0,5.312277 z"
id="path66"
style="fill:#1f1a17" />
<path
d="m 16.427796,27.68114 -1.16487,0 0,-5.312277 2.546463,0 0.09483,0 0.09483,0.0032 0.101577,0.01295 0.09145,0.01616 0.08463,0.01617 0.08808,0.01617 0.08463,0.02582 0.08126,0.02911 0.07789,0.02582 0.07452,0.03877 0.07444,0.03877 0.07114,0.03877 0.06095,0.04528 0.06432,0.04843 0.06102,0.0485 0.06095,0.05494 0.05075,0.05494 0.05083,0.06138 0.04738,0.0646 0.04401,0.06467 0.04071,0.06782 0.04064,0.07111 0.03381,0.07432 0.02713,0.07754 0.02706,0.07754 0.02706,0.08083 0.01694,0.09042 0.02031,0.08727 0.01357,0.08727 0.0067,0.09371 0.01019,0.09049 0,0.100147 0,0.04199 -0.01019,0.05493 0,0.05494 -0.0067,0.05494 -0.0067,0.06138 -0.01019,0.06467 -0.01694,0.06782 -0.01694,0.06467 -0.01686,0.07104 -0.02376,0.06467 -0.03043,0.07111 -0.02713,0.07111 -0.0338,0.07425 -0.04064,0.07111 -0.04064,0.07111 -0.04746,0.06467 -0.05075,0.06138 -0.0542,0.07111 -0.06095,0.0646 -0.06432,0.06138 -0.06777,0.05494 -0.07451,0.05494 -0.07789,0.05172 -0.08801,0.05172 -0.09145,0.04199 -0.09483,0.03877 -0.10495,0.03233 -0.108324,0.02582 -0.121966,0.02582 -0.118519,0.01938 -0.132012,0.0065 -0.132087,0.0064 -1.334216,0 0,1.916162 1.076863,-2.830644 0.08126,-0.0064 0.07451,-0.0097 0.06769,0 0.05758,-0.01617 0.06095,-0.01295 0.05758,-0.01616 0.0542,-0.01617 0.04063,-0.0226 0.05075,-0.0226 0.03388,-0.02589 0.04063,-0.02904 0.03389,-0.02582 0.03388,-0.02911 0.02706,-0.03555 0.01694,-0.02904 0.02369,-0.03233 0.02369,-0.03233 0.01357,-0.03233 0.01357,-0.04199 0.01349,-0.02904 0.01019,-0.03555 0.01357,-0.03555 0.0034,-0.03555 0.0067,-0.03233 0.0068,-0.0646 0.0034,-0.06145 0,-0.05486 0,-0.0485 0,-0.04521 0,-0.0485 -0.0034,-0.04199 -0.0068,-0.04528 -0.01012,-0.03877 -0.01019,-0.03877 -0.0067,-0.03877 -0.02031,-0.03555 -0.01694,-0.03555 -0.01694,-0.02582 -0.01694,-0.03233 -0.02369,-0.03226 -0.02369,-0.02911 -0.02713,-0.02582 -0.02706,-0.02267 -0.03051,-0.0226 -0.02706,-0.0226 -0.03388,-0.0226 -0.04064,-0.01617 -0.03381,-0.01617 -0.04071,-0.01617 -0.04738,-0.0097 -0.04401,-0.01617 -0.04746,-0.01295 -0.05075,-0.0097 -0.05083,-0.0065 -0.05075,-0.0097 -0.05757,-0.0065 -0.05758,0 -0.06432,-0.0064 -0.0644,0 -0.06769,-0.0032 -0.921087,0 0,1.56715 1.076863,0 -1.076863,2.830644 -8.2e-5,-2.2e-5 z"
id="path68"
style="fill:#1f1a17" />
<path
d="m 7.8943096,19.344364 10.4230374,0 0,-1.069565 -10.4230374,0 0,1.069565 0,0 0,0 z"
id="path70"
style="fill:#000000" />
<path
d="m 6.3027424,20.859869 0,0 0,-0.03555 0,-0.04528 0.00337,-0.03877 0,-0.03877 0.00682,-0.03226 0.00337,-0.04206 0.00675,-0.03555 0.00675,-0.03548 0.010195,-0.03884 0.013569,-0.03548 0.00337,-0.03555 0.013569,-0.03555 0.01012,-0.03555 0.016942,-0.03555 0.013569,-0.03555 0.01012,-0.03555 0.016942,-0.03233 0.016942,-0.03226 0.016942,-0.03233 0.013494,-0.03233 0.020316,-0.03555 0.020316,-0.03226 0.027137,-0.02589 0.016942,-0.03226 0.023689,-0.03233 0.020316,-0.02911 0.023689,-0.02582 0.023689,-0.03555 0.023763,-0.02582 0.027062,-0.02267 0.023689,-0.02582 0.03051,-0.02904 0.027062,-0.02589 0.03051,-0.02904 0.027062,-0.02267 0.027062,-0.01938 0.03051,-0.0226 0.027062,-0.02904 0.037257,-0.01938 0.027137,-0.01617 0.033809,-0.0226 0.03051,-0.01617 0.033884,-0.02267 0.033809,-0.01609 0.03051,-0.01617 0.037257,-0.01617 0.033809,-0.01616 0.037257,-0.01938 0.033884,-0.0097 0.040631,-0.01609 0.03051,-0.0097 0.040631,-0.01295 0.04063,-0.0097 0.037257,-0.01295 0.033809,-0.0097 0.040631,-0.0065 0.037257,-0.0032 0.040631,-0.0064 0.04063,-0.0097 0.040706,0 0.04063,0 0.040631,-0.0064 0.037257,0 0.047377,0 0,-1.069565 -0.074514,0 -0.06432,0.0064 -0.074514,0 -0.060946,0.0065 -0.077888,0.0097 -0.060946,0.0064 -0.067693,0.0097 -0.064395,0.01617 -0.067692,0.01295 -0.067768,0.0097 -0.06432,0.0226 -0.06432,0.01616 -0.060946,0.0226 -0.064394,0.01938 -0.057498,0.02267 -0.061021,0.0226 -0.06432,0.0226 -0.057573,0.03233 -0.057573,0.02582 -0.060946,0.02911 -0.054199,0.03226 -0.060946,0.02911 -0.054124,0.03233 -0.054199,0.03877 -0.054199,0.03226 -0.050751,0.03884 -0.050826,0.03548 -0.050826,0.03877 -0.047377,0.03884 -0.050826,0.04521 -0.050751,0.03877 -0.047452,0.04199 -0.044004,0.0485 -0.04063,0.03877 -0.047378,0.05172 -0.04063,0.04843 -0.040631,0.04199 -0.037257,0.05494 -0.044079,0.05172 -0.030435,0.0485 -0.037257,0.05494 -0.033884,0.04843 -0.033884,0.05493 -0.033809,0.05494 -0.027137,0.05494 -0.030435,0.05494 -0.027137,0.06138 -0.030435,0.05494 -0.023689,0.05816 -0.020316,0.06145 -0.023763,0.05816 -0.027062,0.06138 -0.013569,0.06138 -0.016867,0.06467 -0.016942,0.06138 -0.013569,0.05816 -0.016942,0.06789 -0.01012,0.0646 -0.00682,0.06138 -0.00337,0.06467 -0.00675,0.0646 -0.00682,0.06789 -0.00337,0.0646 0,0.06467 0,0 1.117493,0 0,0 0,0 0,0 0,-2.25e-4 z"
id="path72"
style="fill:#000000" />
<path
d="m 7.9857661,22.30105 -0.047452,0 -0.037257,0 -0.047377,-0.0033 -0.040631,0 -0.040631,-0.0064 -0.037257,-0.0064 -0.047453,-0.0033 -0.04063,-0.0064 -0.040631,-0.01295 -0.037257,-0.0032 -0.040631,-0.01288 -0.040631,-0.0097 -0.040631,-0.0064 -0.040631,-0.01617 -0.040631,-0.0097 -0.033884,-0.01609 -0.044004,-0.01295 -0.040631,-0.01617 -0.030435,-0.01617 -0.033884,-0.01617 -0.033884,-0.01617 -0.04063,-0.01609 -0.033884,-0.02267 -0.037257,-0.01617 -0.030435,-0.0226 -0.033884,-0.0226 -0.030435,-0.01938 -0.033884,-0.0226 -0.03051,-0.0226 -0.033809,-0.02267 -0.027137,-0.01938 -0.033809,-0.02904 -0.023763,-0.0226 -0.030435,-0.02589 -0.020316,-0.02904 -0.023688,-0.01938 -0.03051,-0.03555 -0.020316,-0.01938 -0.03051,-0.02911 -0.023689,-0.03233 -0.020316,-0.02904 -0.016942,-0.02582 -0.023689,-0.02589 -0.016942,-0.03555 -0.023689,-0.03226 -0.016942,-0.02589 -0.020316,-0.02904 -0.013569,-0.03877 -0.013494,-0.03233 -0.013569,-0.02589 -0.013569,-0.03226 -0.01012,-0.03555 -0.016942,-0.03555 -0.00675,-0.03555 -0.013569,-0.03233 -0.00337,-0.03226 -0.013569,-0.03884 -0.00675,-0.03226 -0.00337,-0.03877 -0.00682,-0.03233 0,-0.03877 -0.00337,-0.03877 0,-0.03877 0,-0.03877 -1.117493,0 0,0.06782 0.00337,0.07111 0.00682,0.06467 0.00675,0.06782 0.00337,0.06467 0.010195,0.0646 0.013494,0.06789 0.016942,0.05816 0.010195,0.06782 0.023689,0.05823 0.016942,0.06782 0.023689,0.05816 0.020316,0.06138 0.027137,0.05823 0.027062,0.06138 0.030435,0.05494 0.027137,0.05494 0.030435,0.06138 0.027137,0.05494 0.033809,0.05494 0.033884,0.05494 0.040631,0.04842 0.033884,0.0485 0.040631,0.05494 0.04063,0.04843 0.040631,0.05172 0.044004,0.04199 0.04063,0.04528 0.047453,0.04842 0.044004,0.04206 0.054199,0.04521 0.044004,0.04528 0.047453,0.03548 0.050751,0.03877 0.050826,0.03884 0.050751,0.03877 0.054199,0.03877 0.050826,0.03226 0.057573,0.03877 0.057498,0.03233 0.057573,0.02911 0.050826,0.02582 0.057573,0.03233 0.060946,0.02904 0.057573,0.02589 0.06432,0.02904 0.057573,0.01938 0.060946,0.02267 0.064395,0.0226 0.057498,0.0226 0.061021,0.01617 0.071067,0.0226 0.057573,0.01617 0.067768,0.0097 0.060946,0.01617 0.071066,0.01295 0.067768,0.0097 0.06432,0.0097 0.067693,0.01295 0.067767,0.0064 0.06432,0.0032 0.067768,0 0.071067,0.0065 0.067768,0 0,-1.069566 0,0 -7e-6,-3.44e-4 z"
id="path74"
style="fill:#000000" />
<path
d="m 9.7262874,22.30105 -1.7405213,0 0,1.069566 1.7405213,0 0,-1.069566 0,0 z"
id="path76"
style="fill:#000000" />
<path
d="m 12.340517,25.002433 0,0 0,-0.06789 -0.0067,-0.06467 0,-0.0646 -0.0068,-0.06138 -0.0034,-0.06467 -0.01012,-0.06782 -0.01357,-0.05816 -0.01357,-0.06467 -0.0067,-0.06138 -0.01357,-0.06789 -0.01694,-0.05815 -0.01686,-0.06138 -0.01694,-0.05816 -0.02369,-0.06145 -0.01694,-0.05815 -0.02376,-0.06138 -0.02031,-0.06138 -0.03043,-0.05494 -0.02706,-0.05816 -0.02376,-0.06138 -0.03043,-0.05494 -0.03388,-0.05494 -0.02706,-0.05494 -0.03388,-0.05494 -0.03051,-0.0485 -0.0338,-0.05494 -0.04064,-0.04843 -0.03388,-0.05494 -0.04064,-0.05172 -0.04063,-0.0485 -0.04063,-0.04843 -0.04408,-0.0485 -0.04064,-0.04521 -0.04401,-0.04199 -0.04738,-0.04528 -0.05083,-0.04521 -0.04738,-0.04199 -0.04408,-0.04528 -0.05413,-0.03877 -0.05083,-0.03555 -0.0542,-0.03877 -0.04738,-0.03233 -0.05758,-0.03877 -0.05757,-0.03226 -0.05075,-0.03555 -0.0644,-0.03233 -0.06095,-0.02582 -0.0542,-0.02911 -0.06095,-0.03233 -0.05758,-0.0226 -0.06432,-0.0226 -0.06432,-0.02582 -0.06777,-0.01617 -0.06095,-0.0226 -0.06432,-0.01617 -0.06769,-0.01617 -0.07451,-0.0097 -0.06432,-0.01938 -0.06777,-0.0032 -0.06432,-0.01295 -0.074514,-0.0032 -0.067693,-0.0064 -0.071141,-0.0064 -0.074514,0 0,1.069565 0.040631,0 0.04063,0 0.040631,0.0064 0.040631,0 0.033884,0.0032 0.04063,0.0064 0.033884,0.0097 0.04063,0.0064 0.02706,0.0065 0.04063,0.0097 0.03388,0.01295 0.03051,0.0097 0.04064,0.0097 0.03388,0.01617 0.0338,0.01288 0.02713,0.01617 0.0338,0.01617 0.03726,0.01617 0.02713,0.01617 0.03381,0.01617 0.02713,0.0226 0.03043,0.01617 0.03388,0.0226 0.03051,0.0226 0.02706,0.01938 0.03043,0.0226 0.02713,0.02911 0.03043,0.01938 0.02713,0.02911 0.03043,0.02582 0.02031,0.02904 0.03051,0.02589 0.02031,0.02904 0.03043,0.02589 0.01357,0.02904 0.03388,0.03233 0.02031,0.03233 0.02369,0.02904 0.01694,0.03233 0.02369,0.03233 0.01694,0.03877 0.02369,0.02582 0.01694,0.03877 0.01694,0.03233 0.01694,0.03877 0.01694,0.03233 0.01694,0.03877 0.01686,0.03555 0.01357,0.03555 0.01019,0.03555 0.01012,0.04199 0.01357,0.03877 0.01012,0.03877 0.01357,0.04199 0.0067,0.03555 0.01019,0.03555 0.0034,0.04521 0.0067,0.03555 0.0068,0.04199 0.0034,0.03884 0.0067,0.04842 0,0.03877 0,0.03877 0,0.04206 0,0 1.117492,0 0,0 0,0 0,0 1.79e-4,1.05e-4 z"
id="path78"
style="fill:#000000" />
<path
d="m 9.634906,27.587431 0.067692,0 0.071141,-0.0064 0.067693,-0.0032 0.071141,-0.0065 0.067693,-0.0064 0.060946,-0.0097 0.07114,-0.0065 0.06769,-0.01617 0.06439,-0.01288 0.06769,-0.01295 0.06432,-0.01617 0.06095,-0.01617 0.0644,-0.0226 0.06432,-0.0226 0.06095,-0.02589 0.06432,-0.01609 0.05757,-0.02911 0.06095,-0.02904 0.05758,-0.02589 0.05757,-0.02582 0.05758,-0.02911 0.05083,-0.03877 0.05758,-0.03233 0.05757,-0.03226 0.05075,-0.03233 0.0542,-0.03877 0.05075,-0.03877 0.04746,-0.03877 0.0542,-0.04199 0.04738,-0.03884 0.05083,-0.04199 0.04738,-0.04199 0.04401,-0.0485 0.04064,-0.04199 0.04746,-0.04842 0.03726,-0.04528 0.04063,-0.05172 0.04064,-0.04843 0.04063,-0.0485 0.03388,-0.04843 0.04063,-0.05494 0.02706,-0.05494 0.03726,-0.05172 0.03388,-0.05172 0.02706,-0.05494 0.03052,-0.05494 0.02706,-0.06138 0.03043,-0.05494 0.02031,-0.06137 0.02376,-0.05816 0.02369,-0.06138 0.02369,-0.06145 0.01694,-0.06138 0.01694,-0.0646 0.01694,-0.06145 0.01012,-0.05816 0.01694,-0.0646 0.01357,-0.06789 0.0034,-0.06138 0.0067,-0.06467 0.0034,-0.0646 0.0068,-0.0646 0.0067,-0.06789 0,-0.0646 -1.117492,0 0,0.03877 0,0.04521 -0.0067,0.03555 0,0.03555 -0.0034,0.03555 -0.0068,0.04521 -0.0067,0.03233 -0.0034,0.03877 -0.01357,0.03877 -0.0034,0.03555 -0.01357,0.03555 -0.01012,0.03877 -0.01357,0.03233 -0.01694,0.03226 -0.01012,0.03877 -0.01357,0.03233 -0.01357,0.03233 -0.02031,0.03555 -0.01686,0.03226 -0.01694,0.02911 -0.02031,0.03555 -0.02031,0.02904 -0.02031,0.03233 -0.01694,0.03233 -0.02713,0.03233 -0.02031,0.02904 -0.02369,0.02582 -0.02031,0.02589 -0.02369,0.03555 -0.03051,0.01938 -0.02031,0.02582 -0.03043,0.02911 -0.02713,0.02904 -0.03044,0.0226 -0.02713,0.02589 -0.03043,0.0226 -0.02713,0.0226 -0.03043,0.01938 -0.03726,0.0226 -0.02369,0.02267 -0.03388,0.0226 -0.03043,0.01295 -0.03726,0.01938 -0.03051,0.0226 -0.03388,0.01288 -0.03726,0.01617 -0.0338,0.01938 -0.03726,0.0097 -0.04064,0.01938 -0.03051,0.0097 -0.03381,0.01295 -0.04071,0.0097 -0.0338,0.01616 -0.03388,0.0097 -0.040631,0.0064 -0.04063,0.0097 -0.044004,0.0064 -0.03051,0.0065 -0.044004,0.0032 -0.037257,0.0064 -0.037257,0 -0.040631,0.0064 -0.047377,0 -0.040631,0 0,1.066347 0,0 -1.22e-4,2.83e-4 z"
id="path80"
style="fill:#000000" />
<path
d="m 6.4517714,27.587431 3.1831346,0 0,-1.066347 -3.1831346,0 0,1.066347 0,0 0,0 z"
id="path82"
style="fill:#000000" />
<path
d="m 6.5058956,28.327443 0,-2.578632 -1.6287496,1.237598 1.6287496,1.341034 z"
id="path84"
style="fill:#000000" />
<path
d="m 18.266596,17.389432 0,2.57856 1.62875,-1.244035 -1.62875,-1.334525 z"
id="path86"
style="fill:#000000" />
<path
d="m 13.935458,27.490504 -1.158123,0 0,-5.309058 1.158123,0 0,5.309058 z"
id="path88"
style="fill:#ffffff" />
<path
d="m 16.177191,27.490504 -1.161497,0 0,-5.309058 2.549911,0 0.09483,0 0.101577,0.0065 0.09138,0.0097 0.0982,0.0097 0.08471,0.0226 0.08801,0.01617 0.08471,0.02904 0.08126,0.02589 0.07789,0.02904 0.07444,0.03877 0.07114,0.03233 0.07451,0.04199 0.06095,0.04528 0.06432,0.04843 0.0644,0.0485 0.05413,0.05494 0.0542,0.05494 0.05083,0.06138 0.04401,0.0646 0.04738,0.06145 0.04064,0.07104 0.04063,0.07111 0.03388,0.07754 0.02706,0.07754 0.03051,0.07432 0.02369,0.08405 0.02031,0.0872 0.01694,0.08083 0.01357,0.09371 0.01012,0.09371 0.0068,0.09371 0,0.09371 0,0.04842 -0.0068,0.05493 0,0.0485 -0.01012,0.05816 -0.0068,0.06138 -0.01012,0.06789 -0.01694,0.05816 -0.01694,0.07111 -0.02031,0.0646 -0.02031,0.07432 -0.03043,0.07111 -0.02713,0.07111 -0.03381,0.07103 -0.0407,0.07111 -0.04063,0.07111 -0.04738,0.06138 -0.05083,0.07111 -0.05075,0.06467 -0.06432,0.0646 -0.06102,0.06138 -0.07107,0.06145 -0.07451,0.05487 -0.07789,0.04528 -0.09145,0.05172 -0.08801,0.04521 -0.0982,0.03877 -0.101577,0.03233 -0.108398,0.02582 -0.121892,0.0226 -0.118518,0.01617 -0.132088,0.0097 -0.132012,0.0064 -1.34441,0 0,1.912943 1.087058,-2.833863 0.07781,0 0.07451,-0.0032 0.07114,-0.01295 0.06095,-0.0097 0.05757,-0.01295 0.0542,-0.01617 0.05413,-0.01938 0.04746,-0.01938 0.04738,-0.02582 0.03726,-0.02589 0.03725,-0.0226 0.03051,-0.02904 0.03719,-0.03233 0.02376,-0.02589 0.02369,-0.03548 0.02031,-0.03233 0.02369,-0.03233 0.01694,-0.03877 0.01019,-0.03233 0.01349,-0.03226 0.01019,-0.03877 0.01349,-0.03233 0.0034,-0.03555 0.0067,-0.02911 0.0067,-0.06782 0.0034,-0.05816 0,-0.05494 0,-0.05172 0,-0.0485 0,-0.04521 -0.0034,-0.04199 -0.0067,-0.04528 -0.01019,-0.03555 -0.0067,-0.03877 -0.01694,-0.03877 -0.01349,-0.03877 -0.01694,-0.03226 -0.01694,-0.03233 -0.01694,-0.03555 -0.02369,-0.02582 -0.02031,-0.02911 -0.03051,-0.02582 -0.02369,-0.02267 -0.03388,-0.0226 -0.02706,-0.01938 -0.03388,-0.0226 -0.04063,-0.01617 -0.03388,-0.01617 -0.05075,-0.01617 -0.04062,-0.01938 -0.04408,-0.0097 -0.04401,-0.0097 -0.05075,-0.01288 -0.05083,-0.0033 -0.0542,-0.01288 -0.05413,-0.0032 -0.0644,-0.0065 -0.06095,0 -0.06432,0 -0.06432,-0.0064 -0.931281,0 0,1.560713 1.087058,0 -1.087058,2.833863 0,0 -3.3e-5,-8.8e-5 z"
id="path90"
style="fill:#ffffff" />
<path
d="m 7.6470774,19.153728 10.4298596,0 0,-1.063127 -10.4298596,0 0,1.063127 0,0 z"
id="path92"
style="fill:#ffffff" />
<path
d="m 6.0589584,20.67567 0,0 0,-0.04528 0,-0.03877 0.00337,-0.03548 0,-0.03884 0.01012,-0.03877 0.00682,-0.03877 0.00337,-0.03226 0.00675,-0.03877 0.010195,-0.03884 0.013494,-0.03877 0.00345,-0.03226 0.013494,-0.03877 0.010195,-0.03233 0.013494,-0.03877 0.016942,-0.03233 0.010195,-0.03233 0.016942,-0.03226 0.016942,-0.03555 0.016867,-0.03555 0.016942,-0.02911 0.016942,-0.03226 0.023689,-0.03233 0.016942,-0.03233 0.023689,-0.02904 0.023763,-0.03233 0.023688,-0.02911 0.020316,-0.03226 0.023689,-0.02589 0.020316,-0.02904 0.03051,-0.02589 0.023688,-0.02904 0.030435,-0.02589 0.027137,-0.0226 0.027062,-0.02582 0.03051,-0.0226 0.027062,-0.02911 0.03051,-0.01938 0.027063,-0.0226 0.033884,-0.0226 0.030435,-0.01617 0.033884,-0.0226 0.03051,-0.02267 0.033809,-0.01617 0.033884,-0.01609 0.033884,-0.02267 0.033809,-0.0097 0.033884,-0.01616 0.033884,-0.01617 0.037257,-0.01295 0.033884,-0.01609 0.040631,-0.0097 0.037182,-0.0097 0.040706,-0.01295 0.030435,-0.0097 0.040631,-0.01287 0.037257,-0.0032 0.04063,-0.0065 0.040631,-0.0064 0.04063,-0.0097 0.040631,0 0.04063,-0.0064 0.040631,0 0.037257,0 0.040631,-0.0032 0,-1.063128 -0.060946,0 -0.074439,0 -0.071141,0.0032 -0.067768,0.0065 -0.06432,0.0064 -0.067693,0.0097 -0.067768,0.0097 -0.071066,0.01295 -0.064395,0.01617 -0.06432,0.0097 -0.06432,0.0226 -0.06432,0.01616 -0.064395,0.01617 -0.060946,0.0226 -0.057573,0.0226 -0.060946,0.02589 -0.06432,0.0226 -0.057573,0.02911 -0.057573,0.02582 -0.06432,0.03233 -0.054199,0.03226 -0.057573,0.02911 -0.057573,0.03233 -0.054199,0.03226 -0.050751,0.03877 -0.050826,0.03884 -0.054124,0.03226 -0.047453,0.04528 -0.054199,0.03877 -0.044004,0.03555 -0.047377,0.04521 -0.050826,0.04521 -0.04063,0.04206 -0.044004,0.04521 -0.050826,0.0485 -0.037257,0.04843 -0.04063,0.04528 -0.037257,0.04842 -0.040631,0.05494 -0.033809,0.0485 -0.037257,0.04843 -0.033884,0.05494 -0.037257,0.05494 -0.030435,0.05493 -0.03051,0.05494 -0.027062,0.05494 -0.027137,0.05494 -0.030435,0.06138 -0.023763,0.06138 -0.020316,0.05172 -0.023689,0.06789 -0.023689,0.05494 -0.016942,0.0646 -0.016942,0.06138 -0.016942,0.06467 -0.013494,0.06138 -0.016942,0.06467 -0.010195,0.06138 -0.01012,0.0646 -0.00675,0.06467 -0.00682,0.06782 0,0.06467 -0.00675,0.0646 0,0.06789 0,0 1.117493,0 0,0 0,0 0,0 1.4e-5,-2.72e-4 z"
id="path94"
style="fill:#ffffff" />
<path
d="m 7.7452806,22.116852 -0.047377,0 -0.037257,0 -0.047377,-0.0065 -0.040631,0 -0.04063,-0.0064 -0.044079,-0.0032 -0.040631,-0.0064 -0.04063,-0.0065 -0.040631,-0.0097 -0.040631,-0.0065 -0.037257,-0.0097 -0.040631,-0.01295 -0.044004,-0.0097 -0.04063,-0.0097 -0.040631,-0.01938 -0.03051,-0.0097 -0.040631,-0.0097 -0.04063,-0.01616 -0.033884,-0.01617 -0.033809,-0.01938 -0.033884,-0.01617 -0.044004,-0.01609 -0.03051,-0.02267 -0.033884,-0.01938 -0.033809,-0.01617 -0.03051,-0.0226 -0.037257,-0.0226 -0.030435,-0.0226 -0.03051,-0.0226 -0.027062,-0.01938 -0.033884,-0.02268 -0.03051,-0.02904 -0.027062,-0.02589 -0.033884,-0.0226 -0.016942,-0.02582 -0.030435,-0.0226 -0.023689,-0.03233 -0.020315,-0.02911 -0.033884,-0.02582 -0.020316,-0.02911 -0.023689,-0.02582 -0.020316,-0.02904 -0.020316,-0.03233 -0.013569,-0.02589 -0.016942,-0.03226 -0.023689,-0.02911 -0.016942,-0.03233 -0.016942,-0.03226 -0.013494,-0.03233 -0.016942,-0.03555 -0.010195,-0.03233 -0.013569,-0.02582 -0.01012,-0.03877 -0.010195,-0.03233 -0.013494,-0.03233 -0.00337,-0.03548 -0.013569,-0.03877 -0.00337,-0.03233 -0.00682,-0.03877 -0.01012,-0.03555 0,-0.03555 -0.00337,-0.03555 0,-0.03877 0,-0.03877 -1.117493,0 0,0.0646 0.00675,0.06467 0,0.07432 0.013569,0.0646 0,0.06467 0.016942,0.06782 0.01012,0.05816 0.013569,0.06789 0.013569,0.0646 0.023688,0.06145 0.016942,0.0646 0.016942,0.06138 0.030435,0.05823 0.023689,0.06138 0.027137,0.05494 0.030435,0.05816 0.020316,0.05494 0.033884,0.06138 0.03051,0.05494 0.04063,0.0485 0.027062,0.05487 0.040631,0.05494 0.033884,0.0485 0.04063,0.05172 0.040631,0.04843 0.04063,0.0485 0.044004,0.04843 0.040631,0.04528 0.047453,0.04843 0.044004,0.04528 0.047377,0.04199 0.050826,0.04528 0.044004,0.03226 0.054199,0.04528 0.050751,0.03877 0.050826,0.03555 0.050826,0.03555 0.054124,0.03548 0.057573,0.03555 0.057573,0.03233 0.054199,0.03233 0.054199,0.02582 0.060946,0.03555 0.057573,0.02582 0.057573,0.02911 0.057573,0.02582 0.06432,0.02268 0.060946,0.0226 0.06432,0.01938 0.057573,0.0226 0.067768,0.01617 0.06432,0.01617 0.060946,0.0226 0.06432,0.01295 0.064395,0.01609 0.06432,0.0097 0.071066,0.0097 0.064395,0.01295 0.067693,0.0032 0.067768,0.0065 0.06432,0.0064 0.067693,0.0064 0.071141,0.0033 0.067693,0 0,-1.066347 0,0 -2.3e-5,-1.03e-4 z"
id="path96"
style="fill:#ffffff" />
<path
d="m 9.4858769,22.116852 -1.7405963,0 0,1.066347 1.7405963,0 0,-1.066347 z"
id="path98"
style="fill:#ffffff" />
<path
d="m 12.100108,24.815016 0,0 0,-0.06467 -0.0067,-0.06789 0,-0.0646 -0.0034,-0.0646 -0.01686,-0.06145 0,-0.0646 -0.01357,-0.06789 -0.01019,-0.05815 -0.01694,-0.06138 -0.0067,-0.06789 -0.01694,-0.05815 -0.02031,-0.05816 -0.01349,-0.06138 -0.02713,-0.06467 -0.02031,-0.05494 -0.01694,-0.06138 -0.02369,-0.05816 -0.02706,-0.06138 -0.02376,-0.05494 -0.02706,-0.06138 -0.03388,-0.05494 -0.02369,-0.05494 -0.03388,-0.05494 -0.0338,-0.05172 -0.03388,-0.05494 -0.03051,-0.05494 -0.04064,-0.04521 -0.04062,-0.05494 -0.03381,-0.0485 -0.04063,-0.04843 -0.04071,-0.05172 -0.03718,-0.0485 -0.04746,-0.04199 -0.04738,-0.04521 -0.04408,-0.04528 -0.04738,-0.04843 -0.05075,-0.03877 -0.04745,-0.04206 -0.05075,-0.03877 -0.05083,-0.03877 -0.05083,-0.03877 -0.05075,-0.03877 -0.05758,-0.03233 -0.05758,-0.03226 -0.05757,-0.03233 -0.05758,-0.03233 -0.05758,-0.03555 -0.06095,-0.02582 -0.05758,-0.02911 -0.05758,-0.01938 -0.06432,-0.02904 -0.06432,-0.0226 -0.06777,-0.01617 -0.06769,-0.0226 -0.05757,-0.01617 -0.07114,-0.01617 -0.067694,-0.01617 -0.067768,-0.0097 -0.067692,-0.01288 -0.071141,-0.0032 -0.067693,-0.01295 -0.067768,0 -0.071066,-0.0032 -0.074514,0 0,1.066347 0.040631,0 0.04063,0 0.040631,0.0064 0.033884,0 0.040631,0.0064 0.04063,0.0032 0.033884,0.0065 0.030435,0.0097 0.037257,0.0065 0.040631,0.01288 0.033884,0.0097 0.033884,0.0097 0.037257,0.01295 0.030435,0.0097 0.03726,0.01609 0.02706,0.01295 0.03388,0.01617 0.03726,0.01938 0.02706,0.01938 0.03388,0.01617 0.03051,0.01616 0.02369,0.01938 0.03726,0.0226 0.03043,0.0226 0.02713,0.0226 0.03043,0.02267 0.02713,0.01938 0.03043,0.02904 0.02713,0.0226 0.03043,0.02589 0.01694,0.02904 0.03388,0.02589 0.02369,0.02904 0.02031,0.03233 0.02368,0.02582 0.03051,0.02911 0.02031,0.03233 0.02369,0.03226 0.01694,0.03233 0.02369,0.03233 0.01694,0.03555 0.02031,0.02904 0.02031,0.04199 0.01694,0.03233 0.01694,0.03877 0.01686,0.03233 0.01357,0.03233 0.01694,0.03877 0.01694,0.03877 0.0067,0.03877 0.01357,0.03555 0.01357,0.03877 0.01012,0.03555 0.01357,0.04199 0.01012,0.03877 0.0068,0.03877 0.0034,0.04199 0.0067,0.03877 0.0068,0.03877 0,0.04528 0.01012,0.03555 0,0.04521 0,0.03877 0,0.04206 0,0 1.117494,0 0,0 0,0 0,0 5.8e-5,1.93e-4 z"
id="path100"
style="fill:#ffffff" />
<path
d="m 9.3944204,27.403233 0.071141,0 0.067692,-0.0064 0.067768,-0.0064 0.071066,-0.0032 0.067768,-0.0065 0.060946,-0.01288 0.071141,-0.0097 0.067693,-0.0097 0.060946,-0.01295 0.06432,-0.01938 0.07114,-0.01295 0.06095,-0.02582 0.06432,-0.01295 0.06095,-0.0226 0.06439,-0.01938 0.05758,-0.02911 0.06095,-0.02582 0.06432,-0.0226 0.05757,-0.02911 0.05758,-0.02904 0.05757,-0.02911 0.05075,-0.03233 0.0542,-0.03226 0.06095,-0.03877 0.05083,-0.03555 0.0542,-0.03233 0.05075,-0.04199 0.05083,-0.03233 0.05075,-0.0485 0.04746,-0.03555 0.04401,-0.04521 0.0542,-0.04199 0.04063,-0.04528 0.04401,-0.04521 0.04064,-0.04199 0.04401,-0.0485 0.04063,-0.04843 0.04071,-0.05172 0.04064,-0.05172 0.0338,-0.04521 0.03388,-0.05494 0.03388,-0.05494 0.03043,-0.0485 0.04063,-0.05816 0.02713,-0.05172 0.03043,-0.06138 0.02713,-0.05816 0.02706,-0.05493 0.02369,-0.06138 0.02369,-0.05494 0.02376,-0.06138 0.02369,-0.06145 0.01694,-0.0646 0.01694,-0.05816 0.01349,-0.06138 0.01357,-0.05822 0.01694,-0.06782 0.0067,-0.06467 0.0068,-0.06782 0.01012,-0.06467 0.01019,-0.05816 0,-0.07432 0.0067,-0.05816 0,-0.06782 -1.117494,0 0,0.03877 0,0.03877 -0.01012,0.03877 0,0.03877 0,0.03555 -0.0068,0.04199 -0.0067,0.03877 -0.0034,0.03555 -0.01357,0.03555 -0.0034,0.03555 -0.01357,0.03555 -0.01012,0.03548 -0.01357,0.03884 -0.01694,0.03548 -0.01012,0.03555 -0.01694,0.03555 -0.01357,0.03233 -0.01694,0.02904 -0.01694,0.03555 -0.01694,0.03233 -0.01686,0.03233 -0.02376,0.03555 -0.02031,0.02582 -0.01694,0.02911 -0.02369,0.03226 -0.02369,0.02911 -0.02369,0.02904 -0.02369,0.02911 -0.02031,0.0226 -0.03051,0.03233 -0.02369,0.02582 -0.02713,0.02911 -0.02706,0.0226 -0.03043,0.02582 -0.02376,0.02267 -0.0338,0.0226 -0.02713,0.02582 -0.03043,0.01938 -0.03388,0.02589 -0.02706,0.01938 -0.03726,0.01617 -0.02713,0.01938 -0.03381,0.01609 -0.03388,0.01938 -0.03388,0.02267 -0.03726,0.01617 -0.0338,0.01287 -0.03388,0.01617 -0.040631,0.01295 -0.033884,0.01288 -0.033884,0.01617 -0.040631,0.01295 -0.037257,0.0032 -0.040631,0.01295 -0.030435,0.0097 -0.040631,0.0033 -0.040631,0.0097 -0.04063,0.0097 -0.037257,0 -0.037257,0.0097 -0.044079,0 -0.033809,0.0064 -0.047453,0 -0.040631,0 0,1.069566 0,0 -6e-6,-6e-6 z"
id="path102"
style="fill:#ffffff" />
<path
d="m 6.2079125,27.403233 3.1865079,0 0,-1.069566 -3.1865079,0 0,1.069566 0,0 0,0 z"
id="path104"
style="fill:#ffffff" />
<path
d="m 6.2654851,28.143245 0,-2.581851 -1.6254511,1.237598 1.6254511,1.344253 0,0 z"
id="path106"
style="fill:#ffffff" />
<path
d="m 6.2654851,28.143245 0,-2.581851 -1.6254511,1.237598 1.6254511,1.344253"
id="path108"
style="fill:none;stroke:#ffffff;stroke-width:0.01464574" />
<path
d="m 18.026111,17.202014 0,2.575342 1.625452,-1.237598 -1.625452,-1.337744 z"
id="path110"
style="fill:#ffffff" />
<path
d="m 18.026111,17.202014 0,2.575342 1.625452,-1.237598 -1.625452,-1.337744"
id="path112"
style="fill:none;stroke:#ffffff;stroke-width:0.01464574" />
<path
d="m 20.28644,32.272861 2.904378,-2.126183 0,-26.4871311 -2.904378,2.122965 0,26.4903491 z"
id="path114"
style="fill:#6e8296;fill-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 31 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 202 KiB

@ -0,0 +1,572 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="59.253815"
id="Andysvg"
inkscape:version="0.48.4 r9939"
sodipodi:docname="vmware_guest.svg"
sodipodi:version="0.32"
version="1.0"
width="65.414536"
x="0.00000000"
y="0.00000000"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata3">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title>Etiquette Icons</dc:title>
<dc:description />
<dc:subject>
<rdf:Bag>
<rdf:li>hash</rdf:li>
<rdf:li />
<rdf:li>hardware</rdf:li>
<rdf:li>computer</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:publisher>
<cc:Agent
rdf:about="http://www.openclipart.org">
<dc:title>Andy Fitzsimon</dc:title>
</cc:Agent>
</dc:publisher>
<dc:creator>
<cc:Agent>
<dc:title>Andy Fitzsimon</dc:title>
</cc:Agent>
</dc:creator>
<dc:rights>
<cc:Agent>
<dc:title>Andy Fitzsimon</dc:title>
</cc:Agent>
</dc:rights>
<dc:date />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://web.resource.org/cc/PublicDomain" />
<dc:language>en</dc:language>
</cc:Work>
<cc:License
rdf:about="http://web.resource.org/cc/PublicDomain">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs3">
<linearGradient
id="linearGradient1806">
<stop
id="stop1807"
offset="0.0000000"
style="stop-color:#000000;stop-opacity:0.35051546;" />
<stop
id="stop3276"
offset="0.64999998"
style="stop-color:#000000;stop-opacity:0.13402061;" />
<stop
id="stop1808"
offset="1.0000000"
style="stop-color:#000000;stop-opacity:0.0000000;" />
</linearGradient>
<radialGradient
cx="42.007256"
cy="39.007645"
fx="42.280807"
fy="39.410465"
id="radialGradient1977"
r="11.574221"
xlink:href="#linearGradient1806"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient893">
<stop
id="stop895"
offset="0"
style="stop-color:#000;stop-opacity:1;" />
<stop
id="stop896"
offset="1"
style="stop-color:#fff;stop-opacity:1;" />
</linearGradient>
<linearGradient
id="linearGradient1317">
<stop
id="stop1318"
offset="0.00000000"
style="stop-color:#000000;stop-opacity:0.52892560;" />
<stop
id="stop1320"
offset="0.50000000"
style="stop-color:#000000;stop-opacity:0.17355372;" />
<stop
id="stop1319"
offset="1.0000000"
style="stop-color:#000000;stop-opacity:0.00000000;" />
</linearGradient>
<linearGradient
id="linearGradient1133">
<stop
id="stop1134"
offset="0.00000000"
style="stop-color:#8bb7df;stop-opacity:1.0000000;" />
<stop
id="stop1136"
offset="0.76209301"
style="stop-color:#2a6092;stop-opacity:1.0000000;" />
<stop
id="stop1135"
offset="1.0000000"
style="stop-color:#375e82;stop-opacity:1.0000000;" />
</linearGradient>
<linearGradient
id="linearGradient1098">
<stop
id="stop1099"
offset="0.00000000"
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
<stop
id="stop1101"
offset="0.50000000"
style="stop-color:#ffffff;stop-opacity:0.22314049;" />
<stop
id="stop1102"
offset="0.59930235"
style="stop-color:#ffffff;stop-opacity:0.00000000;" />
<stop
id="stop1100"
offset="1.0000000"
style="stop-color:#ffffff;stop-opacity:0.60330576;" />
</linearGradient>
<linearGradient
id="linearGradient902">
<stop
id="stop903"
offset="0.00000000"
style="stop-color:#000000;stop-opacity:0.00000000;" />
<stop
id="stop904"
offset="1.0000000"
style="stop-color:#000000;stop-opacity:0.22000000;" />
</linearGradient>
<linearGradient
id="linearGradient892">
<stop
id="stop893"
offset="0.00000000"
style="stop-color:#ffffff;stop-opacity:0.00000000;" />
<stop
id="stop894"
offset="1"
style="stop-color:#fff;stop-opacity:1;" />
</linearGradient>
<linearGradient
id="linearGradient888">
<stop
id="stop889"
offset="0.0000000"
style="stop-color:#626262;stop-opacity:1.0000000;" />
<stop
id="stop890"
offset="1"
style="stop-color:#fff;stop-opacity:1;" />
</linearGradient>
<linearGradient
id="linearGradient891"
x1="92.437965"
x2="27.674332"
xlink:href="#linearGradient888"
y1="-3.9104078"
y2="91.076988"
gradientTransform="matrix(0.8184166,0,0,0.530237,-9.8827678,-14.589608)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient901"
xlink:href="#linearGradient1806"
gradientTransform="matrix(0.8517959,0,0,0.5754549,70.875335,-17.351492)"
x1="9.4921856"
y1="22.862282"
x2="41.719688"
y2="22.862282"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient905"
x1="-77.726181"
x2="95.64444"
xlink:href="#linearGradient888"
y1="208.43991"
y2="11.699047"
gradientTransform="matrix(0.7314635,0,0,0.5932693,-9.8827694,-14.589616)"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="60.004654"
cy="56.485935"
fx="72.10788"
fy="39.288475"
id="radialGradient1132"
r="68.589226"
xlink:href="#linearGradient1133"
gradientTransform="matrix(0.8184166,0,0,0.530237,-9.8827678,-14.589608)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1138"
x1="-249.72067"
x2="-268.25406"
xlink:href="#linearGradient1806"
y1="375.922"
y2="75.912529"
gradientTransform="scale(1.087146,0.91984)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1140"
x1="45.685757"
x2="41.96706"
xlink:href="#linearGradient888"
y1="110.4447"
y2="232.24953"
gradientTransform="matrix(1.2743811,0,0,0.3405213,-9.8827694,-14.589616)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1141"
x1="0"
x2="0.92957747"
xlink:href="#linearGradient888"
y1="3.3012049"
y2="-0.45783132" />
<linearGradient
id="linearGradient1144"
x1="31.449743"
x2="31.617281"
xlink:href="#linearGradient892"
y1="203.49899"
y2="251.21892"
gradientTransform="matrix(1.4044089,0,0,0.3089952,-9.8827694,-14.589616)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1146"
x1="39.810947"
x2="17.87653"
xlink:href="#linearGradient892"
y1="90.197021"
y2="113.71949"
gradientTransform="matrix(0.8811179,0,0,0.4925045,-9.8827694,-14.589616)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1148"
x1="39.690613"
x2="70.224304"
xlink:href="#linearGradient892"
y1="49.507656"
y2="20.481863"
gradientTransform="scale(1.329144,0.752364)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1150"
x1="35.190361"
x2="8.3460579"
xlink:href="#linearGradient892"
y1="76.277557"
y2="105.42543"
gradientTransform="scale(1.328386,0.752793)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1156"
x1="25.220816"
x2="25.220816"
xlink:href="#linearGradient888"
y1="178.48862"
y2="234.26866"
gradientTransform="matrix(1.6156202,0,0,0.2685999,-9.8827678,-14.589608)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1157"
x1="51.46093"
x2="-16.224497"
xlink:href="#linearGradient888"
y1="269.85831"
y2="176.28694"
gradientTransform="matrix(1.6156202,0,0,0.2685999,-9.8827678,-14.589608)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1166"
x1="111.49758"
x2="107.04918"
xlink:href="#linearGradient1317"
y1="131.25249"
y2="148.78619"
gradientTransform="matrix(0.562951,0,0,0.378005,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1167"
x1="141.60217"
x2="88.447014"
xlink:href="#linearGradient888"
y1="228.39311"
y2="133.5471"
gradientTransform="matrix(0.544555,0,0,0.390775,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1169"
x1="146.69923"
x2="74.533691"
xlink:href="#linearGradient893"
y1="224.57898"
y2="81.4776"
gradientTransform="matrix(0.546024,0,0,0.389723,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<linearGradient
gradientTransform="scale(0.998371,1.001632)"
id="linearGradient1170"
x1="0.47284532"
x2="0.48655096"
xlink:href="#linearGradient902"
y1="-0.016295359"
y2="1.8378206" />
<linearGradient
id="linearGradient1171"
x1="101.10657"
x2="95.100159"
xlink:href="#linearGradient902"
y1="177.77768"
y2="173.03152"
gradientTransform="matrix(0.62565,0,0,0.340123,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="0.47887325"
cy="0.53333336"
fx="0.47535211"
fy="0.26666668"
id="radialGradient1315"
r="0.41197181"
xlink:href="#linearGradient1317" />
<radialGradient
cx="0.5"
cy="0.50000006"
fx="0.50352114"
fy="0.18269235"
id="radialGradient1316"
r="0.34964636"
xlink:href="#linearGradient1317" />
<linearGradient
id="linearGradient1404"
x1="88.755692"
x2="88.996956"
xlink:href="#linearGradient892"
y1="169.09755"
y2="182.99155"
gradientTransform="matrix(0.629979,0,0,0.337786,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<linearGradient
gradientTransform="scale(0.997825,1.00218)"
id="linearGradient1505"
x1="0.47157744"
x2="0.48548824"
xlink:href="#linearGradient902"
y1="-0.02485317"
y2="1.8570156" />
<linearGradient
gradientTransform="scale(0.995847,1.00417)"
id="linearGradient1506"
x1="0.4704251"
x2="0.48481107"
xlink:href="#linearGradient902"
y1="-0.04365262"
y2="1.9025002" />
<linearGradient
gradientTransform="scale(0.997153,1.002855)"
id="linearGradient2740"
x1="0.47041038"
x2="0.48453596"
xlink:href="#linearGradient902"
y1="-0.033741195"
y2="1.8771822" />
<linearGradient
id="linearGradient4283"
x1="-0.77314812"
x2="0.99074072"
xlink:href="#linearGradient893"
y1="2.0837989"
y2="-0.033519555" />
<linearGradient
id="linearGradient4284"
x1="-2.3960868e-17"
x2="0.92957747"
xlink:href="#linearGradient893"
y1="3.3012049"
y2="-0.45783132" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1806"
id="linearGradient1948"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.087146,0.91984)"
x1="-249.72067"
y1="375.922"
x2="-268.25406"
y2="75.912529" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1806"
id="linearGradient1950"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.087146,0.91984)"
x1="-249.72067"
y1="375.922"
x2="-268.25406"
y2="75.912529" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1806"
id="linearGradient1952"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.087146,0.91984)"
x1="-249.72067"
y1="375.922"
x2="-268.25406"
y2="75.912529" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient892"
id="linearGradient2625"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.329144,0.752364)"
x1="39.690613"
y1="49.507656"
x2="70.224304"
y2="20.481863" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient892"
id="linearGradient2627"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.328386,0.752793)"
x1="35.190361"
y1="76.277557"
x2="8.3460579"
y2="105.42543" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient888"
id="linearGradient2633"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.3870648,0,0,0.2694829,71.57581,-24.087318)"
x1="92.437965"
y1="-3.9104078"
x2="27.674332"
y2="91.076988" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient892"
id="linearGradient2635"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.8821916,0,0,0.491702,-8.9069314,-15.277305)"
x1="39.690613"
y1="49.507656"
x2="70.224304"
y2="20.481863" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient892"
id="linearGradient2637"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.8816883,0,0,0.4919824,-10.701684,-14.28309)"
x1="35.190361"
y1="76.277557"
x2="8.3460579"
y2="105.42543" />
</defs>
<sodipodi:namedview
bordercolor="#666666"
borderopacity="1.0"
id="base"
inkscape:cx="45.393129"
inkscape:cy="46.726833"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:window-height="975"
inkscape:window-width="1400"
inkscape:window-x="5"
inkscape:window-y="49"
inkscape:zoom="5.6568542"
pagecolor="#ffffff"
showborder="true"
inkscape:current-layer="Andysvg"
showgrid="false"
inkscape:window-maximized="0" />
<rect
height="5.4088969"
id="rect1155"
style="fill:url(#linearGradient1156);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient1157);stroke-width:0.95344429pt"
width="38.405891"
x="12.350429"
y="36.575089" />
<path
d="M 0.19287398,54.885213 C -0.67386281,56.46268 1.5579198,59.253939 3.3933636,59.253939 L 62.069027,59.253939 C 63.628857,59.253939 65.976201,57.281205 65.269522,55.925378 L 58.655165,43.235277 C 58.145696,42.257819 57.005954,41.779036 55.881408,41.779036 L 8.9408812,41.779036 C 8.0135624,41.779036 7.0317541,42.438291 6.5938539,43.235277 L 0.19287398,54.885213 z "
id="path1139"
sodipodi:nodetypes="czzzzzzzz"
style="fill:url(#linearGradient1140);fill-opacity:1;fill-rule:evenodd;stroke-width:1.44734821pt" />
<rect
height="39.110481"
id="rect1137"
rx="3.6272225"
ry="3.536587"
style="fill:url(#linearGradient905);fill-opacity:1;fill-rule:evenodd;stroke-width:1.62826681"
width="48.220726"
x="7.4732022"
y="-0.010164791" />
<rect
height="24.74659"
id="rect1131"
style="fill:url(#radialGradient1132);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient891);stroke-width:0.96503658pt"
width="38.813015"
x="12.390426"
y="6.027596" />
<path
d="M 8.5906358,19.782157 L 8.3772707,34.032521 C 8.3432557,36.304242 9.6712558,37.75887 12.004493,37.777143 L 38.568566,37.985175 L 41.128957,32.160207 L 11.471076,31.952177 L 11.257713,19.678141 L 8.5906358,19.782157 z "
id="path1145"
sodipodi:nodetypes="czzccccc"
style="fill:url(#linearGradient1146);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 2.7205883,54.675124 C 2.1113822,55.866786 2.9089235,57.975349 4.9701318,57.975349 L 60.179981,57.975349 C 61.276346,57.975349 62.926231,56.48511 62.429524,55.460899 L 57.78047,45.874547 C 57.422369,45.136152 56.621274,44.774474 55.830865,44.774474 L 8.8693353,44.774468 C 8.2175462,44.774468 7.5274604,45.272486 7.2196723,45.874547 L 2.7205883,54.675124 z "
id="path1143"
sodipodi:nodetypes="czzzzzzzz"
style="fill:url(#linearGradient1144);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 19.010905,6.5904681 L 42.426675,6.2948726 C 46.041292,6.2492425 50.532134,9.8297185 50.532134,13.389152 L 50.532134,24.030571 L 18.710703,23.734975 L 19.010905,6.5904681 z "
id="path1147"
sodipodi:nodetypes="czzccc"
style="fill:url(#linearGradient2635);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 41.29338,29.915511 L 20.310226,29.977799 C 17.071125,29.987414 13.079277,26.740463 13.111035,23.55121 L 13.205982,14.016504 L 41.715336,14.556637 L 41.29338,29.915511 z "
id="path1149"
sodipodi:nodetypes="czzccc"
style="fill:url(#linearGradient2637);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<g
id="g188"
transform="matrix(0.56943524,0,0,-0.56943524,30.73118,26.156453)"
style="fill:#4d4d4d">
<path
style="fill:#4d4d4d"
inkscape:connector-curvature="0"
id="path190"
d="m -21.716,23.2 c -0.708,1.552 -2.458,2.255 -4.092,1.529 -1.636,-0.727 -2.238,-2.541 -1.499,-4.094 l 6.861,-14.913 c 1.079,-2.337 2.216,-3.562 4.35,-3.562 2.28,0 3.274,1.334 4.352,3.562 0,0 5.984,13.03 6.044,13.166 0.061,0.138 0.253,0.559 0.862,0.555 0.515,-0.003 0.948,-0.414 0.948,-0.966 V 5.735 c 0,-1.964 1.089,-3.575 3.185,-3.575 2.094,0 3.226,1.611 3.226,3.575 v 10.427 c 0,2.011 1.441,3.316 3.405,3.316 1.964,0 3.271,-1.352 3.271,-3.316 V 5.735 c 0,-1.964 1.093,-3.575 3.185,-3.575 2.094,0 3.232,1.611 3.232,3.575 v 10.427 c 0,2.011 1.435,3.316 3.4,3.316 1.961,0 3.273,-1.352 3.273,-3.316 V 5.735 c 0,-1.964 1.092,-3.575 3.186,-3.575 2.093,0 3.229,1.611 3.229,3.575 v 11.867 c 0,4.361 -3.507,7.416 -7.727,7.416 -4.215,0 -6.855,-2.916 -6.855,-2.916 -1.403,1.819 -3.337,2.912 -6.61,2.912 -3.454,0 -6.477,-2.912 -6.477,-2.912 -1.404,1.819 -3.794,2.912 -5.773,2.912 -3.061,0 -5.492,-1.346 -6.975,-4.737 L -16.096,9.95 -21.716,23.2 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

@ -0,0 +1,289 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.47 r22583"
width="51.358818"
height="47.630692"
version="1.0"
sodipodi:docname="voice_access_server.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<title
id="title22009">Voice access server</title>
<metadata
id="metadata2003">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="" />
<dc:title>Voice access server</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 23.815346 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="51.358818 : 23.815346 : 1"
inkscape:persp3d-origin="25.679409 : 15.876897 : 1"
id="perspective21436" />
<linearGradient
inkscape:collect="always"
id="linearGradient10123">
<stop
style="stop-color:#e4405c;stop-opacity:1;"
offset="0"
id="stop10125" />
<stop
style="stop-color:#e4405c;stop-opacity:0;"
offset="1"
id="stop10127" />
</linearGradient>
<linearGradient
id="linearGradient8331">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop8333" />
<stop
style="stop-color:#dde3ef;stop-opacity:1;"
offset="1"
id="stop8335" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient6587">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942481e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.060042,0,0,1.074658,-3.942482e-3,-0.356572)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient10123"
id="linearGradient10129"
x1="1.3990936"
y1="1.4711363"
x2="0.49966058"
y2="0.56367606"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.117962,0,0,1.035008,-4.0973e-2,-6.788682e-3)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient8331"
id="linearGradient6875"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(24.897735,0,0,25.405463,-9.0988193,-4.8632254)"
x1="2.1178279"
y1="0.30649999"
x2="-0.4954865"
y2="0.30649999" />
</defs>
<sodipodi:namedview
inkscape:window-height="878"
inkscape:window-width="1280"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="11.166395"
inkscape:cx="7.0535271"
inkscape:cy="22.715931"
inkscape:window-x="198"
inkscape:window-y="29"
inkscape:current-layer="svg1998"
showgrid="false"
inkscape:window-maximized="0" />
<path
id="path11907"
d="M 1.8402723,44.565612 L 1.8402723,47.615693 L 44.293781,47.615693 L 44.293781,44.565612 L 1.8402723,44.565612"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001" />
<path
id="path11020"
d="M 44.370594,6.1851672 L 51.194316,1.0980117 L 51.358819,41.344844 L 44.266438,47.63069 L 44.370594,6.1851672"
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
sodipodi:nodetypes="ccccc" />
<path
id="path2037"
d="M 0.062500355,5.1558922 L 0.062500355,46.326915 L 44.407694,46.326915 L 44.407694,5.1558922 L 0.062500355,5.1558922"
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2041"
d="M -0.38461268,5.6292351 L 5.2920708,0.21786924 L 50.13289,0.21786924 L 44.406412,5.6292351 L -0.38461268,5.6292351"
style="fill:url(#linearGradient6875);fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
id="path2045"
d="M 44.273363,5.1335036 L 49.931392,0.17309204 L 49.931392,41.393412 L 44.273363,46.353824 L 44.273363,5.1335036"
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001" />
<path
d="M 14.145491,26.350022 L 14.145491,15.386558 L 10.541356,15.386558 L 15.604832,9.752837 L 20.668311,15.386558 L 16.688284,15.386558 L 16.688284,22.357782 L 14.145491,26.350022"
id="path2511"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 21.37587,19.034292 L 33.293836,19.034292 L 33.293836,15.731066 L 39.418653,20.371793 L 33.293836,25.012519 L 33.293836,21.709296 L 25.355897,21.709296 L 21.37587,19.034292"
id="path2513"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 29.313811,26.350022 L 29.313811,36.989243 L 32.917945,36.989243 L 27.87658,42.622964 L 22.459322,36.989243 L 26.439347,36.989243 L 26.439347,29.997755 L 26.063457,29.997755 L 29.313811,26.350022"
id="path2515"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 21.729651,33.665753 L 9.8337973,33.665753 L 9.8337973,36.989243 L 3.6868682,32.32825 L 9.8337973,27.687523 L 9.8337973,30.990749 L 17.771736,30.990749 L 21.729651,33.665753"
id="path2517"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 29.247478,26.289227 L 29.225366,26.957978 L 29.114809,27.606464 L 28.96003,28.234684 L 28.76103,28.842639 L 28.495695,29.450594 L 28.164026,30.038285 L 27.788134,30.585446 L 27.36802,31.092075 L 26.903684,31.558174 L 26.373013,32.004008 L 25.842345,32.389047 L 25.245341,32.713289 L 24.648336,32.997003 L 24.007109,33.240185 L 23.343772,33.402306 L 22.680434,33.523896 L 21.994986,33.584692 L 21.309536,33.584692 L 20.646199,33.523896 L 19.960751,33.402306 L 19.319524,33.240185 L 18.678297,32.997003 L 18.059182,32.713289 L 17.484291,32.389047 L 16.931509,32.004008 L 16.422949,31.558174 L 15.936503,31.092075 L 15.516388,30.585446 L 15.140497,30.038285 L 14.830939,29.450594 L 14.543493,28.842639 L 14.344493,28.234684 L 14.189714,27.606464 L 14.101268,26.957978 L 14.079158,26.289227 L 14.101268,25.640741 L 14.189714,24.992255 L 14.344493,24.343769 L 14.543493,23.735814 L 14.830939,23.127858 L 15.140497,22.540167 L 15.516388,21.993007 L 15.936503,21.486378 L 16.422949,21.020279 L 16.931509,20.594711 L 17.484291,20.189407 L 18.059182,19.865163 L 18.678297,19.581452 L 19.319524,19.338269 L 19.960751,19.176148 L 20.646199,19.054556 L 21.309536,18.993761 L 21.994986,18.993761 L 22.680434,19.054556 L 23.343772,19.176148 L 24.007109,19.338269 L 24.648336,19.581452 L 25.245341,19.865163 L 25.842345,20.189407 L 26.373013,20.594711 L 26.903684,21.020279 L 27.36802,21.486378 L 27.788134,21.993007 L 28.164026,22.540167 L 28.495695,23.127858 L 28.76103,23.735814 L 28.96003,24.343769 L 29.114809,24.992255 L 29.225366,25.640741 L 29.247478,26.289227 L 26.704682,26.289227 L 26.682572,25.863657 L 26.638349,25.417823 L 26.527793,24.992255 L 26.373013,24.586951 L 26.218234,24.181648 L 25.997122,23.796609 L 25.753899,23.431836 L 25.466453,23.087327 L 25.156895,22.78335 L 24.803116,22.499637 L 24.449334,22.23619 L 24.051332,22.013273 L 23.65333,21.810622 L 23.211105,21.668765 L 22.790991,21.547175 L 22.326655,21.466113 L 21.88443,21.425582 L 21.420093,21.425582 L 20.977868,21.466113 L 20.535643,21.547175 L 20.093418,21.668765 L 19.673303,21.810622 L 19.253191,22.013273 L 18.877299,22.23619 L 18.501407,22.499637 L 18.169738,22.78335 L 17.86018,23.087327 L 17.572734,23.431836 L 17.329511,23.796609 L 17.108399,24.181648 L 16.931509,24.586951 L 16.77673,24.992255 L 16.688284,25.417823 L 16.621951,25.863657 L 16.599841,26.289227 L 16.621951,26.714795 L 16.688284,27.16063 L 16.77673,27.586198 L 16.931509,28.011767 L 17.108399,28.396805 L 17.329511,28.781844 L 17.572734,29.146617 L 17.86018,29.491125 L 18.169738,29.815369 L 18.501407,30.09908 L 18.877299,30.342263 L 19.253191,30.565179 L 19.673303,30.767831 L 20.093418,30.909688 L 20.535643,31.03128 L 20.977868,31.112339 L 21.420093,31.15287 L 21.88443,31.15287 L 22.326655,31.112339 L 22.790991,31.03128 L 23.211105,30.909688 L 23.65333,30.767831 L 24.051332,30.565179 L 24.449334,30.342263 L 24.803116,30.09908 L 25.156895,29.815369 L 25.466453,29.491125 L 25.753899,29.146617 L 25.997122,28.781844 L 26.218234,28.396805 L 26.373013,28.011767 L 26.527793,27.586198 L 26.638349,27.16063 L 26.682572,26.714795 L 26.704682,26.289227 L 29.247478,26.289227"
id="path2519"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
d="M 14.521383,26.674264 L 14.521383,15.731066 L 10.917247,15.731066 L 15.958613,10.077079 L 21.022091,15.731066 L 17.042066,15.731066 L 17.042066,22.702288 L 14.521383,26.674264"
id="path2521"
style="fill:#ffffff;stroke:none;stroke-width:0.08" />
<path
d="M 21.729651,19.3788 L 33.647618,19.3788 L 33.647618,16.05531 L 39.794545,20.696037 L 33.647618,25.357028 L 33.647618,22.033538 L 25.709676,22.033538 L 21.729651,19.3788"
id="path2523"
style="fill:#ffffff;stroke:none;stroke-width:0.08" />
<path
d="M 29.667591,26.674264 L 29.667591,37.313485 L 33.293836,37.313485 L 28.230359,42.967471 L 22.813103,37.313485 L 26.793128,37.313485 L 26.793128,30.342263 L 26.439347,30.342263 L 29.667591,26.674264"
id="path2525"
style="fill:#ffffff;stroke:none;stroke-width:0.08" />
<path
d="M 22.08343,33.989995 L 10.187577,33.989995 L 10.187577,37.313485 L 4.0406473,32.652494 L 10.187577,28.011767 L 10.187577,31.335258 L 18.125516,31.335258 L 22.08343,33.989995"
id="path2527"
style="fill:#ffffff;stroke:none;stroke-width:0.08" />
<path
d="M 29.667591,26.694531 L 29.64548,27.343017 L 29.557034,27.991501 L 29.402255,28.639987 L 29.203255,29.247943 L 28.915807,29.855898 L 28.606251,30.423324 L 28.230359,30.990749 L 27.810245,31.497379 L 27.345909,31.963477 L 26.815238,32.389047 L 26.28457,32.794351 L 25.687566,33.118593 L 25.068451,33.402306 L 24.427224,33.625222 L 23.785997,33.80761 L 23.100549,33.9292 L 22.437211,33.989995 L 21.751761,33.989995 L 21.066313,33.9292 L 20.402976,33.80761 L 19.761749,33.625222 L 19.098411,33.402306 L 18.501407,33.118593 L 17.904403,32.794351 L 17.373734,32.389047 L 16.843063,31.963477 L 16.378728,31.497379 L 15.958613,30.990749 L 15.582722,30.423324 L 15.251053,29.855898 L 14.985718,29.247943 L 14.786718,28.639987 L 14.631939,27.991501 L 14.543493,27.343017 L 14.49927,26.694531 L 14.543493,26.025778 L 14.631939,25.377294 L 14.786718,24.749073 L 14.985718,24.120853 L 15.251053,23.512897 L 15.582722,22.945471 L 15.958613,22.398311 L 16.378728,21.891681 L 16.843063,21.425582 L 17.373734,20.979748 L 17.904403,20.594711 L 18.501407,20.270467 L 19.098411,19.986756 L 19.761749,19.743573 L 20.402976,19.581452 L 21.066313,19.45986 L 21.751761,19.399065 L 22.437211,19.399065 L 23.100549,19.45986 L 23.785997,19.581452 L 24.427224,19.743573 L 25.068451,19.986756 L 25.687566,20.270467 L 26.28457,20.594711 L 26.815238,20.979748 L 27.345909,21.425582 L 27.810245,21.891681 L 28.230359,22.398311 L 28.606251,22.945471 L 28.915807,23.512897 L 29.203255,24.120853 L 29.402255,24.749073 L 29.557034,25.377294 L 29.64548,26.025778 L 29.667591,26.694531 L 27.146907,26.694531 L 27.124797,26.248697 L 27.058463,25.823127 L 26.970018,25.397559 L 26.815238,24.971991 L 26.638349,24.586951 L 26.439347,24.201912 L 26.174013,23.837139 L 25.886566,23.492631 L 25.577009,23.168389 L 25.245341,22.884676 L 24.869449,22.641493 L 24.493557,22.398311 L 24.073443,22.215925 L 23.65333,22.074069 L 23.211105,21.952478 L 22.76888,21.871417 L 22.326655,21.830886 L 21.862318,21.830886 L 21.420093,21.871417 L 20.977868,21.952478 L 20.535643,22.074069 L 20.115528,22.215925 L 19.695416,22.398311 L 19.297413,22.641493 L 18.943632,22.884676 L 18.589853,23.168389 L 18.280295,23.492631 L 17.992849,23.837139 L 17.749624,24.201912 L 17.528511,24.586951 L 17.373734,24.971991 L 17.218955,25.397559 L 17.130509,25.823127 L 17.064176,26.248697 L 17.042066,26.694531 L 17.064176,27.120099 L 17.130509,27.545669 L 17.218955,27.991501 L 17.373734,28.396805 L 17.528511,28.802108 L 17.749624,29.187147 L 17.992849,29.55192 L 18.280295,29.896429 L 18.589853,30.200406 L 18.943632,30.48412 L 19.297413,30.747567 L 19.695416,30.970483 L 20.115528,31.173136 L 20.535643,31.314991 L 20.977868,31.436583 L 21.420093,31.517643 L 21.862318,31.537909 L 22.326655,31.537909 L 22.76888,31.517643 L 23.211105,31.436583 L 23.65333,31.314991 L 24.073443,31.173136 L 24.493557,30.970483 L 24.869449,30.747567 L 25.245341,30.48412 L 25.577009,30.200406 L 25.886566,29.896429 L 26.174013,29.55192 L 26.439347,29.187147 L 26.638349,28.802108 L 26.815238,28.396805 L 26.970018,27.991501 L 27.058463,27.545669 L 27.124797,27.120099 L 27.146907,26.694531 L 29.667591,26.694531"
id="path2529"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<text
id="text21984"
y="30.346691"
x="18.985538"
style="font-size:8;font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Black;-inkscape-font-specification:'Arial Black, Heavy'"
xml:space="preserve"><tspan
style="font-size:8;fill:#000000;fill-opacity:1"
y="30.346691"
x="18.985538"
id="tspan21986"
sodipodi:role="line">V</tspan></text>
<text
xml:space="preserve"
style="font-size:9px;font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;fill:#f8f8f8;fill-opacity:1;stroke:none;font-family:Arial Black;-inkscape-font-specification:'Arial Black, Heavy'"
x="18.627321"
y="29.988474"
id="text21452"><tspan
sodipodi:role="line"
id="tspan21454"
x="18.627321"
y="29.988474"
style="font-size:8px;fill:#f8f8f8;fill-opacity:1">V</tspan></text>
</svg>

After

Width:  |  Height:  |  Size: 17 KiB

@ -0,0 +1,223 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.47 r22583"
width="66.000435"
height="44.5159"
version="1.0"
sodipodi:docname="voice_router.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<title
id="title13913">Voice router</title>
<metadata
id="metadata2003">
<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>Voice router</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 22.25795 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="66.000435 : 22.25795 : 1"
inkscape:persp3d-origin="33.000217 : 14.838633 : 1"
id="perspective13354" />
<linearGradient
id="linearGradient9312">
<stop
style="stop-color:#3c8c8c;stop-opacity:1;"
offset="0"
id="stop9314" />
<stop
style="stop-color:#ffffff;stop-opacity:0.94117647;"
offset="1"
id="stop9316" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient9312"
id="linearGradient2216"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.252829,0,0,14.082619,53.467529,3.4188377)"
x1="-1.0929121"
y1="0.63145506"
x2="-4.5832458"
y2="0.070047863" />
</defs>
<sodipodi:namedview
inkscape:window-height="878"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="7.8958335"
inkscape:cx="3.8408218"
inkscape:cy="19.718229"
inkscape:window-x="65"
inkscape:window-y="14"
inkscape:current-layer="g4160"
showgrid="false"
inkscape:window-maximized="0" />
<rect
style="opacity:1;fill:#000000;fill-opacity:0.39215687;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4558"
width="64.552505"
height="41.53862"
x="1.4479325"
y="2.9772801"
ry="11.631706"
rx="32.212925"
inkscape:transform-center-x="8.4568136" />
<rect
style="opacity:1;fill:#3c8c8c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.015;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect9971"
width="64.499474"
height="42.154343"
x="0.0625"
y="0.18084908"
ry="11.557454"
rx="32.249737"
inkscape:transform-center-x="8.2952569" />
<g
id="g4160">
<path
id="path4815"
d="M 64.514069,11.541297 L 64.457031,10.955643 L 64.342949,10.36999 L 64.152814,9.8038604 L 63.867612,9.2182077 L 63.487345,8.6520765 L 63.050034,8.0859452 L 62.517657,7.5393369 L 61.909226,7.0122499 L 61.224742,6.4851607 L 60.464203,5.9775955 L 59.646626,5.4700289 L 58.752993,4.9819859 L 57.783307,4.4939413 L 56.75658,4.0644625 L 55.6538,3.6349838 L 54.493981,3.2055052 L 53.296132,2.8150692 L 52.022232,2.4636777 L 50.710303,2.1122862 L 49.341334,1.7999375 L 47.934339,1.5071117 L 46.489316,1.2338059 L 45.006267,0.99954576 L 43.504204,0.76528425 L 41.964114,0.58958842 L 40.385997,0.43341443 L 38.788867,0.29676153 L 37.191738,0.19915292 L 35.575597,0.12106555 L 33.940437,0.06250017 L 32.324296,0.06250017 L 32.324296,0.06250017 L 30.689136,0.06250017 L 29.053981,0.12106555 L 27.45685,0.19915292 L 25.840705,0.29676153 L 24.243576,0.43341443 L 22.684472,0.58958842 L 21.125372,0.76528425 L 19.623307,0.99954576 L 18.140258,1.2338059 L 16.695234,1.5071117 L 15.28824,1.7999375 L 13.919273,2.1122862 L 12.607342,2.4636777 L 11.333442,2.8150692 L 10.135592,3.2055052 L 8.9757693,3.6349838 L 7.8729941,4.0644625 L 6.8462664,4.4939413 L 5.8765785,4.9819859 L 4.9829488,5.4700289 L 4.1653682,5.9775955 L 3.4048335,6.4851607 L 2.7203448,7.0122499 L 2.1309311,7.5393369 L 1.5795405,8.0859452 L 1.1422325,8.6520765 L 0.76195982,9.2182077 L 0.47676065,9.8038604 L 0.26760898,10.36999 L 0.15353084,10.955643 L 0.11550327,11.541297 L 0.11550327,11.541297 L 0.15353084,12.12695 L 0.26760898,12.693081 L 0.47676065,13.278734 L 0.76195982,13.825344 L 1.1422325,14.410996 L 1.5795405,14.957605 L 2.1309311,15.523736 L 2.7203448,16.070348 L 3.4048335,16.597435 L 4.1653682,17.085479 L 4.9829488,17.593043 L 5.8765785,18.100608 L 6.8462664,18.549609 L 7.8729941,18.998611 L 8.9757693,19.447613 L 10.135592,19.857571 L 11.333442,20.248007 L 12.607342,20.599396 L 13.919273,20.950787 L 15.28824,21.263135 L 16.695234,21.575486 L 18.140258,21.829265 L 19.623307,22.083049 L 21.125372,22.297787 L 22.684472,22.473485 L 24.243576,22.629661 L 25.840705,22.766312 L 27.45685,22.863921 L 29.053981,22.942009 L 30.689136,23.000574 L 32.324296,23.000574 L 32.324296,23.000574 L 33.940437,23.000574 L 35.575597,22.942009 L 37.191738,22.863921 L 38.788867,22.766312 L 40.385997,22.629661 L 41.964114,22.473485 L 43.504204,22.297787 L 45.006267,22.083049 L 46.489316,21.829265 L 47.934339,21.575486 L 49.341334,21.263135 L 50.710303,20.950787 L 52.022232,20.599396 L 53.296132,20.248007 L 54.493981,19.857571 L 55.6538,19.447613 L 56.75658,18.998611 L 57.783307,18.549609 L 58.752993,18.100608 L 59.646626,17.593043 L 60.464203,17.085479 L 61.224742,16.597435 L 61.909226,16.070348 L 62.517657,15.523736 L 63.050034,14.957605 L 63.487345,14.410996 L 63.867612,13.825344 L 64.152814,13.278734 L 64.342949,12.693081 L 64.457031,12.12695 L 64.514069,11.541297"
style="fill:url(#linearGradient2216);fill-opacity:1;stroke:none;stroke-width:0.01928605;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path4819"
d="M 33.023738,8.6936939 L 37.664889,10.327433 L 48.909313,5.4458969 L 53.946665,7.0599533 L 51.229891,3.0248142 L 38.061087,3.0248142 L 43.475766,4.225514 L 33.023738,8.6936939"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4821"
d="M 31.08049,13.161874 L 26.439334,11.528132 L 15.591104,16.429352 L 10.176425,14.775929 L 12.874332,19.244109 L 26.439334,19.244109 L 20.628458,17.630052 L 31.08049,13.161874"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4823"
d="M 11.327278,4.225514 L 15.968435,2.611458 L 27.212859,7.0599533 L 32.25021,5.8592533 L 29.552303,9.8943939 L 16.364632,9.8943939 L 21.779313,8.6936939 L 11.327278,4.225514"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4825"
d="M 53.154272,18.023723 L 48.513117,19.657467 L 37.664889,14.775929 L 32.25021,16.429352 L 34.966985,12.33516 L 48.513117,12.33516 L 42.70224,13.555544 L 53.154272,18.023723"
style="fill:#000000;stroke:none;stroke-width:0.001" />
<path
id="path4827"
d="M 33.419936,9.1070493 L 38.061087,10.721105 L 49.286643,5.8592533 L 54.323994,7.4929926 L 51.60722,3.4184854 L 38.438415,3.4184854 L 43.871962,4.6191872 L 33.419936,9.1070493"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4829"
d="M 31.476681,13.555544 L 26.816665,11.941487 L 15.968435,16.803341 L 10.553753,15.189284 L 13.25166,19.657467 L 26.816665,19.657467 L 21.005786,18.023723 L 31.476681,13.555544"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4831"
d="M 11.723476,4.6191872 L 16.364632,3.0248142 L 27.609055,7.4929926 L 32.627541,6.2529266 L 29.929634,10.327433 L 16.741963,10.327433 L 22.175509,9.1070493 L 11.723476,4.6191872"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
id="path4833"
d="M 53.531602,18.43708 L 48.909313,20.070823 L 38.061087,15.189284 L 32.627541,16.803341 L 35.344315,12.7682 L 48.909313,12.7682 L 43.098437,13.9689 L 53.531602,18.43708"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<text
sodipodi:linespacing="125%"
id="text13888"
y="37.997669"
x="27.68791"
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial Black;-inkscape-font-specification:'Arial Black, Heavy'"
xml:space="preserve"
transform="scale(0.97890011,1.0215547)"><tspan
y="37.997669"
x="27.68791"
id="tspan13890"
sodipodi:role="line">V</tspan></text>
<text
xml:space="preserve"
style="font-size:16px;font-style:normal;font-variant:normal;font-weight:900;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#fffdff;fill-opacity:1;stroke:none;font-family:Arial Black;-inkscape-font-specification:'Arial Black, Heavy'"
x="26.089708"
y="38.183449"
id="text13356"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan13358"
x="26.089708"
y="38.183449">V</tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

@ -0,0 +1,574 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="59.253815"
id="Andysvg"
inkscape:version="0.48.5 r10040"
sodipodi:docname="vpcs_guest.svg"
sodipodi:version="0.32"
version="1.0"
width="65.414536"
x="0.00000000"
y="0.00000000"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata3">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:title />
<dc:description />
<dc:subject>
<rdf:Bag>
<rdf:li>hash</rdf:li>
<rdf:li />
<rdf:li>hardware</rdf:li>
<rdf:li>computer</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:publisher>
<cc:Agent
rdf:about="http://www.openclipart.org">
<dc:title>Andy Fitzsimon</dc:title>
</cc:Agent>
</dc:publisher>
<dc:creator>
<cc:Agent>
<dc:title>Andy Fitzsimon</dc:title>
</cc:Agent>
</dc:creator>
<dc:rights>
<cc:Agent>
<dc:title>Andy Fitzsimon</dc:title>
</cc:Agent>
</dc:rights>
<dc:date />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<cc:license
rdf:resource="http://web.resource.org/cc/PublicDomain" />
<dc:language>en</dc:language>
</cc:Work>
<cc:License
rdf:about="http://web.resource.org/cc/PublicDomain">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs3">
<linearGradient
id="linearGradient1806">
<stop
id="stop1807"
offset="0.0000000"
style="stop-color:#000000;stop-opacity:0.35051546;" />
<stop
id="stop3276"
offset="0.64999998"
style="stop-color:#000000;stop-opacity:0.13402061;" />
<stop
id="stop1808"
offset="1.0000000"
style="stop-color:#000000;stop-opacity:0.0000000;" />
</linearGradient>
<radialGradient
cx="42.007256"
cy="39.007645"
fx="42.280807"
fy="39.410465"
id="radialGradient1977"
r="11.574221"
xlink:href="#linearGradient1806"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient893">
<stop
id="stop895"
offset="0"
style="stop-color:#000;stop-opacity:1;" />
<stop
id="stop896"
offset="1"
style="stop-color:#fff;stop-opacity:1;" />
</linearGradient>
<linearGradient
id="linearGradient1317">
<stop
id="stop1318"
offset="0.00000000"
style="stop-color:#000000;stop-opacity:0.52892560;" />
<stop
id="stop1320"
offset="0.50000000"
style="stop-color:#000000;stop-opacity:0.17355372;" />
<stop
id="stop1319"
offset="1.0000000"
style="stop-color:#000000;stop-opacity:0.00000000;" />
</linearGradient>
<linearGradient
id="linearGradient1133">
<stop
id="stop1134"
offset="0.00000000"
style="stop-color:#8bb7df;stop-opacity:1.0000000;" />
<stop
id="stop1136"
offset="0.76209301"
style="stop-color:#2a6092;stop-opacity:1.0000000;" />
<stop
id="stop1135"
offset="1.0000000"
style="stop-color:#375e82;stop-opacity:1.0000000;" />
</linearGradient>
<linearGradient
id="linearGradient1098">
<stop
id="stop1099"
offset="0.00000000"
style="stop-color:#ffffff;stop-opacity:1.0000000;" />
<stop
id="stop1101"
offset="0.50000000"
style="stop-color:#ffffff;stop-opacity:0.22314049;" />
<stop
id="stop1102"
offset="0.59930235"
style="stop-color:#ffffff;stop-opacity:0.00000000;" />
<stop
id="stop1100"
offset="1.0000000"
style="stop-color:#ffffff;stop-opacity:0.60330576;" />
</linearGradient>
<linearGradient
id="linearGradient902">
<stop
id="stop903"
offset="0.00000000"
style="stop-color:#000000;stop-opacity:0.00000000;" />
<stop
id="stop904"
offset="1.0000000"
style="stop-color:#000000;stop-opacity:0.22000000;" />
</linearGradient>
<linearGradient
id="linearGradient892">
<stop
id="stop893"
offset="0.00000000"
style="stop-color:#ffffff;stop-opacity:0.00000000;" />
<stop
id="stop894"
offset="1"
style="stop-color:#fff;stop-opacity:1;" />
</linearGradient>
<linearGradient
id="linearGradient888">
<stop
id="stop889"
offset="0.0000000"
style="stop-color:#626262;stop-opacity:1.0000000;" />
<stop
id="stop890"
offset="1"
style="stop-color:#fff;stop-opacity:1;" />
</linearGradient>
<linearGradient
id="linearGradient891"
x1="92.437965"
x2="27.674332"
xlink:href="#linearGradient888"
y1="-3.9104078"
y2="91.076988"
gradientTransform="matrix(0.8184166,0,0,0.530237,-9.8827678,-14.589608)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient901"
xlink:href="#linearGradient1806"
gradientTransform="matrix(0.8517959,0,0,0.5754549,70.875335,-17.351492)"
x1="9.4921856"
y1="22.862282"
x2="41.719688"
y2="22.862282"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient905"
x1="-77.726181"
x2="95.64444"
xlink:href="#linearGradient888"
y1="208.43991"
y2="11.699047"
gradientTransform="matrix(0.7314635,0,0,0.5932693,-9.8827694,-14.589616)"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="60.004654"
cy="56.485935"
fx="72.10788"
fy="39.288475"
id="radialGradient1132"
r="68.589226"
xlink:href="#linearGradient1133"
gradientTransform="matrix(0.8184166,0,0,0.530237,-9.8827678,-14.589608)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1138"
x1="-249.72067"
x2="-268.25406"
xlink:href="#linearGradient1806"
y1="375.922"
y2="75.912529"
gradientTransform="scale(1.087146,0.91984)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1140"
x1="45.685757"
x2="41.96706"
xlink:href="#linearGradient888"
y1="110.4447"
y2="232.24953"
gradientTransform="matrix(1.2743811,0,0,0.3405213,-9.8827694,-14.589616)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1141"
x1="0"
x2="0.92957747"
xlink:href="#linearGradient888"
y1="3.3012049"
y2="-0.45783132" />
<linearGradient
id="linearGradient1144"
x1="31.449743"
x2="31.617281"
xlink:href="#linearGradient892"
y1="203.49899"
y2="251.21892"
gradientTransform="matrix(1.4044089,0,0,0.3089952,-9.8827694,-14.589616)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1146"
x1="39.810947"
x2="17.87653"
xlink:href="#linearGradient892"
y1="90.197021"
y2="113.71949"
gradientTransform="matrix(0.8811179,0,0,0.4925045,-9.8827694,-14.589616)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1148"
x1="39.690613"
x2="70.224304"
xlink:href="#linearGradient892"
y1="49.507656"
y2="20.481863"
gradientTransform="scale(1.329144,0.752364)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1150"
x1="35.190361"
x2="8.3460579"
xlink:href="#linearGradient892"
y1="76.277557"
y2="105.42543"
gradientTransform="scale(1.328386,0.752793)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1156"
x1="25.220816"
x2="25.220816"
xlink:href="#linearGradient888"
y1="178.48862"
y2="234.26866"
gradientTransform="matrix(1.6156202,0,0,0.2685999,-9.8827678,-14.589608)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1157"
x1="51.46093"
x2="-16.224497"
xlink:href="#linearGradient888"
y1="269.85831"
y2="176.28694"
gradientTransform="matrix(1.6156202,0,0,0.2685999,-9.8827678,-14.589608)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1166"
x1="111.49758"
x2="107.04918"
xlink:href="#linearGradient1317"
y1="131.25249"
y2="148.78619"
gradientTransform="matrix(0.562951,0,0,0.378005,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1167"
x1="141.60217"
x2="88.447014"
xlink:href="#linearGradient888"
y1="228.39311"
y2="133.5471"
gradientTransform="matrix(0.544555,0,0,0.390775,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<linearGradient
id="linearGradient1169"
x1="146.69923"
x2="74.533691"
xlink:href="#linearGradient893"
y1="224.57898"
y2="81.4776"
gradientTransform="matrix(0.546024,0,0,0.389723,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<linearGradient
gradientTransform="scale(0.998371,1.001632)"
id="linearGradient1170"
x1="0.47284532"
x2="0.48655096"
xlink:href="#linearGradient902"
y1="-0.016295359"
y2="1.8378206" />
<linearGradient
id="linearGradient1171"
x1="101.10657"
x2="95.100159"
xlink:href="#linearGradient902"
y1="177.77768"
y2="173.03152"
gradientTransform="matrix(0.62565,0,0,0.340123,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<radialGradient
cx="0.47887325"
cy="0.53333336"
fx="0.47535211"
fy="0.26666668"
id="radialGradient1315"
r="0.41197181"
xlink:href="#linearGradient1317" />
<radialGradient
cx="0.5"
cy="0.50000006"
fx="0.50352114"
fy="0.18269235"
id="radialGradient1316"
r="0.34964636"
xlink:href="#linearGradient1317" />
<linearGradient
id="linearGradient1404"
x1="88.755692"
x2="88.996956"
xlink:href="#linearGradient892"
y1="169.09755"
y2="182.99155"
gradientTransform="matrix(0.629979,0,0,0.337786,1.021178,-9.426161)"
gradientUnits="userSpaceOnUse" />
<linearGradient
gradientTransform="scale(0.997825,1.00218)"
id="linearGradient1505"
x1="0.47157744"
x2="0.48548824"
xlink:href="#linearGradient902"
y1="-0.02485317"
y2="1.8570156" />
<linearGradient
gradientTransform="scale(0.995847,1.00417)"
id="linearGradient1506"
x1="0.4704251"
x2="0.48481107"
xlink:href="#linearGradient902"
y1="-0.04365262"
y2="1.9025002" />
<linearGradient
gradientTransform="scale(0.997153,1.002855)"
id="linearGradient2740"
x1="0.47041038"
x2="0.48453596"
xlink:href="#linearGradient902"
y1="-0.033741195"
y2="1.8771822" />
<linearGradient
id="linearGradient4283"
x1="-0.77314812"
x2="0.99074072"
xlink:href="#linearGradient893"
y1="2.0837989"
y2="-0.033519555" />
<linearGradient
id="linearGradient4284"
x1="-2.3960868e-17"
x2="0.92957747"
xlink:href="#linearGradient893"
y1="3.3012049"
y2="-0.45783132" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1806"
id="linearGradient1948"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.087146,0.91984)"
x1="-249.72067"
y1="375.922"
x2="-268.25406"
y2="75.912529" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1806"
id="linearGradient1950"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.087146,0.91984)"
x1="-249.72067"
y1="375.922"
x2="-268.25406"
y2="75.912529" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient1806"
id="linearGradient1952"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.087146,0.91984)"
x1="-249.72067"
y1="375.922"
x2="-268.25406"
y2="75.912529" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient892"
id="linearGradient2625"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.329144,0.752364)"
x1="39.690613"
y1="49.507656"
x2="70.224304"
y2="20.481863" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient892"
id="linearGradient2627"
gradientUnits="userSpaceOnUse"
gradientTransform="scale(1.328386,0.752793)"
x1="35.190361"
y1="76.277557"
x2="8.3460579"
y2="105.42543" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient888"
id="linearGradient2633"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.3870648,0,0,0.2694829,71.57581,-24.087318)"
x1="92.437965"
y1="-3.9104078"
x2="27.674332"
y2="91.076988" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient892"
id="linearGradient2635"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.8821916,0,0,0.491702,-8.9069314,-15.277305)"
x1="39.690613"
y1="49.507656"
x2="70.224304"
y2="20.481863" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient892"
id="linearGradient2637"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.8816883,0,0,0.4919824,-10.701684,-14.28309)"
x1="35.190361"
y1="76.277557"
x2="8.3460579"
y2="105.42543" />
</defs>
<sodipodi:namedview
bordercolor="#666666"
borderopacity="1.0"
id="base"
inkscape:cx="2.2444977"
inkscape:cy="46.709908"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:window-height="975"
inkscape:window-width="1400"
inkscape:window-x="1495"
inkscape:window-y="14"
inkscape:zoom="7.9999999"
pagecolor="#ffffff"
showborder="true"
inkscape:current-layer="Andysvg"
showgrid="false"
inkscape:window-maximized="0" />
<rect
height="5.4088969"
id="rect1155"
style="fill:url(#linearGradient1156);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient1157);stroke-width:0.95344429pt"
width="38.405891"
x="12.350429"
y="36.575089" />
<path
d="M 0.19287398,54.885213 C -0.67386281,56.46268 1.5579198,59.253939 3.3933636,59.253939 L 62.069027,59.253939 C 63.628857,59.253939 65.976201,57.281205 65.269522,55.925378 L 58.655165,43.235277 C 58.145696,42.257819 57.005954,41.779036 55.881408,41.779036 L 8.9408812,41.779036 C 8.0135624,41.779036 7.0317541,42.438291 6.5938539,43.235277 L 0.19287398,54.885213 z "
id="path1139"
sodipodi:nodetypes="czzzzzzzz"
style="fill:url(#linearGradient1140);fill-opacity:1;fill-rule:evenodd;stroke-width:1.44734821pt" />
<rect
height="39.110481"
id="rect1137"
rx="3.6272225"
ry="3.536587"
style="fill:url(#linearGradient905);fill-opacity:1;fill-rule:evenodd;stroke-width:1.62826681"
width="48.220726"
x="7.4732022"
y="-0.010164791" />
<rect
height="24.74659"
id="rect1131"
style="fill:url(#radialGradient1132);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient891);stroke-width:0.96503658pt"
width="38.813015"
x="12.390426"
y="6.027596" />
<path
d="M 8.5906358,19.782157 L 8.3772707,34.032521 C 8.3432557,36.304242 9.6712558,37.75887 12.004493,37.777143 L 38.568566,37.985175 L 41.128957,32.160207 L 11.471076,31.952177 L 11.257713,19.678141 L 8.5906358,19.782157 z "
id="path1145"
sodipodi:nodetypes="czzccccc"
style="fill:url(#linearGradient1146);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 2.7205883,54.675124 C 2.1113822,55.866786 2.9089235,57.975349 4.9701318,57.975349 L 60.179981,57.975349 C 61.276346,57.975349 62.926231,56.48511 62.429524,55.460899 L 57.78047,45.874547 C 57.422369,45.136152 56.621274,44.774474 55.830865,44.774474 L 8.8693353,44.774468 C 8.2175462,44.774468 7.5274604,45.272486 7.2196723,45.874547 L 2.7205883,54.675124 z "
id="path1143"
sodipodi:nodetypes="czzzzzzzz"
style="fill:url(#linearGradient1144);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 19.010905,6.5904681 L 42.426675,6.2948726 C 46.041292,6.2492425 50.532134,9.8297185 50.532134,13.389152 L 50.532134,24.030571 L 18.710703,23.734975 L 19.010905,6.5904681 z "
id="path1147"
sodipodi:nodetypes="czzccc"
style="fill:url(#linearGradient2635);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<path
d="M 41.29338,29.915511 L 20.310226,29.977799 C 17.071125,29.987414 13.079277,26.740463 13.111035,23.55121 L 13.205982,14.016504 L 41.715336,14.556637 L 41.29338,29.915511 z "
id="path1149"
sodipodi:nodetypes="czzccc"
style="fill:url(#linearGradient2637);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" />
<text
xml:space="preserve"
style="font-size:40px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold"
x="14.187813"
y="24.194735"
id="text4507"
sodipodi:linespacing="125%"><tspan
sodipodi:role="line"
id="tspan4509"
x="14.187813"
y="24.194735"
style="font-size:13px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;font-family:Arial;-inkscape-font-specification:Arial Bold">VPCS</tspan></text>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

@ -0,0 +1,528 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://web.resource.org/cc/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
id="svg1998"
sodipodi:version="0.32"
inkscape:version="0.45"
width="71.851372"
height="32.285366"
version="1.0"
sodipodi:docname="wlan_controller.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:modified="true">
<metadata
id="metadata2003">
<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>WLAN controller</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Jeremy Grossmann</dc:title>
</cc:Agent>
</dc:creator>
<dc:publisher>
<cc:Agent>
<dc:title>GNS-3</dc:title>
</cc:Agent>
</dc:publisher>
<dc:description>Created for the GNS-3 project (www.gns3.net)</dc:description>
<cc:license
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
<cc:permits
rdf:resource="http://web.resource.org/cc/Reproduction" />
<cc:permits
rdf:resource="http://web.resource.org/cc/Distribution" />
<cc:requires
rdf:resource="http://web.resource.org/cc/Notice" />
<cc:permits
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
<cc:requires
rdf:resource="http://web.resource.org/cc/ShareAlike" />
<cc:requires
rdf:resource="http://web.resource.org/cc/SourceCode" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs2001">
<linearGradient
inkscape:collect="always"
id="linearGradient6603">
<stop
style="stop-color:#506eaa;stop-opacity:1;"
offset="0"
id="stop6605" />
<stop
style="stop-color:#506eaa;stop-opacity:0;"
offset="1"
id="stop6607" />
</linearGradient>
<linearGradient
id="linearGradient6587">
<stop
style="stop-color:#6e8caa;stop-opacity:1;"
offset="0"
id="stop6589" />
<stop
style="stop-color:#edeff3;stop-opacity:1;"
offset="1"
id="stop6591" />
</linearGradient>
<marker
inkscape:stockid="Arrow2Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow2Lstart"
style="overflow:visible">
<path
id="path11918"
style="font-size:12px;fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round"
d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.97309,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
transform="matrix(1.1,0,0,1.1,1.1,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Send"
orient="auto"
refY="0"
refX="0"
id="Arrow1Send"
style="overflow:visible">
<path
id="path11921"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)" />
</marker>
<marker
inkscape:stockid="Arrow1Lstart"
orient="auto"
refY="0"
refX="0"
id="Arrow1Lstart"
style="overflow:visible">
<path
id="path11936"
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
style="fill-rule:evenodd;stroke:black;stroke-width:1pt;marker-start:none"
transform="matrix(0.8,0,0,0.8,10,0)" />
</marker>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient6593"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119123,0,0,1.09281,-7.833718e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6603"
id="linearGradient6609"
x1="2.2801981"
y1="1.4519272"
x2="-0.41311559"
y2="1.4649135"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.119124,0,0,1.09281,-7.8336875e-3,-0.353953)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient6587"
id="linearGradient11856"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(15.191597,0,0,15.33747,-2.6428869,0.1648577)"
x1="3.95626"
y1="0.64267641"
x2="-1.2664427"
y2="0.62730032" />
</defs>
<sodipodi:namedview
inkscape:window-height="979"
inkscape:window-width="1400"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showguides="true"
inkscape:guide-bbox="true"
inkscape:zoom="15.791667"
inkscape:cx="35.839719"
inkscape:cy="19.90866"
inkscape:window-x="0"
inkscape:window-y="25"
inkscape:current-layer="svg1998" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 2.1663193,16.589602 L 2.1663193,32.285367 L 54.763443,32.285367 L 54.763443,16.589602 L 2.1663193,16.589602"
id="path13703" />
<path
style="fill:#000000;fill-opacity:0.39215686;stroke:none;stroke-width:0.001"
d="M 54.724715,18.919483 L 71.109211,3.1102265 L 71.109211,16.523256 L 54.724715,32.33251 L 54.724715,18.919483"
id="path14592" />
<path
style="fill:#6e8296;fill-opacity:1;stroke:none;stroke-width:0.001"
d="M 54.781867,16.528044 L 71.793065,0.13423853 L 71.793065,14.043216 L 54.781867,30.437021 L 54.781867,16.528044"
id="path2009" />
<path
style="fill:#6e8caa;fill-opacity:1;stroke:none;stroke-width:0.00110589"
d="M 0.21478248,16.474061 L 0.21478248,30.310372 L 55.069651,30.310372 L 55.069651,16.474061 L 0.21478248,16.474061"
id="path2007" />
<path
style="fill:url(#linearGradient11856);fill-opacity:1;stroke:none;stroke-width:0.01505287;stroke-opacity:1"
d="M 55.06494,16.770099 L 72.155489,0.17496232 L 16.934026,0.17496232 L -0.11094903,16.770099 L 55.06494,16.770099"
id="path2013" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2481"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2483"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2485"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2487"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2489"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2491"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2493"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2495"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2497"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2499"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2501"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2503"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2505"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2507"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2509"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2511"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.899931,23.450238 L 51.899931,23.401944 L 51.914244,23.365722 L 51.928558,23.329502 L 51.928558,23.293281 L 51.914244,23.269133 L 51.914244,23.232914 L 51.899931,23.196691 L 51.885618,23.172544 L 51.871304,23.136324 L 51.842676,23.112177 L 51.814049,23.088029 L 51.785421,23.075955 L 51.756794,23.039735 L 51.728166,23.027661 L 51.699538,23.015587 L 51.656597,23.003514 L 51.62797,22.99144 L 51.58503,22.979366 L 51.542088,22.979366 L 51.51346,22.979366 L 51.470518,22.979366 L 51.441891,22.979366 L 51.39895,22.99144 L 51.356008,23.003514 L 51.327381,23.015587 L 51.298753,23.015587 L 51.255812,23.039735 L 51.227184,23.075955 L 51.198557,23.100103 L 51.184243,23.124251 L 51.155616,23.160472 L 51.141301,23.196691 L 51.899931,23.450238"
id="path2513"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 43.311681,23.450238 L 43.311681,23.450238 L 43.411878,23.619269 L 43.497761,23.812448 L 43.61227,23.969404 L 43.712467,24.138434 L 43.812662,24.295392 L 43.912858,24.452349 L 44.013056,24.609307 L 44.127566,24.754191 L 44.213448,24.899074 L 44.327958,25.031884 L 44.41384,25.15262 L 44.52835,25.285429 L 44.628546,25.406165 L 44.728742,25.514828 L 44.814624,25.635565 L 44.929135,25.744228 L 45.029331,25.852891 L 45.129528,25.949479 L 45.229724,26.046068 L 45.32992,26.130584 L 45.430117,26.215098 L 45.530313,26.299615 L 45.630508,26.372056 L 45.730705,26.444498 L 45.816588,26.516939 L 45.931097,26.577308 L 46.031294,26.637676 L 46.13149,26.698045 L 46.231687,26.746339 L 46.331884,26.794633 L 46.446393,26.842929 L 46.532276,26.879148 L 46.632472,26.927443 L 46.732668,26.951591 L 46.832864,26.987811 L 46.93306,27.011959 L 47.033256,27.036106 L 47.133453,27.048179 L 47.23365,27.072326 L 47.348159,27.0844 L 47.434041,27.0844 L 47.548552,27.096474 L 47.634435,27.096474 L 47.73463,27.096474 L 47.834826,27.0844 L 47.920708,27.072326 L 48.020905,27.072326 L 48.121101,27.048179 L 48.206984,27.036106 L 48.307181,27.011959 L 48.393063,26.987811 L 48.478945,26.963665 L 48.564828,26.939517 L 48.665025,26.903296 L 48.736592,26.879148 L 48.822475,26.842929 L 48.908357,26.794633 L 48.99424,26.758412 L 49.065809,26.710118 L 49.151691,26.673897 L 49.309143,26.589382 L 49.452281,26.492793 L 49.595418,26.38413 L 49.738556,26.275467 L 49.867379,26.166805 L 49.996203,26.046068 L 50.125027,25.937405 L 50.253851,25.816669 L 50.36836,25.695932 L 50.482871,25.575197 L 50.597381,25.442388 L 50.697577,25.309577 L 50.797773,25.188841 L 50.897968,25.068104 L 50.998164,24.935294 L 51.084047,24.814558 L 51.169929,24.693822 L 51.241499,24.573086 L 51.39895,24.35576 L 51.527773,24.138434 L 51.62797,23.945256 L 51.728166,23.776226 L 51.85699,23.546827 L 51.899931,23.450238 L 51.141301,23.196691 L 51.09836,23.269133 L 50.983851,23.498533 L 50.897968,23.655489 L 50.797773,23.836594 L 50.668949,24.029772 L 50.540126,24.235023 L 50.468557,24.35576 L 50.382675,24.464424 L 50.296792,24.573086 L 50.210909,24.693822 L 50.125027,24.802485 L 50.024831,24.923221 L 49.924634,25.031884 L 49.838751,25.15262 L 49.738556,25.261282 L 49.624045,25.369945 L 49.52385,25.478608 L 49.40934,25.575197 L 49.294829,25.68386 L 49.180319,25.768375 L 49.065809,25.864964 L 48.936986,25.949479 L 48.822475,26.021922 L 48.693651,26.106436 L 48.636397,26.142658 L 48.579142,26.154731 L 48.507573,26.203026 L 48.450319,26.215098 L 48.393063,26.239246 L 48.321495,26.275467 L 48.264239,26.299615 L 48.206984,26.311688 L 48.135415,26.335835 L 48.07816,26.347909 L 48.006591,26.359983 L 47.949336,26.372056 L 47.892082,26.38413 L 47.820512,26.396203 L 47.763257,26.396203 L 47.691689,26.408277 L 47.634435,26.408277 L 47.562866,26.408277 L 47.491296,26.396203 L 47.434041,26.396203 L 47.362474,26.396203 L 47.305218,26.372056 L 47.23365,26.372056 L 47.162081,26.347909 L 47.090511,26.335835 L 47.018943,26.311688 L 46.947374,26.287541 L 46.875805,26.25132 L 46.804237,26.227172 L 46.718354,26.203026 L 46.646786,26.154731 L 46.560903,26.11851 L 46.489334,26.070216 L 46.417766,26.021922 L 46.331884,25.973627 L 46.246001,25.925332 L 46.160119,25.852891 L 46.088549,25.792522 L 46.002667,25.720081 L 45.916783,25.659712 L 45.816588,25.575197 L 45.74502,25.490682 L 45.644823,25.406165 L 45.55894,25.309577 L 45.473058,25.212988 L 45.372862,25.116398 L 45.286979,25.007736 L 45.201097,24.899074 L 45.1009,24.778338 L 45.015018,24.669675 L 44.914822,24.536864 L 44.814624,24.391982 L 44.728742,24.259171 L 44.628546,24.126361 L 44.52835,23.969404 L 44.442468,23.824521 L 44.342271,23.655489 L 44.242075,23.498533 L 44.14188,23.329502 L 44.041683,23.148398 L 44.041683,23.148398 L 43.311681,23.450238 L 43.311681,23.450238 L 43.311681,23.450238"
id="path2515"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.212061,23.401944 L 36.212061,23.401944 L 36.255003,23.329502 L 36.369513,23.112177 L 36.455395,22.95522 L 36.555591,22.774116 L 36.684415,22.580938 L 36.81324,22.363612 L 36.884808,22.254949 L 36.970691,22.146286 L 37.04226,22.025549 L 37.128142,21.916886 L 37.228337,21.796151 L 37.31422,21.675414 L 37.414415,21.566752 L 37.514612,21.446016 L 37.614808,21.349427 L 37.729319,21.22869 L 37.829515,21.120028 L 37.944025,21.02344 L 38.044221,20.92685 L 38.158732,20.830261 L 38.287555,20.733673 L 38.402064,20.649157 L 38.530888,20.576714 L 38.659712,20.504274 L 38.716968,20.468052 L 38.774222,20.443905 L 38.831477,20.419757 L 38.903046,20.383537 L 38.960302,20.359389 L 39.03187,20.335242 L 39.089124,20.311095 L 39.14638,20.286947 L 39.217949,20.2628 L 39.275204,20.2628 L 39.332459,20.238654 L 39.389714,20.22658 L 39.461282,20.22658 L 39.518537,20.202433 L 39.590106,20.202433 L 39.647361,20.202433 L 39.71893,20.202433 L 39.7905,20.202433 L 39.847754,20.202433 L 39.919323,20.202433 L 39.976578,20.22658 L 40.048147,20.22658 L 40.119715,20.22658 L 40.191284,20.2628 L 40.262853,20.2628 L 40.334421,20.299021 L 40.391676,20.323169 L 40.463245,20.335242 L 40.549127,20.371463 L 40.635009,20.407684 L 40.706579,20.443905 L 40.778147,20.480126 L 40.86403,20.528421 L 40.935599,20.576714 L 41.021482,20.62501 L 41.107364,20.685377 L 41.193246,20.733673 L 41.264816,20.806113 L 41.350698,20.878555 L 41.43658,20.963071 L 41.522463,21.02344 L 41.608345,21.120028 L 41.708541,21.204544 L 41.794424,21.289059 L 41.880306,21.385647 L 41.980503,21.482237 L 42.066385,21.5909 L 42.152267,21.711636 L 42.252464,21.820298 L 42.338347,21.941034 L 42.438542,22.073845 L 42.538739,22.206653 L 42.624621,22.339464 L 42.724817,22.472275 L 42.825014,22.629231 L 42.910895,22.786188 L 43.011092,22.943146 L 43.11129,23.100103 L 43.211485,23.269133 L 43.311681,23.450238 L 44.041683,23.148398 L 43.941486,22.979366 L 43.84129,22.798262 L 43.741093,22.629231 L 43.640897,22.460201 L 43.540701,22.303243 L 43.440505,22.146286 L 43.340309,21.98933 L 43.225798,21.844446 L 43.139916,21.711636 L 43.025407,21.578826 L 42.92521,21.446016 L 42.825014,21.313207 L 42.724817,21.19247 L 42.624621,21.083808 L 42.538739,20.963071 L 42.424229,20.854408 L 42.324032,20.745745 L 42.223836,20.649157 L 42.123641,20.564641 L 42.023443,20.480126 L 41.923248,20.383537 L 41.823052,20.299021 L 41.722854,20.22658 L 41.622658,20.166211 L 41.522463,20.081697 L 41.422265,20.033402 L 41.32207,19.96096 L 41.221874,19.900592 L 41.121677,19.852297 L 41.021482,19.804003 L 40.906971,19.755707 L 40.821088,19.719487 L 40.706579,19.683267 L 40.606382,19.647046 L 40.506186,19.622898 L 40.40599,19.586676 L 40.305794,19.562531 L 40.205598,19.550457 L 40.105401,19.526309 L 40.005206,19.526309 L 39.905009,19.514236 L 39.804812,19.502162 L 39.704617,19.502162 L 39.604419,19.502162 L 39.518537,19.526309 L 39.418342,19.526309 L 39.318145,19.526309 L 39.232263,19.550457 L 39.14638,19.562531 L 39.046183,19.59875 L 38.960302,19.622898 L 38.874419,19.647046 L 38.788536,19.671194 L 38.68834,19.695339 L 38.602457,19.731561 L 38.530888,19.767782 L 38.445006,19.804003 L 38.359123,19.840224 L 38.287555,19.888517 L 38.201673,19.924739 L 38.044221,20.021328 L 37.901085,20.117917 L 37.757946,20.22658 L 37.600496,20.323169 L 37.471671,20.431831 L 37.342848,20.552567 L 37.214023,20.673304 L 37.099514,20.794041 L 36.970691,20.914777 L 36.856181,21.035512 L 36.755985,21.168323 L 36.641474,21.289059 L 36.541278,21.409795 L 36.455395,21.542605 L 36.355199,21.663341 L 36.269317,21.796151 L 36.16912,21.916886 L 36.097552,22.025549 L 35.954414,22.254949 L 35.82559,22.472275 L 35.711082,22.653379 L 35.625199,22.82241 L 35.496374,23.051809 L 35.453433,23.160472 L 35.453433,23.160472 L 36.212061,23.401944 L 36.212061,23.401944 L 36.212061,23.401944"
id="path2517"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.623812,23.414018 L 27.623812,23.414018 L 27.724007,23.595121 L 27.838518,23.776226 L 27.938713,23.945256 L 28.038909,24.114288 L 28.139107,24.271245 L 28.239303,24.428201 L 28.339499,24.573086 L 28.439696,24.730042 L 28.539891,24.862853 L 28.640088,24.995662 L 28.740284,25.128472 L 28.84048,25.249209 L 28.940676,25.369945 L 29.040873,25.490682 L 29.141069,25.599344 L 29.241265,25.708007 L 29.355776,25.816669 L 29.455972,25.913259 L 29.556168,26.009848 L 29.656365,26.094363 L 29.742247,26.178878 L 29.842443,26.263394 L 29.956953,26.335835 L 30.057148,26.408277 L 30.157345,26.480719 L 30.257542,26.541087 L 30.357738,26.601456 L 30.457935,26.661823 L 30.558131,26.710118 L 30.658327,26.770486 L 30.758523,26.818781 L 30.858719,26.842929 L 30.958915,26.879148 L 31.059112,26.927443 L 31.159308,26.951591 L 31.273818,26.987811 L 31.374014,26.999885 L 31.47421,27.024033 L 31.574408,27.036106 L 31.674603,27.048179 L 31.774799,27.048179 L 31.874995,27.060253 L 31.960878,27.060253 L 32.061074,27.060253 L 32.146957,27.048179 L 32.247152,27.036106 L 32.34735,27.036106 L 32.447546,27.011959 L 32.533429,26.987811 L 32.619311,26.975737 L 32.719507,26.951591 L 32.80539,26.927443 L 32.891272,26.891223 L 32.977154,26.879148 L 33.063037,26.842929 L 33.148919,26.794633 L 33.234801,26.758412 L 33.30637,26.722192 L 33.392253,26.68597 L 33.478136,26.637676 L 33.621273,26.541087 L 33.778725,26.444498 L 33.921862,26.347909 L 34.064999,26.239246 L 34.193823,26.142658 L 34.336961,26.009848 L 34.45147,25.889111 L 34.580294,25.768375 L 34.694805,25.659712 L 34.809315,25.526902 L 34.923824,25.406165 L 35.024021,25.285429 L 35.124216,25.15262 L 35.224412,25.031884 L 35.324609,24.899074 L 35.396177,24.778338 L 35.48206,24.669675 L 35.567943,24.536864 L 35.711082,24.319539 L 35.839905,24.102215 L 35.954414,23.909036 L 36.040297,23.740005 L 36.16912,23.498533 L 36.212061,23.401944 L 35.453433,23.160472 L 35.424805,23.232914 L 35.295982,23.462311 L 35.210099,23.619269 L 35.109903,23.7883 L 34.995393,23.993552 L 34.852256,24.198804 L 34.780687,24.319539 L 34.694805,24.428201 L 34.623236,24.548938 L 34.537353,24.657601 L 34.45147,24.766264 L 34.351274,24.887 L 34.251078,24.995662 L 34.150882,25.116398 L 34.050685,25.225061 L 33.936175,25.333725 L 33.83598,25.442388 L 33.721469,25.551049 L 33.60696,25.647638 L 33.506764,25.744228 L 33.37794,25.828743 L 33.263429,25.913259 L 33.148919,25.9857 L 33.020096,26.058142 L 32.948527,26.094363 L 32.905586,26.130584 L 32.834017,26.154731 L 32.776762,26.190952 L 32.705193,26.215098 L 32.647939,26.239246 L 32.590684,26.25132 L 32.519116,26.275467 L 32.46186,26.299615 L 32.390291,26.311688 L 32.333035,26.335835 L 32.27578,26.335835 L 32.204211,26.347909 L 32.146957,26.359983 L 32.089703,26.372056 L 32.018133,26.372056 L 31.960878,26.372056 L 31.889309,26.372056 L 31.832055,26.372056 L 31.760486,26.359983 L 31.688917,26.347909 L 31.631662,26.347909 L 31.560094,26.335835 L 31.488526,26.311688 L 31.416956,26.299615 L 31.345387,26.275467 L 31.273818,26.25132 L 31.202249,26.227172 L 31.13068,26.203026 L 31.044797,26.154731 L 30.97323,26.11851 L 30.901661,26.082289 L 30.815777,26.046068 L 30.729896,25.9857 L 30.658327,25.937405 L 30.572444,25.889111 L 30.486562,25.828743 L 30.400679,25.756301 L 30.329111,25.695932 L 30.243229,25.611418 L 30.157345,25.538976 L 30.071463,25.454461 L 29.971267,25.369945 L 29.885384,25.285429 L 29.799501,25.188841 L 29.699306,25.068104 L 29.613423,24.971516 L 29.52754,24.862853 L 29.427345,24.742117 L 29.341463,24.633454 L 29.241265,24.500644 L 29.141069,24.367834 L 29.055186,24.222951 L 28.954991,24.090141 L 28.854794,23.945256 L 28.768911,23.7883 L 28.668716,23.631343 L 28.56852,23.462311 L 28.468322,23.293281 L 28.368127,23.124251 L 28.368127,23.124251 L 27.623812,23.414018 L 27.623812,23.414018 L 27.623812,23.414018"
id="path2519"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.567133,23.438165 L 20.567133,23.438165 L 20.59576,23.365722 L 20.71027,23.136324 L 20.796153,22.979366 L 20.896349,22.798262 L 21.025173,22.59301 L 21.153997,22.375685 L 21.239879,22.279097 L 21.311448,22.15836 L 21.39733,22.049697 L 21.483213,21.92896 L 21.569096,21.808224 L 21.654978,21.699562 L 21.755174,21.578826 L 21.855371,21.470163 L 21.955567,21.349427 L 22.070078,21.240764 L 22.170273,21.132101 L 22.284784,21.02344 L 22.399293,20.92685 L 22.49949,20.830261 L 22.628314,20.733673 L 22.742823,20.649157 L 22.871647,20.576714 L 23.000471,20.504274 L 23.057727,20.468052 L 23.114982,20.431831 L 23.172236,20.39561 L 23.243805,20.371463 L 23.30106,20.347316 L 23.358316,20.323169 L 23.429882,20.299021 L 23.472823,20.286947 L 23.558706,20.2628 L 23.615962,20.238654 L 23.673216,20.22658 L 23.73047,20.22658 L 23.80204,20.202433 L 23.873609,20.202433 L 23.930864,20.190359 L 24.002433,20.190359 L 24.059688,20.190359 L 24.131257,20.190359 L 24.188512,20.190359 L 24.26008,20.190359 L 24.317335,20.202433 L 24.388905,20.202433 L 24.460473,20.22658 L 24.517728,20.22658 L 24.589296,20.250727 L 24.660865,20.2628 L 24.746747,20.299021 L 24.818316,20.323169 L 24.889884,20.359389 L 24.961454,20.383537 L 25.033023,20.419757 L 25.104591,20.455978 L 25.176161,20.504274 L 25.262043,20.552567 L 25.347925,20.612937 L 25.433808,20.661231 L 25.505377,20.721599 L 25.591259,20.781967 L 25.677142,20.842334 L 25.777338,20.92685 L 25.848906,20.999292 L 25.934789,21.083808 L 26.034985,21.180397 L 26.120868,21.264911 L 26.221064,21.349427 L 26.292634,21.458089 L 26.392828,21.566752 L 26.493026,21.675414 L 26.578908,21.796151 L 26.664791,21.916886 L 26.764987,22.037623 L 26.850869,22.170434 L 26.951065,22.303243 L 27.051261,22.448127 L 27.151458,22.59301 L 27.237341,22.749968 L 27.337537,22.906924 L 27.437732,23.075955 L 27.523615,23.232914 L 27.623812,23.414018 L 28.368127,23.124251 L 28.267931,22.943146 L 28.167734,22.762042 L 28.067537,22.59301 L 27.967341,22.436053 L 27.852832,22.267023 L 27.766949,22.110065 L 27.666753,21.953108 L 27.566556,21.820298 L 27.452047,21.675414 L 27.366165,21.542605 L 27.251654,21.409795 L 27.151458,21.276985 L 27.051261,21.168323 L 26.951065,21.05966 L 26.850869,20.938923 L 26.750673,20.830261 L 26.650476,20.721599 L 26.564594,20.62501 L 26.450084,20.540494 L 26.349887,20.443905 L 26.249692,20.359389 L 26.149496,20.286947 L 26.063613,20.202433 L 25.949103,20.129991 L 25.848906,20.069623 L 25.74871,19.99718 L 25.648514,19.936813 L 25.548318,19.876444 L 25.448122,19.82815 L 25.347925,19.779856 L 25.24773,19.731561 L 25.147533,19.695339 L 25.047337,19.65912 L 24.94714,19.622898 L 24.846943,19.59875 L 24.746747,19.562531 L 24.646552,19.550457 L 24.546355,19.526309 L 24.446159,19.514236 L 24.345963,19.502162 L 24.231453,19.490088 L 24.145571,19.490088 L 24.03106,19.490088 L 23.945177,19.490088 L 23.844981,19.502162 L 23.744785,19.514236 L 23.658903,19.526309 L 23.558706,19.550457 L 23.472823,19.562531 L 23.386942,19.586676 L 23.286746,19.59875 L 23.18655,19.622898 L 23.114982,19.65912 L 23.029099,19.695339 L 22.943216,19.731561 L 22.857333,19.767782 L 22.771451,19.804003 L 22.685568,19.840224 L 22.614,19.888517 L 22.513803,19.924739 L 22.384979,20.021328 L 22.241843,20.117917 L 22.084392,20.22658 L 21.955567,20.335242 L 21.81243,20.443905 L 21.683606,20.552567 L 21.554783,20.685377 L 21.425958,20.806113 L 21.311448,20.92685 L 21.196938,21.05966 L 21.082428,21.180397 L 20.982232,21.301133 L 20.882036,21.433943 L 20.796153,21.566752 L 20.695957,21.675414 L 20.610074,21.808224 L 20.524192,21.92896 L 20.43831,22.049697 L 20.295171,22.279097 L 20.166348,22.49642 L 20.051839,22.689599 L 19.965957,22.846557 L 19.837133,23.100103 L 19.808505,23.196691 L 19.808505,23.196691 L 20.567133,23.438165 L 20.567133,23.438165 L 20.567133,23.438165"
id="path2521"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.978883,23.450238 L 11.978883,23.450238 L 12.07908,23.619269 L 12.193588,23.812448 L 12.279472,23.969404 L 12.393982,24.138434 L 12.494178,24.295392 L 12.594375,24.452349 L 12.694571,24.609307 L 12.794767,24.754191 L 12.894963,24.899074 L 12.995159,25.031884 L 13.095355,25.15262 L 13.195551,25.285429 L 13.295748,25.406165 L 13.395944,25.514828 L 13.49614,25.635565 L 13.596338,25.744228 L 13.710846,25.852891 L 13.796729,25.949479 L 13.911239,26.046068 L 13.997122,26.130584 L 14.097318,26.215098 L 14.197514,26.299615 L 14.29771,26.372056 L 14.397906,26.444498 L 14.512417,26.516939 L 14.5983,26.577308 L 14.712809,26.637676 L 14.813005,26.698045 L 14.913201,26.746339 L 15.013398,26.794633 L 15.113594,26.842929 L 15.21379,26.879148 L 15.313986,26.927443 L 15.414183,26.951591 L 15.514379,26.987811 L 15.614576,27.011959 L 15.714772,27.036106 L 15.829282,27.048179 L 15.915165,27.072326 L 16.029674,27.072326 L 16.129871,27.0844 L 16.215754,27.096474 L 16.315949,27.096474 L 16.416145,27.0844 L 16.502028,27.0844 L 16.616538,27.072326 L 16.702421,27.072326 L 16.802617,27.048179 L 16.902813,27.036106 L 16.974382,27.011959 L 17.074579,26.987811 L 17.16046,26.951591 L 17.246344,26.939517 L 17.332226,26.891223 L 17.418108,26.867075 L 17.50399,26.842929 L 17.589873,26.782559 L 17.675756,26.746339 L 17.747324,26.710118 L 17.818894,26.673897 L 17.976345,26.589382 L 18.133796,26.492793 L 18.276933,26.38413 L 18.405757,26.275467 L 18.534581,26.154731 L 18.677718,26.046068 L 18.806542,25.937405 L 18.921053,25.804596 L 19.049876,25.68386 L 19.164386,25.575197 L 19.264582,25.442388 L 19.364779,25.309577 L 19.464974,25.188841 L 19.56517,25.056031 L 19.665367,24.935294 L 19.75125,24.814558 L 19.837133,24.681749 L 19.923015,24.573086 L 20.051839,24.331613 L 20.194976,24.126361 L 20.295171,23.933184 L 20.395368,23.776226 L 20.509878,23.534754 L 20.567133,23.438165 L 19.808505,23.196691 L 19.75125,23.269133 L 19.636739,23.486458 L 19.56517,23.655489 L 19.464974,23.824521 L 19.336151,24.029772 L 19.207326,24.235023 L 19.135759,24.343687 L 19.049876,24.452349 L 18.963994,24.573086 L 18.892425,24.681749 L 18.792229,24.802485 L 18.706346,24.923221 L 18.606149,25.031884 L 18.505953,25.15262 L 18.405757,25.261282 L 18.291247,25.369945 L 18.191051,25.466534 L 18.076541,25.575197 L 17.962031,25.671786 L 17.847522,25.768375 L 17.733011,25.864964 L 17.618501,25.949479 L 17.489676,26.021922 L 17.375167,26.094363 L 17.317912,26.142658 L 17.260657,26.154731 L 17.189088,26.190952 L 17.131833,26.215098 L 17.060264,26.239246 L 17.017323,26.275467 L 16.945755,26.299615 L 16.874186,26.311688 L 16.816932,26.335835 L 16.759676,26.347909 L 16.688108,26.359983 L 16.630851,26.372056 L 16.573597,26.38413 L 16.502028,26.396203 L 16.430459,26.396203 L 16.373203,26.396203 L 16.301636,26.408277 L 16.24438,26.408277 L 16.187126,26.396203 L 16.115556,26.396203 L 16.043988,26.396203 L 15.97242,26.372056 L 15.915165,26.372056 L 15.843595,26.347909 L 15.772027,26.335835 L 15.700458,26.311688 L 15.62889,26.287541 L 15.543006,26.25132 L 15.485752,26.227172 L 15.399869,26.203026 L 15.3283,26.154731 L 15.242418,26.11851 L 15.170848,26.070216 L 15.084966,26.021922 L 15.013398,25.973627 L 14.927516,25.913259 L 14.841633,25.852891 L 14.755751,25.792522 L 14.669869,25.720081 L 14.583986,25.647638 L 14.498103,25.575197 L 14.41222,25.490682 L 14.326338,25.406165 L 14.240455,25.309577 L 14.154574,25.212988 L 14.054376,25.116398 L 13.95418,25.007736 L 13.868298,24.899074 L 13.782416,24.778338 L 13.68222,24.669675 L 13.596338,24.536864 L 13.49614,24.391982 L 13.395944,24.259171 L 13.310061,24.126361 L 13.209865,23.969404 L 13.123983,23.824521 L 13.023787,23.655489 L 12.92359,23.498533 L 12.823395,23.329502 L 12.723198,23.148398 L 12.723198,23.148398 L 11.978883,23.450238 L 11.978883,23.450238 L 11.978883,23.450238"
id="path2523"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.9078912,23.401944 L 4.9508321,23.329502 L 5.0653424,23.100103 L 5.1512243,22.943146 L 5.2514211,22.762042 L 5.3802448,22.568864 L 5.5090684,22.363612 L 5.5806369,22.242875 L 5.6522063,22.146286 L 5.738089,22.025549 L 5.8239708,21.916886 L 5.9241669,21.796151 L 6.0100496,21.675414 L 6.1102465,21.566752 L 6.1961275,21.446016 L 6.3106386,21.337353 L 6.4108347,21.22869 L 6.525345,21.120028 L 6.625541,21.02344 L 6.7400513,20.92685 L 6.8688742,20.830261 L 6.969071,20.733673 L 7.0978947,20.649157 L 7.2124051,20.576714 L 7.3412278,20.504274 L 7.3984829,20.468052 L 7.4700531,20.431831 L 7.5129941,20.407684 L 7.5845617,20.383537 L 7.6418177,20.359389 L 7.7133854,20.335242 L 7.7706412,20.311095 L 7.8278956,20.286947 L 7.8994649,20.2628 L 7.9567201,20.2628 L 8.0139744,20.238654 L 8.0855428,20.22658 L 8.1427989,20.22658 L 8.2143673,20.202433 L 8.2716226,20.202433 L 8.3431909,20.202433 L 8.4004462,20.202433 L 8.4720146,20.202433 L 8.5292698,20.202433 L 8.6008383,20.202433 L 8.6580935,20.202433 L 8.7439761,20.22658 L 8.8012313,20.22658 L 8.8727997,20.250727 L 8.9443683,20.2628 L 9.0159368,20.286947 L 9.087506,20.323169 L 9.1590746,20.335242 L 9.2306431,20.371463 L 9.3022124,20.407684 L 9.3880943,20.443905 L 9.4596637,20.480126 L 9.5312321,20.528421 L 9.6171148,20.576714 L 9.7029973,20.62501 L 9.7745663,20.685377 L 9.8747623,20.733673 L 9.9463303,20.806113 L 10.046527,20.878555 L 10.132409,20.963071 L 10.203978,21.02344 L 10.289861,21.120028 L 10.390057,21.19247 L 10.47594,21.289059 L 10.561822,21.385647 L 10.647704,21.482237 L 10.733586,21.5909 L 10.833783,21.711636 L 10.93398,21.820298 L 11.019863,21.941034 L 11.105745,22.073845 L 11.20594,22.206653 L 11.306137,22.339464 L 11.406333,22.472275 L 11.492216,22.629231 L 11.592411,22.786188 L 11.692608,22.943146 L 11.792804,23.100103 L 11.878686,23.269133 L 11.978883,23.450238 L 12.723198,23.148398 L 12.623002,22.979366 L 12.522806,22.798262 L 12.42261,22.629231 L 12.322413,22.460201 L 12.207903,22.303243 L 12.107706,22.146286 L 12.00751,21.98933 L 11.907315,21.844446 L 11.807118,21.711636 L 11.706922,21.578826 L 11.606726,21.446016 L 11.506529,21.313207 L 11.406333,21.19247 L 11.306137,21.083808 L 11.20594,20.963071 L 11.105745,20.854408 L 11.005549,20.745745 L 10.905352,20.649157 L 10.805156,20.564641 L 10.70496,20.480126 L 10.604764,20.383537 L 10.504567,20.311095 L 10.404371,20.22658 L 10.304174,20.166211 L 10.203978,20.081697 L 10.103782,20.021328 L 10.003585,19.96096 L 9.9033893,19.900592 L 9.8031933,19.852297 L 9.7029973,19.804003 L 9.6028006,19.755707 L 9.5026046,19.719487 L 9.4024084,19.683267 L 9.3022124,19.647046 L 9.2020155,19.622898 L 9.1018194,19.586676 L 8.9873101,19.562531 L 8.8871131,19.550457 L 8.786917,19.526309 L 8.7010344,19.526309 L 8.6008383,19.514236 L 8.486328,19.502162 L 8.4004462,19.502162 L 8.30025,19.502162 L 8.200054,19.526309 L 8.0998571,19.526309 L 8.0139744,19.526309 L 7.9137783,19.550457 L 7.8278956,19.562531 L 7.7420138,19.586676 L 7.6418177,19.622898 L 7.5559341,19.647046 L 7.4700531,19.671194 L 7.3841695,19.695339 L 7.2982878,19.731561 L 7.2124051,19.767782 L 7.1265223,19.804003 L 7.0406396,19.840224 L 6.969071,19.876444 L 6.8831883,19.924739 L 6.7400513,20.009254 L 6.5826001,20.105843 L 6.4394623,20.22658 L 6.2963246,20.323169 L 6.1675009,20.431831 L 6.0243629,20.552567 L 5.9098536,20.673304 L 5.7810299,20.781967 L 5.6665187,20.902704 L 5.5520094,21.035512 L 5.4374999,21.156249 L 5.337303,21.289059 L 5.237107,21.409795 L 5.1369108,21.542605 L 5.0510281,21.663341 L 4.9508321,21.784078 L 4.8792636,21.904814 L 4.7933809,22.025549 L 4.6502439,22.254949 L 4.5214194,22.460201 L 4.4069092,22.653379 L 4.3210273,22.82241 L 4.1922037,23.051809 L 4.1492618,23.148398 L 4.9078912,23.401944"
id="path2525"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.1492618,23.148398 L 4.1349484,23.196691 L 4.1206351,23.232914 L 4.1206351,23.269133 L 4.1206351,23.305354 L 4.1206351,23.329502 L 4.1349484,23.377796 L 4.1492618,23.401944 L 4.1635752,23.426091 L 4.1778902,23.462311 L 4.1922037,23.486458 L 4.2208311,23.510607 L 4.2494588,23.534754 L 4.2780864,23.5589 L 4.3210273,23.570974 L 4.3496539,23.583048 L 4.3925958,23.595121 L 4.4212234,23.607195 L 4.4498509,23.619269 L 4.4927928,23.619269 L 4.5357337,23.619269 L 4.5786746,23.619269 L 4.6073021,23.619269 L 4.6502439,23.619269 L 4.6788706,23.595121 L 4.7218124,23.595121 L 4.7504399,23.583048 L 4.7790676,23.5589 L 4.8220085,23.534754 L 4.8363218,23.498533 L 4.8649494,23.474385 L 4.893577,23.438165 L 4.9078912,23.401944 L 4.1492618,23.148398"
id="path2527"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 5.294362,23.075955 L 5.2800486,23.039735 L 5.2514211,23.003514 L 5.2227936,22.95522 L 5.2084793,22.918998 L 5.1798517,22.894851 L 5.1512243,22.858631 L 5.1225975,22.846557 L 5.0939699,22.82241 L 5.0653424,22.786188 L 5.0367148,22.762042 L 4.9937729,22.749968 L 4.9794596,22.72582 L 4.9078912,22.689599 L 4.8363218,22.665452 L 4.7504399,22.653379 L 4.6931849,22.641305 L 4.6073021,22.629231 L 4.5357337,22.629231 L 4.4498509,22.629231 L 4.3925958,22.641305 L 4.306713,22.653379 L 4.2351446,22.677526 L 4.1635752,22.701673 L 4.0920075,22.737894 L 4.0347515,22.774116 L 3.9774973,22.82241 L 3.9202421,22.846557 L 3.8773012,22.906924 L 3.8343594,22.95522 L 3.7771051,23.015587 L 3.7627918,23.039735 L 3.7627918,23.075955 L 3.7341633,23.100103 L 3.7341633,23.136324 L 3.71985,23.172544 L 3.71985,23.196691 L 3.7055358,23.232914 L 3.7055358,23.269133 L 3.7055358,23.305354 L 3.7055358,23.329502 L 3.71985,23.377796 L 3.71985,23.414018 L 3.71985,23.450238 L 3.7341633,23.486458 L 3.7484767,23.522681 L 3.7627918,23.570974 L 5.294362,23.075955"
id="path2529"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.621039,23.015587 L 11.621039,23.015587 L 11.535157,23.184618 L 11.434961,23.353649 L 11.349078,23.498533 L 11.248881,23.655489 L 11.148686,23.812448 L 11.04849,23.95733 L 10.962608,24.090141 L 10.876725,24.222951 L 10.790843,24.35576 L 10.690645,24.476497 L 10.604764,24.585159 L 10.51888,24.693822 L 10.418685,24.802485 L 10.347115,24.899074 L 10.261233,24.995662 L 10.175351,25.092252 L 10.089468,25.188841 L 10.003585,25.261282 L 9.9320173,25.333725 L 9.8461353,25.406165 L 9.7602523,25.478608 L 9.6886833,25.538976 L 9.6171148,25.599344 L 9.5312321,25.659712 L 9.4596637,25.695932 L 9.3880943,25.756301 L 9.33084,25.792522 L 9.2592706,25.828743 L 9.1733879,25.864964 L 9.130447,25.889111 L 9.0588785,25.925332 L 9.0016234,25.949479 L 8.930055,25.973627 L 8.8727997,25.9857 L 8.829858,26.009848 L 8.7726037,26.009848 L 8.7153486,26.033996 L 8.6580935,26.046068 L 8.6151525,26.046068 L 8.5722117,26.058142 L 8.5149556,26.058142 L 8.4720146,26.058142 L 8.4147595,26.058142 L 8.3718186,26.058142 L 8.3288768,26.058142 L 8.2716226,26.046068 L 8.2143673,26.046068 L 8.1857398,26.046068 L 8.1284846,26.021922 L 8.0855428,26.009848 L 8.0282885,26.009848 L 7.9853468,25.9857 L 7.9280916,25.973627 L 7.8851507,25.949479 L 7.8278956,25.937405 L 7.7849547,25.913259 L 7.7276994,25.889111 L 7.6847578,25.864964 L 7.6275035,25.840817 L 7.5845617,25.816669 L 7.4700531,25.756301 L 7.355542,25.68386 L 7.255346,25.599344 L 7.1408365,25.514828 L 7.0406396,25.442388 L 6.9404435,25.345798 L 6.8259333,25.249209 L 6.7257371,25.15262 L 6.625541,25.056031 L 6.5396583,24.947368 L 6.4394623,24.838705 L 6.3535795,24.730042 L 6.2676969,24.609307 L 6.1818151,24.500644 L 6.0959323,24.391982 L 6.0100496,24.295392 L 5.9384812,24.174656 L 5.8669118,24.078067 L 5.738089,23.872815 L 5.6235787,23.679637 L 5.5233817,23.498533 L 5.4374999,23.353649 L 5.3229904,23.136324 L 5.294362,23.075955 L 3.7627918,23.570974 L 3.820046,23.679637 L 3.9488697,23.92111 L 4.0347515,24.090141 L 4.1635752,24.295392 L 4.2923997,24.512718 L 4.4355375,24.742117 L 4.5214194,24.862853 L 4.6073021,24.995662 L 4.7074982,25.116398 L 4.7933809,25.249209 L 4.893577,25.382019 L 5.0080872,25.502755 L 5.1082833,25.647638 L 5.237107,25.768375 L 5.3516172,25.901185 L 5.4804417,26.046068 L 5.6092645,26.154731 L 5.738089,26.287541 L 5.881226,26.408277 L 6.0243629,26.529013 L 6.1818151,26.64975 L 6.3392662,26.746339 L 6.4967165,26.855001 L 6.6684819,26.951591 L 6.7543647,27.011959 L 6.8545607,27.048179 L 6.9404435,27.096474 L 7.0263253,27.144768 L 7.1265223,27.180989 L 7.2267184,27.21721 L 7.3269144,27.253432 L 7.4271113,27.289652 L 7.5273066,27.325873 L 7.6275035,27.337946 L 7.7420138,27.362094 L 7.8422098,27.386241 L 7.9567201,27.410389 L 8.0569153,27.422463 L 8.1857398,27.422463 L 8.2859359,27.434535 L 8.4004462,27.446608 L 8.5149556,27.434535 L 8.6294667,27.434535 L 8.7439761,27.422463 L 8.8584856,27.422463 L 8.9873101,27.398315 L 9.1018194,27.362094 L 9.2163297,27.35002 L 9.33084,27.325873 L 9.4453494,27.277578 L 9.574173,27.241358 L 9.6886833,27.205136 L 9.8031933,27.144768 L 9.9177033,27.108548 L 10.032213,27.048179 L 10.146724,26.987811 L 10.246919,26.927443 L 10.375743,26.855001 L 10.47594,26.782559 L 10.59045,26.710118 L 10.690645,26.625602 L 10.805156,26.541087 L 10.905352,26.456572 L 11.005549,26.372056 L 11.120059,26.275467 L 11.234568,26.178878 L 11.32045,26.058142 L 11.434961,25.961553 L 11.535157,25.852891 L 11.649667,25.732155 L 11.749864,25.599344 L 11.850059,25.478608 L 11.96457,25.345798 L 12.064765,25.212988 L 12.164961,25.068104 L 12.279472,24.935294 L 12.379668,24.778338 L 12.479865,24.633454 L 12.594375,24.464424 L 12.694571,24.295392 L 12.794767,24.126361 L 12.909276,23.95733 L 13.009473,23.776226 L 13.123983,23.595121 L 13.123983,23.595121 L 11.621039,23.015587 L 11.621039,23.015587 L 11.621039,23.015587"
id="path2531"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.967919,23.039735 L 20.967919,23.039735 L 20.924977,22.918998 L 20.796153,22.677526 L 20.695957,22.508494 L 20.581446,22.315316 L 20.43831,22.085918 L 20.295171,21.856519 L 20.20929,21.735782 L 20.123407,21.615046 L 20.037524,21.482237 L 19.937328,21.349427 L 19.837133,21.216617 L 19.722621,21.095881 L 19.622425,20.963071 L 19.507915,20.830261 L 19.379092,20.697451 L 19.264582,20.564641 L 19.135759,20.443905 L 19.006935,20.323169 L 18.849484,20.202433 L 18.706346,20.069623 L 18.563208,19.96096 L 18.391443,19.840224 L 18.233992,19.743634 L 18.076541,19.647046 L 17.976345,19.59875 L 17.890463,19.550457 L 17.804581,19.502162 L 17.704384,19.453868 L 17.618501,19.42972 L 17.518305,19.381427 L 17.418108,19.345204 L 17.317912,19.321056 L 17.217716,19.296909 L 17.117519,19.260689 L 17.017323,19.236542 L 16.902813,19.212395 L 16.788304,19.200321 L 16.673793,19.176173 L 16.573597,19.176173 L 16.459086,19.164101 L 16.344577,19.164101 L 16.230066,19.164101 L 16.115556,19.164101 L 15.986734,19.176173 L 15.872223,19.188247 L 15.757714,19.212395 L 15.643203,19.236542 L 15.514379,19.260689 L 15.399869,19.284837 L 15.285358,19.321056 L 15.170848,19.357278 L 15.056339,19.405572 L 14.941829,19.453868 L 14.827319,19.490088 L 14.712809,19.562531 L 14.5983,19.622898 L 14.483789,19.683267 L 14.383592,19.743634 L 14.269082,19.816075 L 14.154574,19.888517 L 14.054376,19.973033 L 13.939867,20.057549 L 13.83967,20.142065 L 13.725161,20.22658 L 13.61065,20.335242 L 13.510454,20.431831 L 13.410257,20.528421 L 13.295748,20.637084 L 13.195551,20.745745 L 13.081041,20.866481 L 12.980846,20.999292 L 12.880649,21.120028 L 12.76614,21.252838 L 12.680257,21.373575 L 12.565747,21.530531 L 12.465551,21.663341 L 12.365354,21.820298 L 12.250844,21.977255 L 12.150647,22.134213 L 12.036138,22.303243 L 11.935941,22.472275 L 11.835745,22.641305 L 11.73555,22.82241 L 11.621039,23.015587 L 13.123983,23.595121 L 13.195551,23.426091 L 13.295748,23.25706 L 13.395944,23.100103 L 13.481827,22.943146 L 13.596338,22.786188 L 13.68222,22.641305 L 13.768102,22.508494 L 13.868298,22.375685 L 13.95418,22.242875 L 14.040063,22.122139 L 14.140259,22.013476 L 14.226141,21.904814 L 14.312024,21.796151 L 14.397906,21.699562 L 14.483789,21.602974 L 14.569672,21.506384 L 14.655554,21.421869 L 14.741436,21.349427 L 14.813005,21.264911 L 14.898889,21.19247 L 14.970457,21.120028 L 15.056339,21.05966 L 15.127907,20.999292 L 15.199477,20.963071 L 15.285358,20.902704 L 15.342613,20.854408 L 15.414183,20.806113 L 15.485752,20.769893 L 15.543006,20.733673 L 15.614576,20.709525 L 15.686144,20.685377 L 15.7434,20.649157 L 15.800654,20.637084 L 15.857909,20.612937 L 15.915165,20.600863 L 15.97242,20.588788 L 16.029674,20.564641 L 16.072615,20.564641 L 16.129871,20.552567 L 16.172812,20.552567 L 16.230066,20.540494 L 16.273008,20.540494 L 16.315949,20.540494 L 16.373203,20.540494 L 16.416145,20.540494 L 16.4734,20.552567 L 16.516342,20.552567 L 16.573597,20.564641 L 16.616538,20.576714 L 16.65948,20.588788 L 16.716735,20.600863 L 16.759676,20.612937 L 16.816932,20.62501 L 16.859872,20.637084 L 16.917127,20.673304 L 16.960068,20.685377 L 17.017323,20.709525 L 17.060264,20.733673 L 17.117519,20.769893 L 17.16046,20.794041 L 17.27497,20.854408 L 17.38948,20.92685 L 17.489676,20.999292 L 17.604187,21.083808 L 17.704384,21.168323 L 17.804581,21.252838 L 17.904776,21.349427 L 18.019286,21.446016 L 18.105169,21.554679 L 18.205364,21.663341 L 18.291247,21.75993 L 18.391443,21.880667 L 18.477325,21.98933 L 18.563208,22.110065 L 18.64909,22.206653 L 18.734973,22.315316 L 18.806542,22.436053 L 18.863797,22.532643 L 19.006935,22.737894 L 19.135759,22.931072 L 19.221641,23.112177 L 19.293209,23.25706 L 19.407719,23.462311 L 19.450661,23.534754 L 19.450661,23.534754 L 20.967919,23.039735 L 20.967919,23.039735 L 20.967919,23.039735"
id="path2533"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.294596,22.979366 L 27.294596,22.979366 L 27.208713,23.148398 L 27.108517,23.317428 L 27.00832,23.474385 L 26.922437,23.631343 L 26.822242,23.776226 L 26.736359,23.92111 L 26.636163,24.065993 L 26.550281,24.198804 L 26.450084,24.319539 L 26.364202,24.452349 L 26.264005,24.561012 L 26.178123,24.669675 L 26.09224,24.766264 L 26.020672,24.874926 L 25.920475,24.971516 L 25.834592,25.056031 L 25.74871,25.15262 L 25.662827,25.225061 L 25.591259,25.309577 L 25.505377,25.369945 L 25.433808,25.442388 L 25.362239,25.502755 L 25.276356,25.575197 L 25.204789,25.611418 L 25.133219,25.671786 L 25.06165,25.708007 L 24.990082,25.756301 L 24.932826,25.792522 L 24.861258,25.828743 L 24.804002,25.864964 L 24.732434,25.889111 L 24.675179,25.913259 L 24.617924,25.937405 L 24.560669,25.949479 L 24.503413,25.973627 L 24.446159,25.9857 L 24.388905,25.997774 L 24.345963,26.009848 L 24.288707,26.009848 L 24.245766,26.021922 L 24.188512,26.021922 L 24.145571,26.021922 L 24.088316,26.021922 L 24.045374,26.021922 L 24.002433,26.021922 L 23.945177,26.009848 L 23.902236,26.009848 L 23.844981,26.009848 L 23.80204,25.9857 L 23.759098,25.9857 L 23.701844,25.973627 L 23.673216,25.949479 L 23.615962,25.937405 L 23.558706,25.925332 L 23.515764,25.901185 L 23.45851,25.877038 L 23.401256,25.852891 L 23.358316,25.828743 L 23.30106,25.804596 L 23.258118,25.780449 L 23.14361,25.708007 L 23.029099,25.647638 L 22.928903,25.575197 L 22.828705,25.490682 L 22.714196,25.406165 L 22.614,25.309577 L 22.49949,25.212988 L 22.399293,25.116398 L 22.313411,25.01981 L 22.213215,24.899074 L 22.127332,24.802485 L 22.027137,24.681749 L 21.941254,24.573086 L 21.855371,24.464424 L 21.769488,24.367834 L 21.697919,24.247097 L 21.612036,24.138434 L 21.554783,24.029772 L 21.411644,23.836594 L 21.282821,23.643417 L 21.196938,23.462311 L 21.12537,23.317428 L 20.996547,23.100103 L 20.967919,23.039735 L 19.450661,23.534754 L 19.493602,23.643417 L 19.622425,23.872815 L 19.722621,24.065993 L 19.837133,24.259171 L 19.965957,24.476497 L 20.123407,24.705895 L 20.20929,24.838705 L 20.280858,24.959442 L 20.381054,25.080178 L 20.481251,25.212988 L 20.581446,25.345798 L 20.681642,25.466534 L 20.796153,25.599344 L 20.896349,25.744228 L 21.039488,25.864964 L 21.153997,25.997774 L 21.282821,26.11851 L 21.411644,26.239246 L 21.554783,26.372056 L 21.697919,26.492793 L 21.855371,26.613529 L 22.012822,26.722192 L 22.170273,26.818781 L 22.327725,26.915369 L 22.427921,26.975737 L 22.513803,27.024033 L 22.614,27.072326 L 22.714196,27.108548 L 22.800079,27.144768 L 22.900275,27.180989 L 23.000471,27.21721 L 23.100668,27.253432 L 23.18655,27.277578 L 23.30106,27.3138 L 23.415569,27.325873 L 23.515764,27.35002 L 23.630275,27.362094 L 23.73047,27.386241 L 23.844981,27.398315 L 23.959492,27.398315 L 24.074002,27.410389 L 24.188512,27.410389 L 24.303022,27.398315 L 24.417531,27.386241 L 24.546355,27.374168 L 24.660865,27.362094 L 24.789688,27.337946 L 24.904199,27.3138 L 25.004395,27.277578 L 25.118906,27.241358 L 25.233416,27.21721 L 25.347925,27.168915 L 25.462436,27.120622 L 25.576945,27.072326 L 25.691455,27.011959 L 25.805965,26.951591 L 25.920475,26.879148 L 26.034985,26.818781 L 26.149496,26.746339 L 26.249692,26.68597 L 26.364202,26.589382 L 26.464398,26.516939 L 26.578908,26.432425 L 26.693417,26.335835 L 26.793615,26.239246 L 26.89381,26.142658 L 27.00832,26.046068 L 27.108517,25.925332 L 27.223026,25.816669 L 27.323224,25.695932 L 27.437732,25.575197 L 27.523615,25.454461 L 27.638125,25.309577 L 27.738321,25.188841 L 27.838518,25.031884 L 27.953027,24.899074 L 28.053224,24.742117 L 28.15342,24.585159 L 28.253617,24.428201 L 28.368127,24.271245 L 28.468322,24.102215 L 28.56852,23.92111 L 28.683029,23.752078 L 28.783225,23.5589 L 28.783225,23.5589 L 27.294596,22.979366 L 27.294596,22.979366 L 27.294596,22.979366"
id="path2535"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.612847,23.075955 L 36.612847,23.075955 L 36.569906,22.95522 L 36.455395,22.713747 L 36.355199,22.544716 L 36.24069,22.339464 L 36.097552,22.110065 L 35.954414,21.892741 L 35.868532,21.75993 L 35.782649,21.639193 L 35.696767,21.506384 L 35.59657,21.373575 L 35.496374,21.252838 L 35.396177,21.107954 L 35.281668,20.975144 L 35.167158,20.842334 L 35.052648,20.709525 L 34.923824,20.588788 L 34.795,20.455978 L 34.666177,20.323169 L 34.52304,20.202433 L 34.379902,20.081697 L 34.222451,19.973033 L 34.064999,19.852297 L 33.907549,19.743634 L 33.735783,19.647046 L 33.649902,19.59875 L 33.564019,19.550457 L 33.463822,19.502162 L 33.37794,19.453868 L 33.277742,19.42972 L 33.177547,19.381427 L 33.091664,19.345204 L 32.991469,19.308983 L 32.891272,19.272763 L 32.791076,19.248615 L 32.676565,19.236542 L 32.57637,19.200321 L 32.46186,19.188247 L 32.34735,19.176173 L 32.232839,19.164101 L 32.118329,19.152027 L 32.018133,19.139953 L 31.903622,19.139953 L 31.789114,19.152027 L 31.674603,19.164101 L 31.545779,19.176173 L 31.43127,19.188247 L 31.31676,19.212395 L 31.202249,19.236542 L 31.073425,19.272763 L 30.958915,19.296909 L 30.844406,19.333131 L 30.729896,19.369353 L 30.615385,19.42972 L 30.500877,19.478014 L 30.386365,19.526309 L 30.271855,19.586676 L 30.157345,19.65912 L 30.057148,19.719487 L 29.94264,19.79193 L 29.828129,19.864372 L 29.713619,19.936813 L 29.613423,20.033402 L 29.498913,20.105843 L 29.398717,20.202433 L 29.284207,20.299021 L 29.18401,20.39561 L 29.083814,20.504274 L 28.969304,20.612937 L 28.854794,20.721599 L 28.768911,20.842334 L 28.654402,20.963071 L 28.554205,21.095881 L 28.439696,21.216617 L 28.339499,21.349427 L 28.239303,21.494311 L 28.139107,21.639193 L 28.024596,21.796151 L 27.9244,21.941034 L 27.80989,22.110065 L 27.709694,22.267023 L 27.609498,22.436053 L 27.509302,22.617157 L 27.409105,22.786188 L 27.294596,22.979366 L 28.783225,23.5589 L 28.883421,23.38987 L 28.983617,23.22084 L 29.069499,23.051809 L 29.169697,22.906924 L 29.255579,22.749968 L 29.355776,22.617157 L 29.441658,22.472275 L 29.541854,22.351538 L 29.627736,22.218727 L 29.713619,22.097992 L 29.799501,21.977255 L 29.899698,21.868593 L 29.985581,21.75993 L 30.071463,21.663341 L 30.157345,21.566752 L 30.243229,21.470163 L 30.329111,21.385647 L 30.400679,21.313207 L 30.486562,21.240764 L 30.572444,21.168323 L 30.644013,21.095881 L 30.715582,21.035512 L 30.801464,20.975144 L 30.873032,20.92685 L 30.944601,20.878555 L 31.016171,20.830261 L 31.087738,20.794041 L 31.159308,20.745745 L 31.230877,20.709525 L 31.273818,20.685377 L 31.345387,20.649157 L 31.402642,20.637084 L 31.47421,20.612937 L 31.517152,20.600863 L 31.574408,20.576714 L 31.631662,20.564641 L 31.688917,20.552567 L 31.731858,20.540494 L 31.789114,20.540494 L 31.832055,20.528421 L 31.889309,20.528421 L 31.932251,20.528421 L 31.989506,20.528421 L 32.032447,20.528421 L 32.075388,20.528421 L 32.118329,20.540494 L 32.16127,20.540494 L 32.218526,20.552567 L 32.261467,20.552567 L 32.304408,20.576714 L 32.361664,20.588788 L 32.404604,20.600863 L 32.46186,20.612937 L 32.504801,20.637084 L 32.562056,20.649157 L 32.619311,20.673304 L 32.662252,20.709525 L 32.719507,20.733673 L 32.776762,20.757819 L 32.819704,20.781967 L 32.934213,20.842334 L 33.034409,20.92685 L 33.148919,20.999292 L 33.249115,21.083808 L 33.349312,21.168323 L 33.463822,21.252838 L 33.564019,21.349427 L 33.664215,21.458089 L 33.76441,21.566752 L 33.850293,21.663341 L 33.95049,21.772004 L 34.050685,21.892741 L 34.136568,22.001404 L 34.222451,22.110065 L 34.294019,22.218727 L 34.379902,22.339464 L 34.45147,22.448127 L 34.52304,22.544716 L 34.651864,22.762042 L 34.780687,22.95522 L 34.880883,23.124251 L 34.952452,23.269133 L 35.066961,23.498533 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 36.612847,23.075955"
id="path2537"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 42.939524,23.015587 L 42.939524,23.015587 L 42.853641,23.184618 L 42.767759,23.353649 L 42.653249,23.498533 L 42.567367,23.655489 L 42.46717,23.812448 L 42.381288,23.95733 L 42.281091,24.090141 L 42.195209,24.222951 L 42.109327,24.35576 L 42.009131,24.476497 L 41.923248,24.585159 L 41.837365,24.693822 L 41.751482,24.802485 L 41.665599,24.899074 L 41.579718,24.995662 L 41.479521,25.092252 L 41.407952,25.188841 L 41.32207,25.261282 L 41.236187,25.333725 L 41.150305,25.406165 L 41.078736,25.466534 L 41.007168,25.538976 L 40.935599,25.599344 L 40.849716,25.659712 L 40.778147,25.695932 L 40.706579,25.756301 L 40.635009,25.792522 L 40.577755,25.828743 L 40.506186,25.864964 L 40.448931,25.889111 L 40.377363,25.925332 L 40.320107,25.949479 L 40.262853,25.973627 L 40.205598,25.9857 L 40.148343,26.009848 L 40.091087,26.009848 L 40.033833,26.033996 L 39.990891,26.046068 L 39.933637,26.046068 L 39.890696,26.046068 L 39.83344,26.058142 L 39.7905,26.058142 L 39.747558,26.058142 L 39.690302,26.058142 L 39.647361,26.058142 L 39.590106,26.046068 L 39.547165,26.046068 L 39.504224,26.046068 L 39.446969,26.021922 L 39.389714,26.009848 L 39.361086,26.009848 L 39.30383,25.9857 L 39.26089,25.973627 L 39.203635,25.949479 L 39.160694,25.937405 L 39.117753,25.913259 L 39.046183,25.889111 L 39.003242,25.864964 L 38.945988,25.840817 L 38.903046,25.816669 L 38.788536,25.756301 L 38.68834,25.671786 L 38.573829,25.599344 L 38.473633,25.514828 L 38.359123,25.442388 L 38.258927,25.345798 L 38.158732,25.249209 L 38.058535,25.15262 L 37.958338,25.043958 L 37.872457,24.935294 L 37.77226,24.838705 L 37.686378,24.730042 L 37.58618,24.609307 L 37.500298,24.500644 L 37.428729,24.391982 L 37.342848,24.283319 L 37.271278,24.174656 L 37.19971,24.078067 L 37.056573,23.860741 L 36.942063,23.679637 L 36.841867,23.498533 L 36.770299,23.353649 L 36.655789,23.136324 L 36.612847,23.075955 L 35.095589,23.5589 L 35.152845,23.679637 L 35.281668,23.909036 L 35.367551,24.090141 L 35.48206,24.295392 L 35.610884,24.500644 L 35.768336,24.730042 L 35.854218,24.862853 L 35.940101,24.995662 L 36.025983,25.116398 L 36.126178,25.249209 L 36.226376,25.369945 L 36.340885,25.502755 L 36.441082,25.635565 L 36.555591,25.768375 L 36.684415,25.901185 L 36.81324,26.021922 L 36.927749,26.154731 L 37.056573,26.287541 L 37.214023,26.408277 L 37.357162,26.529013 L 37.500298,26.637676 L 37.65775,26.746339 L 37.829515,26.855001 L 37.986966,26.951591 L 38.087163,26.999885 L 38.173045,27.048179 L 38.273241,27.096474 L 38.359123,27.132696 L 38.445006,27.168915 L 38.559516,27.21721 L 38.645399,27.253432 L 38.745595,27.277578 L 38.845792,27.3138 L 38.945988,27.337946 L 39.060498,27.362094 L 39.160694,27.386241 L 39.275204,27.410389 L 39.3754,27.422463 L 39.489911,27.422463 L 39.604419,27.434535 L 39.71893,27.434535 L 39.83344,27.434535 L 39.947951,27.434535 L 40.06246,27.422463 L 40.191284,27.410389 L 40.305794,27.398315 L 40.420303,27.362094 L 40.534814,27.35002 L 40.649323,27.3138 L 40.778147,27.277578 L 40.892658,27.241358 L 41.007168,27.205136 L 41.107364,27.144768 L 41.221874,27.096474 L 41.350698,27.048179 L 41.450893,26.987811 L 41.565404,26.927443 L 41.679913,26.855001 L 41.794424,26.782559 L 41.908934,26.710118 L 42.009131,26.625602 L 42.123641,26.541087 L 42.223836,26.456572 L 42.338347,26.372056 L 42.438542,26.275467 L 42.553053,26.178878 L 42.653249,26.058142 L 42.767759,25.961553 L 42.867955,25.852891 L 42.982465,25.732155 L 43.082662,25.599344 L 43.182858,25.478608 L 43.297368,25.345798 L 43.38325,25.212988 L 43.497761,25.068104 L 43.597957,24.935294 L 43.698152,24.778338 L 43.812662,24.633454 L 43.912858,24.464424 L 44.013056,24.295392 L 44.127566,24.126361 L 44.227763,23.95733 L 44.327958,23.776226 L 44.428154,23.595121 L 44.428154,23.595121 L 42.939524,23.015587 L 42.939524,23.015587 L 42.939524,23.015587"
id="path2539"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 52.272089,23.027661 L 52.229147,22.918998 L 52.100324,22.677526 L 52.000126,22.49642 L 51.885618,22.303243 L 51.756794,22.085918 L 51.613656,21.856519 L 51.527773,21.735782 L 51.427577,21.602974 L 51.341695,21.470163 L 51.241499,21.349427 L 51.141301,21.216617 L 51.041106,21.095881 L 50.926595,20.963071 L 50.812087,20.830261 L 50.697577,20.697451 L 50.568754,20.564641 L 50.43993,20.443905 L 50.311106,20.323169 L 50.167967,20.190359 L 50.024831,20.069623 L 49.867379,19.96096 L 49.709929,19.840224 L 49.552477,19.743634 L 49.380712,19.647046 L 49.294829,19.59875 L 49.208946,19.550457 L 49.10875,19.502162 L 49.022867,19.453868 L 48.922672,19.42972 L 48.822475,19.381427 L 48.736592,19.345204 L 48.636397,19.321056 L 48.521886,19.284837 L 48.421691,19.260689 L 48.321495,19.236542 L 48.206984,19.212395 L 48.106788,19.188247 L 47.992277,19.176173 L 47.877768,19.176173 L 47.763257,19.164101 L 47.648748,19.164101 L 47.534238,19.164101 L 47.419728,19.164101 L 47.305218,19.176173 L 47.190709,19.188247 L 47.076198,19.200321 L 46.961687,19.236542 L 46.847179,19.248615 L 46.718354,19.284837 L 46.603844,19.321056 L 46.489334,19.357278 L 46.374825,19.405572 L 46.260315,19.441794 L 46.145804,19.502162 L 46.031294,19.562531 L 45.916783,19.622898 L 45.802274,19.683267 L 45.702078,19.743634 L 45.587567,19.816075 L 45.473058,19.888517 L 45.372862,19.973033 L 45.258352,20.057549 L 45.158155,20.142065 L 45.043646,20.22658 L 44.929135,20.335242 L 44.828938,20.431831 L 44.728742,20.528421 L 44.628546,20.637084 L 44.514036,20.745745 L 44.41384,20.866481 L 44.29933,20.999292 L 44.199135,21.120028 L 44.098938,21.252838 L 43.984428,21.385647 L 43.884231,21.530531 L 43.784034,21.663341 L 43.683839,21.820298 L 43.569328,21.977255 L 43.469132,22.134213 L 43.368937,22.303243 L 43.254426,22.472275 L 43.154231,22.641305 L 43.054034,22.82241 L 42.939524,23.015587 L 44.428154,23.595121 L 44.52835,23.426091 L 44.628546,23.25706 L 44.714429,23.100103 L 44.814624,22.943146 L 44.900507,22.786188 L 45.000704,22.641305 L 45.086587,22.508494 L 45.186783,22.375685 L 45.272666,22.242875 L 45.372862,22.122139 L 45.458744,22.013476 L 45.544626,21.904814 L 45.630508,21.796151 L 45.716392,21.699562 L 45.802274,21.602974 L 45.888156,21.506384 L 45.974038,21.421869 L 46.059921,21.349427 L 46.145804,21.264911 L 46.217374,21.19247 L 46.303256,21.120028 L 46.374825,21.05966 L 46.446393,20.999292 L 46.517962,20.938923 L 46.589531,20.902704 L 46.661098,20.842334 L 46.732668,20.806113 L 46.804237,20.769893 L 46.861492,20.733673 L 46.93306,20.709525 L 47.004629,20.673304 L 47.04757,20.649157 L 47.119139,20.637084 L 47.176394,20.612937 L 47.23365,20.600863 L 47.290904,20.576714 L 47.333846,20.564641 L 47.391101,20.552567 L 47.434041,20.552567 L 47.491296,20.552567 L 47.534238,20.540494 L 47.577179,20.540494 L 47.634435,20.540494 L 47.677375,20.540494 L 47.73463,20.540494 L 47.777571,20.552567 L 47.820512,20.552567 L 47.877768,20.564641 L 47.920708,20.576714 L 47.963649,20.576714 L 48.020905,20.600863 L 48.07816,20.612937 L 48.121101,20.62501 L 48.178356,20.637084 L 48.221298,20.673304 L 48.278553,20.685377 L 48.321495,20.709525 L 48.37875,20.733673 L 48.436005,20.769893 L 48.478945,20.781967 L 48.593455,20.842334 L 48.693651,20.92685 L 48.793848,20.999292 L 48.908357,21.083808 L 49.008554,21.168323 L 49.10875,21.252838 L 49.223261,21.349427 L 49.323457,21.446016 L 49.423653,21.554679 L 49.509536,21.663341 L 49.609732,21.75993 L 49.695615,21.868593 L 49.781497,21.98933 L 49.867379,22.085918 L 49.953262,22.206653 L 50.024831,22.315316 L 50.110712,22.42398 L 50.182282,22.532643 L 50.311106,22.737894 L 50.425616,22.918998 L 50.525813,23.100103 L 50.611694,23.232914 L 50.711891,23.462311 L 50.754832,23.522681 L 52.272089,23.027661"
id="path2541"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 50.754832,23.522681 L 50.769146,23.5589 L 50.797773,23.595121 L 50.812087,23.643417 L 50.840713,23.679637 L 50.869341,23.691711 L 50.883654,23.740005 L 50.912282,23.764153 L 50.940909,23.7883 L 50.983851,23.812448 L 51.012478,23.836594 L 51.041106,23.848667 L 51.069734,23.872815 L 51.09836,23.896962 L 51.141301,23.909036 L 51.184243,23.92111 L 51.212871,23.933184 L 51.28444,23.945256 L 51.356008,23.95733 L 51.427577,23.969404 L 51.51346,23.969404 L 51.58503,23.969404 L 51.656597,23.95733 L 51.74248,23.933184 L 51.799736,23.92111 L 51.885618,23.896962 L 51.942872,23.860741 L 52.014442,23.836594 L 52.071696,23.7883 L 52.128951,23.752078 L 52.171892,23.691711 L 52.214833,23.643417 L 52.257773,23.583048 L 52.272089,23.5589 L 52.300715,23.522681 L 52.300715,23.498533 L 52.31503,23.462311 L 52.329344,23.438165 L 52.329344,23.401944 L 52.329344,23.365722 L 52.329344,23.329502 L 52.329344,23.293281 L 52.329344,23.269133 L 52.329344,23.22084 L 52.329344,23.184618 L 52.31503,23.148398 L 52.300715,23.112177 L 52.300715,23.075955 L 52.272089,23.027661 L 50.754832,23.522681"
id="path2543"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2545"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2547"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2549"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2551"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2553"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2555"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2557"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2559"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2561"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2563"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2565"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2567"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2569"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2571"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2573"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2575"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.899931,23.450238 L 51.899931,23.401944 L 51.914244,23.365722 L 51.928558,23.329502 L 51.928558,23.293281 L 51.914244,23.269133 L 51.914244,23.232914 L 51.899931,23.196691 L 51.885618,23.172544 L 51.871304,23.136324 L 51.842676,23.112177 L 51.814049,23.088029 L 51.785421,23.075955 L 51.756794,23.039735 L 51.728166,23.027661 L 51.699538,23.015587 L 51.656597,23.003514 L 51.62797,22.99144 L 51.58503,22.979366 L 51.542088,22.979366 L 51.51346,22.979366 L 51.470518,22.979366 L 51.441891,22.979366 L 51.39895,22.99144 L 51.356008,23.003514 L 51.327381,23.015587 L 51.298753,23.015587 L 51.255812,23.039735 L 51.227184,23.075955 L 51.198557,23.100103 L 51.184243,23.124251 L 51.155616,23.160472 L 51.141301,23.196691 L 51.899931,23.450238"
id="path2577"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 43.311681,23.450238 L 43.311681,23.450238 L 43.411878,23.619269 L 43.497761,23.812448 L 43.61227,23.969404 L 43.712467,24.138434 L 43.812662,24.295392 L 43.912858,24.452349 L 44.013056,24.609307 L 44.127566,24.754191 L 44.213448,24.899074 L 44.327958,25.031884 L 44.41384,25.15262 L 44.52835,25.285429 L 44.628546,25.406165 L 44.728742,25.514828 L 44.814624,25.635565 L 44.929135,25.744228 L 45.029331,25.852891 L 45.129528,25.949479 L 45.229724,26.046068 L 45.32992,26.130584 L 45.430117,26.215098 L 45.530313,26.299615 L 45.630508,26.372056 L 45.730705,26.444498 L 45.816588,26.516939 L 45.931097,26.577308 L 46.031294,26.637676 L 46.13149,26.698045 L 46.231687,26.746339 L 46.331884,26.794633 L 46.446393,26.842929 L 46.532276,26.879148 L 46.632472,26.927443 L 46.732668,26.951591 L 46.832864,26.987811 L 46.93306,27.011959 L 47.033256,27.036106 L 47.133453,27.048179 L 47.23365,27.072326 L 47.348159,27.0844 L 47.434041,27.0844 L 47.548552,27.096474 L 47.634435,27.096474 L 47.73463,27.096474 L 47.834826,27.0844 L 47.920708,27.072326 L 48.020905,27.072326 L 48.121101,27.048179 L 48.206984,27.036106 L 48.307181,27.011959 L 48.393063,26.987811 L 48.478945,26.963665 L 48.564828,26.939517 L 48.665025,26.903296 L 48.736592,26.879148 L 48.822475,26.842929 L 48.908357,26.794633 L 48.99424,26.758412 L 49.065809,26.710118 L 49.151691,26.673897 L 49.309143,26.589382 L 49.452281,26.492793 L 49.595418,26.38413 L 49.738556,26.275467 L 49.867379,26.166805 L 49.996203,26.046068 L 50.125027,25.937405 L 50.253851,25.816669 L 50.36836,25.695932 L 50.482871,25.575197 L 50.597381,25.442388 L 50.697577,25.309577 L 50.797773,25.188841 L 50.897968,25.068104 L 50.998164,24.935294 L 51.084047,24.814558 L 51.169929,24.693822 L 51.241499,24.573086 L 51.39895,24.35576 L 51.527773,24.138434 L 51.62797,23.945256 L 51.728166,23.776226 L 51.85699,23.546827 L 51.899931,23.450238 L 51.141301,23.196691 L 51.09836,23.269133 L 50.983851,23.498533 L 50.897968,23.655489 L 50.797773,23.836594 L 50.668949,24.029772 L 50.540126,24.235023 L 50.468557,24.35576 L 50.382675,24.464424 L 50.296792,24.573086 L 50.210909,24.693822 L 50.125027,24.802485 L 50.024831,24.923221 L 49.924634,25.031884 L 49.838751,25.15262 L 49.738556,25.261282 L 49.624045,25.369945 L 49.52385,25.478608 L 49.40934,25.575197 L 49.294829,25.68386 L 49.180319,25.768375 L 49.065809,25.864964 L 48.936986,25.949479 L 48.822475,26.021922 L 48.693651,26.106436 L 48.636397,26.142658 L 48.579142,26.154731 L 48.507573,26.203026 L 48.450319,26.215098 L 48.393063,26.239246 L 48.321495,26.275467 L 48.264239,26.299615 L 48.206984,26.311688 L 48.135415,26.335835 L 48.07816,26.347909 L 48.006591,26.359983 L 47.949336,26.372056 L 47.892082,26.38413 L 47.820512,26.396203 L 47.763257,26.396203 L 47.691689,26.408277 L 47.634435,26.408277 L 47.562866,26.408277 L 47.491296,26.396203 L 47.434041,26.396203 L 47.362474,26.396203 L 47.305218,26.372056 L 47.23365,26.372056 L 47.162081,26.347909 L 47.090511,26.335835 L 47.018943,26.311688 L 46.947374,26.287541 L 46.875805,26.25132 L 46.804237,26.227172 L 46.718354,26.203026 L 46.646786,26.154731 L 46.560903,26.11851 L 46.489334,26.070216 L 46.417766,26.021922 L 46.331884,25.973627 L 46.246001,25.925332 L 46.160119,25.852891 L 46.088549,25.792522 L 46.002667,25.720081 L 45.916783,25.659712 L 45.816588,25.575197 L 45.74502,25.490682 L 45.644823,25.406165 L 45.55894,25.309577 L 45.473058,25.212988 L 45.372862,25.116398 L 45.286979,25.007736 L 45.201097,24.899074 L 45.1009,24.778338 L 45.015018,24.669675 L 44.914822,24.536864 L 44.814624,24.391982 L 44.728742,24.259171 L 44.628546,24.126361 L 44.52835,23.969404 L 44.442468,23.824521 L 44.342271,23.655489 L 44.242075,23.498533 L 44.14188,23.329502 L 44.041683,23.148398 L 44.041683,23.148398 L 43.311681,23.450238 L 43.311681,23.450238 L 43.311681,23.450238"
id="path2579"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.212061,23.401944 L 36.212061,23.401944 L 36.255003,23.329502 L 36.369513,23.112177 L 36.455395,22.95522 L 36.555591,22.774116 L 36.684415,22.580938 L 36.81324,22.363612 L 36.884808,22.254949 L 36.970691,22.146286 L 37.04226,22.025549 L 37.128142,21.916886 L 37.228337,21.796151 L 37.31422,21.675414 L 37.414415,21.566752 L 37.514612,21.446016 L 37.614808,21.349427 L 37.729319,21.22869 L 37.829515,21.120028 L 37.944025,21.02344 L 38.044221,20.92685 L 38.158732,20.830261 L 38.287555,20.733673 L 38.402064,20.649157 L 38.530888,20.576714 L 38.659712,20.504274 L 38.716968,20.468052 L 38.774222,20.443905 L 38.831477,20.419757 L 38.903046,20.383537 L 38.960302,20.359389 L 39.03187,20.335242 L 39.089124,20.311095 L 39.14638,20.286947 L 39.217949,20.2628 L 39.275204,20.2628 L 39.332459,20.238654 L 39.389714,20.22658 L 39.461282,20.22658 L 39.518537,20.202433 L 39.590106,20.202433 L 39.647361,20.202433 L 39.71893,20.202433 L 39.7905,20.202433 L 39.847754,20.202433 L 39.919323,20.202433 L 39.976578,20.22658 L 40.048147,20.22658 L 40.119715,20.22658 L 40.191284,20.2628 L 40.262853,20.2628 L 40.334421,20.299021 L 40.391676,20.323169 L 40.463245,20.335242 L 40.549127,20.371463 L 40.635009,20.407684 L 40.706579,20.443905 L 40.778147,20.480126 L 40.86403,20.528421 L 40.935599,20.576714 L 41.021482,20.62501 L 41.107364,20.685377 L 41.193246,20.733673 L 41.264816,20.806113 L 41.350698,20.878555 L 41.43658,20.963071 L 41.522463,21.02344 L 41.608345,21.120028 L 41.708541,21.204544 L 41.794424,21.289059 L 41.880306,21.385647 L 41.980503,21.482237 L 42.066385,21.5909 L 42.152267,21.711636 L 42.252464,21.820298 L 42.338347,21.941034 L 42.438542,22.073845 L 42.538739,22.206653 L 42.624621,22.339464 L 42.724817,22.472275 L 42.825014,22.629231 L 42.910895,22.786188 L 43.011092,22.943146 L 43.11129,23.100103 L 43.211485,23.269133 L 43.311681,23.450238 L 44.041683,23.148398 L 43.941486,22.979366 L 43.84129,22.798262 L 43.741093,22.629231 L 43.640897,22.460201 L 43.540701,22.303243 L 43.440505,22.146286 L 43.340309,21.98933 L 43.225798,21.844446 L 43.139916,21.711636 L 43.025407,21.578826 L 42.92521,21.446016 L 42.825014,21.313207 L 42.724817,21.19247 L 42.624621,21.083808 L 42.538739,20.963071 L 42.424229,20.854408 L 42.324032,20.745745 L 42.223836,20.649157 L 42.123641,20.564641 L 42.023443,20.480126 L 41.923248,20.383537 L 41.823052,20.299021 L 41.722854,20.22658 L 41.622658,20.166211 L 41.522463,20.081697 L 41.422265,20.033402 L 41.32207,19.96096 L 41.221874,19.900592 L 41.121677,19.852297 L 41.021482,19.804003 L 40.906971,19.755707 L 40.821088,19.719487 L 40.706579,19.683267 L 40.606382,19.647046 L 40.506186,19.622898 L 40.40599,19.586676 L 40.305794,19.562531 L 40.205598,19.550457 L 40.105401,19.526309 L 40.005206,19.526309 L 39.905009,19.514236 L 39.804812,19.502162 L 39.704617,19.502162 L 39.604419,19.502162 L 39.518537,19.526309 L 39.418342,19.526309 L 39.318145,19.526309 L 39.232263,19.550457 L 39.14638,19.562531 L 39.046183,19.59875 L 38.960302,19.622898 L 38.874419,19.647046 L 38.788536,19.671194 L 38.68834,19.695339 L 38.602457,19.731561 L 38.530888,19.767782 L 38.445006,19.804003 L 38.359123,19.840224 L 38.287555,19.888517 L 38.201673,19.924739 L 38.044221,20.021328 L 37.901085,20.117917 L 37.757946,20.22658 L 37.600496,20.323169 L 37.471671,20.431831 L 37.342848,20.552567 L 37.214023,20.673304 L 37.099514,20.794041 L 36.970691,20.914777 L 36.856181,21.035512 L 36.755985,21.168323 L 36.641474,21.289059 L 36.541278,21.409795 L 36.455395,21.542605 L 36.355199,21.663341 L 36.269317,21.796151 L 36.16912,21.916886 L 36.097552,22.025549 L 35.954414,22.254949 L 35.82559,22.472275 L 35.711082,22.653379 L 35.625199,22.82241 L 35.496374,23.051809 L 35.453433,23.160472 L 35.453433,23.160472 L 36.212061,23.401944 L 36.212061,23.401944 L 36.212061,23.401944"
id="path2581"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.623812,23.414018 L 27.623812,23.414018 L 27.724007,23.595121 L 27.838518,23.776226 L 27.938713,23.945256 L 28.038909,24.114288 L 28.139107,24.271245 L 28.239303,24.428201 L 28.339499,24.573086 L 28.439696,24.730042 L 28.539891,24.862853 L 28.640088,24.995662 L 28.740284,25.128472 L 28.84048,25.249209 L 28.940676,25.369945 L 29.040873,25.490682 L 29.141069,25.599344 L 29.241265,25.708007 L 29.355776,25.816669 L 29.455972,25.913259 L 29.556168,26.009848 L 29.656365,26.094363 L 29.742247,26.178878 L 29.842443,26.263394 L 29.956953,26.335835 L 30.057148,26.408277 L 30.157345,26.480719 L 30.257542,26.541087 L 30.357738,26.601456 L 30.457935,26.661823 L 30.558131,26.710118 L 30.658327,26.770486 L 30.758523,26.818781 L 30.858719,26.842929 L 30.958915,26.879148 L 31.059112,26.927443 L 31.159308,26.951591 L 31.273818,26.987811 L 31.374014,26.999885 L 31.47421,27.024033 L 31.574408,27.036106 L 31.674603,27.048179 L 31.774799,27.048179 L 31.874995,27.060253 L 31.960878,27.060253 L 32.061074,27.060253 L 32.146957,27.048179 L 32.247152,27.036106 L 32.34735,27.036106 L 32.447546,27.011959 L 32.533429,26.987811 L 32.619311,26.975737 L 32.719507,26.951591 L 32.80539,26.927443 L 32.891272,26.891223 L 32.977154,26.879148 L 33.063037,26.842929 L 33.148919,26.794633 L 33.234801,26.758412 L 33.30637,26.722192 L 33.392253,26.68597 L 33.478136,26.637676 L 33.621273,26.541087 L 33.778725,26.444498 L 33.921862,26.347909 L 34.064999,26.239246 L 34.193823,26.142658 L 34.336961,26.009848 L 34.45147,25.889111 L 34.580294,25.768375 L 34.694805,25.659712 L 34.809315,25.526902 L 34.923824,25.406165 L 35.024021,25.285429 L 35.124216,25.15262 L 35.224412,25.031884 L 35.324609,24.899074 L 35.396177,24.778338 L 35.48206,24.669675 L 35.567943,24.536864 L 35.711082,24.319539 L 35.839905,24.102215 L 35.954414,23.909036 L 36.040297,23.740005 L 36.16912,23.498533 L 36.212061,23.401944 L 35.453433,23.160472 L 35.424805,23.232914 L 35.295982,23.462311 L 35.210099,23.619269 L 35.109903,23.7883 L 34.995393,23.993552 L 34.852256,24.198804 L 34.780687,24.319539 L 34.694805,24.428201 L 34.623236,24.548938 L 34.537353,24.657601 L 34.45147,24.766264 L 34.351274,24.887 L 34.251078,24.995662 L 34.150882,25.116398 L 34.050685,25.225061 L 33.936175,25.333725 L 33.83598,25.442388 L 33.721469,25.551049 L 33.60696,25.647638 L 33.506764,25.744228 L 33.37794,25.828743 L 33.263429,25.913259 L 33.148919,25.9857 L 33.020096,26.058142 L 32.948527,26.094363 L 32.905586,26.130584 L 32.834017,26.154731 L 32.776762,26.190952 L 32.705193,26.215098 L 32.647939,26.239246 L 32.590684,26.25132 L 32.519116,26.275467 L 32.46186,26.299615 L 32.390291,26.311688 L 32.333035,26.335835 L 32.27578,26.335835 L 32.204211,26.347909 L 32.146957,26.359983 L 32.089703,26.372056 L 32.018133,26.372056 L 31.960878,26.372056 L 31.889309,26.372056 L 31.832055,26.372056 L 31.760486,26.359983 L 31.688917,26.347909 L 31.631662,26.347909 L 31.560094,26.335835 L 31.488526,26.311688 L 31.416956,26.299615 L 31.345387,26.275467 L 31.273818,26.25132 L 31.202249,26.227172 L 31.13068,26.203026 L 31.044797,26.154731 L 30.97323,26.11851 L 30.901661,26.082289 L 30.815777,26.046068 L 30.729896,25.9857 L 30.658327,25.937405 L 30.572444,25.889111 L 30.486562,25.828743 L 30.400679,25.756301 L 30.329111,25.695932 L 30.243229,25.611418 L 30.157345,25.538976 L 30.071463,25.454461 L 29.971267,25.369945 L 29.885384,25.285429 L 29.799501,25.188841 L 29.699306,25.068104 L 29.613423,24.971516 L 29.52754,24.862853 L 29.427345,24.742117 L 29.341463,24.633454 L 29.241265,24.500644 L 29.141069,24.367834 L 29.055186,24.222951 L 28.954991,24.090141 L 28.854794,23.945256 L 28.768911,23.7883 L 28.668716,23.631343 L 28.56852,23.462311 L 28.468322,23.293281 L 28.368127,23.124251 L 28.368127,23.124251 L 27.623812,23.414018 L 27.623812,23.414018 L 27.623812,23.414018"
id="path2583"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.567133,23.438165 L 20.567133,23.438165 L 20.59576,23.365722 L 20.71027,23.136324 L 20.796153,22.979366 L 20.896349,22.798262 L 21.025173,22.59301 L 21.153997,22.375685 L 21.239879,22.279097 L 21.311448,22.15836 L 21.39733,22.049697 L 21.483213,21.92896 L 21.569096,21.808224 L 21.654978,21.699562 L 21.755174,21.578826 L 21.855371,21.470163 L 21.955567,21.349427 L 22.070078,21.240764 L 22.170273,21.132101 L 22.284784,21.02344 L 22.399293,20.92685 L 22.49949,20.830261 L 22.628314,20.733673 L 22.742823,20.649157 L 22.871647,20.576714 L 23.000471,20.504274 L 23.057727,20.468052 L 23.114982,20.431831 L 23.172236,20.39561 L 23.243805,20.371463 L 23.30106,20.347316 L 23.358316,20.323169 L 23.429882,20.299021 L 23.472823,20.286947 L 23.558706,20.2628 L 23.615962,20.238654 L 23.673216,20.22658 L 23.73047,20.22658 L 23.80204,20.202433 L 23.873609,20.202433 L 23.930864,20.190359 L 24.002433,20.190359 L 24.059688,20.190359 L 24.131257,20.190359 L 24.188512,20.190359 L 24.26008,20.190359 L 24.317335,20.202433 L 24.388905,20.202433 L 24.460473,20.22658 L 24.517728,20.22658 L 24.589296,20.250727 L 24.660865,20.2628 L 24.746747,20.299021 L 24.818316,20.323169 L 24.889884,20.359389 L 24.961454,20.383537 L 25.033023,20.419757 L 25.104591,20.455978 L 25.176161,20.504274 L 25.262043,20.552567 L 25.347925,20.612937 L 25.433808,20.661231 L 25.505377,20.721599 L 25.591259,20.781967 L 25.677142,20.842334 L 25.777338,20.92685 L 25.848906,20.999292 L 25.934789,21.083808 L 26.034985,21.180397 L 26.120868,21.264911 L 26.221064,21.349427 L 26.292634,21.458089 L 26.392828,21.566752 L 26.493026,21.675414 L 26.578908,21.796151 L 26.664791,21.916886 L 26.764987,22.037623 L 26.850869,22.170434 L 26.951065,22.303243 L 27.051261,22.448127 L 27.151458,22.59301 L 27.237341,22.749968 L 27.337537,22.906924 L 27.437732,23.075955 L 27.523615,23.232914 L 27.623812,23.414018 L 28.368127,23.124251 L 28.267931,22.943146 L 28.167734,22.762042 L 28.067537,22.59301 L 27.967341,22.436053 L 27.852832,22.267023 L 27.766949,22.110065 L 27.666753,21.953108 L 27.566556,21.820298 L 27.452047,21.675414 L 27.366165,21.542605 L 27.251654,21.409795 L 27.151458,21.276985 L 27.051261,21.168323 L 26.951065,21.05966 L 26.850869,20.938923 L 26.750673,20.830261 L 26.650476,20.721599 L 26.564594,20.62501 L 26.450084,20.540494 L 26.349887,20.443905 L 26.249692,20.359389 L 26.149496,20.286947 L 26.063613,20.202433 L 25.949103,20.129991 L 25.848906,20.069623 L 25.74871,19.99718 L 25.648514,19.936813 L 25.548318,19.876444 L 25.448122,19.82815 L 25.347925,19.779856 L 25.24773,19.731561 L 25.147533,19.695339 L 25.047337,19.65912 L 24.94714,19.622898 L 24.846943,19.59875 L 24.746747,19.562531 L 24.646552,19.550457 L 24.546355,19.526309 L 24.446159,19.514236 L 24.345963,19.502162 L 24.231453,19.490088 L 24.145571,19.490088 L 24.03106,19.490088 L 23.945177,19.490088 L 23.844981,19.502162 L 23.744785,19.514236 L 23.658903,19.526309 L 23.558706,19.550457 L 23.472823,19.562531 L 23.386942,19.586676 L 23.286746,19.59875 L 23.18655,19.622898 L 23.114982,19.65912 L 23.029099,19.695339 L 22.943216,19.731561 L 22.857333,19.767782 L 22.771451,19.804003 L 22.685568,19.840224 L 22.614,19.888517 L 22.513803,19.924739 L 22.384979,20.021328 L 22.241843,20.117917 L 22.084392,20.22658 L 21.955567,20.335242 L 21.81243,20.443905 L 21.683606,20.552567 L 21.554783,20.685377 L 21.425958,20.806113 L 21.311448,20.92685 L 21.196938,21.05966 L 21.082428,21.180397 L 20.982232,21.301133 L 20.882036,21.433943 L 20.796153,21.566752 L 20.695957,21.675414 L 20.610074,21.808224 L 20.524192,21.92896 L 20.43831,22.049697 L 20.295171,22.279097 L 20.166348,22.49642 L 20.051839,22.689599 L 19.965957,22.846557 L 19.837133,23.100103 L 19.808505,23.196691 L 19.808505,23.196691 L 20.567133,23.438165 L 20.567133,23.438165 L 20.567133,23.438165"
id="path2585"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.978883,23.450238 L 11.978883,23.450238 L 12.07908,23.619269 L 12.193588,23.812448 L 12.279472,23.969404 L 12.393982,24.138434 L 12.494178,24.295392 L 12.594375,24.452349 L 12.694571,24.609307 L 12.794767,24.754191 L 12.894963,24.899074 L 12.995159,25.031884 L 13.095355,25.15262 L 13.195551,25.285429 L 13.295748,25.406165 L 13.395944,25.514828 L 13.49614,25.635565 L 13.596338,25.744228 L 13.710846,25.852891 L 13.796729,25.949479 L 13.911239,26.046068 L 13.997122,26.130584 L 14.097318,26.215098 L 14.197514,26.299615 L 14.29771,26.372056 L 14.397906,26.444498 L 14.512417,26.516939 L 14.5983,26.577308 L 14.712809,26.637676 L 14.813005,26.698045 L 14.913201,26.746339 L 15.013398,26.794633 L 15.113594,26.842929 L 15.21379,26.879148 L 15.313986,26.927443 L 15.414183,26.951591 L 15.514379,26.987811 L 15.614576,27.011959 L 15.714772,27.036106 L 15.829282,27.048179 L 15.915165,27.072326 L 16.029674,27.072326 L 16.129871,27.0844 L 16.215754,27.096474 L 16.315949,27.096474 L 16.416145,27.0844 L 16.502028,27.0844 L 16.616538,27.072326 L 16.702421,27.072326 L 16.802617,27.048179 L 16.902813,27.036106 L 16.974382,27.011959 L 17.074579,26.987811 L 17.16046,26.951591 L 17.246344,26.939517 L 17.332226,26.891223 L 17.418108,26.867075 L 17.50399,26.842929 L 17.589873,26.782559 L 17.675756,26.746339 L 17.747324,26.710118 L 17.818894,26.673897 L 17.976345,26.589382 L 18.133796,26.492793 L 18.276933,26.38413 L 18.405757,26.275467 L 18.534581,26.154731 L 18.677718,26.046068 L 18.806542,25.937405 L 18.921053,25.804596 L 19.049876,25.68386 L 19.164386,25.575197 L 19.264582,25.442388 L 19.364779,25.309577 L 19.464974,25.188841 L 19.56517,25.056031 L 19.665367,24.935294 L 19.75125,24.814558 L 19.837133,24.681749 L 19.923015,24.573086 L 20.051839,24.331613 L 20.194976,24.126361 L 20.295171,23.933184 L 20.395368,23.776226 L 20.509878,23.534754 L 20.567133,23.438165 L 19.808505,23.196691 L 19.75125,23.269133 L 19.636739,23.486458 L 19.56517,23.655489 L 19.464974,23.824521 L 19.336151,24.029772 L 19.207326,24.235023 L 19.135759,24.343687 L 19.049876,24.452349 L 18.963994,24.573086 L 18.892425,24.681749 L 18.792229,24.802485 L 18.706346,24.923221 L 18.606149,25.031884 L 18.505953,25.15262 L 18.405757,25.261282 L 18.291247,25.369945 L 18.191051,25.466534 L 18.076541,25.575197 L 17.962031,25.671786 L 17.847522,25.768375 L 17.733011,25.864964 L 17.618501,25.949479 L 17.489676,26.021922 L 17.375167,26.094363 L 17.317912,26.142658 L 17.260657,26.154731 L 17.189088,26.190952 L 17.131833,26.215098 L 17.060264,26.239246 L 17.017323,26.275467 L 16.945755,26.299615 L 16.874186,26.311688 L 16.816932,26.335835 L 16.759676,26.347909 L 16.688108,26.359983 L 16.630851,26.372056 L 16.573597,26.38413 L 16.502028,26.396203 L 16.430459,26.396203 L 16.373203,26.396203 L 16.301636,26.408277 L 16.24438,26.408277 L 16.187126,26.396203 L 16.115556,26.396203 L 16.043988,26.396203 L 15.97242,26.372056 L 15.915165,26.372056 L 15.843595,26.347909 L 15.772027,26.335835 L 15.700458,26.311688 L 15.62889,26.287541 L 15.543006,26.25132 L 15.485752,26.227172 L 15.399869,26.203026 L 15.3283,26.154731 L 15.242418,26.11851 L 15.170848,26.070216 L 15.084966,26.021922 L 15.013398,25.973627 L 14.927516,25.913259 L 14.841633,25.852891 L 14.755751,25.792522 L 14.669869,25.720081 L 14.583986,25.647638 L 14.498103,25.575197 L 14.41222,25.490682 L 14.326338,25.406165 L 14.240455,25.309577 L 14.154574,25.212988 L 14.054376,25.116398 L 13.95418,25.007736 L 13.868298,24.899074 L 13.782416,24.778338 L 13.68222,24.669675 L 13.596338,24.536864 L 13.49614,24.391982 L 13.395944,24.259171 L 13.310061,24.126361 L 13.209865,23.969404 L 13.123983,23.824521 L 13.023787,23.655489 L 12.92359,23.498533 L 12.823395,23.329502 L 12.723198,23.148398 L 12.723198,23.148398 L 11.978883,23.450238 L 11.978883,23.450238 L 11.978883,23.450238"
id="path2587"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.9078912,23.401944 L 4.9508321,23.329502 L 5.0653424,23.100103 L 5.1512243,22.943146 L 5.2514211,22.762042 L 5.3802448,22.568864 L 5.5090684,22.363612 L 5.5806369,22.242875 L 5.6522063,22.146286 L 5.738089,22.025549 L 5.8239708,21.916886 L 5.9241669,21.796151 L 6.0100496,21.675414 L 6.1102465,21.566752 L 6.1961275,21.446016 L 6.3106386,21.337353 L 6.4108347,21.22869 L 6.525345,21.120028 L 6.625541,21.02344 L 6.7400513,20.92685 L 6.8688742,20.830261 L 6.969071,20.733673 L 7.0978947,20.649157 L 7.2124051,20.576714 L 7.3412278,20.504274 L 7.3984829,20.468052 L 7.4700531,20.431831 L 7.5129941,20.407684 L 7.5845617,20.383537 L 7.6418177,20.359389 L 7.7133854,20.335242 L 7.7706412,20.311095 L 7.8278956,20.286947 L 7.8994649,20.2628 L 7.9567201,20.2628 L 8.0139744,20.238654 L 8.0855428,20.22658 L 8.1427989,20.22658 L 8.2143673,20.202433 L 8.2716226,20.202433 L 8.3431909,20.202433 L 8.4004462,20.202433 L 8.4720146,20.202433 L 8.5292698,20.202433 L 8.6008383,20.202433 L 8.6580935,20.202433 L 8.7439761,20.22658 L 8.8012313,20.22658 L 8.8727997,20.250727 L 8.9443683,20.2628 L 9.0159368,20.286947 L 9.087506,20.323169 L 9.1590746,20.335242 L 9.2306431,20.371463 L 9.3022124,20.407684 L 9.3880943,20.443905 L 9.4596637,20.480126 L 9.5312321,20.528421 L 9.6171148,20.576714 L 9.7029973,20.62501 L 9.7745663,20.685377 L 9.8747623,20.733673 L 9.9463303,20.806113 L 10.046527,20.878555 L 10.132409,20.963071 L 10.203978,21.02344 L 10.289861,21.120028 L 10.390057,21.19247 L 10.47594,21.289059 L 10.561822,21.385647 L 10.647704,21.482237 L 10.733586,21.5909 L 10.833783,21.711636 L 10.93398,21.820298 L 11.019863,21.941034 L 11.105745,22.073845 L 11.20594,22.206653 L 11.306137,22.339464 L 11.406333,22.472275 L 11.492216,22.629231 L 11.592411,22.786188 L 11.692608,22.943146 L 11.792804,23.100103 L 11.878686,23.269133 L 11.978883,23.450238 L 12.723198,23.148398 L 12.623002,22.979366 L 12.522806,22.798262 L 12.42261,22.629231 L 12.322413,22.460201 L 12.207903,22.303243 L 12.107706,22.146286 L 12.00751,21.98933 L 11.907315,21.844446 L 11.807118,21.711636 L 11.706922,21.578826 L 11.606726,21.446016 L 11.506529,21.313207 L 11.406333,21.19247 L 11.306137,21.083808 L 11.20594,20.963071 L 11.105745,20.854408 L 11.005549,20.745745 L 10.905352,20.649157 L 10.805156,20.564641 L 10.70496,20.480126 L 10.604764,20.383537 L 10.504567,20.311095 L 10.404371,20.22658 L 10.304174,20.166211 L 10.203978,20.081697 L 10.103782,20.021328 L 10.003585,19.96096 L 9.9033893,19.900592 L 9.8031933,19.852297 L 9.7029973,19.804003 L 9.6028006,19.755707 L 9.5026046,19.719487 L 9.4024084,19.683267 L 9.3022124,19.647046 L 9.2020155,19.622898 L 9.1018194,19.586676 L 8.9873101,19.562531 L 8.8871131,19.550457 L 8.786917,19.526309 L 8.7010344,19.526309 L 8.6008383,19.514236 L 8.486328,19.502162 L 8.4004462,19.502162 L 8.30025,19.502162 L 8.200054,19.526309 L 8.0998571,19.526309 L 8.0139744,19.526309 L 7.9137783,19.550457 L 7.8278956,19.562531 L 7.7420138,19.586676 L 7.6418177,19.622898 L 7.5559341,19.647046 L 7.4700531,19.671194 L 7.3841695,19.695339 L 7.2982878,19.731561 L 7.2124051,19.767782 L 7.1265223,19.804003 L 7.0406396,19.840224 L 6.969071,19.876444 L 6.8831883,19.924739 L 6.7400513,20.009254 L 6.5826001,20.105843 L 6.4394623,20.22658 L 6.2963246,20.323169 L 6.1675009,20.431831 L 6.0243629,20.552567 L 5.9098536,20.673304 L 5.7810299,20.781967 L 5.6665187,20.902704 L 5.5520094,21.035512 L 5.4374999,21.156249 L 5.337303,21.289059 L 5.237107,21.409795 L 5.1369108,21.542605 L 5.0510281,21.663341 L 4.9508321,21.784078 L 4.8792636,21.904814 L 4.7933809,22.025549 L 4.6502439,22.254949 L 4.5214194,22.460201 L 4.4069092,22.653379 L 4.3210273,22.82241 L 4.1922037,23.051809 L 4.1492618,23.148398 L 4.9078912,23.401944"
id="path2589"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 4.1492618,23.148398 L 4.1349484,23.196691 L 4.1206351,23.232914 L 4.1206351,23.269133 L 4.1206351,23.305354 L 4.1206351,23.329502 L 4.1349484,23.377796 L 4.1492618,23.401944 L 4.1635752,23.426091 L 4.1778902,23.462311 L 4.1922037,23.486458 L 4.2208311,23.510607 L 4.2494588,23.534754 L 4.2780864,23.5589 L 4.3210273,23.570974 L 4.3496539,23.583048 L 4.3925958,23.595121 L 4.4212234,23.607195 L 4.4498509,23.619269 L 4.4927928,23.619269 L 4.5357337,23.619269 L 4.5786746,23.619269 L 4.6073021,23.619269 L 4.6502439,23.619269 L 4.6788706,23.595121 L 4.7218124,23.595121 L 4.7504399,23.583048 L 4.7790676,23.5589 L 4.8220085,23.534754 L 4.8363218,23.498533 L 4.8649494,23.474385 L 4.893577,23.438165 L 4.9078912,23.401944 L 4.1492618,23.148398"
id="path2591"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 5.294362,23.075955 L 5.2800486,23.039735 L 5.2514211,23.003514 L 5.2227936,22.95522 L 5.2084793,22.918998 L 5.1798517,22.894851 L 5.1512243,22.858631 L 5.1225975,22.846557 L 5.0939699,22.82241 L 5.0653424,22.786188 L 5.0367148,22.762042 L 4.9937729,22.749968 L 4.9794596,22.72582 L 4.9078912,22.689599 L 4.8363218,22.665452 L 4.7504399,22.653379 L 4.6931849,22.641305 L 4.6073021,22.629231 L 4.5357337,22.629231 L 4.4498509,22.629231 L 4.3925958,22.641305 L 4.306713,22.653379 L 4.2351446,22.677526 L 4.1635752,22.701673 L 4.0920075,22.737894 L 4.0347515,22.774116 L 3.9774973,22.82241 L 3.9202421,22.846557 L 3.8773012,22.906924 L 3.8343594,22.95522 L 3.7771051,23.015587 L 3.7627918,23.039735 L 3.7627918,23.075955 L 3.7341633,23.100103 L 3.7341633,23.136324 L 3.71985,23.172544 L 3.71985,23.196691 L 3.7055358,23.232914 L 3.7055358,23.269133 L 3.7055358,23.305354 L 3.7055358,23.329502 L 3.71985,23.377796 L 3.71985,23.414018 L 3.71985,23.450238 L 3.7341633,23.486458 L 3.7484767,23.522681 L 3.7627918,23.570974 L 5.294362,23.075955"
id="path2593"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 11.621039,23.015587 L 11.621039,23.015587 L 11.535157,23.184618 L 11.434961,23.353649 L 11.349078,23.498533 L 11.248881,23.655489 L 11.148686,23.812448 L 11.04849,23.95733 L 10.962608,24.090141 L 10.876725,24.222951 L 10.790843,24.35576 L 10.690645,24.476497 L 10.604764,24.585159 L 10.51888,24.693822 L 10.418685,24.802485 L 10.347115,24.899074 L 10.261233,24.995662 L 10.175351,25.092252 L 10.089468,25.188841 L 10.003585,25.261282 L 9.9320173,25.333725 L 9.8461353,25.406165 L 9.7602523,25.478608 L 9.6886833,25.538976 L 9.6171148,25.599344 L 9.5312321,25.659712 L 9.4596637,25.695932 L 9.3880943,25.756301 L 9.33084,25.792522 L 9.2592706,25.828743 L 9.1733879,25.864964 L 9.130447,25.889111 L 9.0588785,25.925332 L 9.0016234,25.949479 L 8.930055,25.973627 L 8.8727997,25.9857 L 8.829858,26.009848 L 8.7726037,26.009848 L 8.7153486,26.033996 L 8.6580935,26.046068 L 8.6151525,26.046068 L 8.5722117,26.058142 L 8.5149556,26.058142 L 8.4720146,26.058142 L 8.4147595,26.058142 L 8.3718186,26.058142 L 8.3288768,26.058142 L 8.2716226,26.046068 L 8.2143673,26.046068 L 8.1857398,26.046068 L 8.1284846,26.021922 L 8.0855428,26.009848 L 8.0282885,26.009848 L 7.9853468,25.9857 L 7.9280916,25.973627 L 7.8851507,25.949479 L 7.8278956,25.937405 L 7.7849547,25.913259 L 7.7276994,25.889111 L 7.6847578,25.864964 L 7.6275035,25.840817 L 7.5845617,25.816669 L 7.4700531,25.756301 L 7.355542,25.68386 L 7.255346,25.599344 L 7.1408365,25.514828 L 7.0406396,25.442388 L 6.9404435,25.345798 L 6.8259333,25.249209 L 6.7257371,25.15262 L 6.625541,25.056031 L 6.5396583,24.947368 L 6.4394623,24.838705 L 6.3535795,24.730042 L 6.2676969,24.609307 L 6.1818151,24.500644 L 6.0959323,24.391982 L 6.0100496,24.295392 L 5.9384812,24.174656 L 5.8669118,24.078067 L 5.738089,23.872815 L 5.6235787,23.679637 L 5.5233817,23.498533 L 5.4374999,23.353649 L 5.3229904,23.136324 L 5.294362,23.075955 L 3.7627918,23.570974 L 3.820046,23.679637 L 3.9488697,23.92111 L 4.0347515,24.090141 L 4.1635752,24.295392 L 4.2923997,24.512718 L 4.4355375,24.742117 L 4.5214194,24.862853 L 4.6073021,24.995662 L 4.7074982,25.116398 L 4.7933809,25.249209 L 4.893577,25.382019 L 5.0080872,25.502755 L 5.1082833,25.647638 L 5.237107,25.768375 L 5.3516172,25.901185 L 5.4804417,26.046068 L 5.6092645,26.154731 L 5.738089,26.287541 L 5.881226,26.408277 L 6.0243629,26.529013 L 6.1818151,26.64975 L 6.3392662,26.746339 L 6.4967165,26.855001 L 6.6684819,26.951591 L 6.7543647,27.011959 L 6.8545607,27.048179 L 6.9404435,27.096474 L 7.0263253,27.144768 L 7.1265223,27.180989 L 7.2267184,27.21721 L 7.3269144,27.253432 L 7.4271113,27.289652 L 7.5273066,27.325873 L 7.6275035,27.337946 L 7.7420138,27.362094 L 7.8422098,27.386241 L 7.9567201,27.410389 L 8.0569153,27.422463 L 8.1857398,27.422463 L 8.2859359,27.434535 L 8.4004462,27.446608 L 8.5149556,27.434535 L 8.6294667,27.434535 L 8.7439761,27.422463 L 8.8584856,27.422463 L 8.9873101,27.398315 L 9.1018194,27.362094 L 9.2163297,27.35002 L 9.33084,27.325873 L 9.4453494,27.277578 L 9.574173,27.241358 L 9.6886833,27.205136 L 9.8031933,27.144768 L 9.9177033,27.108548 L 10.032213,27.048179 L 10.146724,26.987811 L 10.246919,26.927443 L 10.375743,26.855001 L 10.47594,26.782559 L 10.59045,26.710118 L 10.690645,26.625602 L 10.805156,26.541087 L 10.905352,26.456572 L 11.005549,26.372056 L 11.120059,26.275467 L 11.234568,26.178878 L 11.32045,26.058142 L 11.434961,25.961553 L 11.535157,25.852891 L 11.649667,25.732155 L 11.749864,25.599344 L 11.850059,25.478608 L 11.96457,25.345798 L 12.064765,25.212988 L 12.164961,25.068104 L 12.279472,24.935294 L 12.379668,24.778338 L 12.479865,24.633454 L 12.594375,24.464424 L 12.694571,24.295392 L 12.794767,24.126361 L 12.909276,23.95733 L 13.009473,23.776226 L 13.123983,23.595121 L 13.123983,23.595121 L 11.621039,23.015587 L 11.621039,23.015587 L 11.621039,23.015587"
id="path2595"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 20.967919,23.039735 L 20.967919,23.039735 L 20.924977,22.918998 L 20.796153,22.677526 L 20.695957,22.508494 L 20.581446,22.315316 L 20.43831,22.085918 L 20.295171,21.856519 L 20.20929,21.735782 L 20.123407,21.615046 L 20.037524,21.482237 L 19.937328,21.349427 L 19.837133,21.216617 L 19.722621,21.095881 L 19.622425,20.963071 L 19.507915,20.830261 L 19.379092,20.697451 L 19.264582,20.564641 L 19.135759,20.443905 L 19.006935,20.323169 L 18.849484,20.202433 L 18.706346,20.069623 L 18.563208,19.96096 L 18.391443,19.840224 L 18.233992,19.743634 L 18.076541,19.647046 L 17.976345,19.59875 L 17.890463,19.550457 L 17.804581,19.502162 L 17.704384,19.453868 L 17.618501,19.42972 L 17.518305,19.381427 L 17.418108,19.345204 L 17.317912,19.321056 L 17.217716,19.296909 L 17.117519,19.260689 L 17.017323,19.236542 L 16.902813,19.212395 L 16.788304,19.200321 L 16.673793,19.176173 L 16.573597,19.176173 L 16.459086,19.164101 L 16.344577,19.164101 L 16.230066,19.164101 L 16.115556,19.164101 L 15.986734,19.176173 L 15.872223,19.188247 L 15.757714,19.212395 L 15.643203,19.236542 L 15.514379,19.260689 L 15.399869,19.284837 L 15.285358,19.321056 L 15.170848,19.357278 L 15.056339,19.405572 L 14.941829,19.453868 L 14.827319,19.490088 L 14.712809,19.562531 L 14.5983,19.622898 L 14.483789,19.683267 L 14.383592,19.743634 L 14.269082,19.816075 L 14.154574,19.888517 L 14.054376,19.973033 L 13.939867,20.057549 L 13.83967,20.142065 L 13.725161,20.22658 L 13.61065,20.335242 L 13.510454,20.431831 L 13.410257,20.528421 L 13.295748,20.637084 L 13.195551,20.745745 L 13.081041,20.866481 L 12.980846,20.999292 L 12.880649,21.120028 L 12.76614,21.252838 L 12.680257,21.373575 L 12.565747,21.530531 L 12.465551,21.663341 L 12.365354,21.820298 L 12.250844,21.977255 L 12.150647,22.134213 L 12.036138,22.303243 L 11.935941,22.472275 L 11.835745,22.641305 L 11.73555,22.82241 L 11.621039,23.015587 L 13.123983,23.595121 L 13.195551,23.426091 L 13.295748,23.25706 L 13.395944,23.100103 L 13.481827,22.943146 L 13.596338,22.786188 L 13.68222,22.641305 L 13.768102,22.508494 L 13.868298,22.375685 L 13.95418,22.242875 L 14.040063,22.122139 L 14.140259,22.013476 L 14.226141,21.904814 L 14.312024,21.796151 L 14.397906,21.699562 L 14.483789,21.602974 L 14.569672,21.506384 L 14.655554,21.421869 L 14.741436,21.349427 L 14.813005,21.264911 L 14.898889,21.19247 L 14.970457,21.120028 L 15.056339,21.05966 L 15.127907,20.999292 L 15.199477,20.963071 L 15.285358,20.902704 L 15.342613,20.854408 L 15.414183,20.806113 L 15.485752,20.769893 L 15.543006,20.733673 L 15.614576,20.709525 L 15.686144,20.685377 L 15.7434,20.649157 L 15.800654,20.637084 L 15.857909,20.612937 L 15.915165,20.600863 L 15.97242,20.588788 L 16.029674,20.564641 L 16.072615,20.564641 L 16.129871,20.552567 L 16.172812,20.552567 L 16.230066,20.540494 L 16.273008,20.540494 L 16.315949,20.540494 L 16.373203,20.540494 L 16.416145,20.540494 L 16.4734,20.552567 L 16.516342,20.552567 L 16.573597,20.564641 L 16.616538,20.576714 L 16.65948,20.588788 L 16.716735,20.600863 L 16.759676,20.612937 L 16.816932,20.62501 L 16.859872,20.637084 L 16.917127,20.673304 L 16.960068,20.685377 L 17.017323,20.709525 L 17.060264,20.733673 L 17.117519,20.769893 L 17.16046,20.794041 L 17.27497,20.854408 L 17.38948,20.92685 L 17.489676,20.999292 L 17.604187,21.083808 L 17.704384,21.168323 L 17.804581,21.252838 L 17.904776,21.349427 L 18.019286,21.446016 L 18.105169,21.554679 L 18.205364,21.663341 L 18.291247,21.75993 L 18.391443,21.880667 L 18.477325,21.98933 L 18.563208,22.110065 L 18.64909,22.206653 L 18.734973,22.315316 L 18.806542,22.436053 L 18.863797,22.532643 L 19.006935,22.737894 L 19.135759,22.931072 L 19.221641,23.112177 L 19.293209,23.25706 L 19.407719,23.462311 L 19.450661,23.534754 L 19.450661,23.534754 L 20.967919,23.039735 L 20.967919,23.039735 L 20.967919,23.039735"
id="path2597"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 27.294596,22.979366 L 27.294596,22.979366 L 27.208713,23.148398 L 27.108517,23.317428 L 27.00832,23.474385 L 26.922437,23.631343 L 26.822242,23.776226 L 26.736359,23.92111 L 26.636163,24.065993 L 26.550281,24.198804 L 26.450084,24.319539 L 26.364202,24.452349 L 26.264005,24.561012 L 26.178123,24.669675 L 26.09224,24.766264 L 26.020672,24.874926 L 25.920475,24.971516 L 25.834592,25.056031 L 25.74871,25.15262 L 25.662827,25.225061 L 25.591259,25.309577 L 25.505377,25.369945 L 25.433808,25.442388 L 25.362239,25.502755 L 25.276356,25.575197 L 25.204789,25.611418 L 25.133219,25.671786 L 25.06165,25.708007 L 24.990082,25.756301 L 24.932826,25.792522 L 24.861258,25.828743 L 24.804002,25.864964 L 24.732434,25.889111 L 24.675179,25.913259 L 24.617924,25.937405 L 24.560669,25.949479 L 24.503413,25.973627 L 24.446159,25.9857 L 24.388905,25.997774 L 24.345963,26.009848 L 24.288707,26.009848 L 24.245766,26.021922 L 24.188512,26.021922 L 24.145571,26.021922 L 24.088316,26.021922 L 24.045374,26.021922 L 24.002433,26.021922 L 23.945177,26.009848 L 23.902236,26.009848 L 23.844981,26.009848 L 23.80204,25.9857 L 23.759098,25.9857 L 23.701844,25.973627 L 23.673216,25.949479 L 23.615962,25.937405 L 23.558706,25.925332 L 23.515764,25.901185 L 23.45851,25.877038 L 23.401256,25.852891 L 23.358316,25.828743 L 23.30106,25.804596 L 23.258118,25.780449 L 23.14361,25.708007 L 23.029099,25.647638 L 22.928903,25.575197 L 22.828705,25.490682 L 22.714196,25.406165 L 22.614,25.309577 L 22.49949,25.212988 L 22.399293,25.116398 L 22.313411,25.01981 L 22.213215,24.899074 L 22.127332,24.802485 L 22.027137,24.681749 L 21.941254,24.573086 L 21.855371,24.464424 L 21.769488,24.367834 L 21.697919,24.247097 L 21.612036,24.138434 L 21.554783,24.029772 L 21.411644,23.836594 L 21.282821,23.643417 L 21.196938,23.462311 L 21.12537,23.317428 L 20.996547,23.100103 L 20.967919,23.039735 L 19.450661,23.534754 L 19.493602,23.643417 L 19.622425,23.872815 L 19.722621,24.065993 L 19.837133,24.259171 L 19.965957,24.476497 L 20.123407,24.705895 L 20.20929,24.838705 L 20.280858,24.959442 L 20.381054,25.080178 L 20.481251,25.212988 L 20.581446,25.345798 L 20.681642,25.466534 L 20.796153,25.599344 L 20.896349,25.744228 L 21.039488,25.864964 L 21.153997,25.997774 L 21.282821,26.11851 L 21.411644,26.239246 L 21.554783,26.372056 L 21.697919,26.492793 L 21.855371,26.613529 L 22.012822,26.722192 L 22.170273,26.818781 L 22.327725,26.915369 L 22.427921,26.975737 L 22.513803,27.024033 L 22.614,27.072326 L 22.714196,27.108548 L 22.800079,27.144768 L 22.900275,27.180989 L 23.000471,27.21721 L 23.100668,27.253432 L 23.18655,27.277578 L 23.30106,27.3138 L 23.415569,27.325873 L 23.515764,27.35002 L 23.630275,27.362094 L 23.73047,27.386241 L 23.844981,27.398315 L 23.959492,27.398315 L 24.074002,27.410389 L 24.188512,27.410389 L 24.303022,27.398315 L 24.417531,27.386241 L 24.546355,27.374168 L 24.660865,27.362094 L 24.789688,27.337946 L 24.904199,27.3138 L 25.004395,27.277578 L 25.118906,27.241358 L 25.233416,27.21721 L 25.347925,27.168915 L 25.462436,27.120622 L 25.576945,27.072326 L 25.691455,27.011959 L 25.805965,26.951591 L 25.920475,26.879148 L 26.034985,26.818781 L 26.149496,26.746339 L 26.249692,26.68597 L 26.364202,26.589382 L 26.464398,26.516939 L 26.578908,26.432425 L 26.693417,26.335835 L 26.793615,26.239246 L 26.89381,26.142658 L 27.00832,26.046068 L 27.108517,25.925332 L 27.223026,25.816669 L 27.323224,25.695932 L 27.437732,25.575197 L 27.523615,25.454461 L 27.638125,25.309577 L 27.738321,25.188841 L 27.838518,25.031884 L 27.953027,24.899074 L 28.053224,24.742117 L 28.15342,24.585159 L 28.253617,24.428201 L 28.368127,24.271245 L 28.468322,24.102215 L 28.56852,23.92111 L 28.683029,23.752078 L 28.783225,23.5589 L 28.783225,23.5589 L 27.294596,22.979366 L 27.294596,22.979366 L 27.294596,22.979366"
id="path2599"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 36.612847,23.075955 L 36.612847,23.075955 L 36.569906,22.95522 L 36.455395,22.713747 L 36.355199,22.544716 L 36.24069,22.339464 L 36.097552,22.110065 L 35.954414,21.892741 L 35.868532,21.75993 L 35.782649,21.639193 L 35.696767,21.506384 L 35.59657,21.373575 L 35.496374,21.252838 L 35.396177,21.107954 L 35.281668,20.975144 L 35.167158,20.842334 L 35.052648,20.709525 L 34.923824,20.588788 L 34.795,20.455978 L 34.666177,20.323169 L 34.52304,20.202433 L 34.379902,20.081697 L 34.222451,19.973033 L 34.064999,19.852297 L 33.907549,19.743634 L 33.735783,19.647046 L 33.649902,19.59875 L 33.564019,19.550457 L 33.463822,19.502162 L 33.37794,19.453868 L 33.277742,19.42972 L 33.177547,19.381427 L 33.091664,19.345204 L 32.991469,19.308983 L 32.891272,19.272763 L 32.791076,19.248615 L 32.676565,19.236542 L 32.57637,19.200321 L 32.46186,19.188247 L 32.34735,19.176173 L 32.232839,19.164101 L 32.118329,19.152027 L 32.018133,19.139953 L 31.903622,19.139953 L 31.789114,19.152027 L 31.674603,19.164101 L 31.545779,19.176173 L 31.43127,19.188247 L 31.31676,19.212395 L 31.202249,19.236542 L 31.073425,19.272763 L 30.958915,19.296909 L 30.844406,19.333131 L 30.729896,19.369353 L 30.615385,19.42972 L 30.500877,19.478014 L 30.386365,19.526309 L 30.271855,19.586676 L 30.157345,19.65912 L 30.057148,19.719487 L 29.94264,19.79193 L 29.828129,19.864372 L 29.713619,19.936813 L 29.613423,20.033402 L 29.498913,20.105843 L 29.398717,20.202433 L 29.284207,20.299021 L 29.18401,20.39561 L 29.083814,20.504274 L 28.969304,20.612937 L 28.854794,20.721599 L 28.768911,20.842334 L 28.654402,20.963071 L 28.554205,21.095881 L 28.439696,21.216617 L 28.339499,21.349427 L 28.239303,21.494311 L 28.139107,21.639193 L 28.024596,21.796151 L 27.9244,21.941034 L 27.80989,22.110065 L 27.709694,22.267023 L 27.609498,22.436053 L 27.509302,22.617157 L 27.409105,22.786188 L 27.294596,22.979366 L 28.783225,23.5589 L 28.883421,23.38987 L 28.983617,23.22084 L 29.069499,23.051809 L 29.169697,22.906924 L 29.255579,22.749968 L 29.355776,22.617157 L 29.441658,22.472275 L 29.541854,22.351538 L 29.627736,22.218727 L 29.713619,22.097992 L 29.799501,21.977255 L 29.899698,21.868593 L 29.985581,21.75993 L 30.071463,21.663341 L 30.157345,21.566752 L 30.243229,21.470163 L 30.329111,21.385647 L 30.400679,21.313207 L 30.486562,21.240764 L 30.572444,21.168323 L 30.644013,21.095881 L 30.715582,21.035512 L 30.801464,20.975144 L 30.873032,20.92685 L 30.944601,20.878555 L 31.016171,20.830261 L 31.087738,20.794041 L 31.159308,20.745745 L 31.230877,20.709525 L 31.273818,20.685377 L 31.345387,20.649157 L 31.402642,20.637084 L 31.47421,20.612937 L 31.517152,20.600863 L 31.574408,20.576714 L 31.631662,20.564641 L 31.688917,20.552567 L 31.731858,20.540494 L 31.789114,20.540494 L 31.832055,20.528421 L 31.889309,20.528421 L 31.932251,20.528421 L 31.989506,20.528421 L 32.032447,20.528421 L 32.075388,20.528421 L 32.118329,20.540494 L 32.16127,20.540494 L 32.218526,20.552567 L 32.261467,20.552567 L 32.304408,20.576714 L 32.361664,20.588788 L 32.404604,20.600863 L 32.46186,20.612937 L 32.504801,20.637084 L 32.562056,20.649157 L 32.619311,20.673304 L 32.662252,20.709525 L 32.719507,20.733673 L 32.776762,20.757819 L 32.819704,20.781967 L 32.934213,20.842334 L 33.034409,20.92685 L 33.148919,20.999292 L 33.249115,21.083808 L 33.349312,21.168323 L 33.463822,21.252838 L 33.564019,21.349427 L 33.664215,21.458089 L 33.76441,21.566752 L 33.850293,21.663341 L 33.95049,21.772004 L 34.050685,21.892741 L 34.136568,22.001404 L 34.222451,22.110065 L 34.294019,22.218727 L 34.379902,22.339464 L 34.45147,22.448127 L 34.52304,22.544716 L 34.651864,22.762042 L 34.780687,22.95522 L 34.880883,23.124251 L 34.952452,23.269133 L 35.066961,23.498533 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 35.095589,23.5589 L 36.612847,23.075955"
id="path2601"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 42.939524,23.015587 L 42.939524,23.015587 L 42.853641,23.184618 L 42.767759,23.353649 L 42.653249,23.498533 L 42.567367,23.655489 L 42.46717,23.812448 L 42.381288,23.95733 L 42.281091,24.090141 L 42.195209,24.222951 L 42.109327,24.35576 L 42.009131,24.476497 L 41.923248,24.585159 L 41.837365,24.693822 L 41.751482,24.802485 L 41.665599,24.899074 L 41.579718,24.995662 L 41.479521,25.092252 L 41.407952,25.188841 L 41.32207,25.261282 L 41.236187,25.333725 L 41.150305,25.406165 L 41.078736,25.466534 L 41.007168,25.538976 L 40.935599,25.599344 L 40.849716,25.659712 L 40.778147,25.695932 L 40.706579,25.756301 L 40.635009,25.792522 L 40.577755,25.828743 L 40.506186,25.864964 L 40.448931,25.889111 L 40.377363,25.925332 L 40.320107,25.949479 L 40.262853,25.973627 L 40.205598,25.9857 L 40.148343,26.009848 L 40.091087,26.009848 L 40.033833,26.033996 L 39.990891,26.046068 L 39.933637,26.046068 L 39.890696,26.046068 L 39.83344,26.058142 L 39.7905,26.058142 L 39.747558,26.058142 L 39.690302,26.058142 L 39.647361,26.058142 L 39.590106,26.046068 L 39.547165,26.046068 L 39.504224,26.046068 L 39.446969,26.021922 L 39.389714,26.009848 L 39.361086,26.009848 L 39.30383,25.9857 L 39.26089,25.973627 L 39.203635,25.949479 L 39.160694,25.937405 L 39.117753,25.913259 L 39.046183,25.889111 L 39.003242,25.864964 L 38.945988,25.840817 L 38.903046,25.816669 L 38.788536,25.756301 L 38.68834,25.671786 L 38.573829,25.599344 L 38.473633,25.514828 L 38.359123,25.442388 L 38.258927,25.345798 L 38.158732,25.249209 L 38.058535,25.15262 L 37.958338,25.043958 L 37.872457,24.935294 L 37.77226,24.838705 L 37.686378,24.730042 L 37.58618,24.609307 L 37.500298,24.500644 L 37.428729,24.391982 L 37.342848,24.283319 L 37.271278,24.174656 L 37.19971,24.078067 L 37.056573,23.860741 L 36.942063,23.679637 L 36.841867,23.498533 L 36.770299,23.353649 L 36.655789,23.136324 L 36.612847,23.075955 L 35.095589,23.5589 L 35.152845,23.679637 L 35.281668,23.909036 L 35.367551,24.090141 L 35.48206,24.295392 L 35.610884,24.500644 L 35.768336,24.730042 L 35.854218,24.862853 L 35.940101,24.995662 L 36.025983,25.116398 L 36.126178,25.249209 L 36.226376,25.369945 L 36.340885,25.502755 L 36.441082,25.635565 L 36.555591,25.768375 L 36.684415,25.901185 L 36.81324,26.021922 L 36.927749,26.154731 L 37.056573,26.287541 L 37.214023,26.408277 L 37.357162,26.529013 L 37.500298,26.637676 L 37.65775,26.746339 L 37.829515,26.855001 L 37.986966,26.951591 L 38.087163,26.999885 L 38.173045,27.048179 L 38.273241,27.096474 L 38.359123,27.132696 L 38.445006,27.168915 L 38.559516,27.21721 L 38.645399,27.253432 L 38.745595,27.277578 L 38.845792,27.3138 L 38.945988,27.337946 L 39.060498,27.362094 L 39.160694,27.386241 L 39.275204,27.410389 L 39.3754,27.422463 L 39.489911,27.422463 L 39.604419,27.434535 L 39.71893,27.434535 L 39.83344,27.434535 L 39.947951,27.434535 L 40.06246,27.422463 L 40.191284,27.410389 L 40.305794,27.398315 L 40.420303,27.362094 L 40.534814,27.35002 L 40.649323,27.3138 L 40.778147,27.277578 L 40.892658,27.241358 L 41.007168,27.205136 L 41.107364,27.144768 L 41.221874,27.096474 L 41.350698,27.048179 L 41.450893,26.987811 L 41.565404,26.927443 L 41.679913,26.855001 L 41.794424,26.782559 L 41.908934,26.710118 L 42.009131,26.625602 L 42.123641,26.541087 L 42.223836,26.456572 L 42.338347,26.372056 L 42.438542,26.275467 L 42.553053,26.178878 L 42.653249,26.058142 L 42.767759,25.961553 L 42.867955,25.852891 L 42.982465,25.732155 L 43.082662,25.599344 L 43.182858,25.478608 L 43.297368,25.345798 L 43.38325,25.212988 L 43.497761,25.068104 L 43.597957,24.935294 L 43.698152,24.778338 L 43.812662,24.633454 L 43.912858,24.464424 L 44.013056,24.295392 L 44.127566,24.126361 L 44.227763,23.95733 L 44.327958,23.776226 L 44.428154,23.595121 L 44.428154,23.595121 L 42.939524,23.015587 L 42.939524,23.015587 L 42.939524,23.015587"
id="path2603"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 52.272089,23.027661 L 52.229147,22.918998 L 52.100324,22.677526 L 52.000126,22.49642 L 51.885618,22.303243 L 51.756794,22.085918 L 51.613656,21.856519 L 51.527773,21.735782 L 51.427577,21.602974 L 51.341695,21.470163 L 51.241499,21.349427 L 51.141301,21.216617 L 51.041106,21.095881 L 50.926595,20.963071 L 50.812087,20.830261 L 50.697577,20.697451 L 50.568754,20.564641 L 50.43993,20.443905 L 50.311106,20.323169 L 50.167967,20.190359 L 50.024831,20.069623 L 49.867379,19.96096 L 49.709929,19.840224 L 49.552477,19.743634 L 49.380712,19.647046 L 49.294829,19.59875 L 49.208946,19.550457 L 49.10875,19.502162 L 49.022867,19.453868 L 48.922672,19.42972 L 48.822475,19.381427 L 48.736592,19.345204 L 48.636397,19.321056 L 48.521886,19.284837 L 48.421691,19.260689 L 48.321495,19.236542 L 48.206984,19.212395 L 48.106788,19.188247 L 47.992277,19.176173 L 47.877768,19.176173 L 47.763257,19.164101 L 47.648748,19.164101 L 47.534238,19.164101 L 47.419728,19.164101 L 47.305218,19.176173 L 47.190709,19.188247 L 47.076198,19.200321 L 46.961687,19.236542 L 46.847179,19.248615 L 46.718354,19.284837 L 46.603844,19.321056 L 46.489334,19.357278 L 46.374825,19.405572 L 46.260315,19.441794 L 46.145804,19.502162 L 46.031294,19.562531 L 45.916783,19.622898 L 45.802274,19.683267 L 45.702078,19.743634 L 45.587567,19.816075 L 45.473058,19.888517 L 45.372862,19.973033 L 45.258352,20.057549 L 45.158155,20.142065 L 45.043646,20.22658 L 44.929135,20.335242 L 44.828938,20.431831 L 44.728742,20.528421 L 44.628546,20.637084 L 44.514036,20.745745 L 44.41384,20.866481 L 44.29933,20.999292 L 44.199135,21.120028 L 44.098938,21.252838 L 43.984428,21.385647 L 43.884231,21.530531 L 43.784034,21.663341 L 43.683839,21.820298 L 43.569328,21.977255 L 43.469132,22.134213 L 43.368937,22.303243 L 43.254426,22.472275 L 43.154231,22.641305 L 43.054034,22.82241 L 42.939524,23.015587 L 44.428154,23.595121 L 44.52835,23.426091 L 44.628546,23.25706 L 44.714429,23.100103 L 44.814624,22.943146 L 44.900507,22.786188 L 45.000704,22.641305 L 45.086587,22.508494 L 45.186783,22.375685 L 45.272666,22.242875 L 45.372862,22.122139 L 45.458744,22.013476 L 45.544626,21.904814 L 45.630508,21.796151 L 45.716392,21.699562 L 45.802274,21.602974 L 45.888156,21.506384 L 45.974038,21.421869 L 46.059921,21.349427 L 46.145804,21.264911 L 46.217374,21.19247 L 46.303256,21.120028 L 46.374825,21.05966 L 46.446393,20.999292 L 46.517962,20.938923 L 46.589531,20.902704 L 46.661098,20.842334 L 46.732668,20.806113 L 46.804237,20.769893 L 46.861492,20.733673 L 46.93306,20.709525 L 47.004629,20.673304 L 47.04757,20.649157 L 47.119139,20.637084 L 47.176394,20.612937 L 47.23365,20.600863 L 47.290904,20.576714 L 47.333846,20.564641 L 47.391101,20.552567 L 47.434041,20.552567 L 47.491296,20.552567 L 47.534238,20.540494 L 47.577179,20.540494 L 47.634435,20.540494 L 47.677375,20.540494 L 47.73463,20.540494 L 47.777571,20.552567 L 47.820512,20.552567 L 47.877768,20.564641 L 47.920708,20.576714 L 47.963649,20.576714 L 48.020905,20.600863 L 48.07816,20.612937 L 48.121101,20.62501 L 48.178356,20.637084 L 48.221298,20.673304 L 48.278553,20.685377 L 48.321495,20.709525 L 48.37875,20.733673 L 48.436005,20.769893 L 48.478945,20.781967 L 48.593455,20.842334 L 48.693651,20.92685 L 48.793848,20.999292 L 48.908357,21.083808 L 49.008554,21.168323 L 49.10875,21.252838 L 49.223261,21.349427 L 49.323457,21.446016 L 49.423653,21.554679 L 49.509536,21.663341 L 49.609732,21.75993 L 49.695615,21.868593 L 49.781497,21.98933 L 49.867379,22.085918 L 49.953262,22.206653 L 50.024831,22.315316 L 50.110712,22.42398 L 50.182282,22.532643 L 50.311106,22.737894 L 50.425616,22.918998 L 50.525813,23.100103 L 50.611694,23.232914 L 50.711891,23.462311 L 50.754832,23.522681 L 52.272089,23.027661"
id="path2605"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 50.754832,23.522681 L 50.769146,23.5589 L 50.797773,23.595121 L 50.812087,23.643417 L 50.840713,23.679637 L 50.869341,23.691711 L 50.883654,23.740005 L 50.912282,23.764153 L 50.940909,23.7883 L 50.983851,23.812448 L 51.012478,23.836594 L 51.041106,23.848667 L 51.069734,23.872815 L 51.09836,23.896962 L 51.141301,23.909036 L 51.184243,23.92111 L 51.212871,23.933184 L 51.28444,23.945256 L 51.356008,23.95733 L 51.427577,23.969404 L 51.51346,23.969404 L 51.58503,23.969404 L 51.656597,23.95733 L 51.74248,23.933184 L 51.799736,23.92111 L 51.885618,23.896962 L 51.942872,23.860741 L 52.014442,23.836594 L 52.071696,23.7883 L 52.128951,23.752078 L 52.171892,23.691711 L 52.214833,23.643417 L 52.257773,23.583048 L 52.272089,23.5589 L 52.300715,23.522681 L 52.300715,23.498533 L 52.31503,23.462311 L 52.329344,23.438165 L 52.329344,23.401944 L 52.329344,23.365722 L 52.329344,23.329502 L 52.329344,23.293281 L 52.329344,23.269133 L 52.329344,23.22084 L 52.329344,23.184618 L 52.31503,23.148398 L 52.300715,23.112177 L 52.300715,23.075955 L 52.272089,23.027661 L 50.754832,23.522681"
id="path2607"
style="fill:#1f1a17;stroke:none;stroke-width:0.001" />
<path
d="M 51.069734,23.450238 L 51.084047,23.401944 L 51.09836,23.365722 L 51.09836,23.329502 L 51.09836,23.293281 L 51.09836,23.269133 L 51.09836,23.232914 L 51.084047,23.196691 L 51.05542,23.172544 L 51.041106,23.136324 L 51.026793,23.112177 L 50.998164,23.088029 L 50.969537,23.075955 L 50.940909,23.039735 L 50.897968,23.027661 L 50.869341,23.015587 L 50.840713,23.003514 L 50.797773,22.99144 L 50.754832,22.979366 L 50.726205,22.979366 L 50.683264,22.979366 L 50.654636,22.979366 L 50.611694,22.979366 L 50.568754,22.99144 L 50.540126,23.003514 L 50.497185,23.015587 L 50.468557,23.015587 L 50.43993,23.039735 L 50.411302,23.075955 L 50.36836,23.100103 L 50.354048,23.124251 L 50.325419,23.160472 L 50.311106,23.196691 L 51.069734,23.450238"
id="path2609"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.481483,23.438165 L 42.481483,23.438165 L 42.581679,23.619269 L 42.681876,23.812448 L 42.782072,23.969404 L 42.882269,24.138434 L 42.982465,24.295392 L 43.096975,24.452349 L 43.197172,24.609307 L 43.297368,24.754191 L 43.397564,24.899074 L 43.497761,25.031884 L 43.597957,25.15262 L 43.698152,25.285429 L 43.798349,25.406165 L 43.898545,25.514828 L 43.998741,25.635565 L 44.098938,25.744228 L 44.199135,25.852891 L 44.29933,25.949479 L 44.399526,26.046068 L 44.499723,26.11851 L 44.599918,26.215098 L 44.700116,26.299615 L 44.800311,26.372056 L 44.900507,26.444498 L 45.000704,26.516939 L 45.1009,26.577308 L 45.215411,26.637676 L 45.301294,26.698045 L 45.401489,26.746339 L 45.516,26.794633 L 45.601881,26.842929 L 45.716392,26.879148 L 45.816588,26.927443 L 45.916783,26.951591 L 46.01698,26.987811 L 46.117178,27.011959 L 46.217374,27.036106 L 46.31757,27.048179 L 46.417766,27.072326 L 46.517962,27.0844 L 46.603844,27.0844 L 46.718354,27.096474 L 46.804237,27.096474 L 46.904433,27.096474 L 47.004629,27.0844 L 47.104826,27.072326 L 47.205023,27.072326 L 47.290904,27.048179 L 47.376788,27.036106 L 47.476983,27.011959 L 47.562866,26.987811 L 47.663061,26.963665 L 47.748943,26.939517 L 47.834826,26.903296 L 47.920708,26.879148 L 47.992277,26.842929 L 48.07816,26.794633 L 48.164043,26.758412 L 48.235612,26.710118 L 48.335808,26.673897 L 48.478945,26.589382 L 48.636397,26.492793 L 48.779533,26.38413 L 48.908357,26.275467 L 49.037181,26.166805 L 49.180319,26.046068 L 49.309143,25.937405 L 49.423653,25.816669 L 49.552477,25.695932 L 49.666987,25.575197 L 49.767182,25.442388 L 49.881693,25.309577 L 49.981889,25.188841 L 50.082085,25.068104 L 50.167967,24.935294 L 50.253851,24.814558 L 50.339734,24.693822 L 50.425616,24.573086 L 50.568754,24.35576 L 50.697577,24.138434 L 50.797773,23.945256 L 50.897968,23.776226 L 51.026793,23.546827 L 51.069734,23.450238 L 50.311106,23.196691 L 50.268164,23.269133 L 50.153654,23.498533 L 50.067771,23.655489 L 49.967576,23.836594 L 49.853065,24.029772 L 49.709929,24.235023 L 49.638359,24.35576 L 49.552477,24.464424 L 49.466594,24.573086 L 49.380712,24.693822 L 49.309143,24.802485 L 49.208946,24.923221 L 49.10875,25.031884 L 49.008554,25.15262 L 48.908357,25.261282 L 48.793848,25.369945 L 48.693651,25.478608 L 48.579142,25.575197 L 48.464632,25.68386 L 48.350122,25.768375 L 48.235612,25.864964 L 48.121101,25.949479 L 47.992277,26.021922 L 47.877768,26.106436 L 47.806199,26.142658 L 47.748943,26.154731 L 47.691689,26.203026 L 47.634435,26.215098 L 47.562866,26.239246 L 47.491296,26.275467 L 47.434041,26.299615 L 47.376788,26.311688 L 47.319533,26.335835 L 47.247963,26.347909 L 47.190709,26.359983 L 47.119139,26.372056 L 47.061884,26.38413 L 47.004629,26.396203 L 46.93306,26.396203 L 46.875805,26.408277 L 46.804237,26.408277 L 46.746981,26.408277 L 46.675413,26.396203 L 46.603844,26.396203 L 46.54659,26.396203 L 46.475021,26.372056 L 46.417766,26.372056 L 46.346197,26.347909 L 46.274628,26.335835 L 46.20306,26.311688 L 46.117178,26.287541 L 46.045608,26.25132 L 45.974038,26.227172 L 45.90247,26.203026 L 45.816588,26.154731 L 45.74502,26.11851 L 45.67345,26.070216 L 45.587567,26.021922 L 45.516,25.973627 L 45.430117,25.913259 L 45.344235,25.852891 L 45.258352,25.792522 L 45.17247,25.720081 L 45.086587,25.647638 L 45.000704,25.575197 L 44.914822,25.490682 L 44.828938,25.406165 L 44.743057,25.309577 L 44.64286,25.212988 L 44.556977,25.116398 L 44.456782,25.007736 L 44.370899,24.899074 L 44.270703,24.778338 L 44.184822,24.669675 L 44.098938,24.536864 L 43.998741,24.391982 L 43.898545,24.259171 L 43.798349,24.126361 L 43.712467,23.969404 L 43.61227,23.824521 L 43.512073,23.655489 L 43.411878,23.498533 L 43.311681,23.329502 L 43.225798,23.148398 L 43.225798,23.148398 L 42.481483,23.438165 L 42.481483,23.438165 L 42.481483,23.438165"
id="path2611"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.381864,23.401944 L 35.381864,23.401944 L 35.424805,23.329502 L 35.539316,23.112177 L 35.625199,22.95522 L 35.725394,22.774116 L 35.854218,22.580938 L 35.983042,22.363612 L 36.054611,22.254949 L 36.140493,22.146286 L 36.226376,22.025549 L 36.312258,21.916886 L 36.398141,21.796151 L 36.484023,21.675414 L 36.584219,21.566752 L 36.684415,21.446016 L 36.798926,21.349427 L 36.899121,21.22869 L 36.999319,21.120028 L 37.113828,21.02344 L 37.228337,20.92685 L 37.342848,20.830261 L 37.457356,20.733673 L 37.58618,20.649157 L 37.700692,20.576714 L 37.829515,20.504274 L 37.88677,20.468052 L 37.944025,20.443905 L 38.015594,20.407684 L 38.087163,20.383537 L 38.130104,20.359389 L 38.201673,20.335242 L 38.258927,20.311095 L 38.330497,20.286947 L 38.387751,20.2628 L 38.445006,20.2628 L 38.516575,20.238654 L 38.573829,20.22658 L 38.645399,20.22658 L 38.702654,20.202433 L 38.774222,20.202433 L 38.831477,20.202433 L 38.888733,20.202433 L 38.960302,20.202433 L 39.03187,20.202433 L 39.103439,20.202433 L 39.160694,20.22658 L 39.232263,20.22658 L 39.289517,20.22658 L 39.361086,20.2628 L 39.432654,20.2628 L 39.504224,20.299021 L 39.575793,20.323169 L 39.647361,20.335242 L 39.71893,20.371463 L 39.7905,20.407684 L 39.876382,20.443905 L 39.947951,20.480126 L 40.033833,20.528421 L 40.105401,20.576714 L 40.191284,20.62501 L 40.277167,20.685377 L 40.363049,20.733673 L 40.448931,20.806113 L 40.534814,20.878555 L 40.606382,20.963071 L 40.706579,21.02344 L 40.792461,21.107954 L 40.878344,21.204544 L 40.964227,21.289059 L 41.05011,21.385647 L 41.150305,21.482237 L 41.236187,21.5909 L 41.336383,21.711636 L 41.422265,21.820298 L 41.522463,21.941034 L 41.608345,22.061771 L 41.708541,22.206653 L 41.794424,22.339464 L 41.894619,22.472275 L 41.994817,22.629231 L 42.095013,22.786188 L 42.180895,22.943146 L 42.281091,23.100103 L 42.381288,23.269133 L 42.481483,23.438165 L 43.225798,23.148398 L 43.125603,22.979366 L 43.025407,22.798262 L 42.910895,22.629231 L 42.8107,22.460201 L 42.710503,22.303243 L 42.610307,22.146286 L 42.510112,21.98933 L 42.409914,21.844446 L 42.309719,21.711636 L 42.209523,21.566752 L 42.109327,21.446016 L 42.009131,21.313207 L 41.908934,21.19247 L 41.808737,21.083808 L 41.708541,20.963071 L 41.594031,20.854408 L 41.493835,20.745745 L 41.407952,20.649157 L 41.307757,20.564641 L 41.20756,20.468052 L 41.107364,20.383537 L 40.992854,20.299021 L 40.892658,20.22658 L 40.792461,20.166211 L 40.692264,20.081697 L 40.592068,20.021328 L 40.491873,19.96096 L 40.391676,19.900592 L 40.305794,19.852297 L 40.191284,19.804003 L 40.091087,19.755707 L 39.990891,19.719487 L 39.890696,19.683267 L 39.7905,19.647046 L 39.675988,19.622898 L 39.590106,19.586676 L 39.475596,19.562531 L 39.3754,19.550457 L 39.275204,19.526309 L 39.189322,19.526309 L 39.089124,19.514236 L 38.988929,19.502162 L 38.888733,19.502162 L 38.788536,19.502162 L 38.68834,19.526309 L 38.602457,19.526309 L 38.502261,19.526309 L 38.402064,19.550457 L 38.316182,19.562531 L 38.230299,19.59875 L 38.130104,19.622898 L 38.044221,19.647046 L 37.958338,19.671194 L 37.872457,19.695339 L 37.786574,19.731561 L 37.700692,19.767782 L 37.614808,19.804003 L 37.543239,19.840224 L 37.457356,19.888517 L 37.371475,19.924739 L 37.228337,20.021328 L 37.085201,20.117917 L 36.927749,20.22658 L 36.784613,20.323169 L 36.655789,20.431831 L 36.51265,20.552567 L 36.398141,20.673304 L 36.269317,20.794041 L 36.154806,20.914777 L 36.040297,21.035512 L 35.925788,21.168323 L 35.811277,21.289059 L 35.725394,21.409795 L 35.625199,21.542605 L 35.539316,21.663341 L 35.439119,21.796151 L 35.353236,21.904814 L 35.267354,22.025549 L 35.13853,22.254949 L 34.995393,22.472275 L 34.895197,22.653379 L 34.795,22.82241 L 34.666177,23.051809 L 34.623236,23.160472 L 34.623236,23.160472 L 35.381864,23.401944 L 35.381864,23.401944 L 35.381864,23.401944"
id="path2613"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.807928,23.414018 L 26.807928,23.414018 L 26.908123,23.595121 L 27.00832,23.776226 L 27.108517,23.945256 L 27.208713,24.102215 L 27.323224,24.271245 L 27.409105,24.428201 L 27.523615,24.573086 L 27.623812,24.730042 L 27.724007,24.862853 L 27.824204,24.995662 L 27.9244,25.128472 L 28.024596,25.249209 L 28.124792,25.369945 L 28.224989,25.490682 L 28.325186,25.599344 L 28.425382,25.708007 L 28.525578,25.816669 L 28.625775,25.913259 L 28.725969,26.009848 L 28.826167,26.094363 L 28.926363,26.178878 L 29.026558,26.263394 L 29.126755,26.335835 L 29.226952,26.408277 L 29.327148,26.480719 L 29.427345,26.541087 L 29.52754,26.601456 L 29.627736,26.661823 L 29.727933,26.710118 L 29.842443,26.758412 L 29.928325,26.818781 L 30.042835,26.842929 L 30.143031,26.879148 L 30.243229,26.927443 L 30.343425,26.951591 L 30.443621,26.975737 L 30.543817,26.999885 L 30.644013,27.024033 L 30.744209,27.036106 L 30.844406,27.048179 L 30.944601,27.048179 L 31.044797,27.060253 L 31.144994,27.060253 L 31.230877,27.060253 L 31.345387,27.048179 L 31.43127,27.036106 L 31.531467,27.036106 L 31.617348,27.011959 L 31.717544,26.987811 L 31.803427,26.975737 L 31.903622,26.951591 L 31.989506,26.927443 L 32.075388,26.891223 L 32.146957,26.879148 L 32.232839,26.842929 L 32.318722,26.794633 L 32.404604,26.758412 L 32.490487,26.722192 L 32.57637,26.68597 L 32.647939,26.625602 L 32.80539,26.541087 L 32.948527,26.444498 L 33.091664,26.347909 L 33.234801,26.239246 L 33.363626,26.130584 L 33.506764,26.009848 L 33.621273,25.889111 L 33.750097,25.768375 L 33.864607,25.659712 L 33.979116,25.526902 L 34.093627,25.406165 L 34.193823,25.285429 L 34.294019,25.15262 L 34.394215,25.031884 L 34.494412,24.899074 L 34.580294,24.778338 L 34.666177,24.669675 L 34.752059,24.536864 L 34.895197,24.319539 L 35.009706,24.102215 L 35.124216,23.909036 L 35.224412,23.740005 L 35.338923,23.498533 L 35.381864,23.401944 L 34.623236,23.160472 L 34.594608,23.232914 L 34.480098,23.462311 L 34.379902,23.619269 L 34.279705,23.7883 L 34.165196,23.993552 L 34.022057,24.198804 L 33.95049,24.319539 L 33.878921,24.428201 L 33.793038,24.548938 L 33.707156,24.657601 L 33.621273,24.766264 L 33.535391,24.887 L 33.435194,24.995662 L 33.334998,25.116398 L 33.220487,25.225061 L 33.120293,25.333725 L 33.020096,25.442388 L 32.905586,25.538976 L 32.791076,25.647638 L 32.676565,25.744228 L 32.562056,25.828743 L 32.433233,25.913259 L 32.318722,25.9857 L 32.189898,26.058142 L 32.132643,26.094363 L 32.075388,26.130584 L 32.018133,26.154731 L 31.946564,26.190952 L 31.889309,26.215098 L 31.832055,26.239246 L 31.774799,26.25132 L 31.703231,26.275467 L 31.645975,26.299615 L 31.574408,26.311688 L 31.517152,26.335835 L 31.445584,26.335835 L 31.388328,26.347909 L 31.331074,26.359983 L 31.259504,26.372056 L 31.202249,26.372056 L 31.13068,26.372056 L 31.059112,26.372056 L 31.001857,26.372056 L 30.930288,26.359983 L 30.873032,26.347909 L 30.801464,26.347909 L 30.729896,26.335835 L 30.672642,26.311688 L 30.601072,26.299615 L 30.51519,26.275467 L 30.457935,26.25132 L 30.372052,26.227172 L 30.300483,26.203026 L 30.228914,26.154731 L 30.157345,26.11851 L 30.071463,26.082289 L 29.999894,26.046068 L 29.914012,25.9857 L 29.828129,25.937405 L 29.75656,25.889111 L 29.670678,25.828743 L 29.584795,25.756301 L 29.498913,25.695932 L 29.413031,25.611418 L 29.327148,25.538976 L 29.241265,25.454461 L 29.155383,25.369945 L 29.055186,25.285429 L 28.969304,25.188841 L 28.883421,25.068104 L 28.797539,24.971516 L 28.697343,24.862853 L 28.597146,24.742117 L 28.511264,24.633454 L 28.411068,24.500644 L 28.325186,24.367834 L 28.224989,24.222951 L 28.124792,24.090141 L 28.038909,23.945256 L 27.938713,23.7883 L 27.838518,23.631343 L 27.738321,23.462311 L 27.652438,23.293281 L 27.552243,23.124251 L 27.552243,23.124251 L 26.807928,23.414018 L 26.807928,23.414018 L 26.807928,23.414018"
id="path2615"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 19.736937,23.438165 L 19.736937,23.438165 L 19.765563,23.365722 L 19.894388,23.136324 L 19.965957,22.979366 L 20.080465,22.798262 L 20.194976,22.59301 L 20.338112,22.375685 L 20.409682,22.279097 L 20.481251,22.15836 L 20.567133,22.049697 L 20.653015,21.92896 L 20.738898,21.808224 L 20.839094,21.699562 L 20.924977,21.578826 L 21.039488,21.470163 L 21.139683,21.349427 L 21.239879,21.240764 L 21.354389,21.132101 L 21.454585,21.02344 L 21.569096,20.92685 L 21.683606,20.830261 L 21.798115,20.733673 L 21.92694,20.649157 L 22.04145,20.576714 L 22.170273,20.504274 L 22.227528,20.468052 L 22.284784,20.431831 L 22.356351,20.39561 L 22.413607,20.371463 L 22.470862,20.347316 L 22.542431,20.323169 L 22.599686,20.299021 L 22.671254,20.274874 L 22.714196,20.2628 L 22.785764,20.238654 L 22.84302,20.22658 L 22.914588,20.22658 L 22.971844,20.202433 L 23.043412,20.202433 L 23.114982,20.190359 L 23.172236,20.190359 L 23.229491,20.190359 L 23.30106,20.190359 L 23.372629,20.190359 L 23.429882,20.190359 L 23.501451,20.202433 L 23.558706,20.202433 L 23.630275,20.22658 L 23.701844,20.22658 L 23.773412,20.250727 L 23.844981,20.2628 L 23.91655,20.299021 L 23.988119,20.323169 L 24.059688,20.359389 L 24.145571,20.383537 L 24.21714,20.419757 L 24.288707,20.455978 L 24.37459,20.504274 L 24.460473,20.552567 L 24.532041,20.612937 L 24.603611,20.661231 L 24.689493,20.721599 L 24.789688,20.781967 L 24.861258,20.842334 L 24.94714,20.92685 L 25.033023,20.999292 L 25.118906,21.083808 L 25.204789,21.168323 L 25.290671,21.264911 L 25.376553,21.349427 L 25.476749,21.458089 L 25.576945,21.566752 L 25.662827,21.675414 L 25.74871,21.796151 L 25.848906,21.916886 L 25.934789,22.037623 L 26.034985,22.170434 L 26.120868,22.303243 L 26.221064,22.448127 L 26.321261,22.59301 L 26.421457,22.749968 L 26.507339,22.906924 L 26.607535,23.075955 L 26.707732,23.232914 L 26.807928,23.414018 L 27.552243,23.124251 L 27.452047,22.943146 L 27.337537,22.762042 L 27.251654,22.59301 L 27.137144,22.436053 L 27.036947,22.267023 L 26.936751,22.110065 L 26.836556,21.953108 L 26.736359,21.820298 L 26.636163,21.675414 L 26.535967,21.542605 L 26.421457,21.409795 L 26.335574,21.276985 L 26.235379,21.168323 L 26.135181,21.05966 L 26.034985,20.938923 L 25.934789,20.830261 L 25.820278,20.721599 L 25.734396,20.62501 L 25.619886,20.540494 L 25.534004,20.443905 L 25.433808,20.359389 L 25.333612,20.286947 L 25.233416,20.202433 L 25.133219,20.129991 L 25.018709,20.069623 L 24.932826,19.99718 L 24.83263,19.936813 L 24.732434,19.876444 L 24.617924,19.82815 L 24.532041,19.779856 L 24.417531,19.731561 L 24.317335,19.695339 L 24.231453,19.65912 L 24.116943,19.622898 L 24.016747,19.59875 L 23.91655,19.562531 L 23.816353,19.550457 L 23.716157,19.526309 L 23.615962,19.514236 L 23.515764,19.502162 L 23.415569,19.490088 L 23.315374,19.490088 L 23.215177,19.490088 L 23.129295,19.490088 L 23.029099,19.502162 L 22.928903,19.514236 L 22.828705,19.526309 L 22.742823,19.538383 L 22.628314,19.562531 L 22.556745,19.586676 L 22.470862,19.59875 L 22.370666,19.622898 L 22.284784,19.65912 L 22.198901,19.695339 L 22.113019,19.731561 L 22.027137,19.767782 L 21.955567,19.804003 L 21.869685,19.840224 L 21.798115,19.888517 L 21.712233,19.924739 L 21.554783,20.021328 L 21.39733,20.117917 L 21.268507,20.22658 L 21.12537,20.335242 L 20.982232,20.443905 L 20.853408,20.552567 L 20.724584,20.673304 L 20.610074,20.806113 L 20.481251,20.92685 L 20.381054,21.05966 L 20.266545,21.180397 L 20.166348,21.301133 L 20.051839,21.433943 L 19.965957,21.566752 L 19.865761,21.675414 L 19.779877,21.808224 L 19.693995,21.92896 L 19.622425,22.049697 L 19.464974,22.279097 L 19.350465,22.49642 L 19.235954,22.689599 L 19.150072,22.846557 L 19.021248,23.100103 L 18.978307,23.196691 L 18.978307,23.196691 L 19.736937,23.438165 L 19.736937,23.438165 L 19.736937,23.438165"
id="path2617"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 11.148686,23.438165 L 11.148686,23.438165 L 11.263195,23.619269 L 11.363392,23.812448 L 11.463588,23.969404 L 11.563785,24.138434 L 11.66398,24.295392 L 11.764176,24.452349 L 11.864373,24.609307 L 11.96457,24.754191 L 12.07908,24.899074 L 12.164961,25.031884 L 12.279472,25.15262 L 12.379668,25.285429 L 12.479865,25.406165 L 12.580061,25.514828 L 12.680257,25.635565 L 12.76614,25.744228 L 12.880649,25.852891 L 12.966531,25.949479 L 13.081041,26.046068 L 13.181237,26.11851 L 13.281433,26.215098 L 13.38163,26.299615 L 13.481827,26.372056 L 13.582023,26.444498 L 13.68222,26.516939 L 13.782416,26.577308 L 13.882612,26.637676 L 13.982807,26.698045 L 14.083004,26.746339 L 14.1832,26.794633 L 14.283396,26.842929 L 14.383592,26.879148 L 14.483789,26.927443 L 14.583986,26.951591 L 14.698496,26.987811 L 14.798692,27.011959 L 14.898889,27.036106 L 14.98477,27.048179 L 15.099281,27.072326 L 15.199477,27.072326 L 15.299673,27.0844 L 15.385555,27.096474 L 15.500065,27.096474 L 15.585948,27.0844 L 15.686144,27.0844 L 15.786341,27.072326 L 15.872223,27.060253 L 15.97242,27.048179 L 16.058301,27.036106 L 16.158498,27.011959 L 16.24438,26.987811 L 16.344577,26.951591 L 16.416145,26.939517 L 16.502028,26.891223 L 16.602225,26.867075 L 16.673793,26.842929 L 16.759676,26.782559 L 16.845558,26.746339 L 16.93144,26.710118 L 17.017323,26.673897 L 17.16046,26.589382 L 17.303598,26.480719 L 17.461049,26.38413 L 17.589873,26.275467 L 17.733011,26.154731 L 17.847522,26.046068 L 17.976345,25.937405 L 18.090854,25.804596 L 18.219678,25.68386 L 18.334188,25.563123 L 18.448698,25.442388 L 18.534581,25.309577 L 18.64909,25.188841 L 18.749288,25.056031 L 18.83517,24.935294 L 18.935366,24.814558 L 19.006935,24.681749 L 19.092818,24.573086 L 19.235954,24.331613 L 19.364779,24.126361 L 19.464974,23.933184 L 19.56517,23.776226 L 19.679681,23.534754 L 19.736937,23.438165 L 18.978307,23.196691 L 18.935366,23.269133 L 18.820856,23.486458 L 18.734973,23.643417 L 18.634777,23.824521 L 18.505953,24.029772 L 18.37713,24.235023 L 18.30556,24.343687 L 18.233992,24.452349 L 18.14811,24.573086 L 18.047913,24.681749 L 17.962031,24.802485 L 17.876149,24.923221 L 17.790266,25.031884 L 17.690069,25.15262 L 17.589873,25.261282 L 17.475363,25.369945 L 17.375167,25.466534 L 17.260657,25.575197 L 17.146147,25.671786 L 17.031638,25.768375 L 16.917127,25.864964 L 16.788304,25.949479 L 16.673793,26.021922 L 16.544969,26.094363 L 16.487714,26.130584 L 16.416145,26.154731 L 16.373203,26.190952 L 16.301636,26.215098 L 16.24438,26.239246 L 16.187126,26.275467 L 16.115556,26.299615 L 16.058301,26.311688 L 15.986734,26.335835 L 15.929478,26.347909 L 15.857909,26.359983 L 15.800654,26.372056 L 15.7434,26.38413 L 15.686144,26.396203 L 15.614576,26.396203 L 15.543006,26.396203 L 15.485752,26.396203 L 15.414183,26.408277 L 15.356928,26.396203 L 15.285358,26.396203 L 15.228105,26.396203 L 15.156536,26.372056 L 15.084966,26.372056 L 15.027711,26.347909 L 14.941829,26.335835 L 14.87026,26.311688 L 14.798692,26.287541 L 14.727123,26.25132 L 14.655554,26.227172 L 14.583986,26.203026 L 14.498103,26.154731 L 14.426534,26.106436 L 14.354964,26.070216 L 14.269082,26.021922 L 14.1832,25.973627 L 14.097318,25.913259 L 14.025749,25.852891 L 13.939867,25.792522 L 13.853984,25.720081 L 13.768102,25.647638 L 13.68222,25.575197 L 13.596338,25.490682 L 13.49614,25.406165 L 13.410257,25.309577 L 13.310061,25.212988 L 13.238492,25.116398 L 13.138296,25.007736 L 13.0381,24.899074 L 12.952218,24.778338 L 12.866336,24.669675 L 12.76614,24.536864 L 12.680257,24.391982 L 12.580061,24.259171 L 12.479865,24.126361 L 12.379668,23.969404 L 12.293786,23.824521 L 12.193588,23.655489 L 12.093393,23.498533 L 11.993196,23.329502 L 11.907315,23.148398 L 11.907315,23.148398 L 11.148686,23.438165 L 11.148686,23.438165 L 11.148686,23.438165"
id="path2619"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.0920075,23.401944 L 4.1206351,23.329502 L 4.2351446,23.100103 L 4.3210273,22.943146 L 4.4212234,22.762042 L 4.5500479,22.568864 L 4.6931849,22.363612 L 4.7504399,22.242875 L 4.8363218,22.134213 L 4.9222053,22.013476 L 4.9937729,21.904814 L 5.0939699,21.796151 L 5.1798517,21.675414 L 5.2800486,21.566752 L 5.3802448,21.446016 L 5.4804417,21.337353 L 5.5949511,21.22869 L 5.6951472,21.120028 L 5.8096575,21.02344 L 5.9241669,20.92685 L 6.0386772,20.830261 L 6.1531875,20.733673 L 6.2676969,20.649157 L 6.3965214,20.576714 L 6.5110308,20.504274 L 6.5826001,20.468052 L 6.625541,20.431831 L 6.6971096,20.407684 L 6.7543647,20.383537 L 6.8259333,20.359389 L 6.8831883,20.335242 L 6.9404435,20.311095 L 7.012012,20.286947 L 7.0692671,20.2628 L 7.1408365,20.2628 L 7.1980907,20.238654 L 7.2696601,20.22658 L 7.3269144,20.22658 L 7.3841695,20.202433 L 7.4557381,20.202433 L 7.5129941,20.202433 L 7.5845617,20.202433 L 7.6418177,20.202433 L 7.7133854,20.202433 L 7.7706412,20.202433 L 7.8422098,20.202433 L 7.9137783,20.22658 L 7.9853468,20.22658 L 8.0426028,20.250727 L 8.1141704,20.2628 L 8.1857398,20.286947 L 8.2573091,20.323169 L 8.3288768,20.335242 L 8.4004462,20.371463 L 8.486328,20.407684 L 8.5722117,20.443905 L 8.6294667,20.480126 L 8.7153486,20.528421 L 8.786917,20.576714 L 8.8727997,20.62501 L 8.9586825,20.685377 L 9.0445644,20.733673 L 9.130447,20.806113 L 9.2163297,20.878555 L 9.3022124,20.963071 L 9.3880943,21.02344 L 9.473977,21.107954 L 9.574173,21.19247 L 9.6600558,21.289059 L 9.7459383,21.385647 L 9.8318213,21.482237 L 9.9320173,21.5909 L 10.0179,21.711636 L 10.103782,21.820298 L 10.203978,21.941034 L 10.289861,22.061771 L 10.390057,22.206653 L 10.490254,22.339464 L 10.576136,22.472275 L 10.662018,22.629231 L 10.762214,22.786188 L 10.86241,22.943146 L 10.962608,23.100103 L 11.062804,23.269133 L 11.148686,23.438165 L 11.907315,23.148398 L 11.792804,22.979366 L 11.692608,22.798262 L 11.592411,22.629231 L 11.492216,22.460201 L 11.392019,22.303243 L 11.291822,22.146286 L 11.191627,21.98933 L 11.091432,21.844446 L 10.976922,21.711636 L 10.891039,21.566752 L 10.790843,21.446016 L 10.690645,21.313207 L 10.59045,21.19247 L 10.490254,21.083808 L 10.390057,20.963071 L 10.289861,20.854408 L 10.189665,20.745745 L 10.089468,20.649157 L 9.9749583,20.552567 L 9.8890763,20.480126 L 9.7745663,20.383537 L 9.6886833,20.311095 L 9.5884873,20.22658 L 9.4882911,20.166211 L 9.3880943,20.081697 L 9.2878982,20.021328 L 9.1733879,19.96096 L 9.087506,19.900592 L 8.9729959,19.852297 L 8.8727997,19.804003 L 8.7726037,19.755707 L 8.686721,19.719487 L 8.5722117,19.683267 L 8.4720146,19.647046 L 8.3718186,19.622898 L 8.2716226,19.586676 L 8.1714255,19.562531 L 8.0712303,19.550457 L 7.9710335,19.526309 L 7.8708365,19.526309 L 7.7706412,19.502162 L 7.6561311,19.502162 L 7.5845617,19.502162 L 7.4700531,19.502162 L 7.3841695,19.526309 L 7.2839735,19.526309 L 7.1837766,19.526309 L 7.0978947,19.550457 L 6.9976987,19.562531 L 6.911816,19.586676 L 6.8259333,19.622898 L 6.7257371,19.634972 L 6.6398552,19.671194 L 6.5539717,19.695339 L 6.4680899,19.731561 L 6.3822072,19.767782 L 6.3106386,19.804003 L 6.224756,19.840224 L 6.1531875,19.876444 L 6.0673048,19.924739 L 5.9098536,20.009254 L 5.7524024,20.105843 L 5.6092645,20.22658 L 5.4804417,20.323169 L 5.337303,20.431831 L 5.2084793,20.552567 L 5.0796566,20.673304 L 4.9651462,20.781967 L 4.8363218,20.902704 L 4.7218124,21.035512 L 4.6216163,21.156249 L 4.5214194,21.276985 L 4.4069092,21.409795 L 4.3210273,21.542605 L 4.2208311,21.663341 L 4.1349484,21.784078 L 4.0490657,21.904814 L 3.9631839,22.025549 L 3.820046,22.242875 L 3.6912215,22.460201 L 3.5910263,22.653379 L 3.4908295,22.82241 L 3.3763192,23.051809 L 3.3333783,23.148398 L 4.0920075,23.401944"
id="path2621"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 3.3333783,23.148398 L 3.3190641,23.196691 L 3.3047506,23.232914 L 3.3047506,23.269133 L 3.3047506,23.305354 L 3.3047506,23.329502 L 3.3190641,23.365722 L 3.3190641,23.401944 L 3.3333783,23.426091 L 3.3620059,23.462311 L 3.3763192,23.486458 L 3.4049477,23.510607 L 3.4335752,23.534754 L 3.4622028,23.5589 L 3.4908295,23.570974 L 3.519457,23.583048 L 3.5623987,23.595121 L 3.6053396,23.607195 L 3.6339673,23.619269 L 3.6625949,23.619269 L 3.7055358,23.619269 L 3.7484767,23.619269 L 3.7771051,23.619269 L 3.820046,23.619269 L 3.862987,23.595121 L 3.8916146,23.595121 L 3.9202421,23.583048 L 3.9631839,23.5589 L 3.9918106,23.522681 L 4.0204382,23.498533 L 4.0490657,23.474385 L 4.06338,23.438165 L 4.0920075,23.401944 L 3.3333783,23.148398"
id="path2623"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 4.4641643,23.075955 L 4.4498509,23.039735 L 4.4355375,23.003514 L 4.4069092,22.95522 L 4.3782825,22.918998 L 4.3639682,22.894851 L 4.3210273,22.858631 L 4.306713,22.846557 L 4.2780864,22.82241 L 4.2494588,22.786188 L 4.206517,22.762042 L 4.1778902,22.749968 L 4.1492618,22.72582 L 4.0776934,22.689599 L 4.006124,22.665452 L 3.9345555,22.653379 L 3.862987,22.641305 L 3.7771051,22.629231 L 3.71985,22.629231 L 3.6339673,22.629231 L 3.5623987,22.641305 L 3.4765153,22.653379 L 3.419261,22.677526 L 3.3476925,22.701673 L 3.2761231,22.737894 L 3.2188688,22.774116 L 3.1616137,22.82241 L 3.1043586,22.846557 L 3.0471035,22.906924 L 3.0041626,22.95522 L 2.9612207,23.015587 L 2.9469073,23.039735 L 2.932594,23.075955 L 2.9182798,23.100103 L 2.9182798,23.136324 L 2.9039655,23.172544 L 2.8896522,23.196691 L 2.8896522,23.232914 L 2.8896522,23.269133 L 2.8896522,23.305354 L 2.8896522,23.329502 L 2.8896522,23.377796 L 2.8896522,23.414018 L 2.9039655,23.450238 L 2.9182798,23.486458 L 2.932594,23.522681 L 2.9469073,23.570974 L 4.4641643,23.075955"
id="path2625"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 10.805156,23.015587 L 10.805156,23.015587 L 10.70496,23.184618 L 10.604764,23.353649 L 10.51888,23.498533 L 10.418685,23.655489 L 10.332802,23.812448 L 10.246919,23.95733 L 10.146724,24.090141 L 10.046527,24.222951 L 9.9606443,24.35576 L 9.8747623,24.476497 L 9.7745663,24.585159 L 9.6886833,24.693822 L 9.6028006,24.802485 L 9.5169188,24.899074 L 9.4310361,24.995662 L 9.3451534,25.092252 L 9.2592706,25.188841 L 9.1733879,25.261282 L 9.1018194,25.333725 L 9.0159368,25.406165 L 8.930055,25.466534 L 8.8584856,25.538976 L 8.786917,25.599344 L 8.7153486,25.659712 L 8.6437792,25.695932 L 8.5722117,25.756301 L 8.5006422,25.792522 L 8.4147595,25.828743 L 8.3718186,25.864964 L 8.30025,25.889111 L 8.2429949,25.925332 L 8.1857398,25.949479 L 8.1141704,25.973627 L 8.0569153,25.9857 L 7.999661,26.009848 L 7.9424058,26.009848 L 7.8994649,26.033996 L 7.8422098,26.046068 L 7.7992688,26.046068 L 7.7420138,26.046068 L 7.6990719,26.058142 L 7.6418177,26.058142 L 7.5845617,26.058142 L 7.5416208,26.058142 L 7.498679,26.058142 L 7.4557381,26.046068 L 7.3984829,26.046068 L 7.355542,26.046068 L 7.2982878,26.021922 L 7.255346,26.009848 L 7.1980907,26.009848 L 7.155149,25.9857 L 7.0978947,25.973627 L 7.0549538,25.949479 L 7.012012,25.937405 L 6.9547577,25.913259 L 6.911816,25.889111 L 6.8545607,25.864964 L 6.7973056,25.840817 L 6.7543647,25.816669 L 6.6398552,25.756301 L 6.525345,25.671786 L 6.4251481,25.599344 L 6.3106386,25.514828 L 6.2104427,25.442388 L 6.1102465,25.345798 L 5.9957363,25.249209 L 5.9098536,25.15262 L 5.8096575,25.056031 L 5.7094605,24.935294 L 5.6235787,24.838705 L 5.5233817,24.730042 L 5.4374999,24.609307 L 5.3516172,24.500644 L 5.2800486,24.391982 L 5.194166,24.295392 L 5.1082833,24.174656 L 5.0510281,24.078067 L 4.9078912,23.872815 L 4.7933809,23.679637 L 4.6931849,23.498533 L 4.6073021,23.353649 L 4.5071061,23.136324 L 4.4641643,23.075955 L 2.9469073,23.570974 L 3.0041626,23.679637 L 3.1329862,23.92111 L 3.2188688,24.090141 L 3.3333783,24.295392 L 3.4765153,24.512718 L 3.619654,24.742117 L 3.7055358,24.862853 L 3.7771051,24.995662 L 3.8773012,25.116398 L 3.9774973,25.249209 L 4.0776934,25.382019 L 4.1778902,25.502755 L 4.2923997,25.647638 L 4.4069092,25.768375 L 4.5214194,25.901185 L 4.6502439,26.046068 L 4.7790676,26.154731 L 4.9222053,26.299615 L 5.0510281,26.408277 L 5.194166,26.529013 L 5.3516172,26.64975 L 5.5090684,26.746339 L 5.6665187,26.855001 L 5.8382851,26.951591 L 5.9384812,27.011959 L 6.0243629,27.048179 L 6.1102465,27.096474 L 6.2104427,27.144768 L 6.3106386,27.180989 L 6.3965214,27.21721 L 6.4967165,27.253432 L 6.5969136,27.289652 L 6.7114238,27.3138 L 6.8116198,27.35002 L 6.911816,27.362094 L 7.0263253,27.386241 L 7.1265223,27.410389 L 7.2410326,27.422463 L 7.355542,27.422463 L 7.4700531,27.434535 L 7.5845617,27.446608 L 7.6990719,27.434535 L 7.8135821,27.434535 L 7.9280916,27.422463 L 8.0426028,27.422463 L 8.1571122,27.398315 L 8.2859359,27.362094 L 8.4004462,27.35002 L 8.5149556,27.3138 L 8.6294667,27.277578 L 8.7439761,27.241358 L 8.8584856,27.205136 L 8.9729959,27.144768 L 9.087506,27.096474 L 9.2020155,27.048179 L 9.3165258,26.987811 L 9.4310361,26.927443 L 9.5312321,26.855001 L 9.6457425,26.782559 L 9.7602523,26.710118 L 9.8747623,26.625602 L 9.9749583,26.541087 L 10.089468,26.456572 L 10.189665,26.372056 L 10.304174,26.275467 L 10.404371,26.178878 L 10.51888,26.058142 L 10.604764,25.961553 L 10.719273,25.852891 L 10.81947,25.732155 L 10.93398,25.599344 L 11.034176,25.478608 L 11.134373,25.345798 L 11.248881,25.212988 L 11.349078,25.068104 L 11.449275,24.935294 L 11.549471,24.778338 L 11.649667,24.621381 L 11.764176,24.464424 L 11.864373,24.295392 L 11.96457,24.126361 L 12.07908,23.95733 L 12.179275,23.776226 L 12.279472,23.595121 L 12.279472,23.595121 L 10.805156,23.015587 L 10.805156,23.015587 L 10.805156,23.015587"
id="path2627"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 20.137721,23.039735 L 20.137721,23.039735 L 20.094779,22.918998 L 19.965957,22.677526 L 19.865761,22.508494 L 19.75125,22.303243 L 19.622425,22.085918 L 19.464974,21.856519 L 19.379092,21.735782 L 19.293209,21.602974 L 19.207326,21.482237 L 19.121445,21.349427 L 19.006935,21.216617 L 18.906739,21.095881 L 18.792229,20.963071 L 18.692032,20.830261 L 18.563208,20.697451 L 18.434384,20.564641 L 18.30556,20.443905 L 18.176736,20.323169 L 18.0336,20.202433 L 17.876149,20.069623 L 17.733011,19.96096 L 17.575559,19.840224 L 17.418108,19.743634 L 17.260657,19.647046 L 17.16046,19.59875 L 17.060264,19.550457 L 16.974382,19.502162 L 16.888499,19.453868 L 16.788304,19.42972 L 16.702421,19.381427 L 16.602225,19.345204 L 16.502028,19.321056 L 16.387518,19.296909 L 16.287322,19.260689 L 16.187126,19.236542 L 16.072615,19.212395 L 15.958106,19.200321 L 15.857909,19.176173 L 15.7434,19.176173 L 15.62889,19.164101 L 15.514379,19.164101 L 15.399869,19.164101 L 15.285358,19.164101 L 15.170848,19.176173 L 15.056339,19.188247 L 14.941829,19.212395 L 14.813005,19.236542 L 14.698496,19.260689 L 14.583986,19.284837 L 14.469476,19.321056 L 14.354964,19.357278 L 14.226141,19.405572 L 14.125946,19.453868 L 14.011434,19.490088 L 13.896926,19.562531 L 13.782416,19.622898 L 13.667905,19.683267 L 13.553396,19.743634 L 13.438886,19.816075 L 13.324375,19.888517 L 13.224179,19.973033 L 13.123983,20.057549 L 13.009473,20.142065 L 12.909276,20.22658 L 12.794767,20.335242 L 12.680257,20.431831 L 12.580061,20.528421 L 12.479865,20.637084 L 12.365354,20.745745 L 12.265158,20.866481 L 12.164961,20.999292 L 12.050452,21.120028 L 11.950256,21.252838 L 11.835745,21.373575 L 11.73555,21.530531 L 11.635352,21.663341 L 11.535157,21.820298 L 11.420646,21.977255 L 11.32045,22.134213 L 11.20594,22.291171 L 11.105745,22.472275 L 11.005549,22.641305 L 10.905352,22.82241 L 10.805156,23.015587 L 12.279472,23.595121 L 12.379668,23.426091 L 12.479865,23.25706 L 12.565747,23.100103 L 12.665942,22.943146 L 12.751825,22.786188 L 12.852022,22.641305 L 12.952218,22.508494 L 13.0381,22.375685 L 13.123983,22.242875 L 13.209865,22.122139 L 13.310061,22.013476 L 13.395944,21.904814 L 13.481827,21.796151 L 13.582023,21.699562 L 13.653592,21.5909 L 13.753787,21.506384 L 13.825356,21.421869 L 13.911239,21.337353 L 13.997122,21.264911 L 14.068691,21.19247 L 14.154574,21.120028 L 14.226141,21.05966 L 14.29771,20.999292 L 14.383592,20.938923 L 14.455162,20.902704 L 14.52673,20.842334 L 14.5983,20.806113 L 14.655554,20.769893 L 14.727123,20.733673 L 14.798692,20.709525 L 14.855947,20.673304 L 14.913201,20.649157 L 14.970457,20.637084 L 15.027711,20.612937 L 15.084966,20.600863 L 15.142222,20.588788 L 15.185163,20.564641 L 15.242418,20.552567 L 15.299673,20.552567 L 15.342613,20.552567 L 15.399869,20.540494 L 15.457125,20.540494 L 15.500065,20.540494 L 15.543006,20.540494 L 15.600261,20.540494 L 15.643203,20.552567 L 15.686144,20.552567 L 15.7434,20.564641 L 15.786341,20.576714 L 15.829282,20.588788 L 15.886537,20.600863 L 15.929478,20.612937 L 15.986734,20.62501 L 16.029674,20.637084 L 16.086929,20.673304 L 16.144184,20.685377 L 16.187126,20.709525 L 16.24438,20.733673 L 16.301636,20.769893 L 16.344577,20.794041 L 16.459086,20.854408 L 16.573597,20.92685 L 16.673793,20.999292 L 16.773991,21.083808 L 16.874186,21.168323 L 16.974382,21.252838 L 17.088892,21.349427 L 17.189088,21.446016 L 17.289285,21.554679 L 17.375167,21.663341 L 17.475363,21.75993 L 17.575559,21.880667 L 17.661442,21.98933 L 17.747324,22.097992 L 17.818894,22.206653 L 17.904776,22.315316 L 17.976345,22.436053 L 18.047913,22.532643 L 18.176736,22.737894 L 18.291247,22.931072 L 18.391443,23.100103 L 18.477325,23.25706 L 18.591836,23.462311 L 18.620463,23.522681 L 18.620463,23.522681 L 20.137721,23.039735 L 20.137721,23.039735 L 20.137721,23.039735"
id="path2629"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 26.478712,22.979366 L 26.478712,22.979366 L 26.378515,23.148398 L 26.27832,23.317428 L 26.178123,23.474385 L 26.09224,23.631343 L 26.006358,23.776226 L 25.906161,23.92111 L 25.820278,24.065993 L 25.720083,24.198804 L 25.634201,24.319539 L 25.534004,24.452349 L 25.448122,24.561012 L 25.362239,24.669675 L 25.276356,24.766264 L 25.176161,24.874926 L 25.104591,24.971516 L 25.018709,25.056031 L 24.94714,25.15262 L 24.861258,25.225061 L 24.775375,25.309577 L 24.689493,25.369945 L 24.603611,25.442388 L 24.532041,25.502755 L 24.460473,25.575197 L 24.388905,25.611418 L 24.303022,25.671786 L 24.231453,25.708007 L 24.174198,25.756301 L 24.102629,25.792522 L 24.03106,25.828743 L 23.973805,25.852891 L 23.91655,25.889111 L 23.844981,25.913259 L 23.787726,25.937405 L 23.73047,25.949479 L 23.673216,25.973627 L 23.615962,25.9857 L 23.558706,25.997774 L 23.515764,26.009848 L 23.472823,26.009848 L 23.415569,26.021922 L 23.372629,26.021922 L 23.329688,26.021922 L 23.272433,26.021922 L 23.229491,26.021922 L 23.172236,26.021922 L 23.129295,26.009848 L 23.07204,26.009848 L 23.029099,26.009848 L 22.971844,25.9857 L 22.928903,25.9857 L 22.885961,25.973627 L 22.828705,25.949479 L 22.785764,25.937405 L 22.728509,25.925332 L 22.685568,25.901185 L 22.628314,25.877038 L 22.585373,25.852891 L 22.513803,25.828743 L 22.470862,25.804596 L 22.427921,25.768375 L 22.313411,25.708007 L 22.213215,25.647638 L 22.113019,25.575197 L 21.998509,25.490682 L 21.898313,25.406165 L 21.798115,25.309577 L 21.683606,25.212988 L 21.583409,25.116398 L 21.483213,25.01981 L 21.39733,24.899074 L 21.282821,24.802485 L 21.196938,24.681749 L 21.12537,24.573086 L 21.039488,24.464424 L 20.939291,24.35576 L 20.867722,24.247097 L 20.796153,24.138434 L 20.724584,24.029772 L 20.59576,23.824521 L 20.466936,23.643417 L 20.366741,23.462311 L 20.295171,23.317428 L 20.180662,23.100103 L 20.137721,23.039735 L 18.620463,23.522681 L 18.677718,23.643417 L 18.806542,23.872815 L 18.892425,24.065993 L 19.006935,24.259171 L 19.150072,24.476497 L 19.293209,24.705895 L 19.379092,24.838705 L 19.464974,24.959442 L 19.550857,25.080178 L 19.651054,25.212988 L 19.75125,25.345798 L 19.851446,25.466534 L 19.965957,25.599344 L 20.080465,25.744228 L 20.20929,25.864964 L 20.323799,25.997774 L 20.452623,26.11851 L 20.59576,26.239246 L 20.738898,26.372056 L 20.882036,26.492793 L 21.039488,26.613529 L 21.182625,26.722192 L 21.354389,26.818781 L 21.511841,26.915369 L 21.612036,26.975737 L 21.697919,27.011959 L 21.798115,27.072326 L 21.883998,27.108548 L 21.969881,27.144768 L 22.070078,27.180989 L 22.170273,27.21721 L 22.27047,27.253432 L 22.370666,27.277578 L 22.485175,27.3138 L 22.585373,27.325873 L 22.699881,27.35002 L 22.800079,27.362094 L 22.914588,27.386241 L 23.029099,27.398315 L 23.14361,27.398315 L 23.258118,27.410389 L 23.372629,27.410389 L 23.472823,27.398315 L 23.601647,27.386241 L 23.716157,27.374168 L 23.830668,27.362094 L 23.945177,27.337946 L 24.074002,27.3138 L 24.188512,27.277578 L 24.303022,27.241358 L 24.417531,27.205136 L 24.532041,27.168915 L 24.660865,27.120622 L 24.761061,27.072326 L 24.875571,27.011959 L 24.990082,26.951591 L 25.104591,26.879148 L 25.219102,26.818781 L 25.319298,26.746339 L 25.433808,26.68597 L 25.534004,26.589382 L 25.648514,26.516939 L 25.74871,26.432425 L 25.86322,26.335835 L 25.963416,26.239246 L 26.077927,26.142658 L 26.178123,26.046068 L 26.292634,25.925332 L 26.392828,25.816669 L 26.493026,25.695932 L 26.607535,25.575197 L 26.707732,25.454461 L 26.807928,25.309577 L 26.922437,25.188841 L 27.022634,25.031884 L 27.12283,24.899074 L 27.223026,24.742117 L 27.337537,24.585159 L 27.437732,24.428201 L 27.53793,24.271245 L 27.652438,24.102215 L 27.752635,23.92111 L 27.852832,23.752078 L 27.953027,23.5589 L 27.953027,23.5589 L 26.478712,22.979366 L 26.478712,22.979366 L 26.478712,22.979366"
id="path2631"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 35.796964,23.075955 L 35.796964,23.075955 L 35.754022,22.95522 L 35.625199,22.713747 L 35.539316,22.544716 L 35.410492,22.339464 L 35.281668,22.110065 L 35.13853,21.892741 L 35.052648,21.75993 L 34.966766,21.639193 L 34.86657,21.506384 L 34.780687,21.373575 L 34.666177,21.240764 L 34.565981,21.107954 L 34.45147,20.975144 L 34.336961,20.842334 L 34.222451,20.709525 L 34.093627,20.576714 L 33.979116,20.455978 L 33.83598,20.323169 L 33.692843,20.202433 L 33.549705,20.081697 L 33.392253,19.973033 L 33.249115,19.852297 L 33.077351,19.743634 L 32.919899,19.647046 L 32.819704,19.59875 L 32.733821,19.550457 L 32.647939,19.502162 L 32.547742,19.453868 L 32.46186,19.42972 L 32.361664,19.369353 L 32.261467,19.345204 L 32.16127,19.308983 L 32.061074,19.272763 L 31.960878,19.248615 L 31.860682,19.224469 L 31.746172,19.200321 L 31.645975,19.188247 L 31.531467,19.176173 L 31.416956,19.164101 L 31.302445,19.152027 L 31.187936,19.139953 L 31.073425,19.139953 L 30.958915,19.152027 L 30.844406,19.164101 L 30.715582,19.176173 L 30.601072,19.188247 L 30.486562,19.212395 L 30.372052,19.236542 L 30.257542,19.260689 L 30.143031,19.296909 L 30.014207,19.333131 L 29.914012,19.369353 L 29.799501,19.42972 L 29.684992,19.46594 L 29.570482,19.526309 L 29.455972,19.586676 L 29.341463,19.65912 L 29.226952,19.719487 L 29.126755,19.79193 L 29.012245,19.864372 L 28.897735,19.936813 L 28.783225,20.033402 L 28.683029,20.105843 L 28.56852,20.202433 L 28.468322,20.299021 L 28.368127,20.39561 L 28.253617,20.504274 L 28.139107,20.612937 L 28.038909,20.721599 L 27.9244,20.842334 L 27.824204,20.963071 L 27.724007,21.095881 L 27.623812,21.216617 L 27.509302,21.349427 L 27.409105,21.494311 L 27.308909,21.639193 L 27.208713,21.796151 L 27.108517,21.941034 L 26.994006,22.110065 L 26.89381,22.267023 L 26.7793,22.436053 L 26.679104,22.617157 L 26.578908,22.786188 L 26.478712,22.979366 L 27.953027,23.5589 L 28.053224,23.38987 L 28.15342,23.22084 L 28.253617,23.051809 L 28.339499,22.906924 L 28.439696,22.749968 L 28.525578,22.617157 L 28.611461,22.472275 L 28.711656,22.351538 L 28.797539,22.218727 L 28.897735,22.097992 L 28.983617,21.977255 L 29.069499,21.868593 L 29.155383,21.75993 L 29.241265,21.663341 L 29.327148,21.566752 L 29.427345,21.470163 L 29.498913,21.385647 L 29.584795,21.313207 L 29.670678,21.240764 L 29.742247,21.168323 L 29.828129,21.095881 L 29.899698,21.035512 L 29.971267,20.975144 L 30.042835,20.92685 L 30.114404,20.878555 L 30.185973,20.830261 L 30.257542,20.794041 L 30.329111,20.745745 L 30.400679,20.709525 L 30.457935,20.685377 L 30.51519,20.649157 L 30.586758,20.637084 L 30.644013,20.612937 L 30.701268,20.600863 L 30.758523,20.576714 L 30.801464,20.564641 L 30.858719,20.552567 L 30.915974,20.540494 L 30.958915,20.540494 L 31.016171,20.528421 L 31.059112,20.528421 L 31.116366,20.528421 L 31.159308,20.528421 L 31.202249,20.528421 L 31.24519,20.528421 L 31.302445,20.540494 L 31.345387,20.540494 L 31.388328,20.552567 L 31.445584,20.552567 L 31.488526,20.576714 L 31.545779,20.588788 L 31.588721,20.600863 L 31.645975,20.612937 L 31.688917,20.637084 L 31.746172,20.649157 L 31.789114,20.673304 L 31.846368,20.709525 L 31.903622,20.733673 L 31.946564,20.745745 L 31.989506,20.781967 L 32.104016,20.842334 L 32.218526,20.92685 L 32.318722,20.999292 L 32.433233,21.083808 L 32.533429,21.168323 L 32.633625,21.252838 L 32.733821,21.349427 L 32.834017,21.458089 L 32.934213,21.566752 L 33.034409,21.663341 L 33.120293,21.772004 L 33.220487,21.892741 L 33.30637,22.001404 L 33.392253,22.110065 L 33.478136,22.218727 L 33.549705,22.339464 L 33.621273,22.448127 L 33.707156,22.544716 L 33.83598,22.749968 L 33.95049,22.95522 L 34.050685,23.124251 L 34.122255,23.269133 L 34.251078,23.498533 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 34.265391,23.5589 L 35.796964,23.075955"
id="path2633"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 42.123641,23.015587 L 42.123641,23.015587 L 42.023443,23.184618 L 41.937561,23.353649 L 41.837365,23.498533 L 41.751482,23.655489 L 41.651286,23.812448 L 41.551089,23.95733 L 41.465207,24.090141 L 41.379324,24.222951 L 41.279129,24.35576 L 41.193246,24.476497 L 41.107364,24.585159 L 41.007168,24.693822 L 40.921285,24.802485 L 40.835403,24.899074 L 40.74952,24.995662 L 40.663637,25.092252 L 40.577755,25.188841 L 40.491873,25.261282 L 40.420303,25.333725 L 40.334421,25.406165 L 40.262853,25.466534 L 40.191284,25.538976 L 40.105401,25.599344 L 40.033833,25.659712 L 39.947951,25.695932 L 39.890696,25.756301 L 39.819127,25.792522 L 39.747558,25.828743 L 39.675988,25.864964 L 39.604419,25.889111 L 39.561478,25.925332 L 39.489911,25.949479 L 39.432654,25.961553 L 39.3754,25.9857 L 39.318145,26.009848 L 39.275204,26.009848 L 39.217949,26.033996 L 39.160694,26.046068 L 39.117753,26.046068 L 39.060498,26.046068 L 39.017557,26.058142 L 38.974616,26.058142 L 38.91736,26.058142 L 38.874419,26.058142 L 38.817164,26.058142 L 38.774222,26.046068 L 38.716968,26.046068 L 38.674027,26.046068 L 38.645399,26.021922 L 38.588144,26.009848 L 38.530888,25.997774 L 38.487947,25.9857 L 38.445006,25.973627 L 38.387751,25.949479 L 38.330497,25.937405 L 38.287555,25.913259 L 38.230299,25.889111 L 38.173045,25.864964 L 38.115791,25.840817 L 38.087163,25.816669 L 37.972652,25.744228 L 37.858144,25.671786 L 37.757946,25.599344 L 37.643436,25.514828 L 37.543239,25.442388 L 37.443043,25.345798 L 37.342848,25.249209 L 37.24265,25.15262 L 37.128142,25.043958 L 37.04226,24.935294 L 36.942063,24.838705 L 36.841867,24.730042 L 36.770299,24.609307 L 36.684415,24.500644 L 36.598533,24.391982 L 36.51265,24.283319 L 36.441082,24.174656 L 36.369513,24.065993 L 36.24069,23.860741 L 36.126178,23.679637 L 36.025983,23.486458 L 35.940101,23.353649 L 35.82559,23.136324 L 35.796964,23.075955 L 34.265391,23.5589 L 34.336961,23.679637 L 34.45147,23.909036 L 34.551667,24.090141 L 34.666177,24.295392 L 34.795,24.500644 L 34.938139,24.730042 L 35.024021,24.862853 L 35.109903,24.995662 L 35.210099,25.116398 L 35.310295,25.249209 L 35.396177,25.369945 L 35.510689,25.502755 L 35.610884,25.635565 L 35.725394,25.768375 L 35.854218,25.901185 L 35.983042,26.021922 L 36.111865,26.154731 L 36.24069,26.287541 L 36.383826,26.408277 L 36.526965,26.529013 L 36.684415,26.637676 L 36.841867,26.746339 L 36.999319,26.855001 L 37.156768,26.951591 L 37.256965,26.999885 L 37.342848,27.048179 L 37.443043,27.096474 L 37.528926,27.132696 L 37.629122,27.168915 L 37.729319,27.21721 L 37.815202,27.253432 L 37.915398,27.277578 L 38.029908,27.3138 L 38.130104,27.337946 L 38.244613,27.362094 L 38.34481,27.386241 L 38.445006,27.410389 L 38.559516,27.422463 L 38.674027,27.422463 L 38.788536,27.434535 L 38.903046,27.434535 L 39.017557,27.434535 L 39.132066,27.434535 L 39.246576,27.422463 L 39.361086,27.410389 L 39.475596,27.398315 L 39.590106,27.362094 L 39.71893,27.35002 L 39.83344,27.3138 L 39.947951,27.277578 L 40.06246,27.241358 L 40.176971,27.205136 L 40.29148,27.144768 L 40.40599,27.096474 L 40.520501,27.048179 L 40.635009,26.987811 L 40.74952,26.915369 L 40.86403,26.855001 L 40.964227,26.782559 L 41.078736,26.710118 L 41.193246,26.625602 L 41.293442,26.541087 L 41.407952,26.456572 L 41.508148,26.359983 L 41.622658,26.275467 L 41.722854,26.178878 L 41.823052,26.058142 L 41.937561,25.961553 L 42.037759,25.852891 L 42.137954,25.732155 L 42.252464,25.599344 L 42.352661,25.478608 L 42.46717,25.345798 L 42.567367,25.212988 L 42.667562,25.068104 L 42.767759,24.935294 L 42.882269,24.778338 L 42.982465,24.621381 L 43.096975,24.464424 L 43.197172,24.295392 L 43.297368,24.126361 L 43.397564,23.95733 L 43.497761,23.776226 L 43.61227,23.595121 L 43.61227,23.595121 L 42.123641,23.015587 L 42.123641,23.015587 L 42.123641,23.015587"
id="path2635"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 51.456205,23.027661 L 51.39895,22.918998 L 51.270126,22.677526 L 51.184243,22.49642 L 51.069734,22.303243 L 50.926595,22.085918 L 50.78346,21.856519 L 50.697577,21.735782 L 50.611694,21.602974 L 50.525813,21.470163 L 50.425616,21.349427 L 50.325419,21.216617 L 50.210909,21.095881 L 50.110712,20.963071 L 49.996203,20.830261 L 49.867379,20.697451 L 49.752869,20.564641 L 49.624045,20.431831 L 49.480909,20.323169 L 49.33777,20.190359 L 49.194633,20.069623 L 49.037181,19.96096 L 48.894044,19.840224 L 48.736592,19.743634 L 48.564828,19.647046 L 48.464632,19.59875 L 48.37875,19.550457 L 48.292866,19.502162 L 48.192671,19.453868 L 48.106788,19.42972 L 48.006591,19.381427 L 47.906396,19.345204 L 47.806199,19.321056 L 47.706002,19.284837 L 47.591493,19.260689 L 47.491296,19.236542 L 47.376788,19.212395 L 47.276591,19.188247 L 47.162081,19.176173 L 47.04757,19.176173 L 46.93306,19.164101 L 46.818551,19.164101 L 46.718354,19.164101 L 46.603844,19.164101 L 46.475021,19.176173 L 46.36051,19.188247 L 46.246001,19.200321 L 46.13149,19.236542 L 46.01698,19.248615 L 45.90247,19.284837 L 45.78796,19.321056 L 45.67345,19.357278 L 45.55894,19.405572 L 45.444431,19.441794 L 45.32992,19.502162 L 45.215411,19.562531 L 45.1009,19.622898 L 44.98639,19.683267 L 44.87188,19.743634 L 44.771683,19.816075 L 44.657174,19.888517 L 44.542664,19.973033 L 44.442468,20.057549 L 44.327958,20.142065 L 44.213448,20.22658 L 44.113251,20.335242 L 44.013056,20.431831 L 43.898545,20.528421 L 43.798349,20.637084 L 43.698152,20.745745 L 43.583642,20.866481 L 43.469132,20.999292 L 43.368937,21.120028 L 43.26874,21.252838 L 43.168544,21.373575 L 43.054034,21.518457 L 42.968151,21.663341 L 42.853641,21.820298 L 42.753444,21.977255 L 42.653249,22.134213 L 42.538739,22.303243 L 42.438542,22.472275 L 42.338347,22.641305 L 42.223836,22.82241 L 42.123641,23.015587 L 43.61227,23.595121 L 43.698152,23.426091 L 43.798349,23.25706 L 43.898545,23.100103 L 43.984428,22.943146 L 44.084624,22.786188 L 44.184822,22.641305 L 44.270703,22.508494 L 44.356586,22.375685 L 44.456782,22.242875 L 44.542664,22.122139 L 44.64286,22.013476 L 44.714429,21.904814 L 44.814624,21.796151 L 44.886194,21.699562 L 44.98639,21.5909 L 45.072272,21.506384 L 45.143842,21.421869 L 45.229724,21.337353 L 45.315607,21.264911 L 45.387176,21.19247 L 45.473058,21.120028 L 45.55894,21.05966 L 45.630508,20.999292 L 45.702078,20.938923 L 45.773647,20.902704 L 45.845215,20.842334 L 45.916783,20.806113 L 45.988353,20.769893 L 46.045608,20.733673 L 46.117178,20.709525 L 46.174432,20.673304 L 46.231687,20.649157 L 46.303256,20.637084 L 46.36051,20.612937 L 46.417766,20.600863 L 46.460707,20.576714 L 46.517962,20.564641 L 46.560903,20.552567 L 46.603844,20.552567 L 46.661098,20.552567 L 46.718354,20.540494 L 46.761296,20.540494 L 46.804237,20.540494 L 46.861492,20.540494 L 46.904433,20.540494 L 46.961687,20.552567 L 47.004629,20.552567 L 47.04757,20.564641 L 47.090511,20.564641 L 47.147767,20.576714 L 47.205023,20.600863 L 47.247963,20.612937 L 47.305218,20.62501 L 47.348159,20.637084 L 47.391101,20.673304 L 47.448355,20.685377 L 47.491296,20.709525 L 47.548552,20.733673 L 47.591493,20.769893 L 47.648748,20.781967 L 47.763257,20.842334 L 47.863454,20.92685 L 47.977964,20.999292 L 48.07816,21.083808 L 48.192671,21.168323 L 48.292866,21.252838 L 48.393063,21.349427 L 48.493259,21.446016 L 48.593455,21.554679 L 48.679338,21.663341 L 48.779533,21.75993 L 48.865417,21.868593 L 48.965613,21.98933 L 49.037181,22.085918 L 49.123063,22.206653 L 49.208946,22.315316 L 49.280515,22.42398 L 49.352085,22.532643 L 49.480909,22.737894 L 49.595418,22.918998 L 49.695615,23.100103 L 49.781497,23.232914 L 49.896006,23.462311 L 49.924634,23.522681 L 51.456205,23.027661"
id="path2637"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 49.924634,23.522681 L 49.938948,23.5589 L 49.967576,23.595121 L 49.981889,23.643417 L 50.010517,23.679637 L 50.039145,23.691711 L 50.067771,23.727931 L 50.096399,23.752078 L 50.125027,23.7883 L 50.13934,23.812448 L 50.182282,23.836594 L 50.210909,23.848667 L 50.253851,23.872815 L 50.282478,23.896962 L 50.311106,23.909036 L 50.354048,23.92111 L 50.382675,23.933184 L 50.454243,23.945256 L 50.540126,23.95733 L 50.611694,23.969404 L 50.683264,23.969404 L 50.754832,23.969404 L 50.840713,23.95733 L 50.912282,23.933184 L 50.983851,23.92111 L 51.05542,23.896962 L 51.126988,23.860741 L 51.184243,23.824521 L 51.241499,23.7883 L 51.298753,23.752078 L 51.341695,23.691711 L 51.39895,23.643417 L 51.427577,23.583048 L 51.456205,23.5589 L 51.456205,23.522681 L 51.470518,23.498533 L 51.484832,23.462311 L 51.499147,23.426091 L 51.51346,23.401944 L 51.51346,23.365722 L 51.51346,23.329502 L 51.51346,23.293281 L 51.51346,23.269133 L 51.51346,23.22084 L 51.499147,23.184618 L 51.499147,23.136324 L 51.484832,23.112177 L 51.456205,23.075955 L 51.456205,23.027661 L 49.924634,23.522681"
id="path2639"
style="fill:#ffffff;stroke:none;stroke-width:0.001" />
<path
d="M 16.237734,10.792259 L 22.717008,10.042354 L 21.707004,12.940637 L 19.839448,11.866449 L 12.788474,15.089016 L 11.054316,14.622859 L 17.971893,11.420559 L 16.237734,10.792259"
id="path2457"
style="fill:#ffffff;stroke:none;stroke-width:0.1" />
<path
d="M 46.693731,11.108882 L 41.072008,10.196835 L 41.357858,13.25726 L 43.225413,12.345213 L 48.275435,15.101623 L 49.990536,14.635465 L 45.112025,11.879056 L 46.693731,11.108882"
id="path2459"
style="fill:#ffffff;stroke:none;stroke-width:0.1" />
<path
d="M 32.782498,4.4281003 L 30.057391,4.1240848 L 39.109318,1.6716906 L 43.149336,5.0361314 L 40.119323,4.8942574 L 39.547621,4.7321159 L 34.66911,8.5627149 L 28.037383,8.5627149 L 33.220801,4.4281003 L 32.782498,4.4281003"
id="path2492"
style="fill:#ffffff;stroke:none;stroke-width:0.1" />
</svg>

After

Width:  |  Height:  |  Size: 255 KiB

@ -0,0 +1,33 @@
#!/usr/bin/env python
#
# Copyright (C) 2016 GNS3 Technologies Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
from gns3server.controller.symbols import Symbols
from gns3server.utils.get_resource import get_resource
def test_list():
symbols = Symbols()
assert {
'symbol_id': ':/symbols/firewall.svg',
'url': '/static/builtin_symbols/firewall.svg',
'filename': 'firewall.svg',
'builtin': True
} in symbols.list()
assert symbols

@ -0,0 +1,29 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2015 GNS3 Technologies Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from gns3server.config import Config
def test_symbols(http_controller):
response = http_controller.get('/symbols', example=True)
assert response.status == 200
assert {
'symbol_id': ':/symbols/firewall.svg',
'url': '/static/builtin_symbols/firewall.svg',
'filename': 'firewall.svg',
'builtin': True
} in response.json

@ -0,0 +1,35 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2015 GNS3 Technologies Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import aiohttp
import os
from unittest.mock import patch
def test_get(http_root):
response = http_root.get('/static/builtin_symbols/firewall.svg')
assert response.status == 200
assert response.headers['CONTENT-LENGTH'] == '9381'
assert response.headers['CONTENT-TYPE'] == 'image/svg+xml'
assert '</svg>' in response.html
response = http_root.get('/static/builtin_symbols/../main.py')
assert response.status == 404
response = http_root.get('/static/builtin_symbols/404.png')
assert response.status == 404
Loading…
Cancel
Save