diff --git a/artTools/README.md b/artTools/README.md
index 920ee501e48c0e74a5fa1b05c53c487ce9c04a1d..a0131d041861f4882e129b907ada9ddcca8b5a10 100644
--- a/artTools/README.md
+++ b/artTools/README.md
@@ -46,7 +46,7 @@ Use
 
 	python3 normalize_svg.py vector_source.svg
 
-before committing to normalise the format so git will not freak out about the changed indentation.
+before committing to normalize the format so git will not freak out about the changed indentation.
 
 If you use Inkscape, please use in Edit → Settings → Input/Output → SVG-Output → Path Data → Optimized. This is the default.
 In case your Editor uses another path data style which cannot be changed, please contact the other artists and developers via the issue tracker to find a new common ground.
diff --git a/artTools/vector_clothing_replicator.py b/artTools/vector_clothing_replicator.py
index 77882ec001027cfce41b831e3e9ba3e8365bc034..537c010361f42f22a1efea8fe3b55668a9836eaa 100644
--- a/artTools/vector_clothing_replicator.py
+++ b/artTools/vector_clothing_replicator.py
@@ -31,7 +31,7 @@ import lxml.etree as etree
 import sys
 
 REFERENCE_PATH_SAMPLES = 200
-EMBED_REPLICATIONS = True # wether to embed all replications into the input file or output separate files
+EMBED_REPLICATIONS = True # whether to embed all replications into the input file or output separate files
 
 input_file = sys.argv[1]
 clothing = sys.argv[2]
@@ -60,7 +60,7 @@ for e in canvas.xpath('./svg:g',namespaces=ns)+canvas.xpath('./svg:path',namespa
 
 def get_points(xpath_shape):
   '''
-  This funciton extracts reference paths by the given xpath selector.
+  This function extracts reference paths by the given xpath selector.
   Each path is used to sample a fixed number of points.
   '''
   paths_data = tree.xpath(xpath_shape,namespaces=ns)
@@ -69,7 +69,7 @@ def get_points(xpath_shape):
   for path_data in paths_data:
     p = parse_path(path_data)
     points += [
-      p.point(1.0/float(REFERENCE_PATH_SAMPLES)*i) 
+      p.point(1.0/float(REFERENCE_PATH_SAMPLES)*i)
       for i in range(REFERENCE_PATH_SAMPLES)
     ]
   if (not points):
diff --git a/artTools/vector_layer_split.py b/artTools/vector_layer_split.py
index c598f0e11abd85b287232a5416a92c59f3cb6c5f..7eb690a9b7268dfad2e2631e8f7110a12e3837d7 100644
--- a/artTools/vector_layer_split.py
+++ b/artTools/vector_layer_split.py
@@ -70,7 +70,7 @@ for layer in layers:
   i = layer.get('id')
   if ( # disregard non-content groups
     i.endswith("_") or # manually suppressed with underscore
-    i.startswith("XMLID") or # Illustrator generated group 
+    i.startswith("XMLID") or # Illustrator generated group
     i.startswith("g") # Inkscape generated group
   ):
     continue
@@ -90,7 +90,7 @@ for layer in layers:
     canvas.insert(0,defs)
     # re-generate output
     svg = etree.tostring(output, pretty_print=False)
-  
+
   if (output_format == 'tw'):
     # remove unnecessary attributes
     # TODO: never generate unnecessary attributes in the first place
@@ -98,7 +98,7 @@ for layer in layers:
     svg = regex_xmlns.sub('',svg)
     svg = svg.replace(' inkscape:connector-curvature="0"','') # this just saves space
     svg = svg.replace('\n','').replace('\r','') # print cannot be multi-line
-    svg = regex_space.sub('><',svg) # remove indentaion
+    svg = regex_space.sub('><',svg) # remove indentation
     svg = svg.replace('svg:','') # svg namespace was removed
     if ("Boob" in i): # internal groups are used for scaling
       svg = svg.replace('<g ','<g transform="\'+_artTransformBoob+\'"') # boob art uses the boob scaling
@@ -107,7 +107,7 @@ for layer in layers:
     else:
       svg = svg.replace('<g ','<g transform="\'+_art_transform+\'"') # otherwise use default scaling
     svg = svg.encode('utf-8')
-  
+
   # save SVG string to file
   i = layer.get('id')
   output_path = os.path.join(output_directory,i+'.'+output_format)
diff --git a/artTools/vector_revamp_layer_split.py b/artTools/vector_revamp_layer_split.py
index 600a7d358cfb7d05e7da101ee98d3415afb173b7..4f0951b31ca38afd0357303bc37a0ad6d3c61b3a 100644
--- a/artTools/vector_revamp_layer_split.py
+++ b/artTools/vector_revamp_layer_split.py
@@ -110,7 +110,7 @@ for layer in layers:
         svg = regex_xmlns.sub('', svg)
         svg = svg.replace(' inkscape:connector-curvature="0"', '')  # this just saves space
         svg = svg.replace('\n', '').replace('\r', '')  # print cannot be multi-line
-        svg = regex_space.sub('><', svg)  # remove indentaion
+        svg = regex_space.sub('><', svg)  # remove indentation
         svg = svg.replace('svg:', '')  # svg namespace was removed
 
         transformGroups = regex_transformVar.findall(svg)
diff --git a/devNotes/QuickList.txt b/devNotes/QuickList.txt
index 03f875b67fa9cd26414ab8beb95a35190c05b94c..664a2072e9bdaa68fa9a4611a77a455a7b5b4e2b 100644
--- a/devNotes/QuickList.txt
+++ b/devNotes/QuickList.txt
@@ -1,4 +1,3 @@
-
 QuickList is built from the interaction of six parts.
 
 1] The Quick List option enable/disable control.
diff --git a/devNotes/sugarcube stuff/building sugarcube.txt b/devNotes/sugarcube stuff/building sugarcube.txt
index c8e4f972b5d1c43286ec19a9c06a2855f6893a59..83a18a070072c414d39537534932aefb07f18d67 100644
--- a/devNotes/sugarcube stuff/building sugarcube.txt	
+++ b/devNotes/sugarcube stuff/building sugarcube.txt	
@@ -20,7 +20,7 @@ Retrieving SugarCube sources and preparing build environment for it.
 run the following command:
 	hg clone https://bitbucket.org/tmedwards/sugarcube
 Change working directory into the cloned repository.
-Now choose the branch. Let's suppose we want the lates officially released version 2. The branch name
+Now choose the branch. Let's suppose we want the latest officially released version 2. The branch name
 is "v2-release" then:
 	hg checkout v2-release
 Please note that branch switching in Mercurial requires a clean local tree (without modifications).
@@ -36,8 +36,7 @@ Run the node package manager (npm) in the repository:
 	npm install
 
 CAUTION: dependencies list (located in the package.json file in the repository root) may change from
-commit to commit and it differs between branches! Make sure to istall correct dependencies after
-switching working brach.
+commit to commit and it differs between branches! Make sure to install correct dependencies after switching working branch.
 
 
 Patching and building SugarCube.
@@ -61,8 +60,8 @@ Find result files in the dist directory.
 
 APPENDIX Lists required steps very briefly.
 
-1. Clone Sugarube repo: hg clone https://bitbucket.org/tmedwards/sugarcube
-2. Change active directory into the directory of the suragcube clone.
+1. Clone Sugarcube repo: hg clone https://bitbucket.org/tmedwards/sugarcube
+2. Change active directory into the directory of the sugarcube clone.
 3. Set active branch to "v2-release": hg checkout v2-release
 4. Run npm install in the repo dir.
 
diff --git a/devTools/sugarcube.d.ts b/devTools/sugarcube.d.ts
index f6a38db9400cebbede89bd298760c5c90d2990b3..955e8b91857211be8ec001c4b2881b407e9f7357 100644
--- a/devTools/sugarcube.d.ts
+++ b/devTools/sugarcube.d.ts
@@ -91,7 +91,7 @@ declare namespace SugarCubeLib {
 
 			/**
 			 * Determines whether saving is allowed within the current context. The callback is invoked each time a save is
-			 * requested. If its return value is falsy, the save is disallowed. If its return value is truthy, the save is
+			 * requested. If its return value is false, the save is disallowed. If its return value is truthy, the save is
 			 * allowed to continue unperturbed.
 			 * @default undefined
 			 * @since 2.0.0
diff --git a/resources/vector/body/addon/hair aft neat darkbrown.svg b/resources/vector/body/addon/hair aft neat darkbrown.svg
index dbc0b45b9b6dfad630e0c99b876bb9c7363b8af8..b2b99fe4366ffb0baa99feb328b1f099c42a77d2 100644
--- a/resources/vector/body/addon/hair aft neat darkbrown.svg	
+++ b/resources/vector/body/addon/hair aft neat darkbrown.svg	
@@ -18,35 +18,35 @@
    xml:space="preserve"
    sodipodi:docname="hair aft neat darkbrown.svg"
    inkscape:version="0.92.1 r15371"><metadata
-     id="metadata10"><rdf:RDF><cc:Work
-         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
-     id="defs8" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1920"
-     inkscape:window-height="1001"
-     id="namedview6"
-     showgrid="false"
-     inkscape:zoom="0.236"
-     inkscape:cx="-1508.4746"
-     inkscape:cy="500"
-     inkscape:window-x="-9"
-     inkscape:window-y="-9"
-     inkscape:window-maximized="1"
-     inkscape:current-layer="Layer_1" /><style
-     type="text/css"
-     id="style2">
+	 id="metadata10"><rdf:RDF><cc:Work
+		 rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+		   rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
+	 id="defs8" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1920"
+	 inkscape:window-height="1001"
+	 id="namedview6"
+	 showgrid="false"
+	 inkscape:zoom="0.236"
+	 inkscape:cx="-1508.4746"
+	 inkscape:cy="500"
+	 inkscape:window-x="-9"
+	 inkscape:window-y="-9"
+	 inkscape:window-maximized="1"
+	 inkscape:current-layer="Layer_1" /><style
+	 type="text/css"
+	 id="style2">
 	.st0{fill:#3F4040;}
 </style><path
-     id="Hair_Aft_7_"
-     class="st0"
-     d="m 568.83729,121.38644 c 13.5,72.4 34.5,66.5 14,103.3 -43.3,47.7 -90.1,7 -98.1,-9.8 -41.1,-23.4 -0.3,-140.799999 48.3,-130.299999 33.3,7.2 33.3,19.499999 35.8,36.799999"
-     inkscape:connector-curvature="0"
-     style="fill:#463325;fill-opacity:1;" /></svg>
\ No newline at end of file
+	 id="Hair_Aft_7_"
+	 class="st0"
+	 d="m 568.83729,121.38644 c 13.5,72.4 34.5,66.5 14,103.3 -43.3,47.7 -90.1,7 -98.1,-9.8 -41.1,-23.4 -0.3,-140.799999 48.3,-130.299999 33.3,7.2 33.3,19.499999 35.8,36.799999"
+	 inkscape:connector-curvature="0"
+	 style="fill:#463325;fill-opacity:1;" /></svg>
\ No newline at end of file
diff --git a/resources/vector/body/addon/hair aft neat platinumblonde.svg b/resources/vector/body/addon/hair aft neat platinumblonde.svg
index 959caf68bfe9f293f1c87476b263081d287eab98..ac791e1f98a6488f2292483e9b8e3f33f57ef9bb 100644
--- a/resources/vector/body/addon/hair aft neat platinumblonde.svg	
+++ b/resources/vector/body/addon/hair aft neat platinumblonde.svg	
@@ -18,35 +18,35 @@
    xml:space="preserve"
    sodipodi:docname="hair aft neat platinumblonde.svg"
    inkscape:version="0.92.1 r15371"><metadata
-     id="metadata10"><rdf:RDF><cc:Work
-         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
-     id="defs8" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1920"
-     inkscape:window-height="1001"
-     id="namedview6"
-     showgrid="false"
-     inkscape:zoom="0.236"
-     inkscape:cx="-1527.5424"
-     inkscape:cy="500"
-     inkscape:window-x="-9"
-     inkscape:window-y="-9"
-     inkscape:window-maximized="1"
-     inkscape:current-layer="Layer_1" /><style
-     type="text/css"
-     id="style2">
+	 id="metadata10"><rdf:RDF><cc:Work
+		 rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+		   rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
+	 id="defs8" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1920"
+	 inkscape:window-height="1001"
+	 id="namedview6"
+	 showgrid="false"
+	 inkscape:zoom="0.236"
+	 inkscape:cx="-1527.5424"
+	 inkscape:cy="500"
+	 inkscape:window-x="-9"
+	 inkscape:window-y="-9"
+	 inkscape:window-maximized="1"
+	 inkscape:current-layer="Layer_1" /><style
+	 type="text/css"
+	 id="style2">
 	.st0{fill:#3F4040;}
 </style><path
-     id="Hair_Aft_7_"
-     class="st0"
-     d="m 568.83729,121.38644 c 13.5,72.4 34.5,66.5 14,103.3 -43.3,47.7 -90.1,7 -98.1,-9.8 -41.1,-23.4 -0.3,-140.799999 48.3,-130.299999 33.3,7.2 33.3,19.499999 35.8,36.799999"
-     inkscape:connector-curvature="0"
-     style="fill:#fcf3c1;fill-opacity:1" /></svg>
\ No newline at end of file
+	 id="Hair_Aft_7_"
+	 class="st0"
+	 d="m 568.83729,121.38644 c 13.5,72.4 34.5,66.5 14,103.3 -43.3,47.7 -90.1,7 -98.1,-9.8 -41.1,-23.4 -0.3,-140.799999 48.3,-130.299999 33.3,7.2 33.3,19.499999 35.8,36.799999"
+	 inkscape:connector-curvature="0"
+	 style="fill:#fcf3c1;fill-opacity:1" /></svg>
\ No newline at end of file
diff --git a/resources/vector/body/addon/hair aft neat strawberry.svg b/resources/vector/body/addon/hair aft neat strawberry.svg
index c5a8dd016a7501c36f69560d44671cb180b55105..a4d1fd8bdbc8d6ffe200e9d3445391ddd289f140 100644
--- a/resources/vector/body/addon/hair aft neat strawberry.svg	
+++ b/resources/vector/body/addon/hair aft neat strawberry.svg	
@@ -18,35 +18,35 @@
    xml:space="preserve"
    sodipodi:docname="hair aft neat strawberry.svg"
    inkscape:version="0.92.1 r15371"><metadata
-     id="metadata10"><rdf:RDF><cc:Work
-         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
-     id="defs8" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1920"
-     inkscape:window-height="1001"
-     id="namedview6"
-     showgrid="false"
-     inkscape:zoom="0.236"
-     inkscape:cx="-1656.7797"
-     inkscape:cy="500"
-     inkscape:window-x="-9"
-     inkscape:window-y="-9"
-     inkscape:window-maximized="1"
-     inkscape:current-layer="Layer_1" /><style
-     type="text/css"
-     id="style2">
+	 id="metadata10"><rdf:RDF><cc:Work
+		 rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+		   rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
+	 id="defs8" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1920"
+	 inkscape:window-height="1001"
+	 id="namedview6"
+	 showgrid="false"
+	 inkscape:zoom="0.236"
+	 inkscape:cx="-1656.7797"
+	 inkscape:cy="500"
+	 inkscape:window-x="-9"
+	 inkscape:window-y="-9"
+	 inkscape:window-maximized="1"
+	 inkscape:current-layer="Layer_1" /><style
+	 type="text/css"
+	 id="style2">
 	.st0{fill:#3F4040;}
 </style><path
-     id="Hair_Aft_7_"
-     class="st0"
-     d="m 568.83729,121.38644 c 13.5,72.4 34.5,66.5 14,103.3 -43.3,47.7 -90.1,7 -98.1,-9.8 -41.1,-23.4 -0.3,-140.799999 48.3,-130.299999 33.3,7.2 33.3,19.499999 35.8,36.799999"
-     inkscape:connector-curvature="0"
-     style="fill:#e6c78c;fill-opacity:1" /></svg>
\ No newline at end of file
+	 id="Hair_Aft_7_"
+	 class="st0"
+	 d="m 568.83729,121.38644 c 13.5,72.4 34.5,66.5 14,103.3 -43.3,47.7 -90.1,7 -98.1,-9.8 -41.1,-23.4 -0.3,-140.799999 48.3,-130.299999 33.3,7.2 33.3,19.499999 35.8,36.799999"
+	 inkscape:connector-curvature="0"
+	 style="fill:#e6c78c;fill-opacity:1" /></svg>
\ No newline at end of file
diff --git a/resources/vector/body/addon/hair fore neat darkbrown.svg b/resources/vector/body/addon/hair fore neat darkbrown.svg
index 5f9b3026128334cf5980273d91089d65bbd4b0ac..25496169c21ca172a32c3a0ebbc6966d0297dc1a 100644
--- a/resources/vector/body/addon/hair fore neat darkbrown.svg	
+++ b/resources/vector/body/addon/hair fore neat darkbrown.svg	
@@ -18,34 +18,34 @@
    xml:space="preserve"
    sodipodi:docname="hair fore neat darkbrown.svg"
    inkscape:version="0.92.1 r15371"><metadata
-     id="metadata10"><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="defs8" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1166"
-     inkscape:window-height="991"
-     id="namedview6"
-     showgrid="false"
-     inkscape:zoom="0.236"
-     inkscape:cx="-16.949153"
-     inkscape:cy="500"
-     inkscape:window-x="-8"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="Layer_1" /><style
-     type="text/css"
-     id="style2">
+	 id="metadata10"><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="defs8" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1166"
+	 inkscape:window-height="991"
+	 id="namedview6"
+	 showgrid="false"
+	 inkscape:zoom="0.236"
+	 inkscape:cx="-16.949153"
+	 inkscape:cy="500"
+	 inkscape:window-x="-8"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="Layer_1" /><style
+	 type="text/css"
+	 id="style2">
 	.st0{fill:#3F4040;}
 </style><path
-     id="Hair_Black"
-     class="st0"
-     d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5  c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"
-     style="fill:#463325;fill-opacity:1" /></svg>
\ No newline at end of file
+	 id="Hair_Black"
+	 class="st0"
+	 d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5  c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"
+	 style="fill:#463325;fill-opacity:1" /></svg>
\ No newline at end of file
diff --git a/resources/vector/body/addon/hair fore neat platinum.svg b/resources/vector/body/addon/hair fore neat platinum.svg
index f65e4fb57b0b172039d7879aab6886a5e99318d1..b454832b25ea0374555c5edf083a4862b1ae3c01 100644
--- a/resources/vector/body/addon/hair fore neat platinum.svg	
+++ b/resources/vector/body/addon/hair fore neat platinum.svg	
@@ -18,34 +18,34 @@
    xml:space="preserve"
    sodipodi:docname="hair fore neat platinum.svg"
    inkscape:version="0.92.1 r15371"><metadata
-     id="metadata10"><rdf:RDF><cc:Work
-         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
-     id="defs8" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1166"
-     inkscape:window-height="991"
-     id="namedview6"
-     showgrid="false"
-     inkscape:zoom="0.236"
-     inkscape:cx="-777.54237"
-     inkscape:cy="500"
-     inkscape:window-x="-8"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="Layer_1" /><style
-     type="text/css"
-     id="style2">
+	 id="metadata10"><rdf:RDF><cc:Work
+		 rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+		   rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
+	 id="defs8" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1166"
+	 inkscape:window-height="991"
+	 id="namedview6"
+	 showgrid="false"
+	 inkscape:zoom="0.236"
+	 inkscape:cx="-777.54237"
+	 inkscape:cy="500"
+	 inkscape:window-x="-8"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="Layer_1" /><style
+	 type="text/css"
+	 id="style2">
 	.st0{fill:#3F4040;}
 </style><path
-     id="Hair_Black"
-     class="st0"
-     d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5  c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"
-     style="fill:#fcf3c1;fill-opacity:1" /></svg>
\ No newline at end of file
+	 id="Hair_Black"
+	 class="st0"
+	 d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5  c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"
+	 style="fill:#fcf3c1;fill-opacity:1" /></svg>
\ No newline at end of file
diff --git a/resources/vector/body/addon/hair fore neat strawberry.svg b/resources/vector/body/addon/hair fore neat strawberry.svg
index 104c2ddf3f2e9f48efe87806fc61f19ba69cdb06..f3afec82a7bacc78c0f30cf69d0d187935948781 100644
--- a/resources/vector/body/addon/hair fore neat strawberry.svg	
+++ b/resources/vector/body/addon/hair fore neat strawberry.svg	
@@ -18,34 +18,34 @@
    xml:space="preserve"
    sodipodi:docname="hair fore neat strawberry.svg"
    inkscape:version="0.92.1 r15371"><metadata
-     id="metadata10"><rdf:RDF><cc:Work
-         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
-     id="defs8" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1166"
-     inkscape:window-height="991"
-     id="namedview6"
-     showgrid="false"
-     inkscape:zoom="0.236"
-     inkscape:cx="-777.54237"
-     inkscape:cy="500"
-     inkscape:window-x="-8"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="Layer_1" /><style
-     type="text/css"
-     id="style2">
+	 id="metadata10"><rdf:RDF><cc:Work
+		 rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+		   rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
+	 id="defs8" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1166"
+	 inkscape:window-height="991"
+	 id="namedview6"
+	 showgrid="false"
+	 inkscape:zoom="0.236"
+	 inkscape:cx="-777.54237"
+	 inkscape:cy="500"
+	 inkscape:window-x="-8"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="Layer_1" /><style
+	 type="text/css"
+	 id="style2">
 	.st0{fill:#3F4040;}
 </style><path
-     id="Hair_Black"
-     class="st0"
-     d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5  c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"
-     style="fill:#e6c78c;fill-opacity:1" /></svg>
\ No newline at end of file
+	 id="Hair_Black"
+	 class="st0"
+	 d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5  c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"
+	 style="fill:#e6c78c;fill-opacity:1" /></svg>
\ No newline at end of file
diff --git a/resources/vector/body/white/preg belly 100.svg b/resources/vector/body/white/preg belly 100.svg
index 40920da4528423de3d8ed0a4a3c06d4f69187659..8dec3576d619e07fdbdf8e722d5c562743640ec4 100644
--- a/resources/vector/body/white/preg belly 100.svg	
+++ b/resources/vector/body/white/preg belly 100.svg	
@@ -18,101 +18,101 @@
    xml:space="preserve"
    sodipodi:docname="preg belly 100.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"><metadata
-     id="metadata45"><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="defs43" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1680"
-     inkscape:window-height="987"
-     id="namedview41"
-     showgrid="false"
-     inkscape:snap-global="false"
-     inkscape:measure-start="0,0"
-     inkscape:measure-end="0,0"
-     inkscape:zoom="2"
-     inkscape:cx="545.96361"
-     inkscape:cy="600.87271"
-     inkscape:window-x="-8"
-     inkscape:window-y="-8"
-     inkscape:window-maximized="1"
-     inkscape:current-layer="Leg_Normal" /><style
-     type="text/css"
-     id="style34">
+	 id="metadata45"><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="defs43" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1680"
+	 inkscape:window-height="987"
+	 id="namedview41"
+	 showgrid="false"
+	 inkscape:snap-global="false"
+	 inkscape:measure-start="0,0"
+	 inkscape:measure-end="0,0"
+	 inkscape:zoom="2"
+	 inkscape:cx="545.96361"
+	 inkscape:cy="600.87271"
+	 inkscape:window-x="-8"
+	 inkscape:window-y="-8"
+	 inkscape:window-maximized="1"
+	 inkscape:current-layer="Leg_Normal" /><style
+	 type="text/css"
+	 id="style34">
 	.st0{fill:#010101;}
 	.st1{fill:#F6E0E8;}
 	.st2{fill:#D76B93;}
 </style><style
-     id="style59"
-     type="text/css">
+	 id="style59"
+	 type="text/css">
 	.st0{fill:#010101;}
 	.st1{fill:#F6E0E8;}
 </style><g
-     inkscape:groupmode="layer"
-     id="layer1"
-     inkscape:label="Layer 1"><g
-       id="Leg_Normal"
-       transform="translate(-39.648802,-11.229384)" /></g><g
-     inkscape:groupmode="layer"
-     id="layer3"
-     inkscape:label="Layer 3" /><g
-     inkscape:groupmode="layer"
-     id="layer2"
-     inkscape:label="Layer 2"><g
-       id="Preg_Belly-1"
-       transform="matrix(0.42363273,-0.00346638,0.00338687,0.40450922,249.32988,238.00252)"><path
-         d="m 494.22473,431.94097 c 8.65119,-1.26911 13.12608,0.72344 21.53315,-2.31516 21.34938,-7.7407 29.9012,-15.4146 37.48963,-37.90478 3.62677,-23.97982 -5.77124,-58.05381 -19.25926,-75.96694 -8.11213,-10.77353 -10.00026,-13.1249 -33.11002,-11.17175 -17.36777,2.41057 -33.49073,5.07262 -43.71025,19.13363 -6.88573,11.58807 -12.34848,37.1166 -11.5462,64.5651 3.51979,31.82667 16.11551,40.14327 48.60295,43.6599 z"
-         class="st0"
-         id="XMLID_252_-4"
-         inkscape:connector-curvature="0"
-         style="fill:#010101"
-         sodipodi:nodetypes="cccccccc" /><path
-         d="m 494.81397,432.05206 c 8.81587,-0.65772 10.61717,0.0233 10.61717,0.0233 3.10959,-1.20696 3.98998,-0.81048 10.52995,-3.3228 5.42497,-2.12433 5.53012,-1.71289 8.79788,-3.24116 11.13609,-5.20814 24.94568,-12.22864 22.47898,-10.88102 14.46331,-13.05465 3.66243,-18.56552 10.22666,-23.26448 4.2539,-9.61017 10.82714,-38.48748 -13.02389,-56.08498 -6.15516,-13.76321 -7.45105,-16.85922 -12.5039,-24.39355 -1.50944,-1.52039 -3.0003,-4.05234 -6.27655,-6.82304 -2.15645,-2.24905 -5.3111,-2.95866 -6.82838,-3.74157 -6.37506,-3.28948 -13.90562,0.49207 -17.60425,-0.21084 -17.46891,3.26711 -18.27045,4.82805 -26.69869,7.24636 -8.15903,4.98466 -7.24946,-7.07732 -12.96677,8.62769 -5.61144,2.95192 -12.87468,34.92008 -15.32685,41.40491 -16.6494,22.05412 -12.19763,47.36429 3.1016,55.675 6.64051,6.09663 15.52422,11.46163 23.55923,14.33337 1.89991,1.29062 16.95902,2.88103 21.91781,4.65281 z"
-         class="st1"
-         id="XMLID_251_-6"
-         inkscape:connector-curvature="0"
-         style="fill:#f6e0e8"
-         sodipodi:nodetypes="ccccccccccccccccc" /><ellipse
-         ry="6.5197196"
-         rx="6.0236797"
-         cy="472.41959"
-         cx="396.2402"
-         class="st2"
-         transform="matrix(0.98089865,-0.19451952,0.20438027,0.97889157,0,0)"
-         id="XMLID_250_-9"
-         style="fill:#d76b93;stroke-width:2.12708855" /></g></g><style
-     id="style93"
-     type="text/css">
+	 inkscape:groupmode="layer"
+	 id="layer1"
+	 inkscape:label="Layer 1"><g
+	   id="Leg_Normal"
+	   transform="translate(-39.648802,-11.229384)" /></g><g
+	 inkscape:groupmode="layer"
+	 id="layer3"
+	 inkscape:label="Layer 3" /><g
+	 inkscape:groupmode="layer"
+	 id="layer2"
+	 inkscape:label="Layer 2"><g
+	   id="Preg_Belly-1"
+	   transform="matrix(0.42363273,-0.00346638,0.00338687,0.40450922,249.32988,238.00252)"><path
+		 d="m 494.22473,431.94097 c 8.65119,-1.26911 13.12608,0.72344 21.53315,-2.31516 21.34938,-7.7407 29.9012,-15.4146 37.48963,-37.90478 3.62677,-23.97982 -5.77124,-58.05381 -19.25926,-75.96694 -8.11213,-10.77353 -10.00026,-13.1249 -33.11002,-11.17175 -17.36777,2.41057 -33.49073,5.07262 -43.71025,19.13363 -6.88573,11.58807 -12.34848,37.1166 -11.5462,64.5651 3.51979,31.82667 16.11551,40.14327 48.60295,43.6599 z"
+		 class="st0"
+		 id="XMLID_252_-4"
+		 inkscape:connector-curvature="0"
+		 style="fill:#010101"
+		 sodipodi:nodetypes="cccccccc" /><path
+		 d="m 494.81397,432.05206 c 8.81587,-0.65772 10.61717,0.0233 10.61717,0.0233 3.10959,-1.20696 3.98998,-0.81048 10.52995,-3.3228 5.42497,-2.12433 5.53012,-1.71289 8.79788,-3.24116 11.13609,-5.20814 24.94568,-12.22864 22.47898,-10.88102 14.46331,-13.05465 3.66243,-18.56552 10.22666,-23.26448 4.2539,-9.61017 10.82714,-38.48748 -13.02389,-56.08498 -6.15516,-13.76321 -7.45105,-16.85922 -12.5039,-24.39355 -1.50944,-1.52039 -3.0003,-4.05234 -6.27655,-6.82304 -2.15645,-2.24905 -5.3111,-2.95866 -6.82838,-3.74157 -6.37506,-3.28948 -13.90562,0.49207 -17.60425,-0.21084 -17.46891,3.26711 -18.27045,4.82805 -26.69869,7.24636 -8.15903,4.98466 -7.24946,-7.07732 -12.96677,8.62769 -5.61144,2.95192 -12.87468,34.92008 -15.32685,41.40491 -16.6494,22.05412 -12.19763,47.36429 3.1016,55.675 6.64051,6.09663 15.52422,11.46163 23.55923,14.33337 1.89991,1.29062 16.95902,2.88103 21.91781,4.65281 z"
+		 class="st1"
+		 id="XMLID_251_-6"
+		 inkscape:connector-curvature="0"
+		 style="fill:#f6e0e8"
+		 sodipodi:nodetypes="ccccccccccccccccc" /><ellipse
+		 ry="6.5197196"
+		 rx="6.0236797"
+		 cy="472.41959"
+		 cx="396.2402"
+		 class="st2"
+		 transform="matrix(0.98089865,-0.19451952,0.20438027,0.97889157,0,0)"
+		 id="XMLID_250_-9"
+		 style="fill:#d76b93;stroke-width:2.12708855" /></g></g><style
+	 id="style93"
+	 type="text/css">
 	.st0{fill:#F6E0E8;}
 	.st1{fill:#010101;}
 </style><style
-     id="style3832"
-     type="text/css">
+	 id="style3832"
+	 type="text/css">
 	.st0{fill:#010101;}
 	.st1{fill:#F6E0E8;}
 	.st2{fill:#D76B93;}
 </style><style
-     id="style3871"
-     type="text/css">
+	 id="style3871"
+	 type="text/css">
 	.st0{fill:#010101;}
 	.st1{fill:#F6E0E8;}
 	.st2{fill:#D76B93;}
 </style><style
-     id="style3910"
-     type="text/css">
+	 id="style3910"
+	 type="text/css">
 	.st0{fill:#010101;}
 	.st1{fill:#F6E0E8;}
 	.st2{fill:#D76B93;}
 </style><style
-     id="style4807"
-     type="text/css">
+	 id="style4807"
+	 type="text/css">
 	.st0{fill:#010101;}
 	.st1{fill:#F6E0E8;}
 	.st2{fill:#D76B93;}
diff --git a/resources/vector/hair/afro front.svg b/resources/vector/hair/afro front.svg
index 229d2201c992f84d756c7cd84fe2ab1821528103..a3859fa56725213b11c093ace214183d6724f098 100644
--- a/resources/vector/hair/afro front.svg	
+++ b/resources/vector/hair/afro front.svg	
@@ -18,36 +18,36 @@
    xml:space="preserve"
    sodipodi:docname="afro front.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"><metadata
-     id="metadata10"><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="defs8" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="2066"
-     inkscape:window-height="1295"
-     id="namedview6"
-     showgrid="false"
-     inkscape:zoom="3.776"
-     inkscape:cx="513.77669"
-     inkscape:cy="866.69981"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="Layer_1" /><style
-     type="text/css"
-     id="style2">
+	 id="metadata10"><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="defs8" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="2066"
+	 inkscape:window-height="1295"
+	 id="namedview6"
+	 showgrid="false"
+	 inkscape:zoom="3.776"
+	 inkscape:cx="513.77669"
+	 inkscape:cy="866.69981"
+	 inkscape:window-x="0"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="Layer_1" /><style
+	 type="text/css"
+	 id="style2">
 	.st0{fill:#5FBA46;}
 </style><path
-     id="Hair_Green"
-     class="st0"
-     d="M 471.88814,103.71864 C 477.5178,117.14492 499.6,115.6 537.1,108.9 c 4.13432,2.02203 12.39873,7.17966 12.22288,25.24788 -24.86991,51.07966 52.58136,19.71569 57.10635,-48.076267 C 606.05042,61.689405 604.75847,36.211864 578.04492,18.123727 560.35254,0.54999657 506.4,3.7173729 487.09619,14.747034 457.80381,27.408475 453.20169,83.935169 471.88814,103.71864 Z"
-     style="fill:#b4b3b7;fill-opacity:1"
-     inkscape:connector-curvature="0"
-     sodipodi:nodetypes="ccccccc" /></svg>
\ No newline at end of file
+	 id="Hair_Green"
+	 class="st0"
+	 d="M 471.88814,103.71864 C 477.5178,117.14492 499.6,115.6 537.1,108.9 c 4.13432,2.02203 12.39873,7.17966 12.22288,25.24788 -24.86991,51.07966 52.58136,19.71569 57.10635,-48.076267 C 606.05042,61.689405 604.75847,36.211864 578.04492,18.123727 560.35254,0.54999657 506.4,3.7173729 487.09619,14.747034 457.80381,27.408475 453.20169,83.935169 471.88814,103.71864 Z"
+	 style="fill:#b4b3b7;fill-opacity:1"
+	 inkscape:connector-curvature="0"
+	 sodipodi:nodetypes="ccccccc" /></svg>
\ No newline at end of file
diff --git a/resources/vector/hair/bun front.svg b/resources/vector/hair/bun front.svg
index 8ed4b20c2f03d2a59859c0d28dfda8ef754b850d..e2da92744741faa1cfcc3468440b914a2b0cc1f4 100644
--- a/resources/vector/hair/bun front.svg	
+++ b/resources/vector/hair/bun front.svg	
@@ -18,36 +18,36 @@
    xml:space="preserve"
    sodipodi:docname="bun front.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"><metadata
-     id="metadata10"><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="defs8" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1935"
-     inkscape:window-height="1331"
-     id="namedview6"
-     showgrid="false"
-     inkscape:zoom="3.776"
-     inkscape:cx="502.72508"
-     inkscape:cy="834.78887"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="Layer_1" /><style
-     type="text/css"
-     id="style2">
+	 id="metadata10"><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="defs8" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1935"
+	 inkscape:window-height="1331"
+	 id="namedview6"
+	 showgrid="false"
+	 inkscape:zoom="3.776"
+	 inkscape:cx="502.72508"
+	 inkscape:cy="834.78887"
+	 inkscape:window-x="0"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="Layer_1" /><style
+	 type="text/css"
+	 id="style2">
 	.st0{fill:#5FBA46;}
 </style><path
-     id="Hair_Green"
-     class="st0"
-     d="m 484.6,101.6 c 5.1,7.6 15,14 52.5,7.3 8.37161,3.34619 11.60424,19.36186 10.10424,29.75 -11.09873,28.03941 11.53263,14.41906 14.73347,-4.64407 0.94534,-4.78474 10.77627,-41.649999 -13.02415,-57.61949 C 600.87161,65.963135 504.81101,18.01822 520.2,64.8 c -33,7.1 -33.1,19.4 -35.6,36.8 z"
-     style="fill:#b4b3b7;fill-opacity:1"
-     inkscape:connector-curvature="0"
-     sodipodi:nodetypes="ccccccc" /></svg>
\ No newline at end of file
+	 id="Hair_Green"
+	 class="st0"
+	 d="m 484.6,101.6 c 5.1,7.6 15,14 52.5,7.3 8.37161,3.34619 11.60424,19.36186 10.10424,29.75 -11.09873,28.03941 11.53263,14.41906 14.73347,-4.64407 0.94534,-4.78474 10.77627,-41.649999 -13.02415,-57.61949 C 600.87161,65.963135 504.81101,18.01822 520.2,64.8 c -33,7.1 -33.1,19.4 -35.6,36.8 z"
+	 style="fill:#b4b3b7;fill-opacity:1"
+	 inkscape:connector-curvature="0"
+	 sodipodi:nodetypes="ccccccc" /></svg>
\ No newline at end of file
diff --git a/resources/vector/hair/buzzcut front.svg b/resources/vector/hair/buzzcut front.svg
index 73f5f13b74eb7a3ae699ca8f9b1b22222f35ee54..5d7ac58898a3aa2a863eab93fa09a05a058993be 100644
--- a/resources/vector/hair/buzzcut front.svg	
+++ b/resources/vector/hair/buzzcut front.svg	
@@ -18,43 +18,43 @@
    xml:space="preserve"
    sodipodi:docname="trimmed front.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"><metadata
-     id="metadata10"><rdf:RDF><cc:Work
-         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
-     id="defs8" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1691"
-     inkscape:window-height="1100"
-     id="namedview6"
-     showgrid="false"
-     inkscape:zoom="3.776"
-     inkscape:cx="493.13268"
-     inkscape:cy="878.68152"
-     inkscape:window-x="51"
-     inkscape:window-y="112"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="NewBody" /><style
-     type="text/css"
-     id="style2">
+	 id="metadata10"><rdf:RDF><cc:Work
+		 rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+		   rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
+	 id="defs8" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1691"
+	 inkscape:window-height="1100"
+	 id="namedview6"
+	 showgrid="false"
+	 inkscape:zoom="3.776"
+	 inkscape:cx="493.13268"
+	 inkscape:cy="878.68152"
+	 inkscape:window-x="51"
+	 inkscape:window-y="112"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="NewBody" /><style
+	 type="text/css"
+	 id="style2">
 	.st0{fill:#5FBA46;}
 </style><g
-     transform="matrix(0.11855749,0,0,0.11836127,42.924405,-240.28811)"
-     style="clip-rule:evenodd;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
-     id="NewBody"><metadata
-       id="CorelCorpID_0Corel-Layer" /><g
-       id="HairShort"
-       style="fill:#b4b3b7;fill-opacity:1"
-       transform="matrix(0.96090345,0,0,0.81429225,136.51865,590.3991)"><path
-         inkscape:connector-curvature="0"
-         id="Hair"
-         class="fil0"
-         d="m 3731,2912.312 c 0,0 23,27.2601 105,27.2601 82,0 254,-16.7078 317,22.8633 44.974,42.9769 56.3376,16.5435 88.3376,6.2128 37.974,24.5105 60.2595,50.9564 66.6362,93.1656 10.026,75.1822 -4.4674,121.6816 12.5326,149.8211 17,28.1394 24.1169,-144.4482 24.4936,-209.6284 7,-92.4366 12.974,-142.125 -9.026,-236.2162 -41.2553,-191.0494 -221.327,-266.7287 -405.974,-188.5134 -97.974,34.6239 -159.052,114.6455 -194,188.1824 -10.3767,81.7803 -18,136.3004 -5,146.8527 z"
-         style="fill:#b4b3b7;fill-opacity:1;stroke-width:0.93774056"
-         sodipodi:nodetypes="csccccccccc" /></g></g></svg>
\ No newline at end of file
+	 transform="matrix(0.11855749,0,0,0.11836127,42.924405,-240.28811)"
+	 style="clip-rule:evenodd;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
+	 id="NewBody"><metadata
+	   id="CorelCorpID_0Corel-Layer" /><g
+	   id="HairShort"
+	   style="fill:#b4b3b7;fill-opacity:1"
+	   transform="matrix(0.96090345,0,0,0.81429225,136.51865,590.3991)"><path
+		 inkscape:connector-curvature="0"
+		 id="Hair"
+		 class="fil0"
+		 d="m 3731,2912.312 c 0,0 23,27.2601 105,27.2601 82,0 254,-16.7078 317,22.8633 44.974,42.9769 56.3376,16.5435 88.3376,6.2128 37.974,24.5105 60.2595,50.9564 66.6362,93.1656 10.026,75.1822 -4.4674,121.6816 12.5326,149.8211 17,28.1394 24.1169,-144.4482 24.4936,-209.6284 7,-92.4366 12.974,-142.125 -9.026,-236.2162 -41.2553,-191.0494 -221.327,-266.7287 -405.974,-188.5134 -97.974,34.6239 -159.052,114.6455 -194,188.1824 -10.3767,81.7803 -18,136.3004 -5,146.8527 z"
+		 style="fill:#b4b3b7;fill-opacity:1;stroke-width:0.93774056"
+		 sodipodi:nodetypes="csccccccccc" /></g></g></svg>
\ No newline at end of file
diff --git a/resources/vector/hair/dreadlocks front.svg b/resources/vector/hair/dreadlocks front.svg
index ff6cb347f6ecd4abe7c61e528b7205a974202085..0fffd924642c4947186b5074d7fd415e507b6b78 100644
--- a/resources/vector/hair/dreadlocks front.svg	
+++ b/resources/vector/hair/dreadlocks front.svg	
@@ -18,87 +18,87 @@
    xml:space="preserve"
    sodipodi:docname="dreadlocks front 2.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"><metadata
-     id="metadata10"><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="defs8" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1536"
-     inkscape:window-height="1346"
-     id="namedview6"
-     showgrid="false"
-     inkscape:zoom="1.888"
-     inkscape:cx="440.71189"
-     inkscape:cy="806.31677"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="Layer_1" /><style
-     type="text/css"
-     id="style2">
+	 id="metadata10"><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="defs8" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1536"
+	 inkscape:window-height="1346"
+	 id="namedview6"
+	 showgrid="false"
+	 inkscape:zoom="1.888"
+	 inkscape:cx="440.71189"
+	 inkscape:cy="806.31677"
+	 inkscape:window-x="0"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="Layer_1" /><style
+	 type="text/css"
+	 id="style2">
 	.st0{fill:#5FBA46;}
 </style><g
-     id="g1315"><path
-       style="fill:#4b3d2b;stroke-width:0.254439"
-       inkscape:connector-curvature="0"
-       id="path55"
-       d="m 574.55415,53.223854 c -0.22899,-0.12722 -0.43254,-0.228996 -0.66154,-0.356215 0.30533,-0.05088 0.58521,-0.07633 0.89054,-0.12722 0.15266,0.305327 0.30533,0.58521 0.48343,0.865093 -0.25443,-0.127219 -0.48343,-0.254439 -0.71243,-0.381658 z" /><path
-       style="fill:#4b3d2b;stroke-width:0.254439"
-       inkscape:connector-curvature="0"
-       id="path57"
-       d="m 639.15622,217.46423 c 0.25444,1.37398 0.40711,2.56984 0.38166,3.51126 -0.0509,2.01008 -0.27988,3.18049 -0.66154,3.94381 0.1781,-2.51895 0.25443,-4.98701 0.27988,-7.45507 z" /><path
-       style="fill:#b4b3b7;stroke-width:0.254439;fill-opacity:1"
-       inkscape:connector-curvature="0"
-       id="path59"
-       d="m 509.16332,64.953492 c 0.81422,-0.305327 1.62842,-0.58521 2.44262,-0.839649 1.65386,-0.534322 3.33315,-0.992312 5.01245,-1.424858 0.45799,0.178107 0.94142,0.279883 1.50119,0.254439 3.68937,-0.07633 7.50596,-0.814205 10.22845,-3.409483 0.6361,-0.610654 0.96686,-1.399414 1.01776,-2.21362 0.48343,-0.02545 0.9923,-0.02545 1.47574,0 1.09409,0.02545 2.16273,0.101779 3.25682,0.203552 0.0764,0.02545 0.96686,0.127219 1.06864,0.127219 0.50888,0.07633 1.01777,0.152664 1.55208,0.228996 1.06865,0.152663 2.11184,0.33077 3.18049,0.483433 5.34322,2.391727 10.91543,4.452683 16.6912,5.597659 4.1728,0.814204 6.53909,-4.579903 2.79883,-6.742634 -0.17811,-0.101779 -0.38166,-0.203551 -0.55977,-0.305327 0,0 0.0255,-0.02545 0.0255,-0.02545 0.78876,-0.483434 1.75562,-1.475746 2.84972,-2.671609 0.30533,0.101779 0.63609,0.178107 0.94142,0.254439 1.22131,1.170419 2.62072,2.111843 4.12191,2.951492 -1.32308,1.679297 -1.27219,4.50357 0.99232,5.572214 3.38403,1.577523 7.09884,3.00238 10.91543,2.518947 0.0764,0 0.15266,-0.02545 0.25443,-0.02545 0.10175,0.71243 0.45799,1.399415 1.17043,1.984625 2.01006,1.679298 3.91836,3.485814 5.87753,5.215999 0.96687,0.865094 1.95918,1.704742 2.97695,2.493503 0.66154,0.534322 1.34852,1.017756 2.0355,1.526634 0.33078,0.228995 0.66155,0.483434 0.99232,0.712429 0.38166,0.279883 0.45799,0.305327 0.22899,0.12722 3.9947,2.976935 7.68406,6.284644 11.24621,9.745006 4.37634,4.24914 8.57459,8.650933 13.02728,12.823732 1.06864,2.92605 2.28994,5.77576 3.56214,8.57459 2.92605,6.41187 6.36097,12.62018 10.05034,18.67583 3.9947,10.63554 7.45506,21.65275 13.48527,31.37232 -0.27988,0.35622 -0.6361,0.687 -1.06865,1.04321 -2.84971,2.16273 -5.75032,1.34853 -6.20831,4.987 -0.30533,2.46806 3.25683,7.45507 4.22369,9.49059 1.52663,3.18047 2.79883,6.58996 4.60535,9.61778 2.31539,3.89292 3.48581,5.54678 1.8574,9.94857 -3.00238,-2.31541 -6.36098,-4.22368 -9.74502,-5.87755 -1.73017,1.52664 -2.36628,4.09648 -2.36628,7.17519 -0.8142,-0.38167 -1.78107,-0.48344 -2.6716,-0.229 -2.03552,0.5852 -3.05327,2.62073 -2.54439,4.55445 0.30532,1.17043 0.55976,2.34084 0.78875,3.51126 0.10175,0.53432 0.20355,1.04321 0.27988,1.57752 0.0255,0.12722 0.10175,0.66154 0.10175,0.68699 0.0255,0.25444 0.0764,0.48343 0.10175,0.73787 0.30533,2.46806 0.48343,4.93612 0.55976,7.42962 0.15267,4.987 -0.0764,9.99945 -0.45799,14.96102 -0.68698,8.54915 -1.8574,17.04741 -2.51894,25.57111 -0.25445,1.2722 -0.27988,2.59529 -0.25445,3.89292 0,0.48344 0.12723,0.96687 0.30533,1.37397 -0.10175,0.229 -0.1781,0.45799 -0.27988,0.71243 -1.60297,-3.40948 -2.95149,-7.86217 -3.66392,-9.41424 -2.84972,2.31539 -2.9515,8.72726 -3.00238,13.53615 -0.33077,-0.229 -0.71243,-0.38166 -1.06865,-0.48343 -2.18817,-0.53432 -3.84202,0.78876 -4.57989,2.62072 -2.67162,6.53908 -5.36867,13.10361 -8.29472,19.64269 -0.43255,-2.95148 -0.86509,-5.90298 -0.91597,-8.93079 -0.0764,-4.4527 0.20354,-8.29472 -1.85742,-12.08587 -4.65622,13.23082 -4.57989,28.11552 -7.50594,41.77889 -1.47575,6.79351 -2.90061,6.97163 -9.66868,6.76808 -1.29765,-8.39649 6.41185,-14.29948 1.24674,-22.3143 -2.6716,-4.17281 -7.4805,-8.54916 -9.05803,-12.51841 -0.76331,6.69175 -2.49349,13.43439 -3.9438,20.12613 -0.68698,-0.55976 -1.55207,-0.89054 -2.4935,-0.89054 -2.06095,0.0255 -3.74026,1.73019 -3.71481,3.71481 l 0.0255,0.8651 c 0.0254,1.98462 1.78107,3.63847 3.81658,3.61303 0.33077,0 0.66154,-0.0509 0.99231,-0.15266 -0.20355,1.34853 -0.38166,2.84972 -0.55976,4.37635 -0.0764,-0.0255 -0.15267,-0.0509 -0.25444,-0.0764 -2.06096,-0.50887 -3.96925,0.73787 -4.57991,2.62072 -0.20355,0.61066 -0.4071,1.22131 -0.61065,1.80652 -0.12722,0.35621 -0.25444,0.68699 -0.38165,1.01775 -0.0255,0.0764 -0.0509,0.15267 -0.0764,0.20356 -0.30532,0.68699 -0.61065,1.34853 -0.96686,1.98462 1.32308,-7.27696 1.8574,-14.63023 0.50887,-22.03441 -0.12722,-0.6361 -0.45799,-1.17043 -0.91598,-1.57752 0.10175,-4.55447 -0.229,-9.10893 -1.11953,-13.66338 -0.17811,-0.96687 -0.89054,-1.70474 -1.75563,-2.16273 -0.0764,-0.94142 -0.15267,-1.90829 -0.25444,-2.84972 -0.22899,0.83965 -0.45799,1.6793 -0.68698,2.49351 -0.66154,-0.15267 -1.34853,-0.17812 -1.98463,0 -2.11184,0.61065 -2.95149,2.59527 -2.54439,4.55445 0.30532,1.60297 0.43255,2.36628 0.61065,4.02014 0.12723,1.37397 0.229,2.74794 0.27989,4.12191 -0.81421,2.87516 -1.62842,5.77577 -2.34084,8.62548 -1.39941,-2.39172 -4.27458,-3.20593 -6.71719,-2.41717 -0.35622,-6.46274 3.86747,-14.22314 4.52901,-20.96578 0.50888,-5.31777 -0.0509,-12.31484 1.55208,-17.32729 -0.91598,1.17042 -5.36866,7.76039 -6.61541,7.86217 -0.30533,0.0254 -0.61066,-0.0509 -0.89054,-0.20356 2.82427,-2.46806 4.987,-5.97932 6.64086,-8.9817 0.96687,-1.75562 0.38166,-3.99468 -1.42486,-4.987 -0.58521,-0.30533 -1.22131,-0.45799 -1.8574,-0.45799 0.83965,-2.9006 1.50119,-5.8521 2.06095,-8.80359 1.19586,-2.21362 2.28996,-4.47812 3.15504,-6.81896 2.62073,-7.14974 1.57753,-14.98646 -0.35621,-22.3143 -7.81128,-29.48948 5.34321,-60.32749 -4.24913,-89.58798 -4.02014,-12.2894 -7.73495,-28.166394 -18.54861,-36.384771 -4.30001,-3.256825 -9.77045,-4.172798 -13.9687,-7.276958 -4.60535,-3.384034 -5.13966,-9.083468 -8.29471,-12.543839 l -3.15504,-1.704741 c -0.0764,-0.407103 0.0764,-0.890537 0.33076,-1.37397 z" /><path
-       style="fill:#474e62;stroke-width:0.254439;fill-opacity:1"
-       inkscape:connector-curvature="0"
-       id="path61"
-       d="m 534.35279,300.51313 c 0.78876,-3.23138 2.06095,-6.31009 3.1296,-9.46514 1.11953,-3.3077 2.28996,-6.61541 3.35859,-9.94856 2.0864,-6.46275 3.96925,-12.97638 5.75032,-19.51547 3.5876,-13.07816 6.4882,-26.38533 8.8036,-39.74337 2.28994,-13.35806 4.32546,-26.86876 5.64854,-40.43036 0.0509,-1.65386 0.10175,-3.30771 0.12722,-4.96157 0.25444,-12.87461 0.53433,-25.80011 -0.12722,-38.67472 -0.99231,-19.71903 -4.45268,-39.539827 -13.79059,-57.248778 -0.55977,-1.043202 -0.43255,-2.289954 0.63609,-2.976939 0.94143,-0.58521 2.51896,-0.407102 3.05327,0.636097 5.39411,10.075781 8.95626,20.73678 11.29709,31.67766 -0.55976,-5.69944 -1.2213,-11.398872 -2.01007,-17.098307 -0.12721,-0.915983 0.48344,-1.781071 1.2722,-2.213615 -5.67399,-9.083476 -12.82372,-17.632625 -21.60187,-24.019044 -1.80652,-1.323083 0.33077,-4.325463 2.23906,-3.155044 7.02252,4.249132 12.95095,9.84679 18.06518,16.10599 -0.45799,-0.966869 -0.96687,-1.88285 -1.57753,-2.747942 -1.37397,-2.010069 1.73019,-3.943804 3.18049,-2.060956 0.91598,1.195863 1.6793,2.468059 2.34084,3.816585 0.58521,-0.305327 1.34853,-0.33077 1.98462,-0.101779 -1.2722,-2.747942 -2.64616,-5.444996 -4.09647,-8.116605 -1.32308,-1.424858 -2.77338,-2.697053 -4.40179,-3.816585 -1.01775,-0.686985 -0.91598,-2.315395 -0.15266,-3.1296 0.89053,-0.966868 2.21361,-0.839649 3.20593,-0.152663 0.94143,0.661541 1.83196,1.37397 2.67161,2.137287 0.12722,0.07633 0.25444,0.203552 0.35621,0.330771 2.13729,1.984625 3.94381,4.249131 5.52133,6.691746 3.74025,2.391726 6.64085,5.928429 9.13436,9.490575 2.9515,4.249139 5.29233,8.829033 7.65862,13.3835 2.79882,5.419546 5.59765,10.839096 8.06571,16.436756 2.7225,6.13198 5.24144,12.36574 7.58229,18.65038 0.53431,1.42486 1.0432,2.82427 1.55207,4.24913 -1.11953,-8.19293 -2.64617,-16.33499 -4.70712,-24.37525 -3.00238,-11.704202 -7.25151,-23.153957 -13.30716,-33.713179 -0.20356,-0.356214 -0.27989,-0.686985 -0.30532,-1.017756 0,0 -0.0255,-0.02545 -0.0255,-0.02545 -1.93374,-1.653853 0.71242,-4.503571 2.64617,-2.875161 4.55445,3.816586 8.65092,8.167487 12.13673,12.925502 3.61304,4.936116 6.41187,10.355661 8.93081,15.876994 5.64855,12.41663 10.30479,25.26579 13.99415,38.3694 3.81658,13.51072 6.53908,27.3013 8.72726,41.11735 2.21362,14.07048 3.48581,28.31906 3.48581,42.56764 0,8.90537 -0.63609,17.81073 -1.60297,26.66521 -0.78876,7.14973 -2.0864,14.45214 -4.55446,21.24566 -1.2213,3.33315 -2.77338,6.74263 -5.41954,9.26157 -0.55977,0.53433 -1.14498,1.01777 -1.80652,1.42486 -0.8142,0.53433 -1.11953,0.68699 -2.06096,0.99232 -1.50119,0.50887 -2.9006,0.38166 -4.42723,0.17811 -1.52664,-0.20355 -1.06865,-2.51895 0.45798,-2.28996 0.99231,0.12723 2.16274,-0.33076 2.79883,-0.71242 0.50888,-0.30533 0.30533,-0.17811 0.71244,-0.48344 0.0764,-0.0509 0.15265,-0.12722 0.22898,-0.1781 0,0 0.20356,-0.17811 0.229,-0.20356 0.48344,-0.45798 0.89053,-0.94142 1.29764,-1.47574 -0.0764,0.0764 0.33078,-0.50888 0.40711,-0.6361 0.1781,-0.30532 0.35621,-0.58521 0.53431,-0.89053 0.40711,-0.68699 0.76332,-1.42486 1.06865,-2.13729 0.33077,-0.71243 0.6361,-1.45031 0.91598,-2.18818 0.0509,-0.15267 0.10175,-0.27988 0.17811,-0.43255 -0.0255,0.0255 0.12722,-0.35621 0.15267,-0.38166 0.1781,-0.45799 0.33076,-0.94142 0.48342,-1.39941 2.23907,-6.92074 3.1296,-14.17225 3.91837,-21.34743 0.0764,-0.71243 0.15266,-1.39941 0.22899,-2.11185 0.0254,-0.15266 0.0254,-0.30533 0.0509,-0.48343 0.0255,-0.35621 0.0764,-0.68698 0.10175,-1.0432 0.0764,-0.96686 0.1781,-1.95918 0.25443,-2.92605 0.58521,-6.76808 0.8651,-13.5616 0.8142,-20.38056 -0.0764,-14.24859 -1.60296,-28.47173 -3.74025,-42.54221 -4.14735,-27.09775 -11.09353,-53.76295 -22.61963,-78.8252 -2.23906,-4.859791 -4.96155,-9.465132 -8.16748,-13.714261 8.26926,18.955701 12.03496,39.641591 14.01958,60.098491 0.27989,2.82427 0.50889,5.64854 0.71243,8.47282 1.37397,4.5799 2.67161,9.18525 3.89292,13.79059 3.66392,13.76515 5.72487,27.88652 5.69944,42.10966 -0.0255,11.14443 -1.67931,22.03441 -4.02015,32.92441 -1.32308,6.13198 -2.79882,12.21307 -4.55445,18.24327 -2.01007,6.81897 -4.24913,13.7906 -7.9385,19.94803 -0.83965,1.39941 -1.83196,2.84971 -2.97694,4.12191 -0.0255,0.10175 -0.0764,0.20355 -0.10174,0.33076 -1.34853,4.12192 -2.92605,8.42194 -5.64854,11.88231 -1.0941,1.39941 -2.41718,2.59528 -4.02014,3.3586 -1.52664,0.71242 -2.90061,0.66154 -4.5799,0.33076 -1.52664,-0.30533 -1.06865,-2.59527 0.45799,-2.28995 0.10175,0.0255 0.48343,0 0.68698,0 0.4071,-0.0255 0.30532,-0.0255 0.61065,-0.10174 0.12723,-0.0254 0.229,-0.0764 0.33078,-0.10175 -0.20355,0.0764 0.35621,-0.15267 0.30532,-0.12723 0.30533,-0.15266 0.58521,-0.35621 0.86509,-0.55976 -0.10175,0.0764 0.6361,-0.58521 0.48344,-0.40711 0.229,-0.22899 0.45799,-0.45799 0.66154,-0.68698 0.58521,-0.66154 0.78876,-0.99231 1.19586,-1.60296 1.34853,-2.1373 2.3154,-4.30003 3.15505,-6.56454 -0.96687,0.15267 -1.98463,0.12723 -3.05327,-0.12721 -1.11953,-0.27988 -0.78876,-1.98462 0.33077,-1.70474 1.37397,0.33077 2.64617,-0.17811 3.66392,-0.96687 0.0255,-0.10175 0.0509,-0.20355 0.10175,-0.27988 1.98462,-6.43731 3.07871,-13.05273 4.32546,-19.6427 1.19586,-6.20831 2.59527,-12.36573 3.58759,-18.62493 1.09409,-7.07341 1.9083,-14.17226 2.4935,-21.29655 1.14498,-13.94325 1.14498,-27.88651 0.81421,-41.85522 -0.25445,-9.94856 -0.58521,-19.97346 -1.29765,-29.94747 -3.00238,-10.48288 -6.33552,-20.864 -10.25389,-31.06699 -3.81658,-9.94858 -8.67637,-19.4137 -13.7397,-28.827947 -1.57752,-2.92605 -3.23138,-5.826662 -5.08878,-8.600038 0.66154,1.60296 1.29763,3.180483 1.95918,4.732558 5.31778,12.620187 10.203,25.418467 13.61249,38.674737 7.0734,27.37764 7.02251,56.07835 2.74794,83.83766 -1.70474,11.0172 -4.30002,21.77997 -7.25151,32.51729 -1.11953,4.02015 -2.44261,8.14206 -4.93612,11.60242 -0.55977,0.76332 -1.55207,1.9083 -2.67161,2.67162 -0.10174,0.4071 -0.17811,0.78876 -0.27989,1.19586 -1.2213,5.06334 -2.6716,10.05034 -3.91835,15.11368 -1.17043,4.78345 -2.46806,9.51602 -4.24914,14.12136 -1.62841,4.1728 -3.71481,8.67637 -7.17518,11.7042 -1.01775,0.89053 -2.11184,1.70474 -3.33314,2.34083 -1.73019,0.91598 -3.20593,-1.2213 -1.70474,-2.44261 3.23136,-2.62072 5.31777,-6.76808 6.8444,-10.48289 1.83197,-4.37634 2.9515,-9.08347 4.04558,-13.66337 1.52664,-6.41187 3.15505,-12.82373 4.65624,-19.23559 -0.0255,-0.0255 -0.0255,-0.0509 -0.0509,-0.0764 -1.24676,3.68936 -3.00238,7.25151 -6.00476,9.77045 -0.53432,0.458 -1.39942,0.17812 -1.78107,-0.33076 -0.53433,-0.71244 -0.78877,-1.45031 -0.81422,-2.34084 -0.0254,-0.91599 1.17043,-1.32309 1.67931,-0.66154 1.90829,-3.66392 2.97693,-7.68407 3.7148,-11.72965 0.73788,-4.07102 1.19587,-8.16749 1.73019,-12.26396 -0.91597,1.73019 -1.95918,3.40949 -3.15505,5.01245 -0.86508,1.17043 -2.56982,0.25444 -2.64616,-0.94142 -0.22899,0.0509 -0.48343,0.0509 -0.71243,0 -1.0432,-0.22899 -1.50119,-1.14498 -1.39941,-2.11184 0,-0.12722 0.0255,-0.229 0.0255,-0.35622 -0.81421,4.60534 -1.78108,9.1598 -2.97695,13.66337 -1.98462,7.5314 -4.47812,14.85925 -7.65861,21.98354 -0.71243,1.57751 -3.48582,0.66154 -2.95149,-0.99231 6.38642,-19.61725 9.97401,-39.84516 11.7042,-60.27661 -0.78877,6.00477 -1.73019,12.00953 -2.82427,17.98884 -2.08641,11.39886 -4.68169,22.87407 -8.34561,33.89128 -1.73019,5.21599 -3.86747,10.55922 -5.69943,15.54622 -1.34853,3.71481 -2.79883,7.65861 -6.81897,9.26158 -1.06864,2.36628 -2.23906,4.70713 -3.66392,6.81896 -0.45799,0.76332 -1.98462,0.45799 -1.70474,-0.63609 z m 70.40327,-33.10252 c -0.4071,1.73019 -0.78876,3.48582 -1.17042,5.216 1.85741,-4.93612 3.25683,-10.05034 4.55446,-15.16456 1.34853,-5.41956 2.46806,-10.91543 3.53671,-16.41132 2.44261,-12.54384 3.46037,-25.18946 2.82427,-37.93686 -0.43255,-8.49825 -1.60296,-16.84386 -3.28227,-25.13857 0.0764,2.01007 0.15267,4.02013 0.20355,6.00476 0.45799,13.91782 0.61066,27.83563 -0.38165,41.728 -0.99231,14.07047 -3.12961,27.96285 -6.28465,41.70255 z m -17.7344,-41.499 c 2.87517,-13.71426 4.65624,-27.63207 5.16511,-41.60078 0.50889,-14.01958 -0.12721,-28.06462 -2.44261,-41.93155 -1.4503,-8.57459 -3.68937,-16.99652 -6.36097,-25.29124 1.52664,6.7172 2.74794,13.48527 3.66392,20.27879 1.8574,13.63793 2.18818,27.3522 1.39941,41.0919 -0.25443,4.55447 -0.63609,9.10892 -1.11953,13.63793 -0.0254,2.26451 -0.0509,4.52902 -0.0764,6.79353 -0.229,13.81604 -1.34853,27.58119 -3.46037,41.24457 1.11953,-4.70714 2.23907,-9.43969 3.23137,-14.22315 z m -17.86161,-2.92604 c 1.42486,-6.79353 2.62072,-13.6125 3.58759,-20.48235 1.34852,-9.41424 2.11184,-18.90482 2.74793,-28.39539 -0.0509,-1.22131 -0.12721,-2.44262 -0.20354,-3.68937 -0.83966,-14.19769 -2.18818,-28.39539 -4.22369,-42.46587 -0.99231,-6.8444 -2.16274,-13.66337 -3.66393,-20.43145 -0.20355,-0.94142 -0.43254,-1.88285 -0.63609,-2.82427 2.62072,24.37525 3.05327,48.92862 3.02783,73.4311 0,13.15449 -0.30533,26.28355 -1.37398,39.38716 -0.45799,5.67398 -1.01776,11.37342 -1.80651,17.02196 0.83965,-3.86747 1.75563,-7.7095 2.54439,-11.55152 z" /><g
-       style="fill:#474e62;fill-opacity:1"
-       transform="matrix(-0.25443901,0,0,0.25443901,659.58767,-58.144102)"
-       id="g77"><path
-         style="fill:#474e62;fill-opacity:1"
-         inkscape:connector-curvature="0"
-         id="path73"
-         d="m 511.2,508.1 c -0.3,-0.3 -1.9,-2.4 -1,-0.9 -1.4,-2.3 -3.9,-4.3 -6.8,-4.3 -2,0 -3.9,0.2 -5.8,0.4 -0.4,-0.1 -0.8,-0.2 -1.3,-0.2 -4.9,0 -9.3,1.2 -13.3,3.6 -1,-21.8 -22.7,-39.5 -40.1,-50.3 -19.6,-12.2 -41.5,-20.1 -61.9,-30.7 -3.5,-1.8 -7.8,-1.5 -10.2,2 -2.1,3 -1.5,8.1 2.1,10 19.4,10.2 39.9,18.1 58.7,29.4 9,5.4 17.4,11.6 24.6,19.3 7.6,8.2 12.4,18.1 19.3,26.8 0.1,0.1 0.2,0.2 0.3,0.4 -1.3,1.7 -2.5,3.6 -3.7,5.4 -1.8,2.2 -3.5,4.5 -5.1,6.9 -7.9,11.9 -13.5,25.2 -18.4,38.6 -3.1,7.7 -5.9,15.4 -8.5,23.3 -11.5,31 -23.7,61.8 -32.6,93.8 -6.8,24.5 -12.2,49.4 -16.4,74.5 -3.3,19.5 -4.9,39.4 -5.9,59.2 -3.5,34.2 -4.8,68.6 -4.6,102.8 0.3,46.4 6.7,92.6 24.3,135.9 1.8,4.5 9.5,2 8.3,-2.7 -6.2,-23.9 -9.1,-48.6 -10.8,-73.1 -1.8,-25.2 -2.2,-50.6 -2,-75.9 0.5,-52.4 4.3,-104.7 14.5,-156.2 8,-40.4 20.6,-79.5 32.5,-118.8 1.7,-4.4 3.4,-8.7 5.3,-13.1 5.2,-12.4 10,-24.8 14.7,-37.4 2.6,-6.9 5.3,-13.8 8.3,-20.5 0.3,-0.6 0.5,-1.2 0.8,-1.8 0.1,-0.2 0.7,-1.5 0.8,-1.7 0.8,-1.7 1.6,-3.4 2.5,-5.1 1.7,-3.3 3.4,-6.5 5.4,-9.6 1.8,-2.9 3.9,-5.6 5.9,-8.4 0.3,-0.5 2.1,-2.6 2.3,-2.9 0.8,-0.9 1.7,-1.8 2.7,-2.6 1.1,-1 2.2,-1.8 3.4,-2.7 0.5,-0.4 1,-0.8 1.6,-1.2 0.1,0 0.2,-0.1 0.3,-0.2 0.9,-0.5 1.8,-1 2.8,-1.4 0.2,-0.1 2.9,-1.1 2.7,-0.9 1.3,-0.7 2.2,-1.6 2.9,-2.7 0.3,-0.3 0.7,-0.6 1,-0.8 1.9,-1.5 1.8,-4.4 0.4,-6.2 z" /><path
-         style="fill:#474e62;fill-opacity:1"
-         inkscape:connector-curvature="0"
-         id="path75"
-         d="m 506.8,517.8 c 0,0 -0.1,0 -0.1,0.1 0,0 0.1,-0.1 0.1,-0.1 z" /></g><path
-       style="fill:#474e62;stroke-width:0.254439;fill-opacity:1"
-       inkscape:connector-curvature="0"
-       id="path79"
-       d="m 543.00371,74.164184 c 0.40711,-0.763317 1.52664,-1.221308 2.34084,-0.737873 5.11423,3.078711 8.62549,7.836723 11.34799,12.925503 3.1296,5.826651 5.62309,12.009515 7.8876,18.192386 4.68169,12.79829 8.06572,26.02911 10.30479,39.43805 2.18817,13.00183 3.28226,26.35988 2.54439,39.53982 -0.73788,13.23083 -2.67162,26.86876 -7.83673,39.1836 -0.71242,1.70475 -1.47574,3.38405 -2.28995,5.0379 -0.76332,1.57752 -3.43492,0.71243 -3.00238,-1.01775 0.83965,-3.20593 1.42486,-6.4882 2.26451,-9.71957 0.83964,-3.20594 1.55208,-6.43731 2.18817,-9.69413 1.22131,-6.38642 2.23907,-12.77284 2.74795,-19.26104 1.01775,-13.17994 0.63609,-26.43621 -1.0432,-39.53981 -1.70475,-13.25628 -4.70712,-26.35989 -8.82903,-39.10728 -2.08641,-6.43731 -4.47814,-12.798284 -7.27696,-18.955711 -2.34084,-5.165112 -5.34323,-10.279334 -10.10123,-13.688817 -0.15266,-0.12722 -0.33078,-0.228995 -0.48344,-0.33077 -0.78876,-0.508878 -1.2213,-1.373972 -0.76332,-2.264508 z" /><path
-       style="fill:#474e62;stroke-width:0.254439;fill-opacity:1"
-       inkscape:connector-curvature="0"
-       id="path81"
-       d="m 578.06541,70.576594 c 19.18471,9.795902 26.61433,31.067006 33.22974,49.768276 1.95918,5.49587 4.07102,10.94088 5.90298,16.48765 2.13729,6.51364 3.94381,13.15449 5.34322,19.87168 2.44261,11.75508 3.58759,23.89182 2.34084,35.82502 0.73788,-2.82428 1.39942,-5.64855 1.90829,-8.54916 1.19586,-6.76808 1.62841,-13.66338 1.75564,-20.50778 0.12721,-7.09885 -0.20356,-14.17226 -0.96687,-21.24567 -0.0509,-0.50887 -0.10175,-0.9923 -0.15267,-1.50118 -0.71243,-1.19586 -1.62841,-2.21362 -2.97694,-2.74794 -0.86509,-0.35622 -1.17042,-1.5012 -0.76331,-2.2645 0.45798,-0.89055 1.4503,-1.06865 2.34083,-0.73789 0.25445,0.0764 0.48344,0.20356 0.73787,0.30533 -1.01775,-7.50594 -2.49349,-14.96101 -4.91066,-22.13619 -3.05327,-9.00714 -7.98939,-17.963393 -16.2841,-23.332054 -0.73788,-0.483438 -1.17042,-1.297642 -0.73788,-2.16273 0.38166,-0.712435 1.47575,-1.195863 2.21363,-0.712435 8.72725,5.546772 14.17225,14.299469 17.68351,23.637379 3.51126,9.33792 5.16511,19.26104 6.46274,29.08239 0.0255,0.12721 0.0255,0.27988 0.0509,0.40709 0.0764,0.12723 0.15266,0.27989 0.22899,0.40711 1.4503,2.7225 2.62073,5.57222 3.58759,8.49826 2.01007,6.10654 3.18049,12.46752 4.09647,18.82849 1.93373,13.45982 3.1296,27.1232 2.87516,40.71024 -0.10174,5.59766 -0.55977,11.19531 -1.22131,16.74208 -0.35621,3.07872 -0.66154,6.15743 -1.22131,9.2107 -0.63609,3.51125 -1.67929,7.09885 -3.48581,10.22845 -0.89053,1.55208 -2.06096,2.9006 -3.43492,4.07102 -1.06865,0.91598 -2.79884,1.34853 -4.17281,1.52664 -1.2213,0.17811 -1.37396,-1.45031 -0.43254,-1.9083 1.37397,-0.66154 2.46805,-2.13728 3.23137,-3.3077 1.0432,-1.65385 1.6793,-3.38404 2.21362,-5.13967 1.19586,-3.9438 1.83196,-8.09116 2.39172,-12.18763 0.71244,-5.34322 1.37398,-10.68644 1.67931,-16.0551 0.4071,-7.07341 0.35621,-14.1977 -0.0764,-21.2711 -0.61065,-9.64324 -1.6284,-19.36281 -3.38404,-28.85339 -0.43254,-2.39172 -0.96686,-4.758 -1.60296,-7.09884 0.43255,9.10891 0.15267,18.29416 -1.09409,27.3013 -1.78107,12.95094 -6.08109,25.69834 -11.93318,37.42798 -0.58521,1.19586 -1.24676,2.36629 -1.88285,3.5367 -0.58521,1.09409 -1.78108,1.01775 -2.44263,0.38166 -0.68697,0.55976 -1.47574,1.01775 -2.36627,1.34853 -0.83966,0.30533 -1.55208,-0.91598 -0.73788,-1.39941 4.04558,-2.3154 4.65624,-7.96395 5.49589,-12.00953 1.29763,-6.38642 2.54439,-12.72195 2.9006,-19.21014 0.76332,-13.63793 -0.58521,-27.27587 -3.63848,-40.60847 -2.69706,-11.78052 -6.84441,-23.17939 -10.81365,-34.60371 -3.33316,-9.61779 -6.99708,-19.261025 -12.59474,-27.88651 -4.19824,-6.437307 -9.66868,-12.034966 -16.56398,-15.775219 -1.52663,-0.814205 -0.35621,-3.180488 1.22131,-2.391727 z" /><path
-       sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccsccccccccccccc"
-       inkscape:connector-curvature="0"
-       d="m 511.62914,44.26198 c -0.87593,-0.08731 -1.55348,0.909014 -1.04143,1.710493 1.01776,1.577523 2.06228,3.129821 3.05459,4.707343 1.29764,2.060956 2.79773,3.968362 3.9427,6.131094 0.89054,1.679298 1.80586,3.792468 2.13662,5.573541 -0.10174,0.101779 -0.20291,0.202884 -0.30466,0.304663 -1.32309,-2.569834 -2.8486,-5.013553 -4.62968,-7.278061 -2.97693,-3.816585 -6.89641,-7.8615 -12.08696,-8.31949 -1.17042,-0.10178 -1.78063,1.399635 -0.6611,1.959401 4.14735,2.060956 7.7345,4.91045 10.50789,8.574372 1.9083,2.518946 3.53648,5.216442 4.91045,8.040714 -0.68698,0.12722 -1.34765,0.228331 -2.00919,0.304663 -3.38401,-3.231376 -6.84419,-6.437306 -10.86431,-8.930808 -2.3154,-1.450303 -4.85978,-2.672051 -7.55684,-3.231818 -2.59528,-0.534321 -5.14056,-0.100005 -7.37962,1.248522 -0.83965,0.483433 -0.30467,1.754965 0.61132,1.678633 6.79352,-0.534323 12.44141,2.570054 17.47929,6.539303 -2.13729,-1.017756 -4.42746,-1.731291 -6.7683,-2.011175 -4.40179,-0.534321 -9.46468,0.661541 -12.11084,4.350908 -0.0763,0.101779 -0.12794,0.204874 -0.15333,0.306654 -0.89054,0.407102 -1.72975,0.966646 -2.49307,1.704519 -0.91598,0.865093 0.43255,1.958958 1.37398,1.475525 2.01006,-1.017756 4.63189,-0.942532 6.82007,-0.637204 0.9923,0.127219 1.95784,0.35732 2.89927,0.637204 -0.76332,0.356214 -1.49985,0.763096 -2.21229,1.24653 -0.61064,-0.152667 -1.22217,-0.279441 -1.88373,-0.203109 -2.18816,0.228996 -4.27457,2.468058 -5.49588,4.121912 -0.0254,0.05088 -0.0761,0.100454 -0.10155,0.151335 -3.02782,1.882849 -5.9032,4.096479 -8.37126,6.640852 -2.34084,2.417164 -4.4779,5.013121 -5.59743,8.168156 -0.25445,0.763319 0.55977,1.755186 1.37397,1.119093 1.78107,-1.424859 3.35926,-3.026717 4.96222,-4.629687 -2.01007,4.300023 -3.25792,8.802933 -2.46916,13.586385 0.0255,0.152664 0.0503,0.305777 0.0756,0.483877 -0.61066,3.00238 -1.01709,6.25963 -0.30467,9.18568 0.17811,0.68702 1.22086,0.50907 1.34808,-0.10154 0.0764,-0.45799 0.12836,-0.89209 0.17921,-1.35008 0.0764,0.48344 0.20292,0.94188 0.30467,1.39986 -0.0764,0.10175 -0.12635,0.20441 -0.17723,0.28077 -0.61064,0.94142 -1.75648,1.90851 -1.65473,3.10437 0.0255,0.229 0.1281,0.45711 0.28077,0.63522 -2.01008,3.66392 -1.73174,7.71039 -0.89209,11.73052 0.55976,2.69706 1.37463,5.31778 1.98529,8.01483 0.73787,3.30771 1.27264,6.6913 1.62885,10.0499 0.35622,3.43492 0.58493,6.86985 0.55955,10.30477 -0.0255,3.25683 -0.38144,6.46253 -0.55955,9.71935 -0.33076,5.59765 -0.40754,11.19576 -1.17086,16.74253 -0.76332,5.52132 -2.51872,10.76143 -5.59744,15.494 -0.30532,0.45803 0.45888,0.91753 0.73876,0.4341 2.72249,-3.43492 3.96793,-7.35372 5.18923,-11.47564 1.60297,-5.41955 2.34172,-11.01743 3.02871,-16.61509 0.76331,-6.18286 1.60366,-12.34117 1.52729,-18.60037 l -0.0259,-0.8901 c -0.0509,-2.51894 -0.22944,-5.03788 -0.48388,-7.55684 l -0.17722,-1.75628 c -0.0764,-0.63611 -0.15314,-1.24565 -0.25489,-1.88174 l -0.48387,-2.90128 -0.71287,-3.43492 c -0.10174,-0.40711 -0.20291,-0.83944 -0.30466,-1.24653 -0.0509,-0.229 -0.12834,-0.45799 -0.17921,-0.68698 l -0.27878,-1.1191 c -0.25443,-0.89053 -0.50976,-1.75584 -0.73876,-2.64638 l -0.35642,-1.5532 c -0.15266,-0.68697 -0.30447,-1.37442 -0.40622,-2.08683 -0.0764,-0.61068 -0.17852,-1.22131 -0.25488,-1.83197 l -0.17652,-1.93176 c -0.0509,-1.39942 0.075,-2.77492 0.60933,-4.09801 0.0509,-0.15266 0.0518,-0.27944 0.0518,-0.43211 0.12723,-0.10174 0.22881,-0.22922 0.33055,-0.35643 0.43255,1.0432 1.01706,1.57961 1.62772,2.34293 0.74815,0.45918 1.6797,0.34941 2.82673,-0.23204 1.75563,-1.29765 1.70585,-3.66414 1.55318,-5.62332 -0.0255,-0.30533 -0.12807,-0.55911 -0.28077,-0.76266 0.10175,-0.71243 0.17745,-1.42619 0.30467,-2.13862 0.40711,0.50888 1.3233,0.28122 1.5014,-0.38032 0.20356,-0.73788 0.50999,-1.42508 0.63721,-2.1884 0.10185,-0.61066 0.12744,-1.2213 0.12744,-1.83196 0,-0.0764 -0.0259,-0.15223 -0.0259,-0.20311 0.0254,-0.0255 0.0761,-0.0522 0.10155,-0.0777 0.10175,0.0764 0.12707,0.0773 0.10154,0.0518 0.25444,0.15272 0.56087,0.20295 0.8662,0.0756 1.93374,-0.78875 1.19585,-2.797717 1.14498,-4.400687 0,-0.636093 -0.38234,-1.044953 -0.84031,-1.248522 0.10175,-0.534303 0.25444,-0.966857 0.45799,-1.373964 0.12721,0.228996 0.254,0.457981 0.4321,0.686977 0.48343,0.636102 1.42529,0.381904 1.62885,-0.330551 0.4071,-1.373964 -0.1531,-2.823383 -0.71287,-4.070131 -0.0255,-0.05087 -0.0502,-0.102452 -0.0757,-0.153326 0.0254,-0.228996 0.0761,-0.45843 0.10154,-0.712873 0.30533,0.610655 0.68721,1.119521 1.27242,1.60296 0.63609,0.534323 1.62752,0.205322 1.78019,-0.583434 0.25443,-1.297643 -0.17767,-2.494168 -0.89009,-3.588252 0.1781,-0.101749 0.33076,-0.203335 0.45799,-0.330551 0.25443,-0.27988 0.43276,-0.586319 0.58542,-0.866199 0.10175,0.127216 0.20292,0.254687 0.30467,0.356436 1.01775,1.094084 3.00261,0.0259 2.87539,-1.348088 -0.0254,-0.101749 -0.0263,-0.202917 -0.0518,-0.304665 0.15267,0.07626 0.3321,0.127073 0.53565,0.101544 1.37398,-0.101748 0.78855,-1.857617 0.33055,-3.104374 0.33078,-0.07636 0.66089,-0.152236 0.99166,-0.20311 0.0509,0.55976 0.12724,1.117991 0.22899,1.626867 0.35621,1.653855 2.62031,1.552963 2.72205,-0.177224 0.0509,-0.686977 -0.17811,-1.323314 -0.45799,-1.959406 0.12722,-0.02539 0.28099,-0.07606 0.40821,-0.101545 0.40711,-0.127217 0.81354,-0.228292 1.22065,-0.304655 0.0254,0.152664 0.0761,0.279432 0.10154,0.432096 0.12722,0.585208 -0.10134,1.196087 0.25488,1.73041 0.20356,0.305287 0.7131,0.483215 1.06931,0.330551 1.01777,-0.457991 0.96686,-1.654293 0.68698,-2.773829 0.58521,-0.02545 1.14477,-6.67e-4 1.70453,0.07567 0.10174,0.457997 0.22939,0.89208 0.25488,1.350072 0.0254,0.330764 -0.0518,0.686324 0.17722,0.991652 0.17811,0.254432 0.48364,0.431708 0.81442,0.40622 1.09408,-0.07636 1.04276,-1.245433 0.8901,-2.2123 0.27988,0.101748 0.50932,0.177051 0.71287,0.278779 0.0764,0.534344 0.12655,1.145203 0.30466,1.730411 0.25445,0.788756 1.37487,0.967091 1.88374,0.356436 0.38166,-0.457991 0.56043,-0.991438 0.61131,-1.551198 h 0.10154 c 0.229,-0.02539 0.43211,-0.05067 0.66111,-0.101545 0,0.127216 -0.0259,0.278993 -0.0259,0.40622 -0.0255,0.483428 -0.0766,0.941868 0.10154,1.39986 0.10175,0.27987 0.5341,0.457991 0.78855,0.228995 0.71242,-0.610655 0.86597,-1.603642 1.19675,-2.443283 0.0255,-0.02539 0.0259,-0.02426 0.0259,-0.04975 0.27988,-0.05087 0.58432,-0.103543 0.8642,-0.103543 -0.0255,0.203558 -0.0502,0.407769 -0.0756,0.611318 -0.0509,0.585218 -0.17893,1.119307 -0.0518,1.704525 0.0509,0.17806 0.28033,0.355774 0.48388,0.20311 0.66155,-0.534344 1.01688,-1.448767 1.3222,-2.313855 0.33077,0.07636 0.61066,0.203334 0.91598,0.330551 -0.38165,0.55977 -0.88988,1.271532 -0.76265,1.907634 0.10175,0.458033 0.5352,0.686539 0.96775,0.432096 0.55976,-0.330765 0.73655,-1.092534 1.06731,-1.626858 0.2799,0.178112 0.56044,0.381446 0.84032,0.559547 l -0.15597,0.153398 c -1.0432,0.865098 -0.27833,2.51984 1.12108,2.112733 0.6361,-0.178101 1.24521,-0.381884 1.85586,-0.585432 0.55977,0.228995 1.12019,0.407514 1.75628,0.483877 0.73787,0.101748 1.32308,0.152633 1.83197,0.228995 -0.58522,0.636093 -0.73788,1.526628 -0.229,2.289947 0.55976,0.788757 1.80673,1.11843 2.64638,0.507775 0.35623,-0.254433 0.73699,-0.534547 1.09321,-0.814428 0.12722,0.152664 0.30533,0.332101 0.45799,0.535649 0.0509,0.05087 0.10246,0.12635 0.15333,0.177224 -0.12723,1.170426 0.84008,2.443936 2.31583,1.909613 0.10175,-0.05087 0.2288,-0.07657 0.33055,-0.127441 h 0.0498 c 1.62841,0.279881 1.52729,-0.534537 2.90126,0.788542 0.35621,0.330775 0.6611,0.737872 0.8901,1.144979 -0.10175,0.02549 -0.20292,0.05016 -0.30467,0.07565 -0.91598,0.178101 -1.34919,1.347864 -1.06931,2.13662 0.20355,0.585208 0.84032,1.144979 1.5273,1.144979 -0.25444,0.915983 0.28033,2.06244 1.39986,2.037053 0.10175,0.432544 0.22766,0.838999 0.38033,1.220648 0.66154,1.73018 1.60319,2.23994 2.64639,2.7997 -0.33074,0.58521 -0.30409,1.34787 0.0777,1.90764 0.45799,0.66155 1.37374,0.99275 2.16251,0.71287 0.1781,-0.0509 0.32966,-0.10245 0.50777,-0.15333 0.0255,-0.0255 0.0522,-0.0259 0.0777,-0.0259 0.0509,0.0764 0.0761,0.12675 0.10154,0.20311 -0.58521,0.20355 -1.09542,0.71354 -1.22263,1.32419 -0.10175,0.45799 -0.025,0.94099 0.25488,1.34809 0.17811,0.25444 0.40711,0.43277 0.68699,0.58543 0.12722,0.10175 0.28099,0.17852 0.4082,0.25488 0.0764,0.0509 0.17654,0.10043 0.2529,0.15133 -0.68698,0 -1.29676,0.68744 -1.09321,1.39986 -0.66154,0.10175 -1.3233,0.8651 -0.81443,1.60297 1.0432,1.47574 1.40053,3.15548 1.78219,4.83478 -0.9331,4.68377 -0.41268,3.60968 -0.458,6.18287 -0.41961,2.98083 -0.38089,3.62378 -0.71287,6.1072 -0.12723,0.53432 -0.2288,1.04229 -0.33055,1.55119 l -0.77731,2.53264 c -0.23022,1.65513 -0.74155,3.11213 -0.6743,4.69368 -2.35813,6.47019 0.85101,-2.38095 -1.24653,3.48669 l -1.09321,5.87621 c -0.0255,0.83964 -0.38122,1.83195 -0.4321,2.74794 l -0.20512,7.27807 c 0,0.10175 -0.0239,0.20291 -0.0239,0.30466 -0.58521,5.72487 -0.76332,11.45021 -0.45799,17.20053 0.27988,5.5722 1.22041,11.01587 2.69616,16.40998 0.20355,0.73787 1.17045,0.71287 1.60296,0.25488 0.0255,3.00238 0.10114,6.00565 0.30467,8.98258 -0.229,0.76332 -0.45799,1.55097 -0.68699,2.33973 -1.95916,6.71719 -3.84092,13.43593 -5.77466,20.12767 -1.93374,6.7172 -3.8929,13.40761 -5.95386,20.07391 -2.0864,6.76807 -4.1728,13.56182 -6.41186,20.279 -0.55977,1.62841 2.1884,2.51984 2.87538,0.96776 2.97694,-6.6663 5.54523,-13.41004 7.80972,-20.33077 3.46037,-10.48289 6.43863,-21.09278 9.46646,-31.70289 0.50887,3.30771 1.1182,6.59042 1.7543,9.87268 -0.81421,3.12961 -1.57753,6.25811 -2.28995,9.43858 -1.98463,8.8036 -4.37458,17.5313 -6.30832,26.36032 -0.33077,1.39941 1.90741,2.21428 2.46717,0.84033 3.56215,-8.7527 5.08812,-18.19306 6.94552,-27.40375 0.15267,-0.8142 0.35755,-1.62708 0.53565,-2.44128 1.17043,5.69942 2.46829,11.37187 4.02036,16.96953 0.40711,1.3994 2.06051,1.42597 2.95105,0.6372 -2.92605,9.97401 -6.23397,19.84601 -9.74523,29.64192 -0.66154,1.80651 1.93262,3.20591 2.79772,1.37396 4.09647,-8.82904 7.60772,-17.8625 10.53377,-27.07319 0.0509,-0.0509 0.10206,-0.10042 0.12744,-0.15134 1.19587,7.58229 2.44284,15.1639 3.56237,22.74618 -1.65385,4.83434 -3.56259,9.59258 -5.52176,14.32514 -2.79884,6.79353 -5.572,13.56225 -7.88739,20.53388 -0.53432,1.57753 2.11228,2.41563 2.77382,0.93988 3.89292,-8.70181 8.42172,-17.12308 12.0093,-25.95211 0.10175,0.83965 0.22881,1.67929 0.33056,2.51894 -2.23907,4.83434 -4.68124,9.59146 -7.07297,14.37492 -0.48343,0.99227 1.01709,2.01074 1.67863,1.06931 2.06096,-2.87516 3.91903,-5.8262 5.64922,-8.90492 0.15266,-0.27988 0.30532,-0.53454 0.45799,-0.81442 0.73787,6.2592 1.40007,12.5184 1.98528,18.77759 0.38166,3.96925 0.71132,7.96438 0.96577,11.93362 0.12721,2.06096 0.2288,4.1478 0.33055,6.20876 0.0509,0.96687 0.077,1.93197 0.15332,2.8734 0.0764,0.89053 0.48432,1.83305 0.73876,2.69815 0.33077,1.19586 2.08574,0.88943 2.36562,-0.17921 0.22899,-0.89054 0.38213,-1.72908 0.48388,-2.56873 0.68698,0.25445 1.55162,-0.0254 1.80607,-0.91598 1.01775,-3.58759 1.98529,-7.17563 2.90127,-10.78865 0.58521,3.20593 1.34764,6.3873 2.46717,9.44057 0.38166,0.99232 2.11118,0.66044 1.90763,-0.40821 -1.11953,-5.6231 -1.9833,-11.19399 -2.44129,-16.86798 1.50119,-6.41186 2.87406,-12.85008 4.1717,-19.28735 0.30532,4.60533 0.58609,9.21047 0.73876,13.84125 0.20355,5.75032 0.25509,11.52697 1.06929,17.2264 0.78877,5.54678 2.28909,11.22054 5.90211,15.67323 0.78877,0.96686 2.67206,0.20333 2.08684,-1.04343 -3.84202,-8.16748 -4.40199,-17.09763 -4.47835,-25.95211 -0.0255,-2.79882 0.0516,-5.62421 -0.0756,-8.42304 -0.12721,-3.18049 -0.38321,-6.36119 -0.66309,-9.51623 -0.48343,-5.67399 -1.06797,-11.32143 -1.67863,-16.99542 l 1.60297,-9.08414 c 0.94143,-5.31777 1.83218,-10.66054 2.64639,-16.00376 -0.20356,14.07048 -0.22921,28.11594 0.33055,42.16098 0.50888,13.05271 1.85828,26.41076 6.69262,38.70017 0.35622,0.86509 1.65386,0.38122 1.37398,-0.48388 -2.26451,-7.32784 -3.38557,-14.93579 -3.86903,-22.56896 -0.48341,-7.9385 -0.60932,-15.90333 -0.60932,-23.86726 4.19824,-11.11899 7.98894,-22.41452 10.96588,-33.91516 0.17811,9.61779 0.0509,19.23514 -0.458,28.82749 -0.20354,3.91835 -0.45887,7.83605 -0.73875,11.75441 -2.36629,5.95388 -4.83435,11.85664 -7.32785,17.73417 -0.55977,1.3231 1.32419,2.2145 2.01118,0.96776 1.57752,-2.79884 3.07783,-5.6231 4.52812,-8.47281 -0.27988,3.43492 -0.45799,6.89573 -0.68698,10.33066 -0.12723,2.01006 -0.30557,4.01947 -0.35644,6.02954 -0.0509,1.70474 0.28007,3.4347 0.35644,5.13945 0.0509,1.29763 2.0614,1.37418 2.31584,0.12744 0.30533,-1.50119 0.94143,-3.02739 1.14498,-4.55402 0.20356,-1.57752 0.35555,-3.12982 0.53365,-4.70735 0.33077,-3.1296 0.66243,-6.28507 0.96775,-9.41468 0.45799,-4.758 0.76266,-9.51534 0.99166,-14.27336 5.19055,-11.93318 9.38924,-24.27326 12.8496,-36.74077 2.39173,-8.60003 4.32591,-17.35361 5.75077,-26.15721 0.2799,5.01245 0.40582,10.02401 0.38033,15.06191 -0.0509,14.07047 -0.9921,28.16793 -3.0785,42.11119 -0.45799,2.97693 -1.04296,5.90211 -1.47552,8.87904 -0.30532,2.06095 -0.55866,4.1478 -0.96576,6.20875 -0.38166,1.98463 -0.86666,4.09648 -1.57906,5.95388 0.53431,-0.1781 1.04473,-0.356 1.57906,-0.55955 1.01776,-0.38166 2.13618,-0.12678 3.02672,0.48388 0.0764,-0.229 0.12674,-0.4341 0.20311,-0.66309 1.27219,-4.14735 1.70651,-8.44716 2.3935,-12.69629 1.14497,-6.99708 1.98351,-14.01958 2.56872,-21.06754 1.17042,-14.07048 1.45141,-28.2164 0.63721,-42.31232 -0.25444,-4.45268 -0.61088,-8.88036 -1.04343,-13.3076 1.17043,-3.40948 1.98308,-6.94575 2.54284,-10.50789 0.53433,0.20355 1.17109,0.0762 1.5273,-0.58543 1.55208,-2.90061 2.87449,-5.9282 3.96859,-9.03236 0.4071,1.88285 0.76356,3.76481 1.04341,5.6731 0.5089,3.74027 0.86642,7.5825 0.99364,11.3482 0.12722,3.46037 -0.25598,6.99773 -1.57906,10.22911 -0.27989,0.68699 0.56153,1.65408 1.24852,1.04342 3.02785,-2.64616 3.30639,-6.6924 3.12827,-10.4581 -0.20355,-3.96925 -0.73743,-7.98938 -1.34808,-11.90775 -0.53433,-3.38404 -1.29786,-6.71785 -2.18841,-10.00011 0.78877,-2.77338 1.45009,-5.57133 1.93352,-8.42105 0.68698,2.41718 1.29764,4.85934 1.83196,7.30196 0.89054,4.04558 2.13774,8.01594 3.00283,12.08696 0.45799,2.18818 0.83961,4.42569 0.91597,6.66475 0.0509,1.39941 -0.15355,2.77427 -0.28076,4.17368 -0.68699,-0.50887 -1.62797,0.3051 -1.11909,1.01753 0.45798,0.61069 0.86487,1.32221 1.47552,1.7802 0.63609,0.45799 1.37375,0.40887 1.93352,-0.12546 1.70476,-1.62841 1.83265,-4.27545 1.75629,-6.46363 -0.10175,-2.54439 -0.53343,-5.06333 -1.0932,-7.55684 -0.96687,-4.24912 -2.1884,-8.47215 -3.33337,-12.6704 -1.19586,-4.32546 -2.46783,-8.65246 -4.22347,-12.79982 0.43253,-4.47812 0.5341,-8.95603 0.33055,-13.38328 0.0764,0.229 0.15264,0.48389 0.229,0.71288 1.37396,4.30002 2.51784,8.67726 3.25571,13.10449 0.38166,2.28996 0.8412,4.55402 1.12108,6.84397 0.27988,2.28995 1.01688,4.55512 1.55119,6.79418 0.20356,0.8651 1.52597,0.63588 1.67863,-0.12744 0.48344,-2.4935 0.94275,-5.06422 0.76465,-7.60861 -0.17812,-2.34084 -0.40732,-4.70778 -0.81442,-7.02318 -0.81421,-4.60534 -1.9083,-9.23503 -3.43493,-13.56049 -1.55208,-4.45268 -3.40949,-8.82948 -5.49588,-13.07861 -0.20355,-0.48343 -0.458,-0.94186 -0.68699,-1.39985 -1.29764,-6.84441 -3.23093,-13.58661 -5.69899,-20.12568 0.30533,0.38166 0.5843,0.7892 0.86421,1.17086 0.68697,1.32308 1.3222,2.64551 2.00918,3.96859 1.39941,2.7225 3.1046,5.29365 4.3768,8.09248 0.25444,0.50888 0.48387,1.04276 0.71287,1.57708 0.33077,1.09408 0.63631,2.18795 0.81442,3.30748 0.10175,0.73787 0.20332,1.47597 0.33055,2.18841 0,0.33076 -0.0259,0.73656 -0.0259,0.83831 -0.0509,0.53432 0.1779,0.96819 0.55955,1.22264 0.0764,0.20355 0.15313,0.40578 0.25488,0.60933 0.35621,0.71245 1.29745,0.76455 1.70452,0.0777 0.40711,-0.68698 0.66131,-1.42552 0.78854,-2.21428 0.89053,-1.88284 0.10244,-4.55446 -0.76265,-6.64086 -0.12722,-0.45799 -0.25355,-0.89119 -0.40622,-1.2983 -1.17041,-3.43492 -2.87604,-6.68998 -4.86067,-9.74325 -0.76331,-1.14497 -1.55185,-2.29149 -2.3915,-3.41102 -2.41717,-4.70712 -5.114,-9.61712 -9.49036,-12.4414 -3.51126,-6.94618 -7.6075,-13.63793 -12.23829,-19.922572 -3.40949,-4.656236 -7.02385,-9.185683 -10.84043,-13.536592 -3.84203,-4.401803 -7.96239,-8.598933 -12.61862,-12.186523 -4.78346,-3.663922 -10.07755,-6.84463 -15.90421,-8.600259 -6.46274,-1.933737 -13.27994,-1.984845 -19.81902,-3.562367 -2.72249,-0.661542 -3.58804,3.358153 -0.94187,4.096025 0.10175,0.02545 0.20291,0.05022 0.30466,0.07567 -4.42724,0.305327 -8.52304,2.011839 -12.21241,4.454452 -0.45799,0.305328 -0.91597,0.609105 -1.37396,0.939876 -1.47575,-1.475747 -3.10548,-2.798832 -4.88656,-3.892916 -2.23906,-1.399416 -4.78279,-2.339955 -7.40351,-2.696169 0.30533,-0.356214 0.61065,-0.686764 0.91598,-1.017535 3.86747,-4.096468 8.37059,-7.455503 13.25583,-10.330664 1.47574,-0.890536 -0.0241,-2.976715 -1.52531,-2.16251 -5.34321,2.900604 -10.50943,6.412083 -14.60591,10.890209 -0.73787,0.788762 -1.45007,1.62841 -2.1625,2.518946 -0.30533,0.02544 -0.63654,0.07656 -0.94187,0.127441 0.4071,-0.865093 0.81443,-1.731512 1.27242,-2.596605 1.83195,-3.46037 3.89313,-6.767413 6.5393,-9.693462 0.89053,-0.992311 -0.63566,-2.212734 -1.57708,-1.322197 -2.95149,2.798829 -5.34343,5.977545 -7.22628,9.514248 -0.81421,1.552078 -1.65364,3.104376 -2.39152,4.707342 -0.48342,-1.602966 -1.17129,-3.180487 -1.88372,-4.579901 -2.11184,-4.198244 -4.96046,-8.828148 -9.43859,-10.939991 -0.1304,-0.06043 -0.25917,-0.09505 -0.38431,-0.107529 z m 56.0799,18.096584 c 2.64617,0.432547 5.31755,0.916423 7.88739,1.628852 -0.20352,0.330771 -0.30427,0.685216 -0.27878,1.04143 0.0764,1.043201 0.9412,1.603854 1.93352,1.654739 10.53377,0.534321 17.93837,9.057796 22.92538,17.276186 3.20593,5.292329 5.87666,10.916533 8.42105,16.666849 -2.4935,-4.605337 -5.34233,-9.059789 -8.65004,-13.156254 -4.09648,-5.037895 -8.67614,-9.719573 -12.92528,-14.655687 -1.17041,-1.373971 -3.51259,0.128325 -2.36761,1.553184 2.74794,3.384039 5.67444,6.66542 8.49871,10.024014 -0.96687,-0.686987 -1.95918,-1.296541 -2.97694,-1.881749 -0.76332,-0.890536 -1.55141,-1.730625 -2.36561,-2.54483 -0.0254,-0.02544 -0.0263,-0.02632 -0.0518,-0.05177 -1.04321,-1.0432 -2.11229,-2.03463 -3.23182,-2.925163 -0.20356,-0.279884 -0.40621,-0.560429 -0.63521,-0.840312 -0.25443,-0.279879 -0.55888,-0.355548 -0.86421,-0.304663 -0.61065,-0.432546 -1.22175,-0.864872 -1.85784,-1.246531 -3.66392,-4.885228 -8.04138,-9.643014 -13.46093,-12.238293 z m -39.0566,0.864208 c 0.35621,0 0.73897,-0.02545 1.09519,0 0.1781,0 0.32966,0.02589 0.50777,0.02589 h 0.0518 c 0.25444,0.02545 0.48432,0.05067 0.73876,0.101555 0.53432,0.07633 1.09255,0.177886 1.62687,0.33055 0.22899,0.05089 0.48387,0.126777 0.71287,0.203109 0.1272,0.02545 0.25468,0.05266 0.35642,0.103545 1.06865,0.407102 2.08574,0.889873 3.05261,1.449638 0.61067,0.356215 0.86553,0.533218 1.17086,0.736768 0.43255,0.305328 0.83944,0.636982 1.24654,0.967752 0.48343,0.407103 0.94097,0.789204 1.34807,1.170863 -1.09408,0.814204 -2.21184,1.628187 -3.33137,2.391504 -0.43255,-0.228994 -0.89054,-0.432106 -1.37397,-0.661098 -2.51895,-1.195865 -4.65712,-3.027603 -7.15062,-4.223466 -0.43254,-0.203552 -0.86421,-0.382544 -1.3222,-0.509763 0.10175,-0.152664 0.17703,-0.331214 0.27878,-0.483877 0.33077,-0.534322 0.63544,-1.068644 0.99165,-1.602965 z m 30.26717,1.266442 c 1.27498,-0.02117 2.55337,0.108856 3.80331,0.414183 3.28226,0.788761 6.2083,2.695946 8.70181,4.858678 0.48343,0.432546 0.96621,0.866199 1.44964,1.324189 -2.84971,-0.636098 -5.87754,-0.841197 -9.1598,-0.434095 -1.22132,0.152664 -1.77969,1.042978 -1.7543,1.933515 -0.50888,-1.577522 -1.04365,-3.153274 -1.62886,-4.705351 -0.50887,-1.323083 -2.59615,-0.586316 -2.11272,0.736766 1.06864,2.926049 1.98507,5.878646 2.77382,8.881027 -0.20355,-0.178107 -0.40776,-0.383429 -0.61132,-0.561536 -0.10174,-0.381659 -0.17703,-0.736988 -0.27877,-1.093202 -0.15267,-0.58521 -0.9162,-0.585653 -1.27241,-0.254882 -0.0509,-0.05088 -0.12832,-0.100892 -0.17923,-0.177223 -1.17041,-2.28995 -2.49304,-4.452904 -4.32501,-6.310307 -1.14498,-1.144976 -2.82362,0.737209 -1.67864,1.907628 0.43255,0.432546 0.8131,0.890537 1.19476,1.373971 -1.09409,-0.508878 -2.23906,-0.941203 -3.43492,-1.24653 -0.71244,-0.178108 -1.29587,-0.02566 -1.72841,0.33055 -0.55982,-0.814205 -1.11976,-1.628188 -1.73041,-2.391505 1.80651,-1.297639 3.71369,-2.519166 5.77465,-3.333372 1.956,-0.763319 4.07185,-1.21722 6.19681,-1.252504 z m -60.25558,1.017535 c 0.6202,0.01909 1.25086,0.07025 1.89967,0.159301 1.67931,0.228996 3.33249,0.635875 4.88456,1.24653 -0.38166,0.127219 -0.7892,0.253553 -1.17086,0.406216 -0.30533,0.12722 -0.61065,0.279884 -0.91597,0.457991 h -0.30467 c -0.30533,0.02545 -0.63654,0.05221 -0.94187,0.07766 -1.62842,-0.966868 -3.43536,-1.806959 -5.29278,-2.315837 0.61066,-0.03817 1.22173,-0.05094 1.84192,-0.03186 z m 44.95075,6.113172 c 0.10174,0.12722 0.17703,0.229217 0.27877,0.356437 4.65623,6.106536 7.63472,13.002277 9.5939,20.406451 1.65388,6.233758 3.10372,12.974611 1.57708,19.361031 -0.0254,0.1781 -0.025,0.35666 0.0259,0.48388 -0.78876,2.34084 -1.65541,4.65645 -2.49506,6.99729 0.25444,-2.9006 0.0259,-5.80144 -1.34808,-8.37127 0,-0.0509 -0.0259,-0.10042 -0.0259,-0.15133 0.71242,-0.55977 0.99296,-1.90984 0.15332,-2.49505 -0.15266,-2.21362 -0.83941,-4.32391 -0.78854,-6.66475 0.12722,-5.165115 1.3733,-11.324091 -1.5273,-16.005765 -2.44262,-3.943811 -4.88501,-8.497594 -8.11638,-11.983408 0.89053,-0.610654 1.78174,-1.271971 2.67228,-1.933516 z m 18.62427,1.907629 c 0.17811,0.279883 0.43188,0.508436 0.76264,0.661099 -0.15266,0.432547 -0.2022,0.891643 -0.15133,1.324189 -0.20354,-0.661542 -0.40776,-1.323746 -0.61131,-1.985288 z m -11.06744,2.16251 c 2.3154,0.814205 4.37569,2.164058 6.25854,3.741581 0.0764,0.814204 0.17901,1.602784 0.28076,2.3915 -0.78876,-0.83961 -1.6793,-1.526187 -2.74793,-2.035065 -0.63611,-0.279883 -1.2733,-0.179877 -1.78219,0.12545 -0.12721,-0.279883 -0.22921,-0.532553 -0.35643,-0.812435 -0.50888,-1.144975 -1.06754,-2.291498 -1.65275,-3.411031 z m 19.89668,0.07766 c 0.22899,0.07633 0.43211,0.126777 0.6611,0.203109 0.94142,0.305326 1.98529,0.736987 3.13027,1.322197 1.14497,0.559766 2.21295,1.222635 3.28159,1.909619 0.27988,0.152668 0.53411,0.329665 0.78855,0.507772 0.0764,0.05088 0.43409,0.306655 0.43409,0.306655 0.43254,0.330771 0.86377,0.661327 1.29632,1.017539 0.22899,0.178111 0.48386,0.381884 0.71286,0.585432 0.0509,0.585208 0.356,1.143867 1.01754,1.423748 0.15266,0.05087 0.27945,0.128337 0.4321,0.179212 2.31541,3.434925 4.45423,6.995303 6.38797,10.659225 1.11953,3.231377 2.18772,6.488852 3.18005,9.771112 2.31536,7.65861 3.96836,15.46989 5.21511,23.3575 -3.79114,-10.68643 -8.77726,-20.91533 -14.14592,-30.94022 -1.37398,-2.54439 -2.82471,-5.088546 -4.1478,-7.658383 -1.01775,-2.010067 -2.00919,-4.04449 -3.15416,-6.003662 -1.37397,-2.366275 -3.00327,-4.78345 -5.08967,-6.640855 z m -8.04071,0.432103 c 0.25444,0.58521 0.78875,1.094749 1.60297,1.298303 0.20355,0.02545 0.38187,0.100454 0.58543,0.151336 0,0.02545 0.45799,0.203109 0.45799,0.203109 0.229,0.127219 0.45753,0.229216 0.66109,0.356435 0,-0.02545 0.48498,0.305766 0.43411,0.254881 0.76332,0.559766 1.44875,1.196749 2.08485,1.883734 1.17041,1.272198 2.39238,3.179384 3.35925,4.858676 2.18818,3.816585 4.17257,7.785385 6.28442,11.652865 -1.09408,-0.356223 -2.44261,0.280104 -2.97693,1.272419 -0.81421,-1.450306 -1.62796,-2.900612 -2.49306,-4.350908 -2.59527,-4.350909 -5.36822,-8.75159 -8.67593,-12.644507 -0.4071,-1.653874 -0.84076,-3.307933 -1.32419,-4.936343 z m -7.4294,10.533774 c 0.10175,0.254433 0.20442,0.534548 0.28078,0.814428 0.55975,1.628408 0.81398,3.002168 1.01753,4.452464 -0.35622,-1.755624 -0.78943,-3.536705 -1.29831,-5.266892 z m 51.21924,1.628856 c 0.35621,0.432544 0.71109,0.889649 1.06731,1.322193 3.53669,4.452687 6.92251,9.032367 9.95034,13.841254 6.28464,9.94858 11.22031,20.56 14.85878,31.67898 v 0.0239 c -0.63609,0.33078 -1.06975,1.11931 -0.6372,1.93351 0.99232,1.88285 1.93352,3.79269 2.8495,5.70099 2.11184,8.21837 3.3336,16.63942 3.46081,25.13768 -1.14497,-1.6284 -2.46718,-3.1046 -4.07014,-4.37679 -0.99231,-0.78877 -2.21429,0.61043 -1.2983,1.47553 2.31539,2.18818 3.99558,5.01308 5.31866,7.93916 -0.12722,3.35858 -0.48475,6.66608 -0.99364,9.94834 -1.11953,-3.40948 -2.28995,-6.81764 -3.43493,-10.22712 -0.20354,-0.58523 -0.71087,-0.73895 -1.16886,-0.6372 -1.47575,-12.08585 -3.8677,-24.09604 -7.2263,-35.87657 -3.48579,-12.31484 -8.1177,-24.17082 -13.23193,-35.90045 -1.6284,-3.740255 -3.40859,-7.861495 -5.4441,-11.983408 z m -40.45647,1.423748 c 0.55977,0.788756 1.06821,1.578858 1.57708,2.367614 2.90061,4.52902 5.44611,9.235915 7.73605,14.070255 -0.33077,-0.61065 -0.63699,-1.22131 -0.96775,-1.83197 -2.59528,-4.834345 -5.49633,-9.516895 -8.26971,-14.249463 -0.0255,-0.127216 -0.0502,-0.22922 -0.0756,-0.356436 z m -2.51894,0.967754 c 0.0254,0.07636 0.0761,0.126748 0.10154,0.20311 0.0764,0.356222 0.12675,0.736975 0.20311,1.093207 -0.10175,-0.432564 -0.20292,-0.863773 -0.30466,-1.296317 z m 4.3509,7.963058 c 2.72251,5.088777 5.34279,10.254337 7.53096,15.597547 0.6361,1.55209 1.24674,3.12983 1.83195,4.70734 0.27989,4.96156 0.17915,9.94901 -0.0498,14.91057 -0.15266,3.28226 -0.35758,6.58929 -0.53565,9.92246 -1.47576,-11.50066 -3.89182,-22.82362 -6.46165,-34.14616 -0.83965,-3.63848 -1.57796,-7.3024 -2.31584,-10.991757 z m 35.11192,5.217097 c 3.89291,7.32784 6.59063,15.26524 8.85514,23.17829 1.8574,6.64086 3.46015,13.30738 4.68146,20.05001 -0.12722,-0.45799 -0.279,-0.94186 -0.40622,-1.39986 -0.22899,-0.76331 -0.81554,-1.11909 -1.45163,-1.11909 -1.88285,-13.07816 -4.93567,-26.10499 -10.50789,-38.21628 -0.38166,-0.81421 -0.76377,-1.65338 -1.17086,-2.49307 z m -24.52637,0.45799 c 0.66154,1.09408 1.29609,2.18841 1.85585,3.33338 -0.10175,-0.0764 -0.22721,-0.15423 -0.35444,-0.20511 -0.48343,-1.0432 -0.9671,-2.08507 -1.50141,-3.12827 z m 16.71664,3.51059 c 0.78877,1.95919 1.52576,3.91904 2.23818,5.87821 1.65385,4.55447 3.35969,9.10803 4.98811,13.68793 0.10175,0.50888 0.17703,1.01843 0.27877,1.52731 1.98462,11.2462 3.13025,22.61939 4.04625,33.99281 1.14498,14.29948 1.67885,28.6505 0.89009,42.97542 -0.0509,1.01775 -0.10083,2.00895 -0.17722,3.02671 0.61065,-11.55153 0.3301,-23.20505 -0.61132,-34.7057 -0.68699,-8.60004 -1.83307,-17.17506 -3.61414,-25.67333 0.15262,-1.88285 0.17893,-3.76482 0.0518,-5.6731 -0.0509,-0.83965 -0.48408,-1.42552 -1.0693,-1.7563 -1.19586,-9.33791 -2.92473,-18.62493 -5.41823,-27.7084 -0.50887,-1.85741 -1.04318,-3.71415 -1.60296,-5.57156 z m -13.61227,2.49307 c 0.99232,2.2645 1.85719,4.60667 2.62051,6.94751 -0.8142,-1.98463 -1.62996,-3.96922 -2.49505,-5.95388 -0.0509,-0.33076 -0.0746,-0.66286 -0.12546,-0.99363 z m -16.66685,2.8256 c 0.0764,0.45799 0.15263,0.93987 0.229,1.39786 2.2645,13.73971 3.68935,27.58207 3.89291,41.49988 0.20355,13.43438 -0.61088,26.86898 -2.4174,40.20158 -0.78876,5.82665 -1.78018,11.62742 -2.92516,17.37774 -0.48344,-6.10654 -0.94233,-12.23896 -1.42573,-18.34549 -0.17813,-2.18818 -0.35511,-4.40091 -0.50778,-6.58909 2.36628,-13.71426 4.40091,-27.48073 6.13109,-41.29677 0.12722,-0.96687 -0.38095,-1.90806 -1.44964,-2.16251 -0.89051,-0.20355 -2.08664,0.40711 -2.18839,1.37398 -0.58522,5.67399 -1.24697,11.34929 -1.9594,17.02329 0,-6.64087 -0.22877,-13.28326 -0.78854,-19.89868 0.0764,-1.37397 0.12675,-2.77184 0.20311,-4.1458 1.19586,-6.36098 2.39129,-12.74894 2.95105,-19.21169 0.20357,-2.41717 0.28027,-4.83258 0.25488,-7.2243 z m 21.95764,0.76265 c 3.00238,6.53908 5.69988,13.22994 7.81172,20.09979 1.55208,4.98701 2.82427,10.0249 3.89292,15.11368 -0.38166,4.35091 -1.42553,8.6507 -2.44329,12.92527 -0.10174,-1.11953 -0.20333,-2.23774 -0.33055,-3.35725 -0.10174,-1.14501 -0.20289,-2.31586 -0.30466,-3.46083 0.71245,-3.00238 1.2983,-6.03086 1.7563,-9.08412 0.15266,-1.11954 -0.43255,-2.18686 -1.60296,-2.44129 -0.50888,-0.10175 -1.0952,-0.002 -1.55319,0.25288 -0.48344,-3.10415 -1.04299,-6.18175 -1.70453,-9.20958 -1.37397,-6.56452 -3.05216,-13.12993 -5.08766,-19.51635 -0.15267,-0.45799 -0.28143,-0.88965 -0.4341,-1.3222 z m -29.51448,18.47294 c 0.0254,0.0509 0.0259,0.0745 0.0259,0.12544 0.15266,1.32309 0.30488,2.62206 0.4321,3.97058 -0.22899,1.24676 -0.48387,2.49284 -0.71287,3.73958 -0.68699,3.46038 -1.29701,6.94642 -1.90762,10.43223 0.45797,-6.10653 1.22107,-12.18674 2.1625,-18.26783 z m 24.70558,2.44128 c 1.4503,6.00476 2.49416,12.08651 3.13026,18.24394 0.68699,6.71719 1.11976,13.45916 1.27242,20.22723 -0.50887,2.01008 -1.01755,4.02147 -1.47553,6.03153 -3.10416,13.61249 -4.4779,27.63142 -4.91044,41.52378 -0.15263,5.57222 -0.17795,11.1181 -0.10155,16.66487 -0.38165,1.65384 -0.76375,3.30837 -1.17086,4.96223 v -3.20594 c 0.0255,-14.47759 -0.0261,-28.95581 0.30466,-43.4334 0.30533,-14.45213 0.94209,-28.87727 1.7563,-43.30396 0.33076,-5.90299 0.83853,-11.80728 1.19475,-17.71028 z m 4.35091,0.58543 c 1.04321,3.38403 1.98462,6.79462 2.74794,10.255 0.76332,3.46036 1.37441,6.94485 1.85785,10.45611 -0.25444,1.09409 -0.53455,2.21339 -0.81443,3.30749 -0.45799,-5.54677 -1.14475,-11.06654 -2.16251,-16.51154 -0.48344,-2.51894 -1.01819,-5.039 -1.62885,-7.50706 z m 21.88197,2.26407 c 2.0864,11.22075 2.84972,22.56962 3.89292,33.94304 0.55977,6.28464 1.22086,12.56906 1.34808,18.87915 0.12721,6.20831 -0.279,12.34096 -1.3222,18.47294 -0.17811,1.14497 1.52575,1.78063 2.00918,0.6611 3.56215,-8.1166 3.56348,-17.50518 3.2836,-26.207 -0.20355,-6.23376 -0.58477,-12.44184 -0.8901,-18.65015 -0.10174,-1.85741 -0.20377,-3.68981 -0.35643,-5.52178 1.11953,4.24913 2.1614,8.52327 3.12827,12.79785 0.55976,10.33022 0.43298,20.73654 -0.4321,31.01588 -0.48344,5.8012 -1.34808,11.60331 -2.95105,17.22641 -0.76332,2.69705 -1.62885,5.36932 -2.77383,7.93916 -1.14497,2.54439 -2.56939,4.96134 -3.86703,7.4294 -0.68699,1.32306 1.17063,2.41561 2.18839,1.39786 2.3154,-2.34084 3.9686,-5.26601 5.34256,-8.19205 1.34853,-2.82427 2.46828,-5.7751 3.33337,-8.77748 0.0509,-0.229 0.12635,-0.458 0.17723,-0.68699 -2.46806,15.16456 -6.05388,30.2006 -9.97224,45.03437 -0.17811,0.6361 0.93987,0.99254 1.16887,0.35643 4.55445,-13.00183 8.67792,-26.25677 11.42585,-39.76747 -0.53432,3.20594 -1.12064,6.41186 -1.78218,9.61779 -2.62072,12.79828 -6.08153,25.44278 -10.33066,37.83396 -0.55976,1.62841 -1.14519,3.28205 -1.7304,4.91046 0.27989,-10.05035 0.20443,-20.09936 -0.17722,-30.1497 -0.15267,-3.61303 -0.33012,-7.25327 -0.53367,-10.86631 0.96687,-4.88523 1.75452,-9.79567 2.33973,-14.75724 1.6793,-14.14681 1.90808,-28.3945 1.24654,-42.54131 -0.58521,-12.74738 -1.67952,-25.52133 -3.33337,-38.1924 -0.12722,-1.06863 -0.27944,-2.13728 -0.43211,-3.20592 z m -56.51001,1.39986 c -0.10175,0.91597 -0.2288,1.85784 -0.33054,2.77382 -0.12722,1.09408 -0.25469,2.1875 -0.35644,3.2816 -0.25443,-0.0255 -0.53565,-1.6e-4 -0.76465,0.10154 0.43256,-1.95917 0.89054,-3.89269 1.37397,-5.82642 0.0255,-0.10175 0.0522,-0.22881 0.0777,-0.33056 z m 20.32879,2.03506 c 0.35622,3.02783 0.68699,6.08265 0.91598,9.13591 0.58517,7.73495 0.66219,15.49555 0.61131,23.25595 -0.10175,15.5971 -1.04364,31.16722 -2.08683,46.73889 -0.81421,11.98408 -1.85807,23.96858 -4.27524,35.74911 -0.83965,-9.00714 -1.62686,-18.01429 -2.31385,-27.02142 5.47044,-23.02674 8.34561,-46.63821 8.01483,-70.27559 -0.10175,-5.87757 -0.38276,-11.73075 -0.8662,-17.58285 z m -22.2623,6.48953 c 0.66154,4.37634 0.45821,8.8027 0.12744,13.22994 -0.38166,4.88523 -0.71398,9.74456 -0.89209,14.6298 -0.10175,2.8497 -0.27988,5.67487 -0.45799,8.52459 -0.10175,0.33076 -0.17655,0.63697 -0.25288,0.96774 0.1272,-4.24913 0.17655,-8.49958 -0.20511,-12.67238 0.43255,-4.68167 0.58522,-9.3368 0.91598,-14.01848 0.25444,-3.51126 0.53521,-6.99818 0.73876,-10.484 0,-0.0509 0.0259,-0.12634 0.0259,-0.17721 z m -6.13309,10.45611 c -0.10174,2.74793 -0.0766,5.52175 0.10155,8.2697 -0.53431,0.55976 -0.71176,1.3742 -0.53365,2.18841 1.29763,6.05564 1.01775,12.36485 0.91597,18.49683 v 0.8662 c -1.3994,-9.92316 -1.34896,-19.89805 -0.48387,-29.82114 z m 13.58837,6.86985 c -0.10185,5.34323 -0.10196,10.68644 0.10154,16.02965 0.0255,0.99232 0.0766,1.98463 0.12744,2.97694 -0.25443,3.15504 -0.56087,6.28553 -0.8662,9.44057 -0.10174,-0.94142 -0.20241,-1.85784 -0.27877,-2.77382 -0.48344,-4.987 -0.86553,-9.97334 -1.17086,-14.96035 0.76332,-3.56214 1.4253,-7.1254 2.08684,-10.71299 z m 34.80725,3.15615 c 0.30528,6.00476 0.27946,12.00974 -0.0259,17.98906 -0.229,4.09646 -0.38232,8.19315 -0.84031,12.26418 -0.33078,3.1296 -0.78943,6.28375 -1.52731,9.33702 0.89054,-9.08347 1.3238,-18.19328 1.29831,-27.30219 -0.0255,-2.62072 -0.0511,-5.26666 -0.12744,-7.88738 0.4071,-1.47574 0.81554,-2.92495 1.22263,-4.40069 z m 6.66476,2.82361 c 0.76331,6.38642 1.52774,12.7735 2.24016,19.15992 -0.0509,2.34084 -0.12725,4.70624 -0.22899,7.04707 -0.27988,7.14974 -0.78987,14.30013 -1.0952,21.44987 -0.0764,1.29763 2.13773,1.39963 2.31584,0.12744 0.30533,-2.03551 0.58544,-4.09757 0.81442,-6.13308 10e-6,0.15266 -0.0259,0.28143 -0.0259,0.43409 -0.76332,12.23852 -3.12828,24.40069 -7.47918,35.95223 -0.55977,1.50119 1.42441,2.46718 2.26407,1.09319 3.43492,-5.64852 5.64855,-11.8564 7.09884,-18.29371 0.0255,0.0764 0.0259,0.17702 0.0259,0.27877 -2.41718,14.37581 -6.00476,28.54873 -10.30478,42.51742 0.0254,-2.56983 0.0498,-5.14032 0.0498,-7.71016 0.0255,-14.3758 0.43255,-28.72505 0.68699,-43.10085 0.10175,-5.57222 0.20379,-11.14487 0.35643,-16.74254 0.43255,-5.90298 0.76332,-11.83164 0.91598,-17.76006 0.229,-2.59528 0.45733,-5.21644 0.76266,-7.81172 0.40709,-3.5367 0.94142,-7.02206 1.60297,-10.50788 z m 34.2477,6.76829 c 1.06864,3.28227 2.16339,6.56498 3.13026,9.87268 -0.76332,3.68937 -1.75519,7.32697 -2.95105,10.93999 0.61066,-6.94618 0.45688,-13.86648 -0.17921,-20.81267 z m -46.9181,16.89387 c -0.43256,7.73494 -1.22064,15.4201 -2.36562,23.07872 0.40711,-7.73495 1.16975,-15.44556 2.36562,-23.07872 z m -33.86539,3.08048 c 0.50887,5.216 1.06909,10.40612 1.85785,15.54578 0.10175,0.58522 0.17703,1.19543 0.27878,1.80607 -0.0509,0.40711 -0.10245,0.83988 -0.15333,1.27242 -0.0509,0.53433 0.17944,0.96663 0.53565,1.24653 0.94143,6.08108 1.93351,12.13696 2.84949,18.21805 -0.5852,-2.54439 -1.06886,-5.11488 -1.50141,-7.71017 -1.19586,-7.20061 -2.62095,-14.32513 -4.24935,-21.42398 -0.0509,-0.22899 -0.10246,-0.45754 -0.15333,-0.6611 0.22899,-0.0509 0.45928,-0.22832 0.53565,-0.53365 0.30537,-1.14497 0.0768,-2.41783 0.0259,-3.58825 -0.051,-1.29764 -0.0514,-2.56939 -0.0259,-3.86703 z m 6.66675,7.55684 c 0.35621,5.19056 0.71154,10.38112 1.0932,15.57167 -0.27988,-2.11185 -0.53411,-4.25069 -0.78855,-6.38798 -0.25444,-2.06096 -0.5082,-4.14624 -0.76264,-6.23264 0.15266,-0.99232 0.30532,-1.95874 0.45799,-2.95105 z m 31.77854,9.74523 c -0.76331,8.42194 -1.73085,16.79253 -2.90128,25.16357 -0.91595,6.51364 -1.93307,13.00227 -3.0526,19.49047 -0.45799,-5.445 -0.8403,-10.89176 -1.0693,-16.3622 1.98463,-7.93849 3.53647,-15.97765 4.68145,-24.09426 0.91597,-1.29764 1.70564,-2.72184 2.34173,-4.19758 z m -16.3861,27.27432 v 2.49504 c 0,4.5799 0.0252,9.18371 0.10155,13.7636 -0.61066,1.9083 -1.22175,3.84247 -1.85784,5.75077 -1.0941,3.25681 -2.26385,6.46363 -3.5106,9.66956 -0.15266,-1.39941 -0.279,-2.79971 -0.40622,-4.17369 2.0864,-6.8444 3.66305,-13.81537 4.75712,-20.91421 0.33078,-2.18818 0.6361,-4.37746 0.91598,-6.59107 z m 6.31032,12.08694 c 0.15266,2.9515 0.35642,5.90166 0.58542,8.85316 0.27988,3.68937 0.58477,7.35418 0.8901,11.04353 -0.61066,3.23138 -1.24564,6.48797 -1.88174,9.71935 -0.48343,2.44261 -0.9682,4.88522 -1.45163,7.32784 0,-2.97694 0.0259,-5.95387 0.0259,-8.9308 0,-7.48051 3.7e-4,-14.93513 0.0259,-22.41563 0.48344,-1.4503 0.96577,-2.90062 1.42376,-4.35091 0.12721,-0.40711 0.2551,-0.83943 0.38232,-1.24654 z m -5.97977,16.51354 c 0.10175,5.49588 0.20491,10.96587 0.30666,16.46175 0.10175,6.10654 0.30445,12.23895 0.86421,18.34551 -1.14497,5.67397 -2.23906,11.37165 -3.20593,17.07108 -0.10175,-2.84972 -0.22966,-5.69877 -0.38232,-8.54849 -0.0764,-1.11953 -0.12675,-2.23972 -0.20311,-3.35926 0.33076,-0.25444 0.53525,-0.66132 0.50976,-1.24653 -0.58521,-9.46512 -1.65453,-18.8537 -2.67227,-28.26795 1.70474,-3.43492 3.30726,-6.91942 4.783,-10.45611 z"
-       style="fill:#9497a2;stroke-width:0.254439;fill-opacity:1"
-       id="path83" /><path
-       style="fill:#474e62;stroke-width:0.254439;fill-opacity:1"
-       inkscape:connector-curvature="0"
-       id="path85"
-       d="m 524.32789,70.525706 c -0.86509,0.254439 -1.73018,-0.508878 -1.57752,-1.424858 0.20355,-1.272195 0.89054,-2.366283 1.47574,-3.485815 0.63611,-1.221307 1.37398,-2.41717 2.0864,-3.613034 1.39942,-2.366283 2.84972,-4.707121 4.45269,-6.971629 3.25682,-4.554458 7.37873,-8.371043 12.95095,-9.999453 1.50119,-0.432546 2.21361,1.602966 0.8142,2.213619 -4.78345,2.060957 -8.52371,5.928429 -11.34798,10.101229 -1.47575,2.162732 -2.74794,4.452683 -4.02014,6.717191 -0.71242,1.272195 -1.42486,2.747941 -2.31539,4.071024 0.5852,-0.457991 1.17042,-0.890537 1.70474,-1.246752 0.25444,-0.178107 0.53432,-0.356214 0.81421,-0.508878 0.48343,-2.747941 2.13728,-5.037892 3.9438,-7.17518 1.80652,-2.162731 3.96925,-4.020136 6.28464,-5.648546 4.57991,-3.205931 9.74502,-5.572214 14.85924,-7.862165 1.42486,-0.636097 2.64617,1.679297 1.24675,2.417171 -4.68168,2.41717 -9.3379,4.910672 -13.51071,8.09116 -2.0864,1.577522 -4.04558,3.333151 -5.77577,5.292331 -0.53431,0.610654 -1.01775,1.221308 -1.47574,1.882849 1.17042,-0.585209 2.34084,-1.119532 3.51126,-1.679297 6.41187,-3.027825 13.66338,-5.521327 20.864,-5.34322 1.75563,-0.890537 3.5367,-1.653854 5.44499,-2.213619 4.50358,-1.348527 9.36336,-1.50119 13.91782,-0.254439 2.51894,0.686985 1.67929,4.529014 -0.8651,3.892917 -3.9438,-0.992312 -7.86217,-0.814205 -11.72964,0.356215 0.10175,0.686985 -0.38166,1.424858 -1.24674,1.450302 0.78875,0.381658 1.55207,0.839649 2.28994,1.348527 0.38166,0.254439 0.50888,0.636097 0.45799,1.017756 2.90061,-0.101779 5.82666,0.05088 8.72726,0.508878 10.88999,1.679297 20.35513,7.785834 29.33682,13.612486 0.83965,0.559766 1.32308,1.501191 0.81421,2.468059 -0.43256,0.814205 -1.6793,1.348526 -2.51895,0.788761 -8.44738,-5.470439 -17.40363,-10.584663 -27.47942,-12.442068 -3.56214,-0.661541 -7.22606,-0.78876 -10.86454,-0.45799 8.06572,5.521327 14.91012,12.442067 20.71134,20.25334 6.94618,9.33792 12.34029,19.719032 17.37818,30.125582 5.82665,12.1113 10.17756,24.90958 12.74739,38.06408 2.62072,13.43438 3.5367,27.22497 1.14498,40.78657 -0.99232,5.62311 -2.56983,11.0681 -4.55446,16.43676 -1.52664,4.12191 -3.58759,8.49827 -7.86216,10.50834 -1.06865,0.50887 -1.78107,-1.0941 -0.91599,-1.73019 3.86748,-2.87517 5.0379,-8.32016 6.0811,-12.67107 1.57752,-6.58997 2.74794,-13.15449 3.28226,-19.92257 1.06865,-13.38349 -0.53432,-27.12319 -3.68937,-40.17592 -3.0787,-12.6965 -7.96393,-24.78236 -13.81603,-36.48656 -5.06334,-10.12666 -10.661,-20.075227 -17.98884,-28.853376 -3.43493,-4.121913 -7.3024,-7.913055 -11.55153,-11.27165 13.63792,19.490028 21.42376,42.491316 26.13089,65.492606 2.49349,12.16218 3.76569,24.52792 3.48581,36.91909 -0.27988,12.44207 -2.39173,24.75693 -6.46276,36.56289 -0.63609,1.88285 -3.66392,1.39941 -3.18048,-0.6361 3.25682,-13.43437 5.08878,-27.25042 5.06334,-41.041 0,-13.84149 -2.0864,-27.50487 -5.34322,-40.93924 -5.03789,-20.99122 -12.77284,-41.37179 -25.851,-58.775416 -0.55978,-0.763317 -0.40711,-1.526634 0.10174,-2.060956 -2.41717,0.483434 -4.78346,1.170419 -7.20062,1.62841 -0.40711,0.07633 -0.78877,0.152663 -1.19587,0.228994 0.43255,0.02545 0.83966,0.178108 1.14497,0.508878 16.81843,18.294163 26.538,41.27001 30.78713,65.28905 2.31539,13.20539 3.00238,26.76699 2.95149,40.15048 -0.0255,7.22607 -0.4071,14.45213 -1.17042,21.62731 -0.0764,0.71244 -0.15267,1.39941 -0.229,2.11185 -0.0254,0.20355 -0.0509,0.4071 -0.0764,0.61065 0,0.0509 0,0.10175 -0.0255,0.12722 0,0.0255 0,0.0509 0,0.0764 -0.10175,1.01775 -0.17811,2.03552 -0.25444,3.07871 -0.1781,2.34085 -0.38166,4.68168 -0.66154,6.99707 -0.48344,4.24914 -1.34853,8.37105 -2.92605,12.3403 -1.47574,3.66392 -3.7657,6.79352 -7.50595,8.44738 -1.37397,0.61065 -2.79883,-1.39943 -1.65386,-2.41718 3.00238,-2.62072 4.6308,-6.41186 5.6231,-10.15211 1.11954,-4.30002 1.67931,-9.18526 2.03552,-13.25627 0.45799,-5.24145 1.06864,-10.48289 1.42486,-15.72433 0.48344,-7.1243 0.5852,-14.29948 0.4071,-21.42377 -0.30532,-12.9255 -1.17042,-25.92734 -3.84203,-38.5984 -2.46806,-11.67875 -6.36097,-23.1285 -11.93319,-33.764053 -4.24913,-8.116609 -9.51601,-15.775222 -15.67344,-22.619631 -0.73787,-0.814205 -0.96687,-1.933737 -0.15266,-2.798829 0.15266,-0.178108 0.35621,-0.305327 0.5852,-0.432547 -0.43254,0.07633 -0.86508,0.152664 -1.29764,0.228996 -0.78875,0.101779 -1.57752,0.178107 -2.36628,0.330771 -1.17041,1.043199 -2.31539,2.111844 -3.38404,3.282262 -1.09408,1.221308 -2.03551,2.569835 -3.18048,3.71481 -1.17043,1.17042 -2.92605,0.178107 -2.77339,-1.348527 0.35622,-3.485814 3.51126,-6.513638 5.97932,-8.803589 2.11185,-1.959181 4.47812,-3.663922 6.92074,-5.266888 -1.4503,0.330771 -2.84972,0.737873 -4.22369,1.221308 -6.41187,2.264507 -12.13674,6.106536 -17.20007,10.482886 -0.53432,0.457991 -1.22131,0.279884 -1.6793,-0.152662 -1.0432,1.094087 -1.85741,2.468058 -3.02783,3.434926 -0.61065,0.508878 -1.67929,0.101779 -1.90829,-0.610654 -0.50888,-1.755629 0.25444,-3.511258 1.50119,-5.037892 z m 34.70548,-7.658614 c 1.62842,-0.33077 3.28226,-0.585209 4.93612,-0.763317 -1.32308,-0.610654 -2.69706,-1.017756 -4.12192,-1.272195 -1.29763,0.763317 -2.56982,1.577522 -3.84202,2.366283 -0.33077,0.203551 -0.66154,0.432546 -1.01776,0.661541 1.34853,-0.356215 2.67162,-0.712429 4.04558,-0.992312 z" /><path
-       style="fill:#474e62;stroke-width:0.254439;fill-opacity:1"
-       inkscape:connector-curvature="0"
-       id="path87"
-       d="m 532.19006,47.906078 c 1.42486,-1.348527 3.74025,0.534322 2.36628,2.010068 -2.13728,2.289952 -4.30002,4.579903 -6.13198,7.124293 -1.90829,2.646165 -3.25682,5.572214 -4.50357,8.549151 -0.45799,1.094088 -2.06095,0.636097 -2.18817,-0.407103 -0.81421,-7.124292 5.72487,-12.747394 10.45744,-17.276409 z" /><path
-       style="fill:#474e62;stroke-width:0.254439;fill-opacity:1"
-       inkscape:connector-curvature="0"
-       id="path89"
-       d="m 535.49777,71.568906 c 2.72249,-2.798829 6.10653,-4.910673 9.66868,-6.615414 3.63848,-1.730185 7.48051,-3.053268 11.42431,-3.943805 1.95918,-0.45799 3.96925,-0.712429 5.97932,-0.91598 0.86508,-0.07633 1.73018,-0.12722 2.59527,-0.203552 0.76332,-0.05088 1.78108,0.07633 2.46806,-0.152663 1.14498,-0.381659 2.36629,0.45799 2.44262,1.602966 0.0764,1.094088 -1.06865,2.21362 -2.23906,1.857405 -0.58522,-0.178108 -1.32309,0 -1.95919,0.05088 -0.86509,0.07633 -1.73018,0.178108 -2.56983,0.330771 -1.62841,0.279883 -3.23138,0.712429 -4.85979,1.094088 -3.56214,0.839649 -7.0734,2.010069 -10.35567,3.613033 -3.1296,1.501191 -6.15741,3.460371 -8.65092,5.67399 -2.69705,2.391728 -4.50357,5.34322 -6.51364,8.243825 -0.66154,0.966867 -2.41717,0.330775 -2.41717,-0.788757 0.0764,-3.842033 2.36629,-7.124297 4.98701,-9.846794 z" /><path
-       style="fill:#474e62;stroke-width:0.254439;fill-opacity:1"
-       inkscape:connector-curvature="0"
-       id="path91"
-       d="m 529.722,66.709121 c 1.67929,-2.595278 3.7657,-4.885229 6.05565,-6.971629 4.73257,-4.249131 10.27934,-7.480507 15.80066,-10.610106 1.98462,-1.119533 3.9947,1.755628 1.98462,2.900604 -5.13966,2.951493 -10.38111,5.953873 -14.80835,9.872234 -2.0864,1.831961 -4.02013,3.892916 -5.57221,6.182868 -0.83965,1.221307 -1.57752,2.518946 -2.26451,3.816585 -0.73787,1.348527 -1.27219,2.773385 -2.13729,4.071024 -0.55976,0.839649 -2.06095,0.788761 -2.13728,-0.407103 -0.15267,-3.078711 1.39941,-6.284643 3.07871,-8.854477 z" /></g></svg>
\ No newline at end of file
+	 id="g1315"><path
+	   style="fill:#4b3d2b;stroke-width:0.254439"
+	   inkscape:connector-curvature="0"
+	   id="path55"
+	   d="m 574.55415,53.223854 c -0.22899,-0.12722 -0.43254,-0.228996 -0.66154,-0.356215 0.30533,-0.05088 0.58521,-0.07633 0.89054,-0.12722 0.15266,0.305327 0.30533,0.58521 0.48343,0.865093 -0.25443,-0.127219 -0.48343,-0.254439 -0.71243,-0.381658 z" /><path
+	   style="fill:#4b3d2b;stroke-width:0.254439"
+	   inkscape:connector-curvature="0"
+	   id="path57"
+	   d="m 639.15622,217.46423 c 0.25444,1.37398 0.40711,2.56984 0.38166,3.51126 -0.0509,2.01008 -0.27988,3.18049 -0.66154,3.94381 0.1781,-2.51895 0.25443,-4.98701 0.27988,-7.45507 z" /><path
+	   style="fill:#b4b3b7;stroke-width:0.254439;fill-opacity:1"
+	   inkscape:connector-curvature="0"
+	   id="path59"
+	   d="m 509.16332,64.953492 c 0.81422,-0.305327 1.62842,-0.58521 2.44262,-0.839649 1.65386,-0.534322 3.33315,-0.992312 5.01245,-1.424858 0.45799,0.178107 0.94142,0.279883 1.50119,0.254439 3.68937,-0.07633 7.50596,-0.814205 10.22845,-3.409483 0.6361,-0.610654 0.96686,-1.399414 1.01776,-2.21362 0.48343,-0.02545 0.9923,-0.02545 1.47574,0 1.09409,0.02545 2.16273,0.101779 3.25682,0.203552 0.0764,0.02545 0.96686,0.127219 1.06864,0.127219 0.50888,0.07633 1.01777,0.152664 1.55208,0.228996 1.06865,0.152663 2.11184,0.33077 3.18049,0.483433 5.34322,2.391727 10.91543,4.452683 16.6912,5.597659 4.1728,0.814204 6.53909,-4.579903 2.79883,-6.742634 -0.17811,-0.101779 -0.38166,-0.203551 -0.55977,-0.305327 0,0 0.0255,-0.02545 0.0255,-0.02545 0.78876,-0.483434 1.75562,-1.475746 2.84972,-2.671609 0.30533,0.101779 0.63609,0.178107 0.94142,0.254439 1.22131,1.170419 2.62072,2.111843 4.12191,2.951492 -1.32308,1.679297 -1.27219,4.50357 0.99232,5.572214 3.38403,1.577523 7.09884,3.00238 10.91543,2.518947 0.0764,0 0.15266,-0.02545 0.25443,-0.02545 0.10175,0.71243 0.45799,1.399415 1.17043,1.984625 2.01006,1.679298 3.91836,3.485814 5.87753,5.215999 0.96687,0.865094 1.95918,1.704742 2.97695,2.493503 0.66154,0.534322 1.34852,1.017756 2.0355,1.526634 0.33078,0.228995 0.66155,0.483434 0.99232,0.712429 0.38166,0.279883 0.45799,0.305327 0.22899,0.12722 3.9947,2.976935 7.68406,6.284644 11.24621,9.745006 4.37634,4.24914 8.57459,8.650933 13.02728,12.823732 1.06864,2.92605 2.28994,5.77576 3.56214,8.57459 2.92605,6.41187 6.36097,12.62018 10.05034,18.67583 3.9947,10.63554 7.45506,21.65275 13.48527,31.37232 -0.27988,0.35622 -0.6361,0.687 -1.06865,1.04321 -2.84971,2.16273 -5.75032,1.34853 -6.20831,4.987 -0.30533,2.46806 3.25683,7.45507 4.22369,9.49059 1.52663,3.18047 2.79883,6.58996 4.60535,9.61778 2.31539,3.89292 3.48581,5.54678 1.8574,9.94857 -3.00238,-2.31541 -6.36098,-4.22368 -9.74502,-5.87755 -1.73017,1.52664 -2.36628,4.09648 -2.36628,7.17519 -0.8142,-0.38167 -1.78107,-0.48344 -2.6716,-0.229 -2.03552,0.5852 -3.05327,2.62073 -2.54439,4.55445 0.30532,1.17043 0.55976,2.34084 0.78875,3.51126 0.10175,0.53432 0.20355,1.04321 0.27988,1.57752 0.0255,0.12722 0.10175,0.66154 0.10175,0.68699 0.0255,0.25444 0.0764,0.48343 0.10175,0.73787 0.30533,2.46806 0.48343,4.93612 0.55976,7.42962 0.15267,4.987 -0.0764,9.99945 -0.45799,14.96102 -0.68698,8.54915 -1.8574,17.04741 -2.51894,25.57111 -0.25445,1.2722 -0.27988,2.59529 -0.25445,3.89292 0,0.48344 0.12723,0.96687 0.30533,1.37397 -0.10175,0.229 -0.1781,0.45799 -0.27988,0.71243 -1.60297,-3.40948 -2.95149,-7.86217 -3.66392,-9.41424 -2.84972,2.31539 -2.9515,8.72726 -3.00238,13.53615 -0.33077,-0.229 -0.71243,-0.38166 -1.06865,-0.48343 -2.18817,-0.53432 -3.84202,0.78876 -4.57989,2.62072 -2.67162,6.53908 -5.36867,13.10361 -8.29472,19.64269 -0.43255,-2.95148 -0.86509,-5.90298 -0.91597,-8.93079 -0.0764,-4.4527 0.20354,-8.29472 -1.85742,-12.08587 -4.65622,13.23082 -4.57989,28.11552 -7.50594,41.77889 -1.47575,6.79351 -2.90061,6.97163 -9.66868,6.76808 -1.29765,-8.39649 6.41185,-14.29948 1.24674,-22.3143 -2.6716,-4.17281 -7.4805,-8.54916 -9.05803,-12.51841 -0.76331,6.69175 -2.49349,13.43439 -3.9438,20.12613 -0.68698,-0.55976 -1.55207,-0.89054 -2.4935,-0.89054 -2.06095,0.0255 -3.74026,1.73019 -3.71481,3.71481 l 0.0255,0.8651 c 0.0254,1.98462 1.78107,3.63847 3.81658,3.61303 0.33077,0 0.66154,-0.0509 0.99231,-0.15266 -0.20355,1.34853 -0.38166,2.84972 -0.55976,4.37635 -0.0764,-0.0255 -0.15267,-0.0509 -0.25444,-0.0764 -2.06096,-0.50887 -3.96925,0.73787 -4.57991,2.62072 -0.20355,0.61066 -0.4071,1.22131 -0.61065,1.80652 -0.12722,0.35621 -0.25444,0.68699 -0.38165,1.01775 -0.0255,0.0764 -0.0509,0.15267 -0.0764,0.20356 -0.30532,0.68699 -0.61065,1.34853 -0.96686,1.98462 1.32308,-7.27696 1.8574,-14.63023 0.50887,-22.03441 -0.12722,-0.6361 -0.45799,-1.17043 -0.91598,-1.57752 0.10175,-4.55447 -0.229,-9.10893 -1.11953,-13.66338 -0.17811,-0.96687 -0.89054,-1.70474 -1.75563,-2.16273 -0.0764,-0.94142 -0.15267,-1.90829 -0.25444,-2.84972 -0.22899,0.83965 -0.45799,1.6793 -0.68698,2.49351 -0.66154,-0.15267 -1.34853,-0.17812 -1.98463,0 -2.11184,0.61065 -2.95149,2.59527 -2.54439,4.55445 0.30532,1.60297 0.43255,2.36628 0.61065,4.02014 0.12723,1.37397 0.229,2.74794 0.27989,4.12191 -0.81421,2.87516 -1.62842,5.77577 -2.34084,8.62548 -1.39941,-2.39172 -4.27458,-3.20593 -6.71719,-2.41717 -0.35622,-6.46274 3.86747,-14.22314 4.52901,-20.96578 0.50888,-5.31777 -0.0509,-12.31484 1.55208,-17.32729 -0.91598,1.17042 -5.36866,7.76039 -6.61541,7.86217 -0.30533,0.0254 -0.61066,-0.0509 -0.89054,-0.20356 2.82427,-2.46806 4.987,-5.97932 6.64086,-8.9817 0.96687,-1.75562 0.38166,-3.99468 -1.42486,-4.987 -0.58521,-0.30533 -1.22131,-0.45799 -1.8574,-0.45799 0.83965,-2.9006 1.50119,-5.8521 2.06095,-8.80359 1.19586,-2.21362 2.28996,-4.47812 3.15504,-6.81896 2.62073,-7.14974 1.57753,-14.98646 -0.35621,-22.3143 -7.81128,-29.48948 5.34321,-60.32749 -4.24913,-89.58798 -4.02014,-12.2894 -7.73495,-28.166394 -18.54861,-36.384771 -4.30001,-3.256825 -9.77045,-4.172798 -13.9687,-7.276958 -4.60535,-3.384034 -5.13966,-9.083468 -8.29471,-12.543839 l -3.15504,-1.704741 c -0.0764,-0.407103 0.0764,-0.890537 0.33076,-1.37397 z" /><path
+	   style="fill:#474e62;stroke-width:0.254439;fill-opacity:1"
+	   inkscape:connector-curvature="0"
+	   id="path61"
+	   d="m 534.35279,300.51313 c 0.78876,-3.23138 2.06095,-6.31009 3.1296,-9.46514 1.11953,-3.3077 2.28996,-6.61541 3.35859,-9.94856 2.0864,-6.46275 3.96925,-12.97638 5.75032,-19.51547 3.5876,-13.07816 6.4882,-26.38533 8.8036,-39.74337 2.28994,-13.35806 4.32546,-26.86876 5.64854,-40.43036 0.0509,-1.65386 0.10175,-3.30771 0.12722,-4.96157 0.25444,-12.87461 0.53433,-25.80011 -0.12722,-38.67472 -0.99231,-19.71903 -4.45268,-39.539827 -13.79059,-57.248778 -0.55977,-1.043202 -0.43255,-2.289954 0.63609,-2.976939 0.94143,-0.58521 2.51896,-0.407102 3.05327,0.636097 5.39411,10.075781 8.95626,20.73678 11.29709,31.67766 -0.55976,-5.69944 -1.2213,-11.398872 -2.01007,-17.098307 -0.12721,-0.915983 0.48344,-1.781071 1.2722,-2.213615 -5.67399,-9.083476 -12.82372,-17.632625 -21.60187,-24.019044 -1.80652,-1.323083 0.33077,-4.325463 2.23906,-3.155044 7.02252,4.249132 12.95095,9.84679 18.06518,16.10599 -0.45799,-0.966869 -0.96687,-1.88285 -1.57753,-2.747942 -1.37397,-2.010069 1.73019,-3.943804 3.18049,-2.060956 0.91598,1.195863 1.6793,2.468059 2.34084,3.816585 0.58521,-0.305327 1.34853,-0.33077 1.98462,-0.101779 -1.2722,-2.747942 -2.64616,-5.444996 -4.09647,-8.116605 -1.32308,-1.424858 -2.77338,-2.697053 -4.40179,-3.816585 -1.01775,-0.686985 -0.91598,-2.315395 -0.15266,-3.1296 0.89053,-0.966868 2.21361,-0.839649 3.20593,-0.152663 0.94143,0.661541 1.83196,1.37397 2.67161,2.137287 0.12722,0.07633 0.25444,0.203552 0.35621,0.330771 2.13729,1.984625 3.94381,4.249131 5.52133,6.691746 3.74025,2.391726 6.64085,5.928429 9.13436,9.490575 2.9515,4.249139 5.29233,8.829033 7.65862,13.3835 2.79882,5.419546 5.59765,10.839096 8.06571,16.436756 2.7225,6.13198 5.24144,12.36574 7.58229,18.65038 0.53431,1.42486 1.0432,2.82427 1.55207,4.24913 -1.11953,-8.19293 -2.64617,-16.33499 -4.70712,-24.37525 -3.00238,-11.704202 -7.25151,-23.153957 -13.30716,-33.713179 -0.20356,-0.356214 -0.27989,-0.686985 -0.30532,-1.017756 0,0 -0.0255,-0.02545 -0.0255,-0.02545 -1.93374,-1.653853 0.71242,-4.503571 2.64617,-2.875161 4.55445,3.816586 8.65092,8.167487 12.13673,12.925502 3.61304,4.936116 6.41187,10.355661 8.93081,15.876994 5.64855,12.41663 10.30479,25.26579 13.99415,38.3694 3.81658,13.51072 6.53908,27.3013 8.72726,41.11735 2.21362,14.07048 3.48581,28.31906 3.48581,42.56764 0,8.90537 -0.63609,17.81073 -1.60297,26.66521 -0.78876,7.14973 -2.0864,14.45214 -4.55446,21.24566 -1.2213,3.33315 -2.77338,6.74263 -5.41954,9.26157 -0.55977,0.53433 -1.14498,1.01777 -1.80652,1.42486 -0.8142,0.53433 -1.11953,0.68699 -2.06096,0.99232 -1.50119,0.50887 -2.9006,0.38166 -4.42723,0.17811 -1.52664,-0.20355 -1.06865,-2.51895 0.45798,-2.28996 0.99231,0.12723 2.16274,-0.33076 2.79883,-0.71242 0.50888,-0.30533 0.30533,-0.17811 0.71244,-0.48344 0.0764,-0.0509 0.15265,-0.12722 0.22898,-0.1781 0,0 0.20356,-0.17811 0.229,-0.20356 0.48344,-0.45798 0.89053,-0.94142 1.29764,-1.47574 -0.0764,0.0764 0.33078,-0.50888 0.40711,-0.6361 0.1781,-0.30532 0.35621,-0.58521 0.53431,-0.89053 0.40711,-0.68699 0.76332,-1.42486 1.06865,-2.13729 0.33077,-0.71243 0.6361,-1.45031 0.91598,-2.18818 0.0509,-0.15267 0.10175,-0.27988 0.17811,-0.43255 -0.0255,0.0255 0.12722,-0.35621 0.15267,-0.38166 0.1781,-0.45799 0.33076,-0.94142 0.48342,-1.39941 2.23907,-6.92074 3.1296,-14.17225 3.91837,-21.34743 0.0764,-0.71243 0.15266,-1.39941 0.22899,-2.11185 0.0254,-0.15266 0.0254,-0.30533 0.0509,-0.48343 0.0255,-0.35621 0.0764,-0.68698 0.10175,-1.0432 0.0764,-0.96686 0.1781,-1.95918 0.25443,-2.92605 0.58521,-6.76808 0.8651,-13.5616 0.8142,-20.38056 -0.0764,-14.24859 -1.60296,-28.47173 -3.74025,-42.54221 -4.14735,-27.09775 -11.09353,-53.76295 -22.61963,-78.8252 -2.23906,-4.859791 -4.96155,-9.465132 -8.16748,-13.714261 8.26926,18.955701 12.03496,39.641591 14.01958,60.098491 0.27989,2.82427 0.50889,5.64854 0.71243,8.47282 1.37397,4.5799 2.67161,9.18525 3.89292,13.79059 3.66392,13.76515 5.72487,27.88652 5.69944,42.10966 -0.0255,11.14443 -1.67931,22.03441 -4.02015,32.92441 -1.32308,6.13198 -2.79882,12.21307 -4.55445,18.24327 -2.01007,6.81897 -4.24913,13.7906 -7.9385,19.94803 -0.83965,1.39941 -1.83196,2.84971 -2.97694,4.12191 -0.0255,0.10175 -0.0764,0.20355 -0.10174,0.33076 -1.34853,4.12192 -2.92605,8.42194 -5.64854,11.88231 -1.0941,1.39941 -2.41718,2.59528 -4.02014,3.3586 -1.52664,0.71242 -2.90061,0.66154 -4.5799,0.33076 -1.52664,-0.30533 -1.06865,-2.59527 0.45799,-2.28995 0.10175,0.0255 0.48343,0 0.68698,0 0.4071,-0.0255 0.30532,-0.0255 0.61065,-0.10174 0.12723,-0.0254 0.229,-0.0764 0.33078,-0.10175 -0.20355,0.0764 0.35621,-0.15267 0.30532,-0.12723 0.30533,-0.15266 0.58521,-0.35621 0.86509,-0.55976 -0.10175,0.0764 0.6361,-0.58521 0.48344,-0.40711 0.229,-0.22899 0.45799,-0.45799 0.66154,-0.68698 0.58521,-0.66154 0.78876,-0.99231 1.19586,-1.60296 1.34853,-2.1373 2.3154,-4.30003 3.15505,-6.56454 -0.96687,0.15267 -1.98463,0.12723 -3.05327,-0.12721 -1.11953,-0.27988 -0.78876,-1.98462 0.33077,-1.70474 1.37397,0.33077 2.64617,-0.17811 3.66392,-0.96687 0.0255,-0.10175 0.0509,-0.20355 0.10175,-0.27988 1.98462,-6.43731 3.07871,-13.05273 4.32546,-19.6427 1.19586,-6.20831 2.59527,-12.36573 3.58759,-18.62493 1.09409,-7.07341 1.9083,-14.17226 2.4935,-21.29655 1.14498,-13.94325 1.14498,-27.88651 0.81421,-41.85522 -0.25445,-9.94856 -0.58521,-19.97346 -1.29765,-29.94747 -3.00238,-10.48288 -6.33552,-20.864 -10.25389,-31.06699 -3.81658,-9.94858 -8.67637,-19.4137 -13.7397,-28.827947 -1.57752,-2.92605 -3.23138,-5.826662 -5.08878,-8.600038 0.66154,1.60296 1.29763,3.180483 1.95918,4.732558 5.31778,12.620187 10.203,25.418467 13.61249,38.674737 7.0734,27.37764 7.02251,56.07835 2.74794,83.83766 -1.70474,11.0172 -4.30002,21.77997 -7.25151,32.51729 -1.11953,4.02015 -2.44261,8.14206 -4.93612,11.60242 -0.55977,0.76332 -1.55207,1.9083 -2.67161,2.67162 -0.10174,0.4071 -0.17811,0.78876 -0.27989,1.19586 -1.2213,5.06334 -2.6716,10.05034 -3.91835,15.11368 -1.17043,4.78345 -2.46806,9.51602 -4.24914,14.12136 -1.62841,4.1728 -3.71481,8.67637 -7.17518,11.7042 -1.01775,0.89053 -2.11184,1.70474 -3.33314,2.34083 -1.73019,0.91598 -3.20593,-1.2213 -1.70474,-2.44261 3.23136,-2.62072 5.31777,-6.76808 6.8444,-10.48289 1.83197,-4.37634 2.9515,-9.08347 4.04558,-13.66337 1.52664,-6.41187 3.15505,-12.82373 4.65624,-19.23559 -0.0255,-0.0255 -0.0255,-0.0509 -0.0509,-0.0764 -1.24676,3.68936 -3.00238,7.25151 -6.00476,9.77045 -0.53432,0.458 -1.39942,0.17812 -1.78107,-0.33076 -0.53433,-0.71244 -0.78877,-1.45031 -0.81422,-2.34084 -0.0254,-0.91599 1.17043,-1.32309 1.67931,-0.66154 1.90829,-3.66392 2.97693,-7.68407 3.7148,-11.72965 0.73788,-4.07102 1.19587,-8.16749 1.73019,-12.26396 -0.91597,1.73019 -1.95918,3.40949 -3.15505,5.01245 -0.86508,1.17043 -2.56982,0.25444 -2.64616,-0.94142 -0.22899,0.0509 -0.48343,0.0509 -0.71243,0 -1.0432,-0.22899 -1.50119,-1.14498 -1.39941,-2.11184 0,-0.12722 0.0255,-0.229 0.0255,-0.35622 -0.81421,4.60534 -1.78108,9.1598 -2.97695,13.66337 -1.98462,7.5314 -4.47812,14.85925 -7.65861,21.98354 -0.71243,1.57751 -3.48582,0.66154 -2.95149,-0.99231 6.38642,-19.61725 9.97401,-39.84516 11.7042,-60.27661 -0.78877,6.00477 -1.73019,12.00953 -2.82427,17.98884 -2.08641,11.39886 -4.68169,22.87407 -8.34561,33.89128 -1.73019,5.21599 -3.86747,10.55922 -5.69943,15.54622 -1.34853,3.71481 -2.79883,7.65861 -6.81897,9.26158 -1.06864,2.36628 -2.23906,4.70713 -3.66392,6.81896 -0.45799,0.76332 -1.98462,0.45799 -1.70474,-0.63609 z m 70.40327,-33.10252 c -0.4071,1.73019 -0.78876,3.48582 -1.17042,5.216 1.85741,-4.93612 3.25683,-10.05034 4.55446,-15.16456 1.34853,-5.41956 2.46806,-10.91543 3.53671,-16.41132 2.44261,-12.54384 3.46037,-25.18946 2.82427,-37.93686 -0.43255,-8.49825 -1.60296,-16.84386 -3.28227,-25.13857 0.0764,2.01007 0.15267,4.02013 0.20355,6.00476 0.45799,13.91782 0.61066,27.83563 -0.38165,41.728 -0.99231,14.07047 -3.12961,27.96285 -6.28465,41.70255 z m -17.7344,-41.499 c 2.87517,-13.71426 4.65624,-27.63207 5.16511,-41.60078 0.50889,-14.01958 -0.12721,-28.06462 -2.44261,-41.93155 -1.4503,-8.57459 -3.68937,-16.99652 -6.36097,-25.29124 1.52664,6.7172 2.74794,13.48527 3.66392,20.27879 1.8574,13.63793 2.18818,27.3522 1.39941,41.0919 -0.25443,4.55447 -0.63609,9.10892 -1.11953,13.63793 -0.0254,2.26451 -0.0509,4.52902 -0.0764,6.79353 -0.229,13.81604 -1.34853,27.58119 -3.46037,41.24457 1.11953,-4.70714 2.23907,-9.43969 3.23137,-14.22315 z m -17.86161,-2.92604 c 1.42486,-6.79353 2.62072,-13.6125 3.58759,-20.48235 1.34852,-9.41424 2.11184,-18.90482 2.74793,-28.39539 -0.0509,-1.22131 -0.12721,-2.44262 -0.20354,-3.68937 -0.83966,-14.19769 -2.18818,-28.39539 -4.22369,-42.46587 -0.99231,-6.8444 -2.16274,-13.66337 -3.66393,-20.43145 -0.20355,-0.94142 -0.43254,-1.88285 -0.63609,-2.82427 2.62072,24.37525 3.05327,48.92862 3.02783,73.4311 0,13.15449 -0.30533,26.28355 -1.37398,39.38716 -0.45799,5.67398 -1.01776,11.37342 -1.80651,17.02196 0.83965,-3.86747 1.75563,-7.7095 2.54439,-11.55152 z" /><g
+	   style="fill:#474e62;fill-opacity:1"
+	   transform="matrix(-0.25443901,0,0,0.25443901,659.58767,-58.144102)"
+	   id="g77"><path
+		 style="fill:#474e62;fill-opacity:1"
+		 inkscape:connector-curvature="0"
+		 id="path73"
+		 d="m 511.2,508.1 c -0.3,-0.3 -1.9,-2.4 -1,-0.9 -1.4,-2.3 -3.9,-4.3 -6.8,-4.3 -2,0 -3.9,0.2 -5.8,0.4 -0.4,-0.1 -0.8,-0.2 -1.3,-0.2 -4.9,0 -9.3,1.2 -13.3,3.6 -1,-21.8 -22.7,-39.5 -40.1,-50.3 -19.6,-12.2 -41.5,-20.1 -61.9,-30.7 -3.5,-1.8 -7.8,-1.5 -10.2,2 -2.1,3 -1.5,8.1 2.1,10 19.4,10.2 39.9,18.1 58.7,29.4 9,5.4 17.4,11.6 24.6,19.3 7.6,8.2 12.4,18.1 19.3,26.8 0.1,0.1 0.2,0.2 0.3,0.4 -1.3,1.7 -2.5,3.6 -3.7,5.4 -1.8,2.2 -3.5,4.5 -5.1,6.9 -7.9,11.9 -13.5,25.2 -18.4,38.6 -3.1,7.7 -5.9,15.4 -8.5,23.3 -11.5,31 -23.7,61.8 -32.6,93.8 -6.8,24.5 -12.2,49.4 -16.4,74.5 -3.3,19.5 -4.9,39.4 -5.9,59.2 -3.5,34.2 -4.8,68.6 -4.6,102.8 0.3,46.4 6.7,92.6 24.3,135.9 1.8,4.5 9.5,2 8.3,-2.7 -6.2,-23.9 -9.1,-48.6 -10.8,-73.1 -1.8,-25.2 -2.2,-50.6 -2,-75.9 0.5,-52.4 4.3,-104.7 14.5,-156.2 8,-40.4 20.6,-79.5 32.5,-118.8 1.7,-4.4 3.4,-8.7 5.3,-13.1 5.2,-12.4 10,-24.8 14.7,-37.4 2.6,-6.9 5.3,-13.8 8.3,-20.5 0.3,-0.6 0.5,-1.2 0.8,-1.8 0.1,-0.2 0.7,-1.5 0.8,-1.7 0.8,-1.7 1.6,-3.4 2.5,-5.1 1.7,-3.3 3.4,-6.5 5.4,-9.6 1.8,-2.9 3.9,-5.6 5.9,-8.4 0.3,-0.5 2.1,-2.6 2.3,-2.9 0.8,-0.9 1.7,-1.8 2.7,-2.6 1.1,-1 2.2,-1.8 3.4,-2.7 0.5,-0.4 1,-0.8 1.6,-1.2 0.1,0 0.2,-0.1 0.3,-0.2 0.9,-0.5 1.8,-1 2.8,-1.4 0.2,-0.1 2.9,-1.1 2.7,-0.9 1.3,-0.7 2.2,-1.6 2.9,-2.7 0.3,-0.3 0.7,-0.6 1,-0.8 1.9,-1.5 1.8,-4.4 0.4,-6.2 z" /><path
+		 style="fill:#474e62;fill-opacity:1"
+		 inkscape:connector-curvature="0"
+		 id="path75"
+		 d="m 506.8,517.8 c 0,0 -0.1,0 -0.1,0.1 0,0 0.1,-0.1 0.1,-0.1 z" /></g><path
+	   style="fill:#474e62;stroke-width:0.254439;fill-opacity:1"
+	   inkscape:connector-curvature="0"
+	   id="path79"
+	   d="m 543.00371,74.164184 c 0.40711,-0.763317 1.52664,-1.221308 2.34084,-0.737873 5.11423,3.078711 8.62549,7.836723 11.34799,12.925503 3.1296,5.826651 5.62309,12.009515 7.8876,18.192386 4.68169,12.79829 8.06572,26.02911 10.30479,39.43805 2.18817,13.00183 3.28226,26.35988 2.54439,39.53982 -0.73788,13.23083 -2.67162,26.86876 -7.83673,39.1836 -0.71242,1.70475 -1.47574,3.38405 -2.28995,5.0379 -0.76332,1.57752 -3.43492,0.71243 -3.00238,-1.01775 0.83965,-3.20593 1.42486,-6.4882 2.26451,-9.71957 0.83964,-3.20594 1.55208,-6.43731 2.18817,-9.69413 1.22131,-6.38642 2.23907,-12.77284 2.74795,-19.26104 1.01775,-13.17994 0.63609,-26.43621 -1.0432,-39.53981 -1.70475,-13.25628 -4.70712,-26.35989 -8.82903,-39.10728 -2.08641,-6.43731 -4.47814,-12.798284 -7.27696,-18.955711 -2.34084,-5.165112 -5.34323,-10.279334 -10.10123,-13.688817 -0.15266,-0.12722 -0.33078,-0.228995 -0.48344,-0.33077 -0.78876,-0.508878 -1.2213,-1.373972 -0.76332,-2.264508 z" /><path
+	   style="fill:#474e62;stroke-width:0.254439;fill-opacity:1"
+	   inkscape:connector-curvature="0"
+	   id="path81"
+	   d="m 578.06541,70.576594 c 19.18471,9.795902 26.61433,31.067006 33.22974,49.768276 1.95918,5.49587 4.07102,10.94088 5.90298,16.48765 2.13729,6.51364 3.94381,13.15449 5.34322,19.87168 2.44261,11.75508 3.58759,23.89182 2.34084,35.82502 0.73788,-2.82428 1.39942,-5.64855 1.90829,-8.54916 1.19586,-6.76808 1.62841,-13.66338 1.75564,-20.50778 0.12721,-7.09885 -0.20356,-14.17226 -0.96687,-21.24567 -0.0509,-0.50887 -0.10175,-0.9923 -0.15267,-1.50118 -0.71243,-1.19586 -1.62841,-2.21362 -2.97694,-2.74794 -0.86509,-0.35622 -1.17042,-1.5012 -0.76331,-2.2645 0.45798,-0.89055 1.4503,-1.06865 2.34083,-0.73789 0.25445,0.0764 0.48344,0.20356 0.73787,0.30533 -1.01775,-7.50594 -2.49349,-14.96101 -4.91066,-22.13619 -3.05327,-9.00714 -7.98939,-17.963393 -16.2841,-23.332054 -0.73788,-0.483438 -1.17042,-1.297642 -0.73788,-2.16273 0.38166,-0.712435 1.47575,-1.195863 2.21363,-0.712435 8.72725,5.546772 14.17225,14.299469 17.68351,23.637379 3.51126,9.33792 5.16511,19.26104 6.46274,29.08239 0.0255,0.12721 0.0255,0.27988 0.0509,0.40709 0.0764,0.12723 0.15266,0.27989 0.22899,0.40711 1.4503,2.7225 2.62073,5.57222 3.58759,8.49826 2.01007,6.10654 3.18049,12.46752 4.09647,18.82849 1.93373,13.45982 3.1296,27.1232 2.87516,40.71024 -0.10174,5.59766 -0.55977,11.19531 -1.22131,16.74208 -0.35621,3.07872 -0.66154,6.15743 -1.22131,9.2107 -0.63609,3.51125 -1.67929,7.09885 -3.48581,10.22845 -0.89053,1.55208 -2.06096,2.9006 -3.43492,4.07102 -1.06865,0.91598 -2.79884,1.34853 -4.17281,1.52664 -1.2213,0.17811 -1.37396,-1.45031 -0.43254,-1.9083 1.37397,-0.66154 2.46805,-2.13728 3.23137,-3.3077 1.0432,-1.65385 1.6793,-3.38404 2.21362,-5.13967 1.19586,-3.9438 1.83196,-8.09116 2.39172,-12.18763 0.71244,-5.34322 1.37398,-10.68644 1.67931,-16.0551 0.4071,-7.07341 0.35621,-14.1977 -0.0764,-21.2711 -0.61065,-9.64324 -1.6284,-19.36281 -3.38404,-28.85339 -0.43254,-2.39172 -0.96686,-4.758 -1.60296,-7.09884 0.43255,9.10891 0.15267,18.29416 -1.09409,27.3013 -1.78107,12.95094 -6.08109,25.69834 -11.93318,37.42798 -0.58521,1.19586 -1.24676,2.36629 -1.88285,3.5367 -0.58521,1.09409 -1.78108,1.01775 -2.44263,0.38166 -0.68697,0.55976 -1.47574,1.01775 -2.36627,1.34853 -0.83966,0.30533 -1.55208,-0.91598 -0.73788,-1.39941 4.04558,-2.3154 4.65624,-7.96395 5.49589,-12.00953 1.29763,-6.38642 2.54439,-12.72195 2.9006,-19.21014 0.76332,-13.63793 -0.58521,-27.27587 -3.63848,-40.60847 -2.69706,-11.78052 -6.84441,-23.17939 -10.81365,-34.60371 -3.33316,-9.61779 -6.99708,-19.261025 -12.59474,-27.88651 -4.19824,-6.437307 -9.66868,-12.034966 -16.56398,-15.775219 -1.52663,-0.814205 -0.35621,-3.180488 1.22131,-2.391727 z" /><path
+	   sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccsccccccccccccc"
+	   inkscape:connector-curvature="0"
+	   d="m 511.62914,44.26198 c -0.87593,-0.08731 -1.55348,0.909014 -1.04143,1.710493 1.01776,1.577523 2.06228,3.129821 3.05459,4.707343 1.29764,2.060956 2.79773,3.968362 3.9427,6.131094 0.89054,1.679298 1.80586,3.792468 2.13662,5.573541 -0.10174,0.101779 -0.20291,0.202884 -0.30466,0.304663 -1.32309,-2.569834 -2.8486,-5.013553 -4.62968,-7.278061 -2.97693,-3.816585 -6.89641,-7.8615 -12.08696,-8.31949 -1.17042,-0.10178 -1.78063,1.399635 -0.6611,1.959401 4.14735,2.060956 7.7345,4.91045 10.50789,8.574372 1.9083,2.518946 3.53648,5.216442 4.91045,8.040714 -0.68698,0.12722 -1.34765,0.228331 -2.00919,0.304663 -3.38401,-3.231376 -6.84419,-6.437306 -10.86431,-8.930808 -2.3154,-1.450303 -4.85978,-2.672051 -7.55684,-3.231818 -2.59528,-0.534321 -5.14056,-0.100005 -7.37962,1.248522 -0.83965,0.483433 -0.30467,1.754965 0.61132,1.678633 6.79352,-0.534323 12.44141,2.570054 17.47929,6.539303 -2.13729,-1.017756 -4.42746,-1.731291 -6.7683,-2.011175 -4.40179,-0.534321 -9.46468,0.661541 -12.11084,4.350908 -0.0763,0.101779 -0.12794,0.204874 -0.15333,0.306654 -0.89054,0.407102 -1.72975,0.966646 -2.49307,1.704519 -0.91598,0.865093 0.43255,1.958958 1.37398,1.475525 2.01006,-1.017756 4.63189,-0.942532 6.82007,-0.637204 0.9923,0.127219 1.95784,0.35732 2.89927,0.637204 -0.76332,0.356214 -1.49985,0.763096 -2.21229,1.24653 -0.61064,-0.152667 -1.22217,-0.279441 -1.88373,-0.203109 -2.18816,0.228996 -4.27457,2.468058 -5.49588,4.121912 -0.0254,0.05088 -0.0761,0.100454 -0.10155,0.151335 -3.02782,1.882849 -5.9032,4.096479 -8.37126,6.640852 -2.34084,2.417164 -4.4779,5.013121 -5.59743,8.168156 -0.25445,0.763319 0.55977,1.755186 1.37397,1.119093 1.78107,-1.424859 3.35926,-3.026717 4.96222,-4.629687 -2.01007,4.300023 -3.25792,8.802933 -2.46916,13.586385 0.0255,0.152664 0.0503,0.305777 0.0756,0.483877 -0.61066,3.00238 -1.01709,6.25963 -0.30467,9.18568 0.17811,0.68702 1.22086,0.50907 1.34808,-0.10154 0.0764,-0.45799 0.12836,-0.89209 0.17921,-1.35008 0.0764,0.48344 0.20292,0.94188 0.30467,1.39986 -0.0764,0.10175 -0.12635,0.20441 -0.17723,0.28077 -0.61064,0.94142 -1.75648,1.90851 -1.65473,3.10437 0.0255,0.229 0.1281,0.45711 0.28077,0.63522 -2.01008,3.66392 -1.73174,7.71039 -0.89209,11.73052 0.55976,2.69706 1.37463,5.31778 1.98529,8.01483 0.73787,3.30771 1.27264,6.6913 1.62885,10.0499 0.35622,3.43492 0.58493,6.86985 0.55955,10.30477 -0.0255,3.25683 -0.38144,6.46253 -0.55955,9.71935 -0.33076,5.59765 -0.40754,11.19576 -1.17086,16.74253 -0.76332,5.52132 -2.51872,10.76143 -5.59744,15.494 -0.30532,0.45803 0.45888,0.91753 0.73876,0.4341 2.72249,-3.43492 3.96793,-7.35372 5.18923,-11.47564 1.60297,-5.41955 2.34172,-11.01743 3.02871,-16.61509 0.76331,-6.18286 1.60366,-12.34117 1.52729,-18.60037 l -0.0259,-0.8901 c -0.0509,-2.51894 -0.22944,-5.03788 -0.48388,-7.55684 l -0.17722,-1.75628 c -0.0764,-0.63611 -0.15314,-1.24565 -0.25489,-1.88174 l -0.48387,-2.90128 -0.71287,-3.43492 c -0.10174,-0.40711 -0.20291,-0.83944 -0.30466,-1.24653 -0.0509,-0.229 -0.12834,-0.45799 -0.17921,-0.68698 l -0.27878,-1.1191 c -0.25443,-0.89053 -0.50976,-1.75584 -0.73876,-2.64638 l -0.35642,-1.5532 c -0.15266,-0.68697 -0.30447,-1.37442 -0.40622,-2.08683 -0.0764,-0.61068 -0.17852,-1.22131 -0.25488,-1.83197 l -0.17652,-1.93176 c -0.0509,-1.39942 0.075,-2.77492 0.60933,-4.09801 0.0509,-0.15266 0.0518,-0.27944 0.0518,-0.43211 0.12723,-0.10174 0.22881,-0.22922 0.33055,-0.35643 0.43255,1.0432 1.01706,1.57961 1.62772,2.34293 0.74815,0.45918 1.6797,0.34941 2.82673,-0.23204 1.75563,-1.29765 1.70585,-3.66414 1.55318,-5.62332 -0.0255,-0.30533 -0.12807,-0.55911 -0.28077,-0.76266 0.10175,-0.71243 0.17745,-1.42619 0.30467,-2.13862 0.40711,0.50888 1.3233,0.28122 1.5014,-0.38032 0.20356,-0.73788 0.50999,-1.42508 0.63721,-2.1884 0.10185,-0.61066 0.12744,-1.2213 0.12744,-1.83196 0,-0.0764 -0.0259,-0.15223 -0.0259,-0.20311 0.0254,-0.0255 0.0761,-0.0522 0.10155,-0.0777 0.10175,0.0764 0.12707,0.0773 0.10154,0.0518 0.25444,0.15272 0.56087,0.20295 0.8662,0.0756 1.93374,-0.78875 1.19585,-2.797717 1.14498,-4.400687 0,-0.636093 -0.38234,-1.044953 -0.84031,-1.248522 0.10175,-0.534303 0.25444,-0.966857 0.45799,-1.373964 0.12721,0.228996 0.254,0.457981 0.4321,0.686977 0.48343,0.636102 1.42529,0.381904 1.62885,-0.330551 0.4071,-1.373964 -0.1531,-2.823383 -0.71287,-4.070131 -0.0255,-0.05087 -0.0502,-0.102452 -0.0757,-0.153326 0.0254,-0.228996 0.0761,-0.45843 0.10154,-0.712873 0.30533,0.610655 0.68721,1.119521 1.27242,1.60296 0.63609,0.534323 1.62752,0.205322 1.78019,-0.583434 0.25443,-1.297643 -0.17767,-2.494168 -0.89009,-3.588252 0.1781,-0.101749 0.33076,-0.203335 0.45799,-0.330551 0.25443,-0.27988 0.43276,-0.586319 0.58542,-0.866199 0.10175,0.127216 0.20292,0.254687 0.30467,0.356436 1.01775,1.094084 3.00261,0.0259 2.87539,-1.348088 -0.0254,-0.101749 -0.0263,-0.202917 -0.0518,-0.304665 0.15267,0.07626 0.3321,0.127073 0.53565,0.101544 1.37398,-0.101748 0.78855,-1.857617 0.33055,-3.104374 0.33078,-0.07636 0.66089,-0.152236 0.99166,-0.20311 0.0509,0.55976 0.12724,1.117991 0.22899,1.626867 0.35621,1.653855 2.62031,1.552963 2.72205,-0.177224 0.0509,-0.686977 -0.17811,-1.323314 -0.45799,-1.959406 0.12722,-0.02539 0.28099,-0.07606 0.40821,-0.101545 0.40711,-0.127217 0.81354,-0.228292 1.22065,-0.304655 0.0254,0.152664 0.0761,0.279432 0.10154,0.432096 0.12722,0.585208 -0.10134,1.196087 0.25488,1.73041 0.20356,0.305287 0.7131,0.483215 1.06931,0.330551 1.01777,-0.457991 0.96686,-1.654293 0.68698,-2.773829 0.58521,-0.02545 1.14477,-6.67e-4 1.70453,0.07567 0.10174,0.457997 0.22939,0.89208 0.25488,1.350072 0.0254,0.330764 -0.0518,0.686324 0.17722,0.991652 0.17811,0.254432 0.48364,0.431708 0.81442,0.40622 1.09408,-0.07636 1.04276,-1.245433 0.8901,-2.2123 0.27988,0.101748 0.50932,0.177051 0.71287,0.278779 0.0764,0.534344 0.12655,1.145203 0.30466,1.730411 0.25445,0.788756 1.37487,0.967091 1.88374,0.356436 0.38166,-0.457991 0.56043,-0.991438 0.61131,-1.551198 h 0.10154 c 0.229,-0.02539 0.43211,-0.05067 0.66111,-0.101545 0,0.127216 -0.0259,0.278993 -0.0259,0.40622 -0.0255,0.483428 -0.0766,0.941868 0.10154,1.39986 0.10175,0.27987 0.5341,0.457991 0.78855,0.228995 0.71242,-0.610655 0.86597,-1.603642 1.19675,-2.443283 0.0255,-0.02539 0.0259,-0.02426 0.0259,-0.04975 0.27988,-0.05087 0.58432,-0.103543 0.8642,-0.103543 -0.0255,0.203558 -0.0502,0.407769 -0.0756,0.611318 -0.0509,0.585218 -0.17893,1.119307 -0.0518,1.704525 0.0509,0.17806 0.28033,0.355774 0.48388,0.20311 0.66155,-0.534344 1.01688,-1.448767 1.3222,-2.313855 0.33077,0.07636 0.61066,0.203334 0.91598,0.330551 -0.38165,0.55977 -0.88988,1.271532 -0.76265,1.907634 0.10175,0.458033 0.5352,0.686539 0.96775,0.432096 0.55976,-0.330765 0.73655,-1.092534 1.06731,-1.626858 0.2799,0.178112 0.56044,0.381446 0.84032,0.559547 l -0.15597,0.153398 c -1.0432,0.865098 -0.27833,2.51984 1.12108,2.112733 0.6361,-0.178101 1.24521,-0.381884 1.85586,-0.585432 0.55977,0.228995 1.12019,0.407514 1.75628,0.483877 0.73787,0.101748 1.32308,0.152633 1.83197,0.228995 -0.58522,0.636093 -0.73788,1.526628 -0.229,2.289947 0.55976,0.788757 1.80673,1.11843 2.64638,0.507775 0.35623,-0.254433 0.73699,-0.534547 1.09321,-0.814428 0.12722,0.152664 0.30533,0.332101 0.45799,0.535649 0.0509,0.05087 0.10246,0.12635 0.15333,0.177224 -0.12723,1.170426 0.84008,2.443936 2.31583,1.909613 0.10175,-0.05087 0.2288,-0.07657 0.33055,-0.127441 h 0.0498 c 1.62841,0.279881 1.52729,-0.534537 2.90126,0.788542 0.35621,0.330775 0.6611,0.737872 0.8901,1.144979 -0.10175,0.02549 -0.20292,0.05016 -0.30467,0.07565 -0.91598,0.178101 -1.34919,1.347864 -1.06931,2.13662 0.20355,0.585208 0.84032,1.144979 1.5273,1.144979 -0.25444,0.915983 0.28033,2.06244 1.39986,2.037053 0.10175,0.432544 0.22766,0.838999 0.38033,1.220648 0.66154,1.73018 1.60319,2.23994 2.64639,2.7997 -0.33074,0.58521 -0.30409,1.34787 0.0777,1.90764 0.45799,0.66155 1.37374,0.99275 2.16251,0.71287 0.1781,-0.0509 0.32966,-0.10245 0.50777,-0.15333 0.0255,-0.0255 0.0522,-0.0259 0.0777,-0.0259 0.0509,0.0764 0.0761,0.12675 0.10154,0.20311 -0.58521,0.20355 -1.09542,0.71354 -1.22263,1.32419 -0.10175,0.45799 -0.025,0.94099 0.25488,1.34809 0.17811,0.25444 0.40711,0.43277 0.68699,0.58543 0.12722,0.10175 0.28099,0.17852 0.4082,0.25488 0.0764,0.0509 0.17654,0.10043 0.2529,0.15133 -0.68698,0 -1.29676,0.68744 -1.09321,1.39986 -0.66154,0.10175 -1.3233,0.8651 -0.81443,1.60297 1.0432,1.47574 1.40053,3.15548 1.78219,4.83478 -0.9331,4.68377 -0.41268,3.60968 -0.458,6.18287 -0.41961,2.98083 -0.38089,3.62378 -0.71287,6.1072 -0.12723,0.53432 -0.2288,1.04229 -0.33055,1.55119 l -0.77731,2.53264 c -0.23022,1.65513 -0.74155,3.11213 -0.6743,4.69368 -2.35813,6.47019 0.85101,-2.38095 -1.24653,3.48669 l -1.09321,5.87621 c -0.0255,0.83964 -0.38122,1.83195 -0.4321,2.74794 l -0.20512,7.27807 c 0,0.10175 -0.0239,0.20291 -0.0239,0.30466 -0.58521,5.72487 -0.76332,11.45021 -0.45799,17.20053 0.27988,5.5722 1.22041,11.01587 2.69616,16.40998 0.20355,0.73787 1.17045,0.71287 1.60296,0.25488 0.0255,3.00238 0.10114,6.00565 0.30467,8.98258 -0.229,0.76332 -0.45799,1.55097 -0.68699,2.33973 -1.95916,6.71719 -3.84092,13.43593 -5.77466,20.12767 -1.93374,6.7172 -3.8929,13.40761 -5.95386,20.07391 -2.0864,6.76807 -4.1728,13.56182 -6.41186,20.279 -0.55977,1.62841 2.1884,2.51984 2.87538,0.96776 2.97694,-6.6663 5.54523,-13.41004 7.80972,-20.33077 3.46037,-10.48289 6.43863,-21.09278 9.46646,-31.70289 0.50887,3.30771 1.1182,6.59042 1.7543,9.87268 -0.81421,3.12961 -1.57753,6.25811 -2.28995,9.43858 -1.98463,8.8036 -4.37458,17.5313 -6.30832,26.36032 -0.33077,1.39941 1.90741,2.21428 2.46717,0.84033 3.56215,-8.7527 5.08812,-18.19306 6.94552,-27.40375 0.15267,-0.8142 0.35755,-1.62708 0.53565,-2.44128 1.17043,5.69942 2.46829,11.37187 4.02036,16.96953 0.40711,1.3994 2.06051,1.42597 2.95105,0.6372 -2.92605,9.97401 -6.23397,19.84601 -9.74523,29.64192 -0.66154,1.80651 1.93262,3.20591 2.79772,1.37396 4.09647,-8.82904 7.60772,-17.8625 10.53377,-27.07319 0.0509,-0.0509 0.10206,-0.10042 0.12744,-0.15134 1.19587,7.58229 2.44284,15.1639 3.56237,22.74618 -1.65385,4.83434 -3.56259,9.59258 -5.52176,14.32514 -2.79884,6.79353 -5.572,13.56225 -7.88739,20.53388 -0.53432,1.57753 2.11228,2.41563 2.77382,0.93988 3.89292,-8.70181 8.42172,-17.12308 12.0093,-25.95211 0.10175,0.83965 0.22881,1.67929 0.33056,2.51894 -2.23907,4.83434 -4.68124,9.59146 -7.07297,14.37492 -0.48343,0.99227 1.01709,2.01074 1.67863,1.06931 2.06096,-2.87516 3.91903,-5.8262 5.64922,-8.90492 0.15266,-0.27988 0.30532,-0.53454 0.45799,-0.81442 0.73787,6.2592 1.40007,12.5184 1.98528,18.77759 0.38166,3.96925 0.71132,7.96438 0.96577,11.93362 0.12721,2.06096 0.2288,4.1478 0.33055,6.20876 0.0509,0.96687 0.077,1.93197 0.15332,2.8734 0.0764,0.89053 0.48432,1.83305 0.73876,2.69815 0.33077,1.19586 2.08574,0.88943 2.36562,-0.17921 0.22899,-0.89054 0.38213,-1.72908 0.48388,-2.56873 0.68698,0.25445 1.55162,-0.0254 1.80607,-0.91598 1.01775,-3.58759 1.98529,-7.17563 2.90127,-10.78865 0.58521,3.20593 1.34764,6.3873 2.46717,9.44057 0.38166,0.99232 2.11118,0.66044 1.90763,-0.40821 -1.11953,-5.6231 -1.9833,-11.19399 -2.44129,-16.86798 1.50119,-6.41186 2.87406,-12.85008 4.1717,-19.28735 0.30532,4.60533 0.58609,9.21047 0.73876,13.84125 0.20355,5.75032 0.25509,11.52697 1.06929,17.2264 0.78877,5.54678 2.28909,11.22054 5.90211,15.67323 0.78877,0.96686 2.67206,0.20333 2.08684,-1.04343 -3.84202,-8.16748 -4.40199,-17.09763 -4.47835,-25.95211 -0.0255,-2.79882 0.0516,-5.62421 -0.0756,-8.42304 -0.12721,-3.18049 -0.38321,-6.36119 -0.66309,-9.51623 -0.48343,-5.67399 -1.06797,-11.32143 -1.67863,-16.99542 l 1.60297,-9.08414 c 0.94143,-5.31777 1.83218,-10.66054 2.64639,-16.00376 -0.20356,14.07048 -0.22921,28.11594 0.33055,42.16098 0.50888,13.05271 1.85828,26.41076 6.69262,38.70017 0.35622,0.86509 1.65386,0.38122 1.37398,-0.48388 -2.26451,-7.32784 -3.38557,-14.93579 -3.86903,-22.56896 -0.48341,-7.9385 -0.60932,-15.90333 -0.60932,-23.86726 4.19824,-11.11899 7.98894,-22.41452 10.96588,-33.91516 0.17811,9.61779 0.0509,19.23514 -0.458,28.82749 -0.20354,3.91835 -0.45887,7.83605 -0.73875,11.75441 -2.36629,5.95388 -4.83435,11.85664 -7.32785,17.73417 -0.55977,1.3231 1.32419,2.2145 2.01118,0.96776 1.57752,-2.79884 3.07783,-5.6231 4.52812,-8.47281 -0.27988,3.43492 -0.45799,6.89573 -0.68698,10.33066 -0.12723,2.01006 -0.30557,4.01947 -0.35644,6.02954 -0.0509,1.70474 0.28007,3.4347 0.35644,5.13945 0.0509,1.29763 2.0614,1.37418 2.31584,0.12744 0.30533,-1.50119 0.94143,-3.02739 1.14498,-4.55402 0.20356,-1.57752 0.35555,-3.12982 0.53365,-4.70735 0.33077,-3.1296 0.66243,-6.28507 0.96775,-9.41468 0.45799,-4.758 0.76266,-9.51534 0.99166,-14.27336 5.19055,-11.93318 9.38924,-24.27326 12.8496,-36.74077 2.39173,-8.60003 4.32591,-17.35361 5.75077,-26.15721 0.2799,5.01245 0.40582,10.02401 0.38033,15.06191 -0.0509,14.07047 -0.9921,28.16793 -3.0785,42.11119 -0.45799,2.97693 -1.04296,5.90211 -1.47552,8.87904 -0.30532,2.06095 -0.55866,4.1478 -0.96576,6.20875 -0.38166,1.98463 -0.86666,4.09648 -1.57906,5.95388 0.53431,-0.1781 1.04473,-0.356 1.57906,-0.55955 1.01776,-0.38166 2.13618,-0.12678 3.02672,0.48388 0.0764,-0.229 0.12674,-0.4341 0.20311,-0.66309 1.27219,-4.14735 1.70651,-8.44716 2.3935,-12.69629 1.14497,-6.99708 1.98351,-14.01958 2.56872,-21.06754 1.17042,-14.07048 1.45141,-28.2164 0.63721,-42.31232 -0.25444,-4.45268 -0.61088,-8.88036 -1.04343,-13.3076 1.17043,-3.40948 1.98308,-6.94575 2.54284,-10.50789 0.53433,0.20355 1.17109,0.0762 1.5273,-0.58543 1.55208,-2.90061 2.87449,-5.9282 3.96859,-9.03236 0.4071,1.88285 0.76356,3.76481 1.04341,5.6731 0.5089,3.74027 0.86642,7.5825 0.99364,11.3482 0.12722,3.46037 -0.25598,6.99773 -1.57906,10.22911 -0.27989,0.68699 0.56153,1.65408 1.24852,1.04342 3.02785,-2.64616 3.30639,-6.6924 3.12827,-10.4581 -0.20355,-3.96925 -0.73743,-7.98938 -1.34808,-11.90775 -0.53433,-3.38404 -1.29786,-6.71785 -2.18841,-10.00011 0.78877,-2.77338 1.45009,-5.57133 1.93352,-8.42105 0.68698,2.41718 1.29764,4.85934 1.83196,7.30196 0.89054,4.04558 2.13774,8.01594 3.00283,12.08696 0.45799,2.18818 0.83961,4.42569 0.91597,6.66475 0.0509,1.39941 -0.15355,2.77427 -0.28076,4.17368 -0.68699,-0.50887 -1.62797,0.3051 -1.11909,1.01753 0.45798,0.61069 0.86487,1.32221 1.47552,1.7802 0.63609,0.45799 1.37375,0.40887 1.93352,-0.12546 1.70476,-1.62841 1.83265,-4.27545 1.75629,-6.46363 -0.10175,-2.54439 -0.53343,-5.06333 -1.0932,-7.55684 -0.96687,-4.24912 -2.1884,-8.47215 -3.33337,-12.6704 -1.19586,-4.32546 -2.46783,-8.65246 -4.22347,-12.79982 0.43253,-4.47812 0.5341,-8.95603 0.33055,-13.38328 0.0764,0.229 0.15264,0.48389 0.229,0.71288 1.37396,4.30002 2.51784,8.67726 3.25571,13.10449 0.38166,2.28996 0.8412,4.55402 1.12108,6.84397 0.27988,2.28995 1.01688,4.55512 1.55119,6.79418 0.20356,0.8651 1.52597,0.63588 1.67863,-0.12744 0.48344,-2.4935 0.94275,-5.06422 0.76465,-7.60861 -0.17812,-2.34084 -0.40732,-4.70778 -0.81442,-7.02318 -0.81421,-4.60534 -1.9083,-9.23503 -3.43493,-13.56049 -1.55208,-4.45268 -3.40949,-8.82948 -5.49588,-13.07861 -0.20355,-0.48343 -0.458,-0.94186 -0.68699,-1.39985 -1.29764,-6.84441 -3.23093,-13.58661 -5.69899,-20.12568 0.30533,0.38166 0.5843,0.7892 0.86421,1.17086 0.68697,1.32308 1.3222,2.64551 2.00918,3.96859 1.39941,2.7225 3.1046,5.29365 4.3768,8.09248 0.25444,0.50888 0.48387,1.04276 0.71287,1.57708 0.33077,1.09408 0.63631,2.18795 0.81442,3.30748 0.10175,0.73787 0.20332,1.47597 0.33055,2.18841 0,0.33076 -0.0259,0.73656 -0.0259,0.83831 -0.0509,0.53432 0.1779,0.96819 0.55955,1.22264 0.0764,0.20355 0.15313,0.40578 0.25488,0.60933 0.35621,0.71245 1.29745,0.76455 1.70452,0.0777 0.40711,-0.68698 0.66131,-1.42552 0.78854,-2.21428 0.89053,-1.88284 0.10244,-4.55446 -0.76265,-6.64086 -0.12722,-0.45799 -0.25355,-0.89119 -0.40622,-1.2983 -1.17041,-3.43492 -2.87604,-6.68998 -4.86067,-9.74325 -0.76331,-1.14497 -1.55185,-2.29149 -2.3915,-3.41102 -2.41717,-4.70712 -5.114,-9.61712 -9.49036,-12.4414 -3.51126,-6.94618 -7.6075,-13.63793 -12.23829,-19.922572 -3.40949,-4.656236 -7.02385,-9.185683 -10.84043,-13.536592 -3.84203,-4.401803 -7.96239,-8.598933 -12.61862,-12.186523 -4.78346,-3.663922 -10.07755,-6.84463 -15.90421,-8.600259 -6.46274,-1.933737 -13.27994,-1.984845 -19.81902,-3.562367 -2.72249,-0.661542 -3.58804,3.358153 -0.94187,4.096025 0.10175,0.02545 0.20291,0.05022 0.30466,0.07567 -4.42724,0.305327 -8.52304,2.011839 -12.21241,4.454452 -0.45799,0.305328 -0.91597,0.609105 -1.37396,0.939876 -1.47575,-1.475747 -3.10548,-2.798832 -4.88656,-3.892916 -2.23906,-1.399416 -4.78279,-2.339955 -7.40351,-2.696169 0.30533,-0.356214 0.61065,-0.686764 0.91598,-1.017535 3.86747,-4.096468 8.37059,-7.455503 13.25583,-10.330664 1.47574,-0.890536 -0.0241,-2.976715 -1.52531,-2.16251 -5.34321,2.900604 -10.50943,6.412083 -14.60591,10.890209 -0.73787,0.788762 -1.45007,1.62841 -2.1625,2.518946 -0.30533,0.02544 -0.63654,0.07656 -0.94187,0.127441 0.4071,-0.865093 0.81443,-1.731512 1.27242,-2.596605 1.83195,-3.46037 3.89313,-6.767413 6.5393,-9.693462 0.89053,-0.992311 -0.63566,-2.212734 -1.57708,-1.322197 -2.95149,2.798829 -5.34343,5.977545 -7.22628,9.514248 -0.81421,1.552078 -1.65364,3.104376 -2.39152,4.707342 -0.48342,-1.602966 -1.17129,-3.180487 -1.88372,-4.579901 -2.11184,-4.198244 -4.96046,-8.828148 -9.43859,-10.939991 -0.1304,-0.06043 -0.25917,-0.09505 -0.38431,-0.107529 z m 56.0799,18.096584 c 2.64617,0.432547 5.31755,0.916423 7.88739,1.628852 -0.20352,0.330771 -0.30427,0.685216 -0.27878,1.04143 0.0764,1.043201 0.9412,1.603854 1.93352,1.654739 10.53377,0.534321 17.93837,9.057796 22.92538,17.276186 3.20593,5.292329 5.87666,10.916533 8.42105,16.666849 -2.4935,-4.605337 -5.34233,-9.059789 -8.65004,-13.156254 -4.09648,-5.037895 -8.67614,-9.719573 -12.92528,-14.655687 -1.17041,-1.373971 -3.51259,0.128325 -2.36761,1.553184 2.74794,3.384039 5.67444,6.66542 8.49871,10.024014 -0.96687,-0.686987 -1.95918,-1.296541 -2.97694,-1.881749 -0.76332,-0.890536 -1.55141,-1.730625 -2.36561,-2.54483 -0.0254,-0.02544 -0.0263,-0.02632 -0.0518,-0.05177 -1.04321,-1.0432 -2.11229,-2.03463 -3.23182,-2.925163 -0.20356,-0.279884 -0.40621,-0.560429 -0.63521,-0.840312 -0.25443,-0.279879 -0.55888,-0.355548 -0.86421,-0.304663 -0.61065,-0.432546 -1.22175,-0.864872 -1.85784,-1.246531 -3.66392,-4.885228 -8.04138,-9.643014 -13.46093,-12.238293 z m -39.0566,0.864208 c 0.35621,0 0.73897,-0.02545 1.09519,0 0.1781,0 0.32966,0.02589 0.50777,0.02589 h 0.0518 c 0.25444,0.02545 0.48432,0.05067 0.73876,0.101555 0.53432,0.07633 1.09255,0.177886 1.62687,0.33055 0.22899,0.05089 0.48387,0.126777 0.71287,0.203109 0.1272,0.02545 0.25468,0.05266 0.35642,0.103545 1.06865,0.407102 2.08574,0.889873 3.05261,1.449638 0.61067,0.356215 0.86553,0.533218 1.17086,0.736768 0.43255,0.305328 0.83944,0.636982 1.24654,0.967752 0.48343,0.407103 0.94097,0.789204 1.34807,1.170863 -1.09408,0.814204 -2.21184,1.628187 -3.33137,2.391504 -0.43255,-0.228994 -0.89054,-0.432106 -1.37397,-0.661098 -2.51895,-1.195865 -4.65712,-3.027603 -7.15062,-4.223466 -0.43254,-0.203552 -0.86421,-0.382544 -1.3222,-0.509763 0.10175,-0.152664 0.17703,-0.331214 0.27878,-0.483877 0.33077,-0.534322 0.63544,-1.068644 0.99165,-1.602965 z m 30.26717,1.266442 c 1.27498,-0.02117 2.55337,0.108856 3.80331,0.414183 3.28226,0.788761 6.2083,2.695946 8.70181,4.858678 0.48343,0.432546 0.96621,0.866199 1.44964,1.324189 -2.84971,-0.636098 -5.87754,-0.841197 -9.1598,-0.434095 -1.22132,0.152664 -1.77969,1.042978 -1.7543,1.933515 -0.50888,-1.577522 -1.04365,-3.153274 -1.62886,-4.705351 -0.50887,-1.323083 -2.59615,-0.586316 -2.11272,0.736766 1.06864,2.926049 1.98507,5.878646 2.77382,8.881027 -0.20355,-0.178107 -0.40776,-0.383429 -0.61132,-0.561536 -0.10174,-0.381659 -0.17703,-0.736988 -0.27877,-1.093202 -0.15267,-0.58521 -0.9162,-0.585653 -1.27241,-0.254882 -0.0509,-0.05088 -0.12832,-0.100892 -0.17923,-0.177223 -1.17041,-2.28995 -2.49304,-4.452904 -4.32501,-6.310307 -1.14498,-1.144976 -2.82362,0.737209 -1.67864,1.907628 0.43255,0.432546 0.8131,0.890537 1.19476,1.373971 -1.09409,-0.508878 -2.23906,-0.941203 -3.43492,-1.24653 -0.71244,-0.178108 -1.29587,-0.02566 -1.72841,0.33055 -0.55982,-0.814205 -1.11976,-1.628188 -1.73041,-2.391505 1.80651,-1.297639 3.71369,-2.519166 5.77465,-3.333372 1.956,-0.763319 4.07185,-1.21722 6.19681,-1.252504 z m -60.25558,1.017535 c 0.6202,0.01909 1.25086,0.07025 1.89967,0.159301 1.67931,0.228996 3.33249,0.635875 4.88456,1.24653 -0.38166,0.127219 -0.7892,0.253553 -1.17086,0.406216 -0.30533,0.12722 -0.61065,0.279884 -0.91597,0.457991 h -0.30467 c -0.30533,0.02545 -0.63654,0.05221 -0.94187,0.07766 -1.62842,-0.966868 -3.43536,-1.806959 -5.29278,-2.315837 0.61066,-0.03817 1.22173,-0.05094 1.84192,-0.03186 z m 44.95075,6.113172 c 0.10174,0.12722 0.17703,0.229217 0.27877,0.356437 4.65623,6.106536 7.63472,13.002277 9.5939,20.406451 1.65388,6.233758 3.10372,12.974611 1.57708,19.361031 -0.0254,0.1781 -0.025,0.35666 0.0259,0.48388 -0.78876,2.34084 -1.65541,4.65645 -2.49506,6.99729 0.25444,-2.9006 0.0259,-5.80144 -1.34808,-8.37127 0,-0.0509 -0.0259,-0.10042 -0.0259,-0.15133 0.71242,-0.55977 0.99296,-1.90984 0.15332,-2.49505 -0.15266,-2.21362 -0.83941,-4.32391 -0.78854,-6.66475 0.12722,-5.165115 1.3733,-11.324091 -1.5273,-16.005765 -2.44262,-3.943811 -4.88501,-8.497594 -8.11638,-11.983408 0.89053,-0.610654 1.78174,-1.271971 2.67228,-1.933516 z m 18.62427,1.907629 c 0.17811,0.279883 0.43188,0.508436 0.76264,0.661099 -0.15266,0.432547 -0.2022,0.891643 -0.15133,1.324189 -0.20354,-0.661542 -0.40776,-1.323746 -0.61131,-1.985288 z m -11.06744,2.16251 c 2.3154,0.814205 4.37569,2.164058 6.25854,3.741581 0.0764,0.814204 0.17901,1.602784 0.28076,2.3915 -0.78876,-0.83961 -1.6793,-1.526187 -2.74793,-2.035065 -0.63611,-0.279883 -1.2733,-0.179877 -1.78219,0.12545 -0.12721,-0.279883 -0.22921,-0.532553 -0.35643,-0.812435 -0.50888,-1.144975 -1.06754,-2.291498 -1.65275,-3.411031 z m 19.89668,0.07766 c 0.22899,0.07633 0.43211,0.126777 0.6611,0.203109 0.94142,0.305326 1.98529,0.736987 3.13027,1.322197 1.14497,0.559766 2.21295,1.222635 3.28159,1.909619 0.27988,0.152668 0.53411,0.329665 0.78855,0.507772 0.0764,0.05088 0.43409,0.306655 0.43409,0.306655 0.43254,0.330771 0.86377,0.661327 1.29632,1.017539 0.22899,0.178111 0.48386,0.381884 0.71286,0.585432 0.0509,0.585208 0.356,1.143867 1.01754,1.423748 0.15266,0.05087 0.27945,0.128337 0.4321,0.179212 2.31541,3.434925 4.45423,6.995303 6.38797,10.659225 1.11953,3.231377 2.18772,6.488852 3.18005,9.771112 2.31536,7.65861 3.96836,15.46989 5.21511,23.3575 -3.79114,-10.68643 -8.77726,-20.91533 -14.14592,-30.94022 -1.37398,-2.54439 -2.82471,-5.088546 -4.1478,-7.658383 -1.01775,-2.010067 -2.00919,-4.04449 -3.15416,-6.003662 -1.37397,-2.366275 -3.00327,-4.78345 -5.08967,-6.640855 z m -8.04071,0.432103 c 0.25444,0.58521 0.78875,1.094749 1.60297,1.298303 0.20355,0.02545 0.38187,0.100454 0.58543,0.151336 0,0.02545 0.45799,0.203109 0.45799,0.203109 0.229,0.127219 0.45753,0.229216 0.66109,0.356435 0,-0.02545 0.48498,0.305766 0.43411,0.254881 0.76332,0.559766 1.44875,1.196749 2.08485,1.883734 1.17041,1.272198 2.39238,3.179384 3.35925,4.858676 2.18818,3.816585 4.17257,7.785385 6.28442,11.652865 -1.09408,-0.356223 -2.44261,0.280104 -2.97693,1.272419 -0.81421,-1.450306 -1.62796,-2.900612 -2.49306,-4.350908 -2.59527,-4.350909 -5.36822,-8.75159 -8.67593,-12.644507 -0.4071,-1.653874 -0.84076,-3.307933 -1.32419,-4.936343 z m -7.4294,10.533774 c 0.10175,0.254433 0.20442,0.534548 0.28078,0.814428 0.55975,1.628408 0.81398,3.002168 1.01753,4.452464 -0.35622,-1.755624 -0.78943,-3.536705 -1.29831,-5.266892 z m 51.21924,1.628856 c 0.35621,0.432544 0.71109,0.889649 1.06731,1.322193 3.53669,4.452687 6.92251,9.032367 9.95034,13.841254 6.28464,9.94858 11.22031,20.56 14.85878,31.67898 v 0.0239 c -0.63609,0.33078 -1.06975,1.11931 -0.6372,1.93351 0.99232,1.88285 1.93352,3.79269 2.8495,5.70099 2.11184,8.21837 3.3336,16.63942 3.46081,25.13768 -1.14497,-1.6284 -2.46718,-3.1046 -4.07014,-4.37679 -0.99231,-0.78877 -2.21429,0.61043 -1.2983,1.47553 2.31539,2.18818 3.99558,5.01308 5.31866,7.93916 -0.12722,3.35858 -0.48475,6.66608 -0.99364,9.94834 -1.11953,-3.40948 -2.28995,-6.81764 -3.43493,-10.22712 -0.20354,-0.58523 -0.71087,-0.73895 -1.16886,-0.6372 -1.47575,-12.08585 -3.8677,-24.09604 -7.2263,-35.87657 -3.48579,-12.31484 -8.1177,-24.17082 -13.23193,-35.90045 -1.6284,-3.740255 -3.40859,-7.861495 -5.4441,-11.983408 z m -40.45647,1.423748 c 0.55977,0.788756 1.06821,1.578858 1.57708,2.367614 2.90061,4.52902 5.44611,9.235915 7.73605,14.070255 -0.33077,-0.61065 -0.63699,-1.22131 -0.96775,-1.83197 -2.59528,-4.834345 -5.49633,-9.516895 -8.26971,-14.249463 -0.0255,-0.127216 -0.0502,-0.22922 -0.0756,-0.356436 z m -2.51894,0.967754 c 0.0254,0.07636 0.0761,0.126748 0.10154,0.20311 0.0764,0.356222 0.12675,0.736975 0.20311,1.093207 -0.10175,-0.432564 -0.20292,-0.863773 -0.30466,-1.296317 z m 4.3509,7.963058 c 2.72251,5.088777 5.34279,10.254337 7.53096,15.597547 0.6361,1.55209 1.24674,3.12983 1.83195,4.70734 0.27989,4.96156 0.17915,9.94901 -0.0498,14.91057 -0.15266,3.28226 -0.35758,6.58929 -0.53565,9.92246 -1.47576,-11.50066 -3.89182,-22.82362 -6.46165,-34.14616 -0.83965,-3.63848 -1.57796,-7.3024 -2.31584,-10.991757 z m 35.11192,5.217097 c 3.89291,7.32784 6.59063,15.26524 8.85514,23.17829 1.8574,6.64086 3.46015,13.30738 4.68146,20.05001 -0.12722,-0.45799 -0.279,-0.94186 -0.40622,-1.39986 -0.22899,-0.76331 -0.81554,-1.11909 -1.45163,-1.11909 -1.88285,-13.07816 -4.93567,-26.10499 -10.50789,-38.21628 -0.38166,-0.81421 -0.76377,-1.65338 -1.17086,-2.49307 z m -24.52637,0.45799 c 0.66154,1.09408 1.29609,2.18841 1.85585,3.33338 -0.10175,-0.0764 -0.22721,-0.15423 -0.35444,-0.20511 -0.48343,-1.0432 -0.9671,-2.08507 -1.50141,-3.12827 z m 16.71664,3.51059 c 0.78877,1.95919 1.52576,3.91904 2.23818,5.87821 1.65385,4.55447 3.35969,9.10803 4.98811,13.68793 0.10175,0.50888 0.17703,1.01843 0.27877,1.52731 1.98462,11.2462 3.13025,22.61939 4.04625,33.99281 1.14498,14.29948 1.67885,28.6505 0.89009,42.97542 -0.0509,1.01775 -0.10083,2.00895 -0.17722,3.02671 0.61065,-11.55153 0.3301,-23.20505 -0.61132,-34.7057 -0.68699,-8.60004 -1.83307,-17.17506 -3.61414,-25.67333 0.15262,-1.88285 0.17893,-3.76482 0.0518,-5.6731 -0.0509,-0.83965 -0.48408,-1.42552 -1.0693,-1.7563 -1.19586,-9.33791 -2.92473,-18.62493 -5.41823,-27.7084 -0.50887,-1.85741 -1.04318,-3.71415 -1.60296,-5.57156 z m -13.61227,2.49307 c 0.99232,2.2645 1.85719,4.60667 2.62051,6.94751 -0.8142,-1.98463 -1.62996,-3.96922 -2.49505,-5.95388 -0.0509,-0.33076 -0.0746,-0.66286 -0.12546,-0.99363 z m -16.66685,2.8256 c 0.0764,0.45799 0.15263,0.93987 0.229,1.39786 2.2645,13.73971 3.68935,27.58207 3.89291,41.49988 0.20355,13.43438 -0.61088,26.86898 -2.4174,40.20158 -0.78876,5.82665 -1.78018,11.62742 -2.92516,17.37774 -0.48344,-6.10654 -0.94233,-12.23896 -1.42573,-18.34549 -0.17813,-2.18818 -0.35511,-4.40091 -0.50778,-6.58909 2.36628,-13.71426 4.40091,-27.48073 6.13109,-41.29677 0.12722,-0.96687 -0.38095,-1.90806 -1.44964,-2.16251 -0.89051,-0.20355 -2.08664,0.40711 -2.18839,1.37398 -0.58522,5.67399 -1.24697,11.34929 -1.9594,17.02329 0,-6.64087 -0.22877,-13.28326 -0.78854,-19.89868 0.0764,-1.37397 0.12675,-2.77184 0.20311,-4.1458 1.19586,-6.36098 2.39129,-12.74894 2.95105,-19.21169 0.20357,-2.41717 0.28027,-4.83258 0.25488,-7.2243 z m 21.95764,0.76265 c 3.00238,6.53908 5.69988,13.22994 7.81172,20.09979 1.55208,4.98701 2.82427,10.0249 3.89292,15.11368 -0.38166,4.35091 -1.42553,8.6507 -2.44329,12.92527 -0.10174,-1.11953 -0.20333,-2.23774 -0.33055,-3.35725 -0.10174,-1.14501 -0.20289,-2.31586 -0.30466,-3.46083 0.71245,-3.00238 1.2983,-6.03086 1.7563,-9.08412 0.15266,-1.11954 -0.43255,-2.18686 -1.60296,-2.44129 -0.50888,-0.10175 -1.0952,-0.002 -1.55319,0.25288 -0.48344,-3.10415 -1.04299,-6.18175 -1.70453,-9.20958 -1.37397,-6.56452 -3.05216,-13.12993 -5.08766,-19.51635 -0.15267,-0.45799 -0.28143,-0.88965 -0.4341,-1.3222 z m -29.51448,18.47294 c 0.0254,0.0509 0.0259,0.0745 0.0259,0.12544 0.15266,1.32309 0.30488,2.62206 0.4321,3.97058 -0.22899,1.24676 -0.48387,2.49284 -0.71287,3.73958 -0.68699,3.46038 -1.29701,6.94642 -1.90762,10.43223 0.45797,-6.10653 1.22107,-12.18674 2.1625,-18.26783 z m 24.70558,2.44128 c 1.4503,6.00476 2.49416,12.08651 3.13026,18.24394 0.68699,6.71719 1.11976,13.45916 1.27242,20.22723 -0.50887,2.01008 -1.01755,4.02147 -1.47553,6.03153 -3.10416,13.61249 -4.4779,27.63142 -4.91044,41.52378 -0.15263,5.57222 -0.17795,11.1181 -0.10155,16.66487 -0.38165,1.65384 -0.76375,3.30837 -1.17086,4.96223 v -3.20594 c 0.0255,-14.47759 -0.0261,-28.95581 0.30466,-43.4334 0.30533,-14.45213 0.94209,-28.87727 1.7563,-43.30396 0.33076,-5.90299 0.83853,-11.80728 1.19475,-17.71028 z m 4.35091,0.58543 c 1.04321,3.38403 1.98462,6.79462 2.74794,10.255 0.76332,3.46036 1.37441,6.94485 1.85785,10.45611 -0.25444,1.09409 -0.53455,2.21339 -0.81443,3.30749 -0.45799,-5.54677 -1.14475,-11.06654 -2.16251,-16.51154 -0.48344,-2.51894 -1.01819,-5.039 -1.62885,-7.50706 z m 21.88197,2.26407 c 2.0864,11.22075 2.84972,22.56962 3.89292,33.94304 0.55977,6.28464 1.22086,12.56906 1.34808,18.87915 0.12721,6.20831 -0.279,12.34096 -1.3222,18.47294 -0.17811,1.14497 1.52575,1.78063 2.00918,0.6611 3.56215,-8.1166 3.56348,-17.50518 3.2836,-26.207 -0.20355,-6.23376 -0.58477,-12.44184 -0.8901,-18.65015 -0.10174,-1.85741 -0.20377,-3.68981 -0.35643,-5.52178 1.11953,4.24913 2.1614,8.52327 3.12827,12.79785 0.55976,10.33022 0.43298,20.73654 -0.4321,31.01588 -0.48344,5.8012 -1.34808,11.60331 -2.95105,17.22641 -0.76332,2.69705 -1.62885,5.36932 -2.77383,7.93916 -1.14497,2.54439 -2.56939,4.96134 -3.86703,7.4294 -0.68699,1.32306 1.17063,2.41561 2.18839,1.39786 2.3154,-2.34084 3.9686,-5.26601 5.34256,-8.19205 1.34853,-2.82427 2.46828,-5.7751 3.33337,-8.77748 0.0509,-0.229 0.12635,-0.458 0.17723,-0.68699 -2.46806,15.16456 -6.05388,30.2006 -9.97224,45.03437 -0.17811,0.6361 0.93987,0.99254 1.16887,0.35643 4.55445,-13.00183 8.67792,-26.25677 11.42585,-39.76747 -0.53432,3.20594 -1.12064,6.41186 -1.78218,9.61779 -2.62072,12.79828 -6.08153,25.44278 -10.33066,37.83396 -0.55976,1.62841 -1.14519,3.28205 -1.7304,4.91046 0.27989,-10.05035 0.20443,-20.09936 -0.17722,-30.1497 -0.15267,-3.61303 -0.33012,-7.25327 -0.53367,-10.86631 0.96687,-4.88523 1.75452,-9.79567 2.33973,-14.75724 1.6793,-14.14681 1.90808,-28.3945 1.24654,-42.54131 -0.58521,-12.74738 -1.67952,-25.52133 -3.33337,-38.1924 -0.12722,-1.06863 -0.27944,-2.13728 -0.43211,-3.20592 z m -56.51001,1.39986 c -0.10175,0.91597 -0.2288,1.85784 -0.33054,2.77382 -0.12722,1.09408 -0.25469,2.1875 -0.35644,3.2816 -0.25443,-0.0255 -0.53565,-1.6e-4 -0.76465,0.10154 0.43256,-1.95917 0.89054,-3.89269 1.37397,-5.82642 0.0255,-0.10175 0.0522,-0.22881 0.0777,-0.33056 z m 20.32879,2.03506 c 0.35622,3.02783 0.68699,6.08265 0.91598,9.13591 0.58517,7.73495 0.66219,15.49555 0.61131,23.25595 -0.10175,15.5971 -1.04364,31.16722 -2.08683,46.73889 -0.81421,11.98408 -1.85807,23.96858 -4.27524,35.74911 -0.83965,-9.00714 -1.62686,-18.01429 -2.31385,-27.02142 5.47044,-23.02674 8.34561,-46.63821 8.01483,-70.27559 -0.10175,-5.87757 -0.38276,-11.73075 -0.8662,-17.58285 z m -22.2623,6.48953 c 0.66154,4.37634 0.45821,8.8027 0.12744,13.22994 -0.38166,4.88523 -0.71398,9.74456 -0.89209,14.6298 -0.10175,2.8497 -0.27988,5.67487 -0.45799,8.52459 -0.10175,0.33076 -0.17655,0.63697 -0.25288,0.96774 0.1272,-4.24913 0.17655,-8.49958 -0.20511,-12.67238 0.43255,-4.68167 0.58522,-9.3368 0.91598,-14.01848 0.25444,-3.51126 0.53521,-6.99818 0.73876,-10.484 0,-0.0509 0.0259,-0.12634 0.0259,-0.17721 z m -6.13309,10.45611 c -0.10174,2.74793 -0.0766,5.52175 0.10155,8.2697 -0.53431,0.55976 -0.71176,1.3742 -0.53365,2.18841 1.29763,6.05564 1.01775,12.36485 0.91597,18.49683 v 0.8662 c -1.3994,-9.92316 -1.34896,-19.89805 -0.48387,-29.82114 z m 13.58837,6.86985 c -0.10185,5.34323 -0.10196,10.68644 0.10154,16.02965 0.0255,0.99232 0.0766,1.98463 0.12744,2.97694 -0.25443,3.15504 -0.56087,6.28553 -0.8662,9.44057 -0.10174,-0.94142 -0.20241,-1.85784 -0.27877,-2.77382 -0.48344,-4.987 -0.86553,-9.97334 -1.17086,-14.96035 0.76332,-3.56214 1.4253,-7.1254 2.08684,-10.71299 z m 34.80725,3.15615 c 0.30528,6.00476 0.27946,12.00974 -0.0259,17.98906 -0.229,4.09646 -0.38232,8.19315 -0.84031,12.26418 -0.33078,3.1296 -0.78943,6.28375 -1.52731,9.33702 0.89054,-9.08347 1.3238,-18.19328 1.29831,-27.30219 -0.0255,-2.62072 -0.0511,-5.26666 -0.12744,-7.88738 0.4071,-1.47574 0.81554,-2.92495 1.22263,-4.40069 z m 6.66476,2.82361 c 0.76331,6.38642 1.52774,12.7735 2.24016,19.15992 -0.0509,2.34084 -0.12725,4.70624 -0.22899,7.04707 -0.27988,7.14974 -0.78987,14.30013 -1.0952,21.44987 -0.0764,1.29763 2.13773,1.39963 2.31584,0.12744 0.30533,-2.03551 0.58544,-4.09757 0.81442,-6.13308 10e-6,0.15266 -0.0259,0.28143 -0.0259,0.43409 -0.76332,12.23852 -3.12828,24.40069 -7.47918,35.95223 -0.55977,1.50119 1.42441,2.46718 2.26407,1.09319 3.43492,-5.64852 5.64855,-11.8564 7.09884,-18.29371 0.0255,0.0764 0.0259,0.17702 0.0259,0.27877 -2.41718,14.37581 -6.00476,28.54873 -10.30478,42.51742 0.0254,-2.56983 0.0498,-5.14032 0.0498,-7.71016 0.0255,-14.3758 0.43255,-28.72505 0.68699,-43.10085 0.10175,-5.57222 0.20379,-11.14487 0.35643,-16.74254 0.43255,-5.90298 0.76332,-11.83164 0.91598,-17.76006 0.229,-2.59528 0.45733,-5.21644 0.76266,-7.81172 0.40709,-3.5367 0.94142,-7.02206 1.60297,-10.50788 z m 34.2477,6.76829 c 1.06864,3.28227 2.16339,6.56498 3.13026,9.87268 -0.76332,3.68937 -1.75519,7.32697 -2.95105,10.93999 0.61066,-6.94618 0.45688,-13.86648 -0.17921,-20.81267 z m -46.9181,16.89387 c -0.43256,7.73494 -1.22064,15.4201 -2.36562,23.07872 0.40711,-7.73495 1.16975,-15.44556 2.36562,-23.07872 z m -33.86539,3.08048 c 0.50887,5.216 1.06909,10.40612 1.85785,15.54578 0.10175,0.58522 0.17703,1.19543 0.27878,1.80607 -0.0509,0.40711 -0.10245,0.83988 -0.15333,1.27242 -0.0509,0.53433 0.17944,0.96663 0.53565,1.24653 0.94143,6.08108 1.93351,12.13696 2.84949,18.21805 -0.5852,-2.54439 -1.06886,-5.11488 -1.50141,-7.71017 -1.19586,-7.20061 -2.62095,-14.32513 -4.24935,-21.42398 -0.0509,-0.22899 -0.10246,-0.45754 -0.15333,-0.6611 0.22899,-0.0509 0.45928,-0.22832 0.53565,-0.53365 0.30537,-1.14497 0.0768,-2.41783 0.0259,-3.58825 -0.051,-1.29764 -0.0514,-2.56939 -0.0259,-3.86703 z m 6.66675,7.55684 c 0.35621,5.19056 0.71154,10.38112 1.0932,15.57167 -0.27988,-2.11185 -0.53411,-4.25069 -0.78855,-6.38798 -0.25444,-2.06096 -0.5082,-4.14624 -0.76264,-6.23264 0.15266,-0.99232 0.30532,-1.95874 0.45799,-2.95105 z m 31.77854,9.74523 c -0.76331,8.42194 -1.73085,16.79253 -2.90128,25.16357 -0.91595,6.51364 -1.93307,13.00227 -3.0526,19.49047 -0.45799,-5.445 -0.8403,-10.89176 -1.0693,-16.3622 1.98463,-7.93849 3.53647,-15.97765 4.68145,-24.09426 0.91597,-1.29764 1.70564,-2.72184 2.34173,-4.19758 z m -16.3861,27.27432 v 2.49504 c 0,4.5799 0.0252,9.18371 0.10155,13.7636 -0.61066,1.9083 -1.22175,3.84247 -1.85784,5.75077 -1.0941,3.25681 -2.26385,6.46363 -3.5106,9.66956 -0.15266,-1.39941 -0.279,-2.79971 -0.40622,-4.17369 2.0864,-6.8444 3.66305,-13.81537 4.75712,-20.91421 0.33078,-2.18818 0.6361,-4.37746 0.91598,-6.59107 z m 6.31032,12.08694 c 0.15266,2.9515 0.35642,5.90166 0.58542,8.85316 0.27988,3.68937 0.58477,7.35418 0.8901,11.04353 -0.61066,3.23138 -1.24564,6.48797 -1.88174,9.71935 -0.48343,2.44261 -0.9682,4.88522 -1.45163,7.32784 0,-2.97694 0.0259,-5.95387 0.0259,-8.9308 0,-7.48051 3.7e-4,-14.93513 0.0259,-22.41563 0.48344,-1.4503 0.96577,-2.90062 1.42376,-4.35091 0.12721,-0.40711 0.2551,-0.83943 0.38232,-1.24654 z m -5.97977,16.51354 c 0.10175,5.49588 0.20491,10.96587 0.30666,16.46175 0.10175,6.10654 0.30445,12.23895 0.86421,18.34551 -1.14497,5.67397 -2.23906,11.37165 -3.20593,17.07108 -0.10175,-2.84972 -0.22966,-5.69877 -0.38232,-8.54849 -0.0764,-1.11953 -0.12675,-2.23972 -0.20311,-3.35926 0.33076,-0.25444 0.53525,-0.66132 0.50976,-1.24653 -0.58521,-9.46512 -1.65453,-18.8537 -2.67227,-28.26795 1.70474,-3.43492 3.30726,-6.91942 4.783,-10.45611 z"
+	   style="fill:#9497a2;stroke-width:0.254439;fill-opacity:1"
+	   id="path83" /><path
+	   style="fill:#474e62;stroke-width:0.254439;fill-opacity:1"
+	   inkscape:connector-curvature="0"
+	   id="path85"
+	   d="m 524.32789,70.525706 c -0.86509,0.254439 -1.73018,-0.508878 -1.57752,-1.424858 0.20355,-1.272195 0.89054,-2.366283 1.47574,-3.485815 0.63611,-1.221307 1.37398,-2.41717 2.0864,-3.613034 1.39942,-2.366283 2.84972,-4.707121 4.45269,-6.971629 3.25682,-4.554458 7.37873,-8.371043 12.95095,-9.999453 1.50119,-0.432546 2.21361,1.602966 0.8142,2.213619 -4.78345,2.060957 -8.52371,5.928429 -11.34798,10.101229 -1.47575,2.162732 -2.74794,4.452683 -4.02014,6.717191 -0.71242,1.272195 -1.42486,2.747941 -2.31539,4.071024 0.5852,-0.457991 1.17042,-0.890537 1.70474,-1.246752 0.25444,-0.178107 0.53432,-0.356214 0.81421,-0.508878 0.48343,-2.747941 2.13728,-5.037892 3.9438,-7.17518 1.80652,-2.162731 3.96925,-4.020136 6.28464,-5.648546 4.57991,-3.205931 9.74502,-5.572214 14.85924,-7.862165 1.42486,-0.636097 2.64617,1.679297 1.24675,2.417171 -4.68168,2.41717 -9.3379,4.910672 -13.51071,8.09116 -2.0864,1.577522 -4.04558,3.333151 -5.77577,5.292331 -0.53431,0.610654 -1.01775,1.221308 -1.47574,1.882849 1.17042,-0.585209 2.34084,-1.119532 3.51126,-1.679297 6.41187,-3.027825 13.66338,-5.521327 20.864,-5.34322 1.75563,-0.890537 3.5367,-1.653854 5.44499,-2.213619 4.50358,-1.348527 9.36336,-1.50119 13.91782,-0.254439 2.51894,0.686985 1.67929,4.529014 -0.8651,3.892917 -3.9438,-0.992312 -7.86217,-0.814205 -11.72964,0.356215 0.10175,0.686985 -0.38166,1.424858 -1.24674,1.450302 0.78875,0.381658 1.55207,0.839649 2.28994,1.348527 0.38166,0.254439 0.50888,0.636097 0.45799,1.017756 2.90061,-0.101779 5.82666,0.05088 8.72726,0.508878 10.88999,1.679297 20.35513,7.785834 29.33682,13.612486 0.83965,0.559766 1.32308,1.501191 0.81421,2.468059 -0.43256,0.814205 -1.6793,1.348526 -2.51895,0.788761 -8.44738,-5.470439 -17.40363,-10.584663 -27.47942,-12.442068 -3.56214,-0.661541 -7.22606,-0.78876 -10.86454,-0.45799 8.06572,5.521327 14.91012,12.442067 20.71134,20.25334 6.94618,9.33792 12.34029,19.719032 17.37818,30.125582 5.82665,12.1113 10.17756,24.90958 12.74739,38.06408 2.62072,13.43438 3.5367,27.22497 1.14498,40.78657 -0.99232,5.62311 -2.56983,11.0681 -4.55446,16.43676 -1.52664,4.12191 -3.58759,8.49827 -7.86216,10.50834 -1.06865,0.50887 -1.78107,-1.0941 -0.91599,-1.73019 3.86748,-2.87517 5.0379,-8.32016 6.0811,-12.67107 1.57752,-6.58997 2.74794,-13.15449 3.28226,-19.92257 1.06865,-13.38349 -0.53432,-27.12319 -3.68937,-40.17592 -3.0787,-12.6965 -7.96393,-24.78236 -13.81603,-36.48656 -5.06334,-10.12666 -10.661,-20.075227 -17.98884,-28.853376 -3.43493,-4.121913 -7.3024,-7.913055 -11.55153,-11.27165 13.63792,19.490028 21.42376,42.491316 26.13089,65.492606 2.49349,12.16218 3.76569,24.52792 3.48581,36.91909 -0.27988,12.44207 -2.39173,24.75693 -6.46276,36.56289 -0.63609,1.88285 -3.66392,1.39941 -3.18048,-0.6361 3.25682,-13.43437 5.08878,-27.25042 5.06334,-41.041 0,-13.84149 -2.0864,-27.50487 -5.34322,-40.93924 -5.03789,-20.99122 -12.77284,-41.37179 -25.851,-58.775416 -0.55978,-0.763317 -0.40711,-1.526634 0.10174,-2.060956 -2.41717,0.483434 -4.78346,1.170419 -7.20062,1.62841 -0.40711,0.07633 -0.78877,0.152663 -1.19587,0.228994 0.43255,0.02545 0.83966,0.178108 1.14497,0.508878 16.81843,18.294163 26.538,41.27001 30.78713,65.28905 2.31539,13.20539 3.00238,26.76699 2.95149,40.15048 -0.0255,7.22607 -0.4071,14.45213 -1.17042,21.62731 -0.0764,0.71244 -0.15267,1.39941 -0.229,2.11185 -0.0254,0.20355 -0.0509,0.4071 -0.0764,0.61065 0,0.0509 0,0.10175 -0.0255,0.12722 0,0.0255 0,0.0509 0,0.0764 -0.10175,1.01775 -0.17811,2.03552 -0.25444,3.07871 -0.1781,2.34085 -0.38166,4.68168 -0.66154,6.99707 -0.48344,4.24914 -1.34853,8.37105 -2.92605,12.3403 -1.47574,3.66392 -3.7657,6.79352 -7.50595,8.44738 -1.37397,0.61065 -2.79883,-1.39943 -1.65386,-2.41718 3.00238,-2.62072 4.6308,-6.41186 5.6231,-10.15211 1.11954,-4.30002 1.67931,-9.18526 2.03552,-13.25627 0.45799,-5.24145 1.06864,-10.48289 1.42486,-15.72433 0.48344,-7.1243 0.5852,-14.29948 0.4071,-21.42377 -0.30532,-12.9255 -1.17042,-25.92734 -3.84203,-38.5984 -2.46806,-11.67875 -6.36097,-23.1285 -11.93319,-33.764053 -4.24913,-8.116609 -9.51601,-15.775222 -15.67344,-22.619631 -0.73787,-0.814205 -0.96687,-1.933737 -0.15266,-2.798829 0.15266,-0.178108 0.35621,-0.305327 0.5852,-0.432547 -0.43254,0.07633 -0.86508,0.152664 -1.29764,0.228996 -0.78875,0.101779 -1.57752,0.178107 -2.36628,0.330771 -1.17041,1.043199 -2.31539,2.111844 -3.38404,3.282262 -1.09408,1.221308 -2.03551,2.569835 -3.18048,3.71481 -1.17043,1.17042 -2.92605,0.178107 -2.77339,-1.348527 0.35622,-3.485814 3.51126,-6.513638 5.97932,-8.803589 2.11185,-1.959181 4.47812,-3.663922 6.92074,-5.266888 -1.4503,0.330771 -2.84972,0.737873 -4.22369,1.221308 -6.41187,2.264507 -12.13674,6.106536 -17.20007,10.482886 -0.53432,0.457991 -1.22131,0.279884 -1.6793,-0.152662 -1.0432,1.094087 -1.85741,2.468058 -3.02783,3.434926 -0.61065,0.508878 -1.67929,0.101779 -1.90829,-0.610654 -0.50888,-1.755629 0.25444,-3.511258 1.50119,-5.037892 z m 34.70548,-7.658614 c 1.62842,-0.33077 3.28226,-0.585209 4.93612,-0.763317 -1.32308,-0.610654 -2.69706,-1.017756 -4.12192,-1.272195 -1.29763,0.763317 -2.56982,1.577522 -3.84202,2.366283 -0.33077,0.203551 -0.66154,0.432546 -1.01776,0.661541 1.34853,-0.356215 2.67162,-0.712429 4.04558,-0.992312 z" /><path
+	   style="fill:#474e62;stroke-width:0.254439;fill-opacity:1"
+	   inkscape:connector-curvature="0"
+	   id="path87"
+	   d="m 532.19006,47.906078 c 1.42486,-1.348527 3.74025,0.534322 2.36628,2.010068 -2.13728,2.289952 -4.30002,4.579903 -6.13198,7.124293 -1.90829,2.646165 -3.25682,5.572214 -4.50357,8.549151 -0.45799,1.094088 -2.06095,0.636097 -2.18817,-0.407103 -0.81421,-7.124292 5.72487,-12.747394 10.45744,-17.276409 z" /><path
+	   style="fill:#474e62;stroke-width:0.254439;fill-opacity:1"
+	   inkscape:connector-curvature="0"
+	   id="path89"
+	   d="m 535.49777,71.568906 c 2.72249,-2.798829 6.10653,-4.910673 9.66868,-6.615414 3.63848,-1.730185 7.48051,-3.053268 11.42431,-3.943805 1.95918,-0.45799 3.96925,-0.712429 5.97932,-0.91598 0.86508,-0.07633 1.73018,-0.12722 2.59527,-0.203552 0.76332,-0.05088 1.78108,0.07633 2.46806,-0.152663 1.14498,-0.381659 2.36629,0.45799 2.44262,1.602966 0.0764,1.094088 -1.06865,2.21362 -2.23906,1.857405 -0.58522,-0.178108 -1.32309,0 -1.95919,0.05088 -0.86509,0.07633 -1.73018,0.178108 -2.56983,0.330771 -1.62841,0.279883 -3.23138,0.712429 -4.85979,1.094088 -3.56214,0.839649 -7.0734,2.010069 -10.35567,3.613033 -3.1296,1.501191 -6.15741,3.460371 -8.65092,5.67399 -2.69705,2.391728 -4.50357,5.34322 -6.51364,8.243825 -0.66154,0.966867 -2.41717,0.330775 -2.41717,-0.788757 0.0764,-3.842033 2.36629,-7.124297 4.98701,-9.846794 z" /><path
+	   style="fill:#474e62;stroke-width:0.254439;fill-opacity:1"
+	   inkscape:connector-curvature="0"
+	   id="path91"
+	   d="m 529.722,66.709121 c 1.67929,-2.595278 3.7657,-4.885229 6.05565,-6.971629 4.73257,-4.249131 10.27934,-7.480507 15.80066,-10.610106 1.98462,-1.119533 3.9947,1.755628 1.98462,2.900604 -5.13966,2.951493 -10.38111,5.953873 -14.80835,9.872234 -2.0864,1.831961 -4.02013,3.892916 -5.57221,6.182868 -0.83965,1.221307 -1.57752,2.518946 -2.26451,3.816585 -0.73787,1.348527 -1.27219,2.773385 -2.13729,4.071024 -0.55976,0.839649 -2.06095,0.788761 -2.13728,-0.407103 -0.15267,-3.078711 1.39941,-6.284643 3.07871,-8.854477 z" /></g></svg>
\ No newline at end of file
diff --git a/resources/vector/hair/eary back.svg b/resources/vector/hair/eary back.svg
index 9e93a8f10a0025db6977ff8b5151e9f1d447474a..9c7d3606c17a00b7e5df871d40299727fb472786 100644
--- a/resources/vector/hair/eary back.svg	
+++ b/resources/vector/hair/eary back.svg	
@@ -13,47 +13,47 @@
    sodipodi:docname="eary back.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
   <metadata
-     id="metadata3176">
-    <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>
+	 id="metadata3176">
+	<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="defs3174" />
+	 id="defs3174" />
   <sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1680"
-     inkscape:window-height="987"
-     id="namedview3172"
-     showgrid="false"
-     inkscape:zoom="1.8985546"
-     inkscape:cx="371.4777"
-     inkscape:cy="354.00771"
-     inkscape:window-x="-8"
-     inkscape:window-y="-8"
-     inkscape:window-maximized="1"
-     inkscape:current-layer="svg3170" />
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1680"
+	 inkscape:window-height="987"
+	 id="namedview3172"
+	 showgrid="false"
+	 inkscape:zoom="1.8985546"
+	 inkscape:cx="371.4777"
+	 inkscape:cy="354.00771"
+	 inkscape:window-x="-8"
+	 inkscape:window-y="-8"
+	 inkscape:window-maximized="1"
+	 inkscape:current-layer="svg3170" />
   <path
-     opacity=".99"
-     fill="#474E62"
-     d="M306.95 38.47l-4.053.677-3.868 2.222-3.766 3.112-3.394 3.487s-2.992 3.764-2.992 4.18c0 .42-3.19 5.44-3.19 5.44l-1.933 5.113-1.16 3.207-.387 3.21-.674 6.785s.576 5.02.576 5.53c0 .512-.186 5.02 0 5.44.195.37.87 3.58.968 3.95 1.996 9.11 2.375 18.14 6.172 26.915 3.42 7.902 8.357 9.375 16.512 10.508 4.05.562 8.852 1.124 12.924.248 4.225-.906 7.496-3.782 10.512-6.762 5.068-5.016 8.22-10.52 9.31-17.534.957-6.14 2.028-12.21 3.794-18.083 1.562-5.19-.05-10.872.394-16.162l-1.487-6.276-3.023-7.67-2.046-4.09-3.53-3.72-4.37-5.207-8.69-3.486-5.485-.976h-3.95l-3.158-.062-.007.002z"
-     id="path2470" />
+	 opacity=".99"
+	 fill="#474E62"
+	 d="M306.95 38.47l-4.053.677-3.868 2.222-3.766 3.112-3.394 3.487s-2.992 3.764-2.992 4.18c0 .42-3.19 5.44-3.19 5.44l-1.933 5.113-1.16 3.207-.387 3.21-.674 6.785s.576 5.02.576 5.53c0 .512-.186 5.02 0 5.44.195.37.87 3.58.968 3.95 1.996 9.11 2.375 18.14 6.172 26.915 3.42 7.902 8.357 9.375 16.512 10.508 4.05.562 8.852 1.124 12.924.248 4.225-.906 7.496-3.782 10.512-6.762 5.068-5.016 8.22-10.52 9.31-17.534.957-6.14 2.028-12.21 3.794-18.083 1.562-5.19-.05-10.872.394-16.162l-1.487-6.276-3.023-7.67-2.046-4.09-3.53-3.72-4.37-5.207-8.69-3.486-5.485-.976h-3.95l-3.158-.062-.007.002z"
+	 id="path2470" />
   <path
-     opacity=".99"
-     fill="#595F6D"
-     d="M334.634 50.138l.772 5.327.093 7.54v9.668l-.19 3.672-.872 2.51-4.836 13.928-1.16 5.507-2.124 3.534s-2.807 1.72-2.807 2.323c0 .558-1.933 3.254-1.933 3.254l-3.763 3.767-1.842 2.324-1.256-3.58-3.19 1.257-1.814-3.672.604 2.882-2.512-5.997-2.51 3.253-2.418-3.02-2.695-3.3-2.228-2.233-3.58-8.692-2.603-5.532-3.488-11.713.093-8.6-1.813-6.46-.28-1.86-.79 1.256-1.95 5.16-1.163 3.205s-.37 3.155-.373 3.16c-.385 3.274-1.126 6.05-1.76 9.246-1.575 7.943 2.604 15.43 2.998 23.487.382 7.82-2.6 15.174-4.656 22.574-1.677 6.036-4.907 11.13 1.154 15.205 12.25 8.234 24.813 7.47 39.002 7.485 5.266.008 10.41-.43 14.942-3.242 3.554-2.204 4.974-5.43 7.55-8.456 3.99-4.685 4.56-7.83 5.493-14.05.606-4.048 1.346-7.635.296-11.64-1.215-4.634-1.612-9.492-1.78-14.305-.373-10.578.32-21.992-3.607-32.06l-2.976-7.67-2.046-4.09-1.988-1.35h.004z"
-     id="path2472" />
+	 opacity=".99"
+	 fill="#595F6D"
+	 d="M334.634 50.138l.772 5.327.093 7.54v9.668l-.19 3.672-.872 2.51-4.836 13.928-1.16 5.507-2.124 3.534s-2.807 1.72-2.807 2.323c0 .558-1.933 3.254-1.933 3.254l-3.763 3.767-1.842 2.324-1.256-3.58-3.19 1.257-1.814-3.672.604 2.882-2.512-5.997-2.51 3.253-2.418-3.02-2.695-3.3-2.228-2.233-3.58-8.692-2.603-5.532-3.488-11.713.093-8.6-1.813-6.46-.28-1.86-.79 1.256-1.95 5.16-1.163 3.205s-.37 3.155-.373 3.16c-.385 3.274-1.126 6.05-1.76 9.246-1.575 7.943 2.604 15.43 2.998 23.487.382 7.82-2.6 15.174-4.656 22.574-1.677 6.036-4.907 11.13 1.154 15.205 12.25 8.234 24.813 7.47 39.002 7.485 5.266.008 10.41-.43 14.942-3.242 3.554-2.204 4.974-5.43 7.55-8.456 3.99-4.685 4.56-7.83 5.493-14.05.606-4.048 1.346-7.635.296-11.64-1.215-4.634-1.612-9.492-1.78-14.305-.373-10.578.32-21.992-3.607-32.06l-2.976-7.67-2.046-4.09-1.988-1.35h.004z"
+	 id="path2472" />
 </svg>
diff --git a/resources/vector/hair/luxurious back.svg b/resources/vector/hair/luxurious back.svg
index 3f57e7fc068b421853540b920892e04788f4dd40..3f70c7636f543439a897ffcdf5c3549ce5961c67 100644
--- a/resources/vector/hair/luxurious back.svg	
+++ b/resources/vector/hair/luxurious back.svg	
@@ -18,34 +18,34 @@
    xml:space="preserve"
    sodipodi:docname="luxurious back.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"><metadata
-     id="metadata10"><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="defs8" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1916"
-     inkscape:window-height="1237"
-     id="namedview6"
-     showgrid="false"
-     inkscape:zoom="2.6700352"
-     inkscape:cx="499.80468"
-     inkscape:cy="857.13839"
-     inkscape:window-x="71"
-     inkscape:window-y="53"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="Layer_1" /><style
-     type="text/css"
-     id="style2">
+	 id="metadata10"><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="defs8" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1916"
+	 inkscape:window-height="1237"
+	 id="namedview6"
+	 showgrid="false"
+	 inkscape:zoom="2.6700352"
+	 inkscape:cx="499.80468"
+	 inkscape:cy="857.13839"
+	 inkscape:window-x="71"
+	 inkscape:window-y="53"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="Layer_1" /><style
+	 type="text/css"
+	 id="style2">
 	.st0{fill:#8D4F21;}
 </style><path
-     id="Hair_Aft_1_"
-     class="st0"
-     d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8  c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"
-     style="fill:#474e62;fill-opacity:1" /></svg>
\ No newline at end of file
+	 id="Hair_Aft_1_"
+	 class="st0"
+	 d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8  c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"
+	 style="fill:#474e62;fill-opacity:1" /></svg>
\ No newline at end of file
diff --git a/resources/vector/hair/luxurious front.svg b/resources/vector/hair/luxurious front.svg
index fb47d04b8038e35ffcdce3626aefc8d96639d4dd..236fa696d82a681ce13b6e4786560d46849fb50f 100644
--- a/resources/vector/hair/luxurious front.svg	
+++ b/resources/vector/hair/luxurious front.svg	
@@ -18,36 +18,36 @@
    xml:space="preserve"
    sodipodi:docname="luxurious front.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"><metadata
-     id="metadata10"><rdf:RDF><cc:Work
-         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
-     id="defs8" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="2066"
-     inkscape:window-height="1295"
-     id="namedview6"
-     showgrid="false"
-     inkscape:zoom="3.776"
-     inkscape:cx="530.72584"
-     inkscape:cy="833.06634"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="Layer_1" /><style
-     type="text/css"
-     id="style2">
+	 id="metadata10"><rdf:RDF><cc:Work
+		 rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+		   rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
+	 id="defs8" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="2066"
+	 inkscape:window-height="1295"
+	 id="namedview6"
+	 showgrid="false"
+	 inkscape:zoom="3.776"
+	 inkscape:cx="530.72584"
+	 inkscape:cy="833.06634"
+	 inkscape:window-x="0"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="Layer_1" /><style
+	 type="text/css"
+	 id="style2">
 	.st0{fill:#5FBA46;}
 </style><path
-     id="Hair_Green"
-     class="st0"
-     d="m 484.6,101.6 c 5.1,7.6 15,14 52.5,7.3 18.7,5.2 -3.22627,34.98686 1.1,61 -1.3,19.3 -8.32966,31.10339 3.87542,64.21186 45.96653,116.2428 0.97755,-29.20296 52.38899,-27.16398 C 617.2911,194.93559 594.32373,47.679237 520.2,64.8 c -33,7.1 -33.1,19.4 -35.6,36.8 z"
-     style="fill:#b4b3b7;fill-opacity:1"
-     inkscape:connector-curvature="0"
-     sodipodi:nodetypes="ccccccc" /></svg>
\ No newline at end of file
+	 id="Hair_Green"
+	 class="st0"
+	 d="m 484.6,101.6 c 5.1,7.6 15,14 52.5,7.3 18.7,5.2 -3.22627,34.98686 1.1,61 -1.3,19.3 -8.32966,31.10339 3.87542,64.21186 45.96653,116.2428 0.97755,-29.20296 52.38899,-27.16398 C 617.2911,194.93559 594.32373,47.679237 520.2,64.8 c -33,7.1 -33.1,19.4 -35.6,36.8 z"
+	 style="fill:#b4b3b7;fill-opacity:1"
+	 inkscape:connector-curvature="0"
+	 sodipodi:nodetypes="ccccccc" /></svg>
\ No newline at end of file
diff --git a/resources/vector/hair/messy back.svg b/resources/vector/hair/messy back.svg
index bd8a77ae0ec687976ac4aab55b87553311f1fbb9..ef062126f99486a5779d6be64a1b8e78e7944a40 100644
--- a/resources/vector/hair/messy back.svg	
+++ b/resources/vector/hair/messy back.svg	
@@ -12,26 +12,26 @@
    x="0px"
    id="Layer_1"
    version="1.1"><metadata
-     id="metadata12"><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="defs10" /><style
-     id="style2"
-     type="text/css">
+	 id="metadata12"><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="defs10" /><style
+	 id="style2"
+	 type="text/css">
 	.st0{fill:#010101;}
 	.st1{fill:#F6E0E8;}
 </style><style
-     type="text/css"
-     id="style4546">
+	 type="text/css"
+	 id="style4546">
 	.st0{fill:#F6E0E8;}
 </style><g
-     id="g4566"><g
-       transform="matrix(0.77472067,0,0,0.77472067,111.20814,27.648761)"
-       id="layer2"
-       style="stroke-linecap:round"><path
-         d="m 516.8,47.07 -8.72,1.46 -8.32,4.78 -8.1,6.7 -7.3,7.5 c 0,0 -6.44,8.1 -6.44,9 0,0.9 -6.86,11.7 -6.86,11.7 l -4.16,11 -2.5,6.9 -0.83,6.9 -1.45,14.6 c 0,0 1.24,10.8 1.24,11.9 0,1.1 -0.4,10.8 0,11.7 0.42,0.8 1.87,7.7 2.08,8.5 0.2,0.9 1.46,13.7 1.46,13.7 l 5.2,8.5 5.4,4.8 7.08,5.4 7.48,7.3 2.8,3.6 0.96,4.7 1.36,4.2 0.75,3.6 -0.34,4.2 -0.9,2.6 -1.2,3.2 -2.8,6.4 -3.7,7.9 3.9,-5.5 -0.9,5.1 -0.8,7 3.7,-5.2 2.7,-5.9 0.1,8.4 4.5,-7 1.4,-5.9 v 5.9 l 0.9,7 1,-5.9 1.5,-5.8 2.6,-4.6 0.1,6.9 -0.3,6 2.8,-6.1 2.1,-8.1 0.2,8.5 -0.1,4.1 2.6,-6.3 1.5,10 1.3,-4.2 0.9,4.3 2,6.2 1.8,-9.3 2.7,-8.3 0.2,4.5 1.7,4.6 3.3,-7.5 1.9,7.8 4,-6.8 v 6.2 l 0.5,3.7 3.2,-4.6 1.3,5.1 1.4,5.1 1.7,-9 2.3,-7.8 0.2,5.3 2.3,-7.1 2.2,6.1 1.5,-5.5 1.4,-6.2 0.3,5.7 2.1,-7.8 1.7,-6.2 0.1,5 2,-3.6 2.3,-6.2 2,-5.4 7,-18 4.6,-11.3 -1,8.7 5.7,-13.4 6.2,-13.6 2,-15.3 2.4,-28.8 -3.2,-13.5 -6.5,-16.5 -4.4,-8.8 -7.6,-8 -9.4,-11.2 -18.7,-7.5 -11.8,-2.1 h -8.5 z"
-         id="path5214"
-         style="opacity:0.98999999;fill:#474e62;stroke-width:0.1" /><path
-         d="m 576.35821,72.174527 1.66,11.46 0.2,16.22 v 20.800003 l -0.4,7.9 -1.88,5.4 -10.4,29.96 -2.5,11.85 -4.57,7.6 c 0,0 -6.03,3.7 -6.03,5 0,1.2 -4.16,7 -4.16,7 l -8.1,8.1 -3.96,5 -2.7,-7.7 -6.87,2.7 -3.9,-7.9 1.3,6.2 -5.4,-12.9 -5.4,7 -5.2,-6.5 -5.8,-7.1 -4.8,-4.8 -7.7,-18.7 -5.6,-11.9 -7.5,-25.2 0.2,-18.5 -3.9,-13.900003 -0.6,-4 -1.7,2.7 -4.2,11.1 -2.5,6.900003 -0.8,6.8 -1.4,14.5 c 0,0 1.2,10.8 1.2,11.8 0,1 -0.4,10.8 0,11.6 0.5,0.9 1.9,7.7 2.1,8.6 0.2,0.8 1.5,13.7 1.5,13.7 l 5.2,8.5 5.4,4.8 7.1,5.4 3.3908,7.54172 3.44526,3.38701 1.30335,4.46857 0.14967,4.08753 0.15571,3.57345 0.40879,4.23458 -0.58549,2.65071 -0.14794,3.24979 -1.11059,6.38241 -2.40956,7.92423 4,-5.5 -0.8,5.1 -0.8,6.9 3.8,-5.2 2.7,-5.9 0.1,8.4 4.5,-7 1.5,-5.9 v 6 l 0.9,6.9 1.1,-6 1.6,-5.8 2.6,-4.7 0.1,6.9 -0.3,6 2.8,-6.1 2.1,-8.1 0.2,8.5 -0.1,4 2.6,-6.4 1.6,10 1.3,-4.2 0.9,4.4 1.9,6.23 1.9,-9.35 2.7,-8.3 0.2,4.6 1.7,4.6 3.3,-7.5 2,7.8 4,-6.8 v 6.1 l 0.5,3.8 3.2,-4.6 1.4,5.1 1.4,5.1 1.7,-9 2.3,-7.8 0.2,5.3 2.3,-7 2.2,6 1.6,-5.5 1.4,-6.2 0.3,5.7 2.2,-7.86 1.7,-6.2 0.1,5 2.1,-3.6 2.4,-6.2 2,-5.4 7,-18 4.6,-11.3 -1.1,8.66 5.7,-13.4 6.2,-13.6 2,-15.3 2.4,-28.8 -3.31,-13.37 -6.4,-16.500003 -4.4,-8.8 z"
-         id="path5216"
-         style="opacity:0.98999999;fill:#595f6d;stroke-width:0.1" /></g></g></svg>
\ No newline at end of file
+	 id="g4566"><g
+	   transform="matrix(0.77472067,0,0,0.77472067,111.20814,27.648761)"
+	   id="layer2"
+	   style="stroke-linecap:round"><path
+		 d="m 516.8,47.07 -8.72,1.46 -8.32,4.78 -8.1,6.7 -7.3,7.5 c 0,0 -6.44,8.1 -6.44,9 0,0.9 -6.86,11.7 -6.86,11.7 l -4.16,11 -2.5,6.9 -0.83,6.9 -1.45,14.6 c 0,0 1.24,10.8 1.24,11.9 0,1.1 -0.4,10.8 0,11.7 0.42,0.8 1.87,7.7 2.08,8.5 0.2,0.9 1.46,13.7 1.46,13.7 l 5.2,8.5 5.4,4.8 7.08,5.4 7.48,7.3 2.8,3.6 0.96,4.7 1.36,4.2 0.75,3.6 -0.34,4.2 -0.9,2.6 -1.2,3.2 -2.8,6.4 -3.7,7.9 3.9,-5.5 -0.9,5.1 -0.8,7 3.7,-5.2 2.7,-5.9 0.1,8.4 4.5,-7 1.4,-5.9 v 5.9 l 0.9,7 1,-5.9 1.5,-5.8 2.6,-4.6 0.1,6.9 -0.3,6 2.8,-6.1 2.1,-8.1 0.2,8.5 -0.1,4.1 2.6,-6.3 1.5,10 1.3,-4.2 0.9,4.3 2,6.2 1.8,-9.3 2.7,-8.3 0.2,4.5 1.7,4.6 3.3,-7.5 1.9,7.8 4,-6.8 v 6.2 l 0.5,3.7 3.2,-4.6 1.3,5.1 1.4,5.1 1.7,-9 2.3,-7.8 0.2,5.3 2.3,-7.1 2.2,6.1 1.5,-5.5 1.4,-6.2 0.3,5.7 2.1,-7.8 1.7,-6.2 0.1,5 2,-3.6 2.3,-6.2 2,-5.4 7,-18 4.6,-11.3 -1,8.7 5.7,-13.4 6.2,-13.6 2,-15.3 2.4,-28.8 -3.2,-13.5 -6.5,-16.5 -4.4,-8.8 -7.6,-8 -9.4,-11.2 -18.7,-7.5 -11.8,-2.1 h -8.5 z"
+		 id="path5214"
+		 style="opacity:0.98999999;fill:#474e62;stroke-width:0.1" /><path
+		 d="m 576.35821,72.174527 1.66,11.46 0.2,16.22 v 20.800003 l -0.4,7.9 -1.88,5.4 -10.4,29.96 -2.5,11.85 -4.57,7.6 c 0,0 -6.03,3.7 -6.03,5 0,1.2 -4.16,7 -4.16,7 l -8.1,8.1 -3.96,5 -2.7,-7.7 -6.87,2.7 -3.9,-7.9 1.3,6.2 -5.4,-12.9 -5.4,7 -5.2,-6.5 -5.8,-7.1 -4.8,-4.8 -7.7,-18.7 -5.6,-11.9 -7.5,-25.2 0.2,-18.5 -3.9,-13.900003 -0.6,-4 -1.7,2.7 -4.2,11.1 -2.5,6.900003 -0.8,6.8 -1.4,14.5 c 0,0 1.2,10.8 1.2,11.8 0,1 -0.4,10.8 0,11.6 0.5,0.9 1.9,7.7 2.1,8.6 0.2,0.8 1.5,13.7 1.5,13.7 l 5.2,8.5 5.4,4.8 7.1,5.4 3.3908,7.54172 3.44526,3.38701 1.30335,4.46857 0.14967,4.08753 0.15571,3.57345 0.40879,4.23458 -0.58549,2.65071 -0.14794,3.24979 -1.11059,6.38241 -2.40956,7.92423 4,-5.5 -0.8,5.1 -0.8,6.9 3.8,-5.2 2.7,-5.9 0.1,8.4 4.5,-7 1.5,-5.9 v 6 l 0.9,6.9 1.1,-6 1.6,-5.8 2.6,-4.7 0.1,6.9 -0.3,6 2.8,-6.1 2.1,-8.1 0.2,8.5 -0.1,4 2.6,-6.4 1.6,10 1.3,-4.2 0.9,4.4 1.9,6.23 1.9,-9.35 2.7,-8.3 0.2,4.6 1.7,4.6 3.3,-7.5 2,7.8 4,-6.8 v 6.1 l 0.5,3.8 3.2,-4.6 1.4,5.1 1.4,5.1 1.7,-9 2.3,-7.8 0.2,5.3 2.3,-7 2.2,6 1.6,-5.5 1.4,-6.2 0.3,5.7 2.2,-7.86 1.7,-6.2 0.1,5 2.1,-3.6 2.4,-6.2 2,-5.4 7,-18 4.6,-11.3 -1.1,8.66 5.7,-13.4 6.2,-13.6 2,-15.3 2.4,-28.8 -3.31,-13.37 -6.4,-16.500003 -4.4,-8.8 z"
+		 id="path5216"
+		 style="opacity:0.98999999;fill:#595f6d;stroke-width:0.1" /></g></g></svg>
\ No newline at end of file
diff --git a/resources/vector/hair/neat back.svg b/resources/vector/hair/neat back.svg
index 9db76531b93623a1ca38ee3a78cf3199d93b4e63..319e5ef5690ae00a9660c12d8d69b6330467dcf3 100644
--- a/resources/vector/hair/neat back.svg	
+++ b/resources/vector/hair/neat back.svg	
@@ -18,34 +18,34 @@
    xml:space="preserve"
    sodipodi:docname="neat back.svg"
    inkscape:version="0.92pre3 15195"><metadata
-     id="metadata10"><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="defs8" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1557"
-     inkscape:window-height="879"
-     id="namedview6"
-     showgrid="false"
-     inkscape:zoom="2.6700352"
-     inkscape:cx="499.80468"
-     inkscape:cy="857.13839"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="Layer_1" /><style
-     type="text/css"
-     id="style2">
+	 id="metadata10"><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="defs8" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1557"
+	 inkscape:window-height="879"
+	 id="namedview6"
+	 showgrid="false"
+	 inkscape:zoom="2.6700352"
+	 inkscape:cx="499.80468"
+	 inkscape:cy="857.13839"
+	 inkscape:window-x="0"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="Layer_1" /><style
+	 type="text/css"
+	 id="style2">
 	.st0{fill:#8D4F21;}
 </style><path
-     id="Hair_Aft_1_"
-     class="st0"
-     d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8  c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"
-     style="fill:#474e62;fill-opacity:1" /></svg>
\ No newline at end of file
+	 id="Hair_Aft_1_"
+	 class="st0"
+	 d="M564.6,100.2c13.5,72.4,34.5,66.5,14,103.3c-43.3,47.7-90.1,7-98.1-9.8  c-41.1-23.4-0.3-140.8,48.3-130.3C562.1,70.6,562.1,82.9,564.6,100.2"
+	 style="fill:#474e62;fill-opacity:1" /></svg>
\ No newline at end of file
diff --git a/resources/vector/hair/neat front.svg b/resources/vector/hair/neat front.svg
index 54edbccc97c98b92d824101fc7009251bea91ec2..aae7d09546051b94158a42ca39fd96c3bd403220 100644
--- a/resources/vector/hair/neat front.svg	
+++ b/resources/vector/hair/neat front.svg	
@@ -18,34 +18,34 @@
    xml:space="preserve"
    sodipodi:docname="neat front.svg"
    inkscape:version="0.92pre3 15195"><metadata
-     id="metadata10"><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="defs8" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1342"
-     inkscape:window-height="837"
-     id="namedview6"
-     showgrid="false"
-     inkscape:zoom="0.944"
-     inkscape:cx="350.53577"
-     inkscape:cy="680.50251"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="Layer_1" /><style
-     type="text/css"
-     id="style2">
+	 id="metadata10"><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="defs8" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1342"
+	 inkscape:window-height="837"
+	 id="namedview6"
+	 showgrid="false"
+	 inkscape:zoom="0.944"
+	 inkscape:cx="350.53577"
+	 inkscape:cy="680.50251"
+	 inkscape:window-x="0"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="Layer_1" /><style
+	 type="text/css"
+	 id="style2">
 	.st0{fill:#5FBA46;}
 </style><path
-     id="Hair_Green"
-     class="st0"
-     d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5  c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"
-     style="fill:#b4b3b7;fill-opacity:1" /></svg>
\ No newline at end of file
+	 id="Hair_Green"
+	 class="st0"
+	 d="M484.6,101.6c5.1,7.6,15,14,52.5,7.3c18.7,5.2,2.6,37.9,1.1,61c-1.3,19.3-7.8,36.4-18.9,51.5  c17.1-12.2,36.2-10.4,50.8-41.2c41.1-23.4-1.2-125.9-49.9-115.4C487.2,71.9,487.1,84.2,484.6,101.6z"
+	 style="fill:#b4b3b7;fill-opacity:1" /></svg>
\ No newline at end of file
diff --git a/resources/vector/hair/pubes neat.svg b/resources/vector/hair/pubes neat.svg
index a80e5bbfefc01257b8463217121d27769a62e37e..2ca47f4427e117271e69d23191515dc31ac78e60 100644
--- a/resources/vector/hair/pubes neat.svg	
+++ b/resources/vector/hair/pubes neat.svg	
@@ -1,7 +1,7 @@
 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" data-name="pubic hair">
   <g data-name="neat blue">
-    <path fill="#9497a2" d="M487.94 432.27a.46.46 0 0 1-.45.37h-2.8a.9.9 0 0 1-.65-.36 52.45 52.45 0 0 1-8.24-18.92.32.32 0 0 1 .33-.38l19.08-.62c.22 0 .3.15.17.36a49.71 49.71 0 0 0-7.44 19.55z"/>
-    <path d="M485.057 417.56l-.368.188c.05.648.11 1.297.12 1.947-.03-.12-.05-.242-.08-.363l-.35.19c.13.598.25 1.198.3 1.81.02.326.03.403.03.727-.14-.5-.3-1-.46-1.5l-.31.17c.22.66.44 1.33.59 2.01.07.34.11.53.16.83 0 .33 0 .67-.03 1l.13-.07c0 .06 0 .11.01.16l-.2.1c0 .1 0 .21.01.31.02.43.09.86.15 1.29-.02.07-.02.13-.03.2l.05-.02c.04.23.09.46.13.7.02.15.03.31.05.46l-.12.35c-.01-.1 0-.2-.01-.3-.02-.28-.05-.55-.1-.82-.02-.12-.06-.23-.09-.34-.09-.32-.2-.64-.307-.95-.09-.26-.15-.53-.22-.79l-.02-.08-.42.223c.01.02.02.05.02.07.084.257.15.52.243.77.102.32.2.637.3.95.022.11.06.227.08.33.052.27.08.54.11.81.022.27.05.54.06.81v.29l-.15-.394c-.06-.17-.034-.09-.084-.25l-.403.227c.06.16.022.08.09.25.176.42.365.84.514 1.27l.05.15v.19l-.287.12c-.185.184-.336.4-.474.62-.024.04-.046.076-.065.116-.05.11-.08.23-.12.35l.44-.22c.03-.11.054-.22.104-.326l.06-.11c.1-.16.21-.31.34-.45v.47l-.17.08c-.06.23-.123.46-.163.69-.02.19-.015.38.04.57l.15-.08c-.02.064-.05.13-.07.2l.197-.1v.04l.3-.155c.01.06.03.13.06.19l.24-.132c-.02.04-.02.08-.03.115l.44-.207c.02-.07.03-.14.043-.208l.11-.05c0 .053 0 .11-.006.17l.1-.056c0 .09 0 .18-.01.27-.01.07-.02.15-.04.22-.018.074-.04.15-.086.214l.45-.2c.02-.026.02-.06.03-.09l.4-.24c-.09-.12-.1-.27-.11-.41-.006-.04-.005-.08-.01-.12.06.09.13.18.19.27.08.13.157.27.26.38l.42-.26c-.12-.09-.19-.23-.27-.35-.11-.17-.23-.33-.35-.496-.02-.025-.032-.053-.05-.08l-.21.12c-.01-.205-.02-.41-.02-.62l.13-.42c.09-.284.1-.35.17-.645.16-.627.25-1.267.31-1.91l-.38.19c-.04.64-.12 1.27-.29 1.89-.08.29-.097.37-.186.65l-.06.18c-.004-.216 0-.43-.02-.644-.03-.2-.015-.1-.05-.29l-.14.08.004-.81c.01-.27-.01-.55.003-.82.003-.06.01-.12.02-.18.04-.31.1-.616.19-.91.074-.24.115-.33.21-.56.24-.54.554-1.04.874-1.53.15-.225.08-.12.22-.32l-.41.18c-.13.2-.064.09-.204.31-.31.497-.612.996-.85 1.53-.1.24-.14.327-.22.57-.1.3-.17.614-.21.93-.04-.26-.07-.525-.08-.79l.15-.5c.08-.276.17-.55.28-.82l.15-.07c-.01-.2-.016-.41-.02-.615-.03-.606-.04-1.216-.06-1.824-.01-.51-.065-1.02-.167-1.52-.064-.33-.1-.44-.184-.762-.127-.48-.27-.95-.418-1.42v-.326c0-.68-.06-1.37-.11-2.05zm.113 3.745c.022.08.05.16.072.24.033.125.07.25.1.375.15.622.235 1.26.246 1.898.015.616.01 1.233.012 1.848-.005.183-.01.364-.018.547l-.096.045c-.08.203-.137.412-.2.62l-.09-.482h.005c.04-.328.05-.657.04-.986 0-.108-.01-.214-.01-.322-.02-.425-.06-.85-.11-1.272 0-.217-.01-.434-.01-.652v-1.004l.1-.053c-.01-.22-.01-.44-.02-.662v-.14zm-6.01 1.035l-.428.22c0 .052 0 .105-.003.16l.43-.222c-.01-.052-.01-.106-.01-.158zm11.186.01l-.418.228c.025.09.05.18.086.264l.425-.244c-.05-.078-.07-.164-.1-.248zm-9.826 2.435l-.432.213c-.008.08-.005.038-.01.125-.01.127-.03.252-.057.377l.44-.215c.02-.125.04-.25.05-.375.01-.088.01-.045.02-.125zm8.4 1.07l-.408.207c-.006.195-.005.097-.006.29-.002.193-.003.387-.014.58l.438-.223c-.012-.19-.012-.38-.014-.57 0-.19 0-.1.004-.29zm-7.047.786l-.422.22.01.09c.01.19.02.37.06.55.03.09.07.18.09.28l.44-.23c-.02-.09-.07-.18-.1-.27-.05-.17-.05-.35-.06-.53v-.08zm6.744 1.45l-.408.21-.01.41c0 .16 0 .32-.01.49l.43-.22c-.01-.15-.01-.31-.01-.47l-.01-.4zm-3.574.07c.02.64.014 1.28.02 1.92 0 .13-.003.25-.002.37-.03-.11-.08-.22-.12-.34v-.51c0-.45-.02-.9-.04-1.36l.16-.07zm-1.914 1.34l-.42.22c-.01.13-.01.07-.01.19l-.01.29.43-.22-.01-.27c-.01-.12 0-.06 0-.18zm5.3.67l-.43.22c0 .05 0 .09-.01.13l.44-.22c-.01-.04-.01-.08-.01-.12zm-1.14.47l-.4.23c.08.13.17.25.23.38.12.21.23.43.29.66l.3-.16c.03.07.06.13.1.19l.42-.25c-.05-.06-.09-.14-.12-.21-.03-.06-.02-.03-.04-.09l-.3.17c-.08-.17-.16-.34-.26-.51-.07-.13-.15-.25-.23-.38zm-1.56.5v.36c0 .1-.01.2-.01.3-.03.08-.07.16-.1.23.01-.09.04-.18.05-.27.02-.2.02-.4.03-.6l.02-.01z" fill="#525767"/>
-    <path d="M491.256 413.412c-.513.17-1.026.338-1.54.5-.284.086-.566.177-.853.252v.002l-.263.19c.015 0 .03-.003.046-.006.13-.028.25-.078.375-.118l.47-.146c.52-.167 1.04-.338 1.56-.508l.22-.166zm-11.63.65l-.235.16c.35.128.18.06.52.192.41.15.82.29 1.22.457.18.08.36.15.52.26l.28-.17c-.16-.11-.36-.18-.54-.25-.4-.16-.82-.3-1.23-.44-.34-.13-.17-.06-.52-.19zm4.245.81l-.24.15c.23.204.12.1.34.31l.17.166c.2.197.38.41.61.58l.28-.172c-.24-.15-.43-.362-.63-.558-.05-.056-.11-.11-.17-.166-.22-.21-.11-.107-.34-.31zm2.9.204l-.25.11c-.17.21-.33.414-.44.67-.06.15-.09.218-.12.37-.03.132-.03.265-.03.4l.29-.15c0-.128-.01-.257.02-.384.03-.14.07-.224.12-.36.1-.25.26-.452.43-.656zm3.26.406c-.31.12-.16.06-.47.186-.54.224-1.06.486-1.53.826-.24.177-.49.352-.67.592l.3-.13c.01-.013.02-.03.03-.042.17-.212.4-.37.62-.527.19-.126.22-.15.41-.264.01-.006-.04.027-.02.022.08-.034.15-.075.22-.11.19-.09.24-.108.44-.19.31-.127.16-.064.47-.187l.23-.176zm-12.44.067l-.2.14c.6-.02.3-.02.91.01.16.01.31.02.46.04.69.09 1.36.27 1.98.57.31.15.26.11.53.27.15.08.3.18.41.31l.28-.17c-.12-.13-.28-.22-.44-.3-.28-.15-.22-.12-.54-.27-.63-.3-1.31-.48-2-.57-.15-.02-.31-.03-.46-.05-.6-.03-.3-.03-.9-.02zm12.77 1.59c-.26.09-.13.04-.4.16-.21.12-.46.25-.67.39-.33.21-.64.46-.92.75l-.11.11c-.16.11-.34.22-.5.33-.22.15-.45.31-.66.49-.05.04-.1.1-.15.15-.04.04-.08.09-.12.14-.14.18-.2.41-.19.64v.54l.29-.15v-.54c-.01-.23.06-.44.2-.62.04-.05.08-.09.12-.14.05-.05.1-.1.15-.14.21-.18.43-.33.65-.49l.09-.06c-.08.1-.18.22-.24.29-.07.09-.13.16-.19.26-.01.02-.02.05-.04.07l.3-.14c.16-.28.38-.537.61-.77l.05-.03.3-.2-.21.08.18-.18c.22-.2.46-.38.71-.54.29-.187.288-.185.19-.107.26-.12.128-.07.39-.16l.23-.18zm-9.81 1.53l-.21.14c.33.08.45.1.77.2.38.11.74.26 1.1.4.33.13.67.26.97.45l.06.04.28-.18c-.34-.2-.71-.34-1.07-.47-.37-.14-.74-.28-1.12-.4-.33-.1-.43-.13-.76-.21zm9.86 1.08c-.06.02-.13.04-.2.07-.42.16-.81.4-1.2.63-.51.31-1.02.63-1.46 1.04-.17.17-.36.33-.48.54l.3-.14.02-.03.09-.12c.11-.14.23-.25.35-.38.44-.41.95-.73 1.45-1.04l.26-.15c.01 0 .01.01.02 0 .08-.04.15-.08.23-.12.2-.09.22-.1.42-.17l.23-.18zm-9.9 1.88l-.23.16c.37.07.74.17 1.09.29.7.22-.16-.06.46.15.12.03.24.08.36.1h.04l.27-.2c-.04 0-.06 0-.11-.01-.07-.01-.22-.06-.29-.08l-.46-.15c-.36-.13-.72-.22-1.09-.3zm8.35 1.61l-.26.11c-.18.17-.36.34-.5.55-.18.27-.37.55-.46.87l.3-.14c.07-.32.26-.59.43-.85.14-.21.32-.38.51-.55zm-7.06.83l-.26.16.1.1c.3.32.57.66.82 1.02.18.26.35.52.56.76l.28-.17c-.23-.22-.4-.49-.58-.74-.25-.36-.52-.71-.81-1.04l-.1-.11zm6.13 2.17l-.26.11c-.06.05-.13.1-.19.15-.13.12-.18.15-.3.28-.17.19-.3.41-.43.63-.13.25-.25.51-.36.77l.29-.14c.1-.26.21-.52.35-.76.13-.22.27-.44.44-.63.12-.13.17-.16.3-.28l.19-.16zm-4.94 1.31l-.25.16c.17.12.35.23.5.37.2.18.4.37.51.62l.29-.16-.04-.06c-.06-.09-.07-.12-.14-.2-.1-.13-.23-.24-.35-.35-.15-.14-.33-.26-.5-.38z" fill="#b4b3b7"/>
+	<path fill="#9497a2" d="M487.94 432.27a.46.46 0 0 1-.45.37h-2.8a.9.9 0 0 1-.65-.36 52.45 52.45 0 0 1-8.24-18.92.32.32 0 0 1 .33-.38l19.08-.62c.22 0 .3.15.17.36a49.71 49.71 0 0 0-7.44 19.55z"/>
+	<path d="M485.057 417.56l-.368.188c.05.648.11 1.297.12 1.947-.03-.12-.05-.242-.08-.363l-.35.19c.13.598.25 1.198.3 1.81.02.326.03.403.03.727-.14-.5-.3-1-.46-1.5l-.31.17c.22.66.44 1.33.59 2.01.07.34.11.53.16.83 0 .33 0 .67-.03 1l.13-.07c0 .06 0 .11.01.16l-.2.1c0 .1 0 .21.01.31.02.43.09.86.15 1.29-.02.07-.02.13-.03.2l.05-.02c.04.23.09.46.13.7.02.15.03.31.05.46l-.12.35c-.01-.1 0-.2-.01-.3-.02-.28-.05-.55-.1-.82-.02-.12-.06-.23-.09-.34-.09-.32-.2-.64-.307-.95-.09-.26-.15-.53-.22-.79l-.02-.08-.42.223c.01.02.02.05.02.07.084.257.15.52.243.77.102.32.2.637.3.95.022.11.06.227.08.33.052.27.08.54.11.81.022.27.05.54.06.81v.29l-.15-.394c-.06-.17-.034-.09-.084-.25l-.403.227c.06.16.022.08.09.25.176.42.365.84.514 1.27l.05.15v.19l-.287.12c-.185.184-.336.4-.474.62-.024.04-.046.076-.065.116-.05.11-.08.23-.12.35l.44-.22c.03-.11.054-.22.104-.326l.06-.11c.1-.16.21-.31.34-.45v.47l-.17.08c-.06.23-.123.46-.163.69-.02.19-.015.38.04.57l.15-.08c-.02.064-.05.13-.07.2l.197-.1v.04l.3-.155c.01.06.03.13.06.19l.24-.132c-.02.04-.02.08-.03.115l.44-.207c.02-.07.03-.14.043-.208l.11-.05c0 .053 0 .11-.006.17l.1-.056c0 .09 0 .18-.01.27-.01.07-.02.15-.04.22-.018.074-.04.15-.086.214l.45-.2c.02-.026.02-.06.03-.09l.4-.24c-.09-.12-.1-.27-.11-.41-.006-.04-.005-.08-.01-.12.06.09.13.18.19.27.08.13.157.27.26.38l.42-.26c-.12-.09-.19-.23-.27-.35-.11-.17-.23-.33-.35-.496-.02-.025-.032-.053-.05-.08l-.21.12c-.01-.205-.02-.41-.02-.62l.13-.42c.09-.284.1-.35.17-.645.16-.627.25-1.267.31-1.91l-.38.19c-.04.64-.12 1.27-.29 1.89-.08.29-.097.37-.186.65l-.06.18c-.004-.216 0-.43-.02-.644-.03-.2-.015-.1-.05-.29l-.14.08.004-.81c.01-.27-.01-.55.003-.82.003-.06.01-.12.02-.18.04-.31.1-.616.19-.91.074-.24.115-.33.21-.56.24-.54.554-1.04.874-1.53.15-.225.08-.12.22-.32l-.41.18c-.13.2-.064.09-.204.31-.31.497-.612.996-.85 1.53-.1.24-.14.327-.22.57-.1.3-.17.614-.21.93-.04-.26-.07-.525-.08-.79l.15-.5c.08-.276.17-.55.28-.82l.15-.07c-.01-.2-.016-.41-.02-.615-.03-.606-.04-1.216-.06-1.824-.01-.51-.065-1.02-.167-1.52-.064-.33-.1-.44-.184-.762-.127-.48-.27-.95-.418-1.42v-.326c0-.68-.06-1.37-.11-2.05zm.113 3.745c.022.08.05.16.072.24.033.125.07.25.1.375.15.622.235 1.26.246 1.898.015.616.01 1.233.012 1.848-.005.183-.01.364-.018.547l-.096.045c-.08.203-.137.412-.2.62l-.09-.482h.005c.04-.328.05-.657.04-.986 0-.108-.01-.214-.01-.322-.02-.425-.06-.85-.11-1.272 0-.217-.01-.434-.01-.652v-1.004l.1-.053c-.01-.22-.01-.44-.02-.662v-.14zm-6.01 1.035l-.428.22c0 .052 0 .105-.003.16l.43-.222c-.01-.052-.01-.106-.01-.158zm11.186.01l-.418.228c.025.09.05.18.086.264l.425-.244c-.05-.078-.07-.164-.1-.248zm-9.826 2.435l-.432.213c-.008.08-.005.038-.01.125-.01.127-.03.252-.057.377l.44-.215c.02-.125.04-.25.05-.375.01-.088.01-.045.02-.125zm8.4 1.07l-.408.207c-.006.195-.005.097-.006.29-.002.193-.003.387-.014.58l.438-.223c-.012-.19-.012-.38-.014-.57 0-.19 0-.1.004-.29zm-7.047.786l-.422.22.01.09c.01.19.02.37.06.55.03.09.07.18.09.28l.44-.23c-.02-.09-.07-.18-.1-.27-.05-.17-.05-.35-.06-.53v-.08zm6.744 1.45l-.408.21-.01.41c0 .16 0 .32-.01.49l.43-.22c-.01-.15-.01-.31-.01-.47l-.01-.4zm-3.574.07c.02.64.014 1.28.02 1.92 0 .13-.003.25-.002.37-.03-.11-.08-.22-.12-.34v-.51c0-.45-.02-.9-.04-1.36l.16-.07zm-1.914 1.34l-.42.22c-.01.13-.01.07-.01.19l-.01.29.43-.22-.01-.27c-.01-.12 0-.06 0-.18zm5.3.67l-.43.22c0 .05 0 .09-.01.13l.44-.22c-.01-.04-.01-.08-.01-.12zm-1.14.47l-.4.23c.08.13.17.25.23.38.12.21.23.43.29.66l.3-.16c.03.07.06.13.1.19l.42-.25c-.05-.06-.09-.14-.12-.21-.03-.06-.02-.03-.04-.09l-.3.17c-.08-.17-.16-.34-.26-.51-.07-.13-.15-.25-.23-.38zm-1.56.5v.36c0 .1-.01.2-.01.3-.03.08-.07.16-.1.23.01-.09.04-.18.05-.27.02-.2.02-.4.03-.6l.02-.01z" fill="#525767"/>
+	<path d="M491.256 413.412c-.513.17-1.026.338-1.54.5-.284.086-.566.177-.853.252v.002l-.263.19c.015 0 .03-.003.046-.006.13-.028.25-.078.375-.118l.47-.146c.52-.167 1.04-.338 1.56-.508l.22-.166zm-11.63.65l-.235.16c.35.128.18.06.52.192.41.15.82.29 1.22.457.18.08.36.15.52.26l.28-.17c-.16-.11-.36-.18-.54-.25-.4-.16-.82-.3-1.23-.44-.34-.13-.17-.06-.52-.19zm4.245.81l-.24.15c.23.204.12.1.34.31l.17.166c.2.197.38.41.61.58l.28-.172c-.24-.15-.43-.362-.63-.558-.05-.056-.11-.11-.17-.166-.22-.21-.11-.107-.34-.31zm2.9.204l-.25.11c-.17.21-.33.414-.44.67-.06.15-.09.218-.12.37-.03.132-.03.265-.03.4l.29-.15c0-.128-.01-.257.02-.384.03-.14.07-.224.12-.36.1-.25.26-.452.43-.656zm3.26.406c-.31.12-.16.06-.47.186-.54.224-1.06.486-1.53.826-.24.177-.49.352-.67.592l.3-.13c.01-.013.02-.03.03-.042.17-.212.4-.37.62-.527.19-.126.22-.15.41-.264.01-.006-.04.027-.02.022.08-.034.15-.075.22-.11.19-.09.24-.108.44-.19.31-.127.16-.064.47-.187l.23-.176zm-12.44.067l-.2.14c.6-.02.3-.02.91.01.16.01.31.02.46.04.69.09 1.36.27 1.98.57.31.15.26.11.53.27.15.08.3.18.41.31l.28-.17c-.12-.13-.28-.22-.44-.3-.28-.15-.22-.12-.54-.27-.63-.3-1.31-.48-2-.57-.15-.02-.31-.03-.46-.05-.6-.03-.3-.03-.9-.02zm12.77 1.59c-.26.09-.13.04-.4.16-.21.12-.46.25-.67.39-.33.21-.64.46-.92.75l-.11.11c-.16.11-.34.22-.5.33-.22.15-.45.31-.66.49-.05.04-.1.1-.15.15-.04.04-.08.09-.12.14-.14.18-.2.41-.19.64v.54l.29-.15v-.54c-.01-.23.06-.44.2-.62.04-.05.08-.09.12-.14.05-.05.1-.1.15-.14.21-.18.43-.33.65-.49l.09-.06c-.08.1-.18.22-.24.29-.07.09-.13.16-.19.26-.01.02-.02.05-.04.07l.3-.14c.16-.28.38-.537.61-.77l.05-.03.3-.2-.21.08.18-.18c.22-.2.46-.38.71-.54.29-.187.288-.185.19-.107.26-.12.128-.07.39-.16l.23-.18zm-9.81 1.53l-.21.14c.33.08.45.1.77.2.38.11.74.26 1.1.4.33.13.67.26.97.45l.06.04.28-.18c-.34-.2-.71-.34-1.07-.47-.37-.14-.74-.28-1.12-.4-.33-.1-.43-.13-.76-.21zm9.86 1.08c-.06.02-.13.04-.2.07-.42.16-.81.4-1.2.63-.51.31-1.02.63-1.46 1.04-.17.17-.36.33-.48.54l.3-.14.02-.03.09-.12c.11-.14.23-.25.35-.38.44-.41.95-.73 1.45-1.04l.26-.15c.01 0 .01.01.02 0 .08-.04.15-.08.23-.12.2-.09.22-.1.42-.17l.23-.18zm-9.9 1.88l-.23.16c.37.07.74.17 1.09.29.7.22-.16-.06.46.15.12.03.24.08.36.1h.04l.27-.2c-.04 0-.06 0-.11-.01-.07-.01-.22-.06-.29-.08l-.46-.15c-.36-.13-.72-.22-1.09-.3zm8.35 1.61l-.26.11c-.18.17-.36.34-.5.55-.18.27-.37.55-.46.87l.3-.14c.07-.32.26-.59.43-.85.14-.21.32-.38.51-.55zm-7.06.83l-.26.16.1.1c.3.32.57.66.82 1.02.18.26.35.52.56.76l.28-.17c-.23-.22-.4-.49-.58-.74-.25-.36-.52-.71-.81-1.04l-.1-.11zm6.13 2.17l-.26.11c-.06.05-.13.1-.19.15-.13.12-.18.15-.3.28-.17.19-.3.41-.43.63-.13.25-.25.51-.36.77l.29-.14c.1-.26.21-.52.35-.76.13-.22.27-.44.44-.63.12-.13.17-.16.3-.28l.19-.16zm-4.94 1.31l-.25.16c.17.12.35.23.5.37.2.18.4.37.51.62l.29-.16-.04-.06c-.06-.09-.07-.12-.14-.2-.1-.13-.23-.24-.35-.35-.15-.14-.33-.26-.5-.38z" fill="#b4b3b7"/>
   </g>
 </svg>
diff --git a/resources/vector/hair/pubes strip.svg b/resources/vector/hair/pubes strip.svg
index 6e223d589da843fe8b12ce21bbae0fcd8537a7db..f6d64c1fb894c46e1580a2249cf527842973c7ec 100644
--- a/resources/vector/hair/pubes strip.svg	
+++ b/resources/vector/hair/pubes strip.svg	
@@ -1,7 +1,7 @@
 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" data-name="pubic hair">
   <g data-name="Strip blue">
-    <path fill="#9497a2" d="M486.78 432.21h-2.08a1.27 1.27 0 0 1-1.22-1.06 61.41 61.41 0 0 1 0-17.09 1.27 1.27 0 0 1 1.22-1.06h2.08a.9.9 0 0 1 .91 1.06 61.41 61.41 0 0 0 0 17.09.9.9 0 0 1-.91 1.06z"/>
-    <path d="M485.52 425.9l-.436.223c.01.353.028.706.057 1.06.09.75.15 1.502.2 2.256.04.63.03 1.26.04 1.89l-.27-.94c-.04-.16-.06-.32-.05-.49v-.5c0-.16 0-.32.01-.48l-.44.22c.01.15.01.31.01.46v.42l-.1.05.03.783c.01.32.06.627.13.93.07.25.13.5.21.75.06.196.13.39.19.584.07.2.34.79.34.79s.066-.363.09-.67c.15.266.47.657.47.657s-.08-.8-.145-1.025c-.054-.187-.1-.38-.142-.57-.014-.044-.03-.09-.04-.134l.107-.056c0-.965 0-1.927-.04-2.89-.04-.76-.115-1.515-.17-2.273-.02-.36-.03-.72-.01-1.08zm-1.192.93l-.435.22c.006.18.008.362.01.544.003.335.003.672.003 1.008-.003.38.006.76.035 1.14.03.326.05.653.06.98.01.252.01.503.01.755 0 .172 0 .347-.03.517-.01.048-.06.245-.07.29-.06.27-.11.542-.15.816-.03.185.28.976.28.976l.15-1.185c.04-.27.09-.54.15-.8.02-.06.06-.23.07-.29.04-.17.04-.35.04-.52 0-.25 0-.5-.01-.75-.01-.32-.03-.65-.06-.98-.03-.37-.03-.75-.03-1.13 0-.34 0-.67.01-1.01 0-.18 0-.37.01-.55zm1.92.795l-.435.223c.016.372.02.745.025 1.117 0 .11.002.22.004.332.002.122.002.245.01.367.016.262.052.527.1.785.05.28.103.48.17.75.126.51.7 1.95.7 1.95s-.2-1.64-.334-2.15c-.096-.38-.187-.76-.232-1.14-.036-.31-.035-.46-.035-.76l.01-.34c.01-.38.01-.77.03-1.15z" fill="#525767"/>
-    <path d="M484.31 412.25s-.033.356-.03.44c.008.144.012.287.03.43.018.137.045.274.075.41.013.077.024.156.023.236l.154-.08c-.007-.077-.02-.155-.035-.233-.032-.135-.057-.27-.076-.408-.01-.142-.02-.284-.02-.426 0-.09-.11-.37-.11-.37zm1.358.078s-.026.23-.025.305c0 .09.002.18.007.27.007.154.007.307.008.46 0 .183 0 .365-.004.547 0 .074-.003.147-.006.22h.002l.155-.08c-.003-.07-.005-.142-.006-.214-.01-.18-.01-.362-.01-.543v-.463l-.01-.273c0-.075-.13-.23-.13-.23zm1.113.227s-.17.45-.21.59l-.02.09c-.05.15-.11.29-.18.427l-.09.193-.04.112-.02.054-.04.1c-.01.04-.03.08-.05.13v.03l.16-.07.01-.02.03-.07.06-.14c.04-.12.1-.24.15-.35.09-.16.15-.34.21-.52.04-.14.07-.52.07-.52zm-1.67.09s-.08.39-.08.533l-.02.338c0 .052-.01.103-.01.156l.16-.078.02-.153c.01-.11.01-.22.01-.33 0-.14-.05-.46-.05-.46zm-.16 1.46s.08.466.12.575c.05.135.09.272.13.412.04.17.08.342.08.517.01.09.03.19.06.28l.16-.08c-.04-.09-.05-.19-.06-.28-.01-.18-.05-.35-.09-.52-.03-.14-.07-.28-.12-.42-.04-.11-.26-.5-.26-.5z" fill="#b4b3b7"/>
+	<path fill="#9497a2" d="M486.78 432.21h-2.08a1.27 1.27 0 0 1-1.22-1.06 61.41 61.41 0 0 1 0-17.09 1.27 1.27 0 0 1 1.22-1.06h2.08a.9.9 0 0 1 .91 1.06 61.41 61.41 0 0 0 0 17.09.9.9 0 0 1-.91 1.06z"/>
+	<path d="M485.52 425.9l-.436.223c.01.353.028.706.057 1.06.09.75.15 1.502.2 2.256.04.63.03 1.26.04 1.89l-.27-.94c-.04-.16-.06-.32-.05-.49v-.5c0-.16 0-.32.01-.48l-.44.22c.01.15.01.31.01.46v.42l-.1.05.03.783c.01.32.06.627.13.93.07.25.13.5.21.75.06.196.13.39.19.584.07.2.34.79.34.79s.066-.363.09-.67c.15.266.47.657.47.657s-.08-.8-.145-1.025c-.054-.187-.1-.38-.142-.57-.014-.044-.03-.09-.04-.134l.107-.056c0-.965 0-1.927-.04-2.89-.04-.76-.115-1.515-.17-2.273-.02-.36-.03-.72-.01-1.08zm-1.192.93l-.435.22c.006.18.008.362.01.544.003.335.003.672.003 1.008-.003.38.006.76.035 1.14.03.326.05.653.06.98.01.252.01.503.01.755 0 .172 0 .347-.03.517-.01.048-.06.245-.07.29-.06.27-.11.542-.15.816-.03.185.28.976.28.976l.15-1.185c.04-.27.09-.54.15-.8.02-.06.06-.23.07-.29.04-.17.04-.35.04-.52 0-.25 0-.5-.01-.75-.01-.32-.03-.65-.06-.98-.03-.37-.03-.75-.03-1.13 0-.34 0-.67.01-1.01 0-.18 0-.37.01-.55zm1.92.795l-.435.223c.016.372.02.745.025 1.117 0 .11.002.22.004.332.002.122.002.245.01.367.016.262.052.527.1.785.05.28.103.48.17.75.126.51.7 1.95.7 1.95s-.2-1.64-.334-2.15c-.096-.38-.187-.76-.232-1.14-.036-.31-.035-.46-.035-.76l.01-.34c.01-.38.01-.77.03-1.15z" fill="#525767"/>
+	<path d="M484.31 412.25s-.033.356-.03.44c.008.144.012.287.03.43.018.137.045.274.075.41.013.077.024.156.023.236l.154-.08c-.007-.077-.02-.155-.035-.233-.032-.135-.057-.27-.076-.408-.01-.142-.02-.284-.02-.426 0-.09-.11-.37-.11-.37zm1.358.078s-.026.23-.025.305c0 .09.002.18.007.27.007.154.007.307.008.46 0 .183 0 .365-.004.547 0 .074-.003.147-.006.22h.002l.155-.08c-.003-.07-.005-.142-.006-.214-.01-.18-.01-.362-.01-.543v-.463l-.01-.273c0-.075-.13-.23-.13-.23zm1.113.227s-.17.45-.21.59l-.02.09c-.05.15-.11.29-.18.427l-.09.193-.04.112-.02.054-.04.1c-.01.04-.03.08-.05.13v.03l.16-.07.01-.02.03-.07.06-.14c.04-.12.1-.24.15-.35.09-.16.15-.34.21-.52.04-.14.07-.52.07-.52zm-1.67.09s-.08.39-.08.533l-.02.338c0 .052-.01.103-.01.156l.16-.078.02-.153c.01-.11.01-.22.01-.33 0-.14-.05-.46-.05-.46zm-.16 1.46s.08.466.12.575c.05.135.09.272.13.412.04.17.08.342.08.517.01.09.03.19.06.28l.16-.08c-.04-.09-.05-.19-.06-.28-.01-.18-.05-.35-.09-.52-.03-.14-.07-.28-.12-.42-.04-.11-.26-.5-.26-.5z" fill="#b4b3b7"/>
   </g>
 </svg>
diff --git a/resources/vector/hair/pubes very bushy.svg b/resources/vector/hair/pubes very bushy.svg
index 67f166bfd2659f009c5626d5b24279e929dec1c2..6c52301ff5d5e18b65afec1c38cbc6546094bf0e 100644
--- a/resources/vector/hair/pubes very bushy.svg	
+++ b/resources/vector/hair/pubes very bushy.svg	
@@ -1,7 +1,7 @@
 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" data-name="pubic hair">
   <g data-name="bushy blue">
-    <path d="M472.07 426.59c-1.31-6.13 4.08-11.39 10.91-11.95l35.34-2.93c6.88-.56 7.69 3.69 2.89 9.77C510 435.68 503 451 500.2 465.4c-1 6.14-5.61 6.18-10.22.1-9.26-12.75-15.23-26.16-17.91-38.91z" fill="#525767"/>
-    <path d="M534.3 400.64c2.292 2.634-.76 6.063-2.855 7.682-1.384 1.573-8.564 4.938-4.674.88.48-.997 5.24-3.358 1.31-1.555-3.95.757-5.34 6.66-9.02 5.324 2.31-1.75 3.87-5.72 1.39-7.97 1.73 2.03-3.78 7.85-2.02 4.97.99-1.16 1.24-4.25-.89-4.98-3.59-1.28-7.33 1.31-10.19 3.28 2.26-1.49 6.97-2.74 8.17.71.88 2.64-3.48 4.63-5.58 4.77-2.16-1.34 1.98 2.31-.86 1.12-.51-1.4-1.89-3.73-.87-2.72-.15-3.83-5.13-3.98-6.86-3.98.42-2.4-2.43-3.46-4.35-2.85-3.07-.87-6.61-.14-8.9 2.36-2.02 2.92-3.67 6.31-6.87 6.92 3.07-1.77 5.9-5.47 4.42-9.13 1.03-1.82.24-6.09-.39-1.91-2.48 2.13-6.78 3.2-9.29 5.46-2.27-.58-3.37-1.34-1.11 1.02 1.01 1.11-3.66 2.58-4.04 4.75-1.45.4-2.73-1.58-4.5-.74 1.1-.37 3 1.55 1.16 2.02-1.24.09 0-.65-1.46 1.19-2.97 1.43 1.54-7.3-.24-4.39-2.5 2.05-2.84 5.31-4.36 7.9-.3.91.26 1.93 1.16 2.19-1.52.58-3.29-1.62-1.26.96-1.31 1.03-3.55 3.74-.72 1.33 2.9-.79-.35 5.61-2.22 6.3-1.25 1.84-7.51 1.16-2.41 2.05 3.09.87 6.01-1.92 7.55-3.34 1.24.94 4.18 3.27 3.14 3.95-1-.8-.91 3.55-3.51 3.47-1.33.79-3.69-2.52-2.26-.11 0 1.62 3.89 1.42 2.48 2.07-2.65-.04-3.65 3.91-1.32 5.18 2.13 1.49-1.03-1.22-.05-2.41.34-1.98 2.36-1.9 2.06-1.3.68-2.33.55.83 1.45.9 1.49 1.87 4.24 1.64 1.93 4.58-1.4 2.45 1.58 5.42 1.32 6.8-2.25-3.96-9.14-2.85-9.66 1.76-.42 2.02.36 6.93.67 2.18 1.45-4.39 7.81-3.55 10.14-.4 1.49 2.11 1.87 3 .69-.36-2.88-2.88 2.34-3.81 1.3-.19-.6 4.5.22-.58 2.58-1.13 2.22.28.54 5.69-1.46 6.64-1.15.55.52-5.11-.99-1.25-.95 1.33-2.62-1.4-1.05.73-1.96.42-4.07-.92-4.69-2.8.04 2.66 2.83 5.68 5.51 4.3.41 1.97-1.7 3.71-3.56 2.93 1.68.22 3.9 1.33 3.3 1.84.56-1.13 1.48-2.26 2.59-2.88 2.05-.81 7.55.92 6.31 3-.79.22 2.95-.46 2.72 2 2.56 4.57-2.96-5.61 1.38-4.13 2.37.65-2.03 5.35.73 3.53.97 2.12-1.89 3.55-3.57 2.51-1.31-2.38-1.77-2.6-1.1-.59 0 1.49-1.92 1.99-3.08 1.5 1.39-.6 2.2-1.67.27-.86-2.1-.01-4.13-2.35-3.52-4.44-1.64.82.57 4.05-1.21 3.32.04.04 3.34 1.84 2.94 3.76.15 1.17-.77 2.32-1.97 2.31 2.71-.39 1.89-.1 2.06 1.97 2.78 3.32-5.42-2.86-.7.9 2.97 2.31 6.97 4.2 10.79 3.42 1.17-.71.25-2.24.8-3.25 1.17 1.15 1.75 2.67 2.28 4.18 1.66 1.42 3.08 3.4 3.12 4.48.89.78 1.8 2.84.03 3.22-1.96.6-5.59-1.81-1.55.53 1.16.66 4.27 1.64 4.26-.6-1.19-2.03 1.2.16 2.32-.33.83.26 1.93-1.7 1.38-1.45-2 1.3-4.53-.61-5.89-2.03-2.29-1.75 1.28-1.95.22-.23 1.68-1.79 4.44.14 5.81 1.39 1.33 2.18 1.96 2.69 1-.06-1.04-1.96-3.77-3.89-5.99-2.82-1.12.96-2.78-1.16-3.21-2.27 1.22.69 3.2.36 3.25-1.32.89 1.91 5.5 6.03 2.13 1.8-2.06-3.13 2.45-.47 1.23 1.05-.94.27 3.22-.54 1.13-.65.73-.81.11-1.88.66-2.73-1.62-3 4.04-.27.16-2.05 1.12-.94 7.37 3.48 3.66.6-3.66-1-1.18-2.72.31-1.06 2.43 1.18 4.2 1.21.98-.28-2.16-2.09 1.37-1.62 1.59.16-.28 1.07 1.59-1.48 1.83-2.71-.24-2.19-2.4-4.05-4.61-3.96 1.76-1.55.78-4.86 2.07-6.08 2.58-.26 4.93 2.76 4.24 5.2 1.72-1.99.59-5.25-1.84-6.02.25-1.91 1.63-3.04.16-2.85-.02-1.44-3.48-2.05-2.06-2.52 1.49.84 3.42-.55 3.22-2.21 3.27 1.68 5.57 1.45 3.49.43 1.97.35 3.26-2.11 2.48-3.75 3.32-.13 6.15-6.44 3.82-4.08 1.15-1.51-.48-6.92 1.55-2.96.5 2.96-.32-2.94 2.07-.11 2.96 1.23 6.55-.41 7.33-3.59 1.65-2.51-2.05-7.76-2.64-7.24 2.86 4.27-1.64 10.47-6.51 9.41-.2-1.24-1.35-2.29-2.65-2.07-1.25-.9-2.03-3.15-.69-4.62 1.01-.69 2.82.95.81-.79 3.16-1.52 7.41.14 8.39 3.57-.11-3.5-2.59-8.26-6.74-7.38-3.2.88-.39-.62 1.3-.54 2.1-.53 3.07-4.02.79-4.99.99-3.24 1.86-5.78 5.19-7.1 1.23-2.33 2.68-2.03 1.85.47 1.76-1.89.41-4.4 1.37-6.31-.21-2.51-3.73-4.89.82-4.89 3.11-1.45 6.52-4.4 6.37-8.12-.48-1.26-1.53-2.38-2.89-2.67zm-49.734 3.94c-.663 1.618-6.926 5.292-3.055 1.908.93-.77 1.95-1.44 3.06-1.908zm.637 1.637c-.35 1.797-2.08 5.125-3.783 3.562 1.485-.9 2.892-2.06 3.783-3.57zm6.486 1.47c-2.06.733-3.78 5.212-4.78 5.258.46-2.476 2.61-4.24 4.78-5.257zm3.64.543c2.5-.23 5.2 1.867 1.47 3.102-.93.936-2.85-2.42-4.93-.904-2.04.214-6.13 3.697-2.46.29 1.65-1.384 3.71-2.462 5.91-2.488zm9.23 2.58c3.14-.845 3.88 3.395 1.84 4.81-.96-.513-2.84-2.1-4.53-1.33-1.5.35-7.1 3.835-3.88.44 1.75-1.21 1.18-1.01 3.34-2.23 1.73-1.702 7.76.866 3.24-1.685zm-22.67.3c-.56 1.716-5.27 1.83-2.16.345.7-.192 1.42-.308 2.15-.346zm4.13.804c1.32 2.66-2.08 3.957-1.92 3.56.25-1.343.96-2.593 1.92-3.56zm29.37.002c-.43 1.65-2.25 1.664 0 0zm9.63.1c3.49-1.692 4.32 3.91 1.92 4.524-2.17-.268-2.73-2.785-1.93-4.524zm-33.32 1.172c2.35-.306 4.46 1.292 1.2 1.703-1.78 2.55-1.92-.81-1.54-.74 0 1.68-5.5-.08-2.03-.44.75-.29 1.55-.47 2.36-.51zm-9.46 1.484c.05 2.574-4.11 2.917-2.15.465.73-.068 1.45-.23 2.15-.465zm-8.08.068c1.74.81 1.25 1.688-.36.358zm20.4.537c-.03 2.636.11 2.376-2.31 1.842.55-.84 1.41-1.43 2.31-1.85zm20.1.055c-.4 2.143-3.4.077-1.2.06-1.66 1.74.41-.542 1.2-.06zm3.95.578c2.39-.25 4.92 1.584 4.73 4.13-1.59.136-2.02-.23-2.88-1.33-3.13-.053-2.55.326-1.85-2.8zm-44.43.37c3.74-.05.09 1.7.27 1.56 2.21-.187 4.3-.805 1.25 1.085-2.47.993-1.96-2.644-2.01-2.14-1.31 3.445-1.34-1.853.48-.506zm34.31.122c2.55.122-2.8 3.372-.36.87l.26-.605zm7.55.07c.16 1.58-2.13.28 0 0zm-14.56.247c1.33.29.76 1.03 0 0zm-16.2.17c2.73-.81 3.94 3.35 1.13 2.13-.54-1.14-3.16-.15-1.14-2.14zm-.56.01c.19 2.43-1.54-.07 0 0zm11.67.13c1.15-.28-.94 1.24 0 0zm5.96.09c1.92 1.67-.34.92-.01.61-.02-.22-.44-.41.01-.62zm-4.93.11c4.08 1.21-4.14.88 0 0zm-27.45.11c.53 2.96-1.99.92 0 0zm57.24 0c-2.09.49-4.81 5.05-3.3.28 1.1.28 2.22-.07 3.29-.28zm-46.32.01c-1.13.7-4.63 3.39-2.07.16.69.01 1.39-.01 2.06-.17zm-11.79.49c-.35 2.1-2.22.77 0 0zm34.43.58c.13 2.34-2.04-.19 0 0zm-4.45.12c.22.21-.23-.03 0 0zm-.6.12c-.09 2.14-2.02.7-1.23.71-2.47 1.85-.16-1.07 1.23-.71zm27.38.37c-2.38 2.85-2.95.69 0 0zm-7.98.07c1.18-.37 2.77 1.67 1.25 2.07-.93 1.39-4.72 1.31-1.9-.28-1.54-.99 3.66-.03 1.64-.91-.2-.47-1.93-.24-1-.89zm-19.08.35c.36.98-1.34 1.02-.09.09zm-36.17.2c1.17 1.28 1.1 2.84.06.69-.05-.22-.07-.46-.06-.69zm33.12.15c1.19.67-.98.91 0 0zm1.21.11c.45 1.07-1.79 1.23 0 0zm8.96.08c-.63 1.18-1.82 3.26 0 0zm-16.82.08c.45 1.39-1.63-.15 0 0zm32.22.29c.72-.05.03.44 0 0zm1.12.65c.39 1.59-4.13 1.46-.3.11zm-41.41.18c1.11 3.33-3.5-.15-.79 2.4-1.72 2.79-3.24-.37-.77-1.94.49-.23 1.02-.39 1.55-.47zm23 .04c.12.32-.28-.03 0 0zm4.19.13c-.95 1.55-2.04.81 0 0zm3.19.14c.82-.14-.42 1.08 0 0zm-6.41.45c.25 1.64-1 .16 0 0zm11.11.09c1.48.64-.96 2.04 0 0zm-41.32.13c2.99 1.02-5.39 2.07-1.55.73.54-.19 1.06-.43 1.54-.73zm24.5.11c-.52 3.05-2.24 1.22 0 0zm15.92.39c.4.33-.39.1 0 0zm-39.78.15c.15 1.21-1.99 1.05 0 0zm39.65.11c1.89 1.62-2.07 2.49-1.09 1 1.3 1.96-.47-.91 1.09-1.01zm-23.29.89c.63.15-.88 1.01 0 0zm27.32.11c1.93 1.12-4.1 4.28-.64.82zm-55.14.03c1.28.47-2.63 1-.42.02zm49.38.01c.09 1.74-2.62.06 0 0zm-7.47.16c1.53.91-.64 1.32 0 0zm-17.43.01c-.14 1.14.38 4.5-1.13 2.25-.93-.37.14-2.42 1.13-2.25zm31.94.08c4.3-.96-2.29 3.45 1.15 1.49 1.46-.26-2.89 3.24-2.7 2.8-1.4-.29 2.18-2.25 1.57-3.85l-.01-.4zm-38.51.08c1.19-.04.32 3.77-.06 1.57 1.45-1.62-2.6.65-.29-1.36zm-2.21.3c-1.16 2.26-2.02.81 0 0zm25.13.22c.08.09-.1.09 0 0zm-17.96.15c.99 1.76-3.5 1.64-3.03.17 1 .3 2.08.22 3.04-.17zm-21.89.01c.38.83-.59 5.58-1.26 3.27.27-1.26.02-2.43 1.26-3.28zm36.95.85c.64 2.98-3.24 3.63 0 0zm-26.01.1c.63 1.1-.53 3.04 1.12 3.73 3.04-.17-1.85 3.58-.55.8-.08-1.21-1.19-2.2-2.11-2.36-1.32 1.64.36-1.93 1.54-2.18zm-7.92.29c-.02 2.05-1.58 2.97 0 0zm16.61.32c1.19.11 1.01.57 0 0zm19.47.15c3.03.77-2.15 1.86 0 0zm-24.68.03c1.61-.32 1.02 1.02 0 0zm6.65.54c1.12 1.29-4.19.47 0 0zm-13.07.02c-.13 2.49-.25 2.13 0 0zm10.05.01c.13.07.07.11 0 0zm-1.83.01c1.06.62-.68.54 0 0zm.39.45c.33 1.39 1.25 3.54.68 3.67-1.53-.8-2.11-4.85-1.76-1.07-.72 3.26 5.2 4.99 1 6.15-1.25 1.16-.41 3.9-2.71 2.4-1.63-.24 1.95 1.12 1.12 2.5-.55.79.06.6-2.33-.16-2.82.11-2.95-.21-.92-1.81 1.36-3.26 1.14-2.33-.99-.55-2.95.83.13-5.48.82-5.45-1.07 2.09 1.8 4.11 3.53 2.57 2.36-1.62-.34.24-1.51-.7-1.91-1.4-.13-2.24-.58-2.24-.5-1.14.89-.95.41-1.17 1.39-.68 1.36-2.47 1.86-3.5.49-.29.61-.92 1.37-.65zm1.61.01c1.59.79 4.99 3.57 1.45 1.93-.64-.51-1.15-1.18-1.45-1.93zm31.17.05c.97.62-1.64 1.08 0 0zm-14.07.36c1.05-.02-.8 1.6 0 0zm-25.57.24c1.52 1.26-.27 3.25-.82.94-.2-.48.56-.69.81-.95zm-5.95.01c1.11 2.88-1.89 4.52-1.07 1.45.46-.4.8-.91 1.06-1.46zm46.08.22c.95.76-1.15.51 0 0zm-37.23.26c1.91-.18.79 1.63 0 0zm-14.14.02c2.94 1.06-1.59 1.91 0 0zm39.86.44c2.81-1.17 2.38 2.7 3.83 3.07 3.05 1.39-3.32 3.44-.4.85.64-.37-2.3 1.5-2.15-.57.9 2.2-2.71 3.65-3.47 4.84-1.79-3-.67-4.94 1.14-7.26l.57-.55zm17.92.15c.81 1.14.18 3.75-1.49 3.21-3.2.51-.24-1.99-.27-1.5.48-.4 1.32-1.03 1.76-1.7zm-51.36.08c1.82 1.96-2.87 3.92-.63 1.25zm18.8.01c-.17 3.11-3.49.03 0 0zm-15.34.07c2.08 1.19-.86 1.12 0 0zm24.77.02c1.34 1.42-1.69 4.23-.53 5.21.49 2.29-2.12 4.41-4.22 3.78 2.14-3.14-2.96-9.07 3.08-8.48.57-.09 1.13-.26 1.66-.51zm13.32.14c.18-.1.11.27 0 0zm-36.27.78c-.03 1.19-1.88-.19 0 0zm40.93 1.89c-.24 3.17-2.68-.49 0 0zm4.53.46c-1.6 1.96-3.19 1 0 0zm-3.2.05c.94.07-.53.78 0 0zm-24.99.05c.06 1.54-.74 3.21-.22.71zm-17 .23c-.06.83-2.1.43-.71.17zm35.75.12c2.19 1.16.87 4.81.52 1.22-.31-.73.16 3.91-2.45 2.52-1.91-.51 1.42-3.26 1.13-1.81-.22-.83-.18-1.63.8-1.93zm-39.34.33c2.07.49 3.69-.09.88 2.04-.93 1.98-.39-1.66-.88-2.04zm46.7.32c.29.23-.53.2 0 0zm-8.63.5c.12.13-.26.2 0 0zm-4.8.3c2.21 2.37.2 1.77-1.39 3.06.21-1.11.69-2.17 1.39-3.06zm-34.9.15c1.34.76 1.98 4.47.13 4.32-.93-1.51-2.13-2.89-.13-4.32zm18.55.09c2.31 2.33-.4 5.48-1.74 4.41 1.67-1.57-1.6-4.03 1.06-4.1l.25-.12zm-17.14.27c.24.41.26.61 0 0zm12.4.32c2.06-.22 3.09 1.17 1.81 2.97-.58 1.84-4.07 1.72-3.79-.32.21-1.12.93-2.16 1.98-2.65zm22.12.28c.89.06 1.59 1.03.27.21zm-34.7.36c1.34.01 0 1.77 0 0zm27.13.54c3.05.96 2.23 3.68.62 5.48-.97 2.24 1.21 4.3 3.37 4.28 1.59 1.64 4.75 2.32.83 2.09.33.33 3.46.8 1.74 3.07-.13 1.79 2.47 6.35-.37 4 .3-2.28-4.42-3.63-1.4-5.1.03-.48-3.97 2.18-1.89-.72.93-1.13-3.43 3.43-3.41.27-.47 3.24-.07-4.12-2.15-4.46-2.95-2.36 4.07 1.52 3.36 3.89.49-3.66-2.25-7.57-5.04-8.55.87-1.6 1.44-.42.89-1.42 1.75.31 3.23-1.17 3.44-2.83zm-29.85 1.1c1.93 1.12 1.04 1.76 0 0zm37.25.6c3.03-.13-4.82 4.62-1.81.64.5-.42 1.16-.62 1.81-.64zm-41.66.79c.35.35-.41.21 0 0zm17.86.29c1.56 1.1.04.72 0 0zm10.55.11c1.17.24-.61.71 0 0zm-.23.63c1.41 1.43-3.74 2.4-.37.17.04-.22.23-.14.37-.17zm-10.87.14c1.12.46 4.88 1.46 1.87 1.45-.82-.15-1.49-.73-1.87-1.45zm1.4.18c.71.12 1.12.74 0 0zm32.13.14c1.19 1.71.77 2.14-.28.53zm-1.19 0c.36 1.21-.61.13 0 0zm-6.84.01c2.4-.53 1.94 1.61 1.58 1.65 2.07-1.46 2.37.72-.1.22-1.71 1.49-1.62-.26-1.62 1.94-2.57-.46-4.39-3.92.14-3.81zm-16.5.95c-.24 1.57-2.84 3.69-1.47.63.52-.12 1.01-.34 1.47-.63zm-5.32.14c1.98-.31 3.67 2.73 2.62 3.68-1.81.21-3.76-1.52-1.18.7 2.6.52.57 2.83-1.11 1.38-1.72-.39-4.14-3.59-2.94-4.53 1 .08 1.92-.56 2.61-1.22zm29.23.29c3.17.66-.89 6.15 1.11 3.73 1.62-.24-.32 4.85-1.89 5.64-2.63.14-4.77-5.46-1.89-3.6.38 2.46-.11-3.63 1.14-.85-.08 2.15-.41 3.42.69.35.65-1.66.49-3.4.84-5.28zm-13.84.47c1.24 2.59 2.07 5.35-.13 2.06-.17-.68-.15-1.42.13-2.07zm-19.66.63c.28.6-.3.36 0 0zm30.31.28c2.41.8.78 4.13-.4 1.45l.26-.85zm-43 .17c.83.33-.69 6.22 0 0zm41.43.05c-.41.64-.56.18 0 0zm-40.02.02c-.16.67-.46-.28 0 0zm39.6.19c-.16.62-1.04.42 0 0zm-16.14.59c1.23-.01.56.24 0 0zm-18.25.85c2.54-.27-1.44 5.67.04 1.34.04-.44.01-.89-.04-1.34zm7.22.1c2.07 1.2-.19 6.82-.4 3.1.34-1.07-.46-2.27.39-3.11zm-3.36.14c1.74 1.82-1.27 1.15 1.33 1.8-1.89 2.58-2.06-.37-1.33-1.8zm31.47.63c.04 0-.03.02 0 0zm-38.55.07c.9 2.84-1.4 1.13 0 0zm19.82.73c1.08-.29-.13.92 0 0zm-.9.01c-.3 2.74-3.38.34 0 0zm-10.29.82c2.04 2.68-1.51 1.91 0 0zm13.7.14c2.07.46 3.56 6.14 1.32 2.59-.32-.92-.85-1.75-1.32-2.59zm-.71 1.37c.63 1.4-.9.49 0 0zm-9.6.28c2.28 1.41 1.79 2.05-.62.52.17-.21.38-.39.61-.52zm24.95 1.14c1.92 1.91-.92 5.43-.23 1.18l.11-.69zm-17.8.55c2.15 2.44-2.39 4.88-2.31 4.47-1.37-1.07-2.19-1.41-.54.17-2.94-.14 0-4.65 1.04-4.18.62-.03 1.23-.21 1.8-.45zm18.76 1.07c.69.39-.16.57 0 0zm-17.77.13c1.69.91-1.86 2.31-.07.24zm17.78.2c1.16 1.34 5.47 1.15 3.18 3.45-1.74 2.24-4.87-.11-3.22-2.51.04-.32.04-.63.04-.94zm-11.31 1.29c-.31 3.14 4.88 4.88 4.97 5.79-2.38 1.82-5.89-.74-5.1-3.58.57-3.21-1.06 3.91-1.22-.12.81 3.3-4.56-.72-1.18-1.59-.26 3.11.26-.75 1.97-.25.19-.08.39-.16.57-.26zm-25.93.07c-.26.85-.19.37 0 0zm27.63.1c.24-.1.32.59 0 0zm-16.16 1.2c.34 2.24-.58 5.62-.93 1.68-1.61-1.57.9-1.08.93-1.68zm-5.79.07c1.13.07-.23 1.42 0 0zm1.21 1.12c1.96-.26 4.43 3.04 2.8 4.36-3.63 2.31.63-4.06-1.6-1.76-1.68 3.25-3.24-.92-1.82-2.47.19-.07.4-.14.61-.13zm7.69.85c.2 1.44-1.11 3.08-2.87 3.75-.73 1.52-3.94.08-.58-.01 1.65-.6 2.91-2.11 3.45-3.74zm4.85.85c2.47-.05 3.86 2.03.77.57-.28-.16-.54-.35-.77-.58zm-.34.05c2.06 2.09-.25 2.43 0 0zm7.15.8c1.81 1.38.33 1.43 0 0zm-15.61.55c.17.06-.13.37 0 0zm9.58.19c1.06.95-1.59 1.09 0 0zm-14.97.32c1.22 1.9-.57.55 1.38 1.88-1.13-.84-3.51-.44-1.38-1.88zm7.63 1.11c1.68.38-3.14.59-.01 0zm19.25.14c1.54.47 3.16 2.81.45 2.43-2.73-.04-1.77-1.07-.45-2.43zm-8.71.24c.89.25.69.73 0 0zm-2.62.21c1.31.22 1.25 1.33 0 0zm3.91.12c.17.07-.02.07 0 0zm-2.75.77c.76-.08.8.69 0 0zm2.68.62c1.38.15-.17.59 0 0zm-5 .01c.41-.2.69 1.02 0 0zm.43.21c1.24-.08.14 1.22 0 0zm5.32.17c1.47 1.26-.66 6.12 1.36 2.15 1.56-2.2 1.17 4.86.49.8-.08-.38-.3 2.31-1.69 2.13-.57-.32 1.43-1.54-1-.55-1.44-.18-3.24-2.55-2.68-2.68 1.93.28-2.81-1.36-.54-.46-2.13-2.62 4.43-.97 2.49 1.75.53 1.14.75-3.42 1.56-3.15zm-5.57.43c.94.14.44.8 0 0zm14.8.22c.72 1.31-1.74.56 0 0zm-21.13.9c.11-.04.01.1 0 0zm2.41 1.59c.98.44 2.62.19 2.85 1.08-1.26 1.71-4.95-.55-2.85-1.08zm-2.2.48c.73 2.47.34 3.99-.94.88-.38-.32.79-.7.94-.88zm8.36 2.72c1.96.92-.4 2.2 0 0zm-1.31.03c.05 1.22-.82.27 0 0zm3.95.84c2.08-.29-.12 1.17 0 0zm4.39.34c.22 1.01-1.36-.33 0 0zm-20.03.3c5.35 3-2.99 2.29-2.57 1.95 1.51 1.64 6.5 1.12 4.75 4.16-2.3-1.43 1.22 1.29-1.95 1.73-1.51.58-5.04.95-4.33-1.5.66-1.7 2.95-1.58 4.29-.82-.67-2.08-5.44-.56-4.13-2.49.18-1.55-2.02-3.63.84-1.47 1.35.82 3.32.26 3.09-1.56zm16.7.11c1.24-.33 3.95 1.95 1.5 1.7-.27.08-2-1.87-1.5-1.7zm-6.42.55c2.02 1.56.93 1.89 3.13 3.81 2.04 2.49-1.09-1.55-2.37-1.48-1.03-.08-.82-1.61-.76-2.33zm4.03.11c1.69.76 2.11 4.87 0 1.1-.35-.57-1.08-1.16 0-1.1zm6.66.18c1.96-.48 4.79 5.21 2.85 2.45-.57-1.25-2.68-1.3-2.86-2.45zm-19.13.08c2.27-.15 1.37 1.59 0 0zm6.13.39c1.48 2.53-.39 1.43 2.24 2.86 1.97.71 2.96 2.73.76 3.11-.12-.52 2.06 2.35.56 3.15-.76.42-3.34.04-2.02-.98 3.1-1.25-2.03.56-2.56-1.09-1.53-1.19-.56-3.98 1.47-3.48.81.1-3-1.37-3.63.21-1.73-1.68 3.37-.97 3.16-3.69l.01-.06zm11.79.35c-.92.54-.54 1.95-1.18 2.77-1.25 1.91-4.43-3.63-.81-2.04 1.72 2.85-.69-.58 1.99-.72zm.84 1.25c-.34.3-.56.1 0 0zm1.29.06c1.51.31 3.73 1.81 2.41 3.48.11-1.61-2.75-2.66-2.41-3.48zm-10.56 1.2c1.41 1.16 1.55 2.05 0 0zm8.47.17c.69 2.5-2.15-.6-.21.79.01-.26-.32-.86.21-.78zm1.56.23c2.31.41-.26 1.41 0 0zm-4.25 3.52c.46 1.6-1.72 1.32-.9.29.28-.15.58-.24.9-.29zm-9.76.99c.53.09.57.63 0 0zm8.25 1.83c.5.21.32.94 0 0zm-12.44 3.06c-1.43-.25-2.24 1.56-1.14 2.54 1.81 2 1.33 1.94.79-.26.59-1.55 2.96-.85 4.03-.26 2.95 1.84-2.79-2.52-3.69-2.02z" fill="#9497a2"/>
-    <path d="M534.566 398.125c.788.905.932 1.903.713 2.89.8.457 1.43 1.218 1.81 2.063.26-.72.4-1.48.37-2.28-.49-1.263-1.54-2.386-2.9-2.673zm-48.504 1.105c-.168-.012-.38.47-.576 1.774-2.48 2.132-6.784 3.2-9.3 5.46-2.273-.586-3.367-1.347-1.108 1.016.31.34.058.72-.412 1.137.36.11.764.238 1.256.365 2.516-2.26 6.82-3.33 9.3-5.462.344-2.295.73-2.013.844-1.014.486-1.306.33-3.252-.003-3.276zm48.928 2.68c-.68 1.558-2.123 3.003-3.28 3.897-.603.686-2.294 1.688-3.704 2.29-.566.398-1.09.804-1.235 1.104 0 .01 0 .01-.01.02.71.09 1.22.56 1.52 1.18.18-.08.35-.18.53-.27-.14-.69.25-1.13 1.96-1.18.29-.21.54-.42.7-.6 1.78-1.37 4.22-4.03 3.55-6.41zm-50.158.154c-.664 1.618-6.928 5.293-3.057 1.91.926-.77 1.945-1.44 3.057-1.91zm30.934.06c-2.933.01-5.838 2.024-8.16 3.62 1.722-1.138 4.875-2.134 6.806-1.004 1.035-.166 2.083-.126 3.117.244.89.304 1.35 1.032 1.52 1.852.63-1.394.56-3.747-1.27-4.367-.68-.25-1.35-.35-2.03-.35zm-20.897.3c-2.4-.046-4.82.83-6.55 2.705-.84 1.2-1.61 2.48-2.45 3.61-.54 2.43-2.56 4.59-4.68 5.82 1.3-.25 2.34-.98 3.26-1.93.3-1.22.95-2.35 1.83-3.24.1.2.16.39.21.58.51-.78 1.02-1.57 1.55-2.34.92-1.01 2.05-1.71 3.27-2.16l.13-.07c-.03.01-.05.03-.07.05 1.78-.64 3.75-.7 5.57-.18 1.92-.61 4.77.45 4.35 2.85.96-.01 2.91.04 4.49.73-.26-.16-.53-.33-.97-.58l-.02-.01c1.92-.52 2.94.87 2.97 2.35.21.42.35.9.37 1.47-.85-.84-.06.61.53 1.94l.06-.18c.96.04.8.53.36.99 2.65 1.07-1.37-2.47.78-1.15 1.95-.13 5.83-1.85 5.69-4.21-.49 1.49-2.09 1.48-.01-.09-.01-.16-.05-.32-.1-.48-.04-.13-.1-.24-.16-.36-1.11 1.5-3.69 2.51-5.16 2.6-2.17-1.34 1.98 2.31-.86 1.12-.51-1.41-1.89-3.74-.87-2.73-.03-.68-.21-1.24-.5-1.7-.21.11-.44.23-.62.35.19-.13.4-.27.6-.4-1.34-2.13-4.93-2.24-6.35-2.23.41-2.4-2.43-3.47-4.36-2.86-.77-.22-1.57-.34-2.37-.35zm25.83.06c.55.65.36 1.686-.09 2.702.58.594.9 1.29 1.02 2.03.58-1.656.46-3.467-.93-4.732zm-34.62 1.053c-.05.667-.18 1.38-.47 1.9.19.464.3.93.36 1.39.34-1.053.41-2.168.1-3.29zm43.77.936c-.1.016-.54.207-1.52.658-3.29.63-4.81 4.81-7.35 5.43-.49.96-1.17 1.82-1.95 2.41 2.98 1.09 4.46-2.57 7.01-4.41-.34-.14-.16-.68.98-1.87.35-.74 3.12-2.26 2.82-2.21zm-45.3.107c-1.11.47-2.13 1.14-3.06 1.908-3.87 3.385 2.39-.29 3.05-1.908zm36.02.67c-.4.867-.97 1.688-1.44 2.256.03.95-.26 1.918-.72 2.46-1.7 2.773 3.33-2.508 2.16-4.716zm-35.38.967c-.89 1.51-2.3 2.667-3.79 3.562 1.7 1.56 3.43-1.77 3.78-3.57zm9.98 2.023c-2.15.072-4.15 1.126-5.77 2.48-.31.28-.48.45-.68.643.18-.074.46-.137.87-.18.19-.077.4-.123.6-.183.58-.282 1.18-.522 1.66-.572 2.08-1.515 3.99 1.84 4.92.904 2.54-.84 2.07-2.066.74-2.7-.15.064-.3.125-.48.184-.44.44-1.1-.07-1.89-.576zm-4.57.188c-.39.184-.71.36-1.05.554-1.3 1.005-2.35 2.325-2.66 3.963.82-.038 2.12-3.027 3.7-4.517zm-16.58.695c-1.16.85-2.78 1.86-3 3.106-1.45.39-2.73-1.59-4.51-.75 1.1-.38 2.99 1.54 1.16 2.01-.97.06-.47-.33-.86.32 1.49-.25 2.64 1.27 3.93.92.38-2.17 5.05-3.64 4.04-4.75-.4-.42-.57-.64-.78-.88zm-7.62.574c-.03-.03-.15.138-.43.592-2.51 2.04-2.85 5.31-4.36 7.89-.18.53-.06 1.09.25 1.52 1.04-2.23 1.58-4.76 3.43-6.54.32-1.47 1.17-3.39 1.1-3.48zm15.48 1.412c-.73.03-1.46.15-2.16.34-3.11 1.48 1.6 1.37 2.15-.35zm47.53.43c-.49.1-.76.28-.87.52-.01.13-.03.26-.05.38.06.8 1.03 2 1.37 3.28.01-.68.07-1.34.37-1.94-.07-.79-.47-1.56-.83-2.26zm-40.96.06c-.82.79-.54.65.17.24-.11-.08-.18-.17-.18-.25zm14.74.26c-.74.04-1.44.19-1.88.62-2.16 1.22-1.59 1.02-3.34 2.23-.03.02-.04.04-.07.07 1.92.61.47.78-.59.67-1.56 2.01 3.12-.85 4.51-1.18-.03-.04-.06-.06-.08-.1.07.01.12.04.18.05 1.67-.68 3.51.85 4.45 1.36 1.04-.73 1.36-2.19.99-3.33-.18.32-.42.6-.73.82-.5-.27-1.26-.83-2.1-1.19-.44-.04-.9-.06-1.36-.04zm12.18.04c-.53.39-.82.67-.97.88.18-.05.35-.07.49.01.18-.21.37-.5.47-.9zm-29.34.07c-.17.21-.36.38-.56.53-.69.86-1.2 1.87-1.4 2.95-.05.11.2.07.53-.08-.3-.21-.53-1.05.37-1.01.02.28.01.47-.01.63.12-.18.3-.39.57-.66.13-.04.25-.06.38-.07.38-.58.54-1.36.09-2.32zm-1.05 3.04c-.07.09-.11.18-.14.25.03-.02.06-.03.1-.05.01-.06.03-.13.04-.2zm40.06-3.04l-.04.01c-.47 1.01-.46 2.27.04 3.21.82 0 1.64-.23 2.44-.39-.62.15-1.26.63-1.86 1.14.34.29.77.49 1.3.56 1.23-.32 1.6-1.94 1.21-3.22-.23.34-.54.6-.95.7-1.2-.15-1.89-1-2.15-2.03zm-32.5 1.15h-.11c-.31.22-.53.18-.69.02h-.07c-.81.04-1.61.21-2.37.51-3.13.32 1.02 1.77 1.87.83.02-.24.07-.41.16-.39 0 .16-.07.28-.16.39-.06.78.33 2.31 1.69.35.19-.02.31-.06.47-.1-.26-.06-.48-.11-.85-.19.32-.48.74-.87 1.21-1.2-.34-.12-.73-.22-1.17-.25zm-25.84.81c-.12.18-.23.37-.51.72-.47.22-.75.19-.9 0-.49 1.57-.78 3.19.64 2.51 1.45-1.84.22-1.1 1.46-1.19 1.59-.41.38-1.91-.69-2.05zm15.51.7c-.42.14-.84.24-1.27.33-.37.24-.82.54-1.32.86-.61 1.61 2.63 1.08 2.58-1.2zm-8.26.25l-.18.18c.08.07.15.11.22.16-.02-.12-.04-.23-.05-.34zm.96.3c-.08.03-.24.11-.22.09l.29-.03c-.02-.02-.06-.04-.08-.06zm39.38.04c-.61.06-1.41.76-1.44.75.46.37 1.55.56 1.78-.69-.1-.06-.22-.08-.35-.07zm-19.76.01c-.9.41-1.76 1-2.31 1.84 2.42.53 2.28.79 2.31-1.84zm18.9.11c-.91.01-.91.36-.59.63.04-.05.19-.21.59-.62zm-39.87.67c-1.2.06-1.04 3.74.11.73.05-.51-.47 3.13 2 2.14 3.05-1.89.95-1.28-1.25-1.09-.13.11 1.99-.9 1.26-1.35-.58.17-.98.06-1.24-.19-.11 0-.17-.02-.29-.01-.23-.17-.43-.24-.6-.23zm44.97.04c-.04.2-.07.31-.12.48 1.13-.03 2.37 1.74.97 2.11.32 0 .57 0 1.05.01.2.25.38.46.55.63.18-.17.6-.4 1.43-.69l.3-.11c.19.76-.74 1.11-1.35 1.14.46.33 1 .43 1.95.35.08-.98-.25-1.84-.81-2.53-.74-.11-1.15-.51-1.74-1.25-.05-.03-.1-.05-.15-.07-1.12-.02-1.76.02-2.06-.09zm-10.07.3l-.09.26-.27.6c-2.44 2.5 2.91-.75.36-.87zm7.55.07c-2.12.28.17 1.58 0 0zm13.82.12c-.28.71-.27 1.51-.27 2.31.26-.74.27-1.53.26-2.31zm-28.37.12c.36.49.67.57.76.5 0-.01.01-.01.01-.02.06-.1-.13-.35-.78-.49zm.78.49l-.02.01c-.2.17.08.34.09.53-.33.3 1.92 1.05.01-.62-.05.02-.06.04-.09.07zm-16.48-.41c-.16.01-.33.04-.5.09-.27.27-.46.48-.58.65-.03.23-.09.36-.17.4-.01.55 1.49.24 1.88 1.08 2.63 1.14 1.73-2.44-.64-2.23zm-1.24 1.15c0-.11.05-.24.17-.41.02-.16.03-.36.01-.64-1.1-.05-.52 1.23-.18 1.04zm12.15-.93c-.06-.02-.15-.01-.29.03-.15.2-.21.31-.23.38.04.03.08.06.11.09.05-.02.12-.06.18-.11.03-.08.13-.2.28-.35-.01-.02-.02-.03-.06-.04zm21.61.13c-.08.28-.15.59-.19.77.96-.01 2.22.1 1.04-.41-.1-.22-.53-.29-.86-.36zm-20.87.1c-.61.13-.93.24-1.08.35.06.1.04.18-.03.23.07.05.19.09.34.12.1-.14.26-.3.58-.51.1.24.05.43-.04.58 1.08.08 2.4-.12.22-.76zm-27.46.11c-1.99.92.52 2.96 0 0zm57.24 0c-.77.15-1.55.36-2.34.38-.57.36-.83.25-.7-.05-.09-.01-.18-.03-.26-.05-1.51 4.77 1.21.21 3.29-.28zm-46.32.01c-.67.16-1.38.18-2.07.16-2.56 3.22.95.54 2.07-.17zm-11.78.49c-2.22.77-.35 2.09 0 0zm52.49.01c.72-.04.03.45 0 0zm-18.4.56c-1.44.11.46 2.19.33 0-.13-.01-.24-.01-.33-.01zm-4.12.12c-.23-.03.22.22 0 0zm-.86.09c-1.35.02-3.13 2.29-1.13.85-.01-.07.02-.12.16-.12-.07.06-.1.07-.17.11.04.28 1.32.93 1.4-.83-.09-.03-.18-.03-.27-.03zm27.65.4c-2.96.69-2.39 2.85 0 0zm-7.12.17c-.3.17-.64.29-.97.36.31.12.97.15 1.1.43 2.02.88-3.19-.09-1.65.9-2.83 1.58.97 1.66 1.9.27 1.15-.31.51-1.55-.39-1.97zm-19.95.25l-.1.09c-1.25.93.45.89.09-.1zm-36.17.2c-.01.22.01.44.05.66.02.01.04.02.07.02l-.05.01c1.03 2.12 1.09.57-.07-.71zm33.12.15c-.99.91 1.19.67 0 0zm1.2.11c-1.79 1.23.45 1.07 0 0zm-36.36.1c-.08.01.18.36.66.97.01-.11.04-.22.07-.33.07-.11.12-.22.18-.34-.46-.13-.83-.34-.91-.32zm28.51.06c-1.63-.15.46 1.39 0 0zm32.22.29c.04.44.72-.04 0 0zm1.12.65l-.3.11c-.65.23-1.04.41-1.27.57.83-.17 1.2-.1 1.29.09.22-.19.36-.44.28-.77zm-41.41.18c-.24.04-.48.09-.72.16-.55.76-1.06.94-1.41.77-1.43 1.43-.52 3.44.79 2.15-.02-.02-.04-.03-.06-.05.05-.01.07-.01.12-.02.16-.16.32-.36.48-.63-.39-.37-.62-.6-.74-.76-.88 1.12-1.27-.04.46-.73-.11.21-.21.35-.31.5.63.12 2.05.61 1.38-1.41zm23 .04c-.27-.03.13.32 0 0zm-42.77.24c-1.27 1.07-3.01 3.18-.79 1.35-.22-.33-.13-.33.23-.18l.04-.03c.59-.16.91-.01 1.05.31.22.01.44-.01.67-.09-.64-.19-1.09-.74-1.21-1.37zm59.42.36c-.12.12-.1.21.01.26l-.01-.27zm-15.68.12c-1 .17.25 1.64 0 0zm-30.22.22c-.49.3-1.01.54-1.55.73-3.84 1.34 4.54.29 1.55-.73zm24.5.11c-2.23 1.22-.52 3.05 0 0zm15.92.39c-.39.1.4.33 0 0zm-39.78.15c-1.98 1.05.16 1.21 0 0zm39.65.11c-1.56.09.21 2.96-1.08 1-.99 1.49 2.97.62 1.08-1.01zm-23.29.89c-.88 1.01.63.15 0 0zm27.33.11l-.64.82c-2.15 2.14-.64 1.74.35.85.07-.22.33-.53.64-.88.09-.31.02-.59-.35-.81zm-55.14.03l-.41.02c-1.75.77.31.6.63.27l.02-.14c-.03-.05-.1-.1-.24-.15zm49.39.01c-2.63.06.09 1.74 0 0zm8.19.12c-.31.31-.69.63-1.07.95.02 1.52-2.92 3.2-1.63 3.47-.19.43 4.15-3.06 2.7-2.8-3.01 1.71 1.64-1.44 0-1.62zm-15.67.03c-.64 1.32 1.53.91 0 0zm-17.98.14c-.77.43-1.34 1.82-.58 2.12 1.36 2.02 1.09-.44 1.12-1.79-.12.07-.3-.05-.55-.33zm-6.02.02l-.35.22c-.87.75-.85.91-.55.89.11-.11.24-.19.41-.21-.15-.06-.23-.2.03-.4.43.26.38.39.23.42.05.01.1.02.15.04v.01c.28-.03.4.06.12.43.08.27.15.53.24.82.34-.22.57-2.25-.3-2.23zm-.21.92c-.1-.02-.19-.03-.27-.02.08.04.18.04.26.02zm-2.01-.61c-2.02.81-1.16 2.27 0 0zm7.17.38c-.14.05-.28.09-.43.13-.06.44-1.35.4-1.7.2-.31-.02-.62-.07-.91-.16-.04.12-.03.23-.01.34.36.2.74.45 1.12.73 1.1.2 2.51-.17 1.92-1.24zm-21.85.24c-.25.92-.6 1.54-.92.86-.06.15-.1.3-.13.46 1.49.62.49 1.14-.16 1.02-.01.05-.02.1-.02.15.22.16.49.38.76.6.34-.86.58-2.42.46-3.09zm-3.62.02c-.69 1.57-1.95 3.32-2.87 3.66-1.25 1.84-7.51 1.15-2.41 2.05 1.05.3 2.08.16 3.05-.2 1.46-1.47 3.04-4.73 2.23-5.52zm40.52.6c-3.25 3.63.63 2.98 0 0zm-26.3.22c-.11.06-.21.15-.31.24.74 1.08-.34 2.31-.94 1.16-.04.06-.09.13-.12.19.28.3.07.43-.21.4-.25.51-.24.76.32.07.11.02.22.05.33.09.1-.08.32-.12.76-.08 0 .21-.08.32-.17.4.61.43 1.13 1.13 1.19 1.94-.22.47-.25.74-.19.89.19-.25.36-.43.46-.42-.09.18-.15.37-.19.55.79-.09 2.62-1.94.46-1.82-1.41-.59-.78-2.08-.95-3.19-.14-.16-.29-.3-.46-.42zm-7.64.17c-1.58 2.97-.02 2.05 0 0zm11.89.44c-.14 0-.31.01-.51.05.27.27.51.37.69.38.03-.13.08-.25.11-.38-.08-.03-.17-.05-.3-.05zm24.17.03l-.05.05c.04-.01.07-.03.11-.03l-.06-.02zm18.22.25c-.14.36-.27.74-.39 1.13.03.4-.03.83-.17 1.2.47.24.78.6.96 1.02.63-1.11.63-2.58-.4-3.35zm-49.31.33c-.25 2.13-.12 2.49 0 0zm8.23.02c-.25.2-.17.34-.02.4.08-.01.16 0 .26.02.01 0 .02 0 .03-.01-.07-.13-.14-.25-.2-.37-.03-.02-.03-.03-.07-.05zm.24.42c-.07.02-.17.01-.26-.02-.16.02-.29.09-.41.2-.29 1.45.71 2.58 1.54 3.51.44-.23-.28-2.03-.64-3.38-.06-.1-.13-.2-.19-.31l-.03-.01zm3.93-.35c-2.29.4.56.9.81.3-.16-.03-.47-.15-.81-.29zm-2.17.4c.3.75.81 1.42 1.45 1.92 3.53 1.64.14-1.13-1.46-1.93zm31.17.05c-1.64 1.08.97.62 0 0zm-14.07.36c-.8 1.6 1.05-.02 0 0zm-25.58.25c-.26.26-1 .46-.8.94.53 2.25 2.23.43.92-.84-.05-.03-.09-.06-.12-.09zm-5.87.22c-.12.15-.25.26-.37.32-.21.34-.45.66-.76.93-.7 2.63 1.39 1.79 1.31-.32-.06-.06-.07-.16-.03-.31-.03-.2-.07-.41-.14-.63zm46.02.01c-1.14.52.95.76 0 0zm-37.23.26c.29.59.62.72.84.66l.03-.02c.08-.04.13-.1.16-.17-.01-.01-.01-.02-.04-.03.02-.01.03-.03.05-.04.02-.23-.23-.5-1.03-.42zm-7.71.68l-.63 1.25c-2.24 2.67 2.45.71.63-1.25zm18.8.01c-3.5.03-.18 3.11 0 0zm-15.34.07c-.86 1.12 2.07 1.2 0 0zm48.02.12c-.21.26-.47.44-.8.48-.2.2-.38.35-.58.51.25-.11.53-.22.89-.33-1.13 1.38-2.22 1.3-1.65.79-.16.08-.35.21-.53.4.02-.03.04-.05.13-.08.21.16-.13.19-.17.13-.2.21-.38.46-.41.67.22-.23 1.67-.77 2.71-.73.19-.05.37-.13.53-.22.13-.56.09-1.15-.13-1.62zm-9.84.04c-.02-.02-.05-.02-.1 0 .08.2.14.05.09 0zm-13.31.01c-.46 1.04-.98 2.04-.37 2.54.01.06.01.12.02.18.43-.96.85-1.98.35-2.71zm6.64.35c-.03.32.03.54.13.69 0-.22-.04-.45-.14-.69zm.13.69c0 1.83-2.93 3.1-3.61 4.15-.44-.73-.7-1.4-.82-2.02-.27.67-.4 1.36-.33 2.11.56.54.72 1.22.63 1.93.09.17.15.32.25.5.49-.76 2.16-1.64 3.04-2.75.14-.48.33-.95.57-1.39v-.02c-.1-.16-.16-.37-.13-.69.1.24.13.47.14.69.19-.37.41-.72.66-1.05.48.51.72.86.86 1.14.44-.17.74-.37.49-.22-.08.07-.13.13-.2.2.83.12 1.42.97.16.19l-.21-.15-.17.16c.11.34-.06.53-.35.7.23.61 3.52-.86 1.16-1.94-.24-.06-.41-.23-.57-.43-.29.01-.44-.12-.28-.43-.07-.14-.14-.3-.2-.45-.43.11-.89.11-1.11-.23zm-30.37-.28c-.49.07-.3.36-.02.46.07-.04.19-.08.39-.12l.08-.02c.04-.07.08-.17.08-.31-.24-.02-.41-.02-.54 0zm19.13.2c-.83.99-.1 2.98.11 4.91.65-1.45.14-3.32-.11-4.91zm26.68 1.26c-.25.02-.5.05-.76.1-.89.25-1.31.31-1.42.27.03.29.4.47 1.48.3.69.22 1.19-.11 1.49-.63-.25-.04-.52-.06-.79-.04zm-42.36.06c-.23.13-.44.36-.2.92.22.01-.12.23-.27.63.79.47 1.83.52 2.63-.19.56-.39.8-.56.87-.63l-.04-.06c-.34.08-1.63.56-2.36-.02-.32-.23-.51-.44-.65-.64zm-12.18.17c-.44 1.07-1.02 2.75-2.65 2.7-1.32.79-3.68-2.52-2.26-.11.01 1.62 3.9 1.41 2.49 2.07-.62-.01-1.15.21-1.57.55.38.15.76.2 1.08.01.64.02 1.12-.23 1.49-.6 1.13-1.15 1.27-3.47 2.02-2.86.49-.32.08-1.01-.6-1.75zm49.75.17c-1.94-.01.22 3.02.44.05-.17-.03-.32-.04-.45-.04zm6.86.03c-.35.79-.99 1.46-1.81 1.66-1.68-.07-4.49 1.43-1.29.54 1.94-.41 3.5.42 4.64 1.76 1.11.72 1.99 1.78 2.37 3.11-.09-2.61-1.48-5.92-3.91-7.07zm-1.9.48c-3.18 1-1.59 1.96 0 0zm-3.19.05c-.52.78.94.07 0 0zm-24.98.05l-.22.72c-.52 2.5.28.83.21-.72zm-17.27.3l-.43.1c-.99.19-.25.43.29.27.04-.12.09-.25.14-.37zm36.43.33c-.2.66-.55 1.25-1.28 1.2 0 .03.01.06.01.09.07.06.1.17.06.37-.03-.13-.05-.25-.06-.37-.45-.38-2.72 1.73-1.07 2.17 2.62 1.39 2.14-3.25 2.45-2.51.33 3.34 1.5.4-.12-.95zm-39.74.06c.03.02.06.06.08.12.56.12.38.67.13.73.09 1.09-.02 2.64.66 1.19 2.81-2.13 1.19-1.55-.88-2.04zm10.12.14c-.09.03-.16.06-.27.09-1.23 1.14-.44 3.79-2.58 2.47-.15.05-.31.07-.46.08.36.37 2.06 1.35 1.46 2.35-.16.23-.23.37-.3.44.94-.04.63-1.92 1.61-2.82.37-.1.64-.21.87-.33-.01-.1 0-.22.01-.34.07-.36.21-.71.38-1.04-.18-.28-.44-.58-.72-.9zm45.22.12c-.06-.01-.11 0-.15.03.71 1.06.97 2.24.88 3.4.71.91 1.5 2.34 1.8 3.76 1.44-2.38-1.65-7.04-2.53-7.19zm-8.65.07c-.53.2.29.23 0 0zm-21.18.53c-.75 1.13-2.17 1.86-3.47 1.63.04.89-.06 1.74-.55 2.45.46.14.95.14 1.43.03-.09-.04-.18-.08-.27-.11.88-1.6 1.45-.42.89-1.42.69.12 1.34-.04 1.88-.38.3-.58.43-1.24.29-1.91-.1-.08-.16-.19-.21-.29zm7.75.27c-.66.84-1.12 1.84-1.35 2.88.08-.25.28-.61.65-1.1.44-.37 1-.56 1.56-.62-.13-.28-.38-.65-.87-1.18zm-35.35.54c-.11.11-.22.22-.3.32 1.08.78.62 1.15-.13.2-.61 1.11.28 2.21 1.01 3.39 1.2.09 1.34-1.42.94-2.71-.17.13-.39.21-.67.19-.3-.48-.62-.94-.86-1.4zm17.98.03c-1.98.29.87 2.58-.71 4.07 1.14.91 3.27-1.25 2.43-3.35-.57.88-1.53 1.35-2.17.83.49-.47.53-1.01.44-1.55zm-11.06.17c-.25.23-.47.44-.81.73-.57.16-.91.05-1.09-.23-.59 1.58-.76 3.19.82 2.74.11-.09.16-.14.26-.23-.72-.18-.35-.67 1-1.73l.33-.81c-.2-.13-.37-.29-.52-.47zm29.46.35l.07.05h.01c.11-.01.18.01.27.01-.11-.03-.23-.06-.35-.07zm.76.28c.01.05.01.11-.01.18.34.15.26-.01.01-.18zm-20.87.01c-.53 1.3-2.58 1.52-3.4.65-.05.08-.09.16-.14.25 1.34.96.14.69-.03.06-.15.27-.27.56-.35.85 1.3.49 4.47 1.38 1.62 1.37-.71-.13-1.29-.59-1.68-1.17-.01.02-.02.04-.02.06-.28 2.04 3.21 2.16 3.79.32.71-.99.69-1.85.2-2.39zm-14.51.08c-.02.04-.05.07-.07.1.07 1.49 1.21 0 .07-.1zm32.22 1.45c-.01.05-.03.09-.04.14l.02-.02c0-.04 0-.07.01-.12zm-35.05.14c1.04 1.76 1.93 1.13 0 0zm14.57.24c.71.13 1.12.74 0 0zm-22.03.08c-.43.75-.55 1.69-.26 2.5.25-.45.62-.82 1.08-1.05.01 0 .01-.01.01-.01.07-.39.21-.68.38-.93-.41-.12-.87-.28-1.21-.52zm39.21.11c-.26.52-.61 1.02-1.01 1.46-.34.78-.29 1.53 0 2.18.9-1.13 1.45-2.53 1-3.64zm5.05.22c-.5.08-.98.27-1.37.59-1.38 1.83-.45 1.78.65 1.24-.36-.72-.23-1.46.72-1.84zm-27.73.13c-.34.01-.64.02-.9.02-.1.24-.15.35-.29.68-2.03 1.6-1.9 1.92.92 1.81 2.39.76 1.78.95 2.33.16.69-1.15-1.67-2.28-1.54-2.49-.18-.06-.28-.11-.52-.18zm49.83.14c-.31.96-.84 1.87-1.53 2.62.02.2.04.4.04.59-.04-.16-.1-.31-.16-.47-1.4 1.45-3.38 2.31-5.43 1.86-.2-1.23-1.36-2.29-2.65-2.07-.54-.39-.97-1.03-1.21-1.75-.94 1.46-.21 3.43.94 4.26.57-.09 1.11.07 1.56.37 0-.92.14-1.17 1.1.7.51 2.96-.32-2.93 2.07-.11.62.26 1.26.38 1.91.4 2.19-1.29 3.67-3.89 3.37-6.39zm-45.45.77c.04.72 1.56 1.1 0 0zm14.12.02c-.36.1-.75.13-1.16.06.56 1.01-.01-.17-.89 1.42 1.27.45 2.52 1.52 3.47 2.88.92.8 1.8 1.78 1.88 2.66.03-.56 0-1.11-.1-1.66-.35-.51-.56-1.11-.52-1.75-.6-1.45-1.57-2.74-2.68-3.63zm3.3 7.03c-.01.16-.02.33-.04.49.05-.15.06-.32.04-.49zm-6.88-6.94c-.6.71 1.17.24 0 0zm-.23.63c-.13.02-.33-.06-.36.16-3.37 2.23 1.78 1.26.37-.17zm-10.87.14c.24.46.61.85 1.05 1.12-.04-.27-.02-.52.08-.72-.44-.15-.86-.3-1.13-.41zm26.37.27c-.79.31-.74-.35-.74 1.36-.77-.14-1.46-.55-1.95-1.05-2.02.77-.42 3.18 1.69 3.56 0-2.2-.09-.45 1.62-1.94 2.47.5 2.17-1.67.1-.22.3-.03.67-1.6-.72-1.72zm5.97.06c-.61.12.37 1.21 0 0zm-51.75.45c-.12.18-.22.4-.29.66.08.05.15.11.24.16 1.37.96.56.18.06-.82zm28.42.5c-.45.28-.95.5-1.47.63-1.37 3.05 1.23.94 1.47-.63zm-4.85.86c-.06.03.27.3 1.24 1.14.8.16 1.16.48 1.23.82-.04-.49-.28-1.04-.64-1.52-.92-.08-1.74-.49-1.82-.44zm14.93.03c-.08.2-.13.41-.17.62.19.14.39.27.61.37-.15-.34-.27-.66-.43-1zm14.97.39c-.29.79-.51 1.25.12.5-.02-.18-.05-.35-.11-.51zm-32.33.03c-.2.05-.42.07-.63.05-.01.01-.02.03-.04.04.69.57.76 1.7.59 2.66.67.88 1.6 1.66 2.39 1.84 1.68 1.44 3.71-.86 1.11-1.38-1.62-1.39-1.38-1.22-.6-.96-.08-.05-.16-.11-.24-.18-.86-.19-1.9-1.1-2.57-2.07zm-2.29.21c-.3.36.28.6 0 0zm30.31.28l-.13.6-.26.84c.02.03.03.06.05.09.22-.09.58-.01 1.13.34.04.28.07.41.1.5l.07-.07c.03-.28.05-.94.14-1.44-.18-.36-.52-.69-1.09-.88zm-43.66.07c-.05.07-.09.13-.15.2-.45.79-.42 1.63-.22 2.46 1.12-1.46.98-2.12.37-2.67zm.67.1c-.61 5.55.53 1.46.19.28-.05.06-.08 0-.1-.19-.03-.04-.06-.08-.1-.09zm1.28.01c-.24-.02 0 .64.14.05-.06-.03-.1-.05-.14-.05zm40.15.03c-.56.18-.41.64 0 0zm-.41.21c-1.03.42-.16.62 0 0zm-16.14.59c.56.24 1.24-.01 0 0zm-4.99.23c-.07.36-.43.68-.92.76.19.02.39.03.59 0 .21-.19.3-.45.32-.76zm6.97.22c-.03.05.17.28.72.72 2.08.33 1.68 7.69 2.15 4.45-.02 3.15 4.33-1.4 3.4-.28-2.08 2.9 1.92.24 1.89.72-3.02 1.47 1.7 2.81 1.4 5.09 2.09 1.74 1.23-.29.68-2.19-.13-.09-.26-.19-.42-.32.3-2.28-4.42-3.63-1.4-5.09.03-.48-3.97 2.19-1.89-.72.63-.77-1.2 1.12-2.42 1.38 0 .12-.01.24-.01.35.02.17.01.34-.04.49.02-.17.03-.34.04-.5-.01-.12-.04-.23-.08-.35-.52.08-.91-.17-.9-1.11-.23 1.58-.26.61-.47-.81-1.16-1.12-2.61-1.98-2.69-1.85zm-19.79.43c-.17.23-.32.4-.41.37.02.31.03.62.01.93-1.38 4.02 1.95-.82.39-1.3zm6.73.13c-.76.83-.01 2-.35 3.04.16 2.94 1.6.03 1.18-1.9-.34.81-.82 1.02-.92-.62.05-.17.08-.35.08-.52zm-3.32.08c-.73 1.43-.56 4.37 1.33 1.79-2.46-.61.06-.07-1.14-1.55-.08-.05-.14-.13-.19-.24zm40.24.36c-.21-.04-.17.66-.16 1.51.16-.4.22-.92.25-1.45-.04-.03-.07-.06-.1-.07zm-3.02.01c-.49 1.28-1.31 2.62-2.05 3-.3.02-.58-.05-.86-.16-.23.54-.27.38-.24-.11-.31-.16-.6-.38-.87-.65-.03.44-.06.66-.19-.16-2.88-1.86-.74 3.74 1.89 3.6 1.39-.7 3.06-4.74 2.32-5.51zm-44.3.33c-1.4 1.13.9 2.84 0 0zm20.12.68c-.07 0-.17.01-.3.05-.12.81.8-.02.3-.04zm-1.2.06c-3.38.35-.3 2.74 0 0zm28.85.29c-.09-.06-.29.05-.6.33 0 .46-.02.94-.07 1.4.56-.86.85-1.61.67-1.73zm-39.14.54c-1.51 1.92 2.04 2.69 0 0zm13.69.15c.47.84 1 1.67 1.32 2.59 2.24 3.55.75-2.13-1.32-2.59zm-29.93.16c-2.36.09-4.67 1.58-4.96 4.17-.1.48-.13 1.13-.11 1.77 1.07-3.76 6.73-4.65 9.13-1.57.13.08.26.17.39.25-.08-.95-1.13-2.43-1.53-3.97-.88-.48-1.9-.7-2.91-.66zm29.22 1.21c-.9.49.63 1.4 0 0zm-9.6.28c-.24.13-.45.31-.62.52 2.41 1.53 2.9.89.61-.52zm21.69.2c.04.24.11.5.18.77.04-.3-.04-.56-.18-.77zm3.21 1.12l-.08.31-.11.69c-.61 3.84 1.63 1.34.65-.59-.2.15-.4.06-.46-.41zm-17.5.73c-.86 1.11-2.35 1.83-2.3 1.59-.45-.35-.79-.58-1.05-.73-.05.06-.11.12-.16.19.15.17.33.37.68.71-.44-.02-.73-.15-.93-.33-.52.85-.82 1.86-.35 2.43.07-.16.13-.31.19-.47-.29-.42.39-.04 1.37.72-.07.39 4.02-1.8 2.57-4.11zm.74.84l-.07.24c-1.79 2.07 1.76.67.06-.24zm17.75.89c-.01.08 0 .17-.01.25-.4.58-.52 1.16-.44 1.67 1.48.72 2.73 1.06 3.42 1.09.08-.08.17-.16.24-.26.06-.06.1-.11.15-.17-.13-.1-.32-.23-.6-.36.33.06.63.04.91-.04.45-.73.03-1.13-.68-1.46-1.1.84-2.47.33-2.98-.72zm-39.01.29c-.29-.02-.57.07-.78.24.04.05.08.09.12.15 1.49 2.11 1.86 2.99.68-.36l-.03-.03zm27.73.3c-.09.06-.19.09-.29.14-.28.65-.6 1.1-.74.17-.05.53-.41.64-.85.5-.65.77-.84 1.8-.66-.28-3.06.78 1.07 4.15 1.25 2.3-.02-.19-.05-.41-.06-.72.08.3.09.53.07.71.34 2.26 1.69-3.57 1.16-.6-.79 2.84 2.72 5.4 5.11 3.57-.05-.47-1.47-1.18-2.78-2.18-1.16-.49-2.09-1.61-2.17-2.92-.04-.22-.06-.46-.03-.7zm-1.03.3v-.06l-.01.01c0 .02 0 .03.01.06zm2.81-.13c-.03-.01-.05-.01-.08 0 .28.52.25.06.08 0zm14.58.2c-.04 0-.08.02-.11.02.02.04.02.09.04.13.03-.05.04-.1.07-.15zm-42.94.45c-.04.41-.04.57.02.55.01-.2 0-.38-.02-.55zm15.46.3c.01.2-.01.39-.05.59.2.14.47.22.83.24-.41-.39-.66-.65-.79-.83zm-9.17.35c-.11.68.14.72.31.58-.01-.16 0-.32.01-.49-.08-.05-.18-.08-.33-.09zm-11.75.24c.03 2.13 1.82 4.47 3.9 4.63-.11-.13-.08-.12.09.01.5.02 1.01-.08 1.52-.34.01.06.01.11.02.16 1.38-3.5-.2 1.93.94 1.39 1.51-.73 2.84-4.01 2.43-5.68-.45 1.37-1.26 2.72-2.17 3.16-1.15.55.51-5.11-.99-1.25-.33.46-.75.42-1.08.28.18.64-.01.41-.49-.3-.13-.11-.09-.08.51.74-1.96.42-4.07-.92-4.69-2.8zm17.02.01c-.32.08-.69.15-.86.32.16.31.3.62.35.93.03.04.04.06.09.1.08.93.19 1.42.31 1.65.11-.01.2-.02.33-.03.23-.42.4-1.55.34-2.65-.17.47-.39.51-.57-.32zm15.54.92c1.8 1.38.33 1.43 0 0zm-20.36.26c-.24.34-.37.77-.41 1.21.67 1.25-.64.26 1.15 1.47-.31-.23-.71-.37-1.08-.48.28 1.28 1.26 2.09 2.29.09.2-.21.3-.29.41-.36-.2-.28.01-.96.23-1.58-.17-.13-.33-.26-.51-.36-.9 1.54-1.74 1.03-2.08 0zm4.75.29c.16.06-.13.38 0 0zm3.68.26c-.54 1.64-1.8 3.15-3.46 3.74-3.36.1-.14 1.54.59.01 1.76-.67 3.07-2.3 2.87-3.75zm4.85.85c.23.23.49.42.77.58 3.09 1.45 1.7-.63-.77-.58zm-.34.06c-.25 2.43 2.06 2.09 0 0zm-9.27.17c-.52.32-.87.44-1.08.42-.19.85-1.68 3.69.95 2.02.52-.42.62-1.04.45-1.68-.25-.1-.35-.25-.13-.38-.05-.13-.13-.25-.2-.37zm16.42.63c.33 1.44 1.81 1.38 0 0zm-15.61.55c-.13.38.17.06 0 0zm24.68.01c-.38.28-.84.44-1.32.44.29.41.39.81.15 1.05.5.33.94.74.95 1.24.07-.01.11 0 .17 0 .35-1.7 1.47-2.69.09-2.51 0-.08-.01-.15-.03-.22zm-15.1.19c-1.59 1.09 1.06.95 0 0zm-14.97.32c-2.13 1.44.25 1.03 1.38 1.87-1.95-1.33-.16.02-1.38-1.88zm7.62 1.1c-3.13.59 1.7.39.01 0h-.01zm19.27.14c-1.33 1.36-2.28 2.39.44 2.43.07-.11.15-.21.25-.3.37-.04.74-.01 1.1.08.48-.56-.67-1.88-1.78-2.23zm-8.71.24c.69.73.89.26 0 0zm-2.62.21c.27.29.48.45.63.54-.1-.16-.17-.3-.2-.42-.12-.05-.26-.09-.43-.12zm3.91.12c-.02.08.17.07 0 0zm-25.5.49c-.41.21-.81.3-1.21.33-.38.18-.79.28-1.22.27.88.24 1.74.63 2.19 1 .24-.48.36-1.02.24-1.6zm-2.43.6c-.29-.08-.59-.15-.87-.18.29.12.58.17.87.18zm25.19-.3c.33.29.51.31.56.26-.11-.07-.33-.17-.55-.26h-.01zm13.74.17c-.11.31-.32.76-.5 1.3.93.65 1.63 1.68 1.88 2.78.19.33.33.7.42 1.07.93-1.83.04-4.25-1.8-5.15zm-15.92.45c-.05-.01-.1-.01-.15.01.6.89.46.07.14-.02zm4.85 0c-.03.09-.01.15.03.2.02-.06.03-.12.04-.19l-.08-.02zm-4.58.22c.14 1.22 1.24-.08 0 0zm1.64.26c-.72-.05-1.13.32-.42 1.24.7.26 1.68.69.59.53-.56.13 1.24 2.5 2.67 2.67 1.75-.71 1.2-.28.97.14.5.03.34.28.06.41 1.36.13 1.57-2.5 1.65-2.13.67 4.05 1.06-3-.5-.8-1.16 2.29-.94 1.62-.84.41h-.08c-.24-.14-.04-.41.11-.63v-.3c-.15.01-.48.12-1.11.37-.1-.01-.21-.06-.32-.09-.22.95-.4 1.79-.67 1.22.36-.5.42-.96.32-1.36-.68-.348-1.36-1-1.75-1.55-.24-.08-.47-.14-.68-.15zm-1.89.35c.44.8.94.14 0 0zm-17.88.14c-.98.49-.6 1.82-.5 2.67.07-.06.14-.11.23-.16-.13.46-.13.93-.04 1.39.83.6 1.93 1.58 2.05 2.65.47.25.99.4 1.51.41l.08-.03c-.36-1.29-1.37-2.34.95-.59.53.33 1.15.43 1.71.33.02-.11.05-.22.05-.35-.59-1.79-.25-1.71.76.01.41-.32.66-.83.57-1.54 3 1.69 1.68 2.19.02 2.25.99.46 2.27.17 2.98-.55-.25.05-.67-.08-1.16-.65.96-.06 1.33.2 1.36.42.36-.49.47-1.12.14-1.84-.86.57-.99.46-.88.08-.31.14-.65.24-1 .25.47 1.42.89 2.26-.22.27.01-.1 0-.18 0-.27-.42-.02-.84-.12-1.2-.34-.3-.55-.55-.96-.76-1.28-.21-.02-.39-.04-.54-.04.05.21.09.39.2.73 0 1.49-1.92 1.99-3.07 1.5 1.39-.6 2.2-1.67.27-.85-2.09-.01-4.13-2.36-3.52-4.44zm8.73.87c-.12.07-.2.18-.27.31.3.28.49.7.43 1.31 1.45 2.58.31.45-.16-1.63zm1.73.25c-.41.9-.72 1.52.26.93.04-.37-.02-.7-.26-.93zm-4.39 1.32c-.05.02-.06.11-.04.27.03-.09.04-.18.04-.27zm7.89.13c-2.1.53 1.59 2.79 2.85 1.08-.24-.89-1.87-.64-2.86-1.08zm-2.2.48c-.09.11-.52.29-.79.49-.06.1-.13.2-.21.3.01.03.02.06.05.09 1.28 3.12 1.67 1.6.94-.88zm-12.97.25c.01.01.19.12.31.2 0-.03.01-.07.02-.1-.09-.01-.19-.04-.32-.09zm30.86 2.02c-.04.24-.09.46-.14.69 1.69 1.07 3.27 4.41 1.7 2.17-.34-.75-1.23-1.07-1.93-1.45-.17.4-.4.75-.74 1.05 1.8-.07 3.56 1.16 4.28 2.81.28-.49.52-.99.59-1.37-.21-1.9-1.88-3.56-3.77-3.9zm-9.53.45c-.4 2.2 1.95.93 0 0zm-1.31.03c-.25.08-.33.23-.34.36.07.07.15.15.2.22.08-.05.16-.2.14-.58zm4.55.81c-.14-.01-.33 0-.59.03v.03c.07.13.12.26.17.38.37.17 1.16-.41.42-.46zm-18.53.11c-.04.03.02.07.12.1-.04-.03-.08-.06-.12-.1zm.12.1c.2.19.45.34.73.48.08-.09.15-.2.21-.31-.43-.04-.77-.1-.95-.16zm21.83.11c-.04.07-.09.14-.12.22.15.21.63.43.5-.17-.17-.04-.29-.05-.38-.05zm-19.65.36c.03.2.02.39-.01.56.54.17 1.07.34 1.53.53-.26-.29-.73-.65-1.52-1.09zm-3.68.29c-.14.08-.29.16-.45.23.12.05.25.08.39.11.02-.04.03-.08.06-.12.01-.08-.01-.15-.01-.23zm22.05.28c.28.48.34.57.3.23-.1-.08-.19-.16-.3-.23zm-22.89.06c-.29.02.71 1.33.58 2.4-.35.52-.25.79.08.95.01-.05.01-.1.03-.15.34-.89 1.14-1.27 2.02-1.33-.24-.13-.46-.27-.64-.44-.1-.04-.16-.07-.12-.1.03.03.08.06.12.1.34.12 1.33.22 2.3.2-.32-.2-.72-.32-1.14-.4-.53.12-1.12.05-1.65-.23-.59-.09-1-.24-.94-.64-.35-.24-.56-.36-.64-.35zm14.8.03c-.02.26-.05.62-.04.98l.23.13c.61.22 1.1.58 1.46.96-.34-.65-.45-1.14-1.65-2.07zm4.03.11c-1.09-.05-.35.53 0 1.1 2.11 3.77 1.68-.35 0-1.11zm7.03.16c-.12-.01-.25-.01-.37.02.17 1.15 2.28 1.2 2.85 2.45 1.82 2.59-.55-2.26-2.47-2.47zm-19.5.11c1.37 1.59 2.27-.15 0 0zm-7.62.19c-.27.38-.66.66-1.11.78.63-.08 1.04-.11 1.26-.04 0-.25-.05-.5-.15-.74zm-1.11.78l-.47.06c.16 0 .32-.02.47-.06zm26.04-.65c-.04.13-.086.26-.14.38.164-.08.2-.22.14-.38zm.6.42c-.48.02-.79.16-.99.33l-.11.12c-.73.87.45 2.5-.9.27-3.62-1.58-.436 3.95.81 2.05.45-.58.41-1.44.65-2.09-.05-.08-.06-.13.04-.1.1-.24.25-.44.49-.58zm-11.87.35c-.04.13-.09.25-.15.36.22-.07.46-.09.73-.05-.02-.06-.03-.1-.06-.16-.146-.06-.32-.1-.52-.15zm12.714.9c-.56.1-.34.3 0 0zm1.29.06c-.11.28.21.62.61.98-.36-.46-.37-.74-.2-.87-.13-.05-.27-.09-.4-.12zm-15.13.25c-1.31.68-3.09.76-1.96 1.86.24-.61.96-.76 1.7-.73-.02-.4.07-.79.26-1.13zm5.65.08c.034.11.06.21.07.31 1.24 1.01 2.38 2.5.94.74-.475-.415-.78-.75-1.01-1.04zm-19.896.26c-.04 0 .26.26.77.67.06-.03.12-.08.19-.12-.46-.27-.9-.55-.96-.55zm9.32.2c.17.55.15 1.24-1.33 1.45-.1.04-.23.076-.35.11.01.03.03.055.04.086-.03-.02-.08-.04-.12-.06-1.06.31-2.61.47-3.43-.04-.3.2-.54.48-.7.85 1.18.72 2.46 1.32 3.78 1.73.19-.05.37-.11.52-.16 3.17-.44-.34-3.16 1.95-1.73.66-1.15.36-1.79-.35-2.23zm-8.02.56c-.1 0-.26.01-.41.03l.6.48c.14.11.29.21.43.31 0-.21-.01-.37-.04-.5-.18-.09-.37-.2-.56-.31h-.01zm25.83.02c-.29.07-.04.55-.05.79-.94-.68-.75-.29-.38 0 .18.05.37.12.56.2.09-.05.15-.18.13-.42-.2-.21-.25-.41-.19-.57h-.07zm3.42.12c.34.3.68.62.92.98.93.21.98-.08-.91-.98zm-11.25.13l-.09.04c.9 1.08.92.76.1-.04zm12.66.03c-.01.13.01.18.09.14-.024-.05-.06-.09-.084-.14zm-13.23.12v.03h.03l-.03-.02zm.2.15c.23.27.59.84.78 1.45.06-.46-.25-1-.77-1.45zm-4.67.46c-.16.17-.3.38-.39.6.64.93 1.05 1.99 1.43 3.06.48.12 1.07.11 1.58.07 0-.02-.02-.03-.02-.05.03.02.07.03.1.04.89-.08 1.4-.19.51.19.7.18 1.48.09 2.01-.31-.09-.34-.25-.67-.41-.95-.93.273-3-.12-1.79-1.057 3.1-1.25-2.02.56-2.56-1.1-.19-.14-.34-.31-.45-.5zm15.19.66c.05.13.14.29.29.48.62.31.67.28-.29-.47zm-14.33.56c.54.08.58.63 0 0zm-2.3.95c-.04.08-.06.17-.09.25.04-.08.08-.15.11-.24l-.01-.02zm11.8.57c-.31.04-.62.14-.9.29-.06.08-.08.14-.11.21.13.19.07.35-.07.14-.13.72 1.48.76 1.08-.64zm.4.19c-.3.15-.42.47-.13 1.13.12-.36.12-.74.13-1.13zm-7.96 1.16l-.05.02c-.87.68-.02 1.07.87 1.13-.33-.37-.62-.78-.82-1.15zm7.83.5c-.04.11-.07.22-.09.33.39-.13.54-.26.09-.33zm-1.77.98c.07.22.14.32.19.39.05.03.09.04.12.04.02-.09-.06-.32-.31-.43zm-1.64.08c.05.23.2.56.51 1.03.1.13.13.18.22.29.38.143.76.34 1.12.56.25-.52-.05-1.14-.49-1.6-.45-.17-.9-.27-1.36-.28zm-1.04.16c-.12.04-.24.09-.36.14-.27.24-.57.28-.88.21-.07.05-.143.1-.22.14.387.095.707.46.28 1.145.56-.59 1.23-.77 1.93-.71-.27-.3-.523-.61-.75-.92zm-9.27.27c-.09-.01-.16.01-.22.04-1.43-.25-2.23 1.56-1.133 2.53l.07.08c.23-.1.49-.15.79-.1-.028-.09-.04-.13-.07-.24.58-1.55 2.96-.85 4.03-.26 2.77 1.73-2.11-1.99-3.47-2.05zm7.12.43c-.18.03-.36.03-.54.02.44.69.73 1.33.746 1.8.09.08.18.18.27.29.36.13.72.12 1.04-.15l.06-.027c-.3-.26-.59-.52-.83-.77-.71-.54-.86-.93-.76-1.16zm6.197.38c-.04.07-.08.13-.13.19.21.01.31.03.41.06-.09-.08-.188-.17-.28-.25zm.43.38c-.15.15-.84.32-1.33.42.56.37 1.08.78 1.48 1.14 1.33 2.18 1.96 2.69 1-.06-.28-.52-.68-1.04-1.16-1.5zm-5.9 1.69c.06.09.11.17.16.26-.02-.1-.08-.19-.15-.26zm1.79.27c-.51-.02-1 .09-1.44.4.16.42.2.84.07 1.19.5.45 1.08.88 1.7 1.21.05-.16.09-.33.09-.55-1.19-2.02 1.2.16 2.31-.32.25.08.51-.05.75-.24-.34-.28-.74-.56-1.15-.82-.75-.08-1.51-.4-2.2-.85l-.13-.01zm4.12.47c-.08.05-.16.09-.23.13l.26.29c.15-.29.18-.5-.03-.41zm-9.75 1.35l.01.01c-.06-.01.38.21 1.78 1.025.52.3 1.43.64 2.28.75-.03-.45-.22-.93-.49-1.35-.07.03-.15.05-.23.07-1.22.37-3.08-.41-3.35-.5z" fill="#b4b3b7"/>
+	<path d="M472.07 426.59c-1.31-6.13 4.08-11.39 10.91-11.95l35.34-2.93c6.88-.56 7.69 3.69 2.89 9.77C510 435.68 503 451 500.2 465.4c-1 6.14-5.61 6.18-10.22.1-9.26-12.75-15.23-26.16-17.91-38.91z" fill="#525767"/>
+	<path d="M534.3 400.64c2.292 2.634-.76 6.063-2.855 7.682-1.384 1.573-8.564 4.938-4.674.88.48-.997 5.24-3.358 1.31-1.555-3.95.757-5.34 6.66-9.02 5.324 2.31-1.75 3.87-5.72 1.39-7.97 1.73 2.03-3.78 7.85-2.02 4.97.99-1.16 1.24-4.25-.89-4.98-3.59-1.28-7.33 1.31-10.19 3.28 2.26-1.49 6.97-2.74 8.17.71.88 2.64-3.48 4.63-5.58 4.77-2.16-1.34 1.98 2.31-.86 1.12-.51-1.4-1.89-3.73-.87-2.72-.15-3.83-5.13-3.98-6.86-3.98.42-2.4-2.43-3.46-4.35-2.85-3.07-.87-6.61-.14-8.9 2.36-2.02 2.92-3.67 6.31-6.87 6.92 3.07-1.77 5.9-5.47 4.42-9.13 1.03-1.82.24-6.09-.39-1.91-2.48 2.13-6.78 3.2-9.29 5.46-2.27-.58-3.37-1.34-1.11 1.02 1.01 1.11-3.66 2.58-4.04 4.75-1.45.4-2.73-1.58-4.5-.74 1.1-.37 3 1.55 1.16 2.02-1.24.09 0-.65-1.46 1.19-2.97 1.43 1.54-7.3-.24-4.39-2.5 2.05-2.84 5.31-4.36 7.9-.3.91.26 1.93 1.16 2.19-1.52.58-3.29-1.62-1.26.96-1.31 1.03-3.55 3.74-.72 1.33 2.9-.79-.35 5.61-2.22 6.3-1.25 1.84-7.51 1.16-2.41 2.05 3.09.87 6.01-1.92 7.55-3.34 1.24.94 4.18 3.27 3.14 3.95-1-.8-.91 3.55-3.51 3.47-1.33.79-3.69-2.52-2.26-.11 0 1.62 3.89 1.42 2.48 2.07-2.65-.04-3.65 3.91-1.32 5.18 2.13 1.49-1.03-1.22-.05-2.41.34-1.98 2.36-1.9 2.06-1.3.68-2.33.55.83 1.45.9 1.49 1.87 4.24 1.64 1.93 4.58-1.4 2.45 1.58 5.42 1.32 6.8-2.25-3.96-9.14-2.85-9.66 1.76-.42 2.02.36 6.93.67 2.18 1.45-4.39 7.81-3.55 10.14-.4 1.49 2.11 1.87 3 .69-.36-2.88-2.88 2.34-3.81 1.3-.19-.6 4.5.22-.58 2.58-1.13 2.22.28.54 5.69-1.46 6.64-1.15.55.52-5.11-.99-1.25-.95 1.33-2.62-1.4-1.05.73-1.96.42-4.07-.92-4.69-2.8.04 2.66 2.83 5.68 5.51 4.3.41 1.97-1.7 3.71-3.56 2.93 1.68.22 3.9 1.33 3.3 1.84.56-1.13 1.48-2.26 2.59-2.88 2.05-.81 7.55.92 6.31 3-.79.22 2.95-.46 2.72 2 2.56 4.57-2.96-5.61 1.38-4.13 2.37.65-2.03 5.35.73 3.53.97 2.12-1.89 3.55-3.57 2.51-1.31-2.38-1.77-2.6-1.1-.59 0 1.49-1.92 1.99-3.08 1.5 1.39-.6 2.2-1.67.27-.86-2.1-.01-4.13-2.35-3.52-4.44-1.64.82.57 4.05-1.21 3.32.04.04 3.34 1.84 2.94 3.76.15 1.17-.77 2.32-1.97 2.31 2.71-.39 1.89-.1 2.06 1.97 2.78 3.32-5.42-2.86-.7.9 2.97 2.31 6.97 4.2 10.79 3.42 1.17-.71.25-2.24.8-3.25 1.17 1.15 1.75 2.67 2.28 4.18 1.66 1.42 3.08 3.4 3.12 4.48.89.78 1.8 2.84.03 3.22-1.96.6-5.59-1.81-1.55.53 1.16.66 4.27 1.64 4.26-.6-1.19-2.03 1.2.16 2.32-.33.83.26 1.93-1.7 1.38-1.45-2 1.3-4.53-.61-5.89-2.03-2.29-1.75 1.28-1.95.22-.23 1.68-1.79 4.44.14 5.81 1.39 1.33 2.18 1.96 2.69 1-.06-1.04-1.96-3.77-3.89-5.99-2.82-1.12.96-2.78-1.16-3.21-2.27 1.22.69 3.2.36 3.25-1.32.89 1.91 5.5 6.03 2.13 1.8-2.06-3.13 2.45-.47 1.23 1.05-.94.27 3.22-.54 1.13-.65.73-.81.11-1.88.66-2.73-1.62-3 4.04-.27.16-2.05 1.12-.94 7.37 3.48 3.66.6-3.66-1-1.18-2.72.31-1.06 2.43 1.18 4.2 1.21.98-.28-2.16-2.09 1.37-1.62 1.59.16-.28 1.07 1.59-1.48 1.83-2.71-.24-2.19-2.4-4.05-4.61-3.96 1.76-1.55.78-4.86 2.07-6.08 2.58-.26 4.93 2.76 4.24 5.2 1.72-1.99.59-5.25-1.84-6.02.25-1.91 1.63-3.04.16-2.85-.02-1.44-3.48-2.05-2.06-2.52 1.49.84 3.42-.55 3.22-2.21 3.27 1.68 5.57 1.45 3.49.43 1.97.35 3.26-2.11 2.48-3.75 3.32-.13 6.15-6.44 3.82-4.08 1.15-1.51-.48-6.92 1.55-2.96.5 2.96-.32-2.94 2.07-.11 2.96 1.23 6.55-.41 7.33-3.59 1.65-2.51-2.05-7.76-2.64-7.24 2.86 4.27-1.64 10.47-6.51 9.41-.2-1.24-1.35-2.29-2.65-2.07-1.25-.9-2.03-3.15-.69-4.62 1.01-.69 2.82.95.81-.79 3.16-1.52 7.41.14 8.39 3.57-.11-3.5-2.59-8.26-6.74-7.38-3.2.88-.39-.62 1.3-.54 2.1-.53 3.07-4.02.79-4.99.99-3.24 1.86-5.78 5.19-7.1 1.23-2.33 2.68-2.03 1.85.47 1.76-1.89.41-4.4 1.37-6.31-.21-2.51-3.73-4.89.82-4.89 3.11-1.45 6.52-4.4 6.37-8.12-.48-1.26-1.53-2.38-2.89-2.67zm-49.734 3.94c-.663 1.618-6.926 5.292-3.055 1.908.93-.77 1.95-1.44 3.06-1.908zm.637 1.637c-.35 1.797-2.08 5.125-3.783 3.562 1.485-.9 2.892-2.06 3.783-3.57zm6.486 1.47c-2.06.733-3.78 5.212-4.78 5.258.46-2.476 2.61-4.24 4.78-5.257zm3.64.543c2.5-.23 5.2 1.867 1.47 3.102-.93.936-2.85-2.42-4.93-.904-2.04.214-6.13 3.697-2.46.29 1.65-1.384 3.71-2.462 5.91-2.488zm9.23 2.58c3.14-.845 3.88 3.395 1.84 4.81-.96-.513-2.84-2.1-4.53-1.33-1.5.35-7.1 3.835-3.88.44 1.75-1.21 1.18-1.01 3.34-2.23 1.73-1.702 7.76.866 3.24-1.685zm-22.67.3c-.56 1.716-5.27 1.83-2.16.345.7-.192 1.42-.308 2.15-.346zm4.13.804c1.32 2.66-2.08 3.957-1.92 3.56.25-1.343.96-2.593 1.92-3.56zm29.37.002c-.43 1.65-2.25 1.664 0 0zm9.63.1c3.49-1.692 4.32 3.91 1.92 4.524-2.17-.268-2.73-2.785-1.93-4.524zm-33.32 1.172c2.35-.306 4.46 1.292 1.2 1.703-1.78 2.55-1.92-.81-1.54-.74 0 1.68-5.5-.08-2.03-.44.75-.29 1.55-.47 2.36-.51zm-9.46 1.484c.05 2.574-4.11 2.917-2.15.465.73-.068 1.45-.23 2.15-.465zm-8.08.068c1.74.81 1.25 1.688-.36.358zm20.4.537c-.03 2.636.11 2.376-2.31 1.842.55-.84 1.41-1.43 2.31-1.85zm20.1.055c-.4 2.143-3.4.077-1.2.06-1.66 1.74.41-.542 1.2-.06zm3.95.578c2.39-.25 4.92 1.584 4.73 4.13-1.59.136-2.02-.23-2.88-1.33-3.13-.053-2.55.326-1.85-2.8zm-44.43.37c3.74-.05.09 1.7.27 1.56 2.21-.187 4.3-.805 1.25 1.085-2.47.993-1.96-2.644-2.01-2.14-1.31 3.445-1.34-1.853.48-.506zm34.31.122c2.55.122-2.8 3.372-.36.87l.26-.605zm7.55.07c.16 1.58-2.13.28 0 0zm-14.56.247c1.33.29.76 1.03 0 0zm-16.2.17c2.73-.81 3.94 3.35 1.13 2.13-.54-1.14-3.16-.15-1.14-2.14zm-.56.01c.19 2.43-1.54-.07 0 0zm11.67.13c1.15-.28-.94 1.24 0 0zm5.96.09c1.92 1.67-.34.92-.01.61-.02-.22-.44-.41.01-.62zm-4.93.11c4.08 1.21-4.14.88 0 0zm-27.45.11c.53 2.96-1.99.92 0 0zm57.24 0c-2.09.49-4.81 5.05-3.3.28 1.1.28 2.22-.07 3.29-.28zm-46.32.01c-1.13.7-4.63 3.39-2.07.16.69.01 1.39-.01 2.06-.17zm-11.79.49c-.35 2.1-2.22.77 0 0zm34.43.58c.13 2.34-2.04-.19 0 0zm-4.45.12c.22.21-.23-.03 0 0zm-.6.12c-.09 2.14-2.02.7-1.23.71-2.47 1.85-.16-1.07 1.23-.71zm27.38.37c-2.38 2.85-2.95.69 0 0zm-7.98.07c1.18-.37 2.77 1.67 1.25 2.07-.93 1.39-4.72 1.31-1.9-.28-1.54-.99 3.66-.03 1.64-.91-.2-.47-1.93-.24-1-.89zm-19.08.35c.36.98-1.34 1.02-.09.09zm-36.17.2c1.17 1.28 1.1 2.84.06.69-.05-.22-.07-.46-.06-.69zm33.12.15c1.19.67-.98.91 0 0zm1.21.11c.45 1.07-1.79 1.23 0 0zm8.96.08c-.63 1.18-1.82 3.26 0 0zm-16.82.08c.45 1.39-1.63-.15 0 0zm32.22.29c.72-.05.03.44 0 0zm1.12.65c.39 1.59-4.13 1.46-.3.11zm-41.41.18c1.11 3.33-3.5-.15-.79 2.4-1.72 2.79-3.24-.37-.77-1.94.49-.23 1.02-.39 1.55-.47zm23 .04c.12.32-.28-.03 0 0zm4.19.13c-.95 1.55-2.04.81 0 0zm3.19.14c.82-.14-.42 1.08 0 0zm-6.41.45c.25 1.64-1 .16 0 0zm11.11.09c1.48.64-.96 2.04 0 0zm-41.32.13c2.99 1.02-5.39 2.07-1.55.73.54-.19 1.06-.43 1.54-.73zm24.5.11c-.52 3.05-2.24 1.22 0 0zm15.92.39c.4.33-.39.1 0 0zm-39.78.15c.15 1.21-1.99 1.05 0 0zm39.65.11c1.89 1.62-2.07 2.49-1.09 1 1.3 1.96-.47-.91 1.09-1.01zm-23.29.89c.63.15-.88 1.01 0 0zm27.32.11c1.93 1.12-4.1 4.28-.64.82zm-55.14.03c1.28.47-2.63 1-.42.02zm49.38.01c.09 1.74-2.62.06 0 0zm-7.47.16c1.53.91-.64 1.32 0 0zm-17.43.01c-.14 1.14.38 4.5-1.13 2.25-.93-.37.14-2.42 1.13-2.25zm31.94.08c4.3-.96-2.29 3.45 1.15 1.49 1.46-.26-2.89 3.24-2.7 2.8-1.4-.29 2.18-2.25 1.57-3.85l-.01-.4zm-38.51.08c1.19-.04.32 3.77-.06 1.57 1.45-1.62-2.6.65-.29-1.36zm-2.21.3c-1.16 2.26-2.02.81 0 0zm25.13.22c.08.09-.1.09 0 0zm-17.96.15c.99 1.76-3.5 1.64-3.03.17 1 .3 2.08.22 3.04-.17zm-21.89.01c.38.83-.59 5.58-1.26 3.27.27-1.26.02-2.43 1.26-3.28zm36.95.85c.64 2.98-3.24 3.63 0 0zm-26.01.1c.63 1.1-.53 3.04 1.12 3.73 3.04-.17-1.85 3.58-.55.8-.08-1.21-1.19-2.2-2.11-2.36-1.32 1.64.36-1.93 1.54-2.18zm-7.92.29c-.02 2.05-1.58 2.97 0 0zm16.61.32c1.19.11 1.01.57 0 0zm19.47.15c3.03.77-2.15 1.86 0 0zm-24.68.03c1.61-.32 1.02 1.02 0 0zm6.65.54c1.12 1.29-4.19.47 0 0zm-13.07.02c-.13 2.49-.25 2.13 0 0zm10.05.01c.13.07.07.11 0 0zm-1.83.01c1.06.62-.68.54 0 0zm.39.45c.33 1.39 1.25 3.54.68 3.67-1.53-.8-2.11-4.85-1.76-1.07-.72 3.26 5.2 4.99 1 6.15-1.25 1.16-.41 3.9-2.71 2.4-1.63-.24 1.95 1.12 1.12 2.5-.55.79.06.6-2.33-.16-2.82.11-2.95-.21-.92-1.81 1.36-3.26 1.14-2.33-.99-.55-2.95.83.13-5.48.82-5.45-1.07 2.09 1.8 4.11 3.53 2.57 2.36-1.62-.34.24-1.51-.7-1.91-1.4-.13-2.24-.58-2.24-.5-1.14.89-.95.41-1.17 1.39-.68 1.36-2.47 1.86-3.5.49-.29.61-.92 1.37-.65zm1.61.01c1.59.79 4.99 3.57 1.45 1.93-.64-.51-1.15-1.18-1.45-1.93zm31.17.05c.97.62-1.64 1.08 0 0zm-14.07.36c1.05-.02-.8 1.6 0 0zm-25.57.24c1.52 1.26-.27 3.25-.82.94-.2-.48.56-.69.81-.95zm-5.95.01c1.11 2.88-1.89 4.52-1.07 1.45.46-.4.8-.91 1.06-1.46zm46.08.22c.95.76-1.15.51 0 0zm-37.23.26c1.91-.18.79 1.63 0 0zm-14.14.02c2.94 1.06-1.59 1.91 0 0zm39.86.44c2.81-1.17 2.38 2.7 3.83 3.07 3.05 1.39-3.32 3.44-.4.85.64-.37-2.3 1.5-2.15-.57.9 2.2-2.71 3.65-3.47 4.84-1.79-3-.67-4.94 1.14-7.26l.57-.55zm17.92.15c.81 1.14.18 3.75-1.49 3.21-3.2.51-.24-1.99-.27-1.5.48-.4 1.32-1.03 1.76-1.7zm-51.36.08c1.82 1.96-2.87 3.92-.63 1.25zm18.8.01c-.17 3.11-3.49.03 0 0zm-15.34.07c2.08 1.19-.86 1.12 0 0zm24.77.02c1.34 1.42-1.69 4.23-.53 5.21.49 2.29-2.12 4.41-4.22 3.78 2.14-3.14-2.96-9.07 3.08-8.48.57-.09 1.13-.26 1.66-.51zm13.32.14c.18-.1.11.27 0 0zm-36.27.78c-.03 1.19-1.88-.19 0 0zm40.93 1.89c-.24 3.17-2.68-.49 0 0zm4.53.46c-1.6 1.96-3.19 1 0 0zm-3.2.05c.94.07-.53.78 0 0zm-24.99.05c.06 1.54-.74 3.21-.22.71zm-17 .23c-.06.83-2.1.43-.71.17zm35.75.12c2.19 1.16.87 4.81.52 1.22-.31-.73.16 3.91-2.45 2.52-1.91-.51 1.42-3.26 1.13-1.81-.22-.83-.18-1.63.8-1.93zm-39.34.33c2.07.49 3.69-.09.88 2.04-.93 1.98-.39-1.66-.88-2.04zm46.7.32c.29.23-.53.2 0 0zm-8.63.5c.12.13-.26.2 0 0zm-4.8.3c2.21 2.37.2 1.77-1.39 3.06.21-1.11.69-2.17 1.39-3.06zm-34.9.15c1.34.76 1.98 4.47.13 4.32-.93-1.51-2.13-2.89-.13-4.32zm18.55.09c2.31 2.33-.4 5.48-1.74 4.41 1.67-1.57-1.6-4.03 1.06-4.1l.25-.12zm-17.14.27c.24.41.26.61 0 0zm12.4.32c2.06-.22 3.09 1.17 1.81 2.97-.58 1.84-4.07 1.72-3.79-.32.21-1.12.93-2.16 1.98-2.65zm22.12.28c.89.06 1.59 1.03.27.21zm-34.7.36c1.34.01 0 1.77 0 0zm27.13.54c3.05.96 2.23 3.68.62 5.48-.97 2.24 1.21 4.3 3.37 4.28 1.59 1.64 4.75 2.32.83 2.09.33.33 3.46.8 1.74 3.07-.13 1.79 2.47 6.35-.37 4 .3-2.28-4.42-3.63-1.4-5.1.03-.48-3.97 2.18-1.89-.72.93-1.13-3.43 3.43-3.41.27-.47 3.24-.07-4.12-2.15-4.46-2.95-2.36 4.07 1.52 3.36 3.89.49-3.66-2.25-7.57-5.04-8.55.87-1.6 1.44-.42.89-1.42 1.75.31 3.23-1.17 3.44-2.83zm-29.85 1.1c1.93 1.12 1.04 1.76 0 0zm37.25.6c3.03-.13-4.82 4.62-1.81.64.5-.42 1.16-.62 1.81-.64zm-41.66.79c.35.35-.41.21 0 0zm17.86.29c1.56 1.1.04.72 0 0zm10.55.11c1.17.24-.61.71 0 0zm-.23.63c1.41 1.43-3.74 2.4-.37.17.04-.22.23-.14.37-.17zm-10.87.14c1.12.46 4.88 1.46 1.87 1.45-.82-.15-1.49-.73-1.87-1.45zm1.4.18c.71.12 1.12.74 0 0zm32.13.14c1.19 1.71.77 2.14-.28.53zm-1.19 0c.36 1.21-.61.13 0 0zm-6.84.01c2.4-.53 1.94 1.61 1.58 1.65 2.07-1.46 2.37.72-.1.22-1.71 1.49-1.62-.26-1.62 1.94-2.57-.46-4.39-3.92.14-3.81zm-16.5.95c-.24 1.57-2.84 3.69-1.47.63.52-.12 1.01-.34 1.47-.63zm-5.32.14c1.98-.31 3.67 2.73 2.62 3.68-1.81.21-3.76-1.52-1.18.7 2.6.52.57 2.83-1.11 1.38-1.72-.39-4.14-3.59-2.94-4.53 1 .08 1.92-.56 2.61-1.22zm29.23.29c3.17.66-.89 6.15 1.11 3.73 1.62-.24-.32 4.85-1.89 5.64-2.63.14-4.77-5.46-1.89-3.6.38 2.46-.11-3.63 1.14-.85-.08 2.15-.41 3.42.69.35.65-1.66.49-3.4.84-5.28zm-13.84.47c1.24 2.59 2.07 5.35-.13 2.06-.17-.68-.15-1.42.13-2.07zm-19.66.63c.28.6-.3.36 0 0zm30.31.28c2.41.8.78 4.13-.4 1.45l.26-.85zm-43 .17c.83.33-.69 6.22 0 0zm41.43.05c-.41.64-.56.18 0 0zm-40.02.02c-.16.67-.46-.28 0 0zm39.6.19c-.16.62-1.04.42 0 0zm-16.14.59c1.23-.01.56.24 0 0zm-18.25.85c2.54-.27-1.44 5.67.04 1.34.04-.44.01-.89-.04-1.34zm7.22.1c2.07 1.2-.19 6.82-.4 3.1.34-1.07-.46-2.27.39-3.11zm-3.36.14c1.74 1.82-1.27 1.15 1.33 1.8-1.89 2.58-2.06-.37-1.33-1.8zm31.47.63c.04 0-.03.02 0 0zm-38.55.07c.9 2.84-1.4 1.13 0 0zm19.82.73c1.08-.29-.13.92 0 0zm-.9.01c-.3 2.74-3.38.34 0 0zm-10.29.82c2.04 2.68-1.51 1.91 0 0zm13.7.14c2.07.46 3.56 6.14 1.32 2.59-.32-.92-.85-1.75-1.32-2.59zm-.71 1.37c.63 1.4-.9.49 0 0zm-9.6.28c2.28 1.41 1.79 2.05-.62.52.17-.21.38-.39.61-.52zm24.95 1.14c1.92 1.91-.92 5.43-.23 1.18l.11-.69zm-17.8.55c2.15 2.44-2.39 4.88-2.31 4.47-1.37-1.07-2.19-1.41-.54.17-2.94-.14 0-4.65 1.04-4.18.62-.03 1.23-.21 1.8-.45zm18.76 1.07c.69.39-.16.57 0 0zm-17.77.13c1.69.91-1.86 2.31-.07.24zm17.78.2c1.16 1.34 5.47 1.15 3.18 3.45-1.74 2.24-4.87-.11-3.22-2.51.04-.32.04-.63.04-.94zm-11.31 1.29c-.31 3.14 4.88 4.88 4.97 5.79-2.38 1.82-5.89-.74-5.1-3.58.57-3.21-1.06 3.91-1.22-.12.81 3.3-4.56-.72-1.18-1.59-.26 3.11.26-.75 1.97-.25.19-.08.39-.16.57-.26zm-25.93.07c-.26.85-.19.37 0 0zm27.63.1c.24-.1.32.59 0 0zm-16.16 1.2c.34 2.24-.58 5.62-.93 1.68-1.61-1.57.9-1.08.93-1.68zm-5.79.07c1.13.07-.23 1.42 0 0zm1.21 1.12c1.96-.26 4.43 3.04 2.8 4.36-3.63 2.31.63-4.06-1.6-1.76-1.68 3.25-3.24-.92-1.82-2.47.19-.07.4-.14.61-.13zm7.69.85c.2 1.44-1.11 3.08-2.87 3.75-.73 1.52-3.94.08-.58-.01 1.65-.6 2.91-2.11 3.45-3.74zm4.85.85c2.47-.05 3.86 2.03.77.57-.28-.16-.54-.35-.77-.58zm-.34.05c2.06 2.09-.25 2.43 0 0zm7.15.8c1.81 1.38.33 1.43 0 0zm-15.61.55c.17.06-.13.37 0 0zm9.58.19c1.06.95-1.59 1.09 0 0zm-14.97.32c1.22 1.9-.57.55 1.38 1.88-1.13-.84-3.51-.44-1.38-1.88zm7.63 1.11c1.68.38-3.14.59-.01 0zm19.25.14c1.54.47 3.16 2.81.45 2.43-2.73-.04-1.77-1.07-.45-2.43zm-8.71.24c.89.25.69.73 0 0zm-2.62.21c1.31.22 1.25 1.33 0 0zm3.91.12c.17.07-.02.07 0 0zm-2.75.77c.76-.08.8.69 0 0zm2.68.62c1.38.15-.17.59 0 0zm-5 .01c.41-.2.69 1.02 0 0zm.43.21c1.24-.08.14 1.22 0 0zm5.32.17c1.47 1.26-.66 6.12 1.36 2.15 1.56-2.2 1.17 4.86.49.8-.08-.38-.3 2.31-1.69 2.13-.57-.32 1.43-1.54-1-.55-1.44-.18-3.24-2.55-2.68-2.68 1.93.28-2.81-1.36-.54-.46-2.13-2.62 4.43-.97 2.49 1.75.53 1.14.75-3.42 1.56-3.15zm-5.57.43c.94.14.44.8 0 0zm14.8.22c.72 1.31-1.74.56 0 0zm-21.13.9c.11-.04.01.1 0 0zm2.41 1.59c.98.44 2.62.19 2.85 1.08-1.26 1.71-4.95-.55-2.85-1.08zm-2.2.48c.73 2.47.34 3.99-.94.88-.38-.32.79-.7.94-.88zm8.36 2.72c1.96.92-.4 2.2 0 0zm-1.31.03c.05 1.22-.82.27 0 0zm3.95.84c2.08-.29-.12 1.17 0 0zm4.39.34c.22 1.01-1.36-.33 0 0zm-20.03.3c5.35 3-2.99 2.29-2.57 1.95 1.51 1.64 6.5 1.12 4.75 4.16-2.3-1.43 1.22 1.29-1.95 1.73-1.51.58-5.04.95-4.33-1.5.66-1.7 2.95-1.58 4.29-.82-.67-2.08-5.44-.56-4.13-2.49.18-1.55-2.02-3.63.84-1.47 1.35.82 3.32.26 3.09-1.56zm16.7.11c1.24-.33 3.95 1.95 1.5 1.7-.27.08-2-1.87-1.5-1.7zm-6.42.55c2.02 1.56.93 1.89 3.13 3.81 2.04 2.49-1.09-1.55-2.37-1.48-1.03-.08-.82-1.61-.76-2.33zm4.03.11c1.69.76 2.11 4.87 0 1.1-.35-.57-1.08-1.16 0-1.1zm6.66.18c1.96-.48 4.79 5.21 2.85 2.45-.57-1.25-2.68-1.3-2.86-2.45zm-19.13.08c2.27-.15 1.37 1.59 0 0zm6.13.39c1.48 2.53-.39 1.43 2.24 2.86 1.97.71 2.96 2.73.76 3.11-.12-.52 2.06 2.35.56 3.15-.76.42-3.34.04-2.02-.98 3.1-1.25-2.03.56-2.56-1.09-1.53-1.19-.56-3.98 1.47-3.48.81.1-3-1.37-3.63.21-1.73-1.68 3.37-.97 3.16-3.69l.01-.06zm11.79.35c-.92.54-.54 1.95-1.18 2.77-1.25 1.91-4.43-3.63-.81-2.04 1.72 2.85-.69-.58 1.99-.72zm.84 1.25c-.34.3-.56.1 0 0zm1.29.06c1.51.31 3.73 1.81 2.41 3.48.11-1.61-2.75-2.66-2.41-3.48zm-10.56 1.2c1.41 1.16 1.55 2.05 0 0zm8.47.17c.69 2.5-2.15-.6-.21.79.01-.26-.32-.86.21-.78zm1.56.23c2.31.41-.26 1.41 0 0zm-4.25 3.52c.46 1.6-1.72 1.32-.9.29.28-.15.58-.24.9-.29zm-9.76.99c.53.09.57.63 0 0zm8.25 1.83c.5.21.32.94 0 0zm-12.44 3.06c-1.43-.25-2.24 1.56-1.14 2.54 1.81 2 1.33 1.94.79-.26.59-1.55 2.96-.85 4.03-.26 2.95 1.84-2.79-2.52-3.69-2.02z" fill="#9497a2"/>
+	<path d="M534.566 398.125c.788.905.932 1.903.713 2.89.8.457 1.43 1.218 1.81 2.063.26-.72.4-1.48.37-2.28-.49-1.263-1.54-2.386-2.9-2.673zm-48.504 1.105c-.168-.012-.38.47-.576 1.774-2.48 2.132-6.784 3.2-9.3 5.46-2.273-.586-3.367-1.347-1.108 1.016.31.34.058.72-.412 1.137.36.11.764.238 1.256.365 2.516-2.26 6.82-3.33 9.3-5.462.344-2.295.73-2.013.844-1.014.486-1.306.33-3.252-.003-3.276zm48.928 2.68c-.68 1.558-2.123 3.003-3.28 3.897-.603.686-2.294 1.688-3.704 2.29-.566.398-1.09.804-1.235 1.104 0 .01 0 .01-.01.02.71.09 1.22.56 1.52 1.18.18-.08.35-.18.53-.27-.14-.69.25-1.13 1.96-1.18.29-.21.54-.42.7-.6 1.78-1.37 4.22-4.03 3.55-6.41zm-50.158.154c-.664 1.618-6.928 5.293-3.057 1.91.926-.77 1.945-1.44 3.057-1.91zm30.934.06c-2.933.01-5.838 2.024-8.16 3.62 1.722-1.138 4.875-2.134 6.806-1.004 1.035-.166 2.083-.126 3.117.244.89.304 1.35 1.032 1.52 1.852.63-1.394.56-3.747-1.27-4.367-.68-.25-1.35-.35-2.03-.35zm-20.897.3c-2.4-.046-4.82.83-6.55 2.705-.84 1.2-1.61 2.48-2.45 3.61-.54 2.43-2.56 4.59-4.68 5.82 1.3-.25 2.34-.98 3.26-1.93.3-1.22.95-2.35 1.83-3.24.1.2.16.39.21.58.51-.78 1.02-1.57 1.55-2.34.92-1.01 2.05-1.71 3.27-2.16l.13-.07c-.03.01-.05.03-.07.05 1.78-.64 3.75-.7 5.57-.18 1.92-.61 4.77.45 4.35 2.85.96-.01 2.91.04 4.49.73-.26-.16-.53-.33-.97-.58l-.02-.01c1.92-.52 2.94.87 2.97 2.35.21.42.35.9.37 1.47-.85-.84-.06.61.53 1.94l.06-.18c.96.04.8.53.36.99 2.65 1.07-1.37-2.47.78-1.15 1.95-.13 5.83-1.85 5.69-4.21-.49 1.49-2.09 1.48-.01-.09-.01-.16-.05-.32-.1-.48-.04-.13-.1-.24-.16-.36-1.11 1.5-3.69 2.51-5.16 2.6-2.17-1.34 1.98 2.31-.86 1.12-.51-1.41-1.89-3.74-.87-2.73-.03-.68-.21-1.24-.5-1.7-.21.11-.44.23-.62.35.19-.13.4-.27.6-.4-1.34-2.13-4.93-2.24-6.35-2.23.41-2.4-2.43-3.47-4.36-2.86-.77-.22-1.57-.34-2.37-.35zm25.83.06c.55.65.36 1.686-.09 2.702.58.594.9 1.29 1.02 2.03.58-1.656.46-3.467-.93-4.732zm-34.62 1.053c-.05.667-.18 1.38-.47 1.9.19.464.3.93.36 1.39.34-1.053.41-2.168.1-3.29zm43.77.936c-.1.016-.54.207-1.52.658-3.29.63-4.81 4.81-7.35 5.43-.49.96-1.17 1.82-1.95 2.41 2.98 1.09 4.46-2.57 7.01-4.41-.34-.14-.16-.68.98-1.87.35-.74 3.12-2.26 2.82-2.21zm-45.3.107c-1.11.47-2.13 1.14-3.06 1.908-3.87 3.385 2.39-.29 3.05-1.908zm36.02.67c-.4.867-.97 1.688-1.44 2.256.03.95-.26 1.918-.72 2.46-1.7 2.773 3.33-2.508 2.16-4.716zm-35.38.967c-.89 1.51-2.3 2.667-3.79 3.562 1.7 1.56 3.43-1.77 3.78-3.57zm9.98 2.023c-2.15.072-4.15 1.126-5.77 2.48-.31.28-.48.45-.68.643.18-.074.46-.137.87-.18.19-.077.4-.123.6-.183.58-.282 1.18-.522 1.66-.572 2.08-1.515 3.99 1.84 4.92.904 2.54-.84 2.07-2.066.74-2.7-.15.064-.3.125-.48.184-.44.44-1.1-.07-1.89-.576zm-4.57.188c-.39.184-.71.36-1.05.554-1.3 1.005-2.35 2.325-2.66 3.963.82-.038 2.12-3.027 3.7-4.517zm-16.58.695c-1.16.85-2.78 1.86-3 3.106-1.45.39-2.73-1.59-4.51-.75 1.1-.38 2.99 1.54 1.16 2.01-.97.06-.47-.33-.86.32 1.49-.25 2.64 1.27 3.93.92.38-2.17 5.05-3.64 4.04-4.75-.4-.42-.57-.64-.78-.88zm-7.62.574c-.03-.03-.15.138-.43.592-2.51 2.04-2.85 5.31-4.36 7.89-.18.53-.06 1.09.25 1.52 1.04-2.23 1.58-4.76 3.43-6.54.32-1.47 1.17-3.39 1.1-3.48zm15.48 1.412c-.73.03-1.46.15-2.16.34-3.11 1.48 1.6 1.37 2.15-.35zm47.53.43c-.49.1-.76.28-.87.52-.01.13-.03.26-.05.38.06.8 1.03 2 1.37 3.28.01-.68.07-1.34.37-1.94-.07-.79-.47-1.56-.83-2.26zm-40.96.06c-.82.79-.54.65.17.24-.11-.08-.18-.17-.18-.25zm14.74.26c-.74.04-1.44.19-1.88.62-2.16 1.22-1.59 1.02-3.34 2.23-.03.02-.04.04-.07.07 1.92.61.47.78-.59.67-1.56 2.01 3.12-.85 4.51-1.18-.03-.04-.06-.06-.08-.1.07.01.12.04.18.05 1.67-.68 3.51.85 4.45 1.36 1.04-.73 1.36-2.19.99-3.33-.18.32-.42.6-.73.82-.5-.27-1.26-.83-2.1-1.19-.44-.04-.9-.06-1.36-.04zm12.18.04c-.53.39-.82.67-.97.88.18-.05.35-.07.49.01.18-.21.37-.5.47-.9zm-29.34.07c-.17.21-.36.38-.56.53-.69.86-1.2 1.87-1.4 2.95-.05.11.2.07.53-.08-.3-.21-.53-1.05.37-1.01.02.28.01.47-.01.63.12-.18.3-.39.57-.66.13-.04.25-.06.38-.07.38-.58.54-1.36.09-2.32zm-1.05 3.04c-.07.09-.11.18-.14.25.03-.02.06-.03.1-.05.01-.06.03-.13.04-.2zm40.06-3.04l-.04.01c-.47 1.01-.46 2.27.04 3.21.82 0 1.64-.23 2.44-.39-.62.15-1.26.63-1.86 1.14.34.29.77.49 1.3.56 1.23-.32 1.6-1.94 1.21-3.22-.23.34-.54.6-.95.7-1.2-.15-1.89-1-2.15-2.03zm-32.5 1.15h-.11c-.31.22-.53.18-.69.02h-.07c-.81.04-1.61.21-2.37.51-3.13.32 1.02 1.77 1.87.83.02-.24.07-.41.16-.39 0 .16-.07.28-.16.39-.06.78.33 2.31 1.69.35.19-.02.31-.06.47-.1-.26-.06-.48-.11-.85-.19.32-.48.74-.87 1.21-1.2-.34-.12-.73-.22-1.17-.25zm-25.84.81c-.12.18-.23.37-.51.72-.47.22-.75.19-.9 0-.49 1.57-.78 3.19.64 2.51 1.45-1.84.22-1.1 1.46-1.19 1.59-.41.38-1.91-.69-2.05zm15.51.7c-.42.14-.84.24-1.27.33-.37.24-.82.54-1.32.86-.61 1.61 2.63 1.08 2.58-1.2zm-8.26.25l-.18.18c.08.07.15.11.22.16-.02-.12-.04-.23-.05-.34zm.96.3c-.08.03-.24.11-.22.09l.29-.03c-.02-.02-.06-.04-.08-.06zm39.38.04c-.61.06-1.41.76-1.44.75.46.37 1.55.56 1.78-.69-.1-.06-.22-.08-.35-.07zm-19.76.01c-.9.41-1.76 1-2.31 1.84 2.42.53 2.28.79 2.31-1.84zm18.9.11c-.91.01-.91.36-.59.63.04-.05.19-.21.59-.62zm-39.87.67c-1.2.06-1.04 3.74.11.73.05-.51-.47 3.13 2 2.14 3.05-1.89.95-1.28-1.25-1.09-.13.11 1.99-.9 1.26-1.35-.58.17-.98.06-1.24-.19-.11 0-.17-.02-.29-.01-.23-.17-.43-.24-.6-.23zm44.97.04c-.04.2-.07.31-.12.48 1.13-.03 2.37 1.74.97 2.11.32 0 .57 0 1.05.01.2.25.38.46.55.63.18-.17.6-.4 1.43-.69l.3-.11c.19.76-.74 1.11-1.35 1.14.46.33 1 .43 1.95.35.08-.98-.25-1.84-.81-2.53-.74-.11-1.15-.51-1.74-1.25-.05-.03-.1-.05-.15-.07-1.12-.02-1.76.02-2.06-.09zm-10.07.3l-.09.26-.27.6c-2.44 2.5 2.91-.75.36-.87zm7.55.07c-2.12.28.17 1.58 0 0zm13.82.12c-.28.71-.27 1.51-.27 2.31.26-.74.27-1.53.26-2.31zm-28.37.12c.36.49.67.57.76.5 0-.01.01-.01.01-.02.06-.1-.13-.35-.78-.49zm.78.49l-.02.01c-.2.17.08.34.09.53-.33.3 1.92 1.05.01-.62-.05.02-.06.04-.09.07zm-16.48-.41c-.16.01-.33.04-.5.09-.27.27-.46.48-.58.65-.03.23-.09.36-.17.4-.01.55 1.49.24 1.88 1.08 2.63 1.14 1.73-2.44-.64-2.23zm-1.24 1.15c0-.11.05-.24.17-.41.02-.16.03-.36.01-.64-1.1-.05-.52 1.23-.18 1.04zm12.15-.93c-.06-.02-.15-.01-.29.03-.15.2-.21.31-.23.38.04.03.08.06.11.09.05-.02.12-.06.18-.11.03-.08.13-.2.28-.35-.01-.02-.02-.03-.06-.04zm21.61.13c-.08.28-.15.59-.19.77.96-.01 2.22.1 1.04-.41-.1-.22-.53-.29-.86-.36zm-20.87.1c-.61.13-.93.24-1.08.35.06.1.04.18-.03.23.07.05.19.09.34.12.1-.14.26-.3.58-.51.1.24.05.43-.04.58 1.08.08 2.4-.12.22-.76zm-27.46.11c-1.99.92.52 2.96 0 0zm57.24 0c-.77.15-1.55.36-2.34.38-.57.36-.83.25-.7-.05-.09-.01-.18-.03-.26-.05-1.51 4.77 1.21.21 3.29-.28zm-46.32.01c-.67.16-1.38.18-2.07.16-2.56 3.22.95.54 2.07-.17zm-11.78.49c-2.22.77-.35 2.09 0 0zm52.49.01c.72-.04.03.45 0 0zm-18.4.56c-1.44.11.46 2.19.33 0-.13-.01-.24-.01-.33-.01zm-4.12.12c-.23-.03.22.22 0 0zm-.86.09c-1.35.02-3.13 2.29-1.13.85-.01-.07.02-.12.16-.12-.07.06-.1.07-.17.11.04.28 1.32.93 1.4-.83-.09-.03-.18-.03-.27-.03zm27.65.4c-2.96.69-2.39 2.85 0 0zm-7.12.17c-.3.17-.64.29-.97.36.31.12.97.15 1.1.43 2.02.88-3.19-.09-1.65.9-2.83 1.58.97 1.66 1.9.27 1.15-.31.51-1.55-.39-1.97zm-19.95.25l-.1.09c-1.25.93.45.89.09-.1zm-36.17.2c-.01.22.01.44.05.66.02.01.04.02.07.02l-.05.01c1.03 2.12 1.09.57-.07-.71zm33.12.15c-.99.91 1.19.67 0 0zm1.2.11c-1.79 1.23.45 1.07 0 0zm-36.36.1c-.08.01.18.36.66.97.01-.11.04-.22.07-.33.07-.11.12-.22.18-.34-.46-.13-.83-.34-.91-.32zm28.51.06c-1.63-.15.46 1.39 0 0zm32.22.29c.04.44.72-.04 0 0zm1.12.65l-.3.11c-.65.23-1.04.41-1.27.57.83-.17 1.2-.1 1.29.09.22-.19.36-.44.28-.77zm-41.41.18c-.24.04-.48.09-.72.16-.55.76-1.06.94-1.41.77-1.43 1.43-.52 3.44.79 2.15-.02-.02-.04-.03-.06-.05.05-.01.07-.01.12-.02.16-.16.32-.36.48-.63-.39-.37-.62-.6-.74-.76-.88 1.12-1.27-.04.46-.73-.11.21-.21.35-.31.5.63.12 2.05.61 1.38-1.41zm23 .04c-.27-.03.13.32 0 0zm-42.77.24c-1.27 1.07-3.01 3.18-.79 1.35-.22-.33-.13-.33.23-.18l.04-.03c.59-.16.91-.01 1.05.31.22.01.44-.01.67-.09-.64-.19-1.09-.74-1.21-1.37zm59.42.36c-.12.12-.1.21.01.26l-.01-.27zm-15.68.12c-1 .17.25 1.64 0 0zm-30.22.22c-.49.3-1.01.54-1.55.73-3.84 1.34 4.54.29 1.55-.73zm24.5.11c-2.23 1.22-.52 3.05 0 0zm15.92.39c-.39.1.4.33 0 0zm-39.78.15c-1.98 1.05.16 1.21 0 0zm39.65.11c-1.56.09.21 2.96-1.08 1-.99 1.49 2.97.62 1.08-1.01zm-23.29.89c-.88 1.01.63.15 0 0zm27.33.11l-.64.82c-2.15 2.14-.64 1.74.35.85.07-.22.33-.53.64-.88.09-.31.02-.59-.35-.81zm-55.14.03l-.41.02c-1.75.77.31.6.63.27l.02-.14c-.03-.05-.1-.1-.24-.15zm49.39.01c-2.63.06.09 1.74 0 0zm8.19.12c-.31.31-.69.63-1.07.95.02 1.52-2.92 3.2-1.63 3.47-.19.43 4.15-3.06 2.7-2.8-3.01 1.71 1.64-1.44 0-1.62zm-15.67.03c-.64 1.32 1.53.91 0 0zm-17.98.14c-.77.43-1.34 1.82-.58 2.12 1.36 2.02 1.09-.44 1.12-1.79-.12.07-.3-.05-.55-.33zm-6.02.02l-.35.22c-.87.75-.85.91-.55.89.11-.11.24-.19.41-.21-.15-.06-.23-.2.03-.4.43.26.38.39.23.42.05.01.1.02.15.04v.01c.28-.03.4.06.12.43.08.27.15.53.24.82.34-.22.57-2.25-.3-2.23zm-.21.92c-.1-.02-.19-.03-.27-.02.08.04.18.04.26.02zm-2.01-.61c-2.02.81-1.16 2.27 0 0zm7.17.38c-.14.05-.28.09-.43.13-.06.44-1.35.4-1.7.2-.31-.02-.62-.07-.91-.16-.04.12-.03.23-.01.34.36.2.74.45 1.12.73 1.1.2 2.51-.17 1.92-1.24zm-21.85.24c-.25.92-.6 1.54-.92.86-.06.15-.1.3-.13.46 1.49.62.49 1.14-.16 1.02-.01.05-.02.1-.02.15.22.16.49.38.76.6.34-.86.58-2.42.46-3.09zm-3.62.02c-.69 1.57-1.95 3.32-2.87 3.66-1.25 1.84-7.51 1.15-2.41 2.05 1.05.3 2.08.16 3.05-.2 1.46-1.47 3.04-4.73 2.23-5.52zm40.52.6c-3.25 3.63.63 2.98 0 0zm-26.3.22c-.11.06-.21.15-.31.24.74 1.08-.34 2.31-.94 1.16-.04.06-.09.13-.12.19.28.3.07.43-.21.4-.25.51-.24.76.32.07.11.02.22.05.33.09.1-.08.32-.12.76-.08 0 .21-.08.32-.17.4.61.43 1.13 1.13 1.19 1.94-.22.47-.25.74-.19.89.19-.25.36-.43.46-.42-.09.18-.15.37-.19.55.79-.09 2.62-1.94.46-1.82-1.41-.59-.78-2.08-.95-3.19-.14-.16-.29-.3-.46-.42zm-7.64.17c-1.58 2.97-.02 2.05 0 0zm11.89.44c-.14 0-.31.01-.51.05.27.27.51.37.69.38.03-.13.08-.25.11-.38-.08-.03-.17-.05-.3-.05zm24.17.03l-.05.05c.04-.01.07-.03.11-.03l-.06-.02zm18.22.25c-.14.36-.27.74-.39 1.13.03.4-.03.83-.17 1.2.47.24.78.6.96 1.02.63-1.11.63-2.58-.4-3.35zm-49.31.33c-.25 2.13-.12 2.49 0 0zm8.23.02c-.25.2-.17.34-.02.4.08-.01.16 0 .26.02.01 0 .02 0 .03-.01-.07-.13-.14-.25-.2-.37-.03-.02-.03-.03-.07-.05zm.24.42c-.07.02-.17.01-.26-.02-.16.02-.29.09-.41.2-.29 1.45.71 2.58 1.54 3.51.44-.23-.28-2.03-.64-3.38-.06-.1-.13-.2-.19-.31l-.03-.01zm3.93-.35c-2.29.4.56.9.81.3-.16-.03-.47-.15-.81-.29zm-2.17.4c.3.75.81 1.42 1.45 1.92 3.53 1.64.14-1.13-1.46-1.93zm31.17.05c-1.64 1.08.97.62 0 0zm-14.07.36c-.8 1.6 1.05-.02 0 0zm-25.58.25c-.26.26-1 .46-.8.94.53 2.25 2.23.43.92-.84-.05-.03-.09-.06-.12-.09zm-5.87.22c-.12.15-.25.26-.37.32-.21.34-.45.66-.76.93-.7 2.63 1.39 1.79 1.31-.32-.06-.06-.07-.16-.03-.31-.03-.2-.07-.41-.14-.63zm46.02.01c-1.14.52.95.76 0 0zm-37.23.26c.29.59.62.72.84.66l.03-.02c.08-.04.13-.1.16-.17-.01-.01-.01-.02-.04-.03.02-.01.03-.03.05-.04.02-.23-.23-.5-1.03-.42zm-7.71.68l-.63 1.25c-2.24 2.67 2.45.71.63-1.25zm18.8.01c-3.5.03-.18 3.11 0 0zm-15.34.07c-.86 1.12 2.07 1.2 0 0zm48.02.12c-.21.26-.47.44-.8.48-.2.2-.38.35-.58.51.25-.11.53-.22.89-.33-1.13 1.38-2.22 1.3-1.65.79-.16.08-.35.21-.53.4.02-.03.04-.05.13-.08.21.16-.13.19-.17.13-.2.21-.38.46-.41.67.22-.23 1.67-.77 2.71-.73.19-.05.37-.13.53-.22.13-.56.09-1.15-.13-1.62zm-9.84.04c-.02-.02-.05-.02-.1 0 .08.2.14.05.09 0zm-13.31.01c-.46 1.04-.98 2.04-.37 2.54.01.06.01.12.02.18.43-.96.85-1.98.35-2.71zm6.64.35c-.03.32.03.54.13.69 0-.22-.04-.45-.14-.69zm.13.69c0 1.83-2.93 3.1-3.61 4.15-.44-.73-.7-1.4-.82-2.02-.27.67-.4 1.36-.33 2.11.56.54.72 1.22.63 1.93.09.17.15.32.25.5.49-.76 2.16-1.64 3.04-2.75.14-.48.33-.95.57-1.39v-.02c-.1-.16-.16-.37-.13-.69.1.24.13.47.14.69.19-.37.41-.72.66-1.05.48.51.72.86.86 1.14.44-.17.74-.37.49-.22-.08.07-.13.13-.2.2.83.12 1.42.97.16.19l-.21-.15-.17.16c.11.34-.06.53-.35.7.23.61 3.52-.86 1.16-1.94-.24-.06-.41-.23-.57-.43-.29.01-.44-.12-.28-.43-.07-.14-.14-.3-.2-.45-.43.11-.89.11-1.11-.23zm-30.37-.28c-.49.07-.3.36-.02.46.07-.04.19-.08.39-.12l.08-.02c.04-.07.08-.17.08-.31-.24-.02-.41-.02-.54 0zm19.13.2c-.83.99-.1 2.98.11 4.91.65-1.45.14-3.32-.11-4.91zm26.68 1.26c-.25.02-.5.05-.76.1-.89.25-1.31.31-1.42.27.03.29.4.47 1.48.3.69.22 1.19-.11 1.49-.63-.25-.04-.52-.06-.79-.04zm-42.36.06c-.23.13-.44.36-.2.92.22.01-.12.23-.27.63.79.47 1.83.52 2.63-.19.56-.39.8-.56.87-.63l-.04-.06c-.34.08-1.63.56-2.36-.02-.32-.23-.51-.44-.65-.64zm-12.18.17c-.44 1.07-1.02 2.75-2.65 2.7-1.32.79-3.68-2.52-2.26-.11.01 1.62 3.9 1.41 2.49 2.07-.62-.01-1.15.21-1.57.55.38.15.76.2 1.08.01.64.02 1.12-.23 1.49-.6 1.13-1.15 1.27-3.47 2.02-2.86.49-.32.08-1.01-.6-1.75zm49.75.17c-1.94-.01.22 3.02.44.05-.17-.03-.32-.04-.45-.04zm6.86.03c-.35.79-.99 1.46-1.81 1.66-1.68-.07-4.49 1.43-1.29.54 1.94-.41 3.5.42 4.64 1.76 1.11.72 1.99 1.78 2.37 3.11-.09-2.61-1.48-5.92-3.91-7.07zm-1.9.48c-3.18 1-1.59 1.96 0 0zm-3.19.05c-.52.78.94.07 0 0zm-24.98.05l-.22.72c-.52 2.5.28.83.21-.72zm-17.27.3l-.43.1c-.99.19-.25.43.29.27.04-.12.09-.25.14-.37zm36.43.33c-.2.66-.55 1.25-1.28 1.2 0 .03.01.06.01.09.07.06.1.17.06.37-.03-.13-.05-.25-.06-.37-.45-.38-2.72 1.73-1.07 2.17 2.62 1.39 2.14-3.25 2.45-2.51.33 3.34 1.5.4-.12-.95zm-39.74.06c.03.02.06.06.08.12.56.12.38.67.13.73.09 1.09-.02 2.64.66 1.19 2.81-2.13 1.19-1.55-.88-2.04zm10.12.14c-.09.03-.16.06-.27.09-1.23 1.14-.44 3.79-2.58 2.47-.15.05-.31.07-.46.08.36.37 2.06 1.35 1.46 2.35-.16.23-.23.37-.3.44.94-.04.63-1.92 1.61-2.82.37-.1.64-.21.87-.33-.01-.1 0-.22.01-.34.07-.36.21-.71.38-1.04-.18-.28-.44-.58-.72-.9zm45.22.12c-.06-.01-.11 0-.15.03.71 1.06.97 2.24.88 3.4.71.91 1.5 2.34 1.8 3.76 1.44-2.38-1.65-7.04-2.53-7.19zm-8.65.07c-.53.2.29.23 0 0zm-21.18.53c-.75 1.13-2.17 1.86-3.47 1.63.04.89-.06 1.74-.55 2.45.46.14.95.14 1.43.03-.09-.04-.18-.08-.27-.11.88-1.6 1.45-.42.89-1.42.69.12 1.34-.04 1.88-.38.3-.58.43-1.24.29-1.91-.1-.08-.16-.19-.21-.29zm7.75.27c-.66.84-1.12 1.84-1.35 2.88.08-.25.28-.61.65-1.1.44-.37 1-.56 1.56-.62-.13-.28-.38-.65-.87-1.18zm-35.35.54c-.11.11-.22.22-.3.32 1.08.78.62 1.15-.13.2-.61 1.11.28 2.21 1.01 3.39 1.2.09 1.34-1.42.94-2.71-.17.13-.39.21-.67.19-.3-.48-.62-.94-.86-1.4zm17.98.03c-1.98.29.87 2.58-.71 4.07 1.14.91 3.27-1.25 2.43-3.35-.57.88-1.53 1.35-2.17.83.49-.47.53-1.01.44-1.55zm-11.06.17c-.25.23-.47.44-.81.73-.57.16-.91.05-1.09-.23-.59 1.58-.76 3.19.82 2.74.11-.09.16-.14.26-.23-.72-.18-.35-.67 1-1.73l.33-.81c-.2-.13-.37-.29-.52-.47zm29.46.35l.07.05h.01c.11-.01.18.01.27.01-.11-.03-.23-.06-.35-.07zm.76.28c.01.05.01.11-.01.18.34.15.26-.01.01-.18zm-20.87.01c-.53 1.3-2.58 1.52-3.4.65-.05.08-.09.16-.14.25 1.34.96.14.69-.03.06-.15.27-.27.56-.35.85 1.3.49 4.47 1.38 1.62 1.37-.71-.13-1.29-.59-1.68-1.17-.01.02-.02.04-.02.06-.28 2.04 3.21 2.16 3.79.32.71-.99.69-1.85.2-2.39zm-14.51.08c-.02.04-.05.07-.07.1.07 1.49 1.21 0 .07-.1zm32.22 1.45c-.01.05-.03.09-.04.14l.02-.02c0-.04 0-.07.01-.12zm-35.05.14c1.04 1.76 1.93 1.13 0 0zm14.57.24c.71.13 1.12.74 0 0zm-22.03.08c-.43.75-.55 1.69-.26 2.5.25-.45.62-.82 1.08-1.05.01 0 .01-.01.01-.01.07-.39.21-.68.38-.93-.41-.12-.87-.28-1.21-.52zm39.21.11c-.26.52-.61 1.02-1.01 1.46-.34.78-.29 1.53 0 2.18.9-1.13 1.45-2.53 1-3.64zm5.05.22c-.5.08-.98.27-1.37.59-1.38 1.83-.45 1.78.65 1.24-.36-.72-.23-1.46.72-1.84zm-27.73.13c-.34.01-.64.02-.9.02-.1.24-.15.35-.29.68-2.03 1.6-1.9 1.92.92 1.81 2.39.76 1.78.95 2.33.16.69-1.15-1.67-2.28-1.54-2.49-.18-.06-.28-.11-.52-.18zm49.83.14c-.31.96-.84 1.87-1.53 2.62.02.2.04.4.04.59-.04-.16-.1-.31-.16-.47-1.4 1.45-3.38 2.31-5.43 1.86-.2-1.23-1.36-2.29-2.65-2.07-.54-.39-.97-1.03-1.21-1.75-.94 1.46-.21 3.43.94 4.26.57-.09 1.11.07 1.56.37 0-.92.14-1.17 1.1.7.51 2.96-.32-2.93 2.07-.11.62.26 1.26.38 1.91.4 2.19-1.29 3.67-3.89 3.37-6.39zm-45.45.77c.04.72 1.56 1.1 0 0zm14.12.02c-.36.1-.75.13-1.16.06.56 1.01-.01-.17-.89 1.42 1.27.45 2.52 1.52 3.47 2.88.92.8 1.8 1.78 1.88 2.66.03-.56 0-1.11-.1-1.66-.35-.51-.56-1.11-.52-1.75-.6-1.45-1.57-2.74-2.68-3.63zm3.3 7.03c-.01.16-.02.33-.04.49.05-.15.06-.32.04-.49zm-6.88-6.94c-.6.71 1.17.24 0 0zm-.23.63c-.13.02-.33-.06-.36.16-3.37 2.23 1.78 1.26.37-.17zm-10.87.14c.24.46.61.85 1.05 1.12-.04-.27-.02-.52.08-.72-.44-.15-.86-.3-1.13-.41zm26.37.27c-.79.31-.74-.35-.74 1.36-.77-.14-1.46-.55-1.95-1.05-2.02.77-.42 3.18 1.69 3.56 0-2.2-.09-.45 1.62-1.94 2.47.5 2.17-1.67.1-.22.3-.03.67-1.6-.72-1.72zm5.97.06c-.61.12.37 1.21 0 0zm-51.75.45c-.12.18-.22.4-.29.66.08.05.15.11.24.16 1.37.96.56.18.06-.82zm28.42.5c-.45.28-.95.5-1.47.63-1.37 3.05 1.23.94 1.47-.63zm-4.85.86c-.06.03.27.3 1.24 1.14.8.16 1.16.48 1.23.82-.04-.49-.28-1.04-.64-1.52-.92-.08-1.74-.49-1.82-.44zm14.93.03c-.08.2-.13.41-.17.62.19.14.39.27.61.37-.15-.34-.27-.66-.43-1zm14.97.39c-.29.79-.51 1.25.12.5-.02-.18-.05-.35-.11-.51zm-32.33.03c-.2.05-.42.07-.63.05-.01.01-.02.03-.04.04.69.57.76 1.7.59 2.66.67.88 1.6 1.66 2.39 1.84 1.68 1.44 3.71-.86 1.11-1.38-1.62-1.39-1.38-1.22-.6-.96-.08-.05-.16-.11-.24-.18-.86-.19-1.9-1.1-2.57-2.07zm-2.29.21c-.3.36.28.6 0 0zm30.31.28l-.13.6-.26.84c.02.03.03.06.05.09.22-.09.58-.01 1.13.34.04.28.07.41.1.5l.07-.07c.03-.28.05-.94.14-1.44-.18-.36-.52-.69-1.09-.88zm-43.66.07c-.05.07-.09.13-.15.2-.45.79-.42 1.63-.22 2.46 1.12-1.46.98-2.12.37-2.67zm.67.1c-.61 5.55.53 1.46.19.28-.05.06-.08 0-.1-.19-.03-.04-.06-.08-.1-.09zm1.28.01c-.24-.02 0 .64.14.05-.06-.03-.1-.05-.14-.05zm40.15.03c-.56.18-.41.64 0 0zm-.41.21c-1.03.42-.16.62 0 0zm-16.14.59c.56.24 1.24-.01 0 0zm-4.99.23c-.07.36-.43.68-.92.76.19.02.39.03.59 0 .21-.19.3-.45.32-.76zm6.97.22c-.03.05.17.28.72.72 2.08.33 1.68 7.69 2.15 4.45-.02 3.15 4.33-1.4 3.4-.28-2.08 2.9 1.92.24 1.89.72-3.02 1.47 1.7 2.81 1.4 5.09 2.09 1.74 1.23-.29.68-2.19-.13-.09-.26-.19-.42-.32.3-2.28-4.42-3.63-1.4-5.09.03-.48-3.97 2.19-1.89-.72.63-.77-1.2 1.12-2.42 1.38 0 .12-.01.24-.01.35.02.17.01.34-.04.49.02-.17.03-.34.04-.5-.01-.12-.04-.23-.08-.35-.52.08-.91-.17-.9-1.11-.23 1.58-.26.61-.47-.81-1.16-1.12-2.61-1.98-2.69-1.85zm-19.79.43c-.17.23-.32.4-.41.37.02.31.03.62.01.93-1.38 4.02 1.95-.82.39-1.3zm6.73.13c-.76.83-.01 2-.35 3.04.16 2.94 1.6.03 1.18-1.9-.34.81-.82 1.02-.92-.62.05-.17.08-.35.08-.52zm-3.32.08c-.73 1.43-.56 4.37 1.33 1.79-2.46-.61.06-.07-1.14-1.55-.08-.05-.14-.13-.19-.24zm40.24.36c-.21-.04-.17.66-.16 1.51.16-.4.22-.92.25-1.45-.04-.03-.07-.06-.1-.07zm-3.02.01c-.49 1.28-1.31 2.62-2.05 3-.3.02-.58-.05-.86-.16-.23.54-.27.38-.24-.11-.31-.16-.6-.38-.87-.65-.03.44-.06.66-.19-.16-2.88-1.86-.74 3.74 1.89 3.6 1.39-.7 3.06-4.74 2.32-5.51zm-44.3.33c-1.4 1.13.9 2.84 0 0zm20.12.68c-.07 0-.17.01-.3.05-.12.81.8-.02.3-.04zm-1.2.06c-3.38.35-.3 2.74 0 0zm28.85.29c-.09-.06-.29.05-.6.33 0 .46-.02.94-.07 1.4.56-.86.85-1.61.67-1.73zm-39.14.54c-1.51 1.92 2.04 2.69 0 0zm13.69.15c.47.84 1 1.67 1.32 2.59 2.24 3.55.75-2.13-1.32-2.59zm-29.93.16c-2.36.09-4.67 1.58-4.96 4.17-.1.48-.13 1.13-.11 1.77 1.07-3.76 6.73-4.65 9.13-1.57.13.08.26.17.39.25-.08-.95-1.13-2.43-1.53-3.97-.88-.48-1.9-.7-2.91-.66zm29.22 1.21c-.9.49.63 1.4 0 0zm-9.6.28c-.24.13-.45.31-.62.52 2.41 1.53 2.9.89.61-.52zm21.69.2c.04.24.11.5.18.77.04-.3-.04-.56-.18-.77zm3.21 1.12l-.08.31-.11.69c-.61 3.84 1.63 1.34.65-.59-.2.15-.4.06-.46-.41zm-17.5.73c-.86 1.11-2.35 1.83-2.3 1.59-.45-.35-.79-.58-1.05-.73-.05.06-.11.12-.16.19.15.17.33.37.68.71-.44-.02-.73-.15-.93-.33-.52.85-.82 1.86-.35 2.43.07-.16.13-.31.19-.47-.29-.42.39-.04 1.37.72-.07.39 4.02-1.8 2.57-4.11zm.74.84l-.07.24c-1.79 2.07 1.76.67.06-.24zm17.75.89c-.01.08 0 .17-.01.25-.4.58-.52 1.16-.44 1.67 1.48.72 2.73 1.06 3.42 1.09.08-.08.17-.16.24-.26.06-.06.1-.11.15-.17-.13-.1-.32-.23-.6-.36.33.06.63.04.91-.04.45-.73.03-1.13-.68-1.46-1.1.84-2.47.33-2.98-.72zm-39.01.29c-.29-.02-.57.07-.78.24.04.05.08.09.12.15 1.49 2.11 1.86 2.99.68-.36l-.03-.03zm27.73.3c-.09.06-.19.09-.29.14-.28.65-.6 1.1-.74.17-.05.53-.41.64-.85.5-.65.77-.84 1.8-.66-.28-3.06.78 1.07 4.15 1.25 2.3-.02-.19-.05-.41-.06-.72.08.3.09.53.07.71.34 2.26 1.69-3.57 1.16-.6-.79 2.84 2.72 5.4 5.11 3.57-.05-.47-1.47-1.18-2.78-2.18-1.16-.49-2.09-1.61-2.17-2.92-.04-.22-.06-.46-.03-.7zm-1.03.3v-.06l-.01.01c0 .02 0 .03.01.06zm2.81-.13c-.03-.01-.05-.01-.08 0 .28.52.25.06.08 0zm14.58.2c-.04 0-.08.02-.11.02.02.04.02.09.04.13.03-.05.04-.1.07-.15zm-42.94.45c-.04.41-.04.57.02.55.01-.2 0-.38-.02-.55zm15.46.3c.01.2-.01.39-.05.59.2.14.47.22.83.24-.41-.39-.66-.65-.79-.83zm-9.17.35c-.11.68.14.72.31.58-.01-.16 0-.32.01-.49-.08-.05-.18-.08-.33-.09zm-11.75.24c.03 2.13 1.82 4.47 3.9 4.63-.11-.13-.08-.12.09.01.5.02 1.01-.08 1.52-.34.01.06.01.11.02.16 1.38-3.5-.2 1.93.94 1.39 1.51-.73 2.84-4.01 2.43-5.68-.45 1.37-1.26 2.72-2.17 3.16-1.15.55.51-5.11-.99-1.25-.33.46-.75.42-1.08.28.18.64-.01.41-.49-.3-.13-.11-.09-.08.51.74-1.96.42-4.07-.92-4.69-2.8zm17.02.01c-.32.08-.69.15-.86.32.16.31.3.62.35.93.03.04.04.06.09.1.08.93.19 1.42.31 1.65.11-.01.2-.02.33-.03.23-.42.4-1.55.34-2.65-.17.47-.39.51-.57-.32zm15.54.92c1.8 1.38.33 1.43 0 0zm-20.36.26c-.24.34-.37.77-.41 1.21.67 1.25-.64.26 1.15 1.47-.31-.23-.71-.37-1.08-.48.28 1.28 1.26 2.09 2.29.09.2-.21.3-.29.41-.36-.2-.28.01-.96.23-1.58-.17-.13-.33-.26-.51-.36-.9 1.54-1.74 1.03-2.08 0zm4.75.29c.16.06-.13.38 0 0zm3.68.26c-.54 1.64-1.8 3.15-3.46 3.74-3.36.1-.14 1.54.59.01 1.76-.67 3.07-2.3 2.87-3.75zm4.85.85c.23.23.49.42.77.58 3.09 1.45 1.7-.63-.77-.58zm-.34.06c-.25 2.43 2.06 2.09 0 0zm-9.27.17c-.52.32-.87.44-1.08.42-.19.85-1.68 3.69.95 2.02.52-.42.62-1.04.45-1.68-.25-.1-.35-.25-.13-.38-.05-.13-.13-.25-.2-.37zm16.42.63c.33 1.44 1.81 1.38 0 0zm-15.61.55c-.13.38.17.06 0 0zm24.68.01c-.38.28-.84.44-1.32.44.29.41.39.81.15 1.05.5.33.94.74.95 1.24.07-.01.11 0 .17 0 .35-1.7 1.47-2.69.09-2.51 0-.08-.01-.15-.03-.22zm-15.1.19c-1.59 1.09 1.06.95 0 0zm-14.97.32c-2.13 1.44.25 1.03 1.38 1.87-1.95-1.33-.16.02-1.38-1.88zm7.62 1.1c-3.13.59 1.7.39.01 0h-.01zm19.27.14c-1.33 1.36-2.28 2.39.44 2.43.07-.11.15-.21.25-.3.37-.04.74-.01 1.1.08.48-.56-.67-1.88-1.78-2.23zm-8.71.24c.69.73.89.26 0 0zm-2.62.21c.27.29.48.45.63.54-.1-.16-.17-.3-.2-.42-.12-.05-.26-.09-.43-.12zm3.91.12c-.02.08.17.07 0 0zm-25.5.49c-.41.21-.81.3-1.21.33-.38.18-.79.28-1.22.27.88.24 1.74.63 2.19 1 .24-.48.36-1.02.24-1.6zm-2.43.6c-.29-.08-.59-.15-.87-.18.29.12.58.17.87.18zm25.19-.3c.33.29.51.31.56.26-.11-.07-.33-.17-.55-.26h-.01zm13.74.17c-.11.31-.32.76-.5 1.3.93.65 1.63 1.68 1.88 2.78.19.33.33.7.42 1.07.93-1.83.04-4.25-1.8-5.15zm-15.92.45c-.05-.01-.1-.01-.15.01.6.89.46.07.14-.02zm4.85 0c-.03.09-.01.15.03.2.02-.06.03-.12.04-.19l-.08-.02zm-4.58.22c.14 1.22 1.24-.08 0 0zm1.64.26c-.72-.05-1.13.32-.42 1.24.7.26 1.68.69.59.53-.56.13 1.24 2.5 2.67 2.67 1.75-.71 1.2-.28.97.14.5.03.34.28.06.41 1.36.13 1.57-2.5 1.65-2.13.67 4.05 1.06-3-.5-.8-1.16 2.29-.94 1.62-.84.41h-.08c-.24-.14-.04-.41.11-.63v-.3c-.15.01-.48.12-1.11.37-.1-.01-.21-.06-.32-.09-.22.95-.4 1.79-.67 1.22.36-.5.42-.96.32-1.36-.68-.348-1.36-1-1.75-1.55-.24-.08-.47-.14-.68-.15zm-1.89.35c.44.8.94.14 0 0zm-17.88.14c-.98.49-.6 1.82-.5 2.67.07-.06.14-.11.23-.16-.13.46-.13.93-.04 1.39.83.6 1.93 1.58 2.05 2.65.47.25.99.4 1.51.41l.08-.03c-.36-1.29-1.37-2.34.95-.59.53.33 1.15.43 1.71.33.02-.11.05-.22.05-.35-.59-1.79-.25-1.71.76.01.41-.32.66-.83.57-1.54 3 1.69 1.68 2.19.02 2.25.99.46 2.27.17 2.98-.55-.25.05-.67-.08-1.16-.65.96-.06 1.33.2 1.36.42.36-.49.47-1.12.14-1.84-.86.57-.99.46-.88.08-.31.14-.65.24-1 .25.47 1.42.89 2.26-.22.27.01-.1 0-.18 0-.27-.42-.02-.84-.12-1.2-.34-.3-.55-.55-.96-.76-1.28-.21-.02-.39-.04-.54-.04.05.21.09.39.2.73 0 1.49-1.92 1.99-3.07 1.5 1.39-.6 2.2-1.67.27-.85-2.09-.01-4.13-2.36-3.52-4.44zm8.73.87c-.12.07-.2.18-.27.31.3.28.49.7.43 1.31 1.45 2.58.31.45-.16-1.63zm1.73.25c-.41.9-.72 1.52.26.93.04-.37-.02-.7-.26-.93zm-4.39 1.32c-.05.02-.06.11-.04.27.03-.09.04-.18.04-.27zm7.89.13c-2.1.53 1.59 2.79 2.85 1.08-.24-.89-1.87-.64-2.86-1.08zm-2.2.48c-.09.11-.52.29-.79.49-.06.1-.13.2-.21.3.01.03.02.06.05.09 1.28 3.12 1.67 1.6.94-.88zm-12.97.25c.01.01.19.12.31.2 0-.03.01-.07.02-.1-.09-.01-.19-.04-.32-.09zm30.86 2.02c-.04.24-.09.46-.14.69 1.69 1.07 3.27 4.41 1.7 2.17-.34-.75-1.23-1.07-1.93-1.45-.17.4-.4.75-.74 1.05 1.8-.07 3.56 1.16 4.28 2.81.28-.49.52-.99.59-1.37-.21-1.9-1.88-3.56-3.77-3.9zm-9.53.45c-.4 2.2 1.95.93 0 0zm-1.31.03c-.25.08-.33.23-.34.36.07.07.15.15.2.22.08-.05.16-.2.14-.58zm4.55.81c-.14-.01-.33 0-.59.03v.03c.07.13.12.26.17.38.37.17 1.16-.41.42-.46zm-18.53.11c-.04.03.02.07.12.1-.04-.03-.08-.06-.12-.1zm.12.1c.2.19.45.34.73.48.08-.09.15-.2.21-.31-.43-.04-.77-.1-.95-.16zm21.83.11c-.04.07-.09.14-.12.22.15.21.63.43.5-.17-.17-.04-.29-.05-.38-.05zm-19.65.36c.03.2.02.39-.01.56.54.17 1.07.34 1.53.53-.26-.29-.73-.65-1.52-1.09zm-3.68.29c-.14.08-.29.16-.45.23.12.05.25.08.39.11.02-.04.03-.08.06-.12.01-.08-.01-.15-.01-.23zm22.05.28c.28.48.34.57.3.23-.1-.08-.19-.16-.3-.23zm-22.89.06c-.29.02.71 1.33.58 2.4-.35.52-.25.79.08.95.01-.05.01-.1.03-.15.34-.89 1.14-1.27 2.02-1.33-.24-.13-.46-.27-.64-.44-.1-.04-.16-.07-.12-.1.03.03.08.06.12.1.34.12 1.33.22 2.3.2-.32-.2-.72-.32-1.14-.4-.53.12-1.12.05-1.65-.23-.59-.09-1-.24-.94-.64-.35-.24-.56-.36-.64-.35zm14.8.03c-.02.26-.05.62-.04.98l.23.13c.61.22 1.1.58 1.46.96-.34-.65-.45-1.14-1.65-2.07zm4.03.11c-1.09-.05-.35.53 0 1.1 2.11 3.77 1.68-.35 0-1.11zm7.03.16c-.12-.01-.25-.01-.37.02.17 1.15 2.28 1.2 2.85 2.45 1.82 2.59-.55-2.26-2.47-2.47zm-19.5.11c1.37 1.59 2.27-.15 0 0zm-7.62.19c-.27.38-.66.66-1.11.78.63-.08 1.04-.11 1.26-.04 0-.25-.05-.5-.15-.74zm-1.11.78l-.47.06c.16 0 .32-.02.47-.06zm26.04-.65c-.04.13-.086.26-.14.38.164-.08.2-.22.14-.38zm.6.42c-.48.02-.79.16-.99.33l-.11.12c-.73.87.45 2.5-.9.27-3.62-1.58-.436 3.95.81 2.05.45-.58.41-1.44.65-2.09-.05-.08-.06-.13.04-.1.1-.24.25-.44.49-.58zm-11.87.35c-.04.13-.09.25-.15.36.22-.07.46-.09.73-.05-.02-.06-.03-.1-.06-.16-.146-.06-.32-.1-.52-.15zm12.714.9c-.56.1-.34.3 0 0zm1.29.06c-.11.28.21.62.61.98-.36-.46-.37-.74-.2-.87-.13-.05-.27-.09-.4-.12zm-15.13.25c-1.31.68-3.09.76-1.96 1.86.24-.61.96-.76 1.7-.73-.02-.4.07-.79.26-1.13zm5.65.08c.034.11.06.21.07.31 1.24 1.01 2.38 2.5.94.74-.475-.415-.78-.75-1.01-1.04zm-19.896.26c-.04 0 .26.26.77.67.06-.03.12-.08.19-.12-.46-.27-.9-.55-.96-.55zm9.32.2c.17.55.15 1.24-1.33 1.45-.1.04-.23.076-.35.11.01.03.03.055.04.086-.03-.02-.08-.04-.12-.06-1.06.31-2.61.47-3.43-.04-.3.2-.54.48-.7.85 1.18.72 2.46 1.32 3.78 1.73.19-.05.37-.11.52-.16 3.17-.44-.34-3.16 1.95-1.73.66-1.15.36-1.79-.35-2.23zm-8.02.56c-.1 0-.26.01-.41.03l.6.48c.14.11.29.21.43.31 0-.21-.01-.37-.04-.5-.18-.09-.37-.2-.56-.31h-.01zm25.83.02c-.29.07-.04.55-.05.79-.94-.68-.75-.29-.38 0 .18.05.37.12.56.2.09-.05.15-.18.13-.42-.2-.21-.25-.41-.19-.57h-.07zm3.42.12c.34.3.68.62.92.98.93.21.98-.08-.91-.98zm-11.25.13l-.09.04c.9 1.08.92.76.1-.04zm12.66.03c-.01.13.01.18.09.14-.024-.05-.06-.09-.084-.14zm-13.23.12v.03h.03l-.03-.02zm.2.15c.23.27.59.84.78 1.45.06-.46-.25-1-.77-1.45zm-4.67.46c-.16.17-.3.38-.39.6.64.93 1.05 1.99 1.43 3.06.48.12 1.07.11 1.58.07 0-.02-.02-.03-.02-.05.03.02.07.03.1.04.89-.08 1.4-.19.51.19.7.18 1.48.09 2.01-.31-.09-.34-.25-.67-.41-.95-.93.273-3-.12-1.79-1.057 3.1-1.25-2.02.56-2.56-1.1-.19-.14-.34-.31-.45-.5zm15.19.66c.05.13.14.29.29.48.62.31.67.28-.29-.47zm-14.33.56c.54.08.58.63 0 0zm-2.3.95c-.04.08-.06.17-.09.25.04-.08.08-.15.11-.24l-.01-.02zm11.8.57c-.31.04-.62.14-.9.29-.06.08-.08.14-.11.21.13.19.07.35-.07.14-.13.72 1.48.76 1.08-.64zm.4.19c-.3.15-.42.47-.13 1.13.12-.36.12-.74.13-1.13zm-7.96 1.16l-.05.02c-.87.68-.02 1.07.87 1.13-.33-.37-.62-.78-.82-1.15zm7.83.5c-.04.11-.07.22-.09.33.39-.13.54-.26.09-.33zm-1.77.98c.07.22.14.32.19.39.05.03.09.04.12.04.02-.09-.06-.32-.31-.43zm-1.64.08c.05.23.2.56.51 1.03.1.13.13.18.22.29.38.143.76.34 1.12.56.25-.52-.05-1.14-.49-1.6-.45-.17-.9-.27-1.36-.28zm-1.04.16c-.12.04-.24.09-.36.14-.27.24-.57.28-.88.21-.07.05-.143.1-.22.14.387.095.707.46.28 1.145.56-.59 1.23-.77 1.93-.71-.27-.3-.523-.61-.75-.92zm-9.27.27c-.09-.01-.16.01-.22.04-1.43-.25-2.23 1.56-1.133 2.53l.07.08c.23-.1.49-.15.79-.1-.028-.09-.04-.13-.07-.24.58-1.55 2.96-.85 4.03-.26 2.77 1.73-2.11-1.99-3.47-2.05zm7.12.43c-.18.03-.36.03-.54.02.44.69.73 1.33.746 1.8.09.08.18.18.27.29.36.13.72.12 1.04-.15l.06-.027c-.3-.26-.59-.52-.83-.77-.71-.54-.86-.93-.76-1.16zm6.197.38c-.04.07-.08.13-.13.19.21.01.31.03.41.06-.09-.08-.188-.17-.28-.25zm.43.38c-.15.15-.84.32-1.33.42.56.37 1.08.78 1.48 1.14 1.33 2.18 1.96 2.69 1-.06-.28-.52-.68-1.04-1.16-1.5zm-5.9 1.69c.06.09.11.17.16.26-.02-.1-.08-.19-.15-.26zm1.79.27c-.51-.02-1 .09-1.44.4.16.42.2.84.07 1.19.5.45 1.08.88 1.7 1.21.05-.16.09-.33.09-.55-1.19-2.02 1.2.16 2.31-.32.25.08.51-.05.75-.24-.34-.28-.74-.56-1.15-.82-.75-.08-1.51-.4-2.2-.85l-.13-.01zm4.12.47c-.08.05-.16.09-.23.13l.26.29c.15-.29.18-.5-.03-.41zm-9.75 1.35l.01.01c-.06-.01.38.21 1.78 1.025.52.3 1.43.64 2.28.75-.03-.45-.22-.93-.49-1.35-.07.03-.15.05-.23.07-1.22.37-3.08-.41-3.35-.5z" fill="#b4b3b7"/>
   </g>
 </svg>
diff --git a/resources/vector/hair/strip front.svg b/resources/vector/hair/strip front.svg
index 5bd15d1be00bd57e558fa0e12e52eb352233b389..707742a5d9502eecb1cd7977d4ebe2e3cf114104 100644
--- a/resources/vector/hair/strip front.svg	
+++ b/resources/vector/hair/strip front.svg	
@@ -18,40 +18,40 @@
    xml:space="preserve"
    sodipodi:docname="strip front.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"><metadata
-     id="metadata10"><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="defs8" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1329"
-     inkscape:window-height="1287"
-     id="namedview6"
-     showgrid="false"
-     inkscape:zoom="5.3400704"
-     inkscape:cx="472.39965"
-     inkscape:cy="897.24274"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="Layer_1" /><style
-     type="text/css"
-     id="style2">
+	 id="metadata10"><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="defs8" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1329"
+	 inkscape:window-height="1287"
+	 id="namedview6"
+	 showgrid="false"
+	 inkscape:zoom="5.3400704"
+	 inkscape:cx="472.39965"
+	 inkscape:cy="897.24274"
+	 inkscape:window-x="0"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="Layer_1" /><style
+	 type="text/css"
+	 id="style2">
 	.st0{fill:#5FBA46;}
 </style><path
-     sodipodi:nodetypes="ccccccccsccscccccccccccccccccccssccc"
-     id="path34"
-     d="m 547.25199,135.97397 c 0,0 -0.42493,-1.8967 -1.98505,-8.31398 -1.55988,-6.41778 -1.4188,-8.02229 -2.55301,-11.5235 -1.13446,-3.5002 -2.41096,-5.97975 -2.41096,-5.97975 0,0 -6.94976,1.16698 -9.36096,0.29218 l -2.41047,-0.87555 c 0,0 3.54517,0.80188 5.38964,0.21851 1.84275,-0.58337 3.89968,-2.55273 3.89968,-2.55273 0,0 -3.89968,1.45967 -5.81481,1.45967 h -1.91463 c 0,0 4.89257,-0.87605 6.23998,-2.11571 1.3479,-1.24015 2.19898,-3.57337 1.84422,-3.93822 -0.35476,-0.36486 -2.5535,0.36485 -6.38203,2.62489 -3.82976,2.26156 -3.19188,3.06419 -11.27584,4.95988 -8.08445,1.89669 -13.33252,2.77174 -17.58722,4.15774 -4.25493,1.38549 -5.53168,1.89569 -5.53168,1.89569 0,0 2.19825,-1.53184 3.54566,-4.59426 1.34716,-3.06268 1.5606,-4.8867 1.20584,-5.17839 -0.35451,-0.29218 -1.48921,-0.94797 -4.18378,1.60451 -2.69458,2.55273 -5.38939,5.3969 -7.80084,6.34512 -2.41072,0.94797 -2.75586,1.33154 -3.47476,1.53184 -1.49615,0.47236 -4.10487,-0.72828 -4.64048,-1.61952 -0.73372,-4.07064 -1.01685,-4.89384 -3.61817,-10.36549 -0.74828,-6.795819 -1.49437,-6.368302 -0.46393,-13.248606 1.56036,-5.68908 6.73704,-11.304485 13.33155,-16.482365 6.59523,-5.178382 18.93364,-12.251952 25.67068,-11.231312 6.73705,1.021143 9.92697,1.822517 14.53642,4.010896 4.61018,2.188378 11.41764,7.0009 14.75034,11.522492 3.33271,4.522096 5.10505,10.138003 5.17619,11.231815 0.0704,1.094315 2.76524,3.210024 3.82854,8.679084 1.06429,5.470566 -0.56723,16.409696 -0.77969,19.472616 -0.21296,3.06368 -1.06355,3.86556 -1.56036,3.64705 -0.49682,-0.21851 -3.19163,0 -3.89993,0.72871 -0.70928,0.72971 -1.277,1.45866 -0.77994,4.08457 0.49583,2.6254 1.13494,3.20851 0.85059,4.66768 -0.28361,1.45842 -1.84079,4.88444 -1.84079,4.88444 z"
-     inkscape:connector-curvature="0"
-     style="clip-rule:evenodd;fill:#9497a2;fill-opacity:1;fill-rule:evenodd;stroke-width:0.24794832" /><path
-     sodipodi:nodetypes="cccccccssccc"
-     id="path34-3"
-     d="m 547.25199,135.97397 c 0,0 -0.42493,-1.8967 -1.98505,-8.31398 -1.55988,-6.41778 -1.4188,-8.02229 -2.55301,-11.5235 -1.13446,-3.5002 -2.41096,-5.97975 -2.41096,-5.97975 5.39286,-3.68131 4.33763,-10.191706 11.1306,-20.346918 0.0704,1.09432 2.76524,3.21003 3.82854,8.679088 1.06429,5.47056 -0.56723,16.40969 -0.77969,19.47261 -0.21296,3.06368 -1.06355,3.86556 -1.56036,3.64705 -0.49682,-0.21851 -3.19163,0 -3.89993,0.72871 -0.70928,0.72971 -1.277,1.45866 -0.77994,4.08457 0.49583,2.6254 1.13494,3.20851 0.85059,4.66768 -0.28361,1.45842 -1.84079,4.88444 -1.84079,4.88444 z"
-     inkscape:connector-curvature="0"
-     style="clip-rule:evenodd;fill:#e1e0e2;fill-opacity:1;fill-rule:evenodd;stroke-width:0.24794832" /></svg>
\ No newline at end of file
+	 sodipodi:nodetypes="ccccccccsccscccccccccccccccccccssccc"
+	 id="path34"
+	 d="m 547.25199,135.97397 c 0,0 -0.42493,-1.8967 -1.98505,-8.31398 -1.55988,-6.41778 -1.4188,-8.02229 -2.55301,-11.5235 -1.13446,-3.5002 -2.41096,-5.97975 -2.41096,-5.97975 0,0 -6.94976,1.16698 -9.36096,0.29218 l -2.41047,-0.87555 c 0,0 3.54517,0.80188 5.38964,0.21851 1.84275,-0.58337 3.89968,-2.55273 3.89968,-2.55273 0,0 -3.89968,1.45967 -5.81481,1.45967 h -1.91463 c 0,0 4.89257,-0.87605 6.23998,-2.11571 1.3479,-1.24015 2.19898,-3.57337 1.84422,-3.93822 -0.35476,-0.36486 -2.5535,0.36485 -6.38203,2.62489 -3.82976,2.26156 -3.19188,3.06419 -11.27584,4.95988 -8.08445,1.89669 -13.33252,2.77174 -17.58722,4.15774 -4.25493,1.38549 -5.53168,1.89569 -5.53168,1.89569 0,0 2.19825,-1.53184 3.54566,-4.59426 1.34716,-3.06268 1.5606,-4.8867 1.20584,-5.17839 -0.35451,-0.29218 -1.48921,-0.94797 -4.18378,1.60451 -2.69458,2.55273 -5.38939,5.3969 -7.80084,6.34512 -2.41072,0.94797 -2.75586,1.33154 -3.47476,1.53184 -1.49615,0.47236 -4.10487,-0.72828 -4.64048,-1.61952 -0.73372,-4.07064 -1.01685,-4.89384 -3.61817,-10.36549 -0.74828,-6.795819 -1.49437,-6.368302 -0.46393,-13.248606 1.56036,-5.68908 6.73704,-11.304485 13.33155,-16.482365 6.59523,-5.178382 18.93364,-12.251952 25.67068,-11.231312 6.73705,1.021143 9.92697,1.822517 14.53642,4.010896 4.61018,2.188378 11.41764,7.0009 14.75034,11.522492 3.33271,4.522096 5.10505,10.138003 5.17619,11.231815 0.0704,1.094315 2.76524,3.210024 3.82854,8.679084 1.06429,5.470566 -0.56723,16.409696 -0.77969,19.472616 -0.21296,3.06368 -1.06355,3.86556 -1.56036,3.64705 -0.49682,-0.21851 -3.19163,0 -3.89993,0.72871 -0.70928,0.72971 -1.277,1.45866 -0.77994,4.08457 0.49583,2.6254 1.13494,3.20851 0.85059,4.66768 -0.28361,1.45842 -1.84079,4.88444 -1.84079,4.88444 z"
+	 inkscape:connector-curvature="0"
+	 style="clip-rule:evenodd;fill:#9497a2;fill-opacity:1;fill-rule:evenodd;stroke-width:0.24794832" /><path
+	 sodipodi:nodetypes="cccccccssccc"
+	 id="path34-3"
+	 d="m 547.25199,135.97397 c 0,0 -0.42493,-1.8967 -1.98505,-8.31398 -1.55988,-6.41778 -1.4188,-8.02229 -2.55301,-11.5235 -1.13446,-3.5002 -2.41096,-5.97975 -2.41096,-5.97975 5.39286,-3.68131 4.33763,-10.191706 11.1306,-20.346918 0.0704,1.09432 2.76524,3.21003 3.82854,8.679088 1.06429,5.47056 -0.56723,16.40969 -0.77969,19.47261 -0.21296,3.06368 -1.06355,3.86556 -1.56036,3.64705 -0.49682,-0.21851 -3.19163,0 -3.89993,0.72871 -0.70928,0.72971 -1.277,1.45866 -0.77994,4.08457 0.49583,2.6254 1.13494,3.20851 0.85059,4.66768 -0.28361,1.45842 -1.84079,4.88444 -1.84079,4.88444 z"
+	 inkscape:connector-curvature="0"
+	 style="clip-rule:evenodd;fill:#e1e0e2;fill-opacity:1;fill-rule:evenodd;stroke-width:0.24794832" /></svg>
\ No newline at end of file
diff --git a/resources/vector/hair/tails back.svg b/resources/vector/hair/tails back.svg
index 93f672f9e8c5c0d53dab81719e33b98b8b0c2541..56db7526bd3fe5b5a6d7bca2980fa8877ac84872 100644
--- a/resources/vector/hair/tails back.svg	
+++ b/resources/vector/hair/tails back.svg	
@@ -13,89 +13,89 @@
    sodipodi:docname="tails back.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
   <metadata
-     id="metadata17">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title />
-      </cc:Work>
-    </rdf:RDF>
+	 id="metadata17">
+	<rdf:RDF>
+	  <cc:Work
+		 rdf:about="">
+		<dc:format>image/svg+xml</dc:format>
+		<dc:type
+		   rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+		<dc:title />
+	  </cc:Work>
+	</rdf:RDF>
   </metadata>
   <sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1774"
-     inkscape:window-height="1339"
-     id="namedview15"
-     showgrid="false"
-     inkscape:zoom="3.776"
-     inkscape:cx="456.54335"
-     inkscape:cy="793.53902"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="Layer_1" />
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1774"
+	 inkscape:window-height="1339"
+	 id="namedview15"
+	 showgrid="false"
+	 inkscape:zoom="3.776"
+	 inkscape:cx="456.54335"
+	 inkscape:cy="793.53902"
+	 inkscape:window-x="0"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="Layer_1" />
   <defs
-     id="defs10">
-    <clipPath
-       id="clipPath4493">
-      <path
-         d="M413.14 13.77l202.33-1.06L600.64 214l-57.2 277.55-203.4 3.17z"
-         id="path4495"
-         fill="#595f6d"
-         stroke-width=".1"
-         stroke-linecap="round" />
-    </clipPath>
+	 id="defs10">
+	<clipPath
+	   id="clipPath4493">
+	  <path
+		 d="M413.14 13.77l202.33-1.06L600.64 214l-57.2 277.55-203.4 3.17z"
+		 id="path4495"
+		 fill="#595f6d"
+		 stroke-width=".1"
+		 stroke-linecap="round" />
+	</clipPath>
   </defs>
   <style
-     id="style2">.st0{fill:#010101;} .st1{fill:#F6E0E8;}</style>
+	 id="style2">.st0{fill:#010101;} .st1{fill:#F6E0E8;}</style>
   <style
-     id="style4546">.st0{fill:#F6E0E8;}</style>
+	 id="style4546">.st0{fill:#F6E0E8;}</style>
   <g
-     transform="matrix(-0.96996408,-0.24324811,-0.24324811,0.96996408,1063.72,135.67311)"
-     id="g4566-6">
-    <g
-       style="stroke-width:0.50999999"
-       id="g4512-6">
-      <path
-         style="fill:#e1e0e2"
-         inkscape:connector-curvature="0"
-         id="path4543-4"
-         d="m 538.09,198.91 c -0.6,1.2 -1.4,3.7 -1.8,5.6 -0.8,3.9 -0.4,8.1 1.3,12.9 0.7,2 0.9,3.5 0.7,6 -0.3,4.4 0.5,6.7 3.4,9.8 2,2.2 2.5,3.1 3,5.6 0.5,2.6 1,3.5 3,5.5 2.3,2.3 2.4,2.6 2.7,5.9 0.4,4.9 2,8.8 4.7,11.6 l 2.3,2.3 v 4.2 c 0,5.4 0.9,8 3.8,11 l 2.3,2.3 -1.1,4.3 c -1.6,5.7 -1.6,11.1 -0.1,13.9 l 1.1,2 c -0.1,0 -0.1,0.1 -0.1,0.1 l -2.8,3.4 c -4,5 -9.5,13.5 -12.1,18.5 -4.9,9.8 -5.1,13.7 -0.8,22.6 1.5,3.1 3.5,6.4 4.5,7.4 1.6,1.6 2.1,1.9 3.7,1.7 l 1.9,-0.2 -0.7,-2.9 c -1.1,-4.7 -1,-5.9 0.9,-7.6 0.9,-0.8 4.6,-3 8.2,-5 11,-6 16.1,-10.4 17.6,-15.2 1.3,-4.1 -0.4,-10.3 -5,-18.5 l -2.1,-3.8 2.5,-2.2 c 3.1,-2.8 4.6,-5.8 4.6,-9.2 0,-2.6 -1.6,-7.1 -3.4,-9.7 -1.5,-2 -1.4,-3 0.3,-5.6 2.9,-4.3 2.4,-8.5 -1.6,-12.3 l -1.9,-1.8 0.3,-3.8 c 0.3,-3.5 0.2,-4.1 -1,-6.5 -0.8,-1.4 -2.1,-3.4 -2.9,-4.4 -1.5,-1.6 -1.6,-2 -1.3,-4.1 0.5,-3.4 -1.8,-7.8 -6.1,-11.7 -3,-2.7 -3.3,-3.1 -3.5,-5.6 -0.2,-1.5 -0.9,-4 -1.7,-5.7 -1.3,-2.9 -1.4,-3.1 -0.7,-6.3 0.5,-2.8 0.5,-3.6 -0.2,-5.7 -0.5,-1.3 -1.5,-3.3 -2.2,-4.3 -1,-1.5 -1.2,-2.1 -0.7,-3.2 0.7,-1.8 0.7,-5.5 0,-7.2 -0.4,-1 -0.3,-1.9 0.2,-3.5 0.4,-1.1 0.9,-4.3 1,-7 0.1,-2.7 0.5,-6 0.8,-7.4 0.5,-2.2 0.4,-2.7 -1.4,-6.7 -1.1,-2.5 -2,-5.5 -2.2,-7.1 -7.73428,-4.1896 -6.84112,-1.94496 -17.4,37.6 z"
-         sodipodi:nodetypes="ccccccscccscccccccccscccccccccscccccccccccccccccscccc" />
-      <path
-         style="fill:#b4b3b7"
-         inkscape:connector-curvature="0"
-         d="m 538.69,191.83341 c 0.76621,2.5821 0.4,4.87659 -0.6,7.07659 -0.6,1.2 -1.4,3.7 -1.8,5.6 -0.8,3.9 -0.4,8.1 1.3,12.9 0.7,2 0.9,3.5 0.7,6 -0.3,4.4 0.5,6.7 3.4,9.8 2,2.1 2.5,3 3,5.6 0.5,2.6 1,3.4 3,5.4 2.3,2.3 2.4,2.6 2.7,5.8 0.4,4.9 2,8.8 4.7,11.6 l 2.3,2.4 v 4.2 c 0,5.4 0.9,8 3.8,11 l 2.3,2.3 -1.1,4.3 c -1.6,5.7 -1.6,11.2 -0.1,14 l 1.1,2 c -0.1,0 -0.1,0.1 -0.1,0.1 l -2.8,3.4 c -4,5 -9.5,13.5 -12.1,18.6 -4.9,9.9 -5.1,13.8 -0.8,22.7 1.5,3.1 3.5,6.4 4.5,7.4 1.6,1.6 2.1,1.9 3.7,1.7 l 1.9,-0.2 -0.7,-2.9 c -1.1,-4.6 -1,-5.9 0.9,-7.5 0.9,-0.8 4.6,-3.1 8.2,-5 11,-6.1 16.1,-10.4 17.6,-15.2 1.3,-4.1 -0.4,-10.4 -5,-18.6 l -2.1,-3.7 2.5,-2.2 c 3.1,-2.8 4.6,-5.8 4.6,-9.2 0,-2.6 -1.6,-7.1 -3.4,-9.7 -1.5,-2 -1.4,-3 0.3,-5.6 2.9,-4.3 2.4,-8.5 -1.6,-12.3 l -1.8,-1.8 0.3,-3.9 c 0.3,-3.5 0.2,-4.1 -1,-6.5 -0.8,-1.5 -2.1,-3.5 -2.9,-4.4 -1.5,-1.7 -1.6,-2 -1.3,-4.2 0.5,-3.4 -1.8,-7.8 -6.1,-11.7 -3,-2.7 -3.2,-3.1 -3.5,-5.6 -0.2,-1.5 -0.9,-4 -1.7,-5.7 -1.3,-2.9 -1.3,-3.1 -0.7,-6.2 0.5,-2.8 0.5,-3.6 -0.2,-5.7 -0.5,-1.4 -1.4,-3.3 -2.1,-4.3 -1.1,-1.6 -1.2,-2.1 -0.7,-3.3 0.7,-1.8 0.7,-5.4 0,-7.2 -0.4,-1 -0.3,-1.9 0.2,-3.5 0.4,-1.1 0.9,-4.3 1,-7 0.1,-2.7 0.5,-6 0.8,-7.4 0.5,-2.2 0.4,-2.7 -1.4,-6.7 -1.1,-2.5 -2,-5.5 -2.2,-7.1 l -0.2,-2.8 c -3.57269,-5.89949 -10.71271,5.80542 -16.8,33.22341 z m -2.8,5.17659 c 246.95728,534.06054 123.47864,267.03027 0,0 z"
-         id="path4534-6"
-         sodipodi:nodetypes="ccccccsscccscccccccccscccccccccscccccccccccccccccsccccccc" />
-      <path
-         style="fill:#9497a2"
-         inkscape:connector-curvature="0"
-         d="m 540.21,187.71 c -0.9,5.2 -0.9,5.3 0.2,5 1.7,-0.5 1.6,3 -0.1,7.4 -1.3,3.2 -1.6,4.5 -1.5,7.9 0,2.2 0.4,5.3 0.9,6.9 0.4,1.5 1,4.7 1.2,7.1 0.5,5.2 2.1,9.3 4.3,11.5 1.2,1.1 2,2.7 2.8,5.5 1,3.3 1.5,4.1 3.2,5.5 1.8,1.5 2.1,1.9 2.1,3.8 0,2.4 0.9,5.3 1.6,5.3 0.3,0 0.5,-1 0.5,-2.2 0,-4.3 2.3,-6.3 4,-3.5 0.5,0.9 1.2,1.6 1.5,1.6 1.5,0 1.5,2.9 0.1,5.6 -1,2 -1.2,2.1 -2.8,1.8 -2.9,-0.5 -2.7,1.1 0.6,5 1.5,1.8 1.7,2.4 1.7,5 0,3.8 2.5,10.3 4.6,12.2 1.8,1.7 1.9,2.6 0.5,6.5 -1.6,4.6 -1.7,7.5 -0.5,10.8 1.7,4.3 1.5,5.4 -1.7,9.4 -3.8,4.7 -9.6,13.4 -11.5,17.2 -2.5,4.9 -4,10.3 -3.7,12.7 0.9,6.6 2.8,12 5.4,15.7 1.2,1.8 2.4,1.9 2.4,0.1 0,-0.7 0.3,-1.9 0.7,-2.7 0.4,-0.7 1,-1.9 1.3,-2.6 1.8,-3.8 2.6,-4.8 4.9,-6.2 1.4,-0.8 3.1,-1.4 3.9,-1.4 1.5,0 6.4,-2.3 10,-4.7 3.4,-2.2 6.1,-4.9 7.2,-7.2 1.4,-2.5 1.8,-7.2 1,-9.7 -1.1,-3.7 -6.7,-14.5 -7.6,-15.1 -1.1,-0.7 -1.2,-1.9 -0.2,-4.7 0.4,-1.2 0.8,-3.1 0.8,-4.3 0,-1.8 -0.1,-2.1 -0.7,-1.6 -1.3,1.1 -1.5,-2.5 -0.3,-6.1 0.6,-1.8 1.2,-3.3 1.3,-3.3 0.1,0 1,0.3 2,0.7 2.1,0.9 2.4,0.5 1,-1.8 l -0.3,-0.7 0,-0.4 c 0,-0.5 0.1,-1.1 0.1,-1.8 l 1.3,-3.3 1.9,-4.7 -0.8,-2.2 c -0.5,-1.2 -1.7,-2.8 -2.83,-3.7 l -2,-1.6 0.1,-1.5 0.2,-2.6 c 0.4,-4.7 -0.4,-7.2 -3.5,-11 -1.7,-2 -1.8,-2.4 -1.6,-4.5 0.4,-3.5 -1.5,-7.1 -5.8,-11.3 -3,-2.9 -3.6,-3.6 -3.6,-5.1 0,-2.3 -0.7,-3.2 -2.4,-3.3 -2.9,-0.2 -5.2,-0.8 -5.7,-1.3 -0.2,-0.3 -0.55,-1.4 -0.7,-2.5 -0.4,-2.4 0.1,-2.7 3.25,-1.7 l 2.36,0.7 0.7,-4.3 c 0.8,-4.9 0.4,-6.5 -2.1,-10.1 -1.3,-1.9 -1.5,-2.3 -1,-4.1 0.2,-1.1 0.5,-6 0.5,-11 0,-7.4 0.2,-9.2 0.9,-10.3 1.4,-2.1 0.8,-7.1 -1.3,-10.1 -1.5,-2.3 -1.6,-2.8 -1.6,-6.6 -14.72198,-47.44163 -22.94115,-16.91554 -17.18,25.9 z m 5.08,-4.81 c 0.1,0 0.2,0 0.3,0.02 0.5,0.48 -0.5,3.02 -1.6,4.24 -1.4,1.5 -2.2,1.03 -2.2,-1.17 0,-1 0.4,-1.7 1.6,-2.5 0.7,-0.5 1.3,-0.7 1.7,-0.7 z m 2.6,1.2 c 0.2,0 0.3,0 0.5,0.1 0.1,0.2 -0.1,0.7 -0.6,1.2 -0.8,0.8 -0.9,0.8 -0.9,0.02 0,-0.7 0.5,-1.3 0.9,-1.35 z m -4.7,13.63 c 1.6,0 3.8,2.1 3.5,3.36 -0.4,1.2 -1.1,2.1 -3.4,4.1 -2.3,2 -3.3,2 -4,0.3 -1,-2.7 1.5,-7.8 3.9,-7.8 z m 12.4,7.1 c 0.6,0 1,0.35 1,0.77 0,0.42 -0.5,0.77 -1,0.77 -0.6,0 -1,-0.34 -1,-0.76 0,-0.42 0.4,-0.7 1,-0.7 z m -10.6,11.2 c 1.4,0 1.7,1.2 1,4.32 -0.8,3.46 -1.7,4.25 -3.1,2.82 -2.2,-2.2 -0.8,-7.17 2,-7.17 z m 4.1,12.74 c 0.5,0.05 1.2,0.5 2,1.3 1.5,1.44 1.7,2.7 1.1,5.72 -0.4,2.1 -2.3,2.1 -3.8,0 -0.8,-1.2 -1,-2.1 -0.9,-4.2 0.1,-2 0.6,-3 1.4,-2.9 z m 12.2,0.5 c 3,0 9.1,6.2 8,8.16 -0.8,1.54 -2.3,1.15 -4.5,-1.15 -1.8,-1.84 -2.2,-2.04 -2.9,-1.47 -1.1,0.9 -2.4,-0.1 -2.4,-1.7 0,-1.6 0.9,-3.7 1.6,-3.7 z m 6.6,15.76 c 1.1,0.1 4.3,2 6,3.72 2.6,2.64 2.8,4.62 0.4,5.1 -2.3,0.45 -2.4,0.42 -3.3,-0.97 -0.5,-0.7 -1.4,-1.56 -2.2,-1.9 -1.5,-0.7 -2.3,-2.28 -1,-1.76 1,0.4 1,0.3 0,-2 -0.5,-1 -0.7,-1.97 -0.6,-2.1 0.1,-0.08 0.2,-0.1 0.4,-0.1 z m 6,16.76 c 0.8,-0.2 2.8,0.8 4.3,2.1 2.3,2 2.9,3.2 2.5,4.9 -0.2,1 -0.8,1.5 -2.1,1.9 -1.8,0.5 -1.8,0.5 -3,-1.3 -1.1,-1.8 -2.6,-7.1 -2.1,-7.6 0.1,-0.1 0.2,-0.2 0.3,-0.2 z m -11.4,2.3 c 0.5,0 0.8,0.4 1.2,1.3 0.3,0.8 0.4,2.2 0.3,3.2 -0.2,1 -0.5,1.9 -0.8,2 -0.9,0.5 -2.6,-2.4 -2.6,-4.3 0,-1.6 0.2,-2 1.2,-2.2 0.2,-0.1 0.4,-0.1 0.6,-0.1 z m 3.3,1.7 c 0.2,0 0.4,0.5 0.4,1.1 0,0.6 -0.2,1.4 -0.5,1.8 -0.4,0.6 -0.5,0.5 -0.8,-0.3 -0.4,-1.2 0,-2.7 0.7,-2.7 z m 7,0.5 c 0.4,0.1 1.5,1.6 1.5,2.1 0,0.2 -0.3,0.4 -0.6,0.4 -0.6,0 -1.5,-2.1 -1.2,-2.6 0,-0.1 0.1,-0.1 0.1,0 z m 8.5,16.8 c -0.1,0 -0.1,2 0,4.6 0.1,4 0,4.9 -1.2,7.4 -0.7,1.5 -1.3,2.9 -1.3,3.1 0,0.7 1.4,-0.4 2.4,-1.9 2.3,-3.5 2.8,-8 1.1,-11.3 l -1.1,-2 z m -15.6,0.7 c 0.2,-0.1 0.3,0.4 0.5,1.6 0.2,1.1 0.1,3 -0.2,4.2 -0.3,1.2 -0.8,2.1 -1,2.1 -0.6,0 -0.5,-6.1 0.2,-7.3 0.2,-0.4 0.4,-0.7 0.5,-0.7 z m 6.3,26.8 c 0.1,-0.1 0.9,0.4 1.8,1.2 1.5,1.2 1.7,1.3 2.2,0.5 0.8,-1.2 1.5,-0.7 2.7,1.8 0.9,1.6 1.2,1.9 1.8,1.4 1.3,-1.1 1,5.6 -0.3,8.1 -2,4 -7.1,7.7 -11.9,8.4 -1.6,0.2 -1.7,0.2 -1.4,-0.8 0.4,-1.5 -0.7,-1.4 -3.5,0.3 -3.8,2.4 -3.7,2.3 -3.3,1.5 0.2,-0.4 1.1,-1.6 1.9,-2.6 2.4,-3 0.8,-3.9 -2.8,-1.6 -1.2,0.7 -2.2,1.2 -2.3,1 -0.7,-0.7 0.8,-3.3 3.3,-5.9 1.6,-1.6 3.3,-3.6 3.8,-4.3 1.2,-1.7 1.4,-1.5 0.9,0.9 -1,4.1 1.9,0.6 4.8,-5.8 1,-2.4 2,-4.4 2.1,-4.6 z"
-         id="path4528-5"
-         sodipodi:nodetypes="cccccccccssscscccscccccccscccscccccscsscccscccccccccccsccccccccscccccccscccccssccccsccccsssccccccccccccccccccscccccccscccccccccsccccccsccccscccccssccccccsccccccssccccccccccccsscccccccc" />
-      <path
-         style="fill:#525767"
-         inkscape:connector-curvature="0"
-         d="m 543.81,162.59 c -1,2.7 -1.1,3.4 -0.6,4.4 0.4,0.6 0.5,1.8 0.3,2.7 -0.3,1.8 0.2,1.9 1.5,0.5 1.2,-1.4 2.8,-1.3 5.1,0.1 2.5,1.5 2.5,3.5 0,4.9 -1.5,0.8 -3,0.7 -4.5,-0.3 -1.7,-1.1 -2.1,-0.6 -1.4,1.6 0.2,0.6 0.3,1.1 0.3,1.5 0,0.4 0,0.8 -0.2,1.1 -0.9,1.6 -0.5,2 1.1,1.2 2.1,-1.1 4.4,-0.2 5.4,2.2 0.4,0.9 0.7,1.8 0.7,1.9 0,0.1 -1,1.3 -2.3,2.7 -1.7,1.8 -2.6,2.4 -3.3,2.2 -0.6,-0.2 -1.1,0 -1.6,0.7 -0.3,0.5 -1,1 -1.5,1 -0.7,0 -0.9,0.4 -0.9,2.5 v 2.5 l 1.4,-0.7 c 1.4,-0.8 4.2,-0.4 5.6,0.8 0.9,0.7 0.8,3.7 -0.2,5.5 -1.8,3.5 -6.4,7.3 -8.5,6.9 -0.3,-0.1 -0.6,0.5 -0.7,1.4 -0.2,1.7 1.4,7.9 2,7.9 0.2,0 0.7,-0.8 1,-1.7 0.8,-2.4 2,-3.5 3.9,-3.5 2.7,0 2.9,1.1 1.4,7.6 -1.5,6.4 -2.1,6.9 -4.7,4 l -1.5,-1.6 0.4,1.5 c 0.7,2.9 2.3,6.2 3.8,7.6 l 1.5,1.4 V 230 c 0,-4.9 1.5,-6.47 4.8,-4.96 2,1 3.4,7.6 2.6,12.9 -0.4,2.7 -0.9,2.8 -3.5,1.1 -1.4,-1 -1.8,-1.1 -1.8,-0.5 0,1.2 1.3,3.4 3,4.9 0.9,0.8 1.6,1.7 1.6,2.1 0,0.36 0.4,-0.2 0.9,-1.2 2.2,-4.6 8.2,-0.3 8.2,5.87 0,1 -0.2,3 -0.6,4.4 -0.6,2.5 -0.5,2.6 0.7,3.7 0.8,0.6 1.6,1.6 1.9,2.3 0.3,0.6 0.8,1.1 1,1.1 1.1,-0.2 1.6,0.2 2.1,1.7 1.2,3.5 0.4,7.6 -2.1,10.4 -1,1.1 -1,1.1 0.1,3.1 1.1,2.2 1.5,2.5 2.4,1.5 0.4,-0.3 1,-0.4 1.4,-0.2 1.1,0.5 1,3.6 -0.2,7.1 -0.7,1.9 -1,4.2 -1,6.7 0,3 -0.2,4.1 -1,5 -0.5,0.7 -1.1,1.9 -1.3,2.7 -0.2,0.8 -2.4,4.2 -4.9,7.5 -9,11.9 -10.8,15.5 -12.1,23.8 -1,6.2 0.6,14.2 3.4,17 0.9,0.9 1,0.9 1.7,-0.9 0.4,-1 0.9,-1.8 1.2,-1.8 0.2,0 0.9,-1 1.4,-2.3 0.6,-1.3 1.6,-3 2.4,-3.9 0.7,-0.8 1.2,-1.6 1.1,-1.8 -0.6,-0.6 -3.7,1.9 -4.9,4.1 -0.7,1.3 -1.4,2.4 -1.7,2.4 -0.5,0 0,-6.8 0.5,-8.4 0.7,-1.7 -1,-0.5 -2,1.4 -1,2.1 -1.8,2.1 -1.8,0 0,-2.4 3,-7.2 6.9,-10.6 3.1,-2.8 8.3,-9.4 8.3,-10.6 0,-0.2 0.9,-2 1.9,-4.1 1.2,-2.3 2.2,-3.7 2.7,-3.7 0.5,0 1.2,-0.5 1.5,-1 0.6,-0.9 1,-1 2.6,-0.7 1,0.2 2.5,0.7 3.3,1.1 0.8,0.4 1.6,0.6 1.8,0.5 0.4,-0.4 -0.2,-2.4 -1.4,-4.3 -0.9,-1.4 -1.3,-1.6 -3.1,-1.6 -1.9,0 -2.1,-0.1 -1.7,-1.1 0.2,-0.6 0.4,-2.5 0.6,-4.3 0.2,-2.7 0.1,-3.2 -0.6,-3.2 -0.5,0 -0.8,-0.3 -0.8,-0.6 0,-1.4 1.5,-10 2.2,-12.3 0.7,-2.5 0.7,-2.5 2.7,-2.4 1.9,0.1 2.1,0 2.6,-1.8 0.7,-2.2 0.5,-2.6 -1.7,-2.6 -1,0 -2.5,-0.5 -3.7,-1.3 -2.4,-1.6 -3.2,-3.9 -3,-8.8 l 0.1,-3.2 3,0.3 3,0.3 -0.1,-2.1 -0.2,-2.2 -2.1,0.1 c -1.7,0.1 -2.3,-0.1 -3.3,-1.1 -0.7,-0.7 -1.7,-1.3 -2.4,-1.3 -1.2,0 -3.7,-2.6 -3.8,-4 -0.3,-3.4 -0.1,-7.7 0.5,-7.7 0.36,0 1.9,0.6 3.5,1.5 3.2,1.6 3.7,1.6 2.9,0 -0.3,-0.5 -0.6,-1.5 -0.6,-2.2 0,-1 -0.2,-1.2 -2,-1.2 -2.3,0 -7.8,-2.6 -10.3,-4.9 -1.4,-1.3 -1.5,-1.6 -1.3,-4.6 l 0.1,-3.2 2.68,0.1 2.7,0.1 -0.3,-1.6 c -0.5,-2.2 -0.6,-2.3 -3.7,-2.6 -3.2,-0.3 -4.2,-0.7 -5.9,-2.8 -1.5,-1.7 -1.9,-5.5 -0.6,-6.5 0.7,-0.5 3.2,-0.2 5.5,0.7 1.2,0.5 2,-1.6 2.1,-5.5 0,-2.2 -0.2,-3.4 -0.8,-4.3 l -0.9,-1.3 v 2.6 c 0,1.9 -0.3,2.8 -1.1,3.5 -1,0.9 -1.1,0.9 -2.9,-0.1 -1.1,-0.6 -2.37,-1.9 -2.9,-2.9 l -1,-1.9 1,-1 c 0.63,-0.6 1.2,-1.3 1.2,-1.5 0,-0.2 0.7,-0.6 1.6,-0.9 2.2,-0.6 2.4,-2.1 0.7,-4.9 -1.7,-2.8 -1.7,-4.8 -0.1,-5.4 1.8,-0.7 2.1,-3.4 0.5,-5.2 -1.7,-1.8 -1.6,-5.2 0.2,-5.4 0.6,-0.1 1.1,-0.4 1.1,-0.8 0,-0.3 0.4,-1.7 1,-3 0.9,-2.1 1,-2.72 0.5,-5.4 -0.5,-2.82 -2.2,-6 -3.2,-6 -1,0 -1.7,-2.1 -1.1,-3.24 -2.7714,-3.85081 -8.41949,-6.59717 -11.38,-0.08 z m 11.5,8.31 c 0.5,-0.06 1.2,0.45 1.3,1.35 0.1,0.72 -0.1,1.14 -0.5,1.14 -0.9,0 -1.4,-0.5 -1.4,-1.7 0,-0.5 0.3,-0.8 0.6,-0.9 z m 2.7,87.98 c -0.2,0.04 -0.3,0.3 -0.3,0.8 0,0.47 0.5,1.38 1.1,2.03 1.5,1.6 2,1.5 2,-0.3 0,-1.2 -0.3,-1.6 -1.3,-2 -0.8,-0.3 -1.3,-0.5 -1.5,-0.4 z m 25.2,59.24 c -0.2,-0.13 -0.4,0.65 -0.6,2.23 -0.2,1.54 -0.5,3.25 -0.7,3.8 -0.4,1 -0.3,1 0.4,0.07 1,-1.16 1.6,-5.06 1,-6 0,-0.05 0,-0.1 -0.1,-0.1 z m -1.7,7.82 c -0.1,0 -0.8,0.86 -1.6,1.9 -1.1,1.57 -1.2,1.73 -0.2,0.9 1.1,-0.96 2.4,-2.8 1.9,-2.8 z"
-         id="path4520-8"
-         sodipodi:nodetypes="ccccccccscccscccssccccccsssccccscscccscscsccccccccccscsccscsccccsccscscsccsccsccsscccsscccccccsscsccsscccccccccccccscccccscscccsccsccccsscccscscccccccccsccss" />
-      <path
-         style="fill:#474e62"
-         inkscape:connector-curvature="0"
-         d="m 549.21,121.49 c -0.3,-1.4 -2.9,-4.3 -3.8,-4.3 -0.2,0 -0.8,0.6 -1.3,1.3 -0.8,1.2 -0.8,1.9 -0.2,9 l 1.4,15.6 c 1,9.2 0.7,14.7 -0.8,19.2 -0.8,2.4 -1,3.4 -0.5,3.8 0.3,0.3 0.6,1 0.6,1.4 0,0.7 0.5,0.9 2.4,0.9 4.8,0 5.9,0.2 6.4,1.4 0.8,1.9 -0.8,5.4 -2.9,6.1 -2.1,0.7 -4,0.7 -4.8,0 -0.5,-0.5 -0.6,-0.2 -0.6,1.3 0,1.8 0,1.9 1.6,1.8 2.6,-0.3 4.2,0.4 5.2,2.3 0.8,1.4 0.9,2 0.4,3.4 -0.5,1.6 -5.5,6.5 -6.6,6.5 -0.3,0 -0.7,0.4 -1,1 -0.3,0.5 -0.9,1 -1.3,1 -0.4,0 -0.7,0.3 -0.7,0.8 0,0.6 0.3,0.7 0.9,0.4 1.4,-0.6 5.9,-0.2 6.7,0.5 2.8,2.7 -2.3,12.1 -7.9,14.5 -1.5,0.7 -2.2,1.3 -2.2,2 0,1.5 1.1,5.5 1.4,5.5 0.2,0 0.9,-1.2 1.6,-2.7 1.6,-3.4 2.5,-3.9 4.8,-2.8 2.1,1 2.3,2 1,7.6 -0.9,3.8 -0.7,4.4 1.6,4.5 2.6,0 3.2,0.5 4,3.7 0.5,1.7 0.9,5.4 1,8.1 l 0.1,5 2.7,0.9 c 1.6,0.5 3.1,1.4 3.7,2.2 0.5,0.7 1.1,1.3 1.4,1.3 0.9,0 1,-1.1 0.2,-2.1 -1,-1.5 -1,-2 0.3,-2 1.6,0 1,-1.1 -1.2,-2.3 -1,-0.6 -2.8,-2 -3.9,-3.2 -1.9,-2.1 -2,-2.4 -2,-5.6 v -3 l 2.7,0.1 c 1.8,0.1 2.5,0.1 2.7,-0.3 0.2,-0.1 0.2,-0.3 0.2,-0.6 v -0.5 c 0,-0.6 -0.5,-0.8 -1.9,-0.8 -2.6,0 -6.3,-1.8 -7.6,-3.5 -1.2,-1.8 -1.8,-5.8 -1.1,-7.2 0.4,-0.8 1.1,-1.1 2.6,-1.1 2.8,0 2.7,-1.1 -0.3,-2.6 -1,-0.4 -2,-1.7 -2.7,-3.2 l -1.1,-2.4 1.6,-2 c 0.9,-1.1 2.1,-2 2.6,-2 1.5,0 1.6,-1.2 0.2,-3.8 -1.8,-3.4 -1.7,-5.6 0.2,-6.6 1.8,-0.9 1.8,-0.9 0.6,-3 -1.3,-2.1 -1.9,-6.1 -1,-7.1 0.4,-0.4 1.1,-0.7 1.6,-0.7 0.6,0 1.3,-0.8 2,-2.3 1.4,-3.1 1.4,-3.3 -0.7,-2.9 -1.7,0.3 -1.7,0.3 -2.4,-1.8 -0.6,-1.8 -0.6,-2.2 0.1,-2.9 0.6,-0.6 1,-0.6 1.9,-0.2 0.9,0.5 1.1,0.5 1.1,-0.3 0,-0.9 -0.9,-2 -2.8,-3.6 -1.1,-1 -1.6,-3.1 -0.9,-4.4 0.3,-0.6 0.6,-2.3 0.7,-3.7 1.05707,-12.40526 -2.45193,-24.10092 -6,-35.6 z m 2.9,34.4 c 0.1,-0.1 0.1,0 0.2,0.2 0.2,0.5 0.1,1.2 0,1.5 -0.1,0.3 -0.2,-0.1 -0.2,-0.9 0,-0.6 0.1,-0.9 0.1,-0.9 z m 7.5,52.4 c -0.3,0 -0.5,0.3 -0.5,0.8 0,0.4 -0.5,1.4 -1.1,2.2 -0.6,0.8 -1,1.9 -0.8,2.3 0.2,0.5 0.7,0.8 1.2,0.8 h 0.1 c 0.4,0 0.6,-0.1 0.8,-0.4 0.6,-1 0.9,-5.7 0.4,-5.7 z M 543,227.2 c -0.34,-0.03 -0.3,0.25 -0.1,1 0.2,0.7 0.96,2.03 1.7,3 l 1.34,1.8 0.3,-1.8 c 0.4,-2 -0.2,-3.55 -1.2,-3.55 -0.4,0 -1.1,-0.17 -1.57,-0.35 -0.2,-0.1 -0.34,-0.1 -0.44,-0.1 z m 7.03,14.03 1.5,1.6 c 1.8,2 2.3,2 2.3,0.4 0,-0.7 -0.27,-1.2 -0.6,-1.2 -0.33,0 -1.2,-0.1 -1.9,-0.3 l -1.3,-0.3 z m 18.4,0.7 c -1.1,0 -1.1,0.1 0.2,1 1.12,0.9 2.5,1.4 2.5,0.8 0,-0.6 -1.75,-1.8 -2.7,-1.8 z m -4.7,8.6 c -0.48,0.1 -0.7,1.2 -0.7,3.3 0,1.7 0.3,2.8 1,3.7 0.55,0.8 1,1.6 1,2 0,0.4 0.46,0.8 1,1 0.5,0.2 1.3,1 1.8,1.8 1.1,2.3 1.9,1.9 1.6,-0.82 l -0.3,-2.3 2.6,0.3 c 1.45,0.2 3,0.4 3.5,0.7 0.74,0.3 0.9,0.1 0.9,-1 0,-1.3 -0.1,-1.4 -2,-1.1 -1.7,0.2 -2.13,0.1 -2.8,-1 -0.5,-0.7 -1.3,-1.2 -2,-1.2 -1.2,0 -3.04,-1.7 -4.65,-4.2 -0.44,-0.7 -0.8,-1 -1.07,-0.9 z m -4.26,9.8 c -0.2,0 -0.3,0 -0.4,0.1 -0.2,0.1 -0.18,0.5 0,0.8 0.4,0.7 1.3,0.7 1.3,0.1 0,-0.47 -0.56,-0.94 -1,-1 z m 9.5,5 c -0.2,0 -0.4,1.4 -0.5,3.2 -0.13,1.8 -0.7,4.3 -1.4,5.8 -0.7,1.5 -1.04,3 -0.84,3.5 0.3,0.8 0.43,0.8 1.5,-0.2 1.44,-1.4 2.2,-1.4 2.86,-0.1 0.8,1.6 0.6,4.5 -0.8,8.5 -1.1,3 -1.3,4.5 -1.1,6.6 0.1,1.5 0.4,3 0.6,3.3 0.7,1.15 1.2,-0.4 2,-6.12 1,-7.3 2.3,-13.1 3.1,-13.8 0.9,-0.7 0,-2.3 -1.6,-3 -0.9,-0.3 -1.5,-1.3 -2.4,-4 -0.7,-2 -1.4,-3.6 -1.6,-3.6 z m 8.3,9.7 c -1.74,0 -2.05,0.7 -0.68,1.5 1.1,0.63 1.8,0.4 2,-0.67 0.1,-0.64 -0.2,-0.85 -1.4,-0.85 z m -5.4,21.1 c -0.2,0 -0.48,0.25 -0.94,0.7 -0.6,0.53 -1.65,1.05 -2.35,1.15 -0.94,0.14 -1.6,0.86 -2.63,2.9 -0.73,1.53 -3.63,5.76 -6.4,9.43 -6.6,8.7 -8.4,12.1 -9.7,18.1 -0.6,2.7 -1.1,5.4 -1.1,6 0,0.7 0.17,1.1 0.4,1 0.2,-0.1 1.75,-2.9 3.43,-6.2 2.34,-4.6 3.92,-7 7.03,-10.4 4.2,-4.5 5.9,-6.9 5.9,-8.1 0,-0.3 0.9,-2.1 1.9,-3.9 1.6,-2.9 1.9,-3.2 2.5,-2.4 0.9,1.2 1.9,0.4 1.6,-1.3 -0.1,-0.7 0.1,-2.3 0.5,-3.5 0.4,-1.2 0.6,-2.5 0.4,-2.9 -0.2,-0.3 -0.3,-0.5 -0.5,-0.4 z m 3.84,6.85 c -0.7,0 -0.6,1.4 0.1,1.7 0.4,0.12 0.8,0.15 0.9,0.06 0.4,-0.3 -0.4,-1.75 -0.9,-1.75 z m -25.8,38.37 c 0,0 -0.1,0 -0.1,0.04 -0.4,0.2 0,1.8 0.8,3.9 0.7,1.5 1.2,0.9 0.8,-0.8 -0.5,-2.2 -0.9,-3.2 -1.3,-3.2 z"
-         id="path4516-0"
-         sodipodi:nodetypes="cscccscsscscscccscsscccsscccccccccscsccscccssscssccccsccccsccsscsccccccssccssscsscsscccccscscccsscccscsscscsccccccsccsccccccsccccscccccccccccccccccccccccscccscscscccccccccccccc" />
-    </g>
+	 transform="matrix(-0.96996408,-0.24324811,-0.24324811,0.96996408,1063.72,135.67311)"
+	 id="g4566-6">
+	<g
+	   style="stroke-width:0.50999999"
+	   id="g4512-6">
+	  <path
+		 style="fill:#e1e0e2"
+		 inkscape:connector-curvature="0"
+		 id="path4543-4"
+		 d="m 538.09,198.91 c -0.6,1.2 -1.4,3.7 -1.8,5.6 -0.8,3.9 -0.4,8.1 1.3,12.9 0.7,2 0.9,3.5 0.7,6 -0.3,4.4 0.5,6.7 3.4,9.8 2,2.2 2.5,3.1 3,5.6 0.5,2.6 1,3.5 3,5.5 2.3,2.3 2.4,2.6 2.7,5.9 0.4,4.9 2,8.8 4.7,11.6 l 2.3,2.3 v 4.2 c 0,5.4 0.9,8 3.8,11 l 2.3,2.3 -1.1,4.3 c -1.6,5.7 -1.6,11.1 -0.1,13.9 l 1.1,2 c -0.1,0 -0.1,0.1 -0.1,0.1 l -2.8,3.4 c -4,5 -9.5,13.5 -12.1,18.5 -4.9,9.8 -5.1,13.7 -0.8,22.6 1.5,3.1 3.5,6.4 4.5,7.4 1.6,1.6 2.1,1.9 3.7,1.7 l 1.9,-0.2 -0.7,-2.9 c -1.1,-4.7 -1,-5.9 0.9,-7.6 0.9,-0.8 4.6,-3 8.2,-5 11,-6 16.1,-10.4 17.6,-15.2 1.3,-4.1 -0.4,-10.3 -5,-18.5 l -2.1,-3.8 2.5,-2.2 c 3.1,-2.8 4.6,-5.8 4.6,-9.2 0,-2.6 -1.6,-7.1 -3.4,-9.7 -1.5,-2 -1.4,-3 0.3,-5.6 2.9,-4.3 2.4,-8.5 -1.6,-12.3 l -1.9,-1.8 0.3,-3.8 c 0.3,-3.5 0.2,-4.1 -1,-6.5 -0.8,-1.4 -2.1,-3.4 -2.9,-4.4 -1.5,-1.6 -1.6,-2 -1.3,-4.1 0.5,-3.4 -1.8,-7.8 -6.1,-11.7 -3,-2.7 -3.3,-3.1 -3.5,-5.6 -0.2,-1.5 -0.9,-4 -1.7,-5.7 -1.3,-2.9 -1.4,-3.1 -0.7,-6.3 0.5,-2.8 0.5,-3.6 -0.2,-5.7 -0.5,-1.3 -1.5,-3.3 -2.2,-4.3 -1,-1.5 -1.2,-2.1 -0.7,-3.2 0.7,-1.8 0.7,-5.5 0,-7.2 -0.4,-1 -0.3,-1.9 0.2,-3.5 0.4,-1.1 0.9,-4.3 1,-7 0.1,-2.7 0.5,-6 0.8,-7.4 0.5,-2.2 0.4,-2.7 -1.4,-6.7 -1.1,-2.5 -2,-5.5 -2.2,-7.1 -7.73428,-4.1896 -6.84112,-1.94496 -17.4,37.6 z"
+		 sodipodi:nodetypes="ccccccscccscccccccccscccccccccscccccccccccccccccscccc" />
+	  <path
+		 style="fill:#b4b3b7"
+		 inkscape:connector-curvature="0"
+		 d="m 538.69,191.83341 c 0.76621,2.5821 0.4,4.87659 -0.6,7.07659 -0.6,1.2 -1.4,3.7 -1.8,5.6 -0.8,3.9 -0.4,8.1 1.3,12.9 0.7,2 0.9,3.5 0.7,6 -0.3,4.4 0.5,6.7 3.4,9.8 2,2.1 2.5,3 3,5.6 0.5,2.6 1,3.4 3,5.4 2.3,2.3 2.4,2.6 2.7,5.8 0.4,4.9 2,8.8 4.7,11.6 l 2.3,2.4 v 4.2 c 0,5.4 0.9,8 3.8,11 l 2.3,2.3 -1.1,4.3 c -1.6,5.7 -1.6,11.2 -0.1,14 l 1.1,2 c -0.1,0 -0.1,0.1 -0.1,0.1 l -2.8,3.4 c -4,5 -9.5,13.5 -12.1,18.6 -4.9,9.9 -5.1,13.8 -0.8,22.7 1.5,3.1 3.5,6.4 4.5,7.4 1.6,1.6 2.1,1.9 3.7,1.7 l 1.9,-0.2 -0.7,-2.9 c -1.1,-4.6 -1,-5.9 0.9,-7.5 0.9,-0.8 4.6,-3.1 8.2,-5 11,-6.1 16.1,-10.4 17.6,-15.2 1.3,-4.1 -0.4,-10.4 -5,-18.6 l -2.1,-3.7 2.5,-2.2 c 3.1,-2.8 4.6,-5.8 4.6,-9.2 0,-2.6 -1.6,-7.1 -3.4,-9.7 -1.5,-2 -1.4,-3 0.3,-5.6 2.9,-4.3 2.4,-8.5 -1.6,-12.3 l -1.8,-1.8 0.3,-3.9 c 0.3,-3.5 0.2,-4.1 -1,-6.5 -0.8,-1.5 -2.1,-3.5 -2.9,-4.4 -1.5,-1.7 -1.6,-2 -1.3,-4.2 0.5,-3.4 -1.8,-7.8 -6.1,-11.7 -3,-2.7 -3.2,-3.1 -3.5,-5.6 -0.2,-1.5 -0.9,-4 -1.7,-5.7 -1.3,-2.9 -1.3,-3.1 -0.7,-6.2 0.5,-2.8 0.5,-3.6 -0.2,-5.7 -0.5,-1.4 -1.4,-3.3 -2.1,-4.3 -1.1,-1.6 -1.2,-2.1 -0.7,-3.3 0.7,-1.8 0.7,-5.4 0,-7.2 -0.4,-1 -0.3,-1.9 0.2,-3.5 0.4,-1.1 0.9,-4.3 1,-7 0.1,-2.7 0.5,-6 0.8,-7.4 0.5,-2.2 0.4,-2.7 -1.4,-6.7 -1.1,-2.5 -2,-5.5 -2.2,-7.1 l -0.2,-2.8 c -3.57269,-5.89949 -10.71271,5.80542 -16.8,33.22341 z m -2.8,5.17659 c 246.95728,534.06054 123.47864,267.03027 0,0 z"
+		 id="path4534-6"
+		 sodipodi:nodetypes="ccccccsscccscccccccccscccccccccscccccccccccccccccsccccccc" />
+	  <path
+		 style="fill:#9497a2"
+		 inkscape:connector-curvature="0"
+		 d="m 540.21,187.71 c -0.9,5.2 -0.9,5.3 0.2,5 1.7,-0.5 1.6,3 -0.1,7.4 -1.3,3.2 -1.6,4.5 -1.5,7.9 0,2.2 0.4,5.3 0.9,6.9 0.4,1.5 1,4.7 1.2,7.1 0.5,5.2 2.1,9.3 4.3,11.5 1.2,1.1 2,2.7 2.8,5.5 1,3.3 1.5,4.1 3.2,5.5 1.8,1.5 2.1,1.9 2.1,3.8 0,2.4 0.9,5.3 1.6,5.3 0.3,0 0.5,-1 0.5,-2.2 0,-4.3 2.3,-6.3 4,-3.5 0.5,0.9 1.2,1.6 1.5,1.6 1.5,0 1.5,2.9 0.1,5.6 -1,2 -1.2,2.1 -2.8,1.8 -2.9,-0.5 -2.7,1.1 0.6,5 1.5,1.8 1.7,2.4 1.7,5 0,3.8 2.5,10.3 4.6,12.2 1.8,1.7 1.9,2.6 0.5,6.5 -1.6,4.6 -1.7,7.5 -0.5,10.8 1.7,4.3 1.5,5.4 -1.7,9.4 -3.8,4.7 -9.6,13.4 -11.5,17.2 -2.5,4.9 -4,10.3 -3.7,12.7 0.9,6.6 2.8,12 5.4,15.7 1.2,1.8 2.4,1.9 2.4,0.1 0,-0.7 0.3,-1.9 0.7,-2.7 0.4,-0.7 1,-1.9 1.3,-2.6 1.8,-3.8 2.6,-4.8 4.9,-6.2 1.4,-0.8 3.1,-1.4 3.9,-1.4 1.5,0 6.4,-2.3 10,-4.7 3.4,-2.2 6.1,-4.9 7.2,-7.2 1.4,-2.5 1.8,-7.2 1,-9.7 -1.1,-3.7 -6.7,-14.5 -7.6,-15.1 -1.1,-0.7 -1.2,-1.9 -0.2,-4.7 0.4,-1.2 0.8,-3.1 0.8,-4.3 0,-1.8 -0.1,-2.1 -0.7,-1.6 -1.3,1.1 -1.5,-2.5 -0.3,-6.1 0.6,-1.8 1.2,-3.3 1.3,-3.3 0.1,0 1,0.3 2,0.7 2.1,0.9 2.4,0.5 1,-1.8 l -0.3,-0.7 0,-0.4 c 0,-0.5 0.1,-1.1 0.1,-1.8 l 1.3,-3.3 1.9,-4.7 -0.8,-2.2 c -0.5,-1.2 -1.7,-2.8 -2.83,-3.7 l -2,-1.6 0.1,-1.5 0.2,-2.6 c 0.4,-4.7 -0.4,-7.2 -3.5,-11 -1.7,-2 -1.8,-2.4 -1.6,-4.5 0.4,-3.5 -1.5,-7.1 -5.8,-11.3 -3,-2.9 -3.6,-3.6 -3.6,-5.1 0,-2.3 -0.7,-3.2 -2.4,-3.3 -2.9,-0.2 -5.2,-0.8 -5.7,-1.3 -0.2,-0.3 -0.55,-1.4 -0.7,-2.5 -0.4,-2.4 0.1,-2.7 3.25,-1.7 l 2.36,0.7 0.7,-4.3 c 0.8,-4.9 0.4,-6.5 -2.1,-10.1 -1.3,-1.9 -1.5,-2.3 -1,-4.1 0.2,-1.1 0.5,-6 0.5,-11 0,-7.4 0.2,-9.2 0.9,-10.3 1.4,-2.1 0.8,-7.1 -1.3,-10.1 -1.5,-2.3 -1.6,-2.8 -1.6,-6.6 -14.72198,-47.44163 -22.94115,-16.91554 -17.18,25.9 z m 5.08,-4.81 c 0.1,0 0.2,0 0.3,0.02 0.5,0.48 -0.5,3.02 -1.6,4.24 -1.4,1.5 -2.2,1.03 -2.2,-1.17 0,-1 0.4,-1.7 1.6,-2.5 0.7,-0.5 1.3,-0.7 1.7,-0.7 z m 2.6,1.2 c 0.2,0 0.3,0 0.5,0.1 0.1,0.2 -0.1,0.7 -0.6,1.2 -0.8,0.8 -0.9,0.8 -0.9,0.02 0,-0.7 0.5,-1.3 0.9,-1.35 z m -4.7,13.63 c 1.6,0 3.8,2.1 3.5,3.36 -0.4,1.2 -1.1,2.1 -3.4,4.1 -2.3,2 -3.3,2 -4,0.3 -1,-2.7 1.5,-7.8 3.9,-7.8 z m 12.4,7.1 c 0.6,0 1,0.35 1,0.77 0,0.42 -0.5,0.77 -1,0.77 -0.6,0 -1,-0.34 -1,-0.76 0,-0.42 0.4,-0.7 1,-0.7 z m -10.6,11.2 c 1.4,0 1.7,1.2 1,4.32 -0.8,3.46 -1.7,4.25 -3.1,2.82 -2.2,-2.2 -0.8,-7.17 2,-7.17 z m 4.1,12.74 c 0.5,0.05 1.2,0.5 2,1.3 1.5,1.44 1.7,2.7 1.1,5.72 -0.4,2.1 -2.3,2.1 -3.8,0 -0.8,-1.2 -1,-2.1 -0.9,-4.2 0.1,-2 0.6,-3 1.4,-2.9 z m 12.2,0.5 c 3,0 9.1,6.2 8,8.16 -0.8,1.54 -2.3,1.15 -4.5,-1.15 -1.8,-1.84 -2.2,-2.04 -2.9,-1.47 -1.1,0.9 -2.4,-0.1 -2.4,-1.7 0,-1.6 0.9,-3.7 1.6,-3.7 z m 6.6,15.76 c 1.1,0.1 4.3,2 6,3.72 2.6,2.64 2.8,4.62 0.4,5.1 -2.3,0.45 -2.4,0.42 -3.3,-0.97 -0.5,-0.7 -1.4,-1.56 -2.2,-1.9 -1.5,-0.7 -2.3,-2.28 -1,-1.76 1,0.4 1,0.3 0,-2 -0.5,-1 -0.7,-1.97 -0.6,-2.1 0.1,-0.08 0.2,-0.1 0.4,-0.1 z m 6,16.76 c 0.8,-0.2 2.8,0.8 4.3,2.1 2.3,2 2.9,3.2 2.5,4.9 -0.2,1 -0.8,1.5 -2.1,1.9 -1.8,0.5 -1.8,0.5 -3,-1.3 -1.1,-1.8 -2.6,-7.1 -2.1,-7.6 0.1,-0.1 0.2,-0.2 0.3,-0.2 z m -11.4,2.3 c 0.5,0 0.8,0.4 1.2,1.3 0.3,0.8 0.4,2.2 0.3,3.2 -0.2,1 -0.5,1.9 -0.8,2 -0.9,0.5 -2.6,-2.4 -2.6,-4.3 0,-1.6 0.2,-2 1.2,-2.2 0.2,-0.1 0.4,-0.1 0.6,-0.1 z m 3.3,1.7 c 0.2,0 0.4,0.5 0.4,1.1 0,0.6 -0.2,1.4 -0.5,1.8 -0.4,0.6 -0.5,0.5 -0.8,-0.3 -0.4,-1.2 0,-2.7 0.7,-2.7 z m 7,0.5 c 0.4,0.1 1.5,1.6 1.5,2.1 0,0.2 -0.3,0.4 -0.6,0.4 -0.6,0 -1.5,-2.1 -1.2,-2.6 0,-0.1 0.1,-0.1 0.1,0 z m 8.5,16.8 c -0.1,0 -0.1,2 0,4.6 0.1,4 0,4.9 -1.2,7.4 -0.7,1.5 -1.3,2.9 -1.3,3.1 0,0.7 1.4,-0.4 2.4,-1.9 2.3,-3.5 2.8,-8 1.1,-11.3 l -1.1,-2 z m -15.6,0.7 c 0.2,-0.1 0.3,0.4 0.5,1.6 0.2,1.1 0.1,3 -0.2,4.2 -0.3,1.2 -0.8,2.1 -1,2.1 -0.6,0 -0.5,-6.1 0.2,-7.3 0.2,-0.4 0.4,-0.7 0.5,-0.7 z m 6.3,26.8 c 0.1,-0.1 0.9,0.4 1.8,1.2 1.5,1.2 1.7,1.3 2.2,0.5 0.8,-1.2 1.5,-0.7 2.7,1.8 0.9,1.6 1.2,1.9 1.8,1.4 1.3,-1.1 1,5.6 -0.3,8.1 -2,4 -7.1,7.7 -11.9,8.4 -1.6,0.2 -1.7,0.2 -1.4,-0.8 0.4,-1.5 -0.7,-1.4 -3.5,0.3 -3.8,2.4 -3.7,2.3 -3.3,1.5 0.2,-0.4 1.1,-1.6 1.9,-2.6 2.4,-3 0.8,-3.9 -2.8,-1.6 -1.2,0.7 -2.2,1.2 -2.3,1 -0.7,-0.7 0.8,-3.3 3.3,-5.9 1.6,-1.6 3.3,-3.6 3.8,-4.3 1.2,-1.7 1.4,-1.5 0.9,0.9 -1,4.1 1.9,0.6 4.8,-5.8 1,-2.4 2,-4.4 2.1,-4.6 z"
+		 id="path4528-5"
+		 sodipodi:nodetypes="cccccccccssscscccscccccccscccscccccscsscccscccccccccccsccccccccscccccccscccccssccccsccccsssccccccccccccccccccscccccccscccccccccsccccccsccccscccccssccccccsccccccssccccccccccccsscccccccc" />
+	  <path
+		 style="fill:#525767"
+		 inkscape:connector-curvature="0"
+		 d="m 543.81,162.59 c -1,2.7 -1.1,3.4 -0.6,4.4 0.4,0.6 0.5,1.8 0.3,2.7 -0.3,1.8 0.2,1.9 1.5,0.5 1.2,-1.4 2.8,-1.3 5.1,0.1 2.5,1.5 2.5,3.5 0,4.9 -1.5,0.8 -3,0.7 -4.5,-0.3 -1.7,-1.1 -2.1,-0.6 -1.4,1.6 0.2,0.6 0.3,1.1 0.3,1.5 0,0.4 0,0.8 -0.2,1.1 -0.9,1.6 -0.5,2 1.1,1.2 2.1,-1.1 4.4,-0.2 5.4,2.2 0.4,0.9 0.7,1.8 0.7,1.9 0,0.1 -1,1.3 -2.3,2.7 -1.7,1.8 -2.6,2.4 -3.3,2.2 -0.6,-0.2 -1.1,0 -1.6,0.7 -0.3,0.5 -1,1 -1.5,1 -0.7,0 -0.9,0.4 -0.9,2.5 v 2.5 l 1.4,-0.7 c 1.4,-0.8 4.2,-0.4 5.6,0.8 0.9,0.7 0.8,3.7 -0.2,5.5 -1.8,3.5 -6.4,7.3 -8.5,6.9 -0.3,-0.1 -0.6,0.5 -0.7,1.4 -0.2,1.7 1.4,7.9 2,7.9 0.2,0 0.7,-0.8 1,-1.7 0.8,-2.4 2,-3.5 3.9,-3.5 2.7,0 2.9,1.1 1.4,7.6 -1.5,6.4 -2.1,6.9 -4.7,4 l -1.5,-1.6 0.4,1.5 c 0.7,2.9 2.3,6.2 3.8,7.6 l 1.5,1.4 V 230 c 0,-4.9 1.5,-6.47 4.8,-4.96 2,1 3.4,7.6 2.6,12.9 -0.4,2.7 -0.9,2.8 -3.5,1.1 -1.4,-1 -1.8,-1.1 -1.8,-0.5 0,1.2 1.3,3.4 3,4.9 0.9,0.8 1.6,1.7 1.6,2.1 0,0.36 0.4,-0.2 0.9,-1.2 2.2,-4.6 8.2,-0.3 8.2,5.87 0,1 -0.2,3 -0.6,4.4 -0.6,2.5 -0.5,2.6 0.7,3.7 0.8,0.6 1.6,1.6 1.9,2.3 0.3,0.6 0.8,1.1 1,1.1 1.1,-0.2 1.6,0.2 2.1,1.7 1.2,3.5 0.4,7.6 -2.1,10.4 -1,1.1 -1,1.1 0.1,3.1 1.1,2.2 1.5,2.5 2.4,1.5 0.4,-0.3 1,-0.4 1.4,-0.2 1.1,0.5 1,3.6 -0.2,7.1 -0.7,1.9 -1,4.2 -1,6.7 0,3 -0.2,4.1 -1,5 -0.5,0.7 -1.1,1.9 -1.3,2.7 -0.2,0.8 -2.4,4.2 -4.9,7.5 -9,11.9 -10.8,15.5 -12.1,23.8 -1,6.2 0.6,14.2 3.4,17 0.9,0.9 1,0.9 1.7,-0.9 0.4,-1 0.9,-1.8 1.2,-1.8 0.2,0 0.9,-1 1.4,-2.3 0.6,-1.3 1.6,-3 2.4,-3.9 0.7,-0.8 1.2,-1.6 1.1,-1.8 -0.6,-0.6 -3.7,1.9 -4.9,4.1 -0.7,1.3 -1.4,2.4 -1.7,2.4 -0.5,0 0,-6.8 0.5,-8.4 0.7,-1.7 -1,-0.5 -2,1.4 -1,2.1 -1.8,2.1 -1.8,0 0,-2.4 3,-7.2 6.9,-10.6 3.1,-2.8 8.3,-9.4 8.3,-10.6 0,-0.2 0.9,-2 1.9,-4.1 1.2,-2.3 2.2,-3.7 2.7,-3.7 0.5,0 1.2,-0.5 1.5,-1 0.6,-0.9 1,-1 2.6,-0.7 1,0.2 2.5,0.7 3.3,1.1 0.8,0.4 1.6,0.6 1.8,0.5 0.4,-0.4 -0.2,-2.4 -1.4,-4.3 -0.9,-1.4 -1.3,-1.6 -3.1,-1.6 -1.9,0 -2.1,-0.1 -1.7,-1.1 0.2,-0.6 0.4,-2.5 0.6,-4.3 0.2,-2.7 0.1,-3.2 -0.6,-3.2 -0.5,0 -0.8,-0.3 -0.8,-0.6 0,-1.4 1.5,-10 2.2,-12.3 0.7,-2.5 0.7,-2.5 2.7,-2.4 1.9,0.1 2.1,0 2.6,-1.8 0.7,-2.2 0.5,-2.6 -1.7,-2.6 -1,0 -2.5,-0.5 -3.7,-1.3 -2.4,-1.6 -3.2,-3.9 -3,-8.8 l 0.1,-3.2 3,0.3 3,0.3 -0.1,-2.1 -0.2,-2.2 -2.1,0.1 c -1.7,0.1 -2.3,-0.1 -3.3,-1.1 -0.7,-0.7 -1.7,-1.3 -2.4,-1.3 -1.2,0 -3.7,-2.6 -3.8,-4 -0.3,-3.4 -0.1,-7.7 0.5,-7.7 0.36,0 1.9,0.6 3.5,1.5 3.2,1.6 3.7,1.6 2.9,0 -0.3,-0.5 -0.6,-1.5 -0.6,-2.2 0,-1 -0.2,-1.2 -2,-1.2 -2.3,0 -7.8,-2.6 -10.3,-4.9 -1.4,-1.3 -1.5,-1.6 -1.3,-4.6 l 0.1,-3.2 2.68,0.1 2.7,0.1 -0.3,-1.6 c -0.5,-2.2 -0.6,-2.3 -3.7,-2.6 -3.2,-0.3 -4.2,-0.7 -5.9,-2.8 -1.5,-1.7 -1.9,-5.5 -0.6,-6.5 0.7,-0.5 3.2,-0.2 5.5,0.7 1.2,0.5 2,-1.6 2.1,-5.5 0,-2.2 -0.2,-3.4 -0.8,-4.3 l -0.9,-1.3 v 2.6 c 0,1.9 -0.3,2.8 -1.1,3.5 -1,0.9 -1.1,0.9 -2.9,-0.1 -1.1,-0.6 -2.37,-1.9 -2.9,-2.9 l -1,-1.9 1,-1 c 0.63,-0.6 1.2,-1.3 1.2,-1.5 0,-0.2 0.7,-0.6 1.6,-0.9 2.2,-0.6 2.4,-2.1 0.7,-4.9 -1.7,-2.8 -1.7,-4.8 -0.1,-5.4 1.8,-0.7 2.1,-3.4 0.5,-5.2 -1.7,-1.8 -1.6,-5.2 0.2,-5.4 0.6,-0.1 1.1,-0.4 1.1,-0.8 0,-0.3 0.4,-1.7 1,-3 0.9,-2.1 1,-2.72 0.5,-5.4 -0.5,-2.82 -2.2,-6 -3.2,-6 -1,0 -1.7,-2.1 -1.1,-3.24 -2.7714,-3.85081 -8.41949,-6.59717 -11.38,-0.08 z m 11.5,8.31 c 0.5,-0.06 1.2,0.45 1.3,1.35 0.1,0.72 -0.1,1.14 -0.5,1.14 -0.9,0 -1.4,-0.5 -1.4,-1.7 0,-0.5 0.3,-0.8 0.6,-0.9 z m 2.7,87.98 c -0.2,0.04 -0.3,0.3 -0.3,0.8 0,0.47 0.5,1.38 1.1,2.03 1.5,1.6 2,1.5 2,-0.3 0,-1.2 -0.3,-1.6 -1.3,-2 -0.8,-0.3 -1.3,-0.5 -1.5,-0.4 z m 25.2,59.24 c -0.2,-0.13 -0.4,0.65 -0.6,2.23 -0.2,1.54 -0.5,3.25 -0.7,3.8 -0.4,1 -0.3,1 0.4,0.07 1,-1.16 1.6,-5.06 1,-6 0,-0.05 0,-0.1 -0.1,-0.1 z m -1.7,7.82 c -0.1,0 -0.8,0.86 -1.6,1.9 -1.1,1.57 -1.2,1.73 -0.2,0.9 1.1,-0.96 2.4,-2.8 1.9,-2.8 z"
+		 id="path4520-8"
+		 sodipodi:nodetypes="ccccccccscccscccssccccccsssccccscscccscscsccccccccccscsccscsccccsccscscsccsccsccsscccsscccccccsscsccsscccccccccccccscccccscscccsccsccccsscccscscccccccccsccss" />
+	  <path
+		 style="fill:#474e62"
+		 inkscape:connector-curvature="0"
+		 d="m 549.21,121.49 c -0.3,-1.4 -2.9,-4.3 -3.8,-4.3 -0.2,0 -0.8,0.6 -1.3,1.3 -0.8,1.2 -0.8,1.9 -0.2,9 l 1.4,15.6 c 1,9.2 0.7,14.7 -0.8,19.2 -0.8,2.4 -1,3.4 -0.5,3.8 0.3,0.3 0.6,1 0.6,1.4 0,0.7 0.5,0.9 2.4,0.9 4.8,0 5.9,0.2 6.4,1.4 0.8,1.9 -0.8,5.4 -2.9,6.1 -2.1,0.7 -4,0.7 -4.8,0 -0.5,-0.5 -0.6,-0.2 -0.6,1.3 0,1.8 0,1.9 1.6,1.8 2.6,-0.3 4.2,0.4 5.2,2.3 0.8,1.4 0.9,2 0.4,3.4 -0.5,1.6 -5.5,6.5 -6.6,6.5 -0.3,0 -0.7,0.4 -1,1 -0.3,0.5 -0.9,1 -1.3,1 -0.4,0 -0.7,0.3 -0.7,0.8 0,0.6 0.3,0.7 0.9,0.4 1.4,-0.6 5.9,-0.2 6.7,0.5 2.8,2.7 -2.3,12.1 -7.9,14.5 -1.5,0.7 -2.2,1.3 -2.2,2 0,1.5 1.1,5.5 1.4,5.5 0.2,0 0.9,-1.2 1.6,-2.7 1.6,-3.4 2.5,-3.9 4.8,-2.8 2.1,1 2.3,2 1,7.6 -0.9,3.8 -0.7,4.4 1.6,4.5 2.6,0 3.2,0.5 4,3.7 0.5,1.7 0.9,5.4 1,8.1 l 0.1,5 2.7,0.9 c 1.6,0.5 3.1,1.4 3.7,2.2 0.5,0.7 1.1,1.3 1.4,1.3 0.9,0 1,-1.1 0.2,-2.1 -1,-1.5 -1,-2 0.3,-2 1.6,0 1,-1.1 -1.2,-2.3 -1,-0.6 -2.8,-2 -3.9,-3.2 -1.9,-2.1 -2,-2.4 -2,-5.6 v -3 l 2.7,0.1 c 1.8,0.1 2.5,0.1 2.7,-0.3 0.2,-0.1 0.2,-0.3 0.2,-0.6 v -0.5 c 0,-0.6 -0.5,-0.8 -1.9,-0.8 -2.6,0 -6.3,-1.8 -7.6,-3.5 -1.2,-1.8 -1.8,-5.8 -1.1,-7.2 0.4,-0.8 1.1,-1.1 2.6,-1.1 2.8,0 2.7,-1.1 -0.3,-2.6 -1,-0.4 -2,-1.7 -2.7,-3.2 l -1.1,-2.4 1.6,-2 c 0.9,-1.1 2.1,-2 2.6,-2 1.5,0 1.6,-1.2 0.2,-3.8 -1.8,-3.4 -1.7,-5.6 0.2,-6.6 1.8,-0.9 1.8,-0.9 0.6,-3 -1.3,-2.1 -1.9,-6.1 -1,-7.1 0.4,-0.4 1.1,-0.7 1.6,-0.7 0.6,0 1.3,-0.8 2,-2.3 1.4,-3.1 1.4,-3.3 -0.7,-2.9 -1.7,0.3 -1.7,0.3 -2.4,-1.8 -0.6,-1.8 -0.6,-2.2 0.1,-2.9 0.6,-0.6 1,-0.6 1.9,-0.2 0.9,0.5 1.1,0.5 1.1,-0.3 0,-0.9 -0.9,-2 -2.8,-3.6 -1.1,-1 -1.6,-3.1 -0.9,-4.4 0.3,-0.6 0.6,-2.3 0.7,-3.7 1.05707,-12.40526 -2.45193,-24.10092 -6,-35.6 z m 2.9,34.4 c 0.1,-0.1 0.1,0 0.2,0.2 0.2,0.5 0.1,1.2 0,1.5 -0.1,0.3 -0.2,-0.1 -0.2,-0.9 0,-0.6 0.1,-0.9 0.1,-0.9 z m 7.5,52.4 c -0.3,0 -0.5,0.3 -0.5,0.8 0,0.4 -0.5,1.4 -1.1,2.2 -0.6,0.8 -1,1.9 -0.8,2.3 0.2,0.5 0.7,0.8 1.2,0.8 h 0.1 c 0.4,0 0.6,-0.1 0.8,-0.4 0.6,-1 0.9,-5.7 0.4,-5.7 z M 543,227.2 c -0.34,-0.03 -0.3,0.25 -0.1,1 0.2,0.7 0.96,2.03 1.7,3 l 1.34,1.8 0.3,-1.8 c 0.4,-2 -0.2,-3.55 -1.2,-3.55 -0.4,0 -1.1,-0.17 -1.57,-0.35 -0.2,-0.1 -0.34,-0.1 -0.44,-0.1 z m 7.03,14.03 1.5,1.6 c 1.8,2 2.3,2 2.3,0.4 0,-0.7 -0.27,-1.2 -0.6,-1.2 -0.33,0 -1.2,-0.1 -1.9,-0.3 l -1.3,-0.3 z m 18.4,0.7 c -1.1,0 -1.1,0.1 0.2,1 1.12,0.9 2.5,1.4 2.5,0.8 0,-0.6 -1.75,-1.8 -2.7,-1.8 z m -4.7,8.6 c -0.48,0.1 -0.7,1.2 -0.7,3.3 0,1.7 0.3,2.8 1,3.7 0.55,0.8 1,1.6 1,2 0,0.4 0.46,0.8 1,1 0.5,0.2 1.3,1 1.8,1.8 1.1,2.3 1.9,1.9 1.6,-0.82 l -0.3,-2.3 2.6,0.3 c 1.45,0.2 3,0.4 3.5,0.7 0.74,0.3 0.9,0.1 0.9,-1 0,-1.3 -0.1,-1.4 -2,-1.1 -1.7,0.2 -2.13,0.1 -2.8,-1 -0.5,-0.7 -1.3,-1.2 -2,-1.2 -1.2,0 -3.04,-1.7 -4.65,-4.2 -0.44,-0.7 -0.8,-1 -1.07,-0.9 z m -4.26,9.8 c -0.2,0 -0.3,0 -0.4,0.1 -0.2,0.1 -0.18,0.5 0,0.8 0.4,0.7 1.3,0.7 1.3,0.1 0,-0.47 -0.56,-0.94 -1,-1 z m 9.5,5 c -0.2,0 -0.4,1.4 -0.5,3.2 -0.13,1.8 -0.7,4.3 -1.4,5.8 -0.7,1.5 -1.04,3 -0.84,3.5 0.3,0.8 0.43,0.8 1.5,-0.2 1.44,-1.4 2.2,-1.4 2.86,-0.1 0.8,1.6 0.6,4.5 -0.8,8.5 -1.1,3 -1.3,4.5 -1.1,6.6 0.1,1.5 0.4,3 0.6,3.3 0.7,1.15 1.2,-0.4 2,-6.12 1,-7.3 2.3,-13.1 3.1,-13.8 0.9,-0.7 0,-2.3 -1.6,-3 -0.9,-0.3 -1.5,-1.3 -2.4,-4 -0.7,-2 -1.4,-3.6 -1.6,-3.6 z m 8.3,9.7 c -1.74,0 -2.05,0.7 -0.68,1.5 1.1,0.63 1.8,0.4 2,-0.67 0.1,-0.64 -0.2,-0.85 -1.4,-0.85 z m -5.4,21.1 c -0.2,0 -0.48,0.25 -0.94,0.7 -0.6,0.53 -1.65,1.05 -2.35,1.15 -0.94,0.14 -1.6,0.86 -2.63,2.9 -0.73,1.53 -3.63,5.76 -6.4,9.43 -6.6,8.7 -8.4,12.1 -9.7,18.1 -0.6,2.7 -1.1,5.4 -1.1,6 0,0.7 0.17,1.1 0.4,1 0.2,-0.1 1.75,-2.9 3.43,-6.2 2.34,-4.6 3.92,-7 7.03,-10.4 4.2,-4.5 5.9,-6.9 5.9,-8.1 0,-0.3 0.9,-2.1 1.9,-3.9 1.6,-2.9 1.9,-3.2 2.5,-2.4 0.9,1.2 1.9,0.4 1.6,-1.3 -0.1,-0.7 0.1,-2.3 0.5,-3.5 0.4,-1.2 0.6,-2.5 0.4,-2.9 -0.2,-0.3 -0.3,-0.5 -0.5,-0.4 z m 3.84,6.85 c -0.7,0 -0.6,1.4 0.1,1.7 0.4,0.12 0.8,0.15 0.9,0.06 0.4,-0.3 -0.4,-1.75 -0.9,-1.75 z m -25.8,38.37 c 0,0 -0.1,0 -0.1,0.04 -0.4,0.2 0,1.8 0.8,3.9 0.7,1.5 1.2,0.9 0.8,-0.8 -0.5,-2.2 -0.9,-3.2 -1.3,-3.2 z"
+		 id="path4516-0"
+		 sodipodi:nodetypes="cscccscsscscscccscsscccsscccccccccscsccscccssscssccccsccccsccsscsccccccssccssscsscsscccccscscccsscccscsscscsccccccsccsccccccsccccscccccccccccccccccccccccscccscscscccccccccccccc" />
+	</g>
   </g>
 </svg>
diff --git a/resources/vector/hair/tails front.svg b/resources/vector/hair/tails front.svg
index 899eeb5d87834a33760c906d5112e824d77f8420..cf843860c48f77e3d400304cb22defdb998a8319 100644
--- a/resources/vector/hair/tails front.svg	
+++ b/resources/vector/hair/tails front.svg	
@@ -13,77 +13,77 @@
    sodipodi:docname="tails front.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
   <metadata
-     id="metadata17">
-    <rdf:RDF>
-      <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>
+	 id="metadata17">
+	<rdf:RDF>
+	  <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>
   <sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1774"
-     inkscape:window-height="1339"
-     id="namedview15"
-     showgrid="false"
-     inkscape:zoom="3.776"
-     inkscape:cx="456.54335"
-     inkscape:cy="793.53902"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="Layer_1" />
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1774"
+	 inkscape:window-height="1339"
+	 id="namedview15"
+	 showgrid="false"
+	 inkscape:zoom="3.776"
+	 inkscape:cx="456.54335"
+	 inkscape:cy="793.53902"
+	 inkscape:window-x="0"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="Layer_1" />
   <defs
-     id="defs10">
-    <clipPath
-       id="clipPath4493">
-      <path
-         d="M413.14 13.77l202.33-1.06L600.64 214l-57.2 277.55-203.4 3.17z"
-         id="path4495"
-         fill="#595f6d"
-         stroke-width=".1"
-         stroke-linecap="round" />
-    </clipPath>
+	 id="defs10">
+	<clipPath
+	   id="clipPath4493">
+	  <path
+		 d="M413.14 13.77l202.33-1.06L600.64 214l-57.2 277.55-203.4 3.17z"
+		 id="path4495"
+		 fill="#595f6d"
+		 stroke-width=".1"
+		 stroke-linecap="round" />
+	</clipPath>
   </defs>
   <style
-     id="style2">.st0{fill:#010101;} .st1{fill:#F6E0E8;}</style>
+	 id="style2">.st0{fill:#010101;} .st1{fill:#F6E0E8;}</style>
   <style
-     id="style4546">.st0{fill:#F6E0E8;}</style>
+	 id="style4546">.st0{fill:#F6E0E8;}</style>
   <g
-     id="g4566">
-    <g
-       id="g4512"
-       stroke-width=".51">
-      <path
-         id="path4543"
-         d="M506.48 64.14c-2.08.02-4.06.23-5.66.64-3.32.85-10.72 4.56-13.47 6.76-.84.67-3 2.28-4.77 3.57-10.6 7.7-16.22 23.9-14.3 41 .83 7.5.84 6.3-.02 16.9-1.22 15.1.25 23.4 6.12 34.5 7.73 14.7 8.24 15.9 8.74 21 .7 7.1.23 10.1-2.37 14.9-1.65 3-4.36 9.3-4.76 10.9h-.1l-3.6 7-2.4 4c-.1.1-.2.2-.2.3-.3.4-.5 1-.5 1.3 0 .3.2.2.5-.2.2-.3.4-.7.4-1l1.2-2 3.3-6 1.8-2.7c.5-.3 1.6-2 2.6-4.2 1.1-2.4 2.7-5.1 3.5-6 2.9-3.4 6.7-8.9 7.8-11.4.9-2.1 1.1-3.3 1.1-7.8-.1-5.7-.7-8.9-4.4-21.7-1.1-4-2-7.4-1.8-7.5.1-.1 1.1 1.1 2.3 2.7 2.2 3.2 6.2 7.4 6.5 7 .1-.1-1.1-2.7-2.8-5.7-3.3-6.1-6.3-13.8-7.6-19.1-.8-3.6-.7-8.4.8-25 .9-9.9 4.8-19.9 10.1-25.6 1.4-1.4 3.6-1.5 8.7-.1l3.7 1 3-1.2c1.6-.7 3.5-1.2 4.2-1.2 2.3 0 4.7 1.5 7.4 4.6 1.4 1.6 2.9 2.8 3.2 2.7.8-.3 2.4 3.3 3.5 7.7 1.5 5.9 1.9 11 2.3 27 .2 8.9.6 16.5.8 16.9.6 1 1.3-.2 1.3-2.1 0-2.7 1-1.3 1.3 1.9.4 3.6.3 4.5-1 11-.7 3.4-.8 5.7-.6 10 .3 5.6.3 5.8-1.5 10.3-2.6 6.7-3.4 10.8-3.4 16.4 0 5.2 1.4 12.9 2.8 15.8 2.9 6.1 3.4 6.4 3.4 2.7 0-1.3.3-3.9.7-5.7 1.1-4.7 3.9-13.2 4.4-13.2.7 0 .4 1.5-.6 3.7-.6 1.2-1.4 3.7-1.8 5.6-.8 3.9-.4 8.1 1.3 12.9.7 2 .9 3.5.7 6-.3 4.4.5 6.7 3.4 9.8 2 2.2 2.5 3.1 3 5.6.5 2.6 1 3.5 3 5.5 2.3 2.3 2.4 2.6 2.7 5.9.4 4.9 2 8.8 4.7 11.6l2.3 2.3v4.2c0 5.4.9 8 3.8 11l2.3 2.3-1.1 4.3c-1.6 5.7-1.6 11.1-.1 13.9l1.1 2c-.1 0-.1.1-.1.1l-2.8 3.4c-4 5-9.5 13.5-12.1 18.5-4.9 9.8-5.1 13.7-.8 22.6 1.5 3.1 3.5 6.4 4.5 7.4 1.6 1.6 2.1 1.9 3.7 1.7l1.9-.2-.7-2.9c-1.1-4.7-1-5.9.9-7.6.9-.8 4.6-3 8.2-5 11-6 16.1-10.4 17.6-15.2 1.3-4.1-.4-10.3-5-18.5l-2.1-3.8 2.5-2.2c3.1-2.8 4.6-5.8 4.6-9.2 0-2.6-1.6-7.1-3.4-9.7-1.5-2-1.4-3 .3-5.6 2.9-4.3 2.4-8.5-1.6-12.3l-1.9-1.8.3-3.8c.3-3.5.2-4.1-1-6.5-.8-1.4-2.1-3.4-2.9-4.4-1.5-1.6-1.6-2-1.3-4.1.5-3.4-1.8-7.8-6.1-11.7-3-2.7-3.3-3.1-3.5-5.6-.2-1.5-.9-4-1.7-5.7-1.3-2.9-1.4-3.1-.7-6.3.5-2.8.5-3.6-.2-5.7-.5-1.3-1.5-3.3-2.2-4.3-1-1.5-1.2-2.1-.7-3.2.7-1.8.7-5.5 0-7.2-.4-1-.3-1.9.2-3.5.4-1.1.9-4.3 1-7s.5-6 .8-7.4c.5-2.2.4-2.7-1.4-6.7-1.1-2.5-2-5.5-2.2-7.1l-.2-2.8 4.4-6.6c7.6-11.3 8.4-13.6 9.5-27.2 1-13.7 1.1-13.3-5.1-32.8-2-6.2-3.48-8.5-9.1-14-4.5-4.3-5.9-5.3-10.5-7.5-2.9-1.4-6.7-3-8.6-3.4-4.4-1.2-11.6-1.3-15-.1-2.5.8-2.6.8-5.8-.2-2.8-1-6.6-1.5-10-1.4zm-31.78 81c.04-.02.08 0 .13.05.9.9 4.15 11.8 5.65 18.9.85 4 1.45 7.4 1.33 7.5-.8.8-5.6-10.1-6.6-15.1-.8-4.3-1-11.4-.5-11.6zm61 11.14c.06 0 .1 0 .15.04.22.13.68 1.82 1.02 3.74.6 3.35.57 3.64-.73 6.9-2.05 5.12-2.44 4.85-2.12-1.5.26-5.2 1-9.1 1.7-9.18zm-50.3 12.06c.3.04 1.1 2.26 2.55 7.08.92 3.08 1.3 5.64 1.36 8.9.1 2.7-.1 5-.5 5.6-.5.94-.6.9-.9-.52-.2-.83-.6-2.9-1-4.57-.7-2.9-1.8-16.05-1.4-16.47 0-.02.1-.02.1-.02zm53.32 9.86c.2.04.22.7.23 2.3.02 3.48-1.08 9.3-3.06 16.28-.9 2.94-1.8 6.7-2.1 8.33-.3 1.7-.6 3.1-.7 3.3-.5.5-1-5.7-.7-10.9.2-5.9 1.5-10.6 3.7-13.9.6-1 1.2-2.2 1.2-2.8s.3-1.4.7-2c.2-.3.4-.5.5-.5z"
-         fill="#e1e0e2" />
-      <path
-         d="M506.48 64.14c-2.08.02-4.06.23-5.66.64-3.32.85-10.72 4.56-13.47 6.76-.84.67-3 2.28-4.77 3.57-10.6 7.7-16.22 23.9-14.3 41 .83 7.5.84 6.3-.02 16.9-1.22 15.1.25 23.4 6.12 34.5 7.73 14.7 8.24 15.9 8.74 21 .7 7.1.23 10.1-2.37 14.9-1.65 3-4.36 9.3-4.76 10.9h-.1l-3.6 7-2.4 4c-.1.1-.2.2-.2.3-.3.4-.5 1-.5 1.3 0 .3.2.2.5-.2.2-.3.4-.7.4-1l1.2-2 3.3-6 1.8-2.7c.5-.3 1.6-2 2.6-4.2 1.1-2.4 2.7-5.1 3.5-6 2.9-3.4 6.7-8.9 7.8-11.4.9-2.1 1.1-3.3 1.1-7.8-.1-5.7-.7-8.9-4.4-21.7-1.1-4-2-7.4-1.8-7.5.1-.1 1.1 1.1 2.3 2.7 2.2 3.2 6.2 7.4 6.5 7 .1-.1-1.1-2.7-2.8-5.7-3.3-6.1-6.3-13.8-7.6-19.1-.8-3.6-.7-8.4.8-25 .9-9.9 4.8-19.9 10.1-25.6 1.4-1.4 3.6-1.5 8.7-.1l3.7 1 3-1.2c1.6-.7 3.5-1.2 4.2-1.2 2.3 0 4.7 1.5 7.4 4.6 1.4 1.6 2.9 2.8 3.2 2.7.8-.3 2.4 3.3 3.5 7.7 1.5 5.9 1.9 11 2.3 27 .2 8.9.6 16.5.8 16.9.6 1 1.3-.2 1.3-2.1 0-2.7 1-1.3 1.3 1.9.4 3.6.3 4.5-1 11-.7 3.4-.8 5.7-.6 10 .3 5.6.3 5.8-1.5 10.3-2.6 6.7-3.4 10.8-3.4 16.4 0 5.2 1.4 12.9 2.8 15.8 2.9 6.1 3.4 6.4 3.4 2.7 0-1.3.3-3.9.7-5.7 1.1-4.7 3.9-13.2 4.4-13.2.7 0 .4 1.5-.6 3.7-.6 1.2-1.4 3.7-1.8 5.6-.8 3.9-.4 8.1 1.3 12.9.7 2 .9 3.5.7 6-.3 4.4.5 6.7 3.4 9.8 2 2.1 2.5 3 3 5.6.5 2.6 1 3.4 3 5.4 2.3 2.3 2.4 2.6 2.7 5.8.4 4.9 2 8.8 4.7 11.6l2.3 2.4v4.2c0 5.4.9 8 3.8 11l2.3 2.3-1.1 4.3c-1.6 5.7-1.6 11.2-.1 14l1.1 2c-.1 0-.1.1-.1.1l-2.8 3.4c-4 5-9.5 13.5-12.1 18.6-4.9 9.9-5.1 13.8-.8 22.7 1.5 3.1 3.5 6.4 4.5 7.4 1.6 1.6 2.1 1.9 3.7 1.7l1.9-.2-.7-2.9c-1.1-4.6-1-5.9.9-7.5.9-.8 4.6-3.1 8.2-5 11-6.1 16.1-10.4 17.6-15.2 1.3-4.1-.4-10.4-5-18.6l-2.1-3.7 2.5-2.2c3.1-2.8 4.6-5.8 4.6-9.2 0-2.6-1.6-7.1-3.4-9.7-1.5-2-1.4-3 .3-5.6 2.9-4.3 2.4-8.5-1.6-12.3l-1.8-1.8.3-3.9c.3-3.5.2-4.1-1-6.5-.8-1.5-2.1-3.5-2.9-4.4-1.5-1.7-1.6-2-1.3-4.2.5-3.4-1.8-7.8-6.1-11.7-3-2.7-3.2-3.1-3.5-5.6-.2-1.5-.9-4-1.7-5.7-1.3-2.9-1.3-3.1-.7-6.2.5-2.8.5-3.6-.2-5.7-.5-1.4-1.4-3.3-2.1-4.3-1.1-1.6-1.2-2.1-.7-3.3.7-1.8.7-5.4 0-7.2-.4-1-.3-1.9.2-3.5.4-1.1.9-4.3 1-7 .1-2.7.5-6 .8-7.4.5-2.2.4-2.7-1.4-6.7-1.1-2.5-2-5.5-2.2-7.1l-.2-2.8 4.4-6.6c7.6-11.2 8.4-13.5 9.5-27.2 1-13.7 1.1-13.3-5.1-32.8-2-6.2-3.5-8.5-9.1-13.9-4.5-4.2-5.9-5.3-10.5-7.5-2.9-1.4-6.8-3-8.6-3.4-4.4-1.2-11.7-1.2-15 0-2.5.85-2.7.85-5.9-.2-2.8-.96-6.6-1.44-10.1-1.4zm51.24 28.4c.25 0 .58.5.74 1.12.4 1.5.04 1.75-.64.48-.67-1.25-.7-1.6-.1-1.6zm-2.97 1.57c.3 0 .63.3 1 1 .3.6.5 1.5.4 2.1-.14.9-.24 1-1.23.3-.77-.5-1-1.1-.83-2 .1-.8.3-1.2.6-1.2zm-80.05 51.1c.04 0 .08 0 .13.1.9 1 4.15 11.9 5.65 19 .85 4 1.45 7.4 1.33 7.6-.8.9-5.6-10.1-6.6-15-.8-4.3-1-11.3-.5-11.5zm61 11.2c.06 0 .1 0 .15.1.22.2.68 1.8 1.02 3.8.6 3.4.57 3.7-.73 6.9-2.05 5.1-2.44 4.9-2.12-1.5.26-5.2 1-9.1 1.7-9.2zm-50.3 12.1c.3.1 1.1 2.3 2.55 7.1.92 3.1 1.3 5.7 1.36 8.9.1 2.7-.1 5-.5 5.6-.5 1-.6.9-.9-.5-.2-.8-.6-2.9-1-4.5-.7-2.9-1.8-16-1.4-16.4h.1zm52.9 7.2c.1 0 .13.2.14.7 0 .6-.32 1.5-.73 2.1-1 1.4-1 0 0-1.8.4-.6.5-.9.6-.9zm.42 2.7c.2.1.22.7.23 2.3.02 3.5-1.08 9.3-3.06 16.3-.9 3-1.8 6.7-2.1 8.4-.3 1.7-.6 3.1-.7 3.2-.5.5-1-5.7-.7-10.9.2-5.9 1.5-10.6 3.7-13.9.6-1 1.2-2.2 1.2-2.8s.3-1.4.7-2c.2-.3.4-.5.5-.5zm-3.4 3.1l.04 1c0 .6-.2 1.4-.47 1.8-.5.7-.5.7-.5 0 0-.4.2-1.2.4-1.7l.4-1z"
-         id="path4534"
-         fill="#b4b3b7" />
-      <path
-         d="M506.44 65.08l-1.68.1c-5.88.48-17.37 6.87-18.72 10.42-.27.7-.7 1.08-1.03.9-1.1-.75-7.8 7.83-10.6 13.7-1.5 3.25-1.9 3.8-2.1 2.8-.3-2.24-2.4 4.24-3 9.6-.4 3.77-.4 6.3 0 10.78.4 3.22.7 7.3.7 9.06.1 1.76.4 3.6.7 4.07.5.7.6 3.3.4 10.8-.2 7-.1 11 .4 13.5.4 2 .7 5 .8 6.7.1 2.5.6 4.1 2.2 7.4 2.6 5.3 6.9 12.1 7.1 11.2.1-.3-1.3-3.7-3.1-7.5-4.1-8.6-4.9-12.3-4.9-21.6.1-3.7.3-7.2.5-7.8.4-.9.5-.9 1.1.5.4.9 1.4 3.2 2.3 5.2.9 2 1.8 4.7 2 5.9.2 1.3 1 5.2 1.8 8.9.9 3.7 1.8 8 2.2 9.7l.7 3.1.2-3.9c.1-2.1.3-3.9.6-3.9s1.2 2.1 2.1 4.7c1 2.6 2 5.4 2.4 6.2.7 1.5.7 1.5.5-.7-.1-1.2-1.5-6.7-3.1-12.2-1.5-5.4-2.7-10.2-2.7-10.6.1-.4 1.4 1.1 2.9 3.4 4.1 6.2 5.4 7 2.7 1.7-1.9-3.9-5.5-14.5-5.9-17.6-.4-3.2.6-20.9 1.6-27.3.9-5.9 3.5-13 6.3-17.3 4.1-6.3 4.9-6.7 10.1-6 3.3.5 5 .5 12.4-.3 3.2-.3 3.5-.2 5.6 1.2 1.2.9 2.6 2 3.2 2.6.5.6 1.3 1.1 1.8 1.1 1.5 0 2.9 2.4 4.5 7.3 2.3 7.2 3.1 12.4 3.6 23.9.4 8.6.6 10.7 1.3 11.4.5.5.9 1.5.9 2.3 0 .8.4 4.3.8 7.8.7 5.3 1.3 8.6 3.2 17 .2.6-.7 3.4-2 6.4-3.1 7.2-5.3 13.1-6.2 16.5-.9 3.5-1 10.8-.1 14.5l.6 2.7.4-3c.2-1.7.3-4.7.4-6.8 0-4.3 1.9-10.4 4.9-16.4 2.2-4.5 2-4.3 3-3.5 1 .8 1 8.4 0 14-.9 5.2-.9 5.3.2 5 1.7-.5 1.6 3-.1 7.4-1.3 3.2-1.6 4.5-1.5 7.9 0 2.2.4 5.3.9 6.9.4 1.5 1 4.7 1.2 7.1.5 5.2 2.1 9.3 4.3 11.5 1.2 1.1 2 2.7 2.8 5.5 1 3.3 1.5 4.1 3.2 5.5 1.8 1.5 2.1 1.9 2.1 3.8 0 2.4.9 5.3 1.6 5.3.3 0 .5-1 .5-2.2 0-4.3 2.3-6.3 4-3.5.5.9 1.2 1.6 1.5 1.6 1.5 0 1.5 2.9.1 5.6-1 2-1.2 2.1-2.8 1.8-2.9-.5-2.7 1.1.6 5 1.5 1.8 1.7 2.4 1.7 5 0 3.8 2.5 10.3 4.6 12.2 1.8 1.7 1.9 2.6.5 6.5-1.6 4.6-1.7 7.5-.5 10.8 1.7 4.3 1.5 5.4-1.7 9.4-3.8 4.7-9.6 13.4-11.5 17.2-2.5 4.9-4 10.3-3.7 12.7.9 6.6 2.8 12 5.4 15.7 1.2 1.8 2.4 1.9 2.4.1 0-.7.3-1.9.7-2.7.4-.7 1-1.9 1.3-2.6 1.8-3.8 2.6-4.8 4.9-6.2 1.4-.8 3.1-1.4 3.9-1.4 1.5 0 6.4-2.3 10-4.7 3.4-2.2 6.1-4.9 7.2-7.2 1.4-2.5 1.8-7.2 1-9.7-1.1-3.7-6.7-14.5-7.6-15.1-1.1-.7-1.2-1.9-.2-4.7.4-1.2.8-3.1.8-4.3 0-1.8-.1-2.1-.7-1.6-1.3 1.1-1.5-2.5-.3-6.1.6-1.8 1.2-3.3 1.3-3.3.1 0 1 .3 2 .7 2.1.9 2.4.5 1-1.8l-.3-.7v-.4c0-.5.1-1.1.1-1.8l1.3-3.3 1.9-4.7-.8-2.2c-.5-1.2-1.7-2.8-2.83-3.7l-2-1.6.1-1.5.2-2.6c.4-4.7-.4-7.2-3.5-11-1.7-2-1.8-2.4-1.6-4.5.4-3.5-1.5-7.1-5.8-11.3-3-2.9-3.6-3.6-3.6-5.1 0-2.3-.7-3.2-2.4-3.3-2.9-.2-5.2-.8-5.7-1.3-.2-.3-.55-1.4-.7-2.5-.4-2.4.1-2.7 3.25-1.7l2.36.7.7-4.3c.8-4.9.4-6.5-2.1-10.1-1.3-1.9-1.5-2.3-1-4.1.2-1.1.5-6 .5-11 0-7.4.2-9.2.9-10.3 1.4-2.1.8-7.1-1.3-10.1-1.5-2.3-1.6-2.8-1.6-6.6 0-2.8.3-4.4.8-5.1.4-.6.8-1.4.8-2 0-.6.9-2.8 2-5s2.1-4.5 2.1-5.1c0-.6.6-2.2 1.4-3.7.8-1.4 1.6-3.2 1.7-3.9.2-.8.8-1.9 1.4-2.6l1.04-1.2-.3 3.2c-.2 1.8-.4 3.6-.6 4.1-.2.6-.18.7.2.4 1.4-1.3 2.8-7.4 3.3-14.8.9-12.5.8-15.5-1.1-20.8-.9-2.5-2-6.3-2.6-8.4-2.7-11-9.8-19.9-19.7-24.7-2.6-1.3-5.6-2.4-6.6-2.5l-2.5-.2c-.3 0-.5-.3-.4-.5.1-.2 0-.6-.3-.8-1-.5-11.2-.3-13.6.3h-5l-1-.2c-2.27-.5-4.76-.7-6.36-.5-2.3.3-2.6.2-2.6-.6 0-.6-.2-.8-1.5-.7zm-4.65 2.05c2.2.02 2.2.05 1 .7-.7.36-2.2.8-3.3.96-1.9.3-2 .2-1.1-.7.6-.8 1.5-1 3.2-1zm50.6 12.73c.4-.16 1.6.67 3.6 2.55 5.5 5.2 10.6 18.4 8.4 21.8-.4.6-.6.5-1.1-.4-.8-1.3-1.4-1.4-1.8 0-.2.6-.8 1-1.3 1-.7 0-1.1.5-1.3 1.3-.2.7-.5 1.3-.7 1.3-.2 0-1.3-.9-2.5-2.1-1.5-1.4-2.2-1.9-2.4-1.4-.9 2.8-.8 2.8-2.3 1.3-1.7-1.6-1.9-1.7-2.3-.2-.3 1.1-.3 1.1-1.4-.3-.6-.7-1.3-1.2-1.5-1.1-.3.2-.9.1-1.4-.2-.8-.4-1.2-.3-1.9.5-.9.9-1 1-2.1.3-.7-.4-1.4-.7-1.7-.7s-.6 1.1-.7 2.4l-.2 2.4-1.2-3c-3-7.6-5.6-12.3-8.6-15.7-1.7-1.9-3-3.6-2.9-3.7.5-.4 2.7 1.2 5.7 4.1 1.7 1.7 3.3 2.9 3.7 2.7.3-.2 1.3 0 2.3.3 1.3.5 1.9.5 2.3.1.4-.4.9-.4 1.5-.1 1.1.6 1.2.1.2-2.4-.4-1-.8-2.1-.8-2.4 0-.9 4.2-2 5.5-1.3 1.7.9 2.6.7 2.6-.7 0-1.1.1-1.2.9-.7 1.5.8 1.6.7 1.2-1.7-.3-1.9-.2-2.3.5-2.3.4 0 .8-.2.8-.5s.1-.4.2-.5zm-60.8 3.7c.2 0 .4.08.4.26.1.32.6.58 1 .6.4 0-.5.74-2.2 1.64-2.1 1.13-3.4 2.3-4.3 3.76-.8 1.16-1.9 3-2.5 4.07-.9 1.4-1.1 1.6-.9.6.5-2.3 2-5.3 3.7-7.5 1.4-1.9 3.6-3.6 4.6-3.6zm74.3 29.3c.2.02.6.85.9 1.86.4 1.43.3 2.18-.3 3.3-.9 1.7-1 1.76-1.5.64-.1-.12-.1-.3-.1-.5v-2.05c.1-1.5.5-3.2.8-3.2zm-30.2 6.6c0-.02 0 0 .1.04.2.43.6 2.78.8 5.22 0 .6 0 1.05.1 1.55v2.14c-.1 1.2-.3 1.3-.7-.3-.6-2.4-.8-8.4-.5-8.5zm30.5 1.8v1.62c0 .88-.1 1.97-.3 2.4-.2.45-.5.82-.8.82-.7 0-.5-1.54.3-3.3l.7-1.53zm-27.8 22.64c.5 0 .8 1.5.9 5.1.1 4.6-.5 6.82-1.3 4.7-.6-1.25-.6-9.16-.1-9.66.1-.15.3-.23.4-.2zm5.1 6.5c.1 0 .2.5.4 1.3.5 2.56-.2 8.06-1.5 11.3-.9 2.17-.9 2.6-.3 3.8.5 1 .5 1.73.2 2.7-.8 1.94-.6 4.87.2 6.55.9 1.85.9 2.42-.1 4.62-.5 1-1.1 1.8-1.3 1.8-.4 0-.7-5.96-.6-9.1 0-.7-.3-1.85-.8-2.58-.7-1.3-.7-1.6.1-3.4 1.2-2.9 2.3-6.8 2.3-8.8 0-1.8-.4-2.1-1.4-1.1-.5.5-.6 0-.6-2 0-3 .3-3.6 1.3-2.4.6.8.7.7 1.2-.6.3-.8.5-1.9.6-2.3v-.2zm1.8 32.5c.1 0 .2 0 .3.02.5.48-.5 3.02-1.6 4.24-1.4 1.5-2.2 1.03-2.2-1.17 0-1 .4-1.7 1.6-2.5.7-.5 1.3-.7 1.7-.7zm2.6 1.2c.2 0 .3 0 .5.1.1.2-.1.7-.6 1.2-.8.8-.9.8-.9.02 0-.7.5-1.3.9-1.35zm-4.7 13.63c1.6 0 3.8 2.1 3.5 3.36-.4 1.2-1.1 2.1-3.4 4.1-2.3 2-3.3 2-4 .3-1-2.7 1.5-7.8 3.9-7.8zm12.4 7.1c.6 0 1 .35 1 .77s-.5.77-1 .77c-.6 0-1-.34-1-.76s.4-.7 1-.7zm-10.6 11.2c1.4 0 1.7 1.2 1 4.32-.8 3.46-1.7 4.25-3.1 2.82-2.2-2.2-.8-7.17 2-7.17zm4.1 12.74c.5.05 1.2.5 2 1.3 1.5 1.44 1.7 2.7 1.1 5.72-.4 2.1-2.3 2.1-3.8 0-.8-1.2-1-2.1-.9-4.2.1-2 .6-3 1.4-2.9zm12.2.5c3 0 9.1 6.2 8 8.16-.8 1.54-2.3 1.15-4.5-1.15-1.8-1.84-2.2-2.04-2.9-1.47-1.1.9-2.4-.1-2.4-1.7s.9-3.7 1.6-3.7zm6.6 15.76c1.1.1 4.3 2 6 3.72 2.6 2.64 2.8 4.62.4 5.1-2.3.45-2.4.42-3.3-.97-.5-.7-1.4-1.56-2.2-1.9-1.5-.7-2.3-2.28-1-1.76 1 .4 1 .3 0-2-.5-1-.7-1.97-.6-2.1.1-.08.2-.1.4-.1zm6 16.76c.8-.2 2.8.8 4.3 2.1 2.3 2 2.9 3.2 2.5 4.9-.2 1-.8 1.5-2.1 1.9-1.8.5-1.8.5-3-1.3-1.1-1.8-2.6-7.1-2.1-7.6.1-.1.2-.2.3-.2zm-11.4 2.3c.5 0 .8.4 1.2 1.3.3.8.4 2.2.3 3.2-.2 1-.5 1.9-.8 2-.9.5-2.6-2.4-2.6-4.3 0-1.6.2-2 1.2-2.2.2-.1.4-.1.6-.1zm3.3 1.7c.2 0 .4.5.4 1.1 0 .6-.2 1.4-.5 1.8-.4.6-.5.5-.8-.3-.4-1.2 0-2.7.7-2.7zm7 .5c.4.1 1.5 1.6 1.5 2.1 0 .2-.3.4-.6.4-.6 0-1.5-2.1-1.2-2.6 0-.1.1-.1.1 0zm8.5 16.8c-.1 0-.1 2 0 4.6.1 4 0 4.9-1.2 7.4-.7 1.5-1.3 2.9-1.3 3.1 0 .7 1.4-.4 2.4-1.9 2.3-3.5 2.8-8 1.1-11.3l-1.1-2zm-15.6.7c.2-.1.3.4.5 1.6.2 1.1.1 3-.2 4.2-.3 1.2-.8 2.1-1 2.1-.6 0-.5-6.1.2-7.3.2-.4.4-.7.5-.7zm6.3 26.8c.1-.1.9.4 1.8 1.2 1.5 1.2 1.7 1.3 2.2.5.8-1.2 1.5-.7 2.7 1.8.9 1.6 1.2 1.9 1.8 1.4 1.3-1.1 1 5.6-.3 8.1-2 4-7.1 7.7-11.9 8.4-1.6.2-1.7.2-1.4-.8.4-1.5-.7-1.4-3.5.3-3.8 2.4-3.7 2.3-3.3 1.5.2-.4 1.1-1.6 1.9-2.6 2.4-3 .8-3.9-2.8-1.6-1.2.7-2.2 1.2-2.3 1-.7-.7.8-3.3 3.3-5.9 1.6-1.6 3.3-3.6 3.8-4.3 1.2-1.7 1.4-1.5.9.9-1 4.1 1.9.6 4.8-5.8 1-2.4 2-4.4 2.1-4.6z"
-         id="path4528"
-         fill="#9497a2" />
-      <path
-         d="M512.05 67.55c-4.18.04-7.67.76-7.67 1.57 0 .22-.92.52-2.05.67-1.13.1-2.4.5-2.84.9-.7.5-.6.7 1 1.6 2 1 2.4 1.9.8 1.9-1.2 0-1.3.6-.3 1.5 1.1.9.4 1.5-1.5 1.5-2.4 0-3.3.4-3.3 1.5 0 .5-.4 1.1-.9 1.4-.7.3-.2.6 1.9 1.1 1.5.3 4 1.3 5.6 2.1 3.6 1.8 5.7 1.9 6.1.3.1-.7.9-1.6 1.8-2.1 1.4-.9 1.5-.9 1.8.1.2.5.5 1 .7 1l5.2.1c4.5.1 5.1.2 8.4 2 1.9 1 3.9 1.8 4.4 1.9.5 0 1.7-.8 2.7-1.9 1.5-1.6 1.7-2.2 1.4-3.6-.4-1.8-.2-1.9 2.8-1.7 1.8.1 2.8-1.2 2-2.8-.6-1.2-.5-1.3 1.4-1.3 2.2 0 2.8-.6 2-2-.9-1.6-3.4-3.1-7.3-4.5-3.2-1.2-4.8-1.4-12.1-1.5-4.6-.2-10.3-.3-12.7-.2zm39.72 8.3c-.38.02.6 1.27 2.93 3.64 2.36 2.4 4.4 4.2 4.5 4.1.46-.5-2.12-3.9-4.13-5.6-1.9-1.6-3-2.3-3.3-2.3zm-64.46 8.4l-1.1.6c-2.8 1.48-5 5.93-6.9 13.86-1.8 7.7-2.1 10.7-1.7 20.8.5 11.9 3.2 34.3 4.6 38 .5 1.2 1.2 1.5 1.7.7.2-.2-.5-4.3-1.5-9-2-9.7-2.6-16.6-2.8-32-.1-8.6 0-11.6.8-15.7 1.6-8.3 1.9-9.1 6.2-15.7l1-1.5zm28.2.68c-1.2.04-2.7.28-3.7.7-2.8 1.2-2.1 1.82 1.8 1.68 3.4-.1 3.6 0 7.1 2.3 2 1.4 3.8 2.5 4.1 2.5 1.2 0 3.2 3.2 4.4 7 2.3 6.8 3.4 12.8 4.1 21.5.4 4.7 1.1 9.6 1.5 11 1 3.2 1 3.4.1-9.9-.3-6-.6-11-.5-11.1.4-.4 1.4 2.8 2.3 7.3.6 3 1 6.7 1 10.7 0 7 .7 11.6 1.9 13.4l.9 1.3 1-1.6c1-1.5 1-1.8.2-9.6-.4-4.4-1.1-9.9-1.5-12.2-1.2-6.9-5.1-17.2-7.1-18.9-.4-.4-1.5-1.8-2.3-3.3-2.6-4.6-6-8.3-8.8-9.9-1.4-.8-2.9-1.7-3.3-2-.4-.4-1.5-.5-2.8-.5zm-15.6 1.93c-1.1-.02-2.2.06-2.4.25-.2.2.9.4 2.4.4s2.6-.1 2.5-.2c-.2-.2-1.3-.3-2.4-.3zm-5.4 1.18c-.1-.1-1 .3-2 .9-2.5 1.56-6.7 6.4-8.2 9.44-1.6 3.45-2.7 10-2 12.58.4 1.45.4 2.2-.1 2.83-1.6 2.2-1.7 3.5-1.4 11.5.3 7.5 1.5 17 2.9 22.2.3 1.2 1.3 3.3 2.1 4.8.8 1.4 1.6 2.6 1.7 2.6.1 0-1-3.5-2.4-7.8l-2.5-7.8.6-12.2c.3-6.7.9-14.3 1.3-16.8 1-6.2 3.8-13.2 7.5-18.2 1.6-2.3 2.8-4.2 2.7-4.3zm-18.4 11.62c-.2 0-.4 1.9-.4 4.2 0 2.8.1 3.68.3 2.66.6-2.04.6-6.87.2-6.86zm-3.7 3.16c-.3-.1-.7.7-1.3 2.2-1.2 2.8-1.2 3.36-.8 7.35.3 2.37.5 5.46.6 6.86l.2 3.24c.1.42.5.6 1 .44 1.2-.3 1.6 1.6 1.6 7 0 2.8.3 4.3 1.3 6.3.7 1.6 1.4 2.7 1.6 2.6.2-.2-.2-3.5-1.7-15.6-.2-2.1-.8-3.9-1.1-4.1-.5-.3-.6-2-.5-7.5.1-5.8.1-8.4-.4-8.5zm72.6 7.08c-.2.03-.4.32-.9.9-.6.87-1.2 1.1-2 .83-1-.32-1.1-.16-1.1 1.6 0 1.06.4 3.88.8 6.26 1.4 7.9 3.1 26.6 3.1 33.3 0 5.6-.1 7-1.1 9.8-1 2.7-1.1 3.4-.6 4.4.4.6.5 1.8.3 2.7-.3 1.8.2 1.9 1.5.5 1.2-1.4 2.8-1.3 5.1.1 2.5 1.5 2.5 3.5 0 4.9-1.5.8-3 .7-4.5-.3-1.7-1.1-2.1-.6-1.4 1.6.2.6.3 1.1.3 1.5 0 .4 0 .8-.2 1.1-.9 1.6-.5 2 1.1 1.2 2.1-1.1 4.4-.2 5.4 2.2.4.9.7 1.8.7 1.9 0 .1-1 1.3-2.3 2.7-1.7 1.8-2.6 2.4-3.3 2.2-.6-.2-1.1 0-1.6.7-.3.5-1 1-1.5 1-.7 0-.9.4-.9 2.5v2.5l1.4-.7c1.4-.8 4.2-.4 5.6.8.9.7.8 3.7-.2 5.5-1.8 3.5-6.4 7.3-8.5 6.9-.3-.1-.6.5-.7 1.4-.2 1.7 1.4 7.9 2 7.9.2 0 .7-.8 1-1.7.8-2.4 2-3.5 3.9-3.5 2.7 0 2.9 1.1 1.4 7.6-1.5 6.4-2.1 6.9-4.7 4l-1.5-1.6.4 1.5c.7 2.9 2.3 6.2 3.8 7.6l1.5 1.4V230c0-4.9 1.5-6.47 4.8-4.96 2 1 3.4 7.6 2.6 12.9-.4 2.7-.9 2.8-3.5 1.1-1.4-1-1.8-1.1-1.8-.5 0 1.2 1.3 3.4 3 4.9.9.8 1.6 1.7 1.6 2.1 0 .36.4-.2.9-1.2 2.2-4.6 8.2-.3 8.2 5.87 0 1-.2 3-.6 4.4-.6 2.5-.5 2.6.7 3.7.8.6 1.6 1.6 1.9 2.3.3.6.8 1.1 1 1.1 1.1-.2 1.6.2 2.1 1.7 1.2 3.5.4 7.6-2.1 10.4-1 1.1-1 1.1.1 3.1 1.1 2.2 1.5 2.5 2.4 1.5.4-.3 1-.4 1.4-.2 1.1.5 1 3.6-.2 7.1-.7 1.9-1 4.2-1 6.7 0 3-.2 4.1-1 5-.5.7-1.1 1.9-1.3 2.7-.2.8-2.4 4.2-4.9 7.5-9 11.9-10.8 15.5-12.1 23.8-1 6.2.6 14.2 3.4 17 .9.9 1 .9 1.7-.9.4-1 .9-1.8 1.2-1.8.2 0 .9-1 1.4-2.3.6-1.3 1.6-3 2.4-3.9.7-.8 1.2-1.6 1.1-1.8-.6-.6-3.7 1.9-4.9 4.1-.7 1.3-1.4 2.4-1.7 2.4-.5 0 0-6.8.5-8.4.7-1.7-1-.5-2 1.4-1 2.1-1.8 2.1-1.8 0 0-2.4 3-7.2 6.9-10.6 3.1-2.8 8.3-9.4 8.3-10.6 0-.2.9-2 1.9-4.1 1.2-2.3 2.2-3.7 2.7-3.7s1.2-.5 1.5-1c.6-.9 1-1 2.6-.7 1 .2 2.5.7 3.3 1.1.8.4 1.6.6 1.8.5.4-.4-.2-2.4-1.4-4.3-.9-1.4-1.3-1.6-3.1-1.6-1.9 0-2.1-.1-1.7-1.1.2-.6.4-2.5.6-4.3.2-2.7.1-3.2-.6-3.2-.5 0-.8-.3-.8-.6 0-1.4 1.5-10 2.2-12.3.7-2.5.7-2.5 2.7-2.4 1.9.1 2.1 0 2.6-1.8.7-2.2.5-2.6-1.7-2.6-1 0-2.5-.5-3.7-1.3-2.4-1.6-3.2-3.9-3-8.8l.1-3.2 3 .3 3 .3-.1-2.1-.2-2.2-2.1.1c-1.7.1-2.3-.1-3.3-1.1-.7-.7-1.7-1.3-2.4-1.3-1.2 0-3.7-2.6-3.8-4-.3-3.4-.1-7.7.5-7.7.36 0 1.9.6 3.5 1.5 3.2 1.6 3.7 1.6 2.9 0-.3-.5-.6-1.5-.6-2.2 0-1-.2-1.2-2-1.2-2.3 0-7.8-2.6-10.3-4.9-1.4-1.3-1.5-1.6-1.3-4.6l.1-3.2 2.68.1 2.7.1-.3-1.6c-.5-2.2-.6-2.3-3.7-2.6-3.2-.3-4.2-.7-5.9-2.8-1.5-1.7-1.9-5.5-.6-6.5.7-.5 3.2-.2 5.5.7 1.2.5 2-1.6 2.1-5.5 0-2.2-.2-3.4-.8-4.3l-.9-1.3v2.6c0 1.9-.3 2.8-1.1 3.5-1 .9-1.1.9-2.9-.1-1.1-.6-2.37-1.9-2.9-2.9l-1-1.9 1-1c.63-.6 1.2-1.3 1.2-1.5 0-.2.7-.6 1.6-.9 2.2-.6 2.4-2.1.7-4.9-1.7-2.8-1.7-4.8-.1-5.4 1.8-.7 2.1-3.4.5-5.2-1.7-1.8-1.6-5.2.2-5.4.6-.1 1.1-.4 1.1-.8 0-.3.4-1.7 1-3 .9-2.1 1-2.72.5-5.4-.5-2.82-2.2-6-3.2-6s-1.7-2.1-1.1-3.24c.3-.6.6-2.4.7-4.1.13-2.3.9-4.7 3.05-9.8 1.6-3.7 2.9-6.8 2.9-7 0-.1.6-1.1 1.3-2.3 1.6-2.5 2.7-9.3 1.9-12.1-.3-1-.8-4.2-1.1-7.2-.9-9-1.5-9.2-3.1-.7-.6 3.3-1.5 6.7-1.9 7.8l-.7 1.84.2-1.8c.2-1 .4-4.2.6-7.16l.4-5.4-1.6-1.75c-.9-.9-1.8-1.6-2-1.4-.2.2-.5 1.6-.6 3-.15 1.4-.4 2.7-.66 2.8-.2.2-.8-.9-1.27-2.3-1-3.1-1.6-3.5-2-1.5-.4 2-1 1.9-1.8-.3-.3-1-.8-1.8-1.1-1.8-.3 0-1-.4-1.5-.9-.5-.4-.76-.6-1-.6zm23.2 10.35l-.4 3.42c-.2 1.88-.2 3.7 0 4.04.8 1.2 1.3-2 .9-4.7l-.4-2.7zm-32.6 17.85c0-.05-.1.47-.1 1.47 0 1.4.1 3.75.3 5.22.2 1.4.5 2.6.8 2.6.5 0 .5-1-.3-6.1-.4-2.2-.6-3.2-.7-3.3zm2.2 31.2c-.4-.14-1.1.78-1.9 2.4-1.2 2.5-3.6 8.7-3.6 9.25.1.9 5.6-10.2 5.6-11.18 0-.3 0-.44-.1-.48zm17.5 1.6c.5-.06 1.2.45 1.3 1.35.1.72-.1 1.14-.5 1.14-.9 0-1.4-.5-1.4-1.7 0-.5.3-.8.6-.9zm2.7 87.98c-.2.04-.3.3-.3.8 0 .47.5 1.38 1.1 2.03 1.5 1.6 2 1.5 2-.3 0-1.2-.3-1.6-1.3-2-.8-.3-1.3-.5-1.5-.4zm25.2 59.24c-.2-.13-.4.65-.6 2.23-.2 1.54-.5 3.25-.7 3.8-.4 1-.3 1 .4.07 1-1.16 1.6-5.06 1-6 0-.05 0-.1-.1-.1zm-1.7 7.82c-.1 0-.8.86-1.6 1.9-1.1 1.57-1.2 1.73-.2.9 1.1-.96 2.4-2.8 1.9-2.8z"
-         id="path4520"
-         fill="#525767" />
-      <path
-         d="M513.03 67.8c-.94 0-1.83.06-2.42.17l-2.1.4 1.4 1.92c.8 1 1.2 2 1.1 2.2-.2.2-1.6-.1-3.1-.6-2.8-1-3.9-.8-2.9.4.6.6.9 3.1.7 5.3 0 .9-.3 1.1-1.5 1.1-1 0-1.7.4-2.3 1.2-.8 1.2-.8 1.3 1.4 2.5 3.5 2 4.4 2.1 5 .6.6-1.5 3.3-3.3 5-3.4.9 0 1.2.3 1.2 1.2 0 1.2.2 1.2 4.7 1.4 3.4.1 5.4.5 7 1.3 3 1.3 3 1.3 5.1-.4 1-.9 2.2-1.5 2.7-1.5 1.2 0 1.2-.4-.4-2.4-.7-.9-1.3-1.8-1.3-1.9 0-.1 1-.6 2.3-1.1 2.3-.9 2.8-1.6 1.7-2.7-.4-.4-.4-.8.1-1.4.5-.7 1.2-.8 3-.5l2.3.3-1.6-.9c-3.6-2.2-6.8-2.9-13.9-2.9-3.8 0-8.3-.2-9.9-.4-.9-.1-1.9-.2-2.8-.2zm5.88 19.24c-.1 0-.3 0-.4.03-.3.1.6 1.04 2 2.06s3 1.86 3.5 1.87c.9 0 .9-.08-.2-1.23-1.1-1.26-3.6-2.6-4.8-2.73zm-27.7 4.33s-.1.04-.1.1c-1.5 1.22-5.5 7.32-6.5 9.85-.5 1.5-.8 2.95-.6 3.76.3 1.16.5.86 1.7-2.43 1.6-4.4 2.7-6.5 4.8-9.6.8-1.1 1.1-1.8.8-1.68zm40.4 13.05c0 .06-.1.23-.1.53 0 .54.1.84.3.67.2-.17.2-.6.1-.98-.1-.2-.1-.27-.2-.22zm.5 2.04c0 .05-.1.23-.1.52 0 .54.1.84.3.67.2-.17.2-.6.1-.97-.1-.2-.1-.28-.2-.22zm-60.6 1.33c-.8 0-1 2.2-.7 5.8l.4 3.5.4-2.3c.6-3.3.5-7.1 0-7.1zm64.3 1.6c-.1 0 .3 2.5.9 5.5.6 2.9 1.2 9.4 1.4 14.3.3 5.8.7 9.3 1.1 9.8 1.3 1.5 1.7.1 1.3-5.3-.5-7.8-2.1-18.2-3.4-21.6-.6-1.6-1.1-2.9-1.2-2.8zm21 7.5c-.4-.2-1.1.9-1.5 2.5-.7 3-1.7 3.1-2.4.3-.3-1.3-.7-2.4-.9-2.4-.1 0-.5 1.2-.7 2.6-.5 2.9-1.5 3.7-2.1 1.6-.3-1.4-2.9-4.3-3.8-4.3-.2 0-.8.6-1.3 1.3-.8 1.2-.8 1.9-.2 9l1.4 15.6c1 9.2.7 14.7-.8 19.2-.8 2.4-1 3.4-.5 3.8.3.3.6 1 .6 1.4 0 .7.5.9 2.4.9 4.8 0 5.9.2 6.4 1.4.8 1.9-.8 5.4-2.9 6.1-2.1.7-4 .7-4.8 0-.5-.5-.6-.2-.6 1.3 0 1.8 0 1.9 1.6 1.8 2.6-.3 4.2.4 5.2 2.3.8 1.4.9 2 .4 3.4-.5 1.6-5.5 6.5-6.6 6.5-.3 0-.7.4-1 1-.3.5-.9 1-1.3 1s-.7.3-.7.8c0 .6.3.7.9.4 1.4-.6 5.9-.2 6.7.5 2.8 2.7-2.3 12.1-7.9 14.5-1.5.7-2.2 1.3-2.2 2 0 1.5 1.1 5.5 1.4 5.5.2 0 .9-1.2 1.6-2.7 1.6-3.4 2.5-3.9 4.8-2.8 2.1 1 2.3 2 1 7.6-.9 3.8-.7 4.4 1.6 4.5 2.6 0 3.2.5 4 3.7.5 1.7.9 5.4 1 8.1l.1 5 2.7.9c1.6.5 3.1 1.4 3.7 2.2.5.7 1.1 1.3 1.4 1.3.9 0 1-1.1.2-2.1-1-1.5-1-2 .3-2 1.6 0 1-1.1-1.2-2.3-1-.6-2.8-2-3.9-3.2-1.9-2.1-2-2.4-2-5.6v-3l2.7.1c1.8.1 2.5.1 2.7-.3.2-.1.2-.3.2-.6v-.5c0-.6-.5-.8-1.9-.8-2.6 0-6.3-1.8-7.6-3.5-1.2-1.8-1.8-5.8-1.1-7.2.4-.8 1.1-1.1 2.6-1.1 2.8 0 2.7-1.1-.3-2.6-1-.4-2-1.7-2.7-3.2l-1.1-2.4 1.6-2c.9-1.1 2.1-2 2.6-2 1.5 0 1.6-1.2.2-3.8-1.8-3.4-1.7-5.6.2-6.6 1.8-.9 1.8-.9.6-3-1.3-2.1-1.9-6.1-1-7.1.4-.4 1.1-.7 1.6-.7.6 0 1.3-.8 2-2.3 1.4-3.1 1.4-3.3-.7-2.9-1.7.3-1.7.3-2.4-1.8-.6-1.8-.6-2.2.1-2.9.6-.6 1-.6 1.9-.2.9.5 1.1.5 1.1-.3 0-.9-.9-2-2.8-3.6-1.1-1-1.6-3.1-.9-4.4.3-.6.6-2.3.7-3.7.1-1.4.8-4.1 1.5-5.9 1.2-2.8 3-11.4 4.1-18.8.3-1.9-.4-3.1-1-1.5-.2.5-1.2 3.3-2.3 6.3-1.1 2.9-2.5 7.6-3.2 10.4-.7 2.8-1.2 4.6-1.2 4.1 0-1.5 1.9-14.6 3.3-21.7 1-5.5 1.5-10.6 1.3-13.1 0-.4-.1-.6-.3-.6zm-74.3.4c-.3 0-.5 3.5-.6 8.1 0 4.9.1 7.5.4 6.6.7-2.1.9-14.9.3-14.8zm78.4 5.4c0-.1-.1.2-.3.8-.2.7-.4 1.8-.4 2.5 0 1 .1 1.1.5.5.3-.4.5-1.6.5-2.6l-.1-1.3zm-86 9.6c-.1-.1-.2.2-.2.8 0 .7.1 1 .3.6s.2-.9 0-1.3c0-.1 0-.2-.1-.2zm88.6 1.4s-.1 0-.2.1c-.3.3-.7 1.3-.9 2.3-.2 1.2-.2 1.6.2 1.2.3-.3.7-1.3.9-2.3.2-.9.2-1.4.1-1.4zm-79 13.3h-.1c-.1.1.1 1.1.4 2.1s.7 1.7.9 1.6c.2-.2 0-1.1-.3-2.1-.3-.9-.6-1.6-.8-1.6zm-3.1.9v.1c-.2 1 .8 6.8 1.3 7.6.8 1.2.7-1-.2-4.7-.4-1.9-.8-3.2-1-3.1zm70.7 8c.1-.1.1 0 .2.2.2.5.1 1.2 0 1.5-.1.3-.2-.1-.2-.9 0-.6.1-.9.1-.9zm7.5 52.4c-.3 0-.5.3-.5.8 0 .4-.5 1.4-1.1 2.2-.6.8-1 1.9-.8 2.3.2.5.7.8 1.2.8h.1c.4 0 .6-.1.8-.4.6-1 .9-5.7.4-5.7zM543 227.2c-.34-.03-.3.25-.1 1 .2.7.96 2.03 1.7 3l1.34 1.8.3-1.8c.4-2-.2-3.55-1.2-3.55-.4 0-1.1-.17-1.57-.35-.2-.1-.34-.1-.44-.1zm7.03 14.03l1.5 1.6c1.8 2 2.3 2 2.3.4 0-.7-.27-1.2-.6-1.2s-1.2-.1-1.9-.3l-1.3-.3zm18.4.7c-1.1 0-1.1.1.2 1 1.12.9 2.5 1.4 2.5.8 0-.6-1.75-1.8-2.7-1.8zm-4.7 8.6c-.48.1-.7 1.2-.7 3.3 0 1.7.3 2.8 1 3.7.55.8 1 1.6 1 2 0 .4.46.8 1 1 .5.2 1.3 1 1.8 1.8 1.1 2.3 1.9 1.9 1.6-.82l-.3-2.3 2.6.3c1.45.2 3 .4 3.5.7.74.3.9.1.9-1 0-1.3-.1-1.4-2-1.1-1.7.2-2.13.1-2.8-1-.5-.7-1.3-1.2-2-1.2-1.2 0-3.04-1.7-4.65-4.2-.44-.7-.8-1-1.07-.9zm-4.26 9.8c-.2 0-.3 0-.4.1-.2.1-.18.5 0 .8.4.7 1.3.7 1.3.1 0-.47-.56-.94-1-1zm9.5 5c-.2 0-.4 1.4-.5 3.2-.13 1.8-.7 4.3-1.4 5.8s-1.04 3-.84 3.5c.3.8.43.8 1.5-.2 1.44-1.4 2.2-1.4 2.86-.1.8 1.6.6 4.5-.8 8.5-1.1 3-1.3 4.5-1.1 6.6.1 1.5.4 3 .6 3.3.7 1.15 1.2-.4 2-6.12 1-7.3 2.3-13.1 3.1-13.8.9-.7 0-2.3-1.6-3-.9-.3-1.5-1.3-2.4-4-.7-2-1.4-3.6-1.6-3.6zm8.3 9.7c-1.74 0-2.05.7-.68 1.5 1.1.63 1.8.4 2-.67.1-.64-.2-.85-1.4-.85zm-5.4 21.1c-.2 0-.48.25-.94.7-.6.53-1.65 1.05-2.35 1.15-.94.14-1.6.86-2.63 2.9-.73 1.53-3.63 5.76-6.4 9.43-6.6 8.7-8.4 12.1-9.7 18.1-.6 2.7-1.1 5.4-1.1 6 0 .7.17 1.1.4 1 .2-.1 1.75-2.9 3.43-6.2 2.34-4.6 3.92-7 7.03-10.4 4.2-4.5 5.9-6.9 5.9-8.1 0-.3.9-2.1 1.9-3.9 1.6-2.9 1.9-3.2 2.5-2.4.9 1.2 1.9.4 1.6-1.3-.1-.7.1-2.3.5-3.5.4-1.2.6-2.5.4-2.9-.2-.3-.3-.5-.5-.4zm3.84 6.85c-.7 0-.6 1.4.1 1.7.4.12.8.15.9.06.4-.3-.4-1.75-.9-1.75zm-25.8 38.37s-.1 0-.1.04c-.4.2 0 1.8.8 3.9.7 1.5 1.2.9.8-.8-.5-2.2-.9-3.2-1.3-3.2z"
-         id="path4516"
-         fill="#474e62" />
-    </g>
+	 id="g4566">
+	<g
+	   id="g4512"
+	   stroke-width=".51">
+	  <path
+		 id="path4543"
+		 d="M506.48 64.14c-2.08.02-4.06.23-5.66.64-3.32.85-10.72 4.56-13.47 6.76-.84.67-3 2.28-4.77 3.57-10.6 7.7-16.22 23.9-14.3 41 .83 7.5.84 6.3-.02 16.9-1.22 15.1.25 23.4 6.12 34.5 7.73 14.7 8.24 15.9 8.74 21 .7 7.1.23 10.1-2.37 14.9-1.65 3-4.36 9.3-4.76 10.9h-.1l-3.6 7-2.4 4c-.1.1-.2.2-.2.3-.3.4-.5 1-.5 1.3 0 .3.2.2.5-.2.2-.3.4-.7.4-1l1.2-2 3.3-6 1.8-2.7c.5-.3 1.6-2 2.6-4.2 1.1-2.4 2.7-5.1 3.5-6 2.9-3.4 6.7-8.9 7.8-11.4.9-2.1 1.1-3.3 1.1-7.8-.1-5.7-.7-8.9-4.4-21.7-1.1-4-2-7.4-1.8-7.5.1-.1 1.1 1.1 2.3 2.7 2.2 3.2 6.2 7.4 6.5 7 .1-.1-1.1-2.7-2.8-5.7-3.3-6.1-6.3-13.8-7.6-19.1-.8-3.6-.7-8.4.8-25 .9-9.9 4.8-19.9 10.1-25.6 1.4-1.4 3.6-1.5 8.7-.1l3.7 1 3-1.2c1.6-.7 3.5-1.2 4.2-1.2 2.3 0 4.7 1.5 7.4 4.6 1.4 1.6 2.9 2.8 3.2 2.7.8-.3 2.4 3.3 3.5 7.7 1.5 5.9 1.9 11 2.3 27 .2 8.9.6 16.5.8 16.9.6 1 1.3-.2 1.3-2.1 0-2.7 1-1.3 1.3 1.9.4 3.6.3 4.5-1 11-.7 3.4-.8 5.7-.6 10 .3 5.6.3 5.8-1.5 10.3-2.6 6.7-3.4 10.8-3.4 16.4 0 5.2 1.4 12.9 2.8 15.8 2.9 6.1 3.4 6.4 3.4 2.7 0-1.3.3-3.9.7-5.7 1.1-4.7 3.9-13.2 4.4-13.2.7 0 .4 1.5-.6 3.7-.6 1.2-1.4 3.7-1.8 5.6-.8 3.9-.4 8.1 1.3 12.9.7 2 .9 3.5.7 6-.3 4.4.5 6.7 3.4 9.8 2 2.2 2.5 3.1 3 5.6.5 2.6 1 3.5 3 5.5 2.3 2.3 2.4 2.6 2.7 5.9.4 4.9 2 8.8 4.7 11.6l2.3 2.3v4.2c0 5.4.9 8 3.8 11l2.3 2.3-1.1 4.3c-1.6 5.7-1.6 11.1-.1 13.9l1.1 2c-.1 0-.1.1-.1.1l-2.8 3.4c-4 5-9.5 13.5-12.1 18.5-4.9 9.8-5.1 13.7-.8 22.6 1.5 3.1 3.5 6.4 4.5 7.4 1.6 1.6 2.1 1.9 3.7 1.7l1.9-.2-.7-2.9c-1.1-4.7-1-5.9.9-7.6.9-.8 4.6-3 8.2-5 11-6 16.1-10.4 17.6-15.2 1.3-4.1-.4-10.3-5-18.5l-2.1-3.8 2.5-2.2c3.1-2.8 4.6-5.8 4.6-9.2 0-2.6-1.6-7.1-3.4-9.7-1.5-2-1.4-3 .3-5.6 2.9-4.3 2.4-8.5-1.6-12.3l-1.9-1.8.3-3.8c.3-3.5.2-4.1-1-6.5-.8-1.4-2.1-3.4-2.9-4.4-1.5-1.6-1.6-2-1.3-4.1.5-3.4-1.8-7.8-6.1-11.7-3-2.7-3.3-3.1-3.5-5.6-.2-1.5-.9-4-1.7-5.7-1.3-2.9-1.4-3.1-.7-6.3.5-2.8.5-3.6-.2-5.7-.5-1.3-1.5-3.3-2.2-4.3-1-1.5-1.2-2.1-.7-3.2.7-1.8.7-5.5 0-7.2-.4-1-.3-1.9.2-3.5.4-1.1.9-4.3 1-7s.5-6 .8-7.4c.5-2.2.4-2.7-1.4-6.7-1.1-2.5-2-5.5-2.2-7.1l-.2-2.8 4.4-6.6c7.6-11.3 8.4-13.6 9.5-27.2 1-13.7 1.1-13.3-5.1-32.8-2-6.2-3.48-8.5-9.1-14-4.5-4.3-5.9-5.3-10.5-7.5-2.9-1.4-6.7-3-8.6-3.4-4.4-1.2-11.6-1.3-15-.1-2.5.8-2.6.8-5.8-.2-2.8-1-6.6-1.5-10-1.4zm-31.78 81c.04-.02.08 0 .13.05.9.9 4.15 11.8 5.65 18.9.85 4 1.45 7.4 1.33 7.5-.8.8-5.6-10.1-6.6-15.1-.8-4.3-1-11.4-.5-11.6zm61 11.14c.06 0 .1 0 .15.04.22.13.68 1.82 1.02 3.74.6 3.35.57 3.64-.73 6.9-2.05 5.12-2.44 4.85-2.12-1.5.26-5.2 1-9.1 1.7-9.18zm-50.3 12.06c.3.04 1.1 2.26 2.55 7.08.92 3.08 1.3 5.64 1.36 8.9.1 2.7-.1 5-.5 5.6-.5.94-.6.9-.9-.52-.2-.83-.6-2.9-1-4.57-.7-2.9-1.8-16.05-1.4-16.47 0-.02.1-.02.1-.02zm53.32 9.86c.2.04.22.7.23 2.3.02 3.48-1.08 9.3-3.06 16.28-.9 2.94-1.8 6.7-2.1 8.33-.3 1.7-.6 3.1-.7 3.3-.5.5-1-5.7-.7-10.9.2-5.9 1.5-10.6 3.7-13.9.6-1 1.2-2.2 1.2-2.8s.3-1.4.7-2c.2-.3.4-.5.5-.5z"
+		 fill="#e1e0e2" />
+	  <path
+		 d="M506.48 64.14c-2.08.02-4.06.23-5.66.64-3.32.85-10.72 4.56-13.47 6.76-.84.67-3 2.28-4.77 3.57-10.6 7.7-16.22 23.9-14.3 41 .83 7.5.84 6.3-.02 16.9-1.22 15.1.25 23.4 6.12 34.5 7.73 14.7 8.24 15.9 8.74 21 .7 7.1.23 10.1-2.37 14.9-1.65 3-4.36 9.3-4.76 10.9h-.1l-3.6 7-2.4 4c-.1.1-.2.2-.2.3-.3.4-.5 1-.5 1.3 0 .3.2.2.5-.2.2-.3.4-.7.4-1l1.2-2 3.3-6 1.8-2.7c.5-.3 1.6-2 2.6-4.2 1.1-2.4 2.7-5.1 3.5-6 2.9-3.4 6.7-8.9 7.8-11.4.9-2.1 1.1-3.3 1.1-7.8-.1-5.7-.7-8.9-4.4-21.7-1.1-4-2-7.4-1.8-7.5.1-.1 1.1 1.1 2.3 2.7 2.2 3.2 6.2 7.4 6.5 7 .1-.1-1.1-2.7-2.8-5.7-3.3-6.1-6.3-13.8-7.6-19.1-.8-3.6-.7-8.4.8-25 .9-9.9 4.8-19.9 10.1-25.6 1.4-1.4 3.6-1.5 8.7-.1l3.7 1 3-1.2c1.6-.7 3.5-1.2 4.2-1.2 2.3 0 4.7 1.5 7.4 4.6 1.4 1.6 2.9 2.8 3.2 2.7.8-.3 2.4 3.3 3.5 7.7 1.5 5.9 1.9 11 2.3 27 .2 8.9.6 16.5.8 16.9.6 1 1.3-.2 1.3-2.1 0-2.7 1-1.3 1.3 1.9.4 3.6.3 4.5-1 11-.7 3.4-.8 5.7-.6 10 .3 5.6.3 5.8-1.5 10.3-2.6 6.7-3.4 10.8-3.4 16.4 0 5.2 1.4 12.9 2.8 15.8 2.9 6.1 3.4 6.4 3.4 2.7 0-1.3.3-3.9.7-5.7 1.1-4.7 3.9-13.2 4.4-13.2.7 0 .4 1.5-.6 3.7-.6 1.2-1.4 3.7-1.8 5.6-.8 3.9-.4 8.1 1.3 12.9.7 2 .9 3.5.7 6-.3 4.4.5 6.7 3.4 9.8 2 2.1 2.5 3 3 5.6.5 2.6 1 3.4 3 5.4 2.3 2.3 2.4 2.6 2.7 5.8.4 4.9 2 8.8 4.7 11.6l2.3 2.4v4.2c0 5.4.9 8 3.8 11l2.3 2.3-1.1 4.3c-1.6 5.7-1.6 11.2-.1 14l1.1 2c-.1 0-.1.1-.1.1l-2.8 3.4c-4 5-9.5 13.5-12.1 18.6-4.9 9.9-5.1 13.8-.8 22.7 1.5 3.1 3.5 6.4 4.5 7.4 1.6 1.6 2.1 1.9 3.7 1.7l1.9-.2-.7-2.9c-1.1-4.6-1-5.9.9-7.5.9-.8 4.6-3.1 8.2-5 11-6.1 16.1-10.4 17.6-15.2 1.3-4.1-.4-10.4-5-18.6l-2.1-3.7 2.5-2.2c3.1-2.8 4.6-5.8 4.6-9.2 0-2.6-1.6-7.1-3.4-9.7-1.5-2-1.4-3 .3-5.6 2.9-4.3 2.4-8.5-1.6-12.3l-1.8-1.8.3-3.9c.3-3.5.2-4.1-1-6.5-.8-1.5-2.1-3.5-2.9-4.4-1.5-1.7-1.6-2-1.3-4.2.5-3.4-1.8-7.8-6.1-11.7-3-2.7-3.2-3.1-3.5-5.6-.2-1.5-.9-4-1.7-5.7-1.3-2.9-1.3-3.1-.7-6.2.5-2.8.5-3.6-.2-5.7-.5-1.4-1.4-3.3-2.1-4.3-1.1-1.6-1.2-2.1-.7-3.3.7-1.8.7-5.4 0-7.2-.4-1-.3-1.9.2-3.5.4-1.1.9-4.3 1-7 .1-2.7.5-6 .8-7.4.5-2.2.4-2.7-1.4-6.7-1.1-2.5-2-5.5-2.2-7.1l-.2-2.8 4.4-6.6c7.6-11.2 8.4-13.5 9.5-27.2 1-13.7 1.1-13.3-5.1-32.8-2-6.2-3.5-8.5-9.1-13.9-4.5-4.2-5.9-5.3-10.5-7.5-2.9-1.4-6.8-3-8.6-3.4-4.4-1.2-11.7-1.2-15 0-2.5.85-2.7.85-5.9-.2-2.8-.96-6.6-1.44-10.1-1.4zm51.24 28.4c.25 0 .58.5.74 1.12.4 1.5.04 1.75-.64.48-.67-1.25-.7-1.6-.1-1.6zm-2.97 1.57c.3 0 .63.3 1 1 .3.6.5 1.5.4 2.1-.14.9-.24 1-1.23.3-.77-.5-1-1.1-.83-2 .1-.8.3-1.2.6-1.2zm-80.05 51.1c.04 0 .08 0 .13.1.9 1 4.15 11.9 5.65 19 .85 4 1.45 7.4 1.33 7.6-.8.9-5.6-10.1-6.6-15-.8-4.3-1-11.3-.5-11.5zm61 11.2c.06 0 .1 0 .15.1.22.2.68 1.8 1.02 3.8.6 3.4.57 3.7-.73 6.9-2.05 5.1-2.44 4.9-2.12-1.5.26-5.2 1-9.1 1.7-9.2zm-50.3 12.1c.3.1 1.1 2.3 2.55 7.1.92 3.1 1.3 5.7 1.36 8.9.1 2.7-.1 5-.5 5.6-.5 1-.6.9-.9-.5-.2-.8-.6-2.9-1-4.5-.7-2.9-1.8-16-1.4-16.4h.1zm52.9 7.2c.1 0 .13.2.14.7 0 .6-.32 1.5-.73 2.1-1 1.4-1 0 0-1.8.4-.6.5-.9.6-.9zm.42 2.7c.2.1.22.7.23 2.3.02 3.5-1.08 9.3-3.06 16.3-.9 3-1.8 6.7-2.1 8.4-.3 1.7-.6 3.1-.7 3.2-.5.5-1-5.7-.7-10.9.2-5.9 1.5-10.6 3.7-13.9.6-1 1.2-2.2 1.2-2.8s.3-1.4.7-2c.2-.3.4-.5.5-.5zm-3.4 3.1l.04 1c0 .6-.2 1.4-.47 1.8-.5.7-.5.7-.5 0 0-.4.2-1.2.4-1.7l.4-1z"
+		 id="path4534"
+		 fill="#b4b3b7" />
+	  <path
+		 d="M506.44 65.08l-1.68.1c-5.88.48-17.37 6.87-18.72 10.42-.27.7-.7 1.08-1.03.9-1.1-.75-7.8 7.83-10.6 13.7-1.5 3.25-1.9 3.8-2.1 2.8-.3-2.24-2.4 4.24-3 9.6-.4 3.77-.4 6.3 0 10.78.4 3.22.7 7.3.7 9.06.1 1.76.4 3.6.7 4.07.5.7.6 3.3.4 10.8-.2 7-.1 11 .4 13.5.4 2 .7 5 .8 6.7.1 2.5.6 4.1 2.2 7.4 2.6 5.3 6.9 12.1 7.1 11.2.1-.3-1.3-3.7-3.1-7.5-4.1-8.6-4.9-12.3-4.9-21.6.1-3.7.3-7.2.5-7.8.4-.9.5-.9 1.1.5.4.9 1.4 3.2 2.3 5.2.9 2 1.8 4.7 2 5.9.2 1.3 1 5.2 1.8 8.9.9 3.7 1.8 8 2.2 9.7l.7 3.1.2-3.9c.1-2.1.3-3.9.6-3.9s1.2 2.1 2.1 4.7c1 2.6 2 5.4 2.4 6.2.7 1.5.7 1.5.5-.7-.1-1.2-1.5-6.7-3.1-12.2-1.5-5.4-2.7-10.2-2.7-10.6.1-.4 1.4 1.1 2.9 3.4 4.1 6.2 5.4 7 2.7 1.7-1.9-3.9-5.5-14.5-5.9-17.6-.4-3.2.6-20.9 1.6-27.3.9-5.9 3.5-13 6.3-17.3 4.1-6.3 4.9-6.7 10.1-6 3.3.5 5 .5 12.4-.3 3.2-.3 3.5-.2 5.6 1.2 1.2.9 2.6 2 3.2 2.6.5.6 1.3 1.1 1.8 1.1 1.5 0 2.9 2.4 4.5 7.3 2.3 7.2 3.1 12.4 3.6 23.9.4 8.6.6 10.7 1.3 11.4.5.5.9 1.5.9 2.3 0 .8.4 4.3.8 7.8.7 5.3 1.3 8.6 3.2 17 .2.6-.7 3.4-2 6.4-3.1 7.2-5.3 13.1-6.2 16.5-.9 3.5-1 10.8-.1 14.5l.6 2.7.4-3c.2-1.7.3-4.7.4-6.8 0-4.3 1.9-10.4 4.9-16.4 2.2-4.5 2-4.3 3-3.5 1 .8 1 8.4 0 14-.9 5.2-.9 5.3.2 5 1.7-.5 1.6 3-.1 7.4-1.3 3.2-1.6 4.5-1.5 7.9 0 2.2.4 5.3.9 6.9.4 1.5 1 4.7 1.2 7.1.5 5.2 2.1 9.3 4.3 11.5 1.2 1.1 2 2.7 2.8 5.5 1 3.3 1.5 4.1 3.2 5.5 1.8 1.5 2.1 1.9 2.1 3.8 0 2.4.9 5.3 1.6 5.3.3 0 .5-1 .5-2.2 0-4.3 2.3-6.3 4-3.5.5.9 1.2 1.6 1.5 1.6 1.5 0 1.5 2.9.1 5.6-1 2-1.2 2.1-2.8 1.8-2.9-.5-2.7 1.1.6 5 1.5 1.8 1.7 2.4 1.7 5 0 3.8 2.5 10.3 4.6 12.2 1.8 1.7 1.9 2.6.5 6.5-1.6 4.6-1.7 7.5-.5 10.8 1.7 4.3 1.5 5.4-1.7 9.4-3.8 4.7-9.6 13.4-11.5 17.2-2.5 4.9-4 10.3-3.7 12.7.9 6.6 2.8 12 5.4 15.7 1.2 1.8 2.4 1.9 2.4.1 0-.7.3-1.9.7-2.7.4-.7 1-1.9 1.3-2.6 1.8-3.8 2.6-4.8 4.9-6.2 1.4-.8 3.1-1.4 3.9-1.4 1.5 0 6.4-2.3 10-4.7 3.4-2.2 6.1-4.9 7.2-7.2 1.4-2.5 1.8-7.2 1-9.7-1.1-3.7-6.7-14.5-7.6-15.1-1.1-.7-1.2-1.9-.2-4.7.4-1.2.8-3.1.8-4.3 0-1.8-.1-2.1-.7-1.6-1.3 1.1-1.5-2.5-.3-6.1.6-1.8 1.2-3.3 1.3-3.3.1 0 1 .3 2 .7 2.1.9 2.4.5 1-1.8l-.3-.7v-.4c0-.5.1-1.1.1-1.8l1.3-3.3 1.9-4.7-.8-2.2c-.5-1.2-1.7-2.8-2.83-3.7l-2-1.6.1-1.5.2-2.6c.4-4.7-.4-7.2-3.5-11-1.7-2-1.8-2.4-1.6-4.5.4-3.5-1.5-7.1-5.8-11.3-3-2.9-3.6-3.6-3.6-5.1 0-2.3-.7-3.2-2.4-3.3-2.9-.2-5.2-.8-5.7-1.3-.2-.3-.55-1.4-.7-2.5-.4-2.4.1-2.7 3.25-1.7l2.36.7.7-4.3c.8-4.9.4-6.5-2.1-10.1-1.3-1.9-1.5-2.3-1-4.1.2-1.1.5-6 .5-11 0-7.4.2-9.2.9-10.3 1.4-2.1.8-7.1-1.3-10.1-1.5-2.3-1.6-2.8-1.6-6.6 0-2.8.3-4.4.8-5.1.4-.6.8-1.4.8-2 0-.6.9-2.8 2-5s2.1-4.5 2.1-5.1c0-.6.6-2.2 1.4-3.7.8-1.4 1.6-3.2 1.7-3.9.2-.8.8-1.9 1.4-2.6l1.04-1.2-.3 3.2c-.2 1.8-.4 3.6-.6 4.1-.2.6-.18.7.2.4 1.4-1.3 2.8-7.4 3.3-14.8.9-12.5.8-15.5-1.1-20.8-.9-2.5-2-6.3-2.6-8.4-2.7-11-9.8-19.9-19.7-24.7-2.6-1.3-5.6-2.4-6.6-2.5l-2.5-.2c-.3 0-.5-.3-.4-.5.1-.2 0-.6-.3-.8-1-.5-11.2-.3-13.6.3h-5l-1-.2c-2.27-.5-4.76-.7-6.36-.5-2.3.3-2.6.2-2.6-.6 0-.6-.2-.8-1.5-.7zm-4.65 2.05c2.2.02 2.2.05 1 .7-.7.36-2.2.8-3.3.96-1.9.3-2 .2-1.1-.7.6-.8 1.5-1 3.2-1zm50.6 12.73c.4-.16 1.6.67 3.6 2.55 5.5 5.2 10.6 18.4 8.4 21.8-.4.6-.6.5-1.1-.4-.8-1.3-1.4-1.4-1.8 0-.2.6-.8 1-1.3 1-.7 0-1.1.5-1.3 1.3-.2.7-.5 1.3-.7 1.3-.2 0-1.3-.9-2.5-2.1-1.5-1.4-2.2-1.9-2.4-1.4-.9 2.8-.8 2.8-2.3 1.3-1.7-1.6-1.9-1.7-2.3-.2-.3 1.1-.3 1.1-1.4-.3-.6-.7-1.3-1.2-1.5-1.1-.3.2-.9.1-1.4-.2-.8-.4-1.2-.3-1.9.5-.9.9-1 1-2.1.3-.7-.4-1.4-.7-1.7-.7s-.6 1.1-.7 2.4l-.2 2.4-1.2-3c-3-7.6-5.6-12.3-8.6-15.7-1.7-1.9-3-3.6-2.9-3.7.5-.4 2.7 1.2 5.7 4.1 1.7 1.7 3.3 2.9 3.7 2.7.3-.2 1.3 0 2.3.3 1.3.5 1.9.5 2.3.1.4-.4.9-.4 1.5-.1 1.1.6 1.2.1.2-2.4-.4-1-.8-2.1-.8-2.4 0-.9 4.2-2 5.5-1.3 1.7.9 2.6.7 2.6-.7 0-1.1.1-1.2.9-.7 1.5.8 1.6.7 1.2-1.7-.3-1.9-.2-2.3.5-2.3.4 0 .8-.2.8-.5s.1-.4.2-.5zm-60.8 3.7c.2 0 .4.08.4.26.1.32.6.58 1 .6.4 0-.5.74-2.2 1.64-2.1 1.13-3.4 2.3-4.3 3.76-.8 1.16-1.9 3-2.5 4.07-.9 1.4-1.1 1.6-.9.6.5-2.3 2-5.3 3.7-7.5 1.4-1.9 3.6-3.6 4.6-3.6zm74.3 29.3c.2.02.6.85.9 1.86.4 1.43.3 2.18-.3 3.3-.9 1.7-1 1.76-1.5.64-.1-.12-.1-.3-.1-.5v-2.05c.1-1.5.5-3.2.8-3.2zm-30.2 6.6c0-.02 0 0 .1.04.2.43.6 2.78.8 5.22 0 .6 0 1.05.1 1.55v2.14c-.1 1.2-.3 1.3-.7-.3-.6-2.4-.8-8.4-.5-8.5zm30.5 1.8v1.62c0 .88-.1 1.97-.3 2.4-.2.45-.5.82-.8.82-.7 0-.5-1.54.3-3.3l.7-1.53zm-27.8 22.64c.5 0 .8 1.5.9 5.1.1 4.6-.5 6.82-1.3 4.7-.6-1.25-.6-9.16-.1-9.66.1-.15.3-.23.4-.2zm5.1 6.5c.1 0 .2.5.4 1.3.5 2.56-.2 8.06-1.5 11.3-.9 2.17-.9 2.6-.3 3.8.5 1 .5 1.73.2 2.7-.8 1.94-.6 4.87.2 6.55.9 1.85.9 2.42-.1 4.62-.5 1-1.1 1.8-1.3 1.8-.4 0-.7-5.96-.6-9.1 0-.7-.3-1.85-.8-2.58-.7-1.3-.7-1.6.1-3.4 1.2-2.9 2.3-6.8 2.3-8.8 0-1.8-.4-2.1-1.4-1.1-.5.5-.6 0-.6-2 0-3 .3-3.6 1.3-2.4.6.8.7.7 1.2-.6.3-.8.5-1.9.6-2.3v-.2zm1.8 32.5c.1 0 .2 0 .3.02.5.48-.5 3.02-1.6 4.24-1.4 1.5-2.2 1.03-2.2-1.17 0-1 .4-1.7 1.6-2.5.7-.5 1.3-.7 1.7-.7zm2.6 1.2c.2 0 .3 0 .5.1.1.2-.1.7-.6 1.2-.8.8-.9.8-.9.02 0-.7.5-1.3.9-1.35zm-4.7 13.63c1.6 0 3.8 2.1 3.5 3.36-.4 1.2-1.1 2.1-3.4 4.1-2.3 2-3.3 2-4 .3-1-2.7 1.5-7.8 3.9-7.8zm12.4 7.1c.6 0 1 .35 1 .77s-.5.77-1 .77c-.6 0-1-.34-1-.76s.4-.7 1-.7zm-10.6 11.2c1.4 0 1.7 1.2 1 4.32-.8 3.46-1.7 4.25-3.1 2.82-2.2-2.2-.8-7.17 2-7.17zm4.1 12.74c.5.05 1.2.5 2 1.3 1.5 1.44 1.7 2.7 1.1 5.72-.4 2.1-2.3 2.1-3.8 0-.8-1.2-1-2.1-.9-4.2.1-2 .6-3 1.4-2.9zm12.2.5c3 0 9.1 6.2 8 8.16-.8 1.54-2.3 1.15-4.5-1.15-1.8-1.84-2.2-2.04-2.9-1.47-1.1.9-2.4-.1-2.4-1.7s.9-3.7 1.6-3.7zm6.6 15.76c1.1.1 4.3 2 6 3.72 2.6 2.64 2.8 4.62.4 5.1-2.3.45-2.4.42-3.3-.97-.5-.7-1.4-1.56-2.2-1.9-1.5-.7-2.3-2.28-1-1.76 1 .4 1 .3 0-2-.5-1-.7-1.97-.6-2.1.1-.08.2-.1.4-.1zm6 16.76c.8-.2 2.8.8 4.3 2.1 2.3 2 2.9 3.2 2.5 4.9-.2 1-.8 1.5-2.1 1.9-1.8.5-1.8.5-3-1.3-1.1-1.8-2.6-7.1-2.1-7.6.1-.1.2-.2.3-.2zm-11.4 2.3c.5 0 .8.4 1.2 1.3.3.8.4 2.2.3 3.2-.2 1-.5 1.9-.8 2-.9.5-2.6-2.4-2.6-4.3 0-1.6.2-2 1.2-2.2.2-.1.4-.1.6-.1zm3.3 1.7c.2 0 .4.5.4 1.1 0 .6-.2 1.4-.5 1.8-.4.6-.5.5-.8-.3-.4-1.2 0-2.7.7-2.7zm7 .5c.4.1 1.5 1.6 1.5 2.1 0 .2-.3.4-.6.4-.6 0-1.5-2.1-1.2-2.6 0-.1.1-.1.1 0zm8.5 16.8c-.1 0-.1 2 0 4.6.1 4 0 4.9-1.2 7.4-.7 1.5-1.3 2.9-1.3 3.1 0 .7 1.4-.4 2.4-1.9 2.3-3.5 2.8-8 1.1-11.3l-1.1-2zm-15.6.7c.2-.1.3.4.5 1.6.2 1.1.1 3-.2 4.2-.3 1.2-.8 2.1-1 2.1-.6 0-.5-6.1.2-7.3.2-.4.4-.7.5-.7zm6.3 26.8c.1-.1.9.4 1.8 1.2 1.5 1.2 1.7 1.3 2.2.5.8-1.2 1.5-.7 2.7 1.8.9 1.6 1.2 1.9 1.8 1.4 1.3-1.1 1 5.6-.3 8.1-2 4-7.1 7.7-11.9 8.4-1.6.2-1.7.2-1.4-.8.4-1.5-.7-1.4-3.5.3-3.8 2.4-3.7 2.3-3.3 1.5.2-.4 1.1-1.6 1.9-2.6 2.4-3 .8-3.9-2.8-1.6-1.2.7-2.2 1.2-2.3 1-.7-.7.8-3.3 3.3-5.9 1.6-1.6 3.3-3.6 3.8-4.3 1.2-1.7 1.4-1.5.9.9-1 4.1 1.9.6 4.8-5.8 1-2.4 2-4.4 2.1-4.6z"
+		 id="path4528"
+		 fill="#9497a2" />
+	  <path
+		 d="M512.05 67.55c-4.18.04-7.67.76-7.67 1.57 0 .22-.92.52-2.05.67-1.13.1-2.4.5-2.84.9-.7.5-.6.7 1 1.6 2 1 2.4 1.9.8 1.9-1.2 0-1.3.6-.3 1.5 1.1.9.4 1.5-1.5 1.5-2.4 0-3.3.4-3.3 1.5 0 .5-.4 1.1-.9 1.4-.7.3-.2.6 1.9 1.1 1.5.3 4 1.3 5.6 2.1 3.6 1.8 5.7 1.9 6.1.3.1-.7.9-1.6 1.8-2.1 1.4-.9 1.5-.9 1.8.1.2.5.5 1 .7 1l5.2.1c4.5.1 5.1.2 8.4 2 1.9 1 3.9 1.8 4.4 1.9.5 0 1.7-.8 2.7-1.9 1.5-1.6 1.7-2.2 1.4-3.6-.4-1.8-.2-1.9 2.8-1.7 1.8.1 2.8-1.2 2-2.8-.6-1.2-.5-1.3 1.4-1.3 2.2 0 2.8-.6 2-2-.9-1.6-3.4-3.1-7.3-4.5-3.2-1.2-4.8-1.4-12.1-1.5-4.6-.2-10.3-.3-12.7-.2zm39.72 8.3c-.38.02.6 1.27 2.93 3.64 2.36 2.4 4.4 4.2 4.5 4.1.46-.5-2.12-3.9-4.13-5.6-1.9-1.6-3-2.3-3.3-2.3zm-64.46 8.4l-1.1.6c-2.8 1.48-5 5.93-6.9 13.86-1.8 7.7-2.1 10.7-1.7 20.8.5 11.9 3.2 34.3 4.6 38 .5 1.2 1.2 1.5 1.7.7.2-.2-.5-4.3-1.5-9-2-9.7-2.6-16.6-2.8-32-.1-8.6 0-11.6.8-15.7 1.6-8.3 1.9-9.1 6.2-15.7l1-1.5zm28.2.68c-1.2.04-2.7.28-3.7.7-2.8 1.2-2.1 1.82 1.8 1.68 3.4-.1 3.6 0 7.1 2.3 2 1.4 3.8 2.5 4.1 2.5 1.2 0 3.2 3.2 4.4 7 2.3 6.8 3.4 12.8 4.1 21.5.4 4.7 1.1 9.6 1.5 11 1 3.2 1 3.4.1-9.9-.3-6-.6-11-.5-11.1.4-.4 1.4 2.8 2.3 7.3.6 3 1 6.7 1 10.7 0 7 .7 11.6 1.9 13.4l.9 1.3 1-1.6c1-1.5 1-1.8.2-9.6-.4-4.4-1.1-9.9-1.5-12.2-1.2-6.9-5.1-17.2-7.1-18.9-.4-.4-1.5-1.8-2.3-3.3-2.6-4.6-6-8.3-8.8-9.9-1.4-.8-2.9-1.7-3.3-2-.4-.4-1.5-.5-2.8-.5zm-15.6 1.93c-1.1-.02-2.2.06-2.4.25-.2.2.9.4 2.4.4s2.6-.1 2.5-.2c-.2-.2-1.3-.3-2.4-.3zm-5.4 1.18c-.1-.1-1 .3-2 .9-2.5 1.56-6.7 6.4-8.2 9.44-1.6 3.45-2.7 10-2 12.58.4 1.45.4 2.2-.1 2.83-1.6 2.2-1.7 3.5-1.4 11.5.3 7.5 1.5 17 2.9 22.2.3 1.2 1.3 3.3 2.1 4.8.8 1.4 1.6 2.6 1.7 2.6.1 0-1-3.5-2.4-7.8l-2.5-7.8.6-12.2c.3-6.7.9-14.3 1.3-16.8 1-6.2 3.8-13.2 7.5-18.2 1.6-2.3 2.8-4.2 2.7-4.3zm-18.4 11.62c-.2 0-.4 1.9-.4 4.2 0 2.8.1 3.68.3 2.66.6-2.04.6-6.87.2-6.86zm-3.7 3.16c-.3-.1-.7.7-1.3 2.2-1.2 2.8-1.2 3.36-.8 7.35.3 2.37.5 5.46.6 6.86l.2 3.24c.1.42.5.6 1 .44 1.2-.3 1.6 1.6 1.6 7 0 2.8.3 4.3 1.3 6.3.7 1.6 1.4 2.7 1.6 2.6.2-.2-.2-3.5-1.7-15.6-.2-2.1-.8-3.9-1.1-4.1-.5-.3-.6-2-.5-7.5.1-5.8.1-8.4-.4-8.5zm72.6 7.08c-.2.03-.4.32-.9.9-.6.87-1.2 1.1-2 .83-1-.32-1.1-.16-1.1 1.6 0 1.06.4 3.88.8 6.26 1.4 7.9 3.1 26.6 3.1 33.3 0 5.6-.1 7-1.1 9.8-1 2.7-1.1 3.4-.6 4.4.4.6.5 1.8.3 2.7-.3 1.8.2 1.9 1.5.5 1.2-1.4 2.8-1.3 5.1.1 2.5 1.5 2.5 3.5 0 4.9-1.5.8-3 .7-4.5-.3-1.7-1.1-2.1-.6-1.4 1.6.2.6.3 1.1.3 1.5 0 .4 0 .8-.2 1.1-.9 1.6-.5 2 1.1 1.2 2.1-1.1 4.4-.2 5.4 2.2.4.9.7 1.8.7 1.9 0 .1-1 1.3-2.3 2.7-1.7 1.8-2.6 2.4-3.3 2.2-.6-.2-1.1 0-1.6.7-.3.5-1 1-1.5 1-.7 0-.9.4-.9 2.5v2.5l1.4-.7c1.4-.8 4.2-.4 5.6.8.9.7.8 3.7-.2 5.5-1.8 3.5-6.4 7.3-8.5 6.9-.3-.1-.6.5-.7 1.4-.2 1.7 1.4 7.9 2 7.9.2 0 .7-.8 1-1.7.8-2.4 2-3.5 3.9-3.5 2.7 0 2.9 1.1 1.4 7.6-1.5 6.4-2.1 6.9-4.7 4l-1.5-1.6.4 1.5c.7 2.9 2.3 6.2 3.8 7.6l1.5 1.4V230c0-4.9 1.5-6.47 4.8-4.96 2 1 3.4 7.6 2.6 12.9-.4 2.7-.9 2.8-3.5 1.1-1.4-1-1.8-1.1-1.8-.5 0 1.2 1.3 3.4 3 4.9.9.8 1.6 1.7 1.6 2.1 0 .36.4-.2.9-1.2 2.2-4.6 8.2-.3 8.2 5.87 0 1-.2 3-.6 4.4-.6 2.5-.5 2.6.7 3.7.8.6 1.6 1.6 1.9 2.3.3.6.8 1.1 1 1.1 1.1-.2 1.6.2 2.1 1.7 1.2 3.5.4 7.6-2.1 10.4-1 1.1-1 1.1.1 3.1 1.1 2.2 1.5 2.5 2.4 1.5.4-.3 1-.4 1.4-.2 1.1.5 1 3.6-.2 7.1-.7 1.9-1 4.2-1 6.7 0 3-.2 4.1-1 5-.5.7-1.1 1.9-1.3 2.7-.2.8-2.4 4.2-4.9 7.5-9 11.9-10.8 15.5-12.1 23.8-1 6.2.6 14.2 3.4 17 .9.9 1 .9 1.7-.9.4-1 .9-1.8 1.2-1.8.2 0 .9-1 1.4-2.3.6-1.3 1.6-3 2.4-3.9.7-.8 1.2-1.6 1.1-1.8-.6-.6-3.7 1.9-4.9 4.1-.7 1.3-1.4 2.4-1.7 2.4-.5 0 0-6.8.5-8.4.7-1.7-1-.5-2 1.4-1 2.1-1.8 2.1-1.8 0 0-2.4 3-7.2 6.9-10.6 3.1-2.8 8.3-9.4 8.3-10.6 0-.2.9-2 1.9-4.1 1.2-2.3 2.2-3.7 2.7-3.7s1.2-.5 1.5-1c.6-.9 1-1 2.6-.7 1 .2 2.5.7 3.3 1.1.8.4 1.6.6 1.8.5.4-.4-.2-2.4-1.4-4.3-.9-1.4-1.3-1.6-3.1-1.6-1.9 0-2.1-.1-1.7-1.1.2-.6.4-2.5.6-4.3.2-2.7.1-3.2-.6-3.2-.5 0-.8-.3-.8-.6 0-1.4 1.5-10 2.2-12.3.7-2.5.7-2.5 2.7-2.4 1.9.1 2.1 0 2.6-1.8.7-2.2.5-2.6-1.7-2.6-1 0-2.5-.5-3.7-1.3-2.4-1.6-3.2-3.9-3-8.8l.1-3.2 3 .3 3 .3-.1-2.1-.2-2.2-2.1.1c-1.7.1-2.3-.1-3.3-1.1-.7-.7-1.7-1.3-2.4-1.3-1.2 0-3.7-2.6-3.8-4-.3-3.4-.1-7.7.5-7.7.36 0 1.9.6 3.5 1.5 3.2 1.6 3.7 1.6 2.9 0-.3-.5-.6-1.5-.6-2.2 0-1-.2-1.2-2-1.2-2.3 0-7.8-2.6-10.3-4.9-1.4-1.3-1.5-1.6-1.3-4.6l.1-3.2 2.68.1 2.7.1-.3-1.6c-.5-2.2-.6-2.3-3.7-2.6-3.2-.3-4.2-.7-5.9-2.8-1.5-1.7-1.9-5.5-.6-6.5.7-.5 3.2-.2 5.5.7 1.2.5 2-1.6 2.1-5.5 0-2.2-.2-3.4-.8-4.3l-.9-1.3v2.6c0 1.9-.3 2.8-1.1 3.5-1 .9-1.1.9-2.9-.1-1.1-.6-2.37-1.9-2.9-2.9l-1-1.9 1-1c.63-.6 1.2-1.3 1.2-1.5 0-.2.7-.6 1.6-.9 2.2-.6 2.4-2.1.7-4.9-1.7-2.8-1.7-4.8-.1-5.4 1.8-.7 2.1-3.4.5-5.2-1.7-1.8-1.6-5.2.2-5.4.6-.1 1.1-.4 1.1-.8 0-.3.4-1.7 1-3 .9-2.1 1-2.72.5-5.4-.5-2.82-2.2-6-3.2-6s-1.7-2.1-1.1-3.24c.3-.6.6-2.4.7-4.1.13-2.3.9-4.7 3.05-9.8 1.6-3.7 2.9-6.8 2.9-7 0-.1.6-1.1 1.3-2.3 1.6-2.5 2.7-9.3 1.9-12.1-.3-1-.8-4.2-1.1-7.2-.9-9-1.5-9.2-3.1-.7-.6 3.3-1.5 6.7-1.9 7.8l-.7 1.84.2-1.8c.2-1 .4-4.2.6-7.16l.4-5.4-1.6-1.75c-.9-.9-1.8-1.6-2-1.4-.2.2-.5 1.6-.6 3-.15 1.4-.4 2.7-.66 2.8-.2.2-.8-.9-1.27-2.3-1-3.1-1.6-3.5-2-1.5-.4 2-1 1.9-1.8-.3-.3-1-.8-1.8-1.1-1.8-.3 0-1-.4-1.5-.9-.5-.4-.76-.6-1-.6zm23.2 10.35l-.4 3.42c-.2 1.88-.2 3.7 0 4.04.8 1.2 1.3-2 .9-4.7l-.4-2.7zm-32.6 17.85c0-.05-.1.47-.1 1.47 0 1.4.1 3.75.3 5.22.2 1.4.5 2.6.8 2.6.5 0 .5-1-.3-6.1-.4-2.2-.6-3.2-.7-3.3zm2.2 31.2c-.4-.14-1.1.78-1.9 2.4-1.2 2.5-3.6 8.7-3.6 9.25.1.9 5.6-10.2 5.6-11.18 0-.3 0-.44-.1-.48zm17.5 1.6c.5-.06 1.2.45 1.3 1.35.1.72-.1 1.14-.5 1.14-.9 0-1.4-.5-1.4-1.7 0-.5.3-.8.6-.9zm2.7 87.98c-.2.04-.3.3-.3.8 0 .47.5 1.38 1.1 2.03 1.5 1.6 2 1.5 2-.3 0-1.2-.3-1.6-1.3-2-.8-.3-1.3-.5-1.5-.4zm25.2 59.24c-.2-.13-.4.65-.6 2.23-.2 1.54-.5 3.25-.7 3.8-.4 1-.3 1 .4.07 1-1.16 1.6-5.06 1-6 0-.05 0-.1-.1-.1zm-1.7 7.82c-.1 0-.8.86-1.6 1.9-1.1 1.57-1.2 1.73-.2.9 1.1-.96 2.4-2.8 1.9-2.8z"
+		 id="path4520"
+		 fill="#525767" />
+	  <path
+		 d="M513.03 67.8c-.94 0-1.83.06-2.42.17l-2.1.4 1.4 1.92c.8 1 1.2 2 1.1 2.2-.2.2-1.6-.1-3.1-.6-2.8-1-3.9-.8-2.9.4.6.6.9 3.1.7 5.3 0 .9-.3 1.1-1.5 1.1-1 0-1.7.4-2.3 1.2-.8 1.2-.8 1.3 1.4 2.5 3.5 2 4.4 2.1 5 .6.6-1.5 3.3-3.3 5-3.4.9 0 1.2.3 1.2 1.2 0 1.2.2 1.2 4.7 1.4 3.4.1 5.4.5 7 1.3 3 1.3 3 1.3 5.1-.4 1-.9 2.2-1.5 2.7-1.5 1.2 0 1.2-.4-.4-2.4-.7-.9-1.3-1.8-1.3-1.9 0-.1 1-.6 2.3-1.1 2.3-.9 2.8-1.6 1.7-2.7-.4-.4-.4-.8.1-1.4.5-.7 1.2-.8 3-.5l2.3.3-1.6-.9c-3.6-2.2-6.8-2.9-13.9-2.9-3.8 0-8.3-.2-9.9-.4-.9-.1-1.9-.2-2.8-.2zm5.88 19.24c-.1 0-.3 0-.4.03-.3.1.6 1.04 2 2.06s3 1.86 3.5 1.87c.9 0 .9-.08-.2-1.23-1.1-1.26-3.6-2.6-4.8-2.73zm-27.7 4.33s-.1.04-.1.1c-1.5 1.22-5.5 7.32-6.5 9.85-.5 1.5-.8 2.95-.6 3.76.3 1.16.5.86 1.7-2.43 1.6-4.4 2.7-6.5 4.8-9.6.8-1.1 1.1-1.8.8-1.68zm40.4 13.05c0 .06-.1.23-.1.53 0 .54.1.84.3.67.2-.17.2-.6.1-.98-.1-.2-.1-.27-.2-.22zm.5 2.04c0 .05-.1.23-.1.52 0 .54.1.84.3.67.2-.17.2-.6.1-.97-.1-.2-.1-.28-.2-.22zm-60.6 1.33c-.8 0-1 2.2-.7 5.8l.4 3.5.4-2.3c.6-3.3.5-7.1 0-7.1zm64.3 1.6c-.1 0 .3 2.5.9 5.5.6 2.9 1.2 9.4 1.4 14.3.3 5.8.7 9.3 1.1 9.8 1.3 1.5 1.7.1 1.3-5.3-.5-7.8-2.1-18.2-3.4-21.6-.6-1.6-1.1-2.9-1.2-2.8zm21 7.5c-.4-.2-1.1.9-1.5 2.5-.7 3-1.7 3.1-2.4.3-.3-1.3-.7-2.4-.9-2.4-.1 0-.5 1.2-.7 2.6-.5 2.9-1.5 3.7-2.1 1.6-.3-1.4-2.9-4.3-3.8-4.3-.2 0-.8.6-1.3 1.3-.8 1.2-.8 1.9-.2 9l1.4 15.6c1 9.2.7 14.7-.8 19.2-.8 2.4-1 3.4-.5 3.8.3.3.6 1 .6 1.4 0 .7.5.9 2.4.9 4.8 0 5.9.2 6.4 1.4.8 1.9-.8 5.4-2.9 6.1-2.1.7-4 .7-4.8 0-.5-.5-.6-.2-.6 1.3 0 1.8 0 1.9 1.6 1.8 2.6-.3 4.2.4 5.2 2.3.8 1.4.9 2 .4 3.4-.5 1.6-5.5 6.5-6.6 6.5-.3 0-.7.4-1 1-.3.5-.9 1-1.3 1s-.7.3-.7.8c0 .6.3.7.9.4 1.4-.6 5.9-.2 6.7.5 2.8 2.7-2.3 12.1-7.9 14.5-1.5.7-2.2 1.3-2.2 2 0 1.5 1.1 5.5 1.4 5.5.2 0 .9-1.2 1.6-2.7 1.6-3.4 2.5-3.9 4.8-2.8 2.1 1 2.3 2 1 7.6-.9 3.8-.7 4.4 1.6 4.5 2.6 0 3.2.5 4 3.7.5 1.7.9 5.4 1 8.1l.1 5 2.7.9c1.6.5 3.1 1.4 3.7 2.2.5.7 1.1 1.3 1.4 1.3.9 0 1-1.1.2-2.1-1-1.5-1-2 .3-2 1.6 0 1-1.1-1.2-2.3-1-.6-2.8-2-3.9-3.2-1.9-2.1-2-2.4-2-5.6v-3l2.7.1c1.8.1 2.5.1 2.7-.3.2-.1.2-.3.2-.6v-.5c0-.6-.5-.8-1.9-.8-2.6 0-6.3-1.8-7.6-3.5-1.2-1.8-1.8-5.8-1.1-7.2.4-.8 1.1-1.1 2.6-1.1 2.8 0 2.7-1.1-.3-2.6-1-.4-2-1.7-2.7-3.2l-1.1-2.4 1.6-2c.9-1.1 2.1-2 2.6-2 1.5 0 1.6-1.2.2-3.8-1.8-3.4-1.7-5.6.2-6.6 1.8-.9 1.8-.9.6-3-1.3-2.1-1.9-6.1-1-7.1.4-.4 1.1-.7 1.6-.7.6 0 1.3-.8 2-2.3 1.4-3.1 1.4-3.3-.7-2.9-1.7.3-1.7.3-2.4-1.8-.6-1.8-.6-2.2.1-2.9.6-.6 1-.6 1.9-.2.9.5 1.1.5 1.1-.3 0-.9-.9-2-2.8-3.6-1.1-1-1.6-3.1-.9-4.4.3-.6.6-2.3.7-3.7.1-1.4.8-4.1 1.5-5.9 1.2-2.8 3-11.4 4.1-18.8.3-1.9-.4-3.1-1-1.5-.2.5-1.2 3.3-2.3 6.3-1.1 2.9-2.5 7.6-3.2 10.4-.7 2.8-1.2 4.6-1.2 4.1 0-1.5 1.9-14.6 3.3-21.7 1-5.5 1.5-10.6 1.3-13.1 0-.4-.1-.6-.3-.6zm-74.3.4c-.3 0-.5 3.5-.6 8.1 0 4.9.1 7.5.4 6.6.7-2.1.9-14.9.3-14.8zm78.4 5.4c0-.1-.1.2-.3.8-.2.7-.4 1.8-.4 2.5 0 1 .1 1.1.5.5.3-.4.5-1.6.5-2.6l-.1-1.3zm-86 9.6c-.1-.1-.2.2-.2.8 0 .7.1 1 .3.6s.2-.9 0-1.3c0-.1 0-.2-.1-.2zm88.6 1.4s-.1 0-.2.1c-.3.3-.7 1.3-.9 2.3-.2 1.2-.2 1.6.2 1.2.3-.3.7-1.3.9-2.3.2-.9.2-1.4.1-1.4zm-79 13.3h-.1c-.1.1.1 1.1.4 2.1s.7 1.7.9 1.6c.2-.2 0-1.1-.3-2.1-.3-.9-.6-1.6-.8-1.6zm-3.1.9v.1c-.2 1 .8 6.8 1.3 7.6.8 1.2.7-1-.2-4.7-.4-1.9-.8-3.2-1-3.1zm70.7 8c.1-.1.1 0 .2.2.2.5.1 1.2 0 1.5-.1.3-.2-.1-.2-.9 0-.6.1-.9.1-.9zm7.5 52.4c-.3 0-.5.3-.5.8 0 .4-.5 1.4-1.1 2.2-.6.8-1 1.9-.8 2.3.2.5.7.8 1.2.8h.1c.4 0 .6-.1.8-.4.6-1 .9-5.7.4-5.7zM543 227.2c-.34-.03-.3.25-.1 1 .2.7.96 2.03 1.7 3l1.34 1.8.3-1.8c.4-2-.2-3.55-1.2-3.55-.4 0-1.1-.17-1.57-.35-.2-.1-.34-.1-.44-.1zm7.03 14.03l1.5 1.6c1.8 2 2.3 2 2.3.4 0-.7-.27-1.2-.6-1.2s-1.2-.1-1.9-.3l-1.3-.3zm18.4.7c-1.1 0-1.1.1.2 1 1.12.9 2.5 1.4 2.5.8 0-.6-1.75-1.8-2.7-1.8zm-4.7 8.6c-.48.1-.7 1.2-.7 3.3 0 1.7.3 2.8 1 3.7.55.8 1 1.6 1 2 0 .4.46.8 1 1 .5.2 1.3 1 1.8 1.8 1.1 2.3 1.9 1.9 1.6-.82l-.3-2.3 2.6.3c1.45.2 3 .4 3.5.7.74.3.9.1.9-1 0-1.3-.1-1.4-2-1.1-1.7.2-2.13.1-2.8-1-.5-.7-1.3-1.2-2-1.2-1.2 0-3.04-1.7-4.65-4.2-.44-.7-.8-1-1.07-.9zm-4.26 9.8c-.2 0-.3 0-.4.1-.2.1-.18.5 0 .8.4.7 1.3.7 1.3.1 0-.47-.56-.94-1-1zm9.5 5c-.2 0-.4 1.4-.5 3.2-.13 1.8-.7 4.3-1.4 5.8s-1.04 3-.84 3.5c.3.8.43.8 1.5-.2 1.44-1.4 2.2-1.4 2.86-.1.8 1.6.6 4.5-.8 8.5-1.1 3-1.3 4.5-1.1 6.6.1 1.5.4 3 .6 3.3.7 1.15 1.2-.4 2-6.12 1-7.3 2.3-13.1 3.1-13.8.9-.7 0-2.3-1.6-3-.9-.3-1.5-1.3-2.4-4-.7-2-1.4-3.6-1.6-3.6zm8.3 9.7c-1.74 0-2.05.7-.68 1.5 1.1.63 1.8.4 2-.67.1-.64-.2-.85-1.4-.85zm-5.4 21.1c-.2 0-.48.25-.94.7-.6.53-1.65 1.05-2.35 1.15-.94.14-1.6.86-2.63 2.9-.73 1.53-3.63 5.76-6.4 9.43-6.6 8.7-8.4 12.1-9.7 18.1-.6 2.7-1.1 5.4-1.1 6 0 .7.17 1.1.4 1 .2-.1 1.75-2.9 3.43-6.2 2.34-4.6 3.92-7 7.03-10.4 4.2-4.5 5.9-6.9 5.9-8.1 0-.3.9-2.1 1.9-3.9 1.6-2.9 1.9-3.2 2.5-2.4.9 1.2 1.9.4 1.6-1.3-.1-.7.1-2.3.5-3.5.4-1.2.6-2.5.4-2.9-.2-.3-.3-.5-.5-.4zm3.84 6.85c-.7 0-.6 1.4.1 1.7.4.12.8.15.9.06.4-.3-.4-1.75-.9-1.75zm-25.8 38.37s-.1 0-.1.04c-.4.2 0 1.8.8 3.9.7 1.5 1.2.9.8-.8-.5-2.2-.9-3.2-1.3-3.2z"
+		 id="path4516"
+		 fill="#474e62" />
+	</g>
   </g>
 </svg>
diff --git a/resources/vector/hair/trimmed back.svg b/resources/vector/hair/trimmed back.svg
index 16774a62f59a1ba225ca220a7fee83c738dbaece..b9d210fbc8a38f3dc4315602615670524074c22f 100644
--- a/resources/vector/hair/trimmed back.svg	
+++ b/resources/vector/hair/trimmed back.svg	
@@ -16,48 +16,48 @@
    version="1.1"
    sodipodi:docname="trimmed back.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1621"
-     inkscape:window-height="1259"
-     id="namedview11"
-     showgrid="false"
-     inkscape:zoom="5.3400704"
-     inkscape:cx="508.28742"
-     inkscape:cy="864.70806"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="Layer_1" /><metadata
-     id="metadata12"><rdf:RDF><cc:Work
-         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
-     id="defs10" /><style
-     id="style2"
-     type="text/css">
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1621"
+	 inkscape:window-height="1259"
+	 id="namedview11"
+	 showgrid="false"
+	 inkscape:zoom="5.3400704"
+	 inkscape:cx="508.28742"
+	 inkscape:cy="864.70806"
+	 inkscape:window-x="0"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="Layer_1" /><metadata
+	 id="metadata12"><rdf:RDF><cc:Work
+		 rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+		   rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
+	 id="defs10" /><style
+	 id="style2"
+	 type="text/css">
 	.st0{fill:#010101;}
 	.st1{fill:#F6E0E8;}
 </style><style
-     type="text/css"
-     id="style4546">
+	 type="text/css"
+	 id="style4546">
 	.st0{fill:#F6E0E8;}
 </style><g
-     id="g4566"
-     transform="matrix(1.0199917,0,0,0.73573,-9.3747709,16.943636)"><g
-       transform="matrix(0.77472067,0,0,0.77472067,111.20814,27.648761)"
-       id="layer2"
-       style="stroke-linecap:round"><path
-         d="m 516.8,47.07 -8.72,1.46 -8.32,4.78 -8.1,6.7 -7.3,7.5 c 0,0 -6.44,8.1 -6.44,9 0,0.9 -6.86,11.7 -6.86,11.7 l -4.16,11 -2.5,6.9 -0.83,6.9 -1.45,14.6 c 0,0 1.24,10.8 1.24,11.9 0,1.1 -0.4,10.8 0,11.7 0.42,0.8 1.87,7.7 2.08,8.5 0.2,0.9 1.46,13.7 1.46,13.7 l 5.2,8.5 5.4,4.8 7.08,5.4 7.48,7.3 2.8,3.6 0.96,4.7 1.36,4.2 0.75,3.6 -0.34,4.2 -0.9,2.6 -1.2,3.2 -2.8,6.4 -3.7,7.9 3.9,-5.5 -0.9,5.1 -0.8,7 3.7,-5.2 2.7,-5.9 0.1,8.4 4.5,-7 1.4,-5.9 v 5.9 l 0.9,7 1,-5.9 1.5,-5.8 2.6,-4.6 0.1,6.9 -0.3,6 2.8,-6.1 2.1,-8.1 0.2,8.5 -0.1,4.1 2.6,-6.3 1.5,10 1.3,-4.2 0.9,4.3 2,6.2 1.8,-9.3 2.7,-8.3 0.2,4.5 1.7,4.6 3.3,-7.5 1.9,7.8 4,-6.8 v 6.2 l 0.5,3.7 3.2,-4.6 1.3,5.1 1.4,5.1 1.7,-9 2.3,-7.8 0.2,5.3 2.3,-7.1 2.2,6.1 1.5,-5.5 1.4,-6.2 0.3,5.7 2.1,-7.8 1.7,-6.2 0.1,5 2,-3.6 2.3,-6.2 2,-5.4 7,-18 4.6,-11.3 -1,8.7 5.7,-13.4 6.2,-13.6 2,-15.3 2.4,-28.8 -3.2,-13.5 -6.5,-16.5 -4.4,-8.8 -7.6,-8 -9.4,-11.2 -18.7,-7.5 -11.8,-2.1 h -8.5 z"
-         id="path5214"
-         style="opacity:0.98999999;fill:#474e62;stroke-width:0.1"
-         inkscape:connector-curvature="0" /><path
-         d="m 576.35821,72.174527 1.66,11.46 0.2,16.22 v 20.800003 l -0.4,7.9 -1.88,5.4 -10.4,29.96 -2.5,11.85 -4.57,7.6 c 0,0 -6.03,3.7 -6.03,5 0,1.2 -4.16,7 -4.16,7 l -8.1,8.1 -3.96,5 -2.7,-7.7 -6.87,2.7 -3.9,-7.9 1.3,6.2 -5.4,-12.9 -5.4,7 -5.2,-6.5 -5.8,-7.1 -4.8,-4.8 -7.7,-18.7 -5.6,-11.9 -7.5,-25.2 0.2,-18.5 -3.9,-13.900003 -0.6,-4 -1.7,2.7 -4.2,11.1 -2.5,6.900003 -0.8,6.8 -1.4,14.5 c 0,0 1.2,10.8 1.2,11.8 0,1 -0.4,10.8 0,11.6 0.5,0.9 1.9,7.7 2.1,8.6 0.2,0.8 1.5,13.7 1.5,13.7 l 5.2,8.5 5.4,4.8 7.1,5.4 3.3908,7.54172 3.44526,3.38701 1.30335,4.46857 0.14967,4.08753 0.15571,3.57345 0.40879,4.23458 -0.58549,2.65071 -0.14794,3.24979 -1.11059,6.38241 -2.40956,7.92423 4,-5.5 -0.8,5.1 -0.8,6.9 3.8,-5.2 2.7,-5.9 0.1,8.4 4.5,-7 1.5,-5.9 v 6 l 0.9,6.9 1.1,-6 1.6,-5.8 2.6,-4.7 0.1,6.9 -0.3,6 2.8,-6.1 2.1,-8.1 0.2,8.5 -0.1,4 2.6,-6.4 1.6,10 1.3,-4.2 0.9,4.4 1.9,6.23 1.9,-9.35 2.7,-8.3 0.2,4.6 1.7,4.6 3.3,-7.5 2,7.8 4,-6.8 v 6.1 l 0.5,3.8 3.2,-4.6 1.4,5.1 1.4,5.1 1.7,-9 2.3,-7.8 0.2,5.3 2.3,-7 2.2,6 1.6,-5.5 1.4,-6.2 0.3,5.7 2.2,-7.86 1.7,-6.2 0.1,5 2.1,-3.6 2.4,-6.2 2,-5.4 7,-18 4.6,-11.3 -1.1,8.66 5.7,-13.4 6.2,-13.6 2,-15.3 2.4,-28.8 -3.31,-13.37 -6.4,-16.500003 -4.4,-8.8 z"
-         id="path5216"
-         style="opacity:0.98999999;fill:#595f6d;stroke-width:0.1"
-         inkscape:connector-curvature="0" /></g></g></svg>
\ No newline at end of file
+	 id="g4566"
+	 transform="matrix(1.0199917,0,0,0.73573,-9.3747709,16.943636)"><g
+	   transform="matrix(0.77472067,0,0,0.77472067,111.20814,27.648761)"
+	   id="layer2"
+	   style="stroke-linecap:round"><path
+		 d="m 516.8,47.07 -8.72,1.46 -8.32,4.78 -8.1,6.7 -7.3,7.5 c 0,0 -6.44,8.1 -6.44,9 0,0.9 -6.86,11.7 -6.86,11.7 l -4.16,11 -2.5,6.9 -0.83,6.9 -1.45,14.6 c 0,0 1.24,10.8 1.24,11.9 0,1.1 -0.4,10.8 0,11.7 0.42,0.8 1.87,7.7 2.08,8.5 0.2,0.9 1.46,13.7 1.46,13.7 l 5.2,8.5 5.4,4.8 7.08,5.4 7.48,7.3 2.8,3.6 0.96,4.7 1.36,4.2 0.75,3.6 -0.34,4.2 -0.9,2.6 -1.2,3.2 -2.8,6.4 -3.7,7.9 3.9,-5.5 -0.9,5.1 -0.8,7 3.7,-5.2 2.7,-5.9 0.1,8.4 4.5,-7 1.4,-5.9 v 5.9 l 0.9,7 1,-5.9 1.5,-5.8 2.6,-4.6 0.1,6.9 -0.3,6 2.8,-6.1 2.1,-8.1 0.2,8.5 -0.1,4.1 2.6,-6.3 1.5,10 1.3,-4.2 0.9,4.3 2,6.2 1.8,-9.3 2.7,-8.3 0.2,4.5 1.7,4.6 3.3,-7.5 1.9,7.8 4,-6.8 v 6.2 l 0.5,3.7 3.2,-4.6 1.3,5.1 1.4,5.1 1.7,-9 2.3,-7.8 0.2,5.3 2.3,-7.1 2.2,6.1 1.5,-5.5 1.4,-6.2 0.3,5.7 2.1,-7.8 1.7,-6.2 0.1,5 2,-3.6 2.3,-6.2 2,-5.4 7,-18 4.6,-11.3 -1,8.7 5.7,-13.4 6.2,-13.6 2,-15.3 2.4,-28.8 -3.2,-13.5 -6.5,-16.5 -4.4,-8.8 -7.6,-8 -9.4,-11.2 -18.7,-7.5 -11.8,-2.1 h -8.5 z"
+		 id="path5214"
+		 style="opacity:0.98999999;fill:#474e62;stroke-width:0.1"
+		 inkscape:connector-curvature="0" /><path
+		 d="m 576.35821,72.174527 1.66,11.46 0.2,16.22 v 20.800003 l -0.4,7.9 -1.88,5.4 -10.4,29.96 -2.5,11.85 -4.57,7.6 c 0,0 -6.03,3.7 -6.03,5 0,1.2 -4.16,7 -4.16,7 l -8.1,8.1 -3.96,5 -2.7,-7.7 -6.87,2.7 -3.9,-7.9 1.3,6.2 -5.4,-12.9 -5.4,7 -5.2,-6.5 -5.8,-7.1 -4.8,-4.8 -7.7,-18.7 -5.6,-11.9 -7.5,-25.2 0.2,-18.5 -3.9,-13.900003 -0.6,-4 -1.7,2.7 -4.2,11.1 -2.5,6.900003 -0.8,6.8 -1.4,14.5 c 0,0 1.2,10.8 1.2,11.8 0,1 -0.4,10.8 0,11.6 0.5,0.9 1.9,7.7 2.1,8.6 0.2,0.8 1.5,13.7 1.5,13.7 l 5.2,8.5 5.4,4.8 7.1,5.4 3.3908,7.54172 3.44526,3.38701 1.30335,4.46857 0.14967,4.08753 0.15571,3.57345 0.40879,4.23458 -0.58549,2.65071 -0.14794,3.24979 -1.11059,6.38241 -2.40956,7.92423 4,-5.5 -0.8,5.1 -0.8,6.9 3.8,-5.2 2.7,-5.9 0.1,8.4 4.5,-7 1.5,-5.9 v 6 l 0.9,6.9 1.1,-6 1.6,-5.8 2.6,-4.7 0.1,6.9 -0.3,6 2.8,-6.1 2.1,-8.1 0.2,8.5 -0.1,4 2.6,-6.4 1.6,10 1.3,-4.2 0.9,4.4 1.9,6.23 1.9,-9.35 2.7,-8.3 0.2,4.6 1.7,4.6 3.3,-7.5 2,7.8 4,-6.8 v 6.1 l 0.5,3.8 3.2,-4.6 1.4,5.1 1.4,5.1 1.7,-9 2.3,-7.8 0.2,5.3 2.3,-7 2.2,6 1.6,-5.5 1.4,-6.2 0.3,5.7 2.2,-7.86 1.7,-6.2 0.1,5 2.1,-3.6 2.4,-6.2 2,-5.4 7,-18 4.6,-11.3 -1.1,8.66 5.7,-13.4 6.2,-13.6 2,-15.3 2.4,-28.8 -3.31,-13.37 -6.4,-16.500003 -4.4,-8.8 z"
+		 id="path5216"
+		 style="opacity:0.98999999;fill:#595f6d;stroke-width:0.1"
+		 inkscape:connector-curvature="0" /></g></g></svg>
\ No newline at end of file
diff --git a/resources/vector/hair/trimmed front.svg b/resources/vector/hair/trimmed front.svg
index f618381397efd134647c70ba86c6bcdf0dc6376c..7bba59fc4ca9f06706a91215b3f9122c2f28126b 100644
--- a/resources/vector/hair/trimmed front.svg	
+++ b/resources/vector/hair/trimmed front.svg	
@@ -13,69 +13,69 @@
    sodipodi:docname="trimmed front.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
   <metadata
-     id="metadata15">
-    <rdf:RDF>
-      <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>
+	 id="metadata15">
+	<rdf:RDF>
+	  <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="defs13" />
+	 id="defs13" />
   <sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1623"
-     inkscape:window-height="1269"
-     id="namedview11"
-     showgrid="false"
-     inkscape:zoom="5.3400704"
-     inkscape:cx="519.33886"
-     inkscape:cy="871.83642"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="Layer_1" />
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1623"
+	 inkscape:window-height="1269"
+	 id="namedview11"
+	 showgrid="false"
+	 inkscape:zoom="5.3400704"
+	 inkscape:cx="519.33886"
+	 inkscape:cy="871.83642"
+	 inkscape:window-x="0"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="Layer_1" />
   <style
-     id="style2">.st0{fill:#010101;} .st1{fill:#F6E0E8;}</style>
+	 id="style2">.st0{fill:#010101;} .st1{fill:#F6E0E8;}</style>
   <style
-     id="style4546">.st0{fill:#F6E0E8;}</style>
+	 id="style4546">.st0{fill:#F6E0E8;}</style>
   <g
-     id="g4566"
-     transform="matrix(0.95598021,0,0,0.71322026,21.262716,17.169503)">
-    <g
-       id="layer1"
-       style="stroke-linecap:round">
-      <path
-         id="path5225"
-         d="m 524.08,60.17 -2.86,0.16 -2.5,0.5 -1.9,0.7 -2.73,-0.32 -3.6,0.4 -3,0.6 -2.2,0.5 -1.6,0.7 -2.4,0.9 -1.7,0.9 -1.7,0.6 -2.3,1.8 -2.5,1.9 -2.2,1.9 -2.4,2.1 -2.1,1.8 -2.2,2.4 -1.8,2.2 -3,3.5 -2.39,3.59 -1,2 -1.64,2.6 -1.03,1.9 -1.3,3.9 -0.86,2.64 -0.94,3.3 -0.96,3.17 -0.6,2.8 -0.56,3.4 -0.6,4 -0.4,3.1 -0.4,4.1 -0.4,5 -0.3,4.9 0.2,3 0.2,6.8 0.3,3.2 0.3,2.7 0.7,5.8 0.7,5.2 0.8,4.4 1.2,5.3 1.4,4.5 1.2,3 1.5,3.1 1.5,2.9 1.4,1.8 2.5,1.7 1.4,1.3 1.4,0.9 1,0.7 -1.9,-3 -2.3,-3.8 -1.1,-2.8 -1,-3.8 -0.4,-2.8 -0.5,-3.3 v -0.5 l 1.9,3 2.7,3.5 2.1,1.8 1.4,4.9 1.3,3.7 0.8,3.5 0.5,3.4 0.1,1.2 -1.3,3.9 -1.2,2.9 -2.4,1.5 -2.3,0.9 -2.1,0.7 -0.9,0.9 0.7,0.5 0.8,0.2 0.6,0.4 0.9,0.1 0.9,0.2 0.7,0.1 0.2,0.7 0.6,0.5 0.8,0.7 1,0.7 2.1,0.7 h 1.6 l 1.4,-0.3 1.7,-0.7 1.1,-1.2 0.9,-1.8 1,-1.9 0.6,-2.3 v -1.8 l 0.1,-2 0.9,-2.3 c -1.00665,-17.19308 -1.82701,-20.90677 -6.3,-34.71 l -1.5,-2.95 -1.1,-3.13 -1.2,-3.43 -0.9,-3.1 2.1,4.1 1.6,1.6 2.4,2.4 2.3,1.8 1.2,0.7 1.5,0.6 -2.1,-2.4 -3,-3.7 -1.5,-3 -1.2,-4 -1,-3.5 -0.8,-3.5 -0.6,-3.7 -0.5,-3.5 -0.2,-2 0.8,-0.7 1.7,-1.3 2,-1.9 2.4,-3.3 1.9,-2.9 1.9,-2.8 1.2,-2.2 1.4,-2.6 1.6,-3.5 1,-2.6 0.7,-2.3 1.3,-3.2 -0.2,4.4 -0.1,4.5 0.2,3.3 0.3,3.3 0.6,3.5 0.5,3.1 0.6,2.3 0.7,2.7 0.9,2.2 1,1.7 1.3,1.4 1.8,1.8 1.3,1.2 1.5,0.8 1.6,0.6 -0.9,-2.1 -0.7,-2.4 -0.4,-2.2 -0.1,-1.7 1.1,2.5 1,2.2 0.9,1.1 1.5,1.1 -0.3,-1.8 0.8,1.3 -0.6,-3.8 -0.4,-2.5 0.3,-3.7 0.3,-5.2 0.6,-4.5 0.6,-2.8 1,-3.7 0.7,-2.2 0.9,-3 0.9,-2.7 0.8,-2.6 0.9,4 1,3.4 1.1,3.3 1.3,3.9 1.6,4.2 1,2.7 1.2,2.5 1.4,2.4 1.3,2 2,2.3 1.9,2.2 0.5,0.5 -1.1,-2.9 -0.9,-2.6 1.6,2.5 1.4,2.5 2.3,3 2.1,2.1 0.9,0.8 -0.5,3.1 -0.9,3.2 -1.2,2.7 -1.4,1.7 -2.1,2.5 -1.8,1.9 -2.1,2 -1.9,1.5 -2.7,2 -1.7,0.8 1.5,0.1 2.4,-0.8 3.2,-1.5 3.3,-1.9 2.6,-1.3 -1.4,2.3 -2,3.8 -1.6,3.8 -0.9,1.9 -1.1,3.1 -0.7,2.9 -0.5,2.5 0.1,3 0.5,5.7 0.5,4.1 0.9,3.3 0.6,1.9 1,1.6 0.8,0.8 1.1,0.7 1.2,0.5 1.3,0.5 1.1,0.3 1.7,-0.2 1.2,-0.4 1.5,-0.3 1.3,-0.4 1,-0.6 0.8,-0.6 1,-1.2 0.4,-0.8 0.8,-1.5 0.7,-1.5 0.5,-1.5 0.5,-1.6 0.6,-2.3 1.6,-1 2.1,-0.9 1.9,-1.2 1.5,-1.1 1.3,-0.9 1.7,-1.4 1,-0.7 1.2,-1.5 1.2,-1.6 0.7,-1.5 0.6,-1.2 0.6,-1.8 0.6,-1.6 0.5,-1.9 0.3,-1.4 -0.2,3.1 -0.3,2.7 -0.5,2.2 -0.6,2 -1.2,2 -1.2,2 -0.4,0.8 1.3,-0.8 1.9,-1.8 1.4,-1.5 1.4,-2.4 1.2,-2.2 0.9,-3.2 0.8,-3.5 0.5,-3.1 0.2,-2.3 0.3,-3 0.3,2.6 0.2,4.3 0.2,3 0.1,4.5 -0.1,2.4 -0.2,2.5 -0.8,3.1 -0.6,2.1 -0.8,1.7 -1,1.6 -0.04,0.4 0.6,-0.3 -0.2,0.8 1,-0.5 1.3,-1.4 1.6,-2.4 1.3,-2.6 0.9,-3.1 0.7,-3.6 0.2,-3.6 v -2 l -0.2,-5.3 -0.4,-4.1 -0.3,-4.4 -0.5,-4.3 -0.5,-5.1 -0.4,-4.2 -0.5,-4.4 -0.96,-4.98 -0.2,-3.5 v -3 l -0.2,-4.06 -0.6,-2.7 -0.9,-4.6 -0.3,-3 -1.4,-4.8 -0.6,-3.7 -1.1,-2.5 -1.4,-4.58 -0.9,-3.2 -1.2,-2.9 -1.7,-3.3 -2.1,-3.7 -2,-2.8 -3,-2.9 -3.4,-2.9 -3.4,-2.5 -4.04,-2.5 -3.8,-2 -4.1,-1.6 -4.4,-1 -3.8,-0.5 -3.7,-0.3 z m -35.3,49.8 -0.66,4.1 -1.26,5 -1.72,5.1 -1.75,3.4 -0.6,0.8 0.2,-4.18 0.9,-3.3 1.4,-4.2 1.1,-3.3 z m 76.78,54.6 -1.3,3.5 -1.28,3.2 -1.8,3.6 -2.23,1.62 -2.97,1.1 2.42,-2.9 2.74,-3.3 2.12,-3.1 z M 535.4,184 l 0.23,-4.7 0.8,-5.7 2.06,-5.35 1.1,-3.93 -0.2,3.5 -1.1,4.62 0.4,2.27 0.9,-2.2 0.6,-0.1 0.6,-2 1.2,1.9 1.6,-4.5 2.8,-5.2 1.3,-2.8 -0.1,1.8 1.1,-1.6 1.6,-3.9 1.6,-4.1 1.1,-2.3 -0.3,2 -0.9,3 -1.9,5.4 -2.2,4.6 -1.7,2.8 -1,3 -1.3,7.2 0.2,3.7 1.1,-4.7 -0.2,3.6 0.5,2.5 1.4,-2.7 v 1.5 l 1.3,-3.8 1.2,-2.2 -1,4.4 -0.6,3.1 -0.5,2.4 -0.7,2.2 -0.9,0.9 -0.7,1.4 -0.6,1.2 -1,1 -1.4,0.7 -2.2,0.1 -1.9,-0.8 -1,-1.5 -0.9,-1.6 -0.8,-1 -0.8,-1.6 z m -44.9,22.18 -0.9,1.3 -1,0.95 -1.25,0.6 -1.4,0.08 -1.82,-0.3 -0.95,-0.4 -0.52,-0.5 1.6,0.4 h 3.24 l 0.94,-0.3 1.17,-0.8 z"
-         inkscape:connector-curvature="0"
-         style="fill:#9497a2;stroke-width:0.16"
-         sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
-      <path
-         d="m 528.7,60.47 c 0,0 -0.04,0 -0.04,0.03 l 0.66,0.8 0.6,0.45 c 0.2,0.07 0.58,0.37 0.87,0.6 1.8,1.23 2.2,1.52 2.3,1.67 0.1,0.07 0.3,0.22 0.5,0.3 l 0.8,0.58 0.4,0.44 0.2,0.07 c 0.1,0.1 0.1,0.1 0.1,0.2 -0.2,0.2 -0.3,0.2 -0.3,0 0,0 -0.2,-0.1 -0.5,-0.1 -0.4,0 -0.5,0 -0.5,0.1 0,0.1 -0.1,0.2 -0.2,0.2 -0.1,0 -0.2,0.1 -0.3,0.2 -0.1,0.2 -0.3,0.2 -0.3,0.2 -0.1,0 -0.1,0.2 -0.1,0.3 0,0.2 0,0.4 -0.1,0.4 l -0.2,0.3 c -0.1,0.2 0,0.3 0,0.3 0.1,0 0.2,0.1 0.2,0.2 0,0.1 0,0.2 0.1,0.3 0.1,0.1 0.1,0.2 0.2,0.4 l 0.2,0.3 c 0.1,0.2 0.5,1.1 0.4,1.1 -0.1,0.1 -0.2,-0.1 -0.6,-0.6 -0.6,-0.8 -0.8,-0.8 -0.4,-0.2 0.3,0.7 1.7,3.4 1.7,3.5 0,0.3 -0.5,0.2 -0.6,-0.3 -0.2,-0.3 -1,-1.5 -1.6,-2.1 -1.3,-1.2 -3.6,-2.9 -5.3,-3.8 -1.4,-0.7 -3.1,-1.2 -4.5,-1.4 -0.3,0 -0.8,-0.1 -1.1,-0.2 -1,-0.3 -3.3,-0.7 -4.1,-0.7 -0.5,0 -0.8,0 -1,0.1 -0.5,0.2 -1.2,0.5 -1.4,0.5 0,0 -0.2,0 -0.2,0.1 -0.1,0 -0.1,0.1 -0.2,0.1 -0.4,0 -1,0.2 -1.1,0.3 -0.2,0.1 -0.2,0.1 -0.4,0.1 -0.1,0 -0.3,0.1 -0.5,0.3 -0.2,0.1 -0.5,0.2 -0.6,0.2 -0.2,0 -0.4,0.1 -0.5,0.2 -0.2,0.1 -0.4,0.2 -0.5,0.2 -0.1,0 -0.2,0.1 -0.2,0.2 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.1,0 -0.3,0.1 -0.3,0.2 0,0.1 -0.2,0.2 -0.3,0.2 -0.2,0 -0.3,0.2 -0.4,0.3 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0.1 -0.3,0.1 -0.3,0.2 -0.2,0 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0.1 -0.3,0.2 -0.1,0.2 -0.2,0.2 -0.3,0.2 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0.2 -0.1,0.2 -0.2,0.2 -0.1,0 -0.2,0.1 -0.4,0.3 -0.2,0.1 -0.2,0.2 -0.3,0.2 -0.1,0 -0.2,0.1 -0.2,0.2 -0.1,0.1 -0.1,0.2 -0.2,0.2 -0.4,0 -0.2,-0.7 0.1,-0.8 l 0.2,-0.2 0.1,-0.1 0.2,-0.2 c 0.1,-0.2 0.1,-0.2 0.2,-0.1 0,0.1 0,0.1 0,0 l 0.1,-0.3 c 0.1,-0.2 -0.2,-0.1 -0.6,0.2 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.1,0 -0.1,0 -0.1,0.1 l -0.4,0.2 c -0.4,0.2 -0.4,0.2 -0.6,0 -0.2,-0.1 -0.5,-0.1 -1.1,-0.1 -0.5,0 -1,0.1 -1.3,0.1 -0.9,0.2 -2.3,0.6 -2.4,0.8 -0.1,0 -0.5,0.1 -0.8,0 -0.8,0 -1.5,0.1 -1.6,0.2 -0.1,0.1 -0.4,0.1 -0.6,0.1 h -0.5 c -0.1,0.1 -0.3,0.1 -0.5,0.1 -0.3,0 -0.6,0.1 -1,0.3 -0.8,0.4 -1.3,0.7 -1.4,0.8 -0.1,0.1 -0.1,0.2 0.1,0.1 0.1,-0.1 0.3,-0.1 0.5,-0.3 0.5,-0.3 1.3,-0.4 1.8,-0.3 0.3,0.1 0.5,0.1 0.9,0 h 0.8 c 0.2,0 0.6,-0.1 0.9,-0.2 l 1.2,-0.3 c 0.3,-0.1 0.8,-0.2 1.1,-0.3 0.6,-0.2 1.3,-0.2 1.3,-0.2 0,0 0.1,0.1 0.2,0.1 0.1,0 0.2,0 0.3,0.2 0,0.2 0,0.3 0.3,0.2 0.3,-0.1 0.4,0.1 0.1,0.1 -0.3,0.1 -0.4,0.3 -0.1,0.4 0.1,0 0.1,0.1 0.1,0.3 0,0.1 0,0.1 0.1,0.1 v 0.1 c 0,0.2 0,0.3 0.1,0.3 V 71 c 0,-0.1 0.1,-0.17 0.3,-0.17 0.3,0 0.3,0 1.2,-0.6 l 0.8,-0.5 0.2,-0.1 c 0,-0.1 0.1,-0.1 0.1,-0.1 0,0 0.2,0 0.3,-0.2 0.1,0 0.2,-0.2 0.3,-0.2 0.1,0 0.2,-0.1 0.3,-0.2 0,0 0.2,-0.1 0.3,-0.1 0,0 0.2,-0.1 0.3,-0.2 0,-0.15 0.1,-0.2 0.2,-0.2 0.1,0 0.2,-0.1 0.3,-0.2 0,-0.1 0.2,-0.2 0.3,-0.2 0,0 0.2,-0.2 0.3,-0.2 0,-0.1 0.1,-0.2 0.2,-0.2 0.1,0 0.2,0 0.3,-0.1 0,-0.1 0.1,-0.1 0.3,-0.1 0,0 0.2,-0.1 0.3,-0.2 0,-0.1 0.2,-0.2 0.3,-0.2 0,0.1 0.1,0 0.2,-0.1 0,-0.06 0.2,-0.1 0.3,-0.1 0,0 0.2,0 0.3,-0.1 0.5,-0.3 2,-0.9 2.3,-0.96 0.4,-0.1 0.9,-0.2 1.7,-0.5 0.3,-0.15 0.8,-0.3 0.9,-0.3 0.2,-0.1 0.5,-0.1 0.6,-0.14 0.3,-0.1 0.3,-0.1 2.6,0.33 3.5,0.8 4.5,1 5.8,1.6 1.5,0.6 2.9,1.4 4.5,2.7 0.7,0.5 2.1,1.9 2.1,2 l 0.3,0.4 c 0.1,0.1 0.4,0.6 0.7,0.9 0.5,0.8 0.7,1 0.9,1 0.2,0 0.2,-0.1 0.2,-0.4 0,-0.3 0,-0.5 -0.5,-1.3 l -0.2,-0.5 c 0,-0.1 0,-0.1 -0.1,-0.1 0,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.1 0.1,0 l 0.6,0.9 c 0.4,0.6 0.9,1.5 1.9,3.4 0.3,0.5 0.5,1 0.5,1 l 0.3,0.6 c 0.7,1.2 1.1,2 1.3,2.3 l 0.1,0.2 0.3,0.5 c 0.3,0.5 1,1.6 1.4,2.34 l 0.9,1.5 0.8,1.1 c -0.6,-0.8 -1.1,-1.7 -1.7,-2.8 -0.5,-0.9 -1.1,-1.7 -1.1,-1.7 0,0 0.8,1.97 2,4.3 3.7,7.4 5.1,10.5 6.1,13.4 0.1,0.5 0.3,1 0.3,1.07 0.1,0 0.2,0.3 0.2,0.5 0,0.2 0.2,0.8 0.4,1.3 l 0.4,1.5 0.3,1.3 c 0.6,2 1.1,5.6 1.2,7.9 0,0.9 0.1,2.1 0.2,2.6 l 0.2,1.1 c 0.1,0.5 0,-1.7 -0.1,-4.94 V 107 c 0.1,-0.34 0.1,-0.34 0.2,0.1 0.1,0.8 0.6,6.3 0.8,9.96 0.1,1.7 0.3,4.1 0.5,4.7 0.1,0.3 0.2,0.4 0.4,0.5 0.3,0.1 0.6,0 0.6,-0.2 0,-0.1 0.1,-0.3 0.2,-0.55 0.5,-1 0.3,-10.5 -0.3,-13.5 -0.2,-0.6 -0.1,-0.7 0.2,-0.6 0.4,0.3 0.6,1.2 0.6,2.2 v 0.7 c 0.1,-0.1 0.1,-0.2 0.2,-0.2 h 0.2 c 0.1,0 0.1,-2.5 -0.1,-4.6 -0.1,-1.7 0.1,-0.8 0.6,1.9 0.1,0.8 0.4,3.3 0.5,5.2 0.1,1.6 0.1,1.9 0.4,3.2 0.3,1.1 0.5,2.8 0.6,4.4 0.1,1.7 0.5,3.5 1,4.9 l 0.1,0.3 0.2,0.5 c 0.1,0.5 0.4,0.4 0.5,-0.1 0.1,-0.4 0.3,-0.8 0.6,-0.9 0.2,0 0.3,-0.1 0.3,-0.2 0,-0.1 0.1,0 0.2,0 0.1,0 0.2,0 0.2,0.1 0,0.2 0.5,0.1 0.7,-0.2 0.3,-0.2 0.8,-1.6 1,-2.8 0.2,-0.9 0.4,-2.6 0.4,-2.9 0,0 -0.18,-0.6 -0.2,-1.1 l -0.4,-2.8 c -0.5,-2.9 -0.5,-3.4 -0.4,-3.7 0.2,-0.2 0.4,-0.1 0.4,0.3 0.1,0.2 0.12,0.7 0.3,1.3 0.33,1.5 1.1,6.1 1.3,8.1 l 0.13,1.3 c 0.1,0.1 1.1,0.1 4.7,0.1 h 4.7 l -0.1,-0.5 -0.2,-1.5 c -0.4,-2.6 -0.6,-4.2 -0.8,-5.9 -0.2,-2.4 -0.4,-3.5 -0.3,-2.1 v 1 l -0.5,-1.3 c -0.3,-0.7 -0.7,-1.4 -0.74,-1.6 -0.1,-0.1 -0.3,-0.4 -0.3,-0.6 -0.2,-0.3 -0.9,-1.1 -1.3,-1.4 -0.3,-0.1 -1,-0.1 -1,0 0,0.1 -0.1,0.3 -0.2,0.3 -0.4,0.4 -0.5,1.4 -0.6,3.6 0,1.1 0.1,2.1 0.1,2.3 0.05,0.2 0.05,0.3 0,0.3 -0.1,0 -0.2,-0.3 -0.2,-0.5 l -0.3,-1 -0.2,-0.7 v 0.8 c 0,0.4 0.1,1.1 0.1,1.7 0.3,1.7 0.2,1.6 -0.6,-0.3 -0.5,-1.3 -1.4,-4.2 -2,-6.3 -1.2,-3.9 -3.5,-10.8 -4.7,-14.3 l -0.2,-0.6 -0.1,-0.3 0.1,0.3 1,1.6 c 0.9,1.5 1.73,2.8 1.73,2.5 0,-0.1 -0.1,-0.6 -0.2,-1.1 -0.7,-2.8 -1,-4.1 -1.1,-5.6 0,-1.3 0,-1.6 0.15,-2 0.1,-0.5 0.2,-0.5 0.3,-0.4 0.9,0.8 0.9,0.8 1.5,1.1 0.1,0.2 0.33,0.2 0.33,0.2 l -0.4,-1 c -0.3,-0.6 -0.5,-1 -0.5,-1.1 0,-0.2 0.6,0.9 2.1,3.9 0.8,1.6 1.5,2.9 1.5,2.9 0,-0.2 -2.6,-5.6 -3.2,-6.6 -0.3,-0.5 -0.7,-1.2 -0.8,-1.6 -0.2,-0.3 -0.5,-0.8 -0.6,-0.9 l 0.1,0.1 c 0.1,0.1 0.2,0.1 0.2,0.2 0,0.1 0.5,1 0.5,1.1 l 0.3,0.5 0.3,0.5 0.3,0.7 c 0.4,1 0.7,1.6 0.9,1.7 l 0.3,0.7 1,2.1 c 0.8,1.5 1.3,2.7 1.3,2.8 l 0.3,0.4 c 0.38,0.8 0.5,1.1 0.6,1.6 0.1,0.3 0.2,0.5 0.3,0.6 0,0 0.1,0.2 0.1,0.3 v 0.3 c 0,0 0,0.2 0.1,0.2 0.1,0 0.1,0.2 0.1,0.3 0,0.1 0.1,0.2 0.1,0.2 l 0.1,-0.1 c 0,-0.2 0,-0.2 0.1,-0.1 v 0.1 c -0.1,0 -0.2,0.2 -0.2,0.3 0,0.2 0.1,0.2 0.3,0.2 0.2,0 0.1,0 0.1,0.2 0,0.1 0.2,0.4 0.3,0.9 0.2,0.4 0.8,2 1.3,3.6 1,3.1 1.1,3.3 1.1,3.1 0,-0.2 -1.6,-5.1 -2.1,-6.4 -0.3,-0.9 -1.2,-3.9 -1.62,-5.6 -0.6,-1.9 -1.1,-3.5 -1.7,-4.8 l -0.2,-0.5 c 0,-0.1 -1.4,-2.8 -2,-3.9 -1.1,-1.9 -1.8,-3.1 -3.7,-5.9 -0.6,-1 -1.4,-2.1 -1.6,-2.5 -1.1,-2 -2.5,-4.1 -3,-4.5 0,0 -0.2,-0.3 -0.5,-0.6 -0.5,-0.6 -1.1,-1 -3.6,-2.6 -2.7,-1.6 -5.1,-3 -6.8,-3.9 l -1.2,-0.6 -1.8,-0.9 c -2.8,-1.4 -5.3,-2.3 -8.9,-3.6 -1.4,-0.5 -2.7,-0.9 -3,-1.1 -0.1,-0.1 -0.4,-0.1 -0.4,-0.1 z m 5.4,2.3 c 0.07,0 0.07,0 0.15,0.06 0.07,0.05 0.14,0.12 0.14,0.16 h -0.1 c 0,0 -0.1,-0.1 -0.1,-0.2 v -0.1 z m 1.1,0.28 c 0.15,0 0.3,0.04 0.3,0.08 0.07,0.04 0.14,0.07 0.2,0.07 0.16,0 0.23,0.04 0.23,0.07 0,0.05 0.08,0.1 0.15,0.1 0.07,0 0.22,0 0.37,0.06 0.3,0.15 0.58,0.22 0.87,0.37 0.22,0 0.37,0.07 0.37,0.15 0,0 0.1,0.07 0.2,0.07 0.1,0 0.1,0 0.1,0.07 h 0.1 l 0.5,0.1 0.6,0.3 0.3,0.1 h 0.1 c 0,0 0.2,0 0.3,0.1 0,0 0.8,0.3 1.6,0.7 l 1.7,0.8 0.7,0.4 c 0.3,0 0.5,0.2 0.5,0.3 h 0.3 l 0.6,0.3 0.5,0.3 h 0.4 c 0.1,0 0.1,0 0.3,0.1 l 1.1,0.7 0.3,0.2 c 0.2,0.1 0.4,0.3 0.7,0.4 l 0.5,0.3 v 0.1 c 0.1,0 0.6,0.3 0.7,0.4 l 0.1,0.1 c 0.1,0 0.1,0 0.3,0.2 0.1,0.1 0.3,0.1 0.4,0.1 0.1,0 0,0 0,0.1 0,0.1 0.1,0.2 0.2,0.2 0.1,0.1 0.3,0.2 0.3,0.2 0,0.1 -0.1,0.4 -0.2,0.4 -0.1,0 -0.3,0.2 -0.3,0.4 0,0.2 0,0.1 -0.2,0.1 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 -0.1,-0.2 -0.3,-0.2 -0.2,0 -0.2,0 -0.2,0.2 l -0.1,0.1 c -0.1,0 -0.1,0.1 -0.1,0.1 0,0.1 -0.1,0.1 -0.2,0.1 -0.1,0 -0.2,0.1 -0.2,0.2 0,0.1 -0.1,0.2 -0.2,0.2 h -0.2 c 0,0 0.1,0.1 0.2,0.1 0.1,0 0.1,0.1 0.1,0.2 0,0.1 0,0.1 -0.1,0.1 -0.1,0 -0.2,0 -0.2,-0.1 0,-0.1 -0.2,-0.1 -0.5,-0.1 -0.4,0 -0.5,0 -0.5,0.2 0,0 0,0.1 -0.1,0.1 h -0.3 c -0.1,0 -0.2,0 -0.3,-0.1 -0.1,-0.1 -0.8,-0.7 -1.2,-1.1 -0.2,-0.1 -0.5,-0.3 -0.5,-0.3 -0.1,0 -0.2,0 -0.2,-0.1 0,-0.1 -0.1,-0.2 -0.2,-0.3 l -0.2,-0.2 -0.6,-0.5 -0.6,-0.6 c 0,-0.1 -0.1,-0.1 -0.1,-0.1 0,0 -0.2,-0.2 -0.5,-0.3 -0.1,-0.2 -0.4,-0.3 -0.4,-0.3 -0.1,0 -0.2,-0.1 -0.3,-0.2 -0.1,-0.1 -0.1,-0.2 -0.2,-0.2 -0.1,0 -0.2,-0.1 -0.2,-0.1 0,0 -0.1,-0.2 -0.2,-0.2 h -0.1 c 0,-0.1 -0.1,-0.1 -0.2,-0.1 -0.3,0 -0.5,-0.1 -1.1,-0.6 l -0.5,-0.4 -0.5,-0.4 c -0.3,-0.3 -0.4,-0.3 -0.7,-0.5 -0.1,-0.1 -0.4,-0.2 -0.5,-0.4 -0.1,-0.1 -0.3,-0.3 -0.5,-0.4 -0.1,0 -0.4,-0.3 -0.5,-0.4 -0.4,-0.4 -1.5,-1.1 -1.5,-1.1 -0.1,0 -0.3,-0.2 -0.3,-0.3 v -0.1 c 0,0 -0.1,-0.1 -0.1,-0.3 0.1,-0.2 0.1,-0.3 -0.2,-0.2 -0.2,0 -0.2,0 -0.2,-0.2 0,-0.2 0,-0.3 -0.1,-0.3 -0.1,0 -0.1,-0.1 -0.1,-0.3 0,-0.4 0,-0.4 0.2,-0.4 z m -0.73,0.3 c 0.07,0 0.22,0 0.22,0.08 0,0 0,0.08 -0.2,0.08 h -0.2 0.1 z m -15.25,0.97 c -0.34,-0.03 -0.6,0.02 -1,0.1 -0.48,0.13 -1.15,0.34 -1.48,0.5 -0.3,0.13 -0.88,0.3 -1.25,0.38 -0.6,0.1 -3.3,1.24 -3.6,1.5 0,0.04 -0.3,0.2 -0.5,0.3 -0.3,0.13 -0.7,0.4 -0.9,0.58 -0.2,0.2 -0.5,0.35 -0.7,0.35 -0.1,0 -0.2,0.07 -0.2,0.15 0,0.08 -0.1,0.14 -0.2,0.14 -0.1,0 -0.4,0.18 -0.7,0.4 -0.2,0.14 -0.6,0.36 -0.7,0.36 -0.1,0 -0.2,0.07 -0.2,0.14 0,0.08 -0.1,0.15 -0.2,0.15 -0.1,0 -0.5,0.15 -0.8,0.44 -0.9,0.7 -2.4,1.6 -2.6,1.6 -0.3,0 -0.3,-0.8 0,-1 0.1,-0.1 0.1,-0.2 0,-0.2 -0.2,0 -0.4,-0.2 -0.7,-0.5 -0.2,-0.3 -0.6,-0.5 -0.7,-0.5 -0.6,0 -2.1,0.3 -3.4,0.8 -1,0.3 -1.4,0.4 -2.1,0.4 -0.8,0 -1,0 -1.8,0.4 -2.1,1.1 -8.3,6.3 -11,9.1 -3,3.2 -3,3.5 0,0.5 2.1,-1.9 2.2,-2.1 3.3,-3 0.4,-0.3 1,-0.9 1.5,-1.4 0.5,-0.5 1.1,-1 1.4,-1.1 l 0.6,-0.4 c 0,-0.1 0.3,-0.2 0.5,-0.2 0.6,0 2.3,-0.8 2.8,-1.2 0.5,-0.5 3,-1.7 3.8,-1.9 0.5,-0.1 0.6,-0.1 1.1,0.6 0.6,0.6 0.7,0.8 0.8,1.5 l 0.2,1.3 c 0.1,0.2 0,0.4 -0.1,0.4 -0.2,0 -0.1,0.1 0,0.3 0.1,0.2 0.1,0.2 0,0.2 -0.1,0 -0.2,0.1 -0.1,0.2 0.1,0.2 -0.7,1.2 -1.8,2.1 -2.2,1.7 -3.8,3.4 -3.5,3.9 0.3,0.4 -1.1,2.3 -3.6,5.3 -0.3,0.4 -0.5,0.7 -0.5,0.7 0,0.1 -0.8,2.1 -1.8,4.4 -3.2,7.4 -4.2,9.9 -4.6,12.5 l -1.5,7.1 c -1.4,7 -1.8,9.5 -1.7,13.9 0,1.8 0.1,3.4 0.1,3.4 0.1,0 0.3,-0.1 0.5,-0.3 l 0.4,-0.3 0.2,-2.2 c 0,-1.1 0.3,-3.1 0.4,-4.4 0.2,-1.3 0.3,-2.6 0.3,-3.3 0,-0.6 0,-1.5 0.1,-2.1 0.2,-1.5 1.2,-4.3 1.7,-5.1 0.3,-0.5 0.5,-0.8 0.5,-1 0,-0.2 1.5,-2.8 1.8,-3 0.2,0 0.2,0.2 0.1,0.6 -0.1,0.8 0,0.9 0.4,0.5 0.2,-0.1 0.5,-0.2 0.8,-0.2 0.2,0 0.4,-0.1 0.6,-0.2 0.1,-0.1 0.2,-1.2 0.4,-2.4 0.3,-2.7 0.5,-3.7 0.7,-3.5 0.1,0.1 0.1,0.4 0.1,0.8 v 0.7 l 0.1,-0.8 c 0.3,-1 0,-2.4 -0.5,-2.9 -0.9,-1 -2.5,0.2 -3.6,3 -0.3,0.7 -0.6,1.3 -0.7,1.3 -0.3,0.3 0.1,-2.2 0.6,-3.6 0.8,-2.6 3,-7.3 4.8,-10.1 1.3,-2.3 1.5,-2.4 1.3,-0.9 -0.2,1.2 -0.2,1.4 0.1,1.4 1,-0.1 1.3,0 1.8,0.7 0.3,0.4 0.5,0.7 0.6,0.7 l 0.1,0.2 c 0,0.3 -0.2,0.4 -0.7,0.5 -0.2,0.1 -0.7,0.7 -0.6,0.8 0,0.1 -0.1,0.2 -0.3,0.2 -0.3,0 -0.3,0 -0.2,0.1 0.1,0.1 0.3,0.1 0.4,0 0.3,-0.1 0.3,0.4 0,1.4 -0.3,0.9 -0.3,1.1 -0.1,1.9 0.1,0.5 0.1,1.2 0.1,1.6 v 0.6 l 0.6,-0.1 c 1.2,-0.2 2,-0.7 3.5,-2.5 0.6,-0.8 1.1,-1.5 2.4,-4 0.3,-0.6 0.6,-1 0.7,-1 0.1,0 0.2,0.4 0.1,0.9 -0.1,0.9 0,0.9 0.3,0.8 0.3,-0.1 0.4,0.2 0.5,1 v 0.3 l 0.3,-0.4 c 0.3,-0.3 0.3,-0.3 0.3,0 0,0.1 -0.2,0.8 -0.2,1.4 -0.2,1.1 -0.2,3.2 0.1,3.2 0.1,0 0.2,-0.3 0.2,-0.6 0,-0.3 0.2,-0.7 0.3,-0.9 l 0.3,-1 c 0.2,-0.6 0.8,-1.3 1.2,-1.3 0.1,0 0.2,0.1 0.2,0.2 0,0.1 0.1,0.1 0.5,0.1 0.4,-0.1 0.5,0 0.5,0.2 -0.1,0.1 -0.1,0.2 0,0.1 0.2,-0.1 0.3,1.9 0.3,5.7 v 3.2 l 0.3,-0.6 c 0.1,-0.3 0.5,-0.9 0.8,-1.2 0.4,-0.5 0.6,-0.6 1.2,-0.6 0.4,0 0.7,0.1 0.7,0.2 0,0.1 0.1,0.1 0.2,0.1 0.3,-0.2 0.9,0.7 1.1,1.7 0.1,0.5 0.2,1.4 0.2,1.9 0,1.2 0.2,1.2 0.4,0.1 0.1,-1 0.6,-2.3 1,-2.7 0.2,-0.2 0.3,-0.3 0.3,-0.2 0,0.1 0.2,0.2 0.4,0.2 0.2,0 0.5,-0.1 0.5,-0.1 h 0.2 c 0.2,0 0.3,0.3 0.5,0.9 0.3,1.2 1.2,3.8 1.3,4 0.4,0.6 1.3,-0.6 2,-2.4 0.8,-2 1,-3.6 1,-6.5 0,-2.7 0,-4.5 -0.4,-7.5 -0.1,-1 -0.2,-2.2 -0.2,-2.6 v -1 l 0.4,1 c 0.4,0.7 0.5,1 0.6,0.8 0.1,-0.1 0.2,0 0.4,0.3 0.3,0.8 1.2,2.3 1.4,2.3 0,0 0.1,-0.1 0.1,-0.2 0,-0.2 0,-0.2 0.1,0 0.1,0.2 0.1,0.4 0,0.5 -0.1,0.2 -0.1,0.5 0,0.7 0,0.4 0,0.4 0.2,0.1 v -1 c -0.1,-0.2 -0.1,-0.2 0,0 0.1,0 0.4,0.9 0.7,1.8 2.3,5.8 5.2,10.5 7.7,12.5 0.8,0.6 1.5,0.9 1.4,0.6 l 0.2,-0.8 c 0.1,-0.4 0,-1.2 -0.1,-1.7 -0.1,-0.6 -0.2,-1.1 -0.1,-1.1 0.1,0 0.3,0.5 0.6,1 1.2,2.4 2.4,4.2 3.5,5.4 0.7,0.7 1.4,1.3 1.6,1.3 0.3,0.2 0.5,0.5 0.9,1.3 0.3,0.6 0.5,1.1 0.6,1.1 0.2,0 0.2,1.2 0,2.6 0,0.2 0.1,0.9 0.1,1.5 0.1,1.1 0.1,1.7 -0.2,1.3 -0.1,-0.1 -0.2,-0.2 -0.4,-0.2 -0.4,0 -0.5,-0.2 -0.2,-0.3 0.2,0 0.3,0 0.3,0.1 0,0.1 0.1,0.2 0.2,0.2 0.4,0 0.2,-0.4 -0.2,-0.5 -0.2,-0.1 -0.4,-0.2 -0.4,-0.3 0,-0.1 0,-0.2 -0.1,-0.2 -0.1,0 -0.1,0.1 0,0.2 0.3,0.8 -0.8,1 -2,0.4 -0.2,-0.1 -0.4,-0.1 -0.4,-0.1 -0.1,0.1 1.1,4.3 1.5,5 0.2,0.3 1.4,3.5 1.4,3.6 l -0.6,-0.5 c -0.4,-0.3 -0.6,-0.5 -0.7,-0.5 -0.1,0.2 0.5,1.3 1.6,3 0.7,0.9 1.1,1.7 1.1,1.8 0,0.1 0.4,0.8 0.6,0.8 0.1,0 0.6,0.5 1.1,1.2 2.7,3.5 7.9,8.8 10.6,10.9 1,0.7 1.8,1.4 1.6,1.4 -0.2,0 -1.5,-0.5 -2.7,-1.4 -0.6,-0.4 -1.2,-0.7 -1.2,-0.6 0,0.1 0.3,0.5 0.8,1 0.9,0.8 1.2,1.6 0.6,1.4 -0.5,-0.3 0.4,0.5 1.9,1.3 2.7,1.6 2.6,1.6 5.1,1.9 l 0.6,0.1 -0.7,-0.6 c -0.3,-0.4 -0.6,-0.8 -0.6,-0.9 0.2,-0.4 1.1,0.4 1.6,1.2 0.3,0.5 0.6,0.8 0.8,0.9 0.2,0.1 0.6,0.1 0.7,0.1 0.3,0 0.2,-0.1 -0.1,-0.1 -0.4,-0.1 -1.1,-1.2 -1,-1.4 0,-0.1 -0.3,-0.5 -0.7,-0.9 -0.4,-0.4 -1,-1.3 -1.4,-2 -0.7,-1.3 -5.3,-10.3 -6,-12 l -1.2,-2.6 c -0.5,-1 -0.9,-2.2 -1.4,-4.3 -0.3,-1.6 -0.8,-3.5 -1.1,-4.3 l -1.4,-4.7 c -1.5,-5.1 -1.6,-5.6 -3.2,-10.6 -1.5,-4.8 -2.1,-6.2 -2.1,-6.2 0,0 0.2,1 0.5,2.2 l 1.7,6.2 0.9,3.1 c 0.2,0.7 0.4,1.4 0.4,1.6 0,0.6 -1,-1.8 -1.2,-2.8 l -0.5,-2.3 c -0.2,-0.8 -0.8,-2.9 -1.3,-4.8 -0.5,-1.9 -0.9,-3.8 -1,-4.1 -0.1,-1.5 -0.7,-3.2 -3.3,-9.8 -1.4,-3.9 -1.7,-5.3 -1.1,-6 0.6,-0.7 1.6,-0.4 2.6,0.7 2,2.2 6.1,10.5 8.7,17.8 0.5,1.5 1.1,2.9 1.3,3.2 l 0.2,0.6 0.1,-1.4 c 0.2,-1.6 0,-2.8 -0.6,-4.9 -1.2,-3.7 -3.4,-8.1 -7.2,-14.6 -2.7,-4.4 -3.1,-5.2 -3,-5.2 0.1,-0.1 1.1,0.5 1.8,1.2 2.1,2.1 6.5,10.2 9,16.7 0.5,1.2 1.3,2.7 1.3,2.5 0,-0.5 -1.4,-4.1 -3,-7.5 -1.4,-3.1 -8.8,-18 -9,-18 -0.1,0 -0.1,0 -0.1,-0.2 0,-0.1 0,-0.2 -0.1,-0.1 -0.1,0.1 -0.2,0 -0.3,-0.1 h 0.1 c 0.2,0.2 0.2,0.1 -0.1,-0.5 -0.2,-0.3 -0.2,-0.4 -0.5,-0.2 -0.4,0.3 -0.6,0.1 -1.1,-0.9 -0.7,-1.2 -1.8,-2.5 -3.6,-3.8 -2.8,-2 -4.6,-2.8 -10.2,-4 -0.8,-0.1 -1.2,-0.2 -1.6,-0.2 z m 15.9,0.1 h 0.07 v 0.16 c -0.1,0.07 -0.1,0.07 -0.1,0 -0.1,-0.08 -0.1,-0.15 0,-0.15 z m 6.6,5.97 c 0.58,0 1.63,0.6 2.56,1.4 0.66,0.6 1.2,1.2 1.45,1.5 l 1.24,1.4 c 0.6,0.6 1.12,1.3 1.18,1.3 l 0.88,1 0.7,0.9 0.78,1.1 c 0.2,0.2 0.4,0.4 0.5,0.6 l 0.5,0.5 c 0.2,0.1 0.2,0.3 0.2,0.4 0,0.1 0.1,0.2 0.1,0.2 h 0.1 c 0,0.1 0.1,0.1 0.2,0.3 0.2,0.1 0.2,0.2 0.2,0.3 0,-0.1 -0.1,-0.2 -0.1,-0.2 0,-0.2 -0.2,-0.4 -0.3,-0.4 v -0.1 c 0,-0.2 -2.2,-3.2 -3.3,-4.5 -1.9,-2.4 -3.2,-3.9 -3.8,-4.4 -1.1,-1.1 -2.4,-1.6 -2.7,-1.3 -0.1,0 0,0.3 0.3,0.7 1.5,2.4 2.5,4.3 3.4,6.3 l 1.1,2.2 c 0.2,0.2 0.2,0.4 0.3,0.7 l -0.2,-0.3 c -0.7,-1.4 -0.7,-1.6 -1.2,-2.7 -0.3,-1 -1,-2.4 -1.6,-3.3 l -0.4,-0.9 -1.4,-2.1 c -0.2,-0.3 -0.2,-0.6 0,-0.6 h 0.2 z m -6.95,0.2 h 0.03 c 0.02,0 0.02,0.1 0,0.1 -0.03,0 -0.05,0 -0.05,-0.1 0,0 0,-0.1 0.02,-0.1 z M 552,71.9 h 0.1 l 0.13,0.07 c 0.03,0 0.04,0.07 0.04,0.07 0,0.04 -0.07,0.04 -0.15,0.04 -0.07,0 -0.14,0 -0.14,-0.07 h 0.07 z m -6.8,0.36 c 0.1,0 0.62,0.47 1.02,1 l 0.4,0.57 c -0.03,0.14 -1.38,-1.33 -1.43,-1.47 z m 7.94,0.55 c 0.07,0 0.14,0.1 0.14,0.3 0,0.1 -0.14,0.1 -0.22,0.1 -0.22,0 -0.3,0 -0.14,-0.2 h 0.07 z m -0.15,0.7 c 0.2,0 0.2,0.1 0.2,0.2 -0.1,0.2 -0.7,0.2 -0.7,0 h 0.3 z m -4.6,0.8 c 0,0 0.1,0.1 0.1,0.2 0,0.2 -0.2,0.2 -0.3,0.1 -0.2,0 -0.1,-0.1 0,-0.1 z m 2.5,1 v 0.3 c 0,0.1 -0.1,0.1 -0.1,0.1 -0.1,0 -0.2,0 -0.2,-0.1 0,-0.1 0,-0.1 0.1,-0.1 z m -1.3,0.2 c 0.1,0 0.1,0.1 0.1,0.2 0,0.2 -0.2,0.3 -0.3,0.1 -0.2,-0.1 -0.2,-0.2 0.1,-0.2 z m 4.4,0.2 c 0,0 0.1,0.1 0.1,0.2 0,0.1 -0.1,0.2 -0.2,0.2 -0.1,0 -0.2,0 -0.2,-0.1 0,-0.1 0,-0.1 0.1,-0.1 z m 0.8,0 c 0,0 0.1,0.1 0.1,0.2 0,0.1 -0.1,0.2 -0.2,0.2 -0.1,0 -0.2,0 -0.2,-0.1 0,-0.1 0,-0.1 0.1,-0.1 z m 0.7,0.5 v 0.1 l 0.1,0.3 c 0,0.1 -0.1,0.1 -0.1,0.1 h -0.1 c 0,-0.1 -0.1,-0.1 -0.1,-0.1 -0.1,0 -0.1,0 -0.1,-0.1 z m -5.1,0.1 c 0,0 0.1,0.1 0.1,0.2 v 0.4 c 0,0 -0.1,0.2 -0.2,0.2 -0.1,0 -0.1,0 -0.1,-0.1 0,-0.1 -0.1,-0.1 -0.2,-0.2 -0.2,-0.1 -0.1,-0.3 0,-0.3 z m 0.5,0.8 0.1,0.2 c 0,0.2 0.1,0.6 0,0.6 -0.1,0 -0.1,0.1 -0.2,0.2 0,0.1 -0.1,0.2 -0.1,0.2 -0.2,0 -0.2,-0.1 0,-0.3 v -0.3 c -0.2,-0.2 -0.1,-0.4 0,-0.4 z m 4.8,0.5 c 0,0 0.1,0 0.1,0.2 0,0.2 -0.1,0.2 -0.2,0.2 -0.2,0 -0.2,-0.1 -0.2,-0.1 0,-0.1 0,-0.1 0.1,-0.1 z m -1.4,1.9 h 0.3 c 0.2,0 0.4,0.1 0.5,0.1 0,0.1 0.1,0.2 0.2,0.2 0,0.1 0.1,0.2 0.1,0.2 l 0.1,0.2 0.3,0.3 c 0,0.2 0.2,0.3 0.2,0.3 l 0.2,0.2 c 0,0 0.2,0.3 0.3,0.3 v 0.1 c 0,0.1 0.1,0.1 0.1,0.1 0.1,0.1 0.2,0.2 0.2,0.3 v 0.1 l 0.1,0.1 v 0.1 l 0.4,0.6 0.5,0.8 c 0,0.1 0.2,0.2 0.2,0.2 0.1,0.1 0.1,0.1 0,0.2 l -0.1,0.1 c -0.1,-0.2 -1.1,-1.5 -1.3,-1.7 -0.4,-0.4 -1.6,-1.2 -1.7,-1.2 -0.1,0 -0.2,-0.1 -0.2,-0.1 -0.2,-0.3 -1.5,-0.6 -1.5,-0.3 0,0.1 -0.1,0.1 -0.1,0.1 0,0 -0.3,0.1 -0.4,0.3 l -0.3,0.2 0.1,-0.1 0.1,-0.1 h 0.1 c 0,0 0,-0.1 0.2,-0.1 0.1,0 0.2,0 0.2,-0.1 0,-0.1 0,-0.1 0.1,-0.1 z m -2.4,0 c -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.1,0.2 -0.3,0.3 -0.3,0.2 v -0.2 c 0,0 0,-0.1 0.2,-0.1 z m 6.2,0.8 c 0,0 0.1,0.1 0.1,0.2 v 0.1 h -0.2 c -0.3,-0.1 -0.3,-0.2 -0.1,-0.2 z m -0.7,0.2 v 0.2 c 0,0.2 -0.1,0.2 -0.2,0.2 -0.2,0 -0.2,-0.1 -0.2,-0.2 0,0 0.1,-0.1 0.2,-0.1 z m -4.2,0.1 v 1.1 c 0,0.8 0.1,1.4 0.2,1.6 h -0.1 c -0.2,0 -0.2,-0.1 -0.2,-0.5 0,-0.3 -0.1,-0.5 -0.1,-0.5 0,0 -0.1,-0.4 -0.1,-0.9 v -0.6 z m -1.3,0.7 v 0.2 c 0,0.2 -0.1,0.2 -0.2,0.2 -0.2,0 -0.2,-0.1 -0.1,-0.2 h 0.2 z m -5.8,0.4 c 0,0.2 0.1,0.7 0.3,1 0,0.2 0.1,0.3 0.1,0.5 l -0.4,-0.6 c -0.2,-0.3 -0.2,-0.5 -0.2,-0.8 z m 5.5,0.3 c 0,0 0.1,0.1 0.1,0 0.2,0 0.2,0 0.1,0.4 v 0.3 c 0.1,-0.1 0.3,0.1 0.2,0.3 -0.1,0.1 -0.4,0.1 -0.4,-0.1 0,-0.1 -0.1,-0.1 -0.1,-0.1 -0.1,0 -0.2,0.1 -0.2,0.1 0,0.1 -0.2,0.1 -0.3,0.1 -0.2,0 -0.3,0.1 -0.4,0.1 -0.1,0.1 -0.3,0.1 -0.5,0.1 -0.2,0 -0.2,0.1 -0.2,0.1 0.1,0 0.3,-0.1 0.3,-0.1 0.1,-0.1 0.2,-0.1 0.4,-0.1 0.1,0 0.3,0 0.3,-0.1 0,-0.1 0,-0.1 0.1,0 0.1,0.1 0.1,-0.1 0.1,-0.2 0,-0.1 -0.1,-0.3 -0.2,-0.3 h -0.1 z m 0.6,0 v 0.1 c 0,0.1 0,0.2 -0.1,0.2 -0.1,0 -0.1,-0.1 -0.1,-0.2 V 82 Z m -5.8,0.1 0.1,0.2 v 0.2 c -0.1,0.1 -0.1,0 -0.2,0 -0.1,0 -0.1,-0.2 0,-0.2 z m 3.9,1.1 c -0.1,0.1 -0.1,0.1 -0.1,0.2 0,0.2 -0.1,0.2 -0.2,0.2 h -0.1 v -0.1 l 0.1,-0.1 0.1,-0.1 z m 2.5,0.3 c 0.1,0 0.1,0.1 0,0.2 -0.2,0.1 -0.2,0.1 -0.2,0 0,-0.1 0,-0.1 0.1,-0.1 z m 0.6,0.1 v 0.4 l 0.1,0.7 c 0.2,0.4 0.2,0.5 0.1,0.5 l -0.2,-0.3 -0.1,-0.5 c -0.1,-0.1 -0.1,-0.3 -0.1,-0.5 v -0.2 z m 5.4,0.1 c 0.1,0.2 0.3,0.5 0.5,0.8 0.1,0.2 0.2,0.4 0.3,0.4 0,0.1 0.1,0.2 0.1,0.2 0,0.1 0,0.3 0.1,0.4 v 0.3 l -0.2,-0.3 c -0.2,-0.3 -0.5,-0.9 -0.7,-1.2 -0.2,-0.1 -0.2,-0.3 -0.3,-0.4 z m -12.2,0.1 0.1,0.5 c 0,0.5 0,1.1 0.1,1.3 0.4,1.7 0.1,4 -0.5,4.4 -0.1,0.1 -0.2,0 -0.3,0 l 0.1,0.1 c 0.1,0 0.4,-0.4 0.5,-0.8 0.2,-1.2 0.2,-2.1 0,-3.3 -0.1,-0.4 -0.2,-1 -0.2,-1.2 0,-0.1 -0.1,-0.3 -0.1,-0.3 -0.1,0 -0.1,-0.3 0,-0.5 z m 6.5,0.9 0.1,0.1 0.1,0.1 h -0.4 z m -3.3,0.2 v 0.3 l -0.1,-0.2 z m 10.4,0.3 0.1,0.1 v 0.1 c -0.1,0.1 -0.3,0.1 -0.3,0 0,-0.1 0.1,-0.2 0.1,-0.2 z m -10.3,0.1 h 0.1 c 0,0 0.1,0.1 0.1,0.3 0,0.2 0,0.3 0.1,0.3 0,0 0.1,0.1 0.1,0.2 v 0.1 c -0.2,-0.2 -0.2,-0.4 -0.2,-0.6 0,0 -0.1,-0.2 -0.2,-0.3 z m 3.4,0 h 0.2 c -0.1,0 -0.1,0.1 -0.1,0.2 0,0.1 0.1,0.1 0.2,0.1 h -0.2 c -0.2,0.1 -0.3,0.1 -0.3,-0.1 V 85 Z m 0.3,0.5 v 0.3 c -0.1,0.4 -0.1,0.4 0,0.4 l 0.1,-0.1 c 0,0.2 -0.1,0.2 -0.2,0.2 -0.1,0 -0.2,0 -0.2,-0.3 0,-0.3 0,-0.4 0.1,-0.4 z m 6.3,0.4 c 0.1,0 0.1,0.1 0.1,0.2 z M 543,86 c 0.23,0.36 0.53,0.8 1.04,1.46 0.6,0.8 1.47,1.7 2.13,2.13 -0.3,-0.2 -0.66,-0.5 -0.96,-0.8 -0.7,-0.7 -1.4,-1.6 -2.2,-2.8 z m 7.78,0.07 v 0.06 c 0.05,0.08 0.13,0.15 0.13,0.22 l -0.2,-0.3 z m 3.72,0.06 0.07,0.08 0.06,0.2 h -0.07 V 86 Z m 7.03,0.15 0.07,0.08 c 0,0.08 0,0.08 -0.07,0.08 -0.07,0 -0.07,0 -0.07,-0.08 v -0.07 z m -6.9,0.16 c 0,0.07 -0.06,0.07 -0.2,0.07 -0.3,0.1 -0.37,0.3 -0.15,0.4 h -0.14 c -0.07,0 -0.07,0 -0.07,-0.1 0,0 0,-0.1 0.2,-0.1 h 0.3 z m -3.65,0.07 c 0,0 0.08,0.1 0.08,0.2 l -0.07,-0.1 z m 0.16,0.3 0.07,0.1 c 0.1,0 0.1,0.1 0.1,0.3 0,0.2 0.1,0.2 0.2,0.2 0.2,0.1 0.2,0.2 0.2,0.2 l 0.1,0.2 v -0.1 l -0.1,-0.2 c 0,0 -0.1,0 -0.1,-0.1 l -0.1,-0.3 z m 1.17,0.4 c 0.1,0 0.2,0.1 0.2,0.2 0,0.2 -0.1,0.2 -0.1,0.2 0,0 -0.1,0 -0.1,-0.1 0,-0.1 0,-0.1 0.2,-0.1 z m 2.5,0.1 c 0.1,0.2 0.2,0.5 0.4,0.7 h -0.1 c 0,0 -0.1,0 -0.1,-0.2 0,-0.2 -0.1,-0.2 -0.1,-0.2 -0.1,0 -0.1,0 -0.1,-0.1 v -0.7 z m -2.8,0.3 c 0.2,0 0.3,0.1 0.3,0.2 0,0.2 -0.1,0.2 -0.2,0.2 h -0.1 v -0.1 c 0.2,-0.1 0.3,-0.3 0.1,-0.3 -0.1,0 -0.1,0.1 -0.1,0.2 0,0.1 -0.1,0.1 -0.1,0.1 h 0.1 c 0,0 0.1,-0.1 0.2,-0.1 z m -0.1,0.4 c 0,0 -0.1,0 -0.1,0.1 0,0.1 0.2,0.3 0.3,0.3 0,0 0.1,0.1 0.1,0.2 v 0.2 l -0.3,-0.3 c -0.1,-0.1 -0.1,-0.2 0,-0.3 z m 3.4,0.1 c 0.1,0.2 0.2,0.3 0.2,0.4 v -0.3 z m 0.2,0.5 v 0.2 c 0,0.2 0.1,0.4 0.2,0.4 0.1,0.1 0.2,0.2 0.2,0.4 l 0.2,0.4 c 0,0 0.1,0 0.1,0.1 -0.1,0 -0.1,-0.1 -0.1,-0.2 v -0.1 c -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.2 -0.1,-0.3 -0.2,-0.1 -0.2,-0.1 -0.2,-0.4 l -0.1,-0.1 z m -3.1,0.3 0.2,0.1 0.2,0.2 c 0,0 0,0.2 0.1,0.2 0.1,0 0.1,0.1 0.1,0.3 0,0.2 0.2,0.3 0.3,0.5 0.2,0.2 0.3,0.3 0.3,0.4 0,0.1 0,0 0.1,0 0.1,0 0.1,0.1 0.1,0.2 v 0.1 -0.1 c -0.1,-0.3 -0.3,-0.6 -0.4,-0.6 -0.1,0 -0.2,-0.3 -0.4,-0.5 -0.1,-0.3 -0.2,-0.5 -0.3,-0.7 z m -40.6,0.5 v 0.1 c 0.1,0.1 0.1,0.5 0,0.7 -0.1,0.2 -0.1,0 -0.1,-0.3 0,-0.3 0.1,-0.4 0.1,-0.4 z m 42,0.3 c 0.4,0 0.8,0.5 0.8,0.8 0,0.2 0,0.3 0.1,0.3 0.1,0 0.2,0.1 0.2,0.4 v 0.5 h -0.2 c -0.2,0 -0.3,0 -0.3,-0.1 v -0.1 h -0.1 c 0,0 -0.3,-0.5 -0.3,-0.6 l -0.1,-0.1 v -0.2 c 0,-0.2 0,-0.2 0.3,-0.2 z m -58.9,0.2 c 0.2,0 0.5,0 0.7,0.2 0.1,0.1 0.2,0.2 0.1,0.2 l -0.5,0.2 c -0.5,0.2 -0.6,0.1 -0.6,-0.2 0,-0.1 0.2,-0.2 0.4,-0.2 z m 61.4,0.2 0.3,0.4 v -0.1 c -0.2,0 -0.2,-0.1 -0.2,-0.2 z m -0.7,0.3 c 0.2,0 0.2,0 0.2,0.1 0,0.1 0,0.1 -0.1,0.1 -0.1,0 -0.1,0 -0.1,-0.1 0,-0.1 0.1,-0.1 0.2,-0.1 z m 0.5,0 c 0.2,0 0.2,0 0.2,0.1 0,0.1 0,0.1 -0.1,0.1 -0.1,0 -0.2,0 -0.2,-0.1 0,-0.1 0.1,-0.1 0.2,-0.1 z m 0.5,0.1 c 0.1,0.1 0.1,0.2 0.2,0.3 -0.1,0 -0.1,-0.1 -0.1,-0.2 v -0.1 z m -3,0.1 v 0.1 c 0.1,0 0.1,0.2 0.2,0.3 l 0.1,0.2 c -0.1,0 -0.1,-0.2 -0.2,-0.4 z m -58.4,0.3 c 0,0 0.1,0 0.1,0.1 0.1,0.1 0.1,0.3 0.1,0.5 v 0.4 -0.3 c -0.1,-0.2 -0.1,-0.4 0,-0.4 z m 61.6,0.1 c 0,0.2 0,0.2 0.1,0.3 -0.1,0 -0.1,0 -0.1,-0.2 v -0.5 z m -2.8,0.2 c 0.2,0 0.2,0.2 0.1,0.2 v -0.1 h -0.1 z m 3,0.3 c 0.1,0.1 0.1,0.1 0.1,0.3 0,0.1 0.1,0.3 0.3,0.4 0,0 0,0.1 0.1,0.1 -0.1,-0.1 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.1,-0.1 -0.1,-0.4 0,-0.1 0,-0.2 -0.1,-0.2 z m -1.9,0.4 c 0.1,0 0.2,0.1 0.2,0.3 0,0.2 -0.1,0.2 -0.2,0.2 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.2 0.1,-0.2 z m 1.7,0 c 0.1,0 0.2,0.1 0.2,0.3 0,0.2 -0.1,0.2 -0.2,0.2 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0.1,-0.2 0.1,-0.2 z m -2.6,0.1 0.1,0.2 c 0.1,0.2 0.2,0.4 0.2,0.5 l 0.3,0.5 0.2,0.3 0.1,0.3 -0.1,-0.3 -0.6,-1.3 z m 3.1,0.2 c 0.1,0.1 0.2,0.2 0.2,0.4 v -0.8 c 0,0 0,-0.1 -0.1,-0.1 z m 0.2,0.8 c 0,0.2 0.1,0.3 0.3,0.4 h -0.1 c -0.2,-0.1 -0.3,-0.3 -0.2,-0.3 V 93 Z m -0.3,0.4 c 0.1,0 0.2,0.1 0.2,0.2 0,0.1 -0.1,0.2 -0.2,0.2 -0.1,0 -0.2,0 -0.2,-0.1 0,-0.1 0,-0.1 0.2,-0.1 z m 0.6,0.1 c 0.1,0.1 0.2,0.3 0.2,0.5 0,0.2 0.1,0.5 0.2,0.5 v 0.1 -0.1 l -0.1,-0.1 c 0,0 -0.1,-0.2 -0.1,-0.4 0,-0.1 0,-0.2 -0.1,-0.2 z m -1.3,0.3 c 0.1,0 0.2,0.1 0.2,0.2 0,0.2 -0.1,0.2 -0.1,0.2 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.1 0.2,-0.1 z m -1.4,0.1 0.2,0.4 0.3,0.6 1.6,3.3 0.2,0.5 0.2,0.5 c 0.1,0.3 0.5,1.1 0.8,1.8 -0.3,-0.7 -0.8,-1.5 -1.3,-2.6 l -2.2,-4.4 z m 2.7,0.5 h 0.1 c 0.1,0 0.1,0.1 0.1,0.1 h -0.1 v -0.1 l 0.1,-0.1 z m 0.7,0.4 c 0.4,1 1.6,4.2 2.6,7.1 0.3,0.8 0.6,1.8 0.7,2 v 0.2 l -0.6,-1.7 v -0.2 c -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 -0.1,-0.1 -0.1,-0.2 v -0.1 c 0,-0.1 -0.1,-0.3 -0.1,-0.3 -0.1,-0.1 -0.1,-0.3 -0.1,-0.5 l -0.1,-0.4 c -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 -0.1,-0.5 -0.4,-1 l -0.7,-1.8 c -0.1,-0.5 -0.4,-1.1 -0.4,-1.1 V 96 l -0.1,-0.4 c -0.1,-0.2 -0.2,-0.3 -0.2,-0.4 V 95 Z m -1.2,0.2 c 0.1,0 0.2,0.1 0.2,0.2 0,0.1 0,0.2 -0.1,0.2 l -0.1,-0.1 c 0,-0.1 0,-0.1 0.1,-0.1 z m -45.6,1 c 0.2,0 0.2,0.2 0.2,0.8 0,0.5 -0.1,1.1 -0.1,1.3 -0.1,0.4 -0.1,0.3 -0.4,-0.6 -0.1,-1 -0.1,-1.2 0,-1.2 0.1,-0.1 0.2,-0.1 0.3,-0.1 z m -15.6,5.4 c 0,0.1 -0.1,0.2 -0.3,0.3 -0.2,0.1 -1.2,1.1 -1.3,1.3 0,0.1 -0.1,0.1 -0.1,0.2 -0.1,0.1 -0.1,0.2 -0.1,0.3 l -0.4,0.7 -0.3,0.8 c -0.2,0.3 -0.3,0.4 -0.7,0.1 -0.2,-0.1 -0.3,-0.2 -0.4,-0.2 -0.1,0 -0.3,0.2 -0.4,0.4 -0.1,0.2 -0.3,0.3 -0.4,0.3 0,0 -0.1,0.1 -0.3,0.2 -0.3,0.3 -0.3,0.4 -0.5,1.8 -0.1,1.1 -0.3,2 -0.8,4.2 -0.2,0.8 -0.3,1 -0.6,2.7 -0.3,1.5 -0.8,3.1 -0.9,3.6 -0.1,0.1 -0.2,0.5 -0.4,0.9 l -0.4,1.3 c -0.1,0.4 -0.4,1.1 -0.5,1.6 -0.6,2.2 -1.1,3.3 -1.6,3.8 0,0.2 -0.2,0.3 -0.2,0.3 0,0.1 -0.9,1.8 -1.4,2.7 l -0.6,1.1 -0.1,0.3 v 0.2 c 0,0 0.1,0.1 0.1,0 0.2,-0.2 1,-0.8 1.2,-0.8 0.3,0 1.5,-1.3 2.2,-2.3 0.1,-0.2 0.3,-0.4 0.4,-0.5 h 0.1 c 0,0 0.2,-0.2 0.4,-0.3 0.2,-0.2 0.6,-0.7 0.9,-1.1 0.7,-1.1 1,-1.5 1.1,-1.5 v -0.2 l 0.2,-0.2 c 0.1,-0.1 0.2,-0.2 0.3,-0.4 0.1,-0.1 0.1,0 -0.1,0.2 l -0.3,0.5 c -0.1,0 -0.1,0.1 -0.1,0.1 0,0 -0.1,0.3 -0.4,0.7 l -1.2,1.9 c -0.1,0.2 -0.4,0.7 -0.7,1.1 -0.6,0.9 -1.1,1.8 -1,1.8 0.2,0 0.8,-0.6 0.8,-0.7 0,-0.1 0,-0.1 0.1,-0.1 0.2,0 0.6,-0.5 1.2,-1.3 l 1.2,-1.5 c 0.8,-1.1 2,-2.8 2,-3 l 0.4,-0.6 c 0.2,-0.3 0.7,-1 1.1,-1.7 0.3,-0.7 0.7,-1.2 0.8,-1.4 l 0.6,-1.2 c 0.9,-1.5 1.9,-3.6 2.1,-4.6 0.2,-0.4 0.2,-0.4 0,-0.6 -0.2,-0.2 -0.4,-0.2 -0.6,0.3 -0.6,1 -1.4,2.1 -1.5,1.9 0,-0.1 0.1,-0.2 0.1,-0.4 l 0.8,-1.9 c 0.1,-0.2 0.2,-1.2 0.1,-1.5 0,-0.2 0.2,-2.6 0.3,-3.5 l 0.7,-2.9 0.5,-2.3 h -0.1 z m 64.1,1.5 0.7,0.8 c 0.2,0.2 0.6,0.8 0.7,1.4 0.1,0.2 0.2,0.5 0.2,0.5 0,0.1 0.1,0.4 0.1,0.4 0,0 0,0.1 0.1,0.2 0.1,0 0.1,0.1 0.1,0.2 0,0.1 0.1,0.3 0.2,0.6 0.1,0.2 0.2,0.4 0.2,0.5 0,0.1 0,0.2 0.1,0.3 0,0 0.2,0.6 0.4,1.3 0.1,0.6 0.3,1.2 0.4,1.2 0,0 0.1,0.2 0.1,0.3 0.1,0.3 0.2,0.8 0.5,1.7 0.2,0.9 0.4,1.6 0.4,1.7 -0.8,-3.2 -1.8,-6.7 -2.3,-7.9 -0.1,-0.1 -0.2,-0.5 -0.3,-0.8 -0.3,-0.8 -0.6,-1.3 -1.2,-2 l -0.3,-0.3 z m 1.6,0.6 c 0.3,0.8 0.7,2.2 0.8,2.8 0.1,0.4 0.3,1.1 0.4,1.4 l 0.2,0.3 c 0,-0.3 -0.2,-0.5 -0.3,-0.6 0,0 -0.1,-0.2 -0.1,-0.5 v -0.4 c 0,-0.1 -0.1,-0.1 0,-0.2 0.1,-0.2 -0.4,-1.9 -0.6,-2.4 l -0.1,-0.3 v -0.2 z m -8.5,1.2 c 0.1,-0.1 0.1,0.1 0.2,0.3 0.1,0.2 0.1,0.5 0,0.8 0,0.4 0,0.4 -0.1,0.2 -0.2,-0.4 -0.2,-1.2 0,-1.3 z m -18.5,0.1 c 0,0.1 0.1,0.2 0.2,0.4 0.1,0.3 0.1,0.3 -0.1,0.3 -0.1,0 -0.2,-0.1 -0.2,-0.3 0,-0.2 0.1,-0.3 0.1,-0.3 z m 0.3,0.8 v 0.1 c 0,0 -0.1,0.2 -0.2,0.2 -0.1,0 -0.1,-0.1 -0.1,-0.2 0.1,-0.1 0.1,-0.1 0.2,-0.1 z m 0.2,0.9 c 0,0 0.1,0.1 0.2,0.4 0,0.2 0,0.4 -0.1,0.4 -0.1,0 -0.2,-0.2 -0.2,-0.5 v -0.4 z m 0.5,0.6 c 0.1,0.1 0.1,0.3 0,0.4 0,0.1 -0.1,0 -0.1,-0.2 v -0.3 z m -0.3,0.5 v 0.1 c 0,0.1 0.1,0.2 0,0.3 -0.1,0 -0.1,-0.1 -0.1,-0.2 z m 27.9,1.2 0.3,0.9 0.6,2.3 0.3,1.2 c -0.1,-0.1 -0.3,-0.8 -0.3,-0.9 0,-0.1 -0.1,-0.1 -0.1,-0.2 -0.1,-0.1 -0.2,-0.3 -0.2,-0.5 l -0.1,-0.5 c -0.2,-0.4 -0.4,-1.1 -0.8,-2.2 z m -56.5,1.1 c -0.4,-0.1 -0.4,-0.1 -0.6,1.9 l -0.2,2.4 c 0,0.3 -0.1,0.3 -0.2,0.2 -0.3,-0.2 -0.3,-0.1 -0.3,0.5 0,1.5 -0.5,0.5 -0.8,-1.3 -0.1,-1.4 -0.3,-1.2 -0.3,0.3 0.2,4.4 0.3,8 0.4,8.2 0.1,0.1 0.2,0.3 0.4,0.3 0.5,0 0.5,0.1 0.8,2.9 0.1,1.1 0.2,2.2 0.3,2.5 0.1,0.3 0.1,0.3 -0.2,0.2 -0.2,-0.2 -0.4,-0.3 -0.5,-0.5 -0.3,-0.4 -0.5,0.1 -0.2,0.8 0.1,0.4 0.1,0.7 0.1,0.8 0,0 0,0.1 0.1,0.1 0.1,0 0.3,0.4 0.7,1.3 0,0.3 -0.7,0.4 -1,0.3 -0.4,-0.3 -0.3,0.2 0.2,1.2 0.2,0.5 0.4,0.9 0.5,1 0.1,0 0.2,0.2 0.2,0.3 0,0.5 1.1,2.2 2.2,3.3 0.5,0.6 1.4,1.4 1.9,1.6 0.4,0.3 0.9,0.5 0.9,0.4 0,0 0,-0.2 -0.1,-0.5 -0.2,-0.6 -0.7,-3.2 -0.9,-4.9 -0.3,-2 -0.4,-2.5 -0.9,-2.5 -0.2,0 -0.4,-0.2 -0.9,-1.1 -0.3,-0.6 -0.5,-1.2 -0.5,-1.3 0,-0.1 -0.1,-0.2 -0.3,-0.2 -0.3,-0.1 -0.6,-1.5 -0.6,-2.6 0,-0.5 0,-0.6 0.2,-0.2 0.2,0.4 0.2,0.4 0.5,-0.6 0.2,-0.4 0.2,-0.6 0.5,-0.5 0.1,0 0.3,0.1 0.2,0.2 0,0.1 0,0.1 0.1,0.1 0.1,0 0.1,0.1 0,0.2 0,0.1 0,0.1 0.2,0.1 0.4,0 0.7,0.8 1.3,3.1 0.3,1.1 0.6,2.2 0.7,2.2 0.1,0.1 0.5,1.1 0.9,2.2 0.8,2.2 2,4.6 2.7,5.5 l 0.6,0.6 -0.1,-0.6 c -0.1,-0.6 -0.3,-1.1 -1.6,-3.2 -1.3,-2.2 -1.5,-2.6 -2,-4.1 -0.6,-1.8 -1.1,-4.1 -0.9,-4.1 0.1,0 0.1,0.1 0.1,0.2 0,0.3 0.7,1.3 0.9,1.3 0.1,0 0.2,-0.4 0.4,-0.9 0.3,-1.3 0.3,-1.4 0.7,-0.7 l 0.3,0.6 V 115 l -0.5,0.3 c -0.4,0.3 -0.4,0.3 -0.8,-0.2 -0.1,-0.26 -0.4,-0.77 -0.5,-1.1 -0.1,-0.6 -0.2,-0.7 -0.4,-0.5 -0.2,0.1 -0.3,0.1 -0.5,-0.2 -0.1,-0.25 -0.3,-0.3 -0.3,-0.3 -0.2,0.1 -0.1,1.9 0.1,2.84 0.2,1.1 0.2,1.1 -0.1,1.1 -0.3,0 -0.5,-0.8 -0.8,-2.94 0,-1.1 -0.2,-2.2 -0.3,-2.5 -0.3,-0.8 -0.9,-1.4 -1.4,-1.5 z m 29,0.2 0.1,0.1 v 0.4 c -0.1,0.1 -0.1,0 -0.1,-0.2 0,-0.1 0,-0.2 0.1,-0.2 z m 0.6,1.4 0.2,0.3 c 0,0.2 0.1,0.4 0.1,0.5 0,0.2 -0.2,0.2 -0.4,0.1 -0.1,0 -0.1,-0.3 0,-0.5 v -0.4 z m 28.2,1.8 0.2,0.6 v 0.1 l 0.4,1.4 c 0.1,0.3 0.4,1.3 0.6,2.1 -0.1,-0.2 -0.1,-0.3 -0.2,-0.5 -0.1,-0.2 -0.1,-0.4 -0.1,-0.5 0,-0.1 -0.1,-0.2 -0.1,-0.2 -0.1,0 -0.1,-0.1 -0.1,-0.3 0,-0.1 -0.1,-0.2 -0.2,-0.4 -0.1,-0.1 -0.2,-0.2 -0.2,-0.4 -0.1,-0.3 -0.2,-0.6 -0.3,-0.8 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 v -0.1 c 0,-0.1 0,-0.1 -0.1,-0.1 -0.1,0 -0.1,-0.2 -0.1,-0.3 0,-0.2 0,-0.2 -0.1,-0.3 z m -0.5,0.9 0.2,0.7 0.3,0.9 0.1,0.3 v 0.4 c 0.1,0.1 0.1,0.3 0.1,0.3 0.1,0 0.1,0.2 0.1,0.3 0,0.1 0,0.2 0.1,0.2 l -0.2,-0.9 c -0.2,-0.5 -0.3,-1 -0.4,-1.5 l -0.2,-0.8 z m -89.4,1 -0.1,0.2 c 0,0.1 -0.1,0.3 -0.2,0.5 l -0.2,0.4 -0.2,0.5 -0.5,1 -0.4,0.9 c -0.1,0.1 -0.3,0.6 -0.5,1.2 -0.2,0.6 -0.4,1.1 -0.5,1.1 -0.1,0.1 -0.5,1.4 -0.5,1.6 0,0.1 -0.1,0.3 -0.2,0.6 -0.2,0.6 -0.2,0.8 -0.3,1.3 0,0.2 -0.1,0.4 -0.1,0.5 l -0.2,0.9 -0.3,1.4 c 0,0.1 -0.1,-0.6 -0.1,-1.4 0,-0.8 0,-1.4 -0.1,-1.4 -0.1,-0.1 -0.2,0.3 -0.3,1 l -0.2,0.6 v 1.3 c -0.1,0 -0.1,0.3 -0.1,0.4 0,0.6 -0.4,2.8 -0.5,2.9 -0.1,0.1 -0.2,0.1 -0.1,0.2 0,0.1 0,0.2 -0.1,0.2 h -0.2 c -0.1,-0.2 -0.4,-0.8 -0.4,-1.1 l -0.1,-0.4 c -0.1,-0.2 -0.1,-2.3 -0.1,-3.7 0,-1.4 0,-1.9 0.2,-3.7 v -0.7 c -0.1,0.1 -0.3,1.6 -0.5,3.4 l -0.1,1.3 -0.2,1.3 c 0,1.3 -0.2,1.4 -0.3,0.4 0,-0.3 0,-0.5 -0.1,-0.6 0,0 -0.1,0.3 -0.2,3.1 l -0.1,2.5 c -0.1,0.6 -0.1,2.4 -0.1,4 v 3 h 0.4 c 0.1,0.1 0.1,0 0.1,-0.1 0.1,-0.3 0.3,-0.1 0.3,0.2 0.3,1.9 0.3,1.6 0.6,7.9 0.2,3.1 0.2,3 0.4,4.3 l 0.3,1.4 0.2,0.9 c 0.2,1 0.3,0.4 0.2,-1.4 v -12.7 c 0.1,-0.1 0.2,-0.1 0.3,0.6 l 0.1,1.2 c 0,0.2 0,0.6 0.1,0.9 l 0.2,1.1 c 0.1,1.2 0.5,3.7 0.6,4.2 0.1,0.7 0.3,1.8 0.4,2.8 0.1,0.6 0.1,1 0.2,1.1 0.1,0 0.1,0.2 0.1,0.4 0.1,0.4 0.2,-5.4 0.1,-6 l -0.1,-3.7 c -0.1,-3.3 -0.2,-5 -0.3,-5.8 0,-0.3 0,-0.5 0.1,-0.6 0.1,0 0.2,-0.5 0.2,-0.9 0,-0.5 0.1,-0.8 0.2,-1 0.2,-0.3 0.2,-0.4 0.2,-1.5 0,-1.3 0.3,-3.3 0.4,-3.8 l 0.1,-0.3 0.1,0.5 c 0.1,0.5 0.1,1.5 0.1,2.9 l 0.2,2 0.2,1 c 0,0.1 0.1,0.1 0.2,0 0.1,-0.1 0.1,0 0.1,0.8 0,1.1 0.1,1.9 0.2,1.9 l 0.1,0.1 c -0.1,0.1 0.1,0.9 0.2,1 0.1,0.1 0.2,0.5 0.3,1.3 0,0.2 0.1,0.4 0.1,0.6 v 0.4 c 0,0.2 0.1,0.7 0.3,1.2 0.1,0.6 0.2,1.1 0.2,1.2 0,0.2 0.1,0.2 0.1,0.2 0.1,0.1 0.1,0.2 0.1,0.3 0,0.1 0.1,0.2 0.1,0.2 v -0.6 c -0.1,-1 0.2,-0.9 0.5,0.2 0.1,0.3 0.2,0.5 0.2,0.6 0.1,0 0.2,0.2 0.2,0.3 l 0.2,0.3 c 0.1,0.1 0,-1.1 0,-2.4 -0.2,-1.1 -0.2,-1.7 0,-3.6 0.1,-2.2 0.2,-5.2 0.1,-8.4 0,-2.8 0,-4.2 0.1,-5 0.2,-1.3 0.2,-2.7 0,-3.4 0,-0.4 -0.1,-0.4 -0.1,-0.2 -0.2,1.2 -0.8,2.5 -0.9,2.5 -0.1,0 -0.1,-0.2 -0.1,-0.6 0,-0.7 0,-0.9 -0.1,-0.7 -0.1,0.2 -0.2,0.1 -0.2,0 v -0.3 c 0,0 0.1,-0.3 0.1,-0.8 0,-0.4 0.1,-1 0.1,-1.4 l 0.5,-3.8 c 0.2,-1 0.2,-1.1 0.1,-1.1 z m 90.4,2.5 0.1,0.4 c 0,0.2 0.1,0.6 0.2,0.7 v 0.3 l -0.4,-1.3 z m 0.9,0.4 v 0.2 c 0,0.2 0.1,0.5 0.1,0.7 -0.2,0 -0.2,-0.6 -0.1,-0.7 z m 0.1,0.9 v 0.7 c -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 v -0.1 z m -0.6,0.4 0.1,0.2 c 0,0.2 0.2,0.5 0.3,0.5 v 0.2 c 0,0.1 0.1,0.2 0.1,0.2 -0.1,-0.1 -0.2,-0.5 -0.4,-0.8 z m 0.7,0.5 c 0,0.1 -0.1,0.2 -0.1,0.2 -0.1,0.2 -0.1,0.3 0,0.5 v 0.4 -0.1 l -0.1,-0.2 c -0.1,0 -0.1,-0.5 0,-0.5 z m -0.2,0.7 v 0.1 c 0,0 0.1,0.1 0.1,0.2 v 0.1 c -0.1,0 -0.1,-0.1 -0.2,-0.2 h -0.1 z m -2.5,2.9 v 0.4 c 0,0.3 0,0.9 0.1,1.5 l 0.1,2.1 0.1,1.9 0.1,1 0.1,1.3 0.1,2.3 v 2.1 l 0.2,5.7 c 0,4.1 0,4.7 0.1,4.2 0.1,-0.8 0.1,-1.2 0.2,-1.3 l 0.1,-0.6 c 0,-0.2 0.1,-0.4 0.1,-0.5 0.1,0 0.1,-0.2 0.1,-0.3 l 0.1,-0.4 c 0.1,-0.1 0.2,-0.4 0.2,-0.7 0.1,-0.3 0.1,-0.6 0.2,-0.7 l 0.1,-0.3 v -0.2 l 0.1,0.2 c 0.1,0.3 0,1.5 -0.2,2.9 l -0.2,0.9 -0.3,1.9 -0.1,0.7 -0.1,0.5 v 0.1 c 0,0.1 0,0.1 0.1,0.1 0.2,0 0.2,-0.1 0.2,-0.2 v -0.3 c 0,-0.1 0.1,-0.2 0.1,-0.2 0,-0.2 0,-0.3 0.1,-0.3 0.1,-0.1 0.2,-0.1 0.1,-0.1 0,-0.1 0,-0.2 0.1,-0.3 0.2,-0.5 0.3,-0.6 0.3,-0.7 0,0 0,-0.2 0.1,-0.2 0.1,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.1 0.1,-0.2 0,-0.2 0.3,-0.4 0.6,-0.5 h 0.3 l 0.2,0.2 c 0.1,0.1 0.3,0.2 0.3,0.3 l 0.1,0.2 c 0.1,0.2 0.2,0.5 0.3,1.6 0.1,0.9 0.1,2 0,2.8 0,0.4 0,0.4 0.1,0.4 0.1,0 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.1 0.1,-0.1 0.1,0 0.1,-0.1 0.1,-0.1 0,-0.1 0,-0.2 0.1,-0.3 0.1,-0.2 0.2,-0.3 0.2,-0.4 0,-0.1 0,-0.1 0.1,-0.2 0.1,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.3 0.1,-0.4 l 0.1,-0.6 c 0.1,-0.4 0.5,-2.3 0.6,-2.6 v -0.2 l 0.1,-0.5 v -0.5 c 0,-0.1 0.1,-0.6 0.1,-1.1 v -0.1 c 0.1,0 0.1,1.3 0,1.4 v 0.8 l -0.1,0.8 c -0.1,0 -0.1,0.2 -0.1,0.3 0,0.3 0,1 -0.2,1.5 v 0.4 c 0,0.1 -0.2,1.3 -0.3,1.6 l -0.1,0.6 c -0.1,0.3 -0.1,0.6 -0.1,0.8 l -0.3,1.5 -0.3,1.4 -0.3,1.1 c -0.3,0.8 -0.5,1.6 -0.8,2.2 l -0.3,0.9 -0.2,0.6 c -0.1,0.2 -0.1,0.5 -0.3,0.8 -0.5,1.5 -1.5,3.6 -1.7,3.7 v 0.3 l -0.4,0.6 -0.5,0.5 c -0.1,0.1 -0.1,0.1 -0.2,0.1 v -0.8 c 0,0 0.1,-0.1 0.1,-0.2 0,-0.1 0.2,-0.5 0.4,-1 0,-0.1 0.2,-0.4 0.3,-0.8 l 0.3,-0.9 c 0.1,-0.1 0.2,-0.3 0.2,-0.4 l 0.1,-0.2 0.1,-0.3 0.2,-0.5 0.2,-1.1 v -0.2 h -0.2 c -0.2,0 -0.2,0 -0.3,0.1 l -0.2,0.2 -0.6,0.8 -0.2,0.5 c -0.3,0.5 -0.4,0.6 -0.6,0.6 -0.2,0 -0.2,0 -0.4,0.7 -0.2,0.7 -0.8,2.5 -1.1,3.4 -0.2,0.6 -1,2.2 -1.3,2.7 -0.2,0.4 -0.5,0.9 -0.8,1.6 l -0.4,0.8 c -0.2,0.5 -0.2,0.5 -0.2,0.6 0,0 0.3,-0.1 0.4,-0.3 l 0.6,-0.5 c 0.1,0.1 0.1,0.4 -0.1,0.8 -0.3,0.5 -1.2,1.9 -1.6,2.3 l -0.1,0.2 -0.3,0.3 c -0.5,0.5 -1.1,1.4 -1.2,1.8 -0.2,0.3 -0.2,0.5 -0.2,0.6 v 0.2 h 0.1 c 0.2,0 0.6,-0.1 0.8,-0.3 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.2,-0.1 0.5,-0.3 1.1,-0.8 1.3,-1.3 2.9,-3.5 3.5,-5.1 l 0.2,-0.4 c 0.1,-0.1 0.2,-0.6 0.5,-1.1 l 0.2,-0.5 c 0.1,-0.3 0.4,-1.3 0.4,-1.6 0,-0.4 0,-0.4 0.5,-1.1 l 0.7,-1 c 0.2,-0.4 0.4,-0.6 0.4,-0.5 0,0 0,0.1 0.1,0.2 0,0.1 0,0.2 -0.1,0.4 -0.1,0.4 -0.1,0.6 0.1,0.7 0,0.1 0.2,-0.3 0.3,-0.7 0,-0.3 0.1,-0.6 0.2,-0.8 v -0.3 c 0,-0.1 0,-0.1 0.1,-0.2 0.1,-0.1 0.1,-0.2 0.1,-0.2 l 0.1,-0.3 0.5,-1.3 c 0.2,-0.6 0.4,-1.1 0.5,-0.9 0,0 -0.1,1.6 -0.3,2.5 0,0.4 -0.1,0.9 -0.1,1.1 l -0.1,0.6 c -0.1,0.2 -0.2,0.4 -0.3,1.4 l -0.2,0.7 c -0.1,0 -0.2,0.2 -0.2,0.3 h -0.1 c -0.1,0.1 -0.4,0.9 -0.4,1.1 v 0.3 c 0,0.1 -0.1,0.2 -0.1,0.4 l -0.2,0.4 c -0.1,0.1 -0.1,0.2 -0.1,0.2 0,0 0.1,0 0.1,-0.1 0,-0.1 0.2,-0.3 0.2,-0.4 l 0.1,-0.3 c 0.1,0 0.1,-0.1 0.1,-0.2 0,-0.1 0,0 0.1,0 v -0.3 c 0.1,0 0.1,0.2 0,0.4 l -0.1,0.6 c -0.1,0.3 -0.1,0.5 -0.3,1.2 -0.2,0.5 -0.2,0.6 0,0.7 0.3,0.4 0.3,0.6 0.1,1.4 -0.1,0.7 -0.2,1 -0.2,1.2 0,0.1 -0.1,0.4 -0.2,0.6 l -0.2,0.5 -0.1,0.2 v 0.3 c 0,0.2 -0.1,0.8 -0.1,0.9 0,0.1 0,0.1 0.1,0.1 0.1,0.1 0.2,0 0.3,-0.4 0.4,-0.7 1,-2.5 1.4,-4.2 0.2,-0.7 0.3,-1.2 0.5,-2.3 l 0.2,-0.8 c 0,-0.1 0.1,-0.3 0.1,-0.5 0,0 0.1,-0.3 0.1,-0.6 l 0.1,-1.1 0.2,-1.1 0.2,-0.7 0.1,-0.6 0.1,-0.9 c 0.2,-1.1 0.3,-1.9 0.4,-3.8 l 0.2,-1.3 c 0.2,-0.5 0.3,-1 0.4,-1.7 0.1,-0.6 0.3,-1.4 0.4,-1.7 l 0.1,-0.2 0.1,0.2 c 0,0.1 0.2,0.2 0.2,0.2 0.1,-0.1 0.3,-0.9 0.7,-2.1 0.2,-0.7 0.2,-0.9 0.4,-1.1 0,0 0.1,-0.2 0.1,-0.3 v -0.2 l 0.2,-0.4 c 0,-0.1 0.1,-0.2 0.1,-0.1 0.1,0.1 0.2,1.4 0.3,3 0,1.4 0.1,3.3 0.2,4.1 0,0.3 0.1,0.4 0.1,0.4 0,0 0.1,0 0.1,-0.1 l 0.1,-0.4 c 0.1,-0.2 0.2,-0.9 0.3,-2.8 0.1,-1.8 0.2,-3 0.5,-3.6 l 0.1,-0.5 c 0.1,-0.4 0.1,-0.5 0,-0.9 -0.1,-0.3 -0.16,-0.7 -0.16,-0.8 l -0.5,-2.7 -0.3,-1.6 -0.1,-0.8 -0.2,-1 c -0.1,-0.7 -0.2,-1.1 -0.1,-1.2 0,-0.1 0.2,0 0.3,0.5 l 0.2,0.6 0.2,0.7 c 0.1,0.3 0.2,0.6 0.3,0.7 0,0.1 0.1,0.2 0.1,0.3 v 0.1 -0.7 c -0.3,-2 -0.4,-3 -0.3,-3.2 l 0.1,-0.2 0.1,0.2 0.3,2.2 0.1,0.7 0.1,1.3 c 0.1,0.5 0.13,1.3 0.13,1.7 0.1,1.3 0.2,2.1 0.5,4.3 0.5,3 0.6,3.3 0.8,4.2 l 0.1,0.7 0.5,1.8 0.4,1.8 0.2,0.8 0.2,1.3 c 0.1,0.6 0.2,1.2 0.3,1.4 l 0.2,1.2 0.4,1.9 c 0,0.1 0,0.1 0.1,0 0.1,-0.3 0.1,-6.6 0,-7.8 l -0.1,-1.1 c 0,-0.3 -0.1,-0.6 -0.1,-0.7 -0.2,-0.3 -0.4,-1.1 -0.6,-2.2 l -0.3,-1.7 -0.3,-1.8 -0.27,-1.2 -0.2,-1.8 c -0.1,-0.6 -0.2,-1.3 -0.2,-1.5 l -0.3,-2.3 -0.2,-1 -0.2,-1.1 -0.2,-0.9 -0.1,-0.6 -0.1,-0.8 -0.4,-3.1 -0.3,-1.5 c -0.1,-0.6 -0.1,-0.9 -0.38,-2.5 -0.1,-0.8 -0.1,-0.8 0,-0.8 0.1,0 0.2,0.1 0.3,0.7 l 0.2,0.7 c 0.1,0.1 0.1,0.3 0.1,0.3 0,0 0,0.2 0.1,0.2 0,0.2 0.1,0.3 0.2,1.1 l 0.1,0.4 c 0.1,0.1 0.2,0.3 0.2,0.5 0.2,0.9 0.2,1.1 0.4,1.2 l 0.1,0.2 v 0.1 c 0.1,0.1 0.1,0.3 0.1,0.3 -0.1,0 0,0 0,0.2 0,0.1 0,0.1 0.1,0.1 0.1,0 0.2,-0.1 0.2,-0.2 -0.1,0 -0.1,-0.2 -0.1,-0.4 -0.02,-0.5 -0.2,-1.7 -0.3,-2 l -0.02,-0.4 -0.4,-2.4 -0.1,-0.8 v -0.4 c 0,0 -0.1,-0.1 -0.1,-0.2 v -0.5 c -0.1,-0.4 -0.1,-0.4 0.1,-0.3 0.1,0 0.1,0.1 0.1,0.3 0,0.1 0.1,0.3 0.1,0.3 0,0 0,0.3 0.1,0.4 l 0.1,1.1 0.2,1.4 0.1,0.9 c 0.1,0.2 0.1,0.6 0.1,0.8 0,0.3 0,0.5 0.1,0.6 v 1 c 0,0.1 0.1,0.2 0.1,0.4 0,0.2 0,0.5 0.1,0.5 v 0.4 c 0,0.1 0,0.4 0.1,0.4 l 0.1,0.7 0.3,1.6 0.1,0.8 0.3,1.4 c 0.3,1.3 0.4,2.3 0.5,3.7 l 0.3,3.6 c 0.2,0.8 0.2,1.2 0.4,3.1 0,0.5 0.1,1.1 0.1,1.3 v 0.9 c 0,0.2 0.1,0.6 0.1,0.8 v 0.5 -0.5 c 0,-1.2 -0.2,-3.2 -0.3,-4.4 l -0.4,-4.7 c -0.3,-2.4 -0.3,-3 -0.4,-3.3 l -0.2,-0.6 -0.2,-0.6 -0.2,-0.9 c -0.1,-0.4 -0.2,-1 -0.2,-1.2 l -0.3,-2.2 -0.1,-1 -0.2,-1.4 -0.2,-1.5 -0.1,-1.1 -0.2,-1.3 -0.2,-1.1 -0.1,-0.9 c -0.1,-0.3 -0.2,-0.8 -0.2,-1 l -0.2,-0.7 c -0.1,-0.2 -0.1,-0.4 -0.1,-0.5 0,-0.1 -0.1,-0.2 -0.1,-0.4 0,-0.1 -0.1,-0.3 -0.1,-0.6 l -0.1,-0.9 v -0.5 l -0.1,-0.1 h -9 z m -93.1,4 c 0,0 0.1,0.1 0,0.1 0,0.1 -0.1,0.1 -0.1,0.1 h -0.1 c 0,0 0,-0.1 0.1,-0.1 z m 7.5,3.2 c -0.2,0 -0.3,0.1 -0.3,0.2 -0.1,0.4 -0.1,0.8 0,1.4 0.1,0.3 0.1,0.8 0.1,1.2 l 0.2,1.2 c 0.3,2.1 0.4,2.8 0.4,5.5 0,1.9 0,2 -0.1,2.2 -0.2,0.2 -0.2,0.4 -0.2,2.1 v 5.7 l 0.2,1.8 c 0,0.5 0.1,0.8 0.1,0.9 0,0 0.1,0.3 0.1,0.5 0.1,0.7 0.2,1.4 0.3,1.4 0.1,0 0.1,0 0,0 -0.1,0 0,-0.1 0,-0.2 0.1,0 0.1,-0.3 0.2,-1.1 v -4.9 c 0,-3.7 -0.1,-5.5 -0.3,-5.7 -0.1,0 -0.1,-0.1 0,-0.6 0.2,-0.4 0.2,-0.7 0.1,-2.1 0,-1.4 0,-1.6 0.1,-1.6 0.1,0 0.1,0.1 0.1,0.2 0,0.2 0,0.3 0.8,2.5 0.5,1.4 0.7,1.9 0.9,2.4 l 0.3,0.9 0.3,0.8 0.2,0.7 0.7,1.5 0.6,1.6 c 0.5,1.3 1.7,3.8 1.9,3.9 v 0.2 h 0.1 l 0.1,0.2 c 0.2,0.1 0.2,0.3 0.2,0.3 0,0.1 0,0.1 0.1,0.1 0.1,0 0.1,0 0.1,0.1 -0.1,0.1 3,3.2 4.1,4.1 l 0.8,0.7 c 0.3,0.3 2.1,1.6 2.1,1.5 0,-0.1 0,0 0,0 0,0 0.1,0.1 0.1,0 0,-0.1 0.1,0 0.2,0 0.1,0.1 0.5,0.1 0.5,0 v -0.1 c -0.1,0 -0.4,-0.6 -0.4,-0.6 l -0.5,-0.5 c -1.3,-1.5 -3.4,-4.1 -3.7,-4.6 l -0.8,-1.2 c -0.4,-0.5 -1,-1.8 -1.4,-2.6 l -0.2,-0.4 c -0.1,-0.1 -0.4,-1.1 -0.7,-2 l -0.5,-1.3 c -0.4,-0.9 -0.5,-1.5 -1.1,-3.4 l -0.3,-1.1 -0.3,-1.1 c -0.1,-0.5 -0.6,-1.2 -0.8,-1.2 -0.2,0 -0.3,0 -0.3,0.1 -0.3,0.2 -0.3,1 0,2.6 0,0.7 0.1,1.3 0.1,1.4 0,0.2 -0.1,0.2 -0.3,-0.3 -0.3,-0.6 -0.5,-1.2 -1.1,-3 -0.8,-2.5 -1.1,-3.6 -1,-4.4 l 0.1,-0.9 c 0.1,-0.7 0.1,-0.9 -0.2,-1.3 -0.2,-0.4 -0.4,-0.5 -0.5,-0.4 -0.1,0.1 -1,0 -1,0 l 0.3,-0.6 c 0.4,-0.4 0.4,-0.7 0.3,-0.8 -0.1,0 -0.2,-0.1 -0.2,-0.2 -0.1,-0.1 -0.3,-0.4 -0.4,-0.7 l -0.5,-0.6 c 0,-0.1 -0.1,-0.1 -0.2,-0.1 z m -8.2,0.9 v 0.7 -0.6 z m 72.7,14.5 c -0.1,0 -0.1,0.1 -0.3,0.1 -0.3,0.2 -1.1,1 -1.5,1.8 l -0.3,0.6 c -0.1,0.2 -0.2,0.3 -0.2,0.4 0,0.1 -0.1,0.1 -0.1,0.1 -0.1,0 -0.2,0.2 -0.3,0.5 -0.1,0.2 -0.3,0.5 -0.4,0.7 l -0.2,0.3 c 0,0.1 -0.1,0.2 -0.2,0.4 l -0.3,0.5 -0.1,0.2 -0.3,0.3 -0.7,0.9 -0.7,0.8 c -0.3,0.4 -0.6,0.6 -0.7,0.7 l -0.1,0.1 c 0.1,0 -0.4,0.6 -1,1.3 l -0.7,0.7 c -0.9,1.1 -3,3 -3.2,3 -0.1,0 -0.6,0.4 -0.7,0.6 l -0.3,0.2 -0.8,0.5 c 0,0 -0.1,0.1 -0.2,0.1 h -0.2 c 0,0.1 0,0.1 0.1,0.1 0.2,0 0.2,0.2 0,0.2 0,0.1 -0.1,0.1 -0.2,0.2 l -0.3,0.2 -0.3,0.2 c 0,0.1 -0.1,0.1 -0.2,0.1 l -0.1,0.1 -0.1,0.2 c 0,0 -0.1,0.1 -0.3,0.2 -0.1,0.1 -0.3,0.2 -0.5,0.3 -0.2,0.1 -0.3,0.1 -0.4,0.3 -0.1,0.1 -0.1,0.1 -0.1,0.2 0.1,0.1 0,0.1 0,0.1 -0.2,0 -0.2,0 0,0.1 0,0 0.3,-0.1 0.6,-0.1 h 0.6 l 0.2,-0.1 c 0,0 0.1,0 0.1,-0.1 h 0.1 c 0,0 0.1,0 0.2,-0.1 0.1,0 0.2,-0.1 0.2,-0.1 l 0.2,-0.1 h 0.1 c 0,0.1 0.1,0 0.1,0 l 0.3,-0.2 c 0.1,0 0.5,-0.2 0.8,-0.4 0.6,-0.3 0.7,-0.4 1.3,-0.6 l 0.4,-0.1 c 0.1,0 0.2,-0.1 0.2,-0.1 0.1,0 0.3,-0.1 0.3,-0.2 0,0 0.3,0 0.6,-0.2 0.5,-0.2 0.5,-0.3 0.5,-0.3 l -0.2,-0.1 0.3,-0.2 c 0.6,-0.3 1.1,-0.8 1.7,-1.4 0.4,-0.3 0.8,-0.7 1.1,-0.8 0.5,-0.4 0.7,-0.6 0.7,-0.8 0,-0.2 0.4,-0.7 0.9,-1.3 0.5,-0.6 0.9,-1.2 1.4,-2 l 0.5,-0.8 0.3,-0.4 0.4,-0.5 0.2,-0.2 c 0,-0.1 0,-0.1 0.1,-0.1 l 0.3,-0.3 c 0.1,-0.2 0.3,-0.4 0.4,-0.5 0,-0.1 0.2,-0.3 0.3,-0.4 l 0.5,-0.6 0.3,-0.4 c 0.1,-0.1 0.2,-0.3 0.4,-0.5 l 0.4,-0.6 c 0,0 0.1,-0.1 0.1,-0.2 0.2,-0.2 -0.1,-0.3 -0.4,-0.2 h -0.2 l 0.1,-0.2 0.1,-0.5 c 0,-0.3 0,-0.4 -0.1,-0.5 l -0.2,-0.1 z m -70,0.3 v 1.6 l 0.1,1 c 0,0.3 0.1,0.7 0.1,0.7 0,0.1 0.1,0.2 0.1,0.5 0,0.1 0,0.4 0.1,0.4 0,0 0.1,0.2 0.1,0.3 0,0.2 0.1,0.4 0.1,0.5 l 0.1,0.1 c 0.1,0 0.2,-0.8 0.2,-1 v -0.6 c 0,-0.2 0,-0.5 -0.1,-0.7 0,-0.3 -0.1,-0.5 -0.1,-0.6 0,-0.1 0,-0.3 -0.1,-0.4 v -0.8 c -0.1,-0.1 -0.1,-0.2 -0.1,-0.3 -0.1,-0.5 -0.2,-0.9 -0.3,-0.9 z m 73.8,3 -0.3,0.2 -0.2,0.3 -0.3,0.3 c -0.2,0.4 -0.6,0.7 -1.2,1.5 l -0.5,0.7 c -0.1,0.1 -0.1,0.5 -0.2,0.8 -0.1,0.4 -0.2,0.8 -0.3,1 l -0.4,1.2 c -0.1,0.2 -0.1,0.3 -0.1,0.4 0,0.1 0,0.2 -0.1,0.3 -0.1,0.6 -0.2,0.9 -0.2,1 -0.1,0.1 -0.1,0.3 -0.1,0.4 0,0.1 0,0.2 -0.1,0.2 0,0.1 0,0.3 -0.1,0.4 -0.2,0.6 -0.2,0.8 -0.2,1.1 -0.1,0.1 -0.1,0.2 -0.1,0.4 0,0.1 -0.1,0.3 -0.1,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0,0.3 -0.1,0.4 v 0.3 c 0,0.1 -0.1,0.2 -0.1,0.4 l -0.1,0.6 c -0.1,0.5 -0.3,1 -0.4,1.2 v 0.2 l -0.1,0.5 -0.2,0.6 c -0.1,0.1 -0.1,0.2 -0.2,0.2 l -0.2,0.5 v 1.3 c 0.1,1.1 0.1,1.3 0.2,1.4 h 0.1 v 0.2 h 0.1 c 0.1,0 0.4,-0.7 0.4,-0.8 l 0.1,-0.1 c 0,0 0.1,-0.1 0.1,-0.2 0,-0.1 0.1,-0.3 0.2,-0.5 l 0.2,-0.4 c 0,-0.2 0.2,-0.7 0.4,-0.7 0.1,-0.1 0.4,-0.7 0.4,-1 0.1,-0.4 0.3,-0.9 0.4,-1.3 0.2,-0.8 0.3,-1 0.7,-1.4 l 0.4,-0.6 c 0,-0.1 0,-0.2 0.1,-0.2 l 0.1,-0.3 c 0.1,-0.3 0.4,-1.3 0.5,-1.5 0.4,-0.8 0.5,-1.3 0.4,-1.8 -0.1,-0.3 -0.1,-0.8 0.1,-1.3 0,-0.3 0.2,-1 0.3,-1.3 v -0.2 c 0,0 0.1,-0.2 0.1,-0.3 l 0.2,-0.5 c 0.1,-0.6 0.2,-1 0.3,-1.4 l 0.1,-0.8 c 0,-0.2 0.1,-0.5 0.1,-0.5 0,-0.3 0.1,-1 0,-1 z m 8.2,0.9 c -0.1,0 -0.1,0.2 -0.1,0.4 -0.1,0.4 -0.4,1.3 -0.5,1.5 l -0.4,1.1 -0.1,0.5 -0.1,0.4 c -0.1,0.2 -0.1,0.3 -0.1,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.4 v 0.3 c 0,0 -0.1,0.2 -0.1,0.3 0,0.1 0,0.2 -0.1,0.2 0,0 -0.1,0.2 -0.1,0.3 0,0.1 0,0.2 -0.1,0.2 0,0.1 -0.1,0.1 -0.1,0.2 v 0.3 c -0.1,0.1 -0.3,0.8 -0.3,0.9 0,0.2 0.1,0.2 0.4,-0.3 0.5,-0.5 1,-0.7 1.1,-0.4 0.1,0.2 0.1,0.2 -0.3,0.9 l -0.9,1.8 -0.4,0.8 c -0.4,0.8 -0.5,1 -1.1,2.3 l -0.6,1.4 c -0.1,0.1 -0.1,0.3 -0.1,0.5 0,0.4 -0.2,0.9 -0.6,1.9 -0.2,0.4 -0.3,0.5 -0.3,0.1 -0.1,-0.1 -0.1,-0.1 -0.1,0 0,0.1 -0.1,0.1 -0.1,0.2 -0.1,0 -0.1,0.1 -0.1,0.2 l -0.5,0.9 -0.1,0.2 -0.1,0.3 c -0.1,0.2 -0.3,0.4 -0.3,0.5 l -0.3,0.6 -0.1,0.5 -0.1,0.3 c 0,0.1 0,0.2 -0.1,0.4 l -0.2,0.7 c -0.1,0.1 -0.1,0.4 -0.1,0.5 v 0.2 l 0.1,-0.2 0.1,-0.3 c 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0,-0.1 0.1,-0.2 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.2 0.1,-0.3 0.1,-0.2 0.1,-0.3 0.1,-0.4 l 0.1,-0.2 0.1,-0.3 c 0.1,-0.3 0.3,-0.5 0.5,-0.6 0.1,-0.1 0.1,-0.1 0.1,0.2 0,0.2 -0.4,2.1 -0.6,2.7 0,0.3 0,0.4 0.3,0.3 0.3,-0.1 0.3,-0.1 0.4,0.1 0.1,0.1 0.1,0.2 0.1,0.3 0,0.1 0.1,0.1 0.1,0 l 0.1,-0.2 c 0.1,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0.1,-0.2 0.1,-0.3 0.1,-0.1 0.1,-0.2 0.1,-0.3 l 0.1,-0.3 c 0.1,0 0.1,-0.2 0.1,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 0,0 0.1,-0.2 0.1,-0.3 l 0.1,-0.3 0.1,-0.5 0.2,-0.6 c 0.1,0 0.1,-0.1 0.1,-0.2 0,0 0.1,0 0.1,-0.1 0,-0.1 0.6,-1.4 0.7,-1.7 v -0.4 l 0.1,-0.2 c 0,-0.1 0.2,-0.2 0.2,-0.4 0.2,-0.7 0.5,-1.1 0.6,-1.1 0.1,0 0.2,-0.1 0.2,-0.1 l 0.2,-0.2 0.2,-0.2 c 0,-0.1 0.2,-0.1 0.4,-0.1 0.3,0 0.3,-0.1 0.3,-0.1 l 0.1,-0.1 c 0.2,0 0.3,0.1 0.3,0.3 v 0.3 c -0.1,0.2 -0.1,0.3 -0.1,0.4 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.3 v 0.2 c -0.1,0.1 -0.2,0.2 -0.2,0.3 0,0.2 -0.1,0.7 -0.2,0.8 v 0.5 c 0,0.2 -0.1,0.3 -0.2,0.4 v 0.3 c 0,0.2 0,0.2 -0.1,0.3 v 0.2 l -0.1,0.6 c 0,0.5 -0.1,0.6 -0.2,1.2 0,0.1 -0.1,0.2 -0.1,0.2 l -0.1,0.4 -0.2,0.7 -0.2,0.7 -0.1,0.4 c -0.1,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.1 -0.1,0.2 -0.2,0.3 v 0.3 c 0,0 0,0.2 -0.1,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0,0.2 -0.1,0.2 l -0.1,0.4 -0.2,0.8 h 0.1 l 0.1,-0.2 v -0.2 l 0.2,-0.2 c 0.1,-0.2 0.7,-1.3 0.8,-1.6 0.1,-0.1 0.3,-0.6 0.4,-1.1 l 0.4,-0.9 0.4,-0.8 0.5,-1 0.5,-1 c -0.3,0.6 -0.5,0.9 -0.7,1.6 -0.6,1.3 -1.3,2.9 -1.3,3 0,0.1 0.2,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.1 0.2,0.1 0,0.1 0,0.2 -0.2,0.8 l -0.3,0.9 c 0,0.1 -0.1,0.1 -0.1,0.2 0,0.1 0,0.2 -0.1,0.3 0,0.1 -0.1,0.2 -0.1,0.2 l -0.2,0.6 -0.3,0.9 -0.1,0.4 -0.1,0.1 c 0,0 0,0.2 -0.1,0.3 0,0.1 -0.1,0.2 -0.1,0.2 l -0.1,0.6 c -0.2,0.9 -0.3,1 -0.3,1.3 0,0.2 -0.1,0.4 -0.2,0.5 v 0.7 c -0.1,0 -0.1,0.1 -0.1,0.2 0,0.2 -0.1,0.3 -0.1,0.3 v 0.3 c 0,0 0,0.2 -0.1,0.2 v 0.3 l -0.1,0.5 c 0,0.2 -0.1,0.5 -0.1,0.6 0,0.2 0,0.5 -0.1,0.7 l -0.2,0.7 c -0.1,0.1 -0.1,0.4 -0.1,0.4 -0.1,0.1 -0.1,0.2 -0.1,0.3 0,0.1 -0.1,0.2 -0.1,0.3 v 0.5 c 0,0.2 -0.1,0.4 -0.1,0.4 -0.1,0 -0.3,0.5 -0.3,0.6 0,0.1 -0.1,0.1 -0.1,0.2 -0.1,0 -0.1,0.1 -0.1,0.1 0,0 0,0.1 -0.1,0.2 l -0.3,0.6 c -0.3,0.7 -0.4,0.9 -0.7,1.3 -0.5,0.7 -1.4,1.8 -2.1,2.5 -0.6,0.6 -0.8,0.8 -0.6,0.8 0.2,0 1.4,-0.6 1.8,-0.9 l 0.4,-0.2 c 0.3,-0.1 0.8,-0.6 0.9,-0.7 0,-0.1 0,-0.1 0,0 0.1,0 -0.1,0.6 -0.4,0.9 -0.1,0.1 -0.1,0.3 -0.1,0.4 v 0.4 c -0.1,0.2 -0.1,0.2 0,0.4 0.1,0.2 0.1,0.3 -0.2,0.6 -0.2,0.3 -0.4,0.7 -0.3,0.7 v 0.1 h 0.2 c 0.1,0.1 -0.2,0.3 -0.2,0.3 0.2,0 0.1,-0.1 0,-0.1 l -0.2,0.3 c -0.1,0.1 -0.3,0.2 -0.5,0.3 -0.3,0.2 -0.3,0.2 -0.1,0.2 0.1,0 0.2,0.1 0.3,0.2 0.1,0.1 0.2,0.1 0.2,0.1 0,0 0.2,-0.1 0.3,0 v 0.3 c 0,0.1 0,0.1 0.2,0 0.1,-0.2 0.1,-0.2 0,-0.2 -0.1,0 -0.1,0 -0.1,-0.1 0,-0.1 0,0 0.1,0 0.2,0.1 0.26,-0.1 0.26,-0.2 0,-0.1 0,-0.1 0.1,-0.1 0.1,0.1 0.3,0 0.3,-0.3 0.1,-0.2 0.3,-0.7 0.5,-0.7 0,0 0.3,-0.3 0.5,-0.6 0.4,-0.5 0.6,-0.9 1.2,-2.1 0,-0.2 0.2,-0.4 0.3,-0.5 0.3,-0.5 0.5,-1.2 0.5,-2 l -0.1,-0.6 h -0.4 c -0.3,-0.1 -0.4,-0.2 -0.5,-0.7 -0.1,-0.3 -0.1,-0.5 -0.1,-0.8 v -0.5 h -0.2 c -0.2,0 -0.2,0 -0.2,-0.1 0,-0.2 0.1,-0.3 0.3,-0.8 0.1,-0.3 0.3,-0.8 0.3,-1.2 0.1,-0.7 0.2,-0.9 0.3,-1 v -0.4 c 0,-0.2 0.1,-0.2 0.1,-0.2 0,0.1 0.1,0.2 0.1,0.3 l 0.1,0.2 v -0.2 c 0,-0.1 0,-0.3 0.1,-0.4 0.1,-0.2 0.2,-0.3 0.2,-0.5 0,-0.1 0.1,-0.8 0.37,-1.7 l 0.1,-0.5 c 0,-0.1 0.1,-0.3 0.1,-0.4 0.1,-0.1 0.1,-0.1 0.1,-0.2 v -0.1 c 0.1,-0.1 0.1,-0.2 0.1,-0.2 0,-0.1 0.1,-0.2 0.1,-0.2 0.1,-0.2 0.4,-1 0.5,-1.3 0,-0.2 0.1,-0.3 0.17,-0.4 0.07,-0.1 0.1,-0.1 0.1,-0.2 -0.05,-0.1 0,-0.2 0.1,-0.3 0,-0.1 0.1,-0.4 0.1,-0.6 0,-0.2 0.1,-0.4 0.1,-0.4 l 0.1,-0.2 c 0,-0.1 0,-0.3 0.1,-0.4 l 0.1,-0.4 0.1,-0.5 v -0.6 l 0.4,-1.9 0.46,-2.1 c 0.05,-0.3 0,-0.4 -0.2,-0.2 -0.1,0.1 -0.7,1.1 -0.9,1.3 -0.1,0.1 -0.1,0.2 -0.14,0.2 0,0 -0.1,0.1 -0.1,0.2 v -0.3 l 0.1,-0.2 0.1,-0.3 0.1,-0.4 0.3,-0.7 0.2,-0.5 0.1,-0.1 c 0.04,0 0.04,-0.1 0.04,-0.1 l 0.3,-0.6 0.3,-0.6 c 0.1,-0.2 0.4,-0.8 0.5,-1.3 0.1,-0.2 0.18,-0.4 0.18,-0.5 l 0.2,-0.2 c 0.1,0 0.1,-0.2 0.1,-0.3 0,0 0,-0.1 0.1,-0.2 l 0.5,-1.2 c 0.2,-0.4 0.3,-0.8 0.5,-1.1 0.08,-0.2 0.08,-0.3 0.16,-0.5 0,-0.1 0.1,-0.1 0.1,-0.1 0.1,0 0.1,-0.1 0.1,-0.17 0,-0.07 0.1,-0.2 0.2,-0.3 0.3,-0.4 0.4,-0.5 0.6,-0.2 0.1,0.2 0.1,0.2 0.1,0.4 0,0.1 -0.1,0.3 0,0.3 0,0.1 0,0.3 -0.1,0.5 -0.1,0.4 -0.1,1.5 -0.1,1.5 v -0.1 c 0,0 0.1,-0.1 0.1,0.05 0.1,0.1 0.1,0.2 0.3,0.2 0.1,0 0.14,0.1 0.14,0.1 h -0.1 c -0.1,0 -0.1,0.1 -0.1,0.1 0,0.2 0,0.2 0.1,0.2 l 0.1,-0.1 c 0,-0.12 0.4,-0.12 0.6,-0.1 0.1,0.1 0.2,0.1 0.3,0.1 0.1,0 0.2,0 0.2,0.18 0,0.1 0,0.3 -0.03,0.3 l -0.2,0.2 c -0.1,0.1 -0.1,0.2 -0.1,0.2 0,0 -0.1,0.2 -0.1,0.3 v 0.2 l -0.1,0.2 c -0.1,0.2 -0.1,0.2 0,0.3 0.1,0.1 0.1,0 0.1,-0.1 0,-0.1 0.1,-0.1 0.1,-0.3 0,0 0.1,-0.1 0.1,-0.2 0,-0.1 0.1,-0.4 0.2,-0.4 0.1,0 0.2,-0.1 0.2,-0.2 0.1,-0.2 0.2,-0.4 0.2,-0.2 0,0.1 0.1,0.1 0.1,0.1 0,0 0.1,0 0.1,-0.1 0,-0.1 0,-0.1 0.1,-0.1 l 0.2,-0.1 v -0.4 l 0.1,-0.2 c 0,0 0.1,-0.1 0.2,-0.3 l 0.3,-0.5 c 0.35,-0.7 0.7,-1.4 0.7,-1.6 0,0 -0.14,0.1 -0.2,0.3 l -0.1,0.2 c 0.46,-1 1.3,-3.9 1.6,-5.8 l 0.1,-0.6 c 0.1,-0.4 0,-1.2 -0.14,-1.3 -0.17,-0.1 -0.17,-0.1 -0.3,0.2 -0.1,0.1 -0.3,0.5 -0.4,0.8 -0.4,0.7 -0.6,1 -0.8,1 -0.1,0 -0.2,-0.3 -0.2,-0.6 0,-0.3 0.1,-0.7 0.4,-1.2 0.4,-0.7 0.7,-1.7 0.8,-2.3 l 0.1,-0.7 c 0.1,-0.5 0.1,-0.8 0.1,-0.8 -0.1,-0.1 -0.2,0.2 -0.3,0.5 l -0.1,0.3 v 0.15 c 0,0.3 -0.6,1.5 -0.8,1.9 -0.1,0.1 -0.2,0.1 -0.2,0.1 -0.1,0 -0.2,-0.1 -0.2,-0.3 v -0.4 c -0.1,-0.5 -0.2,-1.3 -0.04,-2.2 0.1,-0.5 0,-0.6 -0.6,-0.5 -0.5,0.2 -0.9,0.1 -1.7,-0.2 -0.3,-0.1 -0.7,-0.2 -1.1,-0.3 -0.6,-0.1 -1.2,-0.2 -1.9,-0.5 l -0.5,-0.1 z m -7.2,2.3 -0.1,0.2 c 0,0.1 -0.1,0.1 -0.1,0.1 0,0 -0.1,0.1 -0.1,0.3 l -0.1,0.2 c -0.1,0 -0.1,0.1 -0.2,0.2 v 0.2 c -0.1,0 -0.1,0 -0.1,0.2 v 0.3 l -0.1,0.6 c -0.1,0.2 -0.1,0.5 -0.2,0.5 v 0.1 c 0,0 0,0.2 -0.1,0.2 l -0.3,0.8 c -0.1,0.4 -0.2,0.8 -0.3,0.8 v 0.3 l -0.1,0.5 -0.4,1.4 -0.4,1.2 -0.1,0.4 c 0,0.2 -0.1,0.3 -0.1,0.3 v 0.2 c 0,0 -0.3,1.1 -0.4,1.6 -0.1,0.1 -0.1,0.3 -0.1,0.5 0,0.2 -0.1,0.6 -0.2,0.9 -0.1,0.5 -0.2,1.5 -0.3,2.2 -0.1,0.3 -0.1,0.7 -0.1,0.9 0,0.4 0,0.4 0.1,0.4 0.2,-0.1 0.5,-0.5 0.8,-0.8 l 0.4,-0.6 c 0.1,-0.2 0.4,-0.6 0.4,-0.8 l 0.3,-0.5 0.3,-0.6 1,-2.1 0.3,-0.6 0.2,-0.6 c 0.1,-0.1 0.2,-0.3 0.2,-0.3 v -0.3 c 0,-0.1 0.1,-0.3 0.1,-0.4 0.1,-0.1 0.1,-0.2 0.2,-0.2 v -0.2 l -0.1,-0.2 -0.2,0.3 -0.1,0.3 c -0.1,0.2 -0.2,0.3 -0.4,0.5 l -0.1,0.2 c 0,0.1 -0.1,0.1 -0.2,0.1 -0.1,0 -0.2,0.1 -0.1,0.1 0.1,0 -0.1,0.2 -0.3,0.2 -0.1,0 -0.1,0 -0.1,-0.1 0,0 0,-0.1 0.1,-0.1 h 0.1 -0.1 c -0.1,0.1 0.1,-1.1 0.2,-1.3 0,-0.1 0.1,-0.2 0.1,-0.2 0,0 0,-0.2 0.1,-0.3 l 0.1,-0.4 c 0.1,-0.2 0.1,-0.3 -0.1,-0.5 -0.2,-0.1 -0.2,-0.2 -0.2,-0.5 -0.1,-0.5 0.2,-1.8 0.5,-2.5 0.1,-0.1 0.1,-0.2 0.1,-0.2 0,0 0.1,-0.1 0.1,-0.2 0.1,0 0.2,-0.2 0.2,-0.3 l 0.2,-0.3 c 0.1,0 0.1,-0.2 0.1,-0.2 l 0.1,-0.1 c 0.2,-0.3 0.5,-1.2 0.5,-1.2 v -0.2 z m 25.6,3.5 c -0.1,0 -0.1,0.1 -0.1,0.2 0,0.1 -0.1,0.1 -0.1,0.1 0,0 -0.1,0.1 -0.1,0.3 0,0.2 0,0.2 -0.1,0.2 0,0 -0.1,0.1 -0.1,0.2 0,0.1 0,0.3 -0.1,0.3 0,0.1 -0.1,0.3 -0.1,0.3 0,0.1 0,0.2 -0.1,0.4 l -0.1,0.5 -0.1,0.6 -0.2,0.5 c -0.1,0.2 -0.1,0.2 -0.3,0.3 l -0.2,0.1 v 2.1 c -0.1,1 -0.3,2 -0.5,2.3 -0.1,0.1 -0.1,0.1 -0.2,0 h -0.2 c -0.1,0.2 -0.1,0.2 -0.3,1.7 -0.1,1.8 -0.3,2.9 -0.6,4.3 l -0.2,1 c 0.1,0.2 0.3,-0.3 0.5,-0.9 0.3,-0.6 0.4,-0.9 0.5,-0.8 0,0.1 0.1,0.2 0.1,0.2 v 0.2 c 0,0.2 0.1,0.4 0.2,0.4 0.1,0 0.1,0.1 0.1,0.1 h 0.1 c 0.1,0 0.2,0 0.3,-0.3 l 0.3,-0.5 0.2,-0.6 0.2,-0.5 c 0.1,-0.1 0.1,0.3 0.1,0.8 -0.2,1.2 -0.7,3 -1,4.1 -0.3,0.8 -0.5,1.2 -0.6,1.3 -0.1,0.1 -0.1,0.1 -0.1,0.2 0,0.2 0.6,-0.9 0.9,-1.8 l 0.1,-0.3 0.3,-1.2 c 0.1,-0.6 0.4,-1.1 0.4,-1.2 0,-0.1 0.1,-0.3 0.1,-0.4 l 0.1,-0.3 v -0.3 c 0,0 0,-0.3 0.1,-0.3 l 0.2,-0.7 0.2,-0.7 0.2,-0.9 c 0.2,-0.7 0.2,-1.3 0.4,-2.1 0.2,-1.9 0.4,-3.8 0.4,-4.5 v -0.7 l 0.1,-0.6 c 0,-0.2 0,-0.2 -0.1,-0.2 -0.1,0 -0.2,0 -0.2,-0.2 v -0.5 c 0,-0.2 -0.1,-0.4 -0.1,-0.4 0,0 -0.1,-0.2 -0.1,-0.4 0,-0.1 -0.1,-0.3 -0.1,-0.3 -0.1,0 -0.1,0 -0.1,-0.1 -0.1,-0.1 -0.1,-0.2 -0.2,-0.1 z m -39.8,3.6 v 0.1 c 0,0.1 -0.1,0.1 -0.2,0.1 -0.1,0 -0.1,0 -0.1,-0.1 h 0.1 z m 24.1,0.5 -0.2,0.2 v 0.1 -0.1 c 0,-0.1 0,-0.2 0.1,-0.2 z m 0.1,0.1 v 0.4 c 0,0.3 0,1.5 -0.1,1.8 0,0.2 0,0.6 -0.1,0.8 l -0.1,0.5 v -0.8 c 0.1,-0.6 0.2,-2.2 0.1,-2.5 l -0.1,-0.2 z m -0.3,0.4 -0.2,0.4 c -0.4,0.5 -0.5,0.7 -0.9,1.8 -0.5,1.2 -0.9,2.3 -1.3,3.4 0.2,-0.4 1.1,-2.6 1.1,-3 l 0.2,-0.5 c 0.1,-0.1 0.2,-0.4 0.2,-0.4 l 0.6,-1.2 c 0.1,0 0.1,-0.1 0.2,-0.1 0,-0.1 0.1,-0.1 0.2,-0.2 z m 2.6,1.5 c 0.1,0 0.1,0.1 0.1,0.1 v 0.1 h 0.1 c 0.1,0 0.4,0.3 0.4,0.3 0,0 0,0.1 0.1,0.1 v 0.5 c 0,0.3 0.1,0.5 0.1,0.5 0,0 -0.1,-0.1 -0.1,-0.4 -0.1,-0.5 -0.3,-0.8 -0.5,-0.9 h -0.1 c -0.2,-0.1 -0.3,-0.1 -0.7,-0.1 -0.3,0 -0.4,0.1 -0.5,0.2 -0.2,0.2 -0.5,0.7 -0.8,1.1 l -0.2,0.3 c 0.2,-0.5 0.7,-1.1 1,-1.4 0.2,-0.1 0.2,-0.1 0.7,-0.2 h 0.5 z m -7.1,1.6 0.1,0.1 h -0.2 v -0.1 z m 4.7,0.4 v 0.1 c -0.1,0 -0.1,-0.1 -0.1,-0.1 z m 20.4,0.1 c -0.1,-0.1 -0.1,2 -0.1,3.7 0,0.8 0.1,1.6 0.2,2.2 0,0.3 0.1,0.8 0.1,1.1 l 0.1,0.8 v -5 c 0,-0.9 -0.1,-1.3 -0.1,-1.2 l -0.1,0.5 c 0,0.6 -0.1,0 -0.1,-0.9 0,-0.6 -0.1,-1.1 -0.1,-1.1 v -0.5 z m -28.6,2.5 v 0.2 z m -16.5,6.2 c -0.1,0 -0.1,0.2 -0.1,0.3 v 0.4 c 0,0.1 -0.1,0.3 -0.1,0.6 l -0.2,0.8 -0.2,0.8 -0.3,1.2 c -0.2,1 -0.2,1.1 -0.4,1.8 -0.3,1.2 -0.3,1.2 -0.3,3.3 0,1.3 0,2.1 0.1,2.3 v 1.1 c 0,0.9 0.1,2 0.1,2.5 l 0.2,0.9 0.3,1 c 0,0.2 0.1,0.6 0.1,0.9 0,0.5 0.2,1 0.8,3.5 0.4,1.2 0.4,1.2 0.8,2 0.4,0.6 0.6,0.9 0.8,1.1 0.3,0.2 0.4,0.3 0.4,0.2 0,-0.1 0.3,-0.1 0.6,0.1 0.6,0.4 1,0.6 1.4,0.7 0.1,0.1 0.3,0.1 0.4,0.1 0.1,0 0.3,-0.1 0.3,-0.2 0,-0.1 -0.8,-1 -1.1,-1.1 0,-0.1 -0.1,-0.1 -0.1,-0.1 0,0 0,-0.1 -0.1,-0.2 -0.1,-0.1 -0.1,-0.1 0,-0.3 0,0.1 -0.3,-0.1 -0.3,-0.3 -0.1,-0.1 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.1,0 -0.1,-0.1 0,-0.1 -0.2,-0.3 -0.4,-0.6 -0.4,-0.4 -0.8,-1 -0.9,-1.1 l -0.1,-0.1 c -0.2,-0.1 -0.3,-0.6 -0.4,-1.2 0,-0.6 -0.3,-1.5 -0.3,-1.8 -0.1,-0.1 -0.1,-0.2 -0.1,-0.3 v -0.3 c -0.1,-0.1 -0.2,-0.6 -0.3,-2.2 l -0.3,-3 c 0,-0.2 -0.1,-0.4 -0.1,-0.6 v -3.5 c 0,-3.3 0,-3.7 0.3,-5.7 0.2,-0.7 0.2,-1.2 0.2,-1.5 0,-0.2 0.1,-0.3 0.1,-0.3 0.1,0 0.2,-0.7 0.1,-0.7 z m 2.5,1.4 -0.1,0.2 c -0.1,0.2 -0.2,0.3 -0.2,0.4 0,0.1 -0.1,0.2 -0.1,0.3 v 0.3 c 0,0.1 -0.1,0.2 -0.1,0.3 -0.2,0.7 -0.5,2.3 -0.8,3.6 l -0.1,0.8 c -0.1,0.5 -0.2,1.5 -0.2,2.7 0,0.9 -0.1,1.1 -0.2,1.5 -0.1,0.4 -0.1,0.5 -0.1,1.3 0,0.6 0.1,1.1 0.1,1.3 0,0.2 0.1,0.4 0.1,0.5 0,0.2 0,0.2 0.1,0.3 l 0.1,0.6 0.2,0.7 0.1,0.5 c 0.1,0.4 0.1,0.8 0.2,0.9 0.1,0.1 0.1,0.2 0.1,0.2 0,0.1 0.1,0.2 0.3,0.2 0.1,0 0.1,0 0.1,0.1 0,0.1 0,0.1 0.1,0 0.1,-0.1 0.1,-0.1 -0.1,-0.1 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.2 -0.1,-0.4 -0.1,-0.2 -0.2,-0.3 -0.2,-0.6 -0.1,-0.3 -0.1,-0.3 0.1,-0.5 0.1,-0.2 0.3,-0.3 0.4,-0.1 0.1,0.1 0.6,0.9 1.1,1.5 0.2,0.5 0.6,0.9 0.7,1 l 0.2,0.3 c 0.3,0.4 0.7,0.9 0.9,1 0.5,0.4 0.6,0.4 1,0.6 l 0.4,0.2 v -0.2 c -0.1,-0.2 -0.5,-0.6 -0.7,-0.8 l -0.2,-0.1 -0.4,-0.6 -0.5,-0.7 -0.2,-0.3 c -0.1,0 -0.1,-0.1 -0.1,-0.1 0,0 -0.1,-0.3 -0.3,-0.5 l -0.3,-0.6 -0.1,-0.2 c -0.3,-0.3 -0.5,-0.6 -0.9,-1.4 l -0.4,-0.9 -0.1,-0.7 c 0,-0.4 -0.1,-0.8 -0.1,-1 0,-0.3 -0.1,-2.4 -0.1,-3.4 v -0.3 0.1 c -0.1,-0.1 0,-4 0.2,-4.6 0.2,-0.5 0.2,-1.1 0.2,-1.5 0,-0.4 0,-1.3 -0.1,-1.6 l -0.1,-0.1 z m 21.4,4.9 c -0.2,0 -0.5,0 -0.7,0.1 -0.6,0.1 -2.1,0.5 -2.5,0.7 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0.2 -0.1,0.2 -0.1,0.4 0,0.1 0,0.4 -0.1,0.4 -0.1,0.2 -0.1,0.3 -0.1,0.5 v 0.3 l -0.1,0.5 -0.1,0.5 c -0.1,0.7 -0.3,1.5 -0.3,1.8 0,0.3 0,0.4 0.1,0.5 0.1,0.1 0.3,0.2 0.3,0.2 0.3,0.1 0.5,0.1 0.8,0 0.4,-0.1 1.6,-1 2.3,-1.4 l 1.5,-1.1 0.2,-0.2 0.5,-0.4 c 0.4,-0.3 1.5,-1.3 1.5,-1.5 0.1,-0.1 0,-0.1 -0.5,0.2 l -0.8,0.4 c -1.2,0.7 -1.6,0.8 -2.3,0.8 -0.3,0 -0.4,0 -0.5,-0.1 l -0.2,-0.1 0.3,-0.2 c 0.3,-0.2 0.6,-0.5 0.6,-0.7 0,-0.2 0.4,-0.6 0.6,-0.7 0.1,0 0.2,-0.1 0.2,-0.2 l 0.2,-0.1 c 0.1,0 0.5,-0.4 0.5,-0.4 v -0.2 c 0,-0.1 0,-0.1 -0.2,-0.2 -0.1,-0.1 -0.3,-0.1 -0.5,-0.1 z m -7.2,10.3 c 0.2,0 0,0.5 -0.1,0.6 -0.2,0.1 -0.2,0.1 -0.2,0 0,-0.1 0.2,-0.6 0.2,-0.6 z m -58.7,3 v 0.1 c -0.1,0.2 0,0.4 0.1,0.6 v 0.3 c 0,0 0,0.2 0.1,0.3 0.1,0.5 0.4,2.6 0.5,3.9 0.2,2 0.1,3.6 -0.2,4.7 -0.2,0.8 -0.7,1.8 -1.3,2.4 l -0.5,0.6 -0.5,0.5 c -0.1,0 -0.3,0.1 -0.3,0.2 h -0.4 c -0.1,0 -0.1,0 -0.1,0.1 l -0.2,0.1 c -0.1,0.1 -0.4,0.4 -0.5,0.4 0,0 -0.1,0 -0.2,0.1 0,0.1 0,0.1 0.1,0.1 0.1,0 0.3,-0.1 0.3,-0.1 l 0.4,-0.1 c 0.3,-0.1 0.4,-0.1 1,-0.1 h 0.8 l 0.3,-0.1 c 0.4,-0.1 0.4,-0.2 0.7,-0.5 0.5,-0.4 0.6,-0.8 0.9,-2.2 l 0.4,-2.5 c 0.1,-0.3 0.1,-0.4 0.3,-0.3 0.1,0 0.1,1.4 0,2.1 l -0.2,2.2 v 1.7 c 0,0.2 -0.1,0.3 -0.1,0.3 0,0.1 0.1,0 0.7,-1.4 0.5,-1.1 0.7,-1.4 0.6,-1.3 l -0.1,0.1 c 0,0.2 0,-0.2 0.1,-0.7 l 0.1,-0.7 c 0.1,-0.2 0.1,-0.3 0.1,-0.4 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0,-0.4 0.1,-0.6 v -0.7 c 0.1,-0.2 0.1,-0.4 0.1,-0.7 0,-0.9 0.1,-1.9 0.2,-2.1 0.1,0 0.1,-0.2 0.1,-0.3 0,-0.2 0.2,-0.5 0.3,-0.7 0.1,-0.1 0,-0.1 -0.1,0 -0.2,0.2 -0.2,0.3 -0.2,0.4 0,0.2 -0.1,0.3 -0.1,0.1 0,-0.3 -0.1,-0.8 -0.1,-0.8 0,-0.1 -0.1,-0.3 0,-0.3 0.1,0 0.1,0 0.1,-0.1 v -0.3 c 0,-0.1 0,-0.1 -0.1,-0.2 0,-0.1 -0.1,-0.2 -0.1,-0.6 0,-0.4 0,-0.4 -0.1,-0.4 v 0.1 c 0,0 -0.1,0.2 -0.1,0.3 0,0 -0.1,0 -0.1,0.1 0,0.1 0,0 -0.1,0.1 0,0 -0.1,0 -0.1,0.1 0,0.1 -0.1,0.1 -0.2,0.1 -0.2,0 -0.2,0 -0.3,-0.1 -0.1,-0.1 -0.1,-0.3 -0.1,-0.3 l -0.2,-0.3 -0.1,-0.4 c -0.1,-0.3 -0.1,0.2 -0.1,1.4 0,1.1 0,1.3 -0.1,1.4 0,0 0,0.1 0,0 0,0 -0.1,-0.1 -0.1,-0.2 0,0 -0.1,-0.3 -0.1,-0.5 l -0.1,-0.6 -0.2,-0.7 c -0.1,-0.9 -0.4,-1.6 -0.7,-2.7 -0.1,-0.4 -0.1,-0.6 -0.2,-0.6 z m 45.3,1.3 c -0.1,0.1 0.3,0.8 0.8,1.4 0.4,0.5 1.8,1.8 1.9,1.8 h 0.2 c 0.2,0.1 0.8,0.2 1.3,0.3 0.6,0.1 1.6,0.1 2.1,0 0.4,0 0.8,-0.2 0.9,-0.3 0.1,-0.1 0.6,-0.5 1.1,-0.7 0.5,-0.2 0.7,-0.3 0.5,-0.4 H 541 c -0.5,-0.1 -0.6,-0.1 -0.8,0 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.38,0 -1.7,-0.4 -1.9,-0.6 -0.1,-0.1 -0.1,-0.1 -0.17,-0.1 -0.07,0 -0.93,-0.6 -1.44,-1 -0.1,-0.1 -0.3,-0.2 -0.3,-0.2 z m 11.1,1.6 c 0.1,0 0.1,0.1 0.2,0.2 0,0.1 0,0.1 -0.1,0.1 -0.2,0 -0.2,0 -0.1,-0.1 0,-0.1 0,-0.1 -0.1,-0.1 -0.2,0 -0.2,-0.1 -0.1,-0.2 h 0.1 z m 0.3,0.1 c 0,0 0,-0.1 0.1,-0.1 z m -0.9,0.2 c 0.1,0 0.2,0 0.2,0.1 0,0.2 0,0.2 -0.2,0.1 -0.1,-0.1 -0.1,-0.1 0,-0.1 z m -4.9,1.2 c 0.1,0 0.1,0 0.1,0.1 h -0.2 c -0.1,0 -0.1,0 0,0 l 0.3,-0.1 z"
-         id="path5230"
-         inkscape:connector-curvature="0"
-         style="fill:#b4b3b7;stroke-width:0.02" />
-      <path
-         d="m 524.5,60.27 c -2.85,0.05 -3.67,0.1 -3.9,0.24 -0.1,0.1 -0.23,0.1 -0.3,0.1 -0.08,0 -0.4,0.1 -0.76,0.2 -0.93,0.5 -2.27,0.7 -3.3,0.7 h -4.2 c -0.4,0 -0.7,0.1 -0.65,0.2 0,0.1 -0.6,0.2 -1.6,0.2 -0.2,0 -0.3,0.1 -0.3,0.2 0,0.1 -0.2,0.1 -0.4,0.1 -0.3,0 -0.4,0 -0.5,0.1 0,0.1 -0.3,0.2 -0.7,0.2 -0.3,0.1 -0.7,0.1 -0.8,0.2 -0.1,0.1 -0.3,0.1 -0.3,0 -0.1,0 -0.2,0 -0.3,0.1 0,0.1 0.1,0.2 0.2,0.2 0.6,0 0.2,0.6 -1,1.2 -0.5,0.3 -1.1,0.6 -1.2,0.7 -0.1,0.2 -0.3,0.3 -0.4,0.3 -0.1,0 -0.2,0.1 -0.4,0.2 -0.1,0.1 -0.4,0.3 -0.7,0.5 -0.3,0.2 -0.6,0.4 -0.7,0.5 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.1,0 -0.2,0.2 -0.4,0.3 -0.2,0.1 -0.3,0.2 -0.4,0.1 h -0.4 0.3 c 0.2,0.1 0.6,-0.2 1.5,-0.7 0.6,-0.4 1.2,-0.8 1.3,-0.8 0,0 0.7,-0.3 1.4,-0.8 2.8,-1.7 1.2,-1.7 -2.6,-0.1 l -2.2,1 c -0.6,0.3 -1.1,0.6 -1.3,0.6 l -1.1,0.6 c -1.5,0.8 -4.2,2.7 -6.7,4.9 -0.5,0.5 -1.3,1.1 -1.7,1.5 l -1.1,1 c -0.2,0.3 -0.9,0.9 -1.5,1.3 -0.6,0.5 -1.4,1.3 -1.8,1.8 l -2.6,3 c -4.2,4.9 -5,6.1 -7.9,11.4 -0.4,0.6 -0.7,1.2 -0.7,1.3 -0.2,0.3 -1.9,4.4 -1.8,4.7 0,0.1 0.1,-0.1 0.3,-0.3 1.7,-3.6 2.5,-5.2 3.8,-7 4,-6 7.5,-9.9 11.9,-13.6 1,-0.8 2,-1.7 2.4,-2 0.7,-0.7 2.5,-2.1 4.7,-3.5 0.9,-0.5 1.7,-1.1 1.6,-1.3 l 0.1,0.2 c 0.2,0.1 -0.1,0.3 -0.4,0.5 -1.4,0.8 -5.6,3.8 -5.6,4 0,0.2 0.2,0 1.4,-0.8 3.1,-2.4 4.7,-3.3 6.5,-3.6 0.7,-0.1 1.4,-0.2 1.5,-0.3 l 0.3,-0.1 c -0.2,0.1 -0.3,0.2 -0.7,0.2 -0.6,0.2 -1.2,0.3 -1.4,0.3 -0.3,0 -0.3,0 0,0.2 0.2,0.1 0.6,0.1 1,0 0.3,-0.1 0.8,-0.1 1.1,0 0.3,0 1,-0.1 1.9,-0.4 2.4,-0.8 4.7,-0.7 4.7,0 0,0.5 0.3,0.4 1.1,-0.2 0.4,-0.3 0.8,-0.5 0.8,-0.5 0.1,0 0.4,-0.2 0.8,-0.5 l 1.2,-0.7 c 0.2,-0.1 0.5,-0.2 0.5,-0.3 0.2,-0.1 1,-0.6 1.5,-0.7 l 1.4,-0.4 c 0.5,-0.2 0.9,-0.3 1.1,-0.3 0.3,0 2.2,-0.7 2.3,-0.9 0.1,0 0,-0.1 0,-0.1 1.2,0.1 4.5,0.6 4.8,0.8 0.1,0.1 0.7,0.2 1.3,0.3 2.4,0.4 4.8,1.6 7.6,3.6 1.7,1.2 2.3,1.9 3,2.9 0.6,0.8 0.3,0 -0.7,-1.9 -0.5,-1 -0.9,-1.8 -0.8,-1.7 0.5,0.3 0.3,0 -0.6,-1.5 -1.1,-1.8 -1.3,-2.3 -1.1,-2.8 0.2,-0.5 0.1,-0.8 -1,-1.4 -0.8,-0.5 -2.1,-1.5 -1.9,-1.6 0,0 -0.5,-0.1 -1.1,0 -0.7,0.1 -1.1,0 -0.9,-0.1 H 525 Z m 6.82,0.44 c -0.14,0 -0.33,0 -0.5,0.1 -0.67,0.2 -0.65,0.2 2.04,1.1 3.63,1.3 5.86,2.3 8.98,3.8 4.43,2.2 10.77,6 12.28,7.4 0.9,0.8 2.3,2.8 3.8,5.3 0.45,0.8 1.3,2.2 1.9,3 2.65,3.9 5.5,9.2 6.6,12.3 0.26,0.8 0.76,2.4 1.1,3.6 0.35,1.3 1.25,4.1 1.98,6.3 1.6,4.7 1.96,6.3 2.5,10.5 0.62,4.7 0.98,7.3 1.4,9.7 l 0.9,5.8 c 0.9,6.2 1.6,10.8 1.7,11.2 0.14,0.9 0.14,0.1 -0.15,-2.7 -0.22,-1.6 -0.5,-4 -0.8,-5.3 -0.6,-3 -0.6,-3.4 -0.74,-8.2 0,-4.5 -0.1,-5 -0.9,-9.4 -0.3,-1.8 -0.7,-4 -0.8,-4.9 -0.1,-0.8 -0.3,-2.5 -0.6,-3.6 -0.3,-1.1 -0.6,-3 -0.9,-4.2 -0.3,-1.4 -0.6,-2.6 -0.9,-3.3 -0.3,-0.5 -1,-2.7 -1.7,-4.9 -0.6,-2.1 -1.4,-4.6 -1.8,-5.4 -0.7,-1.8 -2.1,-4.6 -2.4,-4.7 0,-0.1 -0.1,-0.1 0,-0.1 0.2,0 -2.1,-3.9 -3.1,-5.3 -2.3,-3.1 -7.8,-7.8 -12.7,-10.8 -2,-1.1 -6.8,-3.7 -6.8,-3.6 0,0.1 -0.2,0 -0.4,-0.1 -0.2,-0.1 -0.4,-0.2 -0.4,-0.1 0,0.1 -0.2,0 -0.3,-0.1 -0.2,-0.1 -0.4,-0.2 -0.4,-0.1 0,0.1 -0.1,0 -0.2,-0.1 -0.3,-0.2 -1.7,-0.7 -2.3,-0.8 l -0.9,-0.1 c -0.2,0 -0.5,-0.1 -0.6,-0.1 -0.1,0 -0.3,-0.1 -0.4,-0.1 h -0.2 c 0,0.1 -0.2,0 -0.3,0 -0.1,-0.1 -0.3,-0.1 -0.4,-0.1 -0.1,0 -0.4,-0.1 -0.7,-0.1 -0.7,-0.1 -1.5,-0.2 -1.9,-0.2 -0.2,0 -0.5,-0.1 -0.5,-0.1 -0.1,-0.1 -0.1,-0.1 -0.4,-0.1 z m -23.3,1.7 c 0.2,0 0.3,0.1 0.2,0.2 -0.15,0.2 -0.9,0.3 -0.9,0.2 0,-0.1 0.2,-0.2 0.43,-0.2 h 0.26 z m 9.4,1.7 c -0.96,0.1 -3.06,0.6 -5.36,1.2 l -2.03,0.6 -1.8,-0.2 c -1.56,-0.1 -1.93,-0.1 -2.86,0.1 -1.33,0.4 -2.34,0.9 -3.5,2.1 -0.26,0.3 -0.45,0.4 -0.63,0.6 0.26,-0.2 0.56,-0.5 0.73,-0.7 0.55,-0.7 2.03,-1.6 2.64,-1.7 0.4,-0.1 0.9,-0.2 1.1,-0.3 0.3,-0.1 0.7,-0.2 0.8,-0.2 l 1.5,0.2 c 0.7,0 1.4,0.1 1.6,0.2 0.4,0.1 0.7,0 2.9,-0.6 2.3,-0.7 3.9,-1 5,-1.1 z m -16.77,2.6 -0.02,0.1 c 0,0.1 -0.1,0.2 -0.22,0.2 -0.12,0 -0.5,0.3 -1,0.6 l -0.8,0.6 -0.4,0.4 c 0,0 -0.5,0.4 -0.6,0.4 l -0.1,0.1 h 0.1 c 0.3,0 0.6,-0.3 0.7,-0.4 0.1,-0.1 0.3,-0.2 0.4,-0.2 0.1,0 0.4,-0.1 0.6,-0.4 0.5,-0.3 1,-0.6 1.5,-0.8 z m -1.67,1.9 c 0.1,0 0.18,0 0.2,0.1 0.05,0.1 0.03,0.2 -0.03,0.2 -0.08,0 -0.4,0.1 -0.72,0.2 -0.36,0.1 -0.53,0.1 -0.44,0 0.1,-0.2 0.7,-0.3 0.9,-0.3 z"
-         id="path5295"
-         inkscape:connector-curvature="0"
-         style="fill:#e1e0e2;stroke-width:0.02" />
-      <path
-         d="m 519.4,93.96 c -0.06,0 0,0.75 0.07,1 0.05,0.15 0.1,0.44 0.22,1.3 0,0.23 0,0.45 0.1,0.5 v 0.68 c 0,0.1 0.1,0.56 0.2,1.04 0.4,1.95 0.5,2.95 0.4,2.95 -0.1,0 -0.4,1.1 -0.3,1.25 0,0.07 0.1,0.07 0,-0.03 -0.1,-0.04 -0.1,-0.1 0,-0.1 v -0.2 c 0,-0.17 0.2,-0.52 0.2,-0.63 v -0.2 l 0.1,-0.13 c 0,-0.2 0,-0.2 0,0 0,0 0,0.1 0.1,0 v -0.2 l -0.1,-0.5 c 0,-0.3 -0.1,-0.5 -0.1,-0.6 -0.2,-0.9 -0.3,-1.3 -0.4,-1.8 l -0.1,-0.5 c 0,-0.1 -0.1,-0.2 0,-0.5 V 97 l 0.1,0.3 c 0.1,0.18 0.1,0.4 0.1,0.47 0.1,0.07 0.1,0.22 0.1,0.3 0,0.07 0,0.14 0.1,0.2 0.1,0.1 0.1,-0.43 -0.1,-0.87 l -0.2,-0.6 c -0.2,-1.1 -0.3,-1.84 -0.4,-1.84 l -0.1,-0.38 v -0.45 c 0,-0.08 -0.1,-0.3 -0.1,-0.5 -0.1,-0.24 -0.1,-0.4 -0.2,-0.4 z m 0.5,3.02 c 0.02,0 0.03,0 0.04,0.02 v 0.17 c -0.02,0.03 -0.03,0 -0.03,-0.1 z m -18.34,0.35 c -0.08,0 -0.08,0 -0.08,0.03 l -0.14,0.44 -0.22,0.68 -0.15,0.48 c -0.15,0.27 -0.3,1.6 -0.22,1.8 v 0.15 -0.2 l 0.07,-0.3 c 0.08,-0.2 0.22,-0.8 0.37,-1.4 l 0.2,-0.9 v -0.5 l -0.1,-0.1 z m -0.22,0.82 c 0,-0.02 0.07,0 0.07,0.05 v 0.04 c -0.1,-0.08 0,-0.08 0,-0.15 z m -0.15,0.54 v 0.1 l -0.1,0.2 c -0.1,0 -0.1,0 -0.1,-0.1 v -0.2 z m -0.2,0.5 v 0.1 c 0,0.1 -0.1,0.1 -0.1,0.1 v -0.1 z m 38.7,3.2 c -0.1,0 0,0.6 0,0.6 v 0.5 c 0,0 0.1,0.2 0.1,0.3 v 1.1 c 0,0 0,0.3 0.1,0.4 l 0.2,0.8 0.1,0.6 v 0.3 l 0.1,0.3 c 0.1,0 0.1,0 0.1,0.1 v 0.4 l 0.2,0.8 0.4,1.2 v 0.6 c 0.3,1 0.4,1.5 0.5,1.6 l 0.1,0.1 c 0,0 0,0.2 0.1,0.2 0,0 0,-0.5 -0.1,-0.8 -0.1,-0.2 -0.1,-0.3 -0.1,-0.3 l -0.1,-0.2 c 0,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 -0.1,-0.3 -0.1,-0.3 l -0.3,-0.5 -0.3,-0.6 -0.2,-0.8 -0.3,-0.9 -0.1,-0.5 -0.2,-0.6 c -0.1,-0.6 -0.3,-0.9 -0.3,-1.1 v -0.2 c 0,0 -0.1,-0.1 -0.1,-0.2 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 -0.1,-0.2 -0.2,-0.4 l -0.2,-0.6 c -0.1,-0.6 -0.3,-1 -0.4,-1.1 -0.1,-0.1 -0.1,-0.3 -0.1,-0.3 0,-0.1 0,-0.2 -0.1,-0.2 z m 1.3,5.2 v 0.1 c 0,0 -0.1,0 -0.1,-0.1 v -0.1 z m 0.1,0.6 v 0.1 z m 0.1,0.6 v 0.3 c 0,0.1 -0.1,0 -0.1,-0.2 v -0.1 z m 0.1,0.6 v 0.7 l 0.1,0.5 0.2,0.8 c 0.1,0.2 0.1,0.5 0.1,0.6 -0.1,0.2 -0.1,0.1 -0.2,-0.2 -0.1,-0.1 -0.1,-0.3 -0.2,-0.3 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.2 0,-0.3 -0.1,-0.4 -0.1,-0.1 -0.1,-0.2 -0.1,-0.3 0,-0.1 -0.1,-0.2 -0.1,-0.3 -0.1,-0.2 -0.1,-0.3 -0.1,-0.4 0,-0.1 -0.1,-0.1 -0.1,-0.2 -0.1,-0.1 -0.2,-0.5 -0.1,-0.6 z M 473.7,151 v 0.3 c 0,0.15 0.07,0.5 0.1,0.7 0.24,1.15 0.3,1.72 0.23,1.8 0,0 -0.03,0 -0.03,-0.1 0,-0.1 0,-0.13 -0.06,-0.2 -0.08,-0.06 -0.08,-0.2 -0.15,-0.3 0,-0.1 -0.1,-0.2 -0.1,-0.2 0,0 -0.1,-0.04 -0.1,-0.15 0,0.15 0.1,0.6 0.2,1 0,0.14 0.1,0.44 0.3,0.8 0.2,0.74 0.5,1.54 0.5,1.7 l 0.2,0.43 c 0.1,0.5 0.5,1.5 0.7,1.9 l 0.1,0.3 c 0,0.24 1.6,3.46 2.3,4.7 l 0.8,1.47 c 0.7,1.3 1.3,2.35 1.3,2.78 0.2,0.75 0.2,0.97 0,0.9 -0.2,0 -1.3,-1.16 -1.6,-1.45 -0.2,-0.2 -0.6,-1.1 -1,-1.8 l -0.4,-0.9 -0.3,-0.65 -0.8,-2.07 -0.5,-1 -0.4,-0.9 c -0.1,-0.2 -0.2,-0.66 -0.4,-0.95 -0.3,-0.5 -0.3,-0.5 -0.4,-0.5 -0.1,0.1 -0.1,0.2 -0.1,0.3 0.1,0.2 0.1,0.4 0.1,0.5 l 0.3,1.2 0.1,0.6 c 0,0.2 0,0.5 0.1,0.5 l 0.1,0.3 c 0,0.1 0.1,0.3 0.1,0.5 l 0.3,0.7 0.6,1.5 0.3,0.8 c 0,0.2 0.4,0.8 0.9,1.4 0.1,0.2 0.6,0.9 1,1.6 l 1.5,2.3 1.5,1.9 c 0.1,0.1 1.1,1.3 1.2,1.5 0.2,0.3 2.4,2.5 3,3.1 1.4,1.3 2.5,2.2 3.8,3.2 0.7,0.5 1.2,0.8 2.1,1 l 1.8,0.7 c 0.7,0.2 1.2,0.4 1.3,0.4 -0.1,0 -0.4,-0.1 -0.8,-0.3 -1.2,-0.4 -2.8,-1.1 -3.5,-1.5 -2,-1.1 -5.3,-4 -7.6,-6.6 l -1.2,-1.4 c -0.7,-0.8 -1.3,-1.6 -2,-2.6 -0.5,-0.8 -0.8,-1.1 -0.7,-1.1 0,0 0.3,0.1 0.8,0.5 1,0.9 1.2,0.9 1,0.2 -0.1,-0.7 -0.7,-1.8 -1.9,-4.1 -1.8,-3.2 -2.5,-4.7 -3.5,-7.5 -0.5,-1.5 -0.6,-2 -0.6,-2.2 0.1,0 0.1,-0.2 0,-0.6 -0.1,-0.9 -0.2,-1.3 -0.2,-1.4 h 0.1 c 0.1,0.1 0.5,1.1 0.8,2 l 0.8,2.2 c 1.1,3.2 1.7,4.8 3,7 0.8,1.5 2.1,3.4 2.2,3.4 l 0.2,-0.1 c 0.1,-0.1 0.2,0 0.8,1.2 0.3,0.5 0.8,1.4 1.1,1.8 0.3,0.4 0.6,1 0.6,1 l 0.1,0.3 v 0.1 l 0.1,0.4 c 0.2,0.5 0.8,2.1 0.9,2.7 0.1,0.5 0.3,0.8 0.7,1.4 0.6,0.8 1.1,1.3 1.4,1.2 0.2,-0.1 0,-0.6 -0.7,-2.2 -0.4,-0.9 -0.6,-1.4 -0.5,-1.4 l 0.7,0.7 c 1.1,1 1.8,1.7 1.8,1.6 0.1,0 0,0 0,-0.1 0,0 -0.6,-0.6 -1.4,-1.3 -0.7,-0.7 -1.3,-1.2 -1.3,-1.2 -0.1,0.1 -0.1,0.3 0.1,0.6 0.4,0.8 0.6,1.3 0.6,1.4 0,0.1 0,0.2 0.1,0.2 0.1,0 0.4,0.8 0.3,0.8 0,0 0,0.1 0.1,0.1 0.1,0 0.1,0.2 0.1,0.2 0,0.2 -0.3,0 -0.5,0 l -0.6,-0.7 c -0.1,0 -0.1,0 -0.1,-0.1 0,-0.1 0,-0.1 -0.1,-0.1 -0.1,0 -0.2,-0.3 -0.2,-0.7 0,-0.1 -0.1,-0.3 -0.1,-0.3 0,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.1 -0.1,-0.2 l -0.1,-0.3 c 0,-0.1 0,-0.3 -0.1,-0.3 v -0.2 c 0,-0.1 -0.1,-0.2 -0.1,-0.3 l -0.1,-0.1 c 0,-0.1 0,-0.3 -0.3,-0.9 -0.1,-0.2 -0.3,-0.7 -0.7,-1.1 -0.7,-1.1 -1.2,-2 -1.8,-3.2 l -0.6,-0.8 c 0,0 -0.1,0.2 -0.1,0.3 0,0.2 0,0.3 -0.1,0.4 0,0 -0.1,0 -0.2,-0.2 -0.3,-0.3 -1.2,-1.7 -1.7,-2.5 -0.3,-0.5 -1.4,-2.7 -1.7,-3.2 -0.2,-0.3 -0.5,-1.2 -0.7,-1.8 -0.4,-1.1 -1.2,-3.5 -1.5,-4.6 -0.1,-0.4 -0.4,-1 -0.5,-1.3 -0.2,-0.3 -0.3,-0.7 -0.4,-0.9 l -0.5,-1.2 -0.3,-0.4 z m 94.8,13.43 c -0.03,0.02 -0.1,0.72 -0.3,2.23 -0.2,1.6 -0.36,3.1 -0.53,3.96 -0.1,0.35 -0.17,0.86 -0.17,1 -0.02,0.45 -0.5,2.3 -0.9,3.75 -0.2,0.63 -0.35,1.14 -0.5,1.4 -0.04,0.2 -0.2,0.5 -0.22,0.62 0,0.1 -0.13,0.4 -0.2,0.6 -0.07,0.2 -0.14,0.4 -0.14,0.5 0,0.1 0.07,0.1 0.15,0.1 0.3,-0.2 1,-1.5 1.4,-2.6 0.9,-2.3 1.3,-4.4 1.4,-6.6 0.1,-0.8 0.1,-1.6 0.2,-1.9 0,-0.5 0.1,-3 0,-3.1 h -0.1 z M 553,173 c -0.08,0.05 -0.15,0.23 -0.2,0.42 l -0.07,0.22 c -0.04,0 -0.06,0.08 -0.06,0.15 l -0.12,0.4 c -0.15,0.5 -0.22,0.9 -0.3,1.1 0,0.1 -0.07,0.4 -0.07,0.6 -0.14,0.5 -0.22,1.6 -0.22,1.7 l 0.08,0.3 c 0.07,0.2 0.07,0.2 0.14,0.1 0.08,-0.1 0.15,-0.3 0.3,-0.9 0.36,-1.5 0.66,-3.9 0.5,-4.2 h -0.06 z m -70.4,5.7 c -0.04,0 0,0.1 0.2,1 0.08,0.3 0.15,0.58 0.15,0.67 0,0.07 0.05,0.22 0.08,0.44 0.07,0.2 0.13,0.5 0.17,0.6 0.1,0.4 0.64,1.9 0.83,2.5 l 0.22,0.6 0.15,0.3 0.07,0.2 c 0,0.1 0.37,0.8 0.55,1.1 0.22,0.4 0.32,0.7 0.38,1.2 0.05,0.6 0.1,0.8 0.15,0.8 l -0.05,-0.7 c -0.06,-0.5 -0.05,-0.8 0.02,-0.8 0,0 0,0.1 -0.02,0.1 -0.05,0.2 0,0.6 0.15,1.9 l 0.1,0.7 c 0.03,0 0.08,0.4 0.1,0.8 l 0.1,1.4 c 0.04,0.3 0.08,1.6 0.08,2.7 0.03,1.8 0.02,2.2 -0.05,2.3 -0.04,0.1 -0.07,0.3 -0.07,0.4 0,0.1 0,0.2 -0.1,0.3 h 0.1 c 0.1,-0.1 0.2,-0.6 0.2,-1.4 v -0.6 l -0.2,0.6 -0.2,0.6 v 0.2 c 0,0 -0.1,0.2 -0.1,0.3 0,0.1 -0.2,0.4 -0.3,0.8 -0.1,0.4 -0.2,0.7 -0.3,0.8 l -0.1,0.5 c -0.3,0.7 -0.5,1.4 -0.6,1.5 v 0.2 c 0,0 0,0.2 -0.2,0.4 l -0.1,0.4 c 0,0.2 0.5,-0.6 0.6,-0.8 0,-0.1 0,-0.1 0.1,-0.1 0,0.1 -0.1,0.1 -0.1,0.2 0,0.2 -0.7,1.2 -1.2,1.5 -0.7,0.5 -1.5,1 -1.8,1 -0.1,0 -0.2,0.1 -0.3,0.2 0,0.1 -0.2,0.1 -0.9,0.4 l -1.2,0.5 h -0.1 l -0.5,0.1 c -1.4,0.5 -2,0.7 -2.2,1.1 -0.4,0.4 -0.4,0.4 0.1,0.6 0.2,0.1 0.5,0.1 0.6,0.1 0.2,0 0.6,0.2 0.7,0.4 0,0.1 0.2,0.1 0.2,0.1 l 0.4,0.2 c 0.2,0 0.6,0.2 1,0.3 l 0.8,0.1 c 0,0 0.1,0 0.1,-0.1 0,-0.1 0,-0.1 0.1,-0.1 l 0.2,-0.1 h 0.4 -0.2 c -0.2,0 -0.3,0 -0.4,0.2 -0.2,0.2 -0.2,0.2 -0.1,0.2 0.2,0 0.2,0.1 0.3,0.4 l 0.2,0.4 c 0,0.1 0.1,0.1 0.1,0.1 0.1,0 -0.1,-0.4 -0.2,-0.6 -0.1,-0.2 -0.1,-0.2 0,-0.3 0.1,-0.1 0.2,-0.1 0.4,-0.1 l 0.4,0.2 c 0.1,0.1 0.2,0.1 0.2,0.1 0.2,0 0.2,0.1 0.7,0.5 0.3,0.3 0.5,0.4 0.7,0.4 0.2,0 -0.6,-0.5 -0.8,-0.5 -0.2,0 -0.2,-0.1 -0.2,-0.4 l -0.1,-0.3 c -0.1,-0.1 0,-0.1 0.1,-0.2 l 0.2,-0.1 0.3,-0.1 c 0.1,0 0.4,-0.1 0.5,-0.1 0.1,-0.1 0.4,-0.1 0.4,-0.2 0.9,-0.4 2.5,-1.3 2.8,-1.6 0,-0.1 0.1,-0.1 0.2,-0.1 0.1,-0.1 0.1,-0.1 -0.1,-0.1 0,0 -0.1,0 -0.1,0.1 0,0.1 -0.1,0 -0.1,0 l -0.3,0.2 -0.5,0.2 -0.4,0.1 c -0.1,0.1 -0.2,0.1 -0.2,0.1 l -0.2,0.1 c -0.1,0.1 -0.2,0.1 -0.4,0.1 l -0.3,0.1 c 0,0.1 -0.1,0.1 -0.3,0.1 -0.1,0 -0.3,0.1 -0.5,0.1 -0.2,0.1 -0.6,0.1 -0.9,0.1 -0.5,0 -0.5,0 -0.6,-0.1 v -0.1 l 0.1,-0.1 c 0.3,-0.2 0.6,-0.4 0.9,-0.5 l 0.5,-0.2 c 0.6,-0.2 1.3,-0.5 1.4,-0.6 0.4,-0.1 0.8,-0.4 1.2,-0.7 0.4,-0.4 0.5,-0.4 0.5,-0.1 l -0.1,0.5 c -0.1,0.2 -0.1,0.2 0.1,0.2 0.1,0 0.3,-0.2 0.7,-0.6 0.7,-0.6 0.8,-0.9 1.3,-2.5 0.4,-1.1 0.4,-1.5 0.5,-2.5 0.3,-2.5 0.4,-4.5 0.2,-5.1 0,-0.3 -0.1,-0.4 -0.3,-0.3 0,0.1 -0.1,0.1 -0.1,0 -0.1,0 -0.1,-0.6 -0.1,-1.3 -0.1,-1.1 -0.2,-3.7 -0.3,-4 l -0.2,-1.5 c -0.1,-1.4 -0.2,-1.8 -0.4,-2.5 l -0.1,-0.5 c -0.2,-0.8 -0.3,-0.9 -0.9,-1.2 -0.4,-0.2 -0.6,-0.3 -0.5,-0.1 0,0 0.1,0.3 0.1,0.7 0.1,1.1 0.1,1.3 0.4,2.1 0.1,0.2 0.3,1 0.2,1 l 0.1,0.2 0.2,0.8 0.1,1.4 c 0.3,2 0.3,3.4 0.3,4.7 0,1 -0.1,1.5 -0.3,1.6 -0.1,0.1 -0.4,-0.3 -0.5,-0.5 0,-0.2 0,-0.2 -0.1,-0.2 -0.1,-0.2 -0.1,-0.8 -0.2,-1.9 0,-0.6 -0.1,-1.3 -0.1,-1.6 -0.1,-0.3 -0.1,-0.8 -0.1,-1 l -0.1,-1 -0.1,-0.9 c 0,-0.2 -0.1,-0.5 -0.2,-0.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.3 0,-0.3 -0.2,-1.3 -0.4,-1.8 v -0.2 l -0.1,0.2 c -0.1,0.2 -0.1,0.2 -0.2,0.2 l -0.2,-0.6 c -0.1,-0.2 -0.2,-0.4 -0.2,-0.5 l -0.5,-1.3 c -0.2,-0.4 -0.9,-2.3 -1.1,-2.7 -0.1,-0.4 -0.4,-0.7 -0.4,-0.6 z m 1.18,3.73 c 0,-0.03 0.02,0 0.05,0.03 v 0.27 c 0,0.14 -0.08,0.14 -0.08,0.14 0,0 0,-0.14 -0.07,-0.22 v -0.14 z m 1.74,4.14 z m 0.08,0.22 c 0.07,0.2 0.22,1.1 0.44,2.3 l 0.14,0.9 c -0.22,-1.5 -0.44,-2.7 -0.44,-2.8 0,-0.1 0,-0.3 -0.07,-0.5 z m 64.55,3 h -0.08 c 0,0.1 -0.07,0.3 -0.22,0.5 l -0.44,0.9 c 0,0.2 -0.2,0.6 -0.4,0.9 -0.1,0.3 -0.2,0.6 -0.2,0.7 0.1,0 0.2,-0.1 0.7,-0.9 0.3,-0.4 0.5,-0.9 0.6,-1.1 0.2,-0.6 0.4,-1.1 0.2,-1.2 z m -63.9,1.6 v 0.1 c 0.08,1.6 0.15,2.1 0.37,2.7 0.22,0.6 0.37,0.6 0.52,0.6 0.07,0 0.07,0 0.14,0.1 h -0.07 c -0.2,0 -0.2,0 -0.5,-0.8 -0.1,-0.4 -0.2,-1.2 -0.2,-2.4 v -0.3 z m 2.06,3.2 h 0.2 z m 0.2,0 c 0.1,0 0.1,0.2 0.2,0.4 v -0.4 z m -0.2,0 c 0.1,0.1 0,0.1 0,0.1 h -0.1 l 0.2,-0.1 z m -0.1,0.1 c 0,0.1 -0.2,0.3 -0.2,0.4 0,0.1 0,0.2 -0.1,0.3 l -0.1,0.2 -0.1,-0.2 c -0.1,-0.2 -0.1,-0.4 -0.1,-0.5 v -0.1 l 0.2,0.4 0.2,0.4 c 0.1,0 0.3,-0.4 0.3,-0.6 0,-0.1 0.1,-0.3 0.2,-0.3 z m -2.3,2.5 c 0.1,0.2 -0.1,0.8 -0.2,0.8 v 0.5 l -0.1,0.2 c 0,0.2 -0.2,0.6 -0.2,0.6 l -0.1,0.3 c 0,0.1 -0.1,0.3 -0.2,0.3 v 0.1 c 0,-0.1 0.1,-0.1 0.1,-0.2 0.1,-0.1 0.6,-1 0.7,-1.3 0.2,-0.4 0.3,-0.7 0.4,-1.2 l 0.1,-0.3 z m 1.1,0.7 h 0.1 c 0.1,0.1 -0.1,0.8 -0.5,1.5 l -0.5,0.9 c -0.2,0.3 -0.2,0.3 -0.2,0.1 0,-0.1 0,-0.1 0.1,-0.2 0.1,0 0.2,-0.2 0.3,-0.4 0.1,-0.4 0.4,-0.8 0.5,-0.9 l 0.3,-0.5 0.2,-0.4 z m 1.6,1.3 c -0.1,0.6 -0.4,1.3 -0.6,2.1 0,0.2 -0.1,0.4 -0.3,0.5 0.3,-0.4 0.8,-1.7 1,-2.6 z m -1.7,2.2 h 0.1 c 0.1,0.1 0.1,0.9 0,1 v 0.1 -0.2 c 0.1,-0.3 0.1,-0.8 0,-0.8 l -0.7,0.6 v 0.1 l 0.3,-0.2 0.5,-0.5 z m 0.8,0.4 c -0.2,0.4 -0.5,0.8 -0.6,0.8 0.2,0 0.5,-0.4 0.7,-0.8 z m -1.9,0.7 c -0.1,0.1 -0.3,0.3 -0.5,0.3 -0.1,0.1 -0.3,0.2 -0.6,0.3 0.5,-0.2 0.9,-0.4 1.2,-0.7 z m 1.3,0 h 0.1 z m -2.4,0.6 -0.6,0.3 z m -0.7,0.3 h -0.3 c -0.3,0.1 -0.8,0.4 -1.4,0.8 -0.4,0.4 -0.7,0.7 -0.6,0.7 0.1,0.1 0.5,0.1 1,0.1 0.7,0 1.1,0 1.5,-0.2 h 0.4 -0.1 c -0.2,0.1 -0.4,0.2 -0.7,0.2 -0.6,0.1 -1.9,0.1 -1.9,0 0,-0.2 1.7,-1.5 2.1,-1.5 0.1,0 0.2,0 0.4,-0.1 z m -0.3,1.8 c -0.2,0.1 -0.3,0.1 -0.6,0.3 l -1.1,0.5 c -0.2,0.1 -0.3,0.3 -0.3,0.4 0,0 0,0.1 -0.1,0.1 l 0.1,-0.1 c 0,-0.3 0.2,-0.4 1.8,-1 l 0.3,-0.2 z"
-         id="path5354"
-         inkscape:connector-curvature="0"
-         style="fill:#525767;stroke-width:0.01" />
-    </g>
+	 id="g4566"
+	 transform="matrix(0.95598021,0,0,0.71322026,21.262716,17.169503)">
+	<g
+	   id="layer1"
+	   style="stroke-linecap:round">
+	  <path
+		 id="path5225"
+		 d="m 524.08,60.17 -2.86,0.16 -2.5,0.5 -1.9,0.7 -2.73,-0.32 -3.6,0.4 -3,0.6 -2.2,0.5 -1.6,0.7 -2.4,0.9 -1.7,0.9 -1.7,0.6 -2.3,1.8 -2.5,1.9 -2.2,1.9 -2.4,2.1 -2.1,1.8 -2.2,2.4 -1.8,2.2 -3,3.5 -2.39,3.59 -1,2 -1.64,2.6 -1.03,1.9 -1.3,3.9 -0.86,2.64 -0.94,3.3 -0.96,3.17 -0.6,2.8 -0.56,3.4 -0.6,4 -0.4,3.1 -0.4,4.1 -0.4,5 -0.3,4.9 0.2,3 0.2,6.8 0.3,3.2 0.3,2.7 0.7,5.8 0.7,5.2 0.8,4.4 1.2,5.3 1.4,4.5 1.2,3 1.5,3.1 1.5,2.9 1.4,1.8 2.5,1.7 1.4,1.3 1.4,0.9 1,0.7 -1.9,-3 -2.3,-3.8 -1.1,-2.8 -1,-3.8 -0.4,-2.8 -0.5,-3.3 v -0.5 l 1.9,3 2.7,3.5 2.1,1.8 1.4,4.9 1.3,3.7 0.8,3.5 0.5,3.4 0.1,1.2 -1.3,3.9 -1.2,2.9 -2.4,1.5 -2.3,0.9 -2.1,0.7 -0.9,0.9 0.7,0.5 0.8,0.2 0.6,0.4 0.9,0.1 0.9,0.2 0.7,0.1 0.2,0.7 0.6,0.5 0.8,0.7 1,0.7 2.1,0.7 h 1.6 l 1.4,-0.3 1.7,-0.7 1.1,-1.2 0.9,-1.8 1,-1.9 0.6,-2.3 v -1.8 l 0.1,-2 0.9,-2.3 c -1.00665,-17.19308 -1.82701,-20.90677 -6.3,-34.71 l -1.5,-2.95 -1.1,-3.13 -1.2,-3.43 -0.9,-3.1 2.1,4.1 1.6,1.6 2.4,2.4 2.3,1.8 1.2,0.7 1.5,0.6 -2.1,-2.4 -3,-3.7 -1.5,-3 -1.2,-4 -1,-3.5 -0.8,-3.5 -0.6,-3.7 -0.5,-3.5 -0.2,-2 0.8,-0.7 1.7,-1.3 2,-1.9 2.4,-3.3 1.9,-2.9 1.9,-2.8 1.2,-2.2 1.4,-2.6 1.6,-3.5 1,-2.6 0.7,-2.3 1.3,-3.2 -0.2,4.4 -0.1,4.5 0.2,3.3 0.3,3.3 0.6,3.5 0.5,3.1 0.6,2.3 0.7,2.7 0.9,2.2 1,1.7 1.3,1.4 1.8,1.8 1.3,1.2 1.5,0.8 1.6,0.6 -0.9,-2.1 -0.7,-2.4 -0.4,-2.2 -0.1,-1.7 1.1,2.5 1,2.2 0.9,1.1 1.5,1.1 -0.3,-1.8 0.8,1.3 -0.6,-3.8 -0.4,-2.5 0.3,-3.7 0.3,-5.2 0.6,-4.5 0.6,-2.8 1,-3.7 0.7,-2.2 0.9,-3 0.9,-2.7 0.8,-2.6 0.9,4 1,3.4 1.1,3.3 1.3,3.9 1.6,4.2 1,2.7 1.2,2.5 1.4,2.4 1.3,2 2,2.3 1.9,2.2 0.5,0.5 -1.1,-2.9 -0.9,-2.6 1.6,2.5 1.4,2.5 2.3,3 2.1,2.1 0.9,0.8 -0.5,3.1 -0.9,3.2 -1.2,2.7 -1.4,1.7 -2.1,2.5 -1.8,1.9 -2.1,2 -1.9,1.5 -2.7,2 -1.7,0.8 1.5,0.1 2.4,-0.8 3.2,-1.5 3.3,-1.9 2.6,-1.3 -1.4,2.3 -2,3.8 -1.6,3.8 -0.9,1.9 -1.1,3.1 -0.7,2.9 -0.5,2.5 0.1,3 0.5,5.7 0.5,4.1 0.9,3.3 0.6,1.9 1,1.6 0.8,0.8 1.1,0.7 1.2,0.5 1.3,0.5 1.1,0.3 1.7,-0.2 1.2,-0.4 1.5,-0.3 1.3,-0.4 1,-0.6 0.8,-0.6 1,-1.2 0.4,-0.8 0.8,-1.5 0.7,-1.5 0.5,-1.5 0.5,-1.6 0.6,-2.3 1.6,-1 2.1,-0.9 1.9,-1.2 1.5,-1.1 1.3,-0.9 1.7,-1.4 1,-0.7 1.2,-1.5 1.2,-1.6 0.7,-1.5 0.6,-1.2 0.6,-1.8 0.6,-1.6 0.5,-1.9 0.3,-1.4 -0.2,3.1 -0.3,2.7 -0.5,2.2 -0.6,2 -1.2,2 -1.2,2 -0.4,0.8 1.3,-0.8 1.9,-1.8 1.4,-1.5 1.4,-2.4 1.2,-2.2 0.9,-3.2 0.8,-3.5 0.5,-3.1 0.2,-2.3 0.3,-3 0.3,2.6 0.2,4.3 0.2,3 0.1,4.5 -0.1,2.4 -0.2,2.5 -0.8,3.1 -0.6,2.1 -0.8,1.7 -1,1.6 -0.04,0.4 0.6,-0.3 -0.2,0.8 1,-0.5 1.3,-1.4 1.6,-2.4 1.3,-2.6 0.9,-3.1 0.7,-3.6 0.2,-3.6 v -2 l -0.2,-5.3 -0.4,-4.1 -0.3,-4.4 -0.5,-4.3 -0.5,-5.1 -0.4,-4.2 -0.5,-4.4 -0.96,-4.98 -0.2,-3.5 v -3 l -0.2,-4.06 -0.6,-2.7 -0.9,-4.6 -0.3,-3 -1.4,-4.8 -0.6,-3.7 -1.1,-2.5 -1.4,-4.58 -0.9,-3.2 -1.2,-2.9 -1.7,-3.3 -2.1,-3.7 -2,-2.8 -3,-2.9 -3.4,-2.9 -3.4,-2.5 -4.04,-2.5 -3.8,-2 -4.1,-1.6 -4.4,-1 -3.8,-0.5 -3.7,-0.3 z m -35.3,49.8 -0.66,4.1 -1.26,5 -1.72,5.1 -1.75,3.4 -0.6,0.8 0.2,-4.18 0.9,-3.3 1.4,-4.2 1.1,-3.3 z m 76.78,54.6 -1.3,3.5 -1.28,3.2 -1.8,3.6 -2.23,1.62 -2.97,1.1 2.42,-2.9 2.74,-3.3 2.12,-3.1 z M 535.4,184 l 0.23,-4.7 0.8,-5.7 2.06,-5.35 1.1,-3.93 -0.2,3.5 -1.1,4.62 0.4,2.27 0.9,-2.2 0.6,-0.1 0.6,-2 1.2,1.9 1.6,-4.5 2.8,-5.2 1.3,-2.8 -0.1,1.8 1.1,-1.6 1.6,-3.9 1.6,-4.1 1.1,-2.3 -0.3,2 -0.9,3 -1.9,5.4 -2.2,4.6 -1.7,2.8 -1,3 -1.3,7.2 0.2,3.7 1.1,-4.7 -0.2,3.6 0.5,2.5 1.4,-2.7 v 1.5 l 1.3,-3.8 1.2,-2.2 -1,4.4 -0.6,3.1 -0.5,2.4 -0.7,2.2 -0.9,0.9 -0.7,1.4 -0.6,1.2 -1,1 -1.4,0.7 -2.2,0.1 -1.9,-0.8 -1,-1.5 -0.9,-1.6 -0.8,-1 -0.8,-1.6 z m -44.9,22.18 -0.9,1.3 -1,0.95 -1.25,0.6 -1.4,0.08 -1.82,-0.3 -0.95,-0.4 -0.52,-0.5 1.6,0.4 h 3.24 l 0.94,-0.3 1.17,-0.8 z"
+		 inkscape:connector-curvature="0"
+		 style="fill:#9497a2;stroke-width:0.16"
+		 sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
+	  <path
+		 d="m 528.7,60.47 c 0,0 -0.04,0 -0.04,0.03 l 0.66,0.8 0.6,0.45 c 0.2,0.07 0.58,0.37 0.87,0.6 1.8,1.23 2.2,1.52 2.3,1.67 0.1,0.07 0.3,0.22 0.5,0.3 l 0.8,0.58 0.4,0.44 0.2,0.07 c 0.1,0.1 0.1,0.1 0.1,0.2 -0.2,0.2 -0.3,0.2 -0.3,0 0,0 -0.2,-0.1 -0.5,-0.1 -0.4,0 -0.5,0 -0.5,0.1 0,0.1 -0.1,0.2 -0.2,0.2 -0.1,0 -0.2,0.1 -0.3,0.2 -0.1,0.2 -0.3,0.2 -0.3,0.2 -0.1,0 -0.1,0.2 -0.1,0.3 0,0.2 0,0.4 -0.1,0.4 l -0.2,0.3 c -0.1,0.2 0,0.3 0,0.3 0.1,0 0.2,0.1 0.2,0.2 0,0.1 0,0.2 0.1,0.3 0.1,0.1 0.1,0.2 0.2,0.4 l 0.2,0.3 c 0.1,0.2 0.5,1.1 0.4,1.1 -0.1,0.1 -0.2,-0.1 -0.6,-0.6 -0.6,-0.8 -0.8,-0.8 -0.4,-0.2 0.3,0.7 1.7,3.4 1.7,3.5 0,0.3 -0.5,0.2 -0.6,-0.3 -0.2,-0.3 -1,-1.5 -1.6,-2.1 -1.3,-1.2 -3.6,-2.9 -5.3,-3.8 -1.4,-0.7 -3.1,-1.2 -4.5,-1.4 -0.3,0 -0.8,-0.1 -1.1,-0.2 -1,-0.3 -3.3,-0.7 -4.1,-0.7 -0.5,0 -0.8,0 -1,0.1 -0.5,0.2 -1.2,0.5 -1.4,0.5 0,0 -0.2,0 -0.2,0.1 -0.1,0 -0.1,0.1 -0.2,0.1 -0.4,0 -1,0.2 -1.1,0.3 -0.2,0.1 -0.2,0.1 -0.4,0.1 -0.1,0 -0.3,0.1 -0.5,0.3 -0.2,0.1 -0.5,0.2 -0.6,0.2 -0.2,0 -0.4,0.1 -0.5,0.2 -0.2,0.1 -0.4,0.2 -0.5,0.2 -0.1,0 -0.2,0.1 -0.2,0.2 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.1,0 -0.3,0.1 -0.3,0.2 0,0.1 -0.2,0.2 -0.3,0.2 -0.2,0 -0.3,0.2 -0.4,0.3 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0.1 -0.3,0.1 -0.3,0.2 -0.2,0 -0.2,0.1 -0.3,0.2 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0.1 -0.3,0.2 -0.1,0.2 -0.2,0.2 -0.3,0.2 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0.2 -0.1,0.2 -0.2,0.2 -0.1,0 -0.2,0.1 -0.4,0.3 -0.2,0.1 -0.2,0.2 -0.3,0.2 -0.1,0 -0.2,0.1 -0.2,0.2 -0.1,0.1 -0.1,0.2 -0.2,0.2 -0.4,0 -0.2,-0.7 0.1,-0.8 l 0.2,-0.2 0.1,-0.1 0.2,-0.2 c 0.1,-0.2 0.1,-0.2 0.2,-0.1 0,0.1 0,0.1 0,0 l 0.1,-0.3 c 0.1,-0.2 -0.2,-0.1 -0.6,0.2 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.1,0 -0.1,0 -0.1,0.1 l -0.4,0.2 c -0.4,0.2 -0.4,0.2 -0.6,0 -0.2,-0.1 -0.5,-0.1 -1.1,-0.1 -0.5,0 -1,0.1 -1.3,0.1 -0.9,0.2 -2.3,0.6 -2.4,0.8 -0.1,0 -0.5,0.1 -0.8,0 -0.8,0 -1.5,0.1 -1.6,0.2 -0.1,0.1 -0.4,0.1 -0.6,0.1 h -0.5 c -0.1,0.1 -0.3,0.1 -0.5,0.1 -0.3,0 -0.6,0.1 -1,0.3 -0.8,0.4 -1.3,0.7 -1.4,0.8 -0.1,0.1 -0.1,0.2 0.1,0.1 0.1,-0.1 0.3,-0.1 0.5,-0.3 0.5,-0.3 1.3,-0.4 1.8,-0.3 0.3,0.1 0.5,0.1 0.9,0 h 0.8 c 0.2,0 0.6,-0.1 0.9,-0.2 l 1.2,-0.3 c 0.3,-0.1 0.8,-0.2 1.1,-0.3 0.6,-0.2 1.3,-0.2 1.3,-0.2 0,0 0.1,0.1 0.2,0.1 0.1,0 0.2,0 0.3,0.2 0,0.2 0,0.3 0.3,0.2 0.3,-0.1 0.4,0.1 0.1,0.1 -0.3,0.1 -0.4,0.3 -0.1,0.4 0.1,0 0.1,0.1 0.1,0.3 0,0.1 0,0.1 0.1,0.1 v 0.1 c 0,0.2 0,0.3 0.1,0.3 V 71 c 0,-0.1 0.1,-0.17 0.3,-0.17 0.3,0 0.3,0 1.2,-0.6 l 0.8,-0.5 0.2,-0.1 c 0,-0.1 0.1,-0.1 0.1,-0.1 0,0 0.2,0 0.3,-0.2 0.1,0 0.2,-0.2 0.3,-0.2 0.1,0 0.2,-0.1 0.3,-0.2 0,0 0.2,-0.1 0.3,-0.1 0,0 0.2,-0.1 0.3,-0.2 0,-0.15 0.1,-0.2 0.2,-0.2 0.1,0 0.2,-0.1 0.3,-0.2 0,-0.1 0.2,-0.2 0.3,-0.2 0,0 0.2,-0.2 0.3,-0.2 0,-0.1 0.1,-0.2 0.2,-0.2 0.1,0 0.2,0 0.3,-0.1 0,-0.1 0.1,-0.1 0.3,-0.1 0,0 0.2,-0.1 0.3,-0.2 0,-0.1 0.2,-0.2 0.3,-0.2 0,0.1 0.1,0 0.2,-0.1 0,-0.06 0.2,-0.1 0.3,-0.1 0,0 0.2,0 0.3,-0.1 0.5,-0.3 2,-0.9 2.3,-0.96 0.4,-0.1 0.9,-0.2 1.7,-0.5 0.3,-0.15 0.8,-0.3 0.9,-0.3 0.2,-0.1 0.5,-0.1 0.6,-0.14 0.3,-0.1 0.3,-0.1 2.6,0.33 3.5,0.8 4.5,1 5.8,1.6 1.5,0.6 2.9,1.4 4.5,2.7 0.7,0.5 2.1,1.9 2.1,2 l 0.3,0.4 c 0.1,0.1 0.4,0.6 0.7,0.9 0.5,0.8 0.7,1 0.9,1 0.2,0 0.2,-0.1 0.2,-0.4 0,-0.3 0,-0.5 -0.5,-1.3 l -0.2,-0.5 c 0,-0.1 0,-0.1 -0.1,-0.1 0,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.1 0.1,0 l 0.6,0.9 c 0.4,0.6 0.9,1.5 1.9,3.4 0.3,0.5 0.5,1 0.5,1 l 0.3,0.6 c 0.7,1.2 1.1,2 1.3,2.3 l 0.1,0.2 0.3,0.5 c 0.3,0.5 1,1.6 1.4,2.34 l 0.9,1.5 0.8,1.1 c -0.6,-0.8 -1.1,-1.7 -1.7,-2.8 -0.5,-0.9 -1.1,-1.7 -1.1,-1.7 0,0 0.8,1.97 2,4.3 3.7,7.4 5.1,10.5 6.1,13.4 0.1,0.5 0.3,1 0.3,1.07 0.1,0 0.2,0.3 0.2,0.5 0,0.2 0.2,0.8 0.4,1.3 l 0.4,1.5 0.3,1.3 c 0.6,2 1.1,5.6 1.2,7.9 0,0.9 0.1,2.1 0.2,2.6 l 0.2,1.1 c 0.1,0.5 0,-1.7 -0.1,-4.94 V 107 c 0.1,-0.34 0.1,-0.34 0.2,0.1 0.1,0.8 0.6,6.3 0.8,9.96 0.1,1.7 0.3,4.1 0.5,4.7 0.1,0.3 0.2,0.4 0.4,0.5 0.3,0.1 0.6,0 0.6,-0.2 0,-0.1 0.1,-0.3 0.2,-0.55 0.5,-1 0.3,-10.5 -0.3,-13.5 -0.2,-0.6 -0.1,-0.7 0.2,-0.6 0.4,0.3 0.6,1.2 0.6,2.2 v 0.7 c 0.1,-0.1 0.1,-0.2 0.2,-0.2 h 0.2 c 0.1,0 0.1,-2.5 -0.1,-4.6 -0.1,-1.7 0.1,-0.8 0.6,1.9 0.1,0.8 0.4,3.3 0.5,5.2 0.1,1.6 0.1,1.9 0.4,3.2 0.3,1.1 0.5,2.8 0.6,4.4 0.1,1.7 0.5,3.5 1,4.9 l 0.1,0.3 0.2,0.5 c 0.1,0.5 0.4,0.4 0.5,-0.1 0.1,-0.4 0.3,-0.8 0.6,-0.9 0.2,0 0.3,-0.1 0.3,-0.2 0,-0.1 0.1,0 0.2,0 0.1,0 0.2,0 0.2,0.1 0,0.2 0.5,0.1 0.7,-0.2 0.3,-0.2 0.8,-1.6 1,-2.8 0.2,-0.9 0.4,-2.6 0.4,-2.9 0,0 -0.18,-0.6 -0.2,-1.1 l -0.4,-2.8 c -0.5,-2.9 -0.5,-3.4 -0.4,-3.7 0.2,-0.2 0.4,-0.1 0.4,0.3 0.1,0.2 0.12,0.7 0.3,1.3 0.33,1.5 1.1,6.1 1.3,8.1 l 0.13,1.3 c 0.1,0.1 1.1,0.1 4.7,0.1 h 4.7 l -0.1,-0.5 -0.2,-1.5 c -0.4,-2.6 -0.6,-4.2 -0.8,-5.9 -0.2,-2.4 -0.4,-3.5 -0.3,-2.1 v 1 l -0.5,-1.3 c -0.3,-0.7 -0.7,-1.4 -0.74,-1.6 -0.1,-0.1 -0.3,-0.4 -0.3,-0.6 -0.2,-0.3 -0.9,-1.1 -1.3,-1.4 -0.3,-0.1 -1,-0.1 -1,0 0,0.1 -0.1,0.3 -0.2,0.3 -0.4,0.4 -0.5,1.4 -0.6,3.6 0,1.1 0.1,2.1 0.1,2.3 0.05,0.2 0.05,0.3 0,0.3 -0.1,0 -0.2,-0.3 -0.2,-0.5 l -0.3,-1 -0.2,-0.7 v 0.8 c 0,0.4 0.1,1.1 0.1,1.7 0.3,1.7 0.2,1.6 -0.6,-0.3 -0.5,-1.3 -1.4,-4.2 -2,-6.3 -1.2,-3.9 -3.5,-10.8 -4.7,-14.3 l -0.2,-0.6 -0.1,-0.3 0.1,0.3 1,1.6 c 0.9,1.5 1.73,2.8 1.73,2.5 0,-0.1 -0.1,-0.6 -0.2,-1.1 -0.7,-2.8 -1,-4.1 -1.1,-5.6 0,-1.3 0,-1.6 0.15,-2 0.1,-0.5 0.2,-0.5 0.3,-0.4 0.9,0.8 0.9,0.8 1.5,1.1 0.1,0.2 0.33,0.2 0.33,0.2 l -0.4,-1 c -0.3,-0.6 -0.5,-1 -0.5,-1.1 0,-0.2 0.6,0.9 2.1,3.9 0.8,1.6 1.5,2.9 1.5,2.9 0,-0.2 -2.6,-5.6 -3.2,-6.6 -0.3,-0.5 -0.7,-1.2 -0.8,-1.6 -0.2,-0.3 -0.5,-0.8 -0.6,-0.9 l 0.1,0.1 c 0.1,0.1 0.2,0.1 0.2,0.2 0,0.1 0.5,1 0.5,1.1 l 0.3,0.5 0.3,0.5 0.3,0.7 c 0.4,1 0.7,1.6 0.9,1.7 l 0.3,0.7 1,2.1 c 0.8,1.5 1.3,2.7 1.3,2.8 l 0.3,0.4 c 0.38,0.8 0.5,1.1 0.6,1.6 0.1,0.3 0.2,0.5 0.3,0.6 0,0 0.1,0.2 0.1,0.3 v 0.3 c 0,0 0,0.2 0.1,0.2 0.1,0 0.1,0.2 0.1,0.3 0,0.1 0.1,0.2 0.1,0.2 l 0.1,-0.1 c 0,-0.2 0,-0.2 0.1,-0.1 v 0.1 c -0.1,0 -0.2,0.2 -0.2,0.3 0,0.2 0.1,0.2 0.3,0.2 0.2,0 0.1,0 0.1,0.2 0,0.1 0.2,0.4 0.3,0.9 0.2,0.4 0.8,2 1.3,3.6 1,3.1 1.1,3.3 1.1,3.1 0,-0.2 -1.6,-5.1 -2.1,-6.4 -0.3,-0.9 -1.2,-3.9 -1.62,-5.6 -0.6,-1.9 -1.1,-3.5 -1.7,-4.8 l -0.2,-0.5 c 0,-0.1 -1.4,-2.8 -2,-3.9 -1.1,-1.9 -1.8,-3.1 -3.7,-5.9 -0.6,-1 -1.4,-2.1 -1.6,-2.5 -1.1,-2 -2.5,-4.1 -3,-4.5 0,0 -0.2,-0.3 -0.5,-0.6 -0.5,-0.6 -1.1,-1 -3.6,-2.6 -2.7,-1.6 -5.1,-3 -6.8,-3.9 l -1.2,-0.6 -1.8,-0.9 c -2.8,-1.4 -5.3,-2.3 -8.9,-3.6 -1.4,-0.5 -2.7,-0.9 -3,-1.1 -0.1,-0.1 -0.4,-0.1 -0.4,-0.1 z m 5.4,2.3 c 0.07,0 0.07,0 0.15,0.06 0.07,0.05 0.14,0.12 0.14,0.16 h -0.1 c 0,0 -0.1,-0.1 -0.1,-0.2 v -0.1 z m 1.1,0.28 c 0.15,0 0.3,0.04 0.3,0.08 0.07,0.04 0.14,0.07 0.2,0.07 0.16,0 0.23,0.04 0.23,0.07 0,0.05 0.08,0.1 0.15,0.1 0.07,0 0.22,0 0.37,0.06 0.3,0.15 0.58,0.22 0.87,0.37 0.22,0 0.37,0.07 0.37,0.15 0,0 0.1,0.07 0.2,0.07 0.1,0 0.1,0 0.1,0.07 h 0.1 l 0.5,0.1 0.6,0.3 0.3,0.1 h 0.1 c 0,0 0.2,0 0.3,0.1 0,0 0.8,0.3 1.6,0.7 l 1.7,0.8 0.7,0.4 c 0.3,0 0.5,0.2 0.5,0.3 h 0.3 l 0.6,0.3 0.5,0.3 h 0.4 c 0.1,0 0.1,0 0.3,0.1 l 1.1,0.7 0.3,0.2 c 0.2,0.1 0.4,0.3 0.7,0.4 l 0.5,0.3 v 0.1 c 0.1,0 0.6,0.3 0.7,0.4 l 0.1,0.1 c 0.1,0 0.1,0 0.3,0.2 0.1,0.1 0.3,0.1 0.4,0.1 0.1,0 0,0 0,0.1 0,0.1 0.1,0.2 0.2,0.2 0.1,0.1 0.3,0.2 0.3,0.2 0,0.1 -0.1,0.4 -0.2,0.4 -0.1,0 -0.3,0.2 -0.3,0.4 0,0.2 0,0.1 -0.2,0.1 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 -0.1,-0.2 -0.3,-0.2 -0.2,0 -0.2,0 -0.2,0.2 l -0.1,0.1 c -0.1,0 -0.1,0.1 -0.1,0.1 0,0.1 -0.1,0.1 -0.2,0.1 -0.1,0 -0.2,0.1 -0.2,0.2 0,0.1 -0.1,0.2 -0.2,0.2 h -0.2 c 0,0 0.1,0.1 0.2,0.1 0.1,0 0.1,0.1 0.1,0.2 0,0.1 0,0.1 -0.1,0.1 -0.1,0 -0.2,0 -0.2,-0.1 0,-0.1 -0.2,-0.1 -0.5,-0.1 -0.4,0 -0.5,0 -0.5,0.2 0,0 0,0.1 -0.1,0.1 h -0.3 c -0.1,0 -0.2,0 -0.3,-0.1 -0.1,-0.1 -0.8,-0.7 -1.2,-1.1 -0.2,-0.1 -0.5,-0.3 -0.5,-0.3 -0.1,0 -0.2,0 -0.2,-0.1 0,-0.1 -0.1,-0.2 -0.2,-0.3 l -0.2,-0.2 -0.6,-0.5 -0.6,-0.6 c 0,-0.1 -0.1,-0.1 -0.1,-0.1 0,0 -0.2,-0.2 -0.5,-0.3 -0.1,-0.2 -0.4,-0.3 -0.4,-0.3 -0.1,0 -0.2,-0.1 -0.3,-0.2 -0.1,-0.1 -0.1,-0.2 -0.2,-0.2 -0.1,0 -0.2,-0.1 -0.2,-0.1 0,0 -0.1,-0.2 -0.2,-0.2 h -0.1 c 0,-0.1 -0.1,-0.1 -0.2,-0.1 -0.3,0 -0.5,-0.1 -1.1,-0.6 l -0.5,-0.4 -0.5,-0.4 c -0.3,-0.3 -0.4,-0.3 -0.7,-0.5 -0.1,-0.1 -0.4,-0.2 -0.5,-0.4 -0.1,-0.1 -0.3,-0.3 -0.5,-0.4 -0.1,0 -0.4,-0.3 -0.5,-0.4 -0.4,-0.4 -1.5,-1.1 -1.5,-1.1 -0.1,0 -0.3,-0.2 -0.3,-0.3 v -0.1 c 0,0 -0.1,-0.1 -0.1,-0.3 0.1,-0.2 0.1,-0.3 -0.2,-0.2 -0.2,0 -0.2,0 -0.2,-0.2 0,-0.2 0,-0.3 -0.1,-0.3 -0.1,0 -0.1,-0.1 -0.1,-0.3 0,-0.4 0,-0.4 0.2,-0.4 z m -0.73,0.3 c 0.07,0 0.22,0 0.22,0.08 0,0 0,0.08 -0.2,0.08 h -0.2 0.1 z m -15.25,0.97 c -0.34,-0.03 -0.6,0.02 -1,0.1 -0.48,0.13 -1.15,0.34 -1.48,0.5 -0.3,0.13 -0.88,0.3 -1.25,0.38 -0.6,0.1 -3.3,1.24 -3.6,1.5 0,0.04 -0.3,0.2 -0.5,0.3 -0.3,0.13 -0.7,0.4 -0.9,0.58 -0.2,0.2 -0.5,0.35 -0.7,0.35 -0.1,0 -0.2,0.07 -0.2,0.15 0,0.08 -0.1,0.14 -0.2,0.14 -0.1,0 -0.4,0.18 -0.7,0.4 -0.2,0.14 -0.6,0.36 -0.7,0.36 -0.1,0 -0.2,0.07 -0.2,0.14 0,0.08 -0.1,0.15 -0.2,0.15 -0.1,0 -0.5,0.15 -0.8,0.44 -0.9,0.7 -2.4,1.6 -2.6,1.6 -0.3,0 -0.3,-0.8 0,-1 0.1,-0.1 0.1,-0.2 0,-0.2 -0.2,0 -0.4,-0.2 -0.7,-0.5 -0.2,-0.3 -0.6,-0.5 -0.7,-0.5 -0.6,0 -2.1,0.3 -3.4,0.8 -1,0.3 -1.4,0.4 -2.1,0.4 -0.8,0 -1,0 -1.8,0.4 -2.1,1.1 -8.3,6.3 -11,9.1 -3,3.2 -3,3.5 0,0.5 2.1,-1.9 2.2,-2.1 3.3,-3 0.4,-0.3 1,-0.9 1.5,-1.4 0.5,-0.5 1.1,-1 1.4,-1.1 l 0.6,-0.4 c 0,-0.1 0.3,-0.2 0.5,-0.2 0.6,0 2.3,-0.8 2.8,-1.2 0.5,-0.5 3,-1.7 3.8,-1.9 0.5,-0.1 0.6,-0.1 1.1,0.6 0.6,0.6 0.7,0.8 0.8,1.5 l 0.2,1.3 c 0.1,0.2 0,0.4 -0.1,0.4 -0.2,0 -0.1,0.1 0,0.3 0.1,0.2 0.1,0.2 0,0.2 -0.1,0 -0.2,0.1 -0.1,0.2 0.1,0.2 -0.7,1.2 -1.8,2.1 -2.2,1.7 -3.8,3.4 -3.5,3.9 0.3,0.4 -1.1,2.3 -3.6,5.3 -0.3,0.4 -0.5,0.7 -0.5,0.7 0,0.1 -0.8,2.1 -1.8,4.4 -3.2,7.4 -4.2,9.9 -4.6,12.5 l -1.5,7.1 c -1.4,7 -1.8,9.5 -1.7,13.9 0,1.8 0.1,3.4 0.1,3.4 0.1,0 0.3,-0.1 0.5,-0.3 l 0.4,-0.3 0.2,-2.2 c 0,-1.1 0.3,-3.1 0.4,-4.4 0.2,-1.3 0.3,-2.6 0.3,-3.3 0,-0.6 0,-1.5 0.1,-2.1 0.2,-1.5 1.2,-4.3 1.7,-5.1 0.3,-0.5 0.5,-0.8 0.5,-1 0,-0.2 1.5,-2.8 1.8,-3 0.2,0 0.2,0.2 0.1,0.6 -0.1,0.8 0,0.9 0.4,0.5 0.2,-0.1 0.5,-0.2 0.8,-0.2 0.2,0 0.4,-0.1 0.6,-0.2 0.1,-0.1 0.2,-1.2 0.4,-2.4 0.3,-2.7 0.5,-3.7 0.7,-3.5 0.1,0.1 0.1,0.4 0.1,0.8 v 0.7 l 0.1,-0.8 c 0.3,-1 0,-2.4 -0.5,-2.9 -0.9,-1 -2.5,0.2 -3.6,3 -0.3,0.7 -0.6,1.3 -0.7,1.3 -0.3,0.3 0.1,-2.2 0.6,-3.6 0.8,-2.6 3,-7.3 4.8,-10.1 1.3,-2.3 1.5,-2.4 1.3,-0.9 -0.2,1.2 -0.2,1.4 0.1,1.4 1,-0.1 1.3,0 1.8,0.7 0.3,0.4 0.5,0.7 0.6,0.7 l 0.1,0.2 c 0,0.3 -0.2,0.4 -0.7,0.5 -0.2,0.1 -0.7,0.7 -0.6,0.8 0,0.1 -0.1,0.2 -0.3,0.2 -0.3,0 -0.3,0 -0.2,0.1 0.1,0.1 0.3,0.1 0.4,0 0.3,-0.1 0.3,0.4 0,1.4 -0.3,0.9 -0.3,1.1 -0.1,1.9 0.1,0.5 0.1,1.2 0.1,1.6 v 0.6 l 0.6,-0.1 c 1.2,-0.2 2,-0.7 3.5,-2.5 0.6,-0.8 1.1,-1.5 2.4,-4 0.3,-0.6 0.6,-1 0.7,-1 0.1,0 0.2,0.4 0.1,0.9 -0.1,0.9 0,0.9 0.3,0.8 0.3,-0.1 0.4,0.2 0.5,1 v 0.3 l 0.3,-0.4 c 0.3,-0.3 0.3,-0.3 0.3,0 0,0.1 -0.2,0.8 -0.2,1.4 -0.2,1.1 -0.2,3.2 0.1,3.2 0.1,0 0.2,-0.3 0.2,-0.6 0,-0.3 0.2,-0.7 0.3,-0.9 l 0.3,-1 c 0.2,-0.6 0.8,-1.3 1.2,-1.3 0.1,0 0.2,0.1 0.2,0.2 0,0.1 0.1,0.1 0.5,0.1 0.4,-0.1 0.5,0 0.5,0.2 -0.1,0.1 -0.1,0.2 0,0.1 0.2,-0.1 0.3,1.9 0.3,5.7 v 3.2 l 0.3,-0.6 c 0.1,-0.3 0.5,-0.9 0.8,-1.2 0.4,-0.5 0.6,-0.6 1.2,-0.6 0.4,0 0.7,0.1 0.7,0.2 0,0.1 0.1,0.1 0.2,0.1 0.3,-0.2 0.9,0.7 1.1,1.7 0.1,0.5 0.2,1.4 0.2,1.9 0,1.2 0.2,1.2 0.4,0.1 0.1,-1 0.6,-2.3 1,-2.7 0.2,-0.2 0.3,-0.3 0.3,-0.2 0,0.1 0.2,0.2 0.4,0.2 0.2,0 0.5,-0.1 0.5,-0.1 h 0.2 c 0.2,0 0.3,0.3 0.5,0.9 0.3,1.2 1.2,3.8 1.3,4 0.4,0.6 1.3,-0.6 2,-2.4 0.8,-2 1,-3.6 1,-6.5 0,-2.7 0,-4.5 -0.4,-7.5 -0.1,-1 -0.2,-2.2 -0.2,-2.6 v -1 l 0.4,1 c 0.4,0.7 0.5,1 0.6,0.8 0.1,-0.1 0.2,0 0.4,0.3 0.3,0.8 1.2,2.3 1.4,2.3 0,0 0.1,-0.1 0.1,-0.2 0,-0.2 0,-0.2 0.1,0 0.1,0.2 0.1,0.4 0,0.5 -0.1,0.2 -0.1,0.5 0,0.7 0,0.4 0,0.4 0.2,0.1 v -1 c -0.1,-0.2 -0.1,-0.2 0,0 0.1,0 0.4,0.9 0.7,1.8 2.3,5.8 5.2,10.5 7.7,12.5 0.8,0.6 1.5,0.9 1.4,0.6 l 0.2,-0.8 c 0.1,-0.4 0,-1.2 -0.1,-1.7 -0.1,-0.6 -0.2,-1.1 -0.1,-1.1 0.1,0 0.3,0.5 0.6,1 1.2,2.4 2.4,4.2 3.5,5.4 0.7,0.7 1.4,1.3 1.6,1.3 0.3,0.2 0.5,0.5 0.9,1.3 0.3,0.6 0.5,1.1 0.6,1.1 0.2,0 0.2,1.2 0,2.6 0,0.2 0.1,0.9 0.1,1.5 0.1,1.1 0.1,1.7 -0.2,1.3 -0.1,-0.1 -0.2,-0.2 -0.4,-0.2 -0.4,0 -0.5,-0.2 -0.2,-0.3 0.2,0 0.3,0 0.3,0.1 0,0.1 0.1,0.2 0.2,0.2 0.4,0 0.2,-0.4 -0.2,-0.5 -0.2,-0.1 -0.4,-0.2 -0.4,-0.3 0,-0.1 0,-0.2 -0.1,-0.2 -0.1,0 -0.1,0.1 0,0.2 0.3,0.8 -0.8,1 -2,0.4 -0.2,-0.1 -0.4,-0.1 -0.4,-0.1 -0.1,0.1 1.1,4.3 1.5,5 0.2,0.3 1.4,3.5 1.4,3.6 l -0.6,-0.5 c -0.4,-0.3 -0.6,-0.5 -0.7,-0.5 -0.1,0.2 0.5,1.3 1.6,3 0.7,0.9 1.1,1.7 1.1,1.8 0,0.1 0.4,0.8 0.6,0.8 0.1,0 0.6,0.5 1.1,1.2 2.7,3.5 7.9,8.8 10.6,10.9 1,0.7 1.8,1.4 1.6,1.4 -0.2,0 -1.5,-0.5 -2.7,-1.4 -0.6,-0.4 -1.2,-0.7 -1.2,-0.6 0,0.1 0.3,0.5 0.8,1 0.9,0.8 1.2,1.6 0.6,1.4 -0.5,-0.3 0.4,0.5 1.9,1.3 2.7,1.6 2.6,1.6 5.1,1.9 l 0.6,0.1 -0.7,-0.6 c -0.3,-0.4 -0.6,-0.8 -0.6,-0.9 0.2,-0.4 1.1,0.4 1.6,1.2 0.3,0.5 0.6,0.8 0.8,0.9 0.2,0.1 0.6,0.1 0.7,0.1 0.3,0 0.2,-0.1 -0.1,-0.1 -0.4,-0.1 -1.1,-1.2 -1,-1.4 0,-0.1 -0.3,-0.5 -0.7,-0.9 -0.4,-0.4 -1,-1.3 -1.4,-2 -0.7,-1.3 -5.3,-10.3 -6,-12 l -1.2,-2.6 c -0.5,-1 -0.9,-2.2 -1.4,-4.3 -0.3,-1.6 -0.8,-3.5 -1.1,-4.3 l -1.4,-4.7 c -1.5,-5.1 -1.6,-5.6 -3.2,-10.6 -1.5,-4.8 -2.1,-6.2 -2.1,-6.2 0,0 0.2,1 0.5,2.2 l 1.7,6.2 0.9,3.1 c 0.2,0.7 0.4,1.4 0.4,1.6 0,0.6 -1,-1.8 -1.2,-2.8 l -0.5,-2.3 c -0.2,-0.8 -0.8,-2.9 -1.3,-4.8 -0.5,-1.9 -0.9,-3.8 -1,-4.1 -0.1,-1.5 -0.7,-3.2 -3.3,-9.8 -1.4,-3.9 -1.7,-5.3 -1.1,-6 0.6,-0.7 1.6,-0.4 2.6,0.7 2,2.2 6.1,10.5 8.7,17.8 0.5,1.5 1.1,2.9 1.3,3.2 l 0.2,0.6 0.1,-1.4 c 0.2,-1.6 0,-2.8 -0.6,-4.9 -1.2,-3.7 -3.4,-8.1 -7.2,-14.6 -2.7,-4.4 -3.1,-5.2 -3,-5.2 0.1,-0.1 1.1,0.5 1.8,1.2 2.1,2.1 6.5,10.2 9,16.7 0.5,1.2 1.3,2.7 1.3,2.5 0,-0.5 -1.4,-4.1 -3,-7.5 -1.4,-3.1 -8.8,-18 -9,-18 -0.1,0 -0.1,0 -0.1,-0.2 0,-0.1 0,-0.2 -0.1,-0.1 -0.1,0.1 -0.2,0 -0.3,-0.1 h 0.1 c 0.2,0.2 0.2,0.1 -0.1,-0.5 -0.2,-0.3 -0.2,-0.4 -0.5,-0.2 -0.4,0.3 -0.6,0.1 -1.1,-0.9 -0.7,-1.2 -1.8,-2.5 -3.6,-3.8 -2.8,-2 -4.6,-2.8 -10.2,-4 -0.8,-0.1 -1.2,-0.2 -1.6,-0.2 z m 15.9,0.1 h 0.07 v 0.16 c -0.1,0.07 -0.1,0.07 -0.1,0 -0.1,-0.08 -0.1,-0.15 0,-0.15 z m 6.6,5.97 c 0.58,0 1.63,0.6 2.56,1.4 0.66,0.6 1.2,1.2 1.45,1.5 l 1.24,1.4 c 0.6,0.6 1.12,1.3 1.18,1.3 l 0.88,1 0.7,0.9 0.78,1.1 c 0.2,0.2 0.4,0.4 0.5,0.6 l 0.5,0.5 c 0.2,0.1 0.2,0.3 0.2,0.4 0,0.1 0.1,0.2 0.1,0.2 h 0.1 c 0,0.1 0.1,0.1 0.2,0.3 0.2,0.1 0.2,0.2 0.2,0.3 0,-0.1 -0.1,-0.2 -0.1,-0.2 0,-0.2 -0.2,-0.4 -0.3,-0.4 v -0.1 c 0,-0.2 -2.2,-3.2 -3.3,-4.5 -1.9,-2.4 -3.2,-3.9 -3.8,-4.4 -1.1,-1.1 -2.4,-1.6 -2.7,-1.3 -0.1,0 0,0.3 0.3,0.7 1.5,2.4 2.5,4.3 3.4,6.3 l 1.1,2.2 c 0.2,0.2 0.2,0.4 0.3,0.7 l -0.2,-0.3 c -0.7,-1.4 -0.7,-1.6 -1.2,-2.7 -0.3,-1 -1,-2.4 -1.6,-3.3 l -0.4,-0.9 -1.4,-2.1 c -0.2,-0.3 -0.2,-0.6 0,-0.6 h 0.2 z m -6.95,0.2 h 0.03 c 0.02,0 0.02,0.1 0,0.1 -0.03,0 -0.05,0 -0.05,-0.1 0,0 0,-0.1 0.02,-0.1 z M 552,71.9 h 0.1 l 0.13,0.07 c 0.03,0 0.04,0.07 0.04,0.07 0,0.04 -0.07,0.04 -0.15,0.04 -0.07,0 -0.14,0 -0.14,-0.07 h 0.07 z m -6.8,0.36 c 0.1,0 0.62,0.47 1.02,1 l 0.4,0.57 c -0.03,0.14 -1.38,-1.33 -1.43,-1.47 z m 7.94,0.55 c 0.07,0 0.14,0.1 0.14,0.3 0,0.1 -0.14,0.1 -0.22,0.1 -0.22,0 -0.3,0 -0.14,-0.2 h 0.07 z m -0.15,0.7 c 0.2,0 0.2,0.1 0.2,0.2 -0.1,0.2 -0.7,0.2 -0.7,0 h 0.3 z m -4.6,0.8 c 0,0 0.1,0.1 0.1,0.2 0,0.2 -0.2,0.2 -0.3,0.1 -0.2,0 -0.1,-0.1 0,-0.1 z m 2.5,1 v 0.3 c 0,0.1 -0.1,0.1 -0.1,0.1 -0.1,0 -0.2,0 -0.2,-0.1 0,-0.1 0,-0.1 0.1,-0.1 z m -1.3,0.2 c 0.1,0 0.1,0.1 0.1,0.2 0,0.2 -0.2,0.3 -0.3,0.1 -0.2,-0.1 -0.2,-0.2 0.1,-0.2 z m 4.4,0.2 c 0,0 0.1,0.1 0.1,0.2 0,0.1 -0.1,0.2 -0.2,0.2 -0.1,0 -0.2,0 -0.2,-0.1 0,-0.1 0,-0.1 0.1,-0.1 z m 0.8,0 c 0,0 0.1,0.1 0.1,0.2 0,0.1 -0.1,0.2 -0.2,0.2 -0.1,0 -0.2,0 -0.2,-0.1 0,-0.1 0,-0.1 0.1,-0.1 z m 0.7,0.5 v 0.1 l 0.1,0.3 c 0,0.1 -0.1,0.1 -0.1,0.1 h -0.1 c 0,-0.1 -0.1,-0.1 -0.1,-0.1 -0.1,0 -0.1,0 -0.1,-0.1 z m -5.1,0.1 c 0,0 0.1,0.1 0.1,0.2 v 0.4 c 0,0 -0.1,0.2 -0.2,0.2 -0.1,0 -0.1,0 -0.1,-0.1 0,-0.1 -0.1,-0.1 -0.2,-0.2 -0.2,-0.1 -0.1,-0.3 0,-0.3 z m 0.5,0.8 0.1,0.2 c 0,0.2 0.1,0.6 0,0.6 -0.1,0 -0.1,0.1 -0.2,0.2 0,0.1 -0.1,0.2 -0.1,0.2 -0.2,0 -0.2,-0.1 0,-0.3 v -0.3 c -0.2,-0.2 -0.1,-0.4 0,-0.4 z m 4.8,0.5 c 0,0 0.1,0 0.1,0.2 0,0.2 -0.1,0.2 -0.2,0.2 -0.2,0 -0.2,-0.1 -0.2,-0.1 0,-0.1 0,-0.1 0.1,-0.1 z m -1.4,1.9 h 0.3 c 0.2,0 0.4,0.1 0.5,0.1 0,0.1 0.1,0.2 0.2,0.2 0,0.1 0.1,0.2 0.1,0.2 l 0.1,0.2 0.3,0.3 c 0,0.2 0.2,0.3 0.2,0.3 l 0.2,0.2 c 0,0 0.2,0.3 0.3,0.3 v 0.1 c 0,0.1 0.1,0.1 0.1,0.1 0.1,0.1 0.2,0.2 0.2,0.3 v 0.1 l 0.1,0.1 v 0.1 l 0.4,0.6 0.5,0.8 c 0,0.1 0.2,0.2 0.2,0.2 0.1,0.1 0.1,0.1 0,0.2 l -0.1,0.1 c -0.1,-0.2 -1.1,-1.5 -1.3,-1.7 -0.4,-0.4 -1.6,-1.2 -1.7,-1.2 -0.1,0 -0.2,-0.1 -0.2,-0.1 -0.2,-0.3 -1.5,-0.6 -1.5,-0.3 0,0.1 -0.1,0.1 -0.1,0.1 0,0 -0.3,0.1 -0.4,0.3 l -0.3,0.2 0.1,-0.1 0.1,-0.1 h 0.1 c 0,0 0,-0.1 0.2,-0.1 0.1,0 0.2,0 0.2,-0.1 0,-0.1 0,-0.1 0.1,-0.1 z m -2.4,0 c -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.1,0.2 -0.3,0.3 -0.3,0.2 v -0.2 c 0,0 0,-0.1 0.2,-0.1 z m 6.2,0.8 c 0,0 0.1,0.1 0.1,0.2 v 0.1 h -0.2 c -0.3,-0.1 -0.3,-0.2 -0.1,-0.2 z m -0.7,0.2 v 0.2 c 0,0.2 -0.1,0.2 -0.2,0.2 -0.2,0 -0.2,-0.1 -0.2,-0.2 0,0 0.1,-0.1 0.2,-0.1 z m -4.2,0.1 v 1.1 c 0,0.8 0.1,1.4 0.2,1.6 h -0.1 c -0.2,0 -0.2,-0.1 -0.2,-0.5 0,-0.3 -0.1,-0.5 -0.1,-0.5 0,0 -0.1,-0.4 -0.1,-0.9 v -0.6 z m -1.3,0.7 v 0.2 c 0,0.2 -0.1,0.2 -0.2,0.2 -0.2,0 -0.2,-0.1 -0.1,-0.2 h 0.2 z m -5.8,0.4 c 0,0.2 0.1,0.7 0.3,1 0,0.2 0.1,0.3 0.1,0.5 l -0.4,-0.6 c -0.2,-0.3 -0.2,-0.5 -0.2,-0.8 z m 5.5,0.3 c 0,0 0.1,0.1 0.1,0 0.2,0 0.2,0 0.1,0.4 v 0.3 c 0.1,-0.1 0.3,0.1 0.2,0.3 -0.1,0.1 -0.4,0.1 -0.4,-0.1 0,-0.1 -0.1,-0.1 -0.1,-0.1 -0.1,0 -0.2,0.1 -0.2,0.1 0,0.1 -0.2,0.1 -0.3,0.1 -0.2,0 -0.3,0.1 -0.4,0.1 -0.1,0.1 -0.3,0.1 -0.5,0.1 -0.2,0 -0.2,0.1 -0.2,0.1 0.1,0 0.3,-0.1 0.3,-0.1 0.1,-0.1 0.2,-0.1 0.4,-0.1 0.1,0 0.3,0 0.3,-0.1 0,-0.1 0,-0.1 0.1,0 0.1,0.1 0.1,-0.1 0.1,-0.2 0,-0.1 -0.1,-0.3 -0.2,-0.3 h -0.1 z m 0.6,0 v 0.1 c 0,0.1 0,0.2 -0.1,0.2 -0.1,0 -0.1,-0.1 -0.1,-0.2 V 82 Z m -5.8,0.1 0.1,0.2 v 0.2 c -0.1,0.1 -0.1,0 -0.2,0 -0.1,0 -0.1,-0.2 0,-0.2 z m 3.9,1.1 c -0.1,0.1 -0.1,0.1 -0.1,0.2 0,0.2 -0.1,0.2 -0.2,0.2 h -0.1 v -0.1 l 0.1,-0.1 0.1,-0.1 z m 2.5,0.3 c 0.1,0 0.1,0.1 0,0.2 -0.2,0.1 -0.2,0.1 -0.2,0 0,-0.1 0,-0.1 0.1,-0.1 z m 0.6,0.1 v 0.4 l 0.1,0.7 c 0.2,0.4 0.2,0.5 0.1,0.5 l -0.2,-0.3 -0.1,-0.5 c -0.1,-0.1 -0.1,-0.3 -0.1,-0.5 v -0.2 z m 5.4,0.1 c 0.1,0.2 0.3,0.5 0.5,0.8 0.1,0.2 0.2,0.4 0.3,0.4 0,0.1 0.1,0.2 0.1,0.2 0,0.1 0,0.3 0.1,0.4 v 0.3 l -0.2,-0.3 c -0.2,-0.3 -0.5,-0.9 -0.7,-1.2 -0.2,-0.1 -0.2,-0.3 -0.3,-0.4 z m -12.2,0.1 0.1,0.5 c 0,0.5 0,1.1 0.1,1.3 0.4,1.7 0.1,4 -0.5,4.4 -0.1,0.1 -0.2,0 -0.3,0 l 0.1,0.1 c 0.1,0 0.4,-0.4 0.5,-0.8 0.2,-1.2 0.2,-2.1 0,-3.3 -0.1,-0.4 -0.2,-1 -0.2,-1.2 0,-0.1 -0.1,-0.3 -0.1,-0.3 -0.1,0 -0.1,-0.3 0,-0.5 z m 6.5,0.9 0.1,0.1 0.1,0.1 h -0.4 z m -3.3,0.2 v 0.3 l -0.1,-0.2 z m 10.4,0.3 0.1,0.1 v 0.1 c -0.1,0.1 -0.3,0.1 -0.3,0 0,-0.1 0.1,-0.2 0.1,-0.2 z m -10.3,0.1 h 0.1 c 0,0 0.1,0.1 0.1,0.3 0,0.2 0,0.3 0.1,0.3 0,0 0.1,0.1 0.1,0.2 v 0.1 c -0.2,-0.2 -0.2,-0.4 -0.2,-0.6 0,0 -0.1,-0.2 -0.2,-0.3 z m 3.4,0 h 0.2 c -0.1,0 -0.1,0.1 -0.1,0.2 0,0.1 0.1,0.1 0.2,0.1 h -0.2 c -0.2,0.1 -0.3,0.1 -0.3,-0.1 V 85 Z m 0.3,0.5 v 0.3 c -0.1,0.4 -0.1,0.4 0,0.4 l 0.1,-0.1 c 0,0.2 -0.1,0.2 -0.2,0.2 -0.1,0 -0.2,0 -0.2,-0.3 0,-0.3 0,-0.4 0.1,-0.4 z m 6.3,0.4 c 0.1,0 0.1,0.1 0.1,0.2 z M 543,86 c 0.23,0.36 0.53,0.8 1.04,1.46 0.6,0.8 1.47,1.7 2.13,2.13 -0.3,-0.2 -0.66,-0.5 -0.96,-0.8 -0.7,-0.7 -1.4,-1.6 -2.2,-2.8 z m 7.78,0.07 v 0.06 c 0.05,0.08 0.13,0.15 0.13,0.22 l -0.2,-0.3 z m 3.72,0.06 0.07,0.08 0.06,0.2 h -0.07 V 86 Z m 7.03,0.15 0.07,0.08 c 0,0.08 0,0.08 -0.07,0.08 -0.07,0 -0.07,0 -0.07,-0.08 v -0.07 z m -6.9,0.16 c 0,0.07 -0.06,0.07 -0.2,0.07 -0.3,0.1 -0.37,0.3 -0.15,0.4 h -0.14 c -0.07,0 -0.07,0 -0.07,-0.1 0,0 0,-0.1 0.2,-0.1 h 0.3 z m -3.65,0.07 c 0,0 0.08,0.1 0.08,0.2 l -0.07,-0.1 z m 0.16,0.3 0.07,0.1 c 0.1,0 0.1,0.1 0.1,0.3 0,0.2 0.1,0.2 0.2,0.2 0.2,0.1 0.2,0.2 0.2,0.2 l 0.1,0.2 v -0.1 l -0.1,-0.2 c 0,0 -0.1,0 -0.1,-0.1 l -0.1,-0.3 z m 1.17,0.4 c 0.1,0 0.2,0.1 0.2,0.2 0,0.2 -0.1,0.2 -0.1,0.2 0,0 -0.1,0 -0.1,-0.1 0,-0.1 0,-0.1 0.2,-0.1 z m 2.5,0.1 c 0.1,0.2 0.2,0.5 0.4,0.7 h -0.1 c 0,0 -0.1,0 -0.1,-0.2 0,-0.2 -0.1,-0.2 -0.1,-0.2 -0.1,0 -0.1,0 -0.1,-0.1 v -0.7 z m -2.8,0.3 c 0.2,0 0.3,0.1 0.3,0.2 0,0.2 -0.1,0.2 -0.2,0.2 h -0.1 v -0.1 c 0.2,-0.1 0.3,-0.3 0.1,-0.3 -0.1,0 -0.1,0.1 -0.1,0.2 0,0.1 -0.1,0.1 -0.1,0.1 h 0.1 c 0,0 0.1,-0.1 0.2,-0.1 z m -0.1,0.4 c 0,0 -0.1,0 -0.1,0.1 0,0.1 0.2,0.3 0.3,0.3 0,0 0.1,0.1 0.1,0.2 v 0.2 l -0.3,-0.3 c -0.1,-0.1 -0.1,-0.2 0,-0.3 z m 3.4,0.1 c 0.1,0.2 0.2,0.3 0.2,0.4 v -0.3 z m 0.2,0.5 v 0.2 c 0,0.2 0.1,0.4 0.2,0.4 0.1,0.1 0.2,0.2 0.2,0.4 l 0.2,0.4 c 0,0 0.1,0 0.1,0.1 -0.1,0 -0.1,-0.1 -0.1,-0.2 v -0.1 c -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.2 -0.1,-0.3 -0.2,-0.1 -0.2,-0.1 -0.2,-0.4 l -0.1,-0.1 z m -3.1,0.3 0.2,0.1 0.2,0.2 c 0,0 0,0.2 0.1,0.2 0.1,0 0.1,0.1 0.1,0.3 0,0.2 0.2,0.3 0.3,0.5 0.2,0.2 0.3,0.3 0.3,0.4 0,0.1 0,0 0.1,0 0.1,0 0.1,0.1 0.1,0.2 v 0.1 -0.1 c -0.1,-0.3 -0.3,-0.6 -0.4,-0.6 -0.1,0 -0.2,-0.3 -0.4,-0.5 -0.1,-0.3 -0.2,-0.5 -0.3,-0.7 z m -40.6,0.5 v 0.1 c 0.1,0.1 0.1,0.5 0,0.7 -0.1,0.2 -0.1,0 -0.1,-0.3 0,-0.3 0.1,-0.4 0.1,-0.4 z m 42,0.3 c 0.4,0 0.8,0.5 0.8,0.8 0,0.2 0,0.3 0.1,0.3 0.1,0 0.2,0.1 0.2,0.4 v 0.5 h -0.2 c -0.2,0 -0.3,0 -0.3,-0.1 v -0.1 h -0.1 c 0,0 -0.3,-0.5 -0.3,-0.6 l -0.1,-0.1 v -0.2 c 0,-0.2 0,-0.2 0.3,-0.2 z m -58.9,0.2 c 0.2,0 0.5,0 0.7,0.2 0.1,0.1 0.2,0.2 0.1,0.2 l -0.5,0.2 c -0.5,0.2 -0.6,0.1 -0.6,-0.2 0,-0.1 0.2,-0.2 0.4,-0.2 z m 61.4,0.2 0.3,0.4 v -0.1 c -0.2,0 -0.2,-0.1 -0.2,-0.2 z m -0.7,0.3 c 0.2,0 0.2,0 0.2,0.1 0,0.1 0,0.1 -0.1,0.1 -0.1,0 -0.1,0 -0.1,-0.1 0,-0.1 0.1,-0.1 0.2,-0.1 z m 0.5,0 c 0.2,0 0.2,0 0.2,0.1 0,0.1 0,0.1 -0.1,0.1 -0.1,0 -0.2,0 -0.2,-0.1 0,-0.1 0.1,-0.1 0.2,-0.1 z m 0.5,0.1 c 0.1,0.1 0.1,0.2 0.2,0.3 -0.1,0 -0.1,-0.1 -0.1,-0.2 v -0.1 z m -3,0.1 v 0.1 c 0.1,0 0.1,0.2 0.2,0.3 l 0.1,0.2 c -0.1,0 -0.1,-0.2 -0.2,-0.4 z m -58.4,0.3 c 0,0 0.1,0 0.1,0.1 0.1,0.1 0.1,0.3 0.1,0.5 v 0.4 -0.3 c -0.1,-0.2 -0.1,-0.4 0,-0.4 z m 61.6,0.1 c 0,0.2 0,0.2 0.1,0.3 -0.1,0 -0.1,0 -0.1,-0.2 v -0.5 z m -2.8,0.2 c 0.2,0 0.2,0.2 0.1,0.2 v -0.1 h -0.1 z m 3,0.3 c 0.1,0.1 0.1,0.1 0.1,0.3 0,0.1 0.1,0.3 0.3,0.4 0,0 0,0.1 0.1,0.1 -0.1,-0.1 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.1,-0.1 -0.1,-0.4 0,-0.1 0,-0.2 -0.1,-0.2 z m -1.9,0.4 c 0.1,0 0.2,0.1 0.2,0.3 0,0.2 -0.1,0.2 -0.2,0.2 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.2 0.1,-0.2 z m 1.7,0 c 0.1,0 0.2,0.1 0.2,0.3 0,0.2 -0.1,0.2 -0.2,0.2 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0.1,-0.2 0.1,-0.2 z m -2.6,0.1 0.1,0.2 c 0.1,0.2 0.2,0.4 0.2,0.5 l 0.3,0.5 0.2,0.3 0.1,0.3 -0.1,-0.3 -0.6,-1.3 z m 3.1,0.2 c 0.1,0.1 0.2,0.2 0.2,0.4 v -0.8 c 0,0 0,-0.1 -0.1,-0.1 z m 0.2,0.8 c 0,0.2 0.1,0.3 0.3,0.4 h -0.1 c -0.2,-0.1 -0.3,-0.3 -0.2,-0.3 V 93 Z m -0.3,0.4 c 0.1,0 0.2,0.1 0.2,0.2 0,0.1 -0.1,0.2 -0.2,0.2 -0.1,0 -0.2,0 -0.2,-0.1 0,-0.1 0,-0.1 0.2,-0.1 z m 0.6,0.1 c 0.1,0.1 0.2,0.3 0.2,0.5 0,0.2 0.1,0.5 0.2,0.5 v 0.1 -0.1 l -0.1,-0.1 c 0,0 -0.1,-0.2 -0.1,-0.4 0,-0.1 0,-0.2 -0.1,-0.2 z m -1.3,0.3 c 0.1,0 0.2,0.1 0.2,0.2 0,0.2 -0.1,0.2 -0.1,0.2 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.1 0.2,-0.1 z m -1.4,0.1 0.2,0.4 0.3,0.6 1.6,3.3 0.2,0.5 0.2,0.5 c 0.1,0.3 0.5,1.1 0.8,1.8 -0.3,-0.7 -0.8,-1.5 -1.3,-2.6 l -2.2,-4.4 z m 2.7,0.5 h 0.1 c 0.1,0 0.1,0.1 0.1,0.1 h -0.1 v -0.1 l 0.1,-0.1 z m 0.7,0.4 c 0.4,1 1.6,4.2 2.6,7.1 0.3,0.8 0.6,1.8 0.7,2 v 0.2 l -0.6,-1.7 v -0.2 c -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 -0.1,-0.1 -0.1,-0.2 v -0.1 c 0,-0.1 -0.1,-0.3 -0.1,-0.3 -0.1,-0.1 -0.1,-0.3 -0.1,-0.5 l -0.1,-0.4 c -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 -0.1,-0.5 -0.4,-1 l -0.7,-1.8 c -0.1,-0.5 -0.4,-1.1 -0.4,-1.1 V 96 l -0.1,-0.4 c -0.1,-0.2 -0.2,-0.3 -0.2,-0.4 V 95 Z m -1.2,0.2 c 0.1,0 0.2,0.1 0.2,0.2 0,0.1 0,0.2 -0.1,0.2 l -0.1,-0.1 c 0,-0.1 0,-0.1 0.1,-0.1 z m -45.6,1 c 0.2,0 0.2,0.2 0.2,0.8 0,0.5 -0.1,1.1 -0.1,1.3 -0.1,0.4 -0.1,0.3 -0.4,-0.6 -0.1,-1 -0.1,-1.2 0,-1.2 0.1,-0.1 0.2,-0.1 0.3,-0.1 z m -15.6,5.4 c 0,0.1 -0.1,0.2 -0.3,0.3 -0.2,0.1 -1.2,1.1 -1.3,1.3 0,0.1 -0.1,0.1 -0.1,0.2 -0.1,0.1 -0.1,0.2 -0.1,0.3 l -0.4,0.7 -0.3,0.8 c -0.2,0.3 -0.3,0.4 -0.7,0.1 -0.2,-0.1 -0.3,-0.2 -0.4,-0.2 -0.1,0 -0.3,0.2 -0.4,0.4 -0.1,0.2 -0.3,0.3 -0.4,0.3 0,0 -0.1,0.1 -0.3,0.2 -0.3,0.3 -0.3,0.4 -0.5,1.8 -0.1,1.1 -0.3,2 -0.8,4.2 -0.2,0.8 -0.3,1 -0.6,2.7 -0.3,1.5 -0.8,3.1 -0.9,3.6 -0.1,0.1 -0.2,0.5 -0.4,0.9 l -0.4,1.3 c -0.1,0.4 -0.4,1.1 -0.5,1.6 -0.6,2.2 -1.1,3.3 -1.6,3.8 0,0.2 -0.2,0.3 -0.2,0.3 0,0.1 -0.9,1.8 -1.4,2.7 l -0.6,1.1 -0.1,0.3 v 0.2 c 0,0 0.1,0.1 0.1,0 0.2,-0.2 1,-0.8 1.2,-0.8 0.3,0 1.5,-1.3 2.2,-2.3 0.1,-0.2 0.3,-0.4 0.4,-0.5 h 0.1 c 0,0 0.2,-0.2 0.4,-0.3 0.2,-0.2 0.6,-0.7 0.9,-1.1 0.7,-1.1 1,-1.5 1.1,-1.5 v -0.2 l 0.2,-0.2 c 0.1,-0.1 0.2,-0.2 0.3,-0.4 0.1,-0.1 0.1,0 -0.1,0.2 l -0.3,0.5 c -0.1,0 -0.1,0.1 -0.1,0.1 0,0 -0.1,0.3 -0.4,0.7 l -1.2,1.9 c -0.1,0.2 -0.4,0.7 -0.7,1.1 -0.6,0.9 -1.1,1.8 -1,1.8 0.2,0 0.8,-0.6 0.8,-0.7 0,-0.1 0,-0.1 0.1,-0.1 0.2,0 0.6,-0.5 1.2,-1.3 l 1.2,-1.5 c 0.8,-1.1 2,-2.8 2,-3 l 0.4,-0.6 c 0.2,-0.3 0.7,-1 1.1,-1.7 0.3,-0.7 0.7,-1.2 0.8,-1.4 l 0.6,-1.2 c 0.9,-1.5 1.9,-3.6 2.1,-4.6 0.2,-0.4 0.2,-0.4 0,-0.6 -0.2,-0.2 -0.4,-0.2 -0.6,0.3 -0.6,1 -1.4,2.1 -1.5,1.9 0,-0.1 0.1,-0.2 0.1,-0.4 l 0.8,-1.9 c 0.1,-0.2 0.2,-1.2 0.1,-1.5 0,-0.2 0.2,-2.6 0.3,-3.5 l 0.7,-2.9 0.5,-2.3 h -0.1 z m 64.1,1.5 0.7,0.8 c 0.2,0.2 0.6,0.8 0.7,1.4 0.1,0.2 0.2,0.5 0.2,0.5 0,0.1 0.1,0.4 0.1,0.4 0,0 0,0.1 0.1,0.2 0.1,0 0.1,0.1 0.1,0.2 0,0.1 0.1,0.3 0.2,0.6 0.1,0.2 0.2,0.4 0.2,0.5 0,0.1 0,0.2 0.1,0.3 0,0 0.2,0.6 0.4,1.3 0.1,0.6 0.3,1.2 0.4,1.2 0,0 0.1,0.2 0.1,0.3 0.1,0.3 0.2,0.8 0.5,1.7 0.2,0.9 0.4,1.6 0.4,1.7 -0.8,-3.2 -1.8,-6.7 -2.3,-7.9 -0.1,-0.1 -0.2,-0.5 -0.3,-0.8 -0.3,-0.8 -0.6,-1.3 -1.2,-2 l -0.3,-0.3 z m 1.6,0.6 c 0.3,0.8 0.7,2.2 0.8,2.8 0.1,0.4 0.3,1.1 0.4,1.4 l 0.2,0.3 c 0,-0.3 -0.2,-0.5 -0.3,-0.6 0,0 -0.1,-0.2 -0.1,-0.5 v -0.4 c 0,-0.1 -0.1,-0.1 0,-0.2 0.1,-0.2 -0.4,-1.9 -0.6,-2.4 l -0.1,-0.3 v -0.2 z m -8.5,1.2 c 0.1,-0.1 0.1,0.1 0.2,0.3 0.1,0.2 0.1,0.5 0,0.8 0,0.4 0,0.4 -0.1,0.2 -0.2,-0.4 -0.2,-1.2 0,-1.3 z m -18.5,0.1 c 0,0.1 0.1,0.2 0.2,0.4 0.1,0.3 0.1,0.3 -0.1,0.3 -0.1,0 -0.2,-0.1 -0.2,-0.3 0,-0.2 0.1,-0.3 0.1,-0.3 z m 0.3,0.8 v 0.1 c 0,0 -0.1,0.2 -0.2,0.2 -0.1,0 -0.1,-0.1 -0.1,-0.2 0.1,-0.1 0.1,-0.1 0.2,-0.1 z m 0.2,0.9 c 0,0 0.1,0.1 0.2,0.4 0,0.2 0,0.4 -0.1,0.4 -0.1,0 -0.2,-0.2 -0.2,-0.5 v -0.4 z m 0.5,0.6 c 0.1,0.1 0.1,0.3 0,0.4 0,0.1 -0.1,0 -0.1,-0.2 v -0.3 z m -0.3,0.5 v 0.1 c 0,0.1 0.1,0.2 0,0.3 -0.1,0 -0.1,-0.1 -0.1,-0.2 z m 27.9,1.2 0.3,0.9 0.6,2.3 0.3,1.2 c -0.1,-0.1 -0.3,-0.8 -0.3,-0.9 0,-0.1 -0.1,-0.1 -0.1,-0.2 -0.1,-0.1 -0.2,-0.3 -0.2,-0.5 l -0.1,-0.5 c -0.2,-0.4 -0.4,-1.1 -0.8,-2.2 z m -56.5,1.1 c -0.4,-0.1 -0.4,-0.1 -0.6,1.9 l -0.2,2.4 c 0,0.3 -0.1,0.3 -0.2,0.2 -0.3,-0.2 -0.3,-0.1 -0.3,0.5 0,1.5 -0.5,0.5 -0.8,-1.3 -0.1,-1.4 -0.3,-1.2 -0.3,0.3 0.2,4.4 0.3,8 0.4,8.2 0.1,0.1 0.2,0.3 0.4,0.3 0.5,0 0.5,0.1 0.8,2.9 0.1,1.1 0.2,2.2 0.3,2.5 0.1,0.3 0.1,0.3 -0.2,0.2 -0.2,-0.2 -0.4,-0.3 -0.5,-0.5 -0.3,-0.4 -0.5,0.1 -0.2,0.8 0.1,0.4 0.1,0.7 0.1,0.8 0,0 0,0.1 0.1,0.1 0.1,0 0.3,0.4 0.7,1.3 0,0.3 -0.7,0.4 -1,0.3 -0.4,-0.3 -0.3,0.2 0.2,1.2 0.2,0.5 0.4,0.9 0.5,1 0.1,0 0.2,0.2 0.2,0.3 0,0.5 1.1,2.2 2.2,3.3 0.5,0.6 1.4,1.4 1.9,1.6 0.4,0.3 0.9,0.5 0.9,0.4 0,0 0,-0.2 -0.1,-0.5 -0.2,-0.6 -0.7,-3.2 -0.9,-4.9 -0.3,-2 -0.4,-2.5 -0.9,-2.5 -0.2,0 -0.4,-0.2 -0.9,-1.1 -0.3,-0.6 -0.5,-1.2 -0.5,-1.3 0,-0.1 -0.1,-0.2 -0.3,-0.2 -0.3,-0.1 -0.6,-1.5 -0.6,-2.6 0,-0.5 0,-0.6 0.2,-0.2 0.2,0.4 0.2,0.4 0.5,-0.6 0.2,-0.4 0.2,-0.6 0.5,-0.5 0.1,0 0.3,0.1 0.2,0.2 0,0.1 0,0.1 0.1,0.1 0.1,0 0.1,0.1 0,0.2 0,0.1 0,0.1 0.2,0.1 0.4,0 0.7,0.8 1.3,3.1 0.3,1.1 0.6,2.2 0.7,2.2 0.1,0.1 0.5,1.1 0.9,2.2 0.8,2.2 2,4.6 2.7,5.5 l 0.6,0.6 -0.1,-0.6 c -0.1,-0.6 -0.3,-1.1 -1.6,-3.2 -1.3,-2.2 -1.5,-2.6 -2,-4.1 -0.6,-1.8 -1.1,-4.1 -0.9,-4.1 0.1,0 0.1,0.1 0.1,0.2 0,0.3 0.7,1.3 0.9,1.3 0.1,0 0.2,-0.4 0.4,-0.9 0.3,-1.3 0.3,-1.4 0.7,-0.7 l 0.3,0.6 V 115 l -0.5,0.3 c -0.4,0.3 -0.4,0.3 -0.8,-0.2 -0.1,-0.26 -0.4,-0.77 -0.5,-1.1 -0.1,-0.6 -0.2,-0.7 -0.4,-0.5 -0.2,0.1 -0.3,0.1 -0.5,-0.2 -0.1,-0.25 -0.3,-0.3 -0.3,-0.3 -0.2,0.1 -0.1,1.9 0.1,2.84 0.2,1.1 0.2,1.1 -0.1,1.1 -0.3,0 -0.5,-0.8 -0.8,-2.94 0,-1.1 -0.2,-2.2 -0.3,-2.5 -0.3,-0.8 -0.9,-1.4 -1.4,-1.5 z m 29,0.2 0.1,0.1 v 0.4 c -0.1,0.1 -0.1,0 -0.1,-0.2 0,-0.1 0,-0.2 0.1,-0.2 z m 0.6,1.4 0.2,0.3 c 0,0.2 0.1,0.4 0.1,0.5 0,0.2 -0.2,0.2 -0.4,0.1 -0.1,0 -0.1,-0.3 0,-0.5 v -0.4 z m 28.2,1.8 0.2,0.6 v 0.1 l 0.4,1.4 c 0.1,0.3 0.4,1.3 0.6,2.1 -0.1,-0.2 -0.1,-0.3 -0.2,-0.5 -0.1,-0.2 -0.1,-0.4 -0.1,-0.5 0,-0.1 -0.1,-0.2 -0.1,-0.2 -0.1,0 -0.1,-0.1 -0.1,-0.3 0,-0.1 -0.1,-0.2 -0.2,-0.4 -0.1,-0.1 -0.2,-0.2 -0.2,-0.4 -0.1,-0.3 -0.2,-0.6 -0.3,-0.8 -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 v -0.1 c 0,-0.1 0,-0.1 -0.1,-0.1 -0.1,0 -0.1,-0.2 -0.1,-0.3 0,-0.2 0,-0.2 -0.1,-0.3 z m -0.5,0.9 0.2,0.7 0.3,0.9 0.1,0.3 v 0.4 c 0.1,0.1 0.1,0.3 0.1,0.3 0.1,0 0.1,0.2 0.1,0.3 0,0.1 0,0.2 0.1,0.2 l -0.2,-0.9 c -0.2,-0.5 -0.3,-1 -0.4,-1.5 l -0.2,-0.8 z m -89.4,1 -0.1,0.2 c 0,0.1 -0.1,0.3 -0.2,0.5 l -0.2,0.4 -0.2,0.5 -0.5,1 -0.4,0.9 c -0.1,0.1 -0.3,0.6 -0.5,1.2 -0.2,0.6 -0.4,1.1 -0.5,1.1 -0.1,0.1 -0.5,1.4 -0.5,1.6 0,0.1 -0.1,0.3 -0.2,0.6 -0.2,0.6 -0.2,0.8 -0.3,1.3 0,0.2 -0.1,0.4 -0.1,0.5 l -0.2,0.9 -0.3,1.4 c 0,0.1 -0.1,-0.6 -0.1,-1.4 0,-0.8 0,-1.4 -0.1,-1.4 -0.1,-0.1 -0.2,0.3 -0.3,1 l -0.2,0.6 v 1.3 c -0.1,0 -0.1,0.3 -0.1,0.4 0,0.6 -0.4,2.8 -0.5,2.9 -0.1,0.1 -0.2,0.1 -0.1,0.2 0,0.1 0,0.2 -0.1,0.2 h -0.2 c -0.1,-0.2 -0.4,-0.8 -0.4,-1.1 l -0.1,-0.4 c -0.1,-0.2 -0.1,-2.3 -0.1,-3.7 0,-1.4 0,-1.9 0.2,-3.7 v -0.7 c -0.1,0.1 -0.3,1.6 -0.5,3.4 l -0.1,1.3 -0.2,1.3 c 0,1.3 -0.2,1.4 -0.3,0.4 0,-0.3 0,-0.5 -0.1,-0.6 0,0 -0.1,0.3 -0.2,3.1 l -0.1,2.5 c -0.1,0.6 -0.1,2.4 -0.1,4 v 3 h 0.4 c 0.1,0.1 0.1,0 0.1,-0.1 0.1,-0.3 0.3,-0.1 0.3,0.2 0.3,1.9 0.3,1.6 0.6,7.9 0.2,3.1 0.2,3 0.4,4.3 l 0.3,1.4 0.2,0.9 c 0.2,1 0.3,0.4 0.2,-1.4 v -12.7 c 0.1,-0.1 0.2,-0.1 0.3,0.6 l 0.1,1.2 c 0,0.2 0,0.6 0.1,0.9 l 0.2,1.1 c 0.1,1.2 0.5,3.7 0.6,4.2 0.1,0.7 0.3,1.8 0.4,2.8 0.1,0.6 0.1,1 0.2,1.1 0.1,0 0.1,0.2 0.1,0.4 0.1,0.4 0.2,-5.4 0.1,-6 l -0.1,-3.7 c -0.1,-3.3 -0.2,-5 -0.3,-5.8 0,-0.3 0,-0.5 0.1,-0.6 0.1,0 0.2,-0.5 0.2,-0.9 0,-0.5 0.1,-0.8 0.2,-1 0.2,-0.3 0.2,-0.4 0.2,-1.5 0,-1.3 0.3,-3.3 0.4,-3.8 l 0.1,-0.3 0.1,0.5 c 0.1,0.5 0.1,1.5 0.1,2.9 l 0.2,2 0.2,1 c 0,0.1 0.1,0.1 0.2,0 0.1,-0.1 0.1,0 0.1,0.8 0,1.1 0.1,1.9 0.2,1.9 l 0.1,0.1 c -0.1,0.1 0.1,0.9 0.2,1 0.1,0.1 0.2,0.5 0.3,1.3 0,0.2 0.1,0.4 0.1,0.6 v 0.4 c 0,0.2 0.1,0.7 0.3,1.2 0.1,0.6 0.2,1.1 0.2,1.2 0,0.2 0.1,0.2 0.1,0.2 0.1,0.1 0.1,0.2 0.1,0.3 0,0.1 0.1,0.2 0.1,0.2 v -0.6 c -0.1,-1 0.2,-0.9 0.5,0.2 0.1,0.3 0.2,0.5 0.2,0.6 0.1,0 0.2,0.2 0.2,0.3 l 0.2,0.3 c 0.1,0.1 0,-1.1 0,-2.4 -0.2,-1.1 -0.2,-1.7 0,-3.6 0.1,-2.2 0.2,-5.2 0.1,-8.4 0,-2.8 0,-4.2 0.1,-5 0.2,-1.3 0.2,-2.7 0,-3.4 0,-0.4 -0.1,-0.4 -0.1,-0.2 -0.2,1.2 -0.8,2.5 -0.9,2.5 -0.1,0 -0.1,-0.2 -0.1,-0.6 0,-0.7 0,-0.9 -0.1,-0.7 -0.1,0.2 -0.2,0.1 -0.2,0 v -0.3 c 0,0 0.1,-0.3 0.1,-0.8 0,-0.4 0.1,-1 0.1,-1.4 l 0.5,-3.8 c 0.2,-1 0.2,-1.1 0.1,-1.1 z m 90.4,2.5 0.1,0.4 c 0,0.2 0.1,0.6 0.2,0.7 v 0.3 l -0.4,-1.3 z m 0.9,0.4 v 0.2 c 0,0.2 0.1,0.5 0.1,0.7 -0.2,0 -0.2,-0.6 -0.1,-0.7 z m 0.1,0.9 v 0.7 c -0.1,-0.1 -0.1,-0.3 -0.1,-0.4 v -0.1 z m -0.6,0.4 0.1,0.2 c 0,0.2 0.2,0.5 0.3,0.5 v 0.2 c 0,0.1 0.1,0.2 0.1,0.2 -0.1,-0.1 -0.2,-0.5 -0.4,-0.8 z m 0.7,0.5 c 0,0.1 -0.1,0.2 -0.1,0.2 -0.1,0.2 -0.1,0.3 0,0.5 v 0.4 -0.1 l -0.1,-0.2 c -0.1,0 -0.1,-0.5 0,-0.5 z m -0.2,0.7 v 0.1 c 0,0 0.1,0.1 0.1,0.2 v 0.1 c -0.1,0 -0.1,-0.1 -0.2,-0.2 h -0.1 z m -2.5,2.9 v 0.4 c 0,0.3 0,0.9 0.1,1.5 l 0.1,2.1 0.1,1.9 0.1,1 0.1,1.3 0.1,2.3 v 2.1 l 0.2,5.7 c 0,4.1 0,4.7 0.1,4.2 0.1,-0.8 0.1,-1.2 0.2,-1.3 l 0.1,-0.6 c 0,-0.2 0.1,-0.4 0.1,-0.5 0.1,0 0.1,-0.2 0.1,-0.3 l 0.1,-0.4 c 0.1,-0.1 0.2,-0.4 0.2,-0.7 0.1,-0.3 0.1,-0.6 0.2,-0.7 l 0.1,-0.3 v -0.2 l 0.1,0.2 c 0.1,0.3 0,1.5 -0.2,2.9 l -0.2,0.9 -0.3,1.9 -0.1,0.7 -0.1,0.5 v 0.1 c 0,0.1 0,0.1 0.1,0.1 0.2,0 0.2,-0.1 0.2,-0.2 v -0.3 c 0,-0.1 0.1,-0.2 0.1,-0.2 0,-0.2 0,-0.3 0.1,-0.3 0.1,-0.1 0.2,-0.1 0.1,-0.1 0,-0.1 0,-0.2 0.1,-0.3 0.2,-0.5 0.3,-0.6 0.3,-0.7 0,0 0,-0.2 0.1,-0.2 0.1,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.1 0.1,-0.2 0,-0.2 0.3,-0.4 0.6,-0.5 h 0.3 l 0.2,0.2 c 0.1,0.1 0.3,0.2 0.3,0.3 l 0.1,0.2 c 0.1,0.2 0.2,0.5 0.3,1.6 0.1,0.9 0.1,2 0,2.8 0,0.4 0,0.4 0.1,0.4 0.1,0 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.1 0.1,-0.1 0.1,0 0.1,-0.1 0.1,-0.1 0,-0.1 0,-0.2 0.1,-0.3 0.1,-0.2 0.2,-0.3 0.2,-0.4 0,-0.1 0,-0.1 0.1,-0.2 0.1,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.3 0.1,-0.4 l 0.1,-0.6 c 0.1,-0.4 0.5,-2.3 0.6,-2.6 v -0.2 l 0.1,-0.5 v -0.5 c 0,-0.1 0.1,-0.6 0.1,-1.1 v -0.1 c 0.1,0 0.1,1.3 0,1.4 v 0.8 l -0.1,0.8 c -0.1,0 -0.1,0.2 -0.1,0.3 0,0.3 0,1 -0.2,1.5 v 0.4 c 0,0.1 -0.2,1.3 -0.3,1.6 l -0.1,0.6 c -0.1,0.3 -0.1,0.6 -0.1,0.8 l -0.3,1.5 -0.3,1.4 -0.3,1.1 c -0.3,0.8 -0.5,1.6 -0.8,2.2 l -0.3,0.9 -0.2,0.6 c -0.1,0.2 -0.1,0.5 -0.3,0.8 -0.5,1.5 -1.5,3.6 -1.7,3.7 v 0.3 l -0.4,0.6 -0.5,0.5 c -0.1,0.1 -0.1,0.1 -0.2,0.1 v -0.8 c 0,0 0.1,-0.1 0.1,-0.2 0,-0.1 0.2,-0.5 0.4,-1 0,-0.1 0.2,-0.4 0.3,-0.8 l 0.3,-0.9 c 0.1,-0.1 0.2,-0.3 0.2,-0.4 l 0.1,-0.2 0.1,-0.3 0.2,-0.5 0.2,-1.1 v -0.2 h -0.2 c -0.2,0 -0.2,0 -0.3,0.1 l -0.2,0.2 -0.6,0.8 -0.2,0.5 c -0.3,0.5 -0.4,0.6 -0.6,0.6 -0.2,0 -0.2,0 -0.4,0.7 -0.2,0.7 -0.8,2.5 -1.1,3.4 -0.2,0.6 -1,2.2 -1.3,2.7 -0.2,0.4 -0.5,0.9 -0.8,1.6 l -0.4,0.8 c -0.2,0.5 -0.2,0.5 -0.2,0.6 0,0 0.3,-0.1 0.4,-0.3 l 0.6,-0.5 c 0.1,0.1 0.1,0.4 -0.1,0.8 -0.3,0.5 -1.2,1.9 -1.6,2.3 l -0.1,0.2 -0.3,0.3 c -0.5,0.5 -1.1,1.4 -1.2,1.8 -0.2,0.3 -0.2,0.5 -0.2,0.6 v 0.2 h 0.1 c 0.2,0 0.6,-0.1 0.8,-0.3 0.1,-0.1 0.3,-0.2 0.4,-0.3 0.2,-0.1 0.5,-0.3 1.1,-0.8 1.3,-1.3 2.9,-3.5 3.5,-5.1 l 0.2,-0.4 c 0.1,-0.1 0.2,-0.6 0.5,-1.1 l 0.2,-0.5 c 0.1,-0.3 0.4,-1.3 0.4,-1.6 0,-0.4 0,-0.4 0.5,-1.1 l 0.7,-1 c 0.2,-0.4 0.4,-0.6 0.4,-0.5 0,0 0,0.1 0.1,0.2 0,0.1 0,0.2 -0.1,0.4 -0.1,0.4 -0.1,0.6 0.1,0.7 0,0.1 0.2,-0.3 0.3,-0.7 0,-0.3 0.1,-0.6 0.2,-0.8 v -0.3 c 0,-0.1 0,-0.1 0.1,-0.2 0.1,-0.1 0.1,-0.2 0.1,-0.2 l 0.1,-0.3 0.5,-1.3 c 0.2,-0.6 0.4,-1.1 0.5,-0.9 0,0 -0.1,1.6 -0.3,2.5 0,0.4 -0.1,0.9 -0.1,1.1 l -0.1,0.6 c -0.1,0.2 -0.2,0.4 -0.3,1.4 l -0.2,0.7 c -0.1,0 -0.2,0.2 -0.2,0.3 h -0.1 c -0.1,0.1 -0.4,0.9 -0.4,1.1 v 0.3 c 0,0.1 -0.1,0.2 -0.1,0.4 l -0.2,0.4 c -0.1,0.1 -0.1,0.2 -0.1,0.2 0,0 0.1,0 0.1,-0.1 0,-0.1 0.2,-0.3 0.2,-0.4 l 0.1,-0.3 c 0.1,0 0.1,-0.1 0.1,-0.2 0,-0.1 0,0 0.1,0 v -0.3 c 0.1,0 0.1,0.2 0,0.4 l -0.1,0.6 c -0.1,0.3 -0.1,0.5 -0.3,1.2 -0.2,0.5 -0.2,0.6 0,0.7 0.3,0.4 0.3,0.6 0.1,1.4 -0.1,0.7 -0.2,1 -0.2,1.2 0,0.1 -0.1,0.4 -0.2,0.6 l -0.2,0.5 -0.1,0.2 v 0.3 c 0,0.2 -0.1,0.8 -0.1,0.9 0,0.1 0,0.1 0.1,0.1 0.1,0.1 0.2,0 0.3,-0.4 0.4,-0.7 1,-2.5 1.4,-4.2 0.2,-0.7 0.3,-1.2 0.5,-2.3 l 0.2,-0.8 c 0,-0.1 0.1,-0.3 0.1,-0.5 0,0 0.1,-0.3 0.1,-0.6 l 0.1,-1.1 0.2,-1.1 0.2,-0.7 0.1,-0.6 0.1,-0.9 c 0.2,-1.1 0.3,-1.9 0.4,-3.8 l 0.2,-1.3 c 0.2,-0.5 0.3,-1 0.4,-1.7 0.1,-0.6 0.3,-1.4 0.4,-1.7 l 0.1,-0.2 0.1,0.2 c 0,0.1 0.2,0.2 0.2,0.2 0.1,-0.1 0.3,-0.9 0.7,-2.1 0.2,-0.7 0.2,-0.9 0.4,-1.1 0,0 0.1,-0.2 0.1,-0.3 v -0.2 l 0.2,-0.4 c 0,-0.1 0.1,-0.2 0.1,-0.1 0.1,0.1 0.2,1.4 0.3,3 0,1.4 0.1,3.3 0.2,4.1 0,0.3 0.1,0.4 0.1,0.4 0,0 0.1,0 0.1,-0.1 l 0.1,-0.4 c 0.1,-0.2 0.2,-0.9 0.3,-2.8 0.1,-1.8 0.2,-3 0.5,-3.6 l 0.1,-0.5 c 0.1,-0.4 0.1,-0.5 0,-0.9 -0.1,-0.3 -0.16,-0.7 -0.16,-0.8 l -0.5,-2.7 -0.3,-1.6 -0.1,-0.8 -0.2,-1 c -0.1,-0.7 -0.2,-1.1 -0.1,-1.2 0,-0.1 0.2,0 0.3,0.5 l 0.2,0.6 0.2,0.7 c 0.1,0.3 0.2,0.6 0.3,0.7 0,0.1 0.1,0.2 0.1,0.3 v 0.1 -0.7 c -0.3,-2 -0.4,-3 -0.3,-3.2 l 0.1,-0.2 0.1,0.2 0.3,2.2 0.1,0.7 0.1,1.3 c 0.1,0.5 0.13,1.3 0.13,1.7 0.1,1.3 0.2,2.1 0.5,4.3 0.5,3 0.6,3.3 0.8,4.2 l 0.1,0.7 0.5,1.8 0.4,1.8 0.2,0.8 0.2,1.3 c 0.1,0.6 0.2,1.2 0.3,1.4 l 0.2,1.2 0.4,1.9 c 0,0.1 0,0.1 0.1,0 0.1,-0.3 0.1,-6.6 0,-7.8 l -0.1,-1.1 c 0,-0.3 -0.1,-0.6 -0.1,-0.7 -0.2,-0.3 -0.4,-1.1 -0.6,-2.2 l -0.3,-1.7 -0.3,-1.8 -0.27,-1.2 -0.2,-1.8 c -0.1,-0.6 -0.2,-1.3 -0.2,-1.5 l -0.3,-2.3 -0.2,-1 -0.2,-1.1 -0.2,-0.9 -0.1,-0.6 -0.1,-0.8 -0.4,-3.1 -0.3,-1.5 c -0.1,-0.6 -0.1,-0.9 -0.38,-2.5 -0.1,-0.8 -0.1,-0.8 0,-0.8 0.1,0 0.2,0.1 0.3,0.7 l 0.2,0.7 c 0.1,0.1 0.1,0.3 0.1,0.3 0,0 0,0.2 0.1,0.2 0,0.2 0.1,0.3 0.2,1.1 l 0.1,0.4 c 0.1,0.1 0.2,0.3 0.2,0.5 0.2,0.9 0.2,1.1 0.4,1.2 l 0.1,0.2 v 0.1 c 0.1,0.1 0.1,0.3 0.1,0.3 -0.1,0 0,0 0,0.2 0,0.1 0,0.1 0.1,0.1 0.1,0 0.2,-0.1 0.2,-0.2 -0.1,0 -0.1,-0.2 -0.1,-0.4 -0.02,-0.5 -0.2,-1.7 -0.3,-2 l -0.02,-0.4 -0.4,-2.4 -0.1,-0.8 v -0.4 c 0,0 -0.1,-0.1 -0.1,-0.2 v -0.5 c -0.1,-0.4 -0.1,-0.4 0.1,-0.3 0.1,0 0.1,0.1 0.1,0.3 0,0.1 0.1,0.3 0.1,0.3 0,0 0,0.3 0.1,0.4 l 0.1,1.1 0.2,1.4 0.1,0.9 c 0.1,0.2 0.1,0.6 0.1,0.8 0,0.3 0,0.5 0.1,0.6 v 1 c 0,0.1 0.1,0.2 0.1,0.4 0,0.2 0,0.5 0.1,0.5 v 0.4 c 0,0.1 0,0.4 0.1,0.4 l 0.1,0.7 0.3,1.6 0.1,0.8 0.3,1.4 c 0.3,1.3 0.4,2.3 0.5,3.7 l 0.3,3.6 c 0.2,0.8 0.2,1.2 0.4,3.1 0,0.5 0.1,1.1 0.1,1.3 v 0.9 c 0,0.2 0.1,0.6 0.1,0.8 v 0.5 -0.5 c 0,-1.2 -0.2,-3.2 -0.3,-4.4 l -0.4,-4.7 c -0.3,-2.4 -0.3,-3 -0.4,-3.3 l -0.2,-0.6 -0.2,-0.6 -0.2,-0.9 c -0.1,-0.4 -0.2,-1 -0.2,-1.2 l -0.3,-2.2 -0.1,-1 -0.2,-1.4 -0.2,-1.5 -0.1,-1.1 -0.2,-1.3 -0.2,-1.1 -0.1,-0.9 c -0.1,-0.3 -0.2,-0.8 -0.2,-1 l -0.2,-0.7 c -0.1,-0.2 -0.1,-0.4 -0.1,-0.5 0,-0.1 -0.1,-0.2 -0.1,-0.4 0,-0.1 -0.1,-0.3 -0.1,-0.6 l -0.1,-0.9 v -0.5 l -0.1,-0.1 h -9 z m -93.1,4 c 0,0 0.1,0.1 0,0.1 0,0.1 -0.1,0.1 -0.1,0.1 h -0.1 c 0,0 0,-0.1 0.1,-0.1 z m 7.5,3.2 c -0.2,0 -0.3,0.1 -0.3,0.2 -0.1,0.4 -0.1,0.8 0,1.4 0.1,0.3 0.1,0.8 0.1,1.2 l 0.2,1.2 c 0.3,2.1 0.4,2.8 0.4,5.5 0,1.9 0,2 -0.1,2.2 -0.2,0.2 -0.2,0.4 -0.2,2.1 v 5.7 l 0.2,1.8 c 0,0.5 0.1,0.8 0.1,0.9 0,0 0.1,0.3 0.1,0.5 0.1,0.7 0.2,1.4 0.3,1.4 0.1,0 0.1,0 0,0 -0.1,0 0,-0.1 0,-0.2 0.1,0 0.1,-0.3 0.2,-1.1 v -4.9 c 0,-3.7 -0.1,-5.5 -0.3,-5.7 -0.1,0 -0.1,-0.1 0,-0.6 0.2,-0.4 0.2,-0.7 0.1,-2.1 0,-1.4 0,-1.6 0.1,-1.6 0.1,0 0.1,0.1 0.1,0.2 0,0.2 0,0.3 0.8,2.5 0.5,1.4 0.7,1.9 0.9,2.4 l 0.3,0.9 0.3,0.8 0.2,0.7 0.7,1.5 0.6,1.6 c 0.5,1.3 1.7,3.8 1.9,3.9 v 0.2 h 0.1 l 0.1,0.2 c 0.2,0.1 0.2,0.3 0.2,0.3 0,0.1 0,0.1 0.1,0.1 0.1,0 0.1,0 0.1,0.1 -0.1,0.1 3,3.2 4.1,4.1 l 0.8,0.7 c 0.3,0.3 2.1,1.6 2.1,1.5 0,-0.1 0,0 0,0 0,0 0.1,0.1 0.1,0 0,-0.1 0.1,0 0.2,0 0.1,0.1 0.5,0.1 0.5,0 v -0.1 c -0.1,0 -0.4,-0.6 -0.4,-0.6 l -0.5,-0.5 c -1.3,-1.5 -3.4,-4.1 -3.7,-4.6 l -0.8,-1.2 c -0.4,-0.5 -1,-1.8 -1.4,-2.6 l -0.2,-0.4 c -0.1,-0.1 -0.4,-1.1 -0.7,-2 l -0.5,-1.3 c -0.4,-0.9 -0.5,-1.5 -1.1,-3.4 l -0.3,-1.1 -0.3,-1.1 c -0.1,-0.5 -0.6,-1.2 -0.8,-1.2 -0.2,0 -0.3,0 -0.3,0.1 -0.3,0.2 -0.3,1 0,2.6 0,0.7 0.1,1.3 0.1,1.4 0,0.2 -0.1,0.2 -0.3,-0.3 -0.3,-0.6 -0.5,-1.2 -1.1,-3 -0.8,-2.5 -1.1,-3.6 -1,-4.4 l 0.1,-0.9 c 0.1,-0.7 0.1,-0.9 -0.2,-1.3 -0.2,-0.4 -0.4,-0.5 -0.5,-0.4 -0.1,0.1 -1,0 -1,0 l 0.3,-0.6 c 0.4,-0.4 0.4,-0.7 0.3,-0.8 -0.1,0 -0.2,-0.1 -0.2,-0.2 -0.1,-0.1 -0.3,-0.4 -0.4,-0.7 l -0.5,-0.6 c 0,-0.1 -0.1,-0.1 -0.2,-0.1 z m -8.2,0.9 v 0.7 -0.6 z m 72.7,14.5 c -0.1,0 -0.1,0.1 -0.3,0.1 -0.3,0.2 -1.1,1 -1.5,1.8 l -0.3,0.6 c -0.1,0.2 -0.2,0.3 -0.2,0.4 0,0.1 -0.1,0.1 -0.1,0.1 -0.1,0 -0.2,0.2 -0.3,0.5 -0.1,0.2 -0.3,0.5 -0.4,0.7 l -0.2,0.3 c 0,0.1 -0.1,0.2 -0.2,0.4 l -0.3,0.5 -0.1,0.2 -0.3,0.3 -0.7,0.9 -0.7,0.8 c -0.3,0.4 -0.6,0.6 -0.7,0.7 l -0.1,0.1 c 0.1,0 -0.4,0.6 -1,1.3 l -0.7,0.7 c -0.9,1.1 -3,3 -3.2,3 -0.1,0 -0.6,0.4 -0.7,0.6 l -0.3,0.2 -0.8,0.5 c 0,0 -0.1,0.1 -0.2,0.1 h -0.2 c 0,0.1 0,0.1 0.1,0.1 0.2,0 0.2,0.2 0,0.2 0,0.1 -0.1,0.1 -0.2,0.2 l -0.3,0.2 -0.3,0.2 c 0,0.1 -0.1,0.1 -0.2,0.1 l -0.1,0.1 -0.1,0.2 c 0,0 -0.1,0.1 -0.3,0.2 -0.1,0.1 -0.3,0.2 -0.5,0.3 -0.2,0.1 -0.3,0.1 -0.4,0.3 -0.1,0.1 -0.1,0.1 -0.1,0.2 0.1,0.1 0,0.1 0,0.1 -0.2,0 -0.2,0 0,0.1 0,0 0.3,-0.1 0.6,-0.1 h 0.6 l 0.2,-0.1 c 0,0 0.1,0 0.1,-0.1 h 0.1 c 0,0 0.1,0 0.2,-0.1 0.1,0 0.2,-0.1 0.2,-0.1 l 0.2,-0.1 h 0.1 c 0,0.1 0.1,0 0.1,0 l 0.3,-0.2 c 0.1,0 0.5,-0.2 0.8,-0.4 0.6,-0.3 0.7,-0.4 1.3,-0.6 l 0.4,-0.1 c 0.1,0 0.2,-0.1 0.2,-0.1 0.1,0 0.3,-0.1 0.3,-0.2 0,0 0.3,0 0.6,-0.2 0.5,-0.2 0.5,-0.3 0.5,-0.3 l -0.2,-0.1 0.3,-0.2 c 0.6,-0.3 1.1,-0.8 1.7,-1.4 0.4,-0.3 0.8,-0.7 1.1,-0.8 0.5,-0.4 0.7,-0.6 0.7,-0.8 0,-0.2 0.4,-0.7 0.9,-1.3 0.5,-0.6 0.9,-1.2 1.4,-2 l 0.5,-0.8 0.3,-0.4 0.4,-0.5 0.2,-0.2 c 0,-0.1 0,-0.1 0.1,-0.1 l 0.3,-0.3 c 0.1,-0.2 0.3,-0.4 0.4,-0.5 0,-0.1 0.2,-0.3 0.3,-0.4 l 0.5,-0.6 0.3,-0.4 c 0.1,-0.1 0.2,-0.3 0.4,-0.5 l 0.4,-0.6 c 0,0 0.1,-0.1 0.1,-0.2 0.2,-0.2 -0.1,-0.3 -0.4,-0.2 h -0.2 l 0.1,-0.2 0.1,-0.5 c 0,-0.3 0,-0.4 -0.1,-0.5 l -0.2,-0.1 z m -70,0.3 v 1.6 l 0.1,1 c 0,0.3 0.1,0.7 0.1,0.7 0,0.1 0.1,0.2 0.1,0.5 0,0.1 0,0.4 0.1,0.4 0,0 0.1,0.2 0.1,0.3 0,0.2 0.1,0.4 0.1,0.5 l 0.1,0.1 c 0.1,0 0.2,-0.8 0.2,-1 v -0.6 c 0,-0.2 0,-0.5 -0.1,-0.7 0,-0.3 -0.1,-0.5 -0.1,-0.6 0,-0.1 0,-0.3 -0.1,-0.4 v -0.8 c -0.1,-0.1 -0.1,-0.2 -0.1,-0.3 -0.1,-0.5 -0.2,-0.9 -0.3,-0.9 z m 73.8,3 -0.3,0.2 -0.2,0.3 -0.3,0.3 c -0.2,0.4 -0.6,0.7 -1.2,1.5 l -0.5,0.7 c -0.1,0.1 -0.1,0.5 -0.2,0.8 -0.1,0.4 -0.2,0.8 -0.3,1 l -0.4,1.2 c -0.1,0.2 -0.1,0.3 -0.1,0.4 0,0.1 0,0.2 -0.1,0.3 -0.1,0.6 -0.2,0.9 -0.2,1 -0.1,0.1 -0.1,0.3 -0.1,0.4 0,0.1 0,0.2 -0.1,0.2 0,0.1 0,0.3 -0.1,0.4 -0.2,0.6 -0.2,0.8 -0.2,1.1 -0.1,0.1 -0.1,0.2 -0.1,0.4 0,0.1 -0.1,0.3 -0.1,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0,0.3 -0.1,0.4 v 0.3 c 0,0.1 -0.1,0.2 -0.1,0.4 l -0.1,0.6 c -0.1,0.5 -0.3,1 -0.4,1.2 v 0.2 l -0.1,0.5 -0.2,0.6 c -0.1,0.1 -0.1,0.2 -0.2,0.2 l -0.2,0.5 v 1.3 c 0.1,1.1 0.1,1.3 0.2,1.4 h 0.1 v 0.2 h 0.1 c 0.1,0 0.4,-0.7 0.4,-0.8 l 0.1,-0.1 c 0,0 0.1,-0.1 0.1,-0.2 0,-0.1 0.1,-0.3 0.2,-0.5 l 0.2,-0.4 c 0,-0.2 0.2,-0.7 0.4,-0.7 0.1,-0.1 0.4,-0.7 0.4,-1 0.1,-0.4 0.3,-0.9 0.4,-1.3 0.2,-0.8 0.3,-1 0.7,-1.4 l 0.4,-0.6 c 0,-0.1 0,-0.2 0.1,-0.2 l 0.1,-0.3 c 0.1,-0.3 0.4,-1.3 0.5,-1.5 0.4,-0.8 0.5,-1.3 0.4,-1.8 -0.1,-0.3 -0.1,-0.8 0.1,-1.3 0,-0.3 0.2,-1 0.3,-1.3 v -0.2 c 0,0 0.1,-0.2 0.1,-0.3 l 0.2,-0.5 c 0.1,-0.6 0.2,-1 0.3,-1.4 l 0.1,-0.8 c 0,-0.2 0.1,-0.5 0.1,-0.5 0,-0.3 0.1,-1 0,-1 z m 8.2,0.9 c -0.1,0 -0.1,0.2 -0.1,0.4 -0.1,0.4 -0.4,1.3 -0.5,1.5 l -0.4,1.1 -0.1,0.5 -0.1,0.4 c -0.1,0.2 -0.1,0.3 -0.1,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.4 v 0.3 c 0,0 -0.1,0.2 -0.1,0.3 0,0.1 0,0.2 -0.1,0.2 0,0 -0.1,0.2 -0.1,0.3 0,0.1 0,0.2 -0.1,0.2 0,0.1 -0.1,0.1 -0.1,0.2 v 0.3 c -0.1,0.1 -0.3,0.8 -0.3,0.9 0,0.2 0.1,0.2 0.4,-0.3 0.5,-0.5 1,-0.7 1.1,-0.4 0.1,0.2 0.1,0.2 -0.3,0.9 l -0.9,1.8 -0.4,0.8 c -0.4,0.8 -0.5,1 -1.1,2.3 l -0.6,1.4 c -0.1,0.1 -0.1,0.3 -0.1,0.5 0,0.4 -0.2,0.9 -0.6,1.9 -0.2,0.4 -0.3,0.5 -0.3,0.1 -0.1,-0.1 -0.1,-0.1 -0.1,0 0,0.1 -0.1,0.1 -0.1,0.2 -0.1,0 -0.1,0.1 -0.1,0.2 l -0.5,0.9 -0.1,0.2 -0.1,0.3 c -0.1,0.2 -0.3,0.4 -0.3,0.5 l -0.3,0.6 -0.1,0.5 -0.1,0.3 c 0,0.1 0,0.2 -0.1,0.4 l -0.2,0.7 c -0.1,0.1 -0.1,0.4 -0.1,0.5 v 0.2 l 0.1,-0.2 0.1,-0.3 c 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0,-0.1 0.1,-0.2 0,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0,-0.2 0.1,-0.3 0.1,-0.2 0.1,-0.3 0.1,-0.4 l 0.1,-0.2 0.1,-0.3 c 0.1,-0.3 0.3,-0.5 0.5,-0.6 0.1,-0.1 0.1,-0.1 0.1,0.2 0,0.2 -0.4,2.1 -0.6,2.7 0,0.3 0,0.4 0.3,0.3 0.3,-0.1 0.3,-0.1 0.4,0.1 0.1,0.1 0.1,0.2 0.1,0.3 0,0.1 0.1,0.1 0.1,0 l 0.1,-0.2 c 0.1,-0.1 0.1,-0.1 0.1,-0.2 0,-0.1 0.1,-0.2 0.1,-0.3 0.1,-0.1 0.1,-0.2 0.1,-0.3 l 0.1,-0.3 c 0.1,0 0.1,-0.2 0.1,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 0,0 0.1,-0.2 0.1,-0.3 l 0.1,-0.3 0.1,-0.5 0.2,-0.6 c 0.1,0 0.1,-0.1 0.1,-0.2 0,0 0.1,0 0.1,-0.1 0,-0.1 0.6,-1.4 0.7,-1.7 v -0.4 l 0.1,-0.2 c 0,-0.1 0.2,-0.2 0.2,-0.4 0.2,-0.7 0.5,-1.1 0.6,-1.1 0.1,0 0.2,-0.1 0.2,-0.1 l 0.2,-0.2 0.2,-0.2 c 0,-0.1 0.2,-0.1 0.4,-0.1 0.3,0 0.3,-0.1 0.3,-0.1 l 0.1,-0.1 c 0.2,0 0.3,0.1 0.3,0.3 v 0.3 c -0.1,0.2 -0.1,0.3 -0.1,0.4 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.3 v 0.2 c -0.1,0.1 -0.2,0.2 -0.2,0.3 0,0.2 -0.1,0.7 -0.2,0.8 v 0.5 c 0,0.2 -0.1,0.3 -0.2,0.4 v 0.3 c 0,0.2 0,0.2 -0.1,0.3 v 0.2 l -0.1,0.6 c 0,0.5 -0.1,0.6 -0.2,1.2 0,0.1 -0.1,0.2 -0.1,0.2 l -0.1,0.4 -0.2,0.7 -0.2,0.7 -0.1,0.4 c -0.1,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.1 -0.1,0.2 -0.2,0.3 v 0.3 c 0,0 0,0.2 -0.1,0.3 -0.1,0.1 -0.1,0.2 -0.1,0.3 0,0.1 0,0.2 -0.1,0.2 l -0.1,0.4 -0.2,0.8 h 0.1 l 0.1,-0.2 v -0.2 l 0.2,-0.2 c 0.1,-0.2 0.7,-1.3 0.8,-1.6 0.1,-0.1 0.3,-0.6 0.4,-1.1 l 0.4,-0.9 0.4,-0.8 0.5,-1 0.5,-1 c -0.3,0.6 -0.5,0.9 -0.7,1.6 -0.6,1.3 -1.3,2.9 -1.3,3 0,0.1 0.2,-0.1 0.2,-0.2 0.1,-0.1 0.1,-0.1 0.2,0.1 0,0.1 0,0.2 -0.2,0.8 l -0.3,0.9 c 0,0.1 -0.1,0.1 -0.1,0.2 0,0.1 0,0.2 -0.1,0.3 0,0.1 -0.1,0.2 -0.1,0.2 l -0.2,0.6 -0.3,0.9 -0.1,0.4 -0.1,0.1 c 0,0 0,0.2 -0.1,0.3 0,0.1 -0.1,0.2 -0.1,0.2 l -0.1,0.6 c -0.2,0.9 -0.3,1 -0.3,1.3 0,0.2 -0.1,0.4 -0.2,0.5 v 0.7 c -0.1,0 -0.1,0.1 -0.1,0.2 0,0.2 -0.1,0.3 -0.1,0.3 v 0.3 c 0,0 0,0.2 -0.1,0.2 v 0.3 l -0.1,0.5 c 0,0.2 -0.1,0.5 -0.1,0.6 0,0.2 0,0.5 -0.1,0.7 l -0.2,0.7 c -0.1,0.1 -0.1,0.4 -0.1,0.4 -0.1,0.1 -0.1,0.2 -0.1,0.3 0,0.1 -0.1,0.2 -0.1,0.3 v 0.5 c 0,0.2 -0.1,0.4 -0.1,0.4 -0.1,0 -0.3,0.5 -0.3,0.6 0,0.1 -0.1,0.1 -0.1,0.2 -0.1,0 -0.1,0.1 -0.1,0.1 0,0 0,0.1 -0.1,0.2 l -0.3,0.6 c -0.3,0.7 -0.4,0.9 -0.7,1.3 -0.5,0.7 -1.4,1.8 -2.1,2.5 -0.6,0.6 -0.8,0.8 -0.6,0.8 0.2,0 1.4,-0.6 1.8,-0.9 l 0.4,-0.2 c 0.3,-0.1 0.8,-0.6 0.9,-0.7 0,-0.1 0,-0.1 0,0 0.1,0 -0.1,0.6 -0.4,0.9 -0.1,0.1 -0.1,0.3 -0.1,0.4 v 0.4 c -0.1,0.2 -0.1,0.2 0,0.4 0.1,0.2 0.1,0.3 -0.2,0.6 -0.2,0.3 -0.4,0.7 -0.3,0.7 v 0.1 h 0.2 c 0.1,0.1 -0.2,0.3 -0.2,0.3 0.2,0 0.1,-0.1 0,-0.1 l -0.2,0.3 c -0.1,0.1 -0.3,0.2 -0.5,0.3 -0.3,0.2 -0.3,0.2 -0.1,0.2 0.1,0 0.2,0.1 0.3,0.2 0.1,0.1 0.2,0.1 0.2,0.1 0,0 0.2,-0.1 0.3,0 v 0.3 c 0,0.1 0,0.1 0.2,0 0.1,-0.2 0.1,-0.2 0,-0.2 -0.1,0 -0.1,0 -0.1,-0.1 0,-0.1 0,0 0.1,0 0.2,0.1 0.26,-0.1 0.26,-0.2 0,-0.1 0,-0.1 0.1,-0.1 0.1,0.1 0.3,0 0.3,-0.3 0.1,-0.2 0.3,-0.7 0.5,-0.7 0,0 0.3,-0.3 0.5,-0.6 0.4,-0.5 0.6,-0.9 1.2,-2.1 0,-0.2 0.2,-0.4 0.3,-0.5 0.3,-0.5 0.5,-1.2 0.5,-2 l -0.1,-0.6 h -0.4 c -0.3,-0.1 -0.4,-0.2 -0.5,-0.7 -0.1,-0.3 -0.1,-0.5 -0.1,-0.8 v -0.5 h -0.2 c -0.2,0 -0.2,0 -0.2,-0.1 0,-0.2 0.1,-0.3 0.3,-0.8 0.1,-0.3 0.3,-0.8 0.3,-1.2 0.1,-0.7 0.2,-0.9 0.3,-1 v -0.4 c 0,-0.2 0.1,-0.2 0.1,-0.2 0,0.1 0.1,0.2 0.1,0.3 l 0.1,0.2 v -0.2 c 0,-0.1 0,-0.3 0.1,-0.4 0.1,-0.2 0.2,-0.3 0.2,-0.5 0,-0.1 0.1,-0.8 0.37,-1.7 l 0.1,-0.5 c 0,-0.1 0.1,-0.3 0.1,-0.4 0.1,-0.1 0.1,-0.1 0.1,-0.2 v -0.1 c 0.1,-0.1 0.1,-0.2 0.1,-0.2 0,-0.1 0.1,-0.2 0.1,-0.2 0.1,-0.2 0.4,-1 0.5,-1.3 0,-0.2 0.1,-0.3 0.17,-0.4 0.07,-0.1 0.1,-0.1 0.1,-0.2 -0.05,-0.1 0,-0.2 0.1,-0.3 0,-0.1 0.1,-0.4 0.1,-0.6 0,-0.2 0.1,-0.4 0.1,-0.4 l 0.1,-0.2 c 0,-0.1 0,-0.3 0.1,-0.4 l 0.1,-0.4 0.1,-0.5 v -0.6 l 0.4,-1.9 0.46,-2.1 c 0.05,-0.3 0,-0.4 -0.2,-0.2 -0.1,0.1 -0.7,1.1 -0.9,1.3 -0.1,0.1 -0.1,0.2 -0.14,0.2 0,0 -0.1,0.1 -0.1,0.2 v -0.3 l 0.1,-0.2 0.1,-0.3 0.1,-0.4 0.3,-0.7 0.2,-0.5 0.1,-0.1 c 0.04,0 0.04,-0.1 0.04,-0.1 l 0.3,-0.6 0.3,-0.6 c 0.1,-0.2 0.4,-0.8 0.5,-1.3 0.1,-0.2 0.18,-0.4 0.18,-0.5 l 0.2,-0.2 c 0.1,0 0.1,-0.2 0.1,-0.3 0,0 0,-0.1 0.1,-0.2 l 0.5,-1.2 c 0.2,-0.4 0.3,-0.8 0.5,-1.1 0.08,-0.2 0.08,-0.3 0.16,-0.5 0,-0.1 0.1,-0.1 0.1,-0.1 0.1,0 0.1,-0.1 0.1,-0.17 0,-0.07 0.1,-0.2 0.2,-0.3 0.3,-0.4 0.4,-0.5 0.6,-0.2 0.1,0.2 0.1,0.2 0.1,0.4 0,0.1 -0.1,0.3 0,0.3 0,0.1 0,0.3 -0.1,0.5 -0.1,0.4 -0.1,1.5 -0.1,1.5 v -0.1 c 0,0 0.1,-0.1 0.1,0.05 0.1,0.1 0.1,0.2 0.3,0.2 0.1,0 0.14,0.1 0.14,0.1 h -0.1 c -0.1,0 -0.1,0.1 -0.1,0.1 0,0.2 0,0.2 0.1,0.2 l 0.1,-0.1 c 0,-0.12 0.4,-0.12 0.6,-0.1 0.1,0.1 0.2,0.1 0.3,0.1 0.1,0 0.2,0 0.2,0.18 0,0.1 0,0.3 -0.03,0.3 l -0.2,0.2 c -0.1,0.1 -0.1,0.2 -0.1,0.2 0,0 -0.1,0.2 -0.1,0.3 v 0.2 l -0.1,0.2 c -0.1,0.2 -0.1,0.2 0,0.3 0.1,0.1 0.1,0 0.1,-0.1 0,-0.1 0.1,-0.1 0.1,-0.3 0,0 0.1,-0.1 0.1,-0.2 0,-0.1 0.1,-0.4 0.2,-0.4 0.1,0 0.2,-0.1 0.2,-0.2 0.1,-0.2 0.2,-0.4 0.2,-0.2 0,0.1 0.1,0.1 0.1,0.1 0,0 0.1,0 0.1,-0.1 0,-0.1 0,-0.1 0.1,-0.1 l 0.2,-0.1 v -0.4 l 0.1,-0.2 c 0,0 0.1,-0.1 0.2,-0.3 l 0.3,-0.5 c 0.35,-0.7 0.7,-1.4 0.7,-1.6 0,0 -0.14,0.1 -0.2,0.3 l -0.1,0.2 c 0.46,-1 1.3,-3.9 1.6,-5.8 l 0.1,-0.6 c 0.1,-0.4 0,-1.2 -0.14,-1.3 -0.17,-0.1 -0.17,-0.1 -0.3,0.2 -0.1,0.1 -0.3,0.5 -0.4,0.8 -0.4,0.7 -0.6,1 -0.8,1 -0.1,0 -0.2,-0.3 -0.2,-0.6 0,-0.3 0.1,-0.7 0.4,-1.2 0.4,-0.7 0.7,-1.7 0.8,-2.3 l 0.1,-0.7 c 0.1,-0.5 0.1,-0.8 0.1,-0.8 -0.1,-0.1 -0.2,0.2 -0.3,0.5 l -0.1,0.3 v 0.15 c 0,0.3 -0.6,1.5 -0.8,1.9 -0.1,0.1 -0.2,0.1 -0.2,0.1 -0.1,0 -0.2,-0.1 -0.2,-0.3 v -0.4 c -0.1,-0.5 -0.2,-1.3 -0.04,-2.2 0.1,-0.5 0,-0.6 -0.6,-0.5 -0.5,0.2 -0.9,0.1 -1.7,-0.2 -0.3,-0.1 -0.7,-0.2 -1.1,-0.3 -0.6,-0.1 -1.2,-0.2 -1.9,-0.5 l -0.5,-0.1 z m -7.2,2.3 -0.1,0.2 c 0,0.1 -0.1,0.1 -0.1,0.1 0,0 -0.1,0.1 -0.1,0.3 l -0.1,0.2 c -0.1,0 -0.1,0.1 -0.2,0.2 v 0.2 c -0.1,0 -0.1,0 -0.1,0.2 v 0.3 l -0.1,0.6 c -0.1,0.2 -0.1,0.5 -0.2,0.5 v 0.1 c 0,0 0,0.2 -0.1,0.2 l -0.3,0.8 c -0.1,0.4 -0.2,0.8 -0.3,0.8 v 0.3 l -0.1,0.5 -0.4,1.4 -0.4,1.2 -0.1,0.4 c 0,0.2 -0.1,0.3 -0.1,0.3 v 0.2 c 0,0 -0.3,1.1 -0.4,1.6 -0.1,0.1 -0.1,0.3 -0.1,0.5 0,0.2 -0.1,0.6 -0.2,0.9 -0.1,0.5 -0.2,1.5 -0.3,2.2 -0.1,0.3 -0.1,0.7 -0.1,0.9 0,0.4 0,0.4 0.1,0.4 0.2,-0.1 0.5,-0.5 0.8,-0.8 l 0.4,-0.6 c 0.1,-0.2 0.4,-0.6 0.4,-0.8 l 0.3,-0.5 0.3,-0.6 1,-2.1 0.3,-0.6 0.2,-0.6 c 0.1,-0.1 0.2,-0.3 0.2,-0.3 v -0.3 c 0,-0.1 0.1,-0.3 0.1,-0.4 0.1,-0.1 0.1,-0.2 0.2,-0.2 v -0.2 l -0.1,-0.2 -0.2,0.3 -0.1,0.3 c -0.1,0.2 -0.2,0.3 -0.4,0.5 l -0.1,0.2 c 0,0.1 -0.1,0.1 -0.2,0.1 -0.1,0 -0.2,0.1 -0.1,0.1 0.1,0 -0.1,0.2 -0.3,0.2 -0.1,0 -0.1,0 -0.1,-0.1 0,0 0,-0.1 0.1,-0.1 h 0.1 -0.1 c -0.1,0.1 0.1,-1.1 0.2,-1.3 0,-0.1 0.1,-0.2 0.1,-0.2 0,0 0,-0.2 0.1,-0.3 l 0.1,-0.4 c 0.1,-0.2 0.1,-0.3 -0.1,-0.5 -0.2,-0.1 -0.2,-0.2 -0.2,-0.5 -0.1,-0.5 0.2,-1.8 0.5,-2.5 0.1,-0.1 0.1,-0.2 0.1,-0.2 0,0 0.1,-0.1 0.1,-0.2 0.1,0 0.2,-0.2 0.2,-0.3 l 0.2,-0.3 c 0.1,0 0.1,-0.2 0.1,-0.2 l 0.1,-0.1 c 0.2,-0.3 0.5,-1.2 0.5,-1.2 v -0.2 z m 25.6,3.5 c -0.1,0 -0.1,0.1 -0.1,0.2 0,0.1 -0.1,0.1 -0.1,0.1 0,0 -0.1,0.1 -0.1,0.3 0,0.2 0,0.2 -0.1,0.2 0,0 -0.1,0.1 -0.1,0.2 0,0.1 0,0.3 -0.1,0.3 0,0.1 -0.1,0.3 -0.1,0.3 0,0.1 0,0.2 -0.1,0.4 l -0.1,0.5 -0.1,0.6 -0.2,0.5 c -0.1,0.2 -0.1,0.2 -0.3,0.3 l -0.2,0.1 v 2.1 c -0.1,1 -0.3,2 -0.5,2.3 -0.1,0.1 -0.1,0.1 -0.2,0 h -0.2 c -0.1,0.2 -0.1,0.2 -0.3,1.7 -0.1,1.8 -0.3,2.9 -0.6,4.3 l -0.2,1 c 0.1,0.2 0.3,-0.3 0.5,-0.9 0.3,-0.6 0.4,-0.9 0.5,-0.8 0,0.1 0.1,0.2 0.1,0.2 v 0.2 c 0,0.2 0.1,0.4 0.2,0.4 0.1,0 0.1,0.1 0.1,0.1 h 0.1 c 0.1,0 0.2,0 0.3,-0.3 l 0.3,-0.5 0.2,-0.6 0.2,-0.5 c 0.1,-0.1 0.1,0.3 0.1,0.8 -0.2,1.2 -0.7,3 -1,4.1 -0.3,0.8 -0.5,1.2 -0.6,1.3 -0.1,0.1 -0.1,0.1 -0.1,0.2 0,0.2 0.6,-0.9 0.9,-1.8 l 0.1,-0.3 0.3,-1.2 c 0.1,-0.6 0.4,-1.1 0.4,-1.2 0,-0.1 0.1,-0.3 0.1,-0.4 l 0.1,-0.3 v -0.3 c 0,0 0,-0.3 0.1,-0.3 l 0.2,-0.7 0.2,-0.7 0.2,-0.9 c 0.2,-0.7 0.2,-1.3 0.4,-2.1 0.2,-1.9 0.4,-3.8 0.4,-4.5 v -0.7 l 0.1,-0.6 c 0,-0.2 0,-0.2 -0.1,-0.2 -0.1,0 -0.2,0 -0.2,-0.2 v -0.5 c 0,-0.2 -0.1,-0.4 -0.1,-0.4 0,0 -0.1,-0.2 -0.1,-0.4 0,-0.1 -0.1,-0.3 -0.1,-0.3 -0.1,0 -0.1,0 -0.1,-0.1 -0.1,-0.1 -0.1,-0.2 -0.2,-0.1 z m -39.8,3.6 v 0.1 c 0,0.1 -0.1,0.1 -0.2,0.1 -0.1,0 -0.1,0 -0.1,-0.1 h 0.1 z m 24.1,0.5 -0.2,0.2 v 0.1 -0.1 c 0,-0.1 0,-0.2 0.1,-0.2 z m 0.1,0.1 v 0.4 c 0,0.3 0,1.5 -0.1,1.8 0,0.2 0,0.6 -0.1,0.8 l -0.1,0.5 v -0.8 c 0.1,-0.6 0.2,-2.2 0.1,-2.5 l -0.1,-0.2 z m -0.3,0.4 -0.2,0.4 c -0.4,0.5 -0.5,0.7 -0.9,1.8 -0.5,1.2 -0.9,2.3 -1.3,3.4 0.2,-0.4 1.1,-2.6 1.1,-3 l 0.2,-0.5 c 0.1,-0.1 0.2,-0.4 0.2,-0.4 l 0.6,-1.2 c 0.1,0 0.1,-0.1 0.2,-0.1 0,-0.1 0.1,-0.1 0.2,-0.2 z m 2.6,1.5 c 0.1,0 0.1,0.1 0.1,0.1 v 0.1 h 0.1 c 0.1,0 0.4,0.3 0.4,0.3 0,0 0,0.1 0.1,0.1 v 0.5 c 0,0.3 0.1,0.5 0.1,0.5 0,0 -0.1,-0.1 -0.1,-0.4 -0.1,-0.5 -0.3,-0.8 -0.5,-0.9 h -0.1 c -0.2,-0.1 -0.3,-0.1 -0.7,-0.1 -0.3,0 -0.4,0.1 -0.5,0.2 -0.2,0.2 -0.5,0.7 -0.8,1.1 l -0.2,0.3 c 0.2,-0.5 0.7,-1.1 1,-1.4 0.2,-0.1 0.2,-0.1 0.7,-0.2 h 0.5 z m -7.1,1.6 0.1,0.1 h -0.2 v -0.1 z m 4.7,0.4 v 0.1 c -0.1,0 -0.1,-0.1 -0.1,-0.1 z m 20.4,0.1 c -0.1,-0.1 -0.1,2 -0.1,3.7 0,0.8 0.1,1.6 0.2,2.2 0,0.3 0.1,0.8 0.1,1.1 l 0.1,0.8 v -5 c 0,-0.9 -0.1,-1.3 -0.1,-1.2 l -0.1,0.5 c 0,0.6 -0.1,0 -0.1,-0.9 0,-0.6 -0.1,-1.1 -0.1,-1.1 v -0.5 z m -28.6,2.5 v 0.2 z m -16.5,6.2 c -0.1,0 -0.1,0.2 -0.1,0.3 v 0.4 c 0,0.1 -0.1,0.3 -0.1,0.6 l -0.2,0.8 -0.2,0.8 -0.3,1.2 c -0.2,1 -0.2,1.1 -0.4,1.8 -0.3,1.2 -0.3,1.2 -0.3,3.3 0,1.3 0,2.1 0.1,2.3 v 1.1 c 0,0.9 0.1,2 0.1,2.5 l 0.2,0.9 0.3,1 c 0,0.2 0.1,0.6 0.1,0.9 0,0.5 0.2,1 0.8,3.5 0.4,1.2 0.4,1.2 0.8,2 0.4,0.6 0.6,0.9 0.8,1.1 0.3,0.2 0.4,0.3 0.4,0.2 0,-0.1 0.3,-0.1 0.6,0.1 0.6,0.4 1,0.6 1.4,0.7 0.1,0.1 0.3,0.1 0.4,0.1 0.1,0 0.3,-0.1 0.3,-0.2 0,-0.1 -0.8,-1 -1.1,-1.1 0,-0.1 -0.1,-0.1 -0.1,-0.1 0,0 0,-0.1 -0.1,-0.2 -0.1,-0.1 -0.1,-0.1 0,-0.3 0,0.1 -0.3,-0.1 -0.3,-0.3 -0.1,-0.1 -0.1,-0.1 -0.2,-0.1 -0.1,0 -0.1,0 -0.1,-0.1 0,-0.1 -0.2,-0.3 -0.4,-0.6 -0.4,-0.4 -0.8,-1 -0.9,-1.1 l -0.1,-0.1 c -0.2,-0.1 -0.3,-0.6 -0.4,-1.2 0,-0.6 -0.3,-1.5 -0.3,-1.8 -0.1,-0.1 -0.1,-0.2 -0.1,-0.3 v -0.3 c -0.1,-0.1 -0.2,-0.6 -0.3,-2.2 l -0.3,-3 c 0,-0.2 -0.1,-0.4 -0.1,-0.6 v -3.5 c 0,-3.3 0,-3.7 0.3,-5.7 0.2,-0.7 0.2,-1.2 0.2,-1.5 0,-0.2 0.1,-0.3 0.1,-0.3 0.1,0 0.2,-0.7 0.1,-0.7 z m 2.5,1.4 -0.1,0.2 c -0.1,0.2 -0.2,0.3 -0.2,0.4 0,0.1 -0.1,0.2 -0.1,0.3 v 0.3 c 0,0.1 -0.1,0.2 -0.1,0.3 -0.2,0.7 -0.5,2.3 -0.8,3.6 l -0.1,0.8 c -0.1,0.5 -0.2,1.5 -0.2,2.7 0,0.9 -0.1,1.1 -0.2,1.5 -0.1,0.4 -0.1,0.5 -0.1,1.3 0,0.6 0.1,1.1 0.1,1.3 0,0.2 0.1,0.4 0.1,0.5 0,0.2 0,0.2 0.1,0.3 l 0.1,0.6 0.2,0.7 0.1,0.5 c 0.1,0.4 0.1,0.8 0.2,0.9 0.1,0.1 0.1,0.2 0.1,0.2 0,0.1 0.1,0.2 0.3,0.2 0.1,0 0.1,0 0.1,0.1 0,0.1 0,0.1 0.1,0 0.1,-0.1 0.1,-0.1 -0.1,-0.1 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.2 -0.1,-0.4 -0.1,-0.2 -0.2,-0.3 -0.2,-0.6 -0.1,-0.3 -0.1,-0.3 0.1,-0.5 0.1,-0.2 0.3,-0.3 0.4,-0.1 0.1,0.1 0.6,0.9 1.1,1.5 0.2,0.5 0.6,0.9 0.7,1 l 0.2,0.3 c 0.3,0.4 0.7,0.9 0.9,1 0.5,0.4 0.6,0.4 1,0.6 l 0.4,0.2 v -0.2 c -0.1,-0.2 -0.5,-0.6 -0.7,-0.8 l -0.2,-0.1 -0.4,-0.6 -0.5,-0.7 -0.2,-0.3 c -0.1,0 -0.1,-0.1 -0.1,-0.1 0,0 -0.1,-0.3 -0.3,-0.5 l -0.3,-0.6 -0.1,-0.2 c -0.3,-0.3 -0.5,-0.6 -0.9,-1.4 l -0.4,-0.9 -0.1,-0.7 c 0,-0.4 -0.1,-0.8 -0.1,-1 0,-0.3 -0.1,-2.4 -0.1,-3.4 v -0.3 0.1 c -0.1,-0.1 0,-4 0.2,-4.6 0.2,-0.5 0.2,-1.1 0.2,-1.5 0,-0.4 0,-1.3 -0.1,-1.6 l -0.1,-0.1 z m 21.4,4.9 c -0.2,0 -0.5,0 -0.7,0.1 -0.6,0.1 -2.1,0.5 -2.5,0.7 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.1,0 -0.2,0 -0.3,0.1 -0.1,0.2 -0.1,0.2 -0.1,0.4 0,0.1 0,0.4 -0.1,0.4 -0.1,0.2 -0.1,0.3 -0.1,0.5 v 0.3 l -0.1,0.5 -0.1,0.5 c -0.1,0.7 -0.3,1.5 -0.3,1.8 0,0.3 0,0.4 0.1,0.5 0.1,0.1 0.3,0.2 0.3,0.2 0.3,0.1 0.5,0.1 0.8,0 0.4,-0.1 1.6,-1 2.3,-1.4 l 1.5,-1.1 0.2,-0.2 0.5,-0.4 c 0.4,-0.3 1.5,-1.3 1.5,-1.5 0.1,-0.1 0,-0.1 -0.5,0.2 l -0.8,0.4 c -1.2,0.7 -1.6,0.8 -2.3,0.8 -0.3,0 -0.4,0 -0.5,-0.1 l -0.2,-0.1 0.3,-0.2 c 0.3,-0.2 0.6,-0.5 0.6,-0.7 0,-0.2 0.4,-0.6 0.6,-0.7 0.1,0 0.2,-0.1 0.2,-0.2 l 0.2,-0.1 c 0.1,0 0.5,-0.4 0.5,-0.4 v -0.2 c 0,-0.1 0,-0.1 -0.2,-0.2 -0.1,-0.1 -0.3,-0.1 -0.5,-0.1 z m -7.2,10.3 c 0.2,0 0,0.5 -0.1,0.6 -0.2,0.1 -0.2,0.1 -0.2,0 0,-0.1 0.2,-0.6 0.2,-0.6 z m -58.7,3 v 0.1 c -0.1,0.2 0,0.4 0.1,0.6 v 0.3 c 0,0 0,0.2 0.1,0.3 0.1,0.5 0.4,2.6 0.5,3.9 0.2,2 0.1,3.6 -0.2,4.7 -0.2,0.8 -0.7,1.8 -1.3,2.4 l -0.5,0.6 -0.5,0.5 c -0.1,0 -0.3,0.1 -0.3,0.2 h -0.4 c -0.1,0 -0.1,0 -0.1,0.1 l -0.2,0.1 c -0.1,0.1 -0.4,0.4 -0.5,0.4 0,0 -0.1,0 -0.2,0.1 0,0.1 0,0.1 0.1,0.1 0.1,0 0.3,-0.1 0.3,-0.1 l 0.4,-0.1 c 0.3,-0.1 0.4,-0.1 1,-0.1 h 0.8 l 0.3,-0.1 c 0.4,-0.1 0.4,-0.2 0.7,-0.5 0.5,-0.4 0.6,-0.8 0.9,-2.2 l 0.4,-2.5 c 0.1,-0.3 0.1,-0.4 0.3,-0.3 0.1,0 0.1,1.4 0,2.1 l -0.2,2.2 v 1.7 c 0,0.2 -0.1,0.3 -0.1,0.3 0,0.1 0.1,0 0.7,-1.4 0.5,-1.1 0.7,-1.4 0.6,-1.3 l -0.1,0.1 c 0,0.2 0,-0.2 0.1,-0.7 l 0.1,-0.7 c 0.1,-0.2 0.1,-0.3 0.1,-0.4 0,-0.1 0.1,-0.2 0.1,-0.3 0,-0.1 0,-0.4 0.1,-0.6 v -0.7 c 0.1,-0.2 0.1,-0.4 0.1,-0.7 0,-0.9 0.1,-1.9 0.2,-2.1 0.1,0 0.1,-0.2 0.1,-0.3 0,-0.2 0.2,-0.5 0.3,-0.7 0.1,-0.1 0,-0.1 -0.1,0 -0.2,0.2 -0.2,0.3 -0.2,0.4 0,0.2 -0.1,0.3 -0.1,0.1 0,-0.3 -0.1,-0.8 -0.1,-0.8 0,-0.1 -0.1,-0.3 0,-0.3 0.1,0 0.1,0 0.1,-0.1 v -0.3 c 0,-0.1 0,-0.1 -0.1,-0.2 0,-0.1 -0.1,-0.2 -0.1,-0.6 0,-0.4 0,-0.4 -0.1,-0.4 v 0.1 c 0,0 -0.1,0.2 -0.1,0.3 0,0 -0.1,0 -0.1,0.1 0,0.1 0,0 -0.1,0.1 0,0 -0.1,0 -0.1,0.1 0,0.1 -0.1,0.1 -0.2,0.1 -0.2,0 -0.2,0 -0.3,-0.1 -0.1,-0.1 -0.1,-0.3 -0.1,-0.3 l -0.2,-0.3 -0.1,-0.4 c -0.1,-0.3 -0.1,0.2 -0.1,1.4 0,1.1 0,1.3 -0.1,1.4 0,0 0,0.1 0,0 0,0 -0.1,-0.1 -0.1,-0.2 0,0 -0.1,-0.3 -0.1,-0.5 l -0.1,-0.6 -0.2,-0.7 c -0.1,-0.9 -0.4,-1.6 -0.7,-2.7 -0.1,-0.4 -0.1,-0.6 -0.2,-0.6 z m 45.3,1.3 c -0.1,0.1 0.3,0.8 0.8,1.4 0.4,0.5 1.8,1.8 1.9,1.8 h 0.2 c 0.2,0.1 0.8,0.2 1.3,0.3 0.6,0.1 1.6,0.1 2.1,0 0.4,0 0.8,-0.2 0.9,-0.3 0.1,-0.1 0.6,-0.5 1.1,-0.7 0.5,-0.2 0.7,-0.3 0.5,-0.4 H 541 c -0.5,-0.1 -0.6,-0.1 -0.8,0 -0.1,0.1 -0.2,0.1 -0.3,0.1 -0.38,0 -1.7,-0.4 -1.9,-0.6 -0.1,-0.1 -0.1,-0.1 -0.17,-0.1 -0.07,0 -0.93,-0.6 -1.44,-1 -0.1,-0.1 -0.3,-0.2 -0.3,-0.2 z m 11.1,1.6 c 0.1,0 0.1,0.1 0.2,0.2 0,0.1 0,0.1 -0.1,0.1 -0.2,0 -0.2,0 -0.1,-0.1 0,-0.1 0,-0.1 -0.1,-0.1 -0.2,0 -0.2,-0.1 -0.1,-0.2 h 0.1 z m 0.3,0.1 c 0,0 0,-0.1 0.1,-0.1 z m -0.9,0.2 c 0.1,0 0.2,0 0.2,0.1 0,0.2 0,0.2 -0.2,0.1 -0.1,-0.1 -0.1,-0.1 0,-0.1 z m -4.9,1.2 c 0.1,0 0.1,0 0.1,0.1 h -0.2 c -0.1,0 -0.1,0 0,0 l 0.3,-0.1 z"
+		 id="path5230"
+		 inkscape:connector-curvature="0"
+		 style="fill:#b4b3b7;stroke-width:0.02" />
+	  <path
+		 d="m 524.5,60.27 c -2.85,0.05 -3.67,0.1 -3.9,0.24 -0.1,0.1 -0.23,0.1 -0.3,0.1 -0.08,0 -0.4,0.1 -0.76,0.2 -0.93,0.5 -2.27,0.7 -3.3,0.7 h -4.2 c -0.4,0 -0.7,0.1 -0.65,0.2 0,0.1 -0.6,0.2 -1.6,0.2 -0.2,0 -0.3,0.1 -0.3,0.2 0,0.1 -0.2,0.1 -0.4,0.1 -0.3,0 -0.4,0 -0.5,0.1 0,0.1 -0.3,0.2 -0.7,0.2 -0.3,0.1 -0.7,0.1 -0.8,0.2 -0.1,0.1 -0.3,0.1 -0.3,0 -0.1,0 -0.2,0 -0.3,0.1 0,0.1 0.1,0.2 0.2,0.2 0.6,0 0.2,0.6 -1,1.2 -0.5,0.3 -1.1,0.6 -1.2,0.7 -0.1,0.2 -0.3,0.3 -0.4,0.3 -0.1,0 -0.2,0.1 -0.4,0.2 -0.1,0.1 -0.4,0.3 -0.7,0.5 -0.3,0.2 -0.6,0.4 -0.7,0.5 -0.1,0.1 -0.2,0.2 -0.3,0.2 -0.1,0 -0.2,0.2 -0.4,0.3 -0.2,0.1 -0.3,0.2 -0.4,0.1 h -0.4 0.3 c 0.2,0.1 0.6,-0.2 1.5,-0.7 0.6,-0.4 1.2,-0.8 1.3,-0.8 0,0 0.7,-0.3 1.4,-0.8 2.8,-1.7 1.2,-1.7 -2.6,-0.1 l -2.2,1 c -0.6,0.3 -1.1,0.6 -1.3,0.6 l -1.1,0.6 c -1.5,0.8 -4.2,2.7 -6.7,4.9 -0.5,0.5 -1.3,1.1 -1.7,1.5 l -1.1,1 c -0.2,0.3 -0.9,0.9 -1.5,1.3 -0.6,0.5 -1.4,1.3 -1.8,1.8 l -2.6,3 c -4.2,4.9 -5,6.1 -7.9,11.4 -0.4,0.6 -0.7,1.2 -0.7,1.3 -0.2,0.3 -1.9,4.4 -1.8,4.7 0,0.1 0.1,-0.1 0.3,-0.3 1.7,-3.6 2.5,-5.2 3.8,-7 4,-6 7.5,-9.9 11.9,-13.6 1,-0.8 2,-1.7 2.4,-2 0.7,-0.7 2.5,-2.1 4.7,-3.5 0.9,-0.5 1.7,-1.1 1.6,-1.3 l 0.1,0.2 c 0.2,0.1 -0.1,0.3 -0.4,0.5 -1.4,0.8 -5.6,3.8 -5.6,4 0,0.2 0.2,0 1.4,-0.8 3.1,-2.4 4.7,-3.3 6.5,-3.6 0.7,-0.1 1.4,-0.2 1.5,-0.3 l 0.3,-0.1 c -0.2,0.1 -0.3,0.2 -0.7,0.2 -0.6,0.2 -1.2,0.3 -1.4,0.3 -0.3,0 -0.3,0 0,0.2 0.2,0.1 0.6,0.1 1,0 0.3,-0.1 0.8,-0.1 1.1,0 0.3,0 1,-0.1 1.9,-0.4 2.4,-0.8 4.7,-0.7 4.7,0 0,0.5 0.3,0.4 1.1,-0.2 0.4,-0.3 0.8,-0.5 0.8,-0.5 0.1,0 0.4,-0.2 0.8,-0.5 l 1.2,-0.7 c 0.2,-0.1 0.5,-0.2 0.5,-0.3 0.2,-0.1 1,-0.6 1.5,-0.7 l 1.4,-0.4 c 0.5,-0.2 0.9,-0.3 1.1,-0.3 0.3,0 2.2,-0.7 2.3,-0.9 0.1,0 0,-0.1 0,-0.1 1.2,0.1 4.5,0.6 4.8,0.8 0.1,0.1 0.7,0.2 1.3,0.3 2.4,0.4 4.8,1.6 7.6,3.6 1.7,1.2 2.3,1.9 3,2.9 0.6,0.8 0.3,0 -0.7,-1.9 -0.5,-1 -0.9,-1.8 -0.8,-1.7 0.5,0.3 0.3,0 -0.6,-1.5 -1.1,-1.8 -1.3,-2.3 -1.1,-2.8 0.2,-0.5 0.1,-0.8 -1,-1.4 -0.8,-0.5 -2.1,-1.5 -1.9,-1.6 0,0 -0.5,-0.1 -1.1,0 -0.7,0.1 -1.1,0 -0.9,-0.1 H 525 Z m 6.82,0.44 c -0.14,0 -0.33,0 -0.5,0.1 -0.67,0.2 -0.65,0.2 2.04,1.1 3.63,1.3 5.86,2.3 8.98,3.8 4.43,2.2 10.77,6 12.28,7.4 0.9,0.8 2.3,2.8 3.8,5.3 0.45,0.8 1.3,2.2 1.9,3 2.65,3.9 5.5,9.2 6.6,12.3 0.26,0.8 0.76,2.4 1.1,3.6 0.35,1.3 1.25,4.1 1.98,6.3 1.6,4.7 1.96,6.3 2.5,10.5 0.62,4.7 0.98,7.3 1.4,9.7 l 0.9,5.8 c 0.9,6.2 1.6,10.8 1.7,11.2 0.14,0.9 0.14,0.1 -0.15,-2.7 -0.22,-1.6 -0.5,-4 -0.8,-5.3 -0.6,-3 -0.6,-3.4 -0.74,-8.2 0,-4.5 -0.1,-5 -0.9,-9.4 -0.3,-1.8 -0.7,-4 -0.8,-4.9 -0.1,-0.8 -0.3,-2.5 -0.6,-3.6 -0.3,-1.1 -0.6,-3 -0.9,-4.2 -0.3,-1.4 -0.6,-2.6 -0.9,-3.3 -0.3,-0.5 -1,-2.7 -1.7,-4.9 -0.6,-2.1 -1.4,-4.6 -1.8,-5.4 -0.7,-1.8 -2.1,-4.6 -2.4,-4.7 0,-0.1 -0.1,-0.1 0,-0.1 0.2,0 -2.1,-3.9 -3.1,-5.3 -2.3,-3.1 -7.8,-7.8 -12.7,-10.8 -2,-1.1 -6.8,-3.7 -6.8,-3.6 0,0.1 -0.2,0 -0.4,-0.1 -0.2,-0.1 -0.4,-0.2 -0.4,-0.1 0,0.1 -0.2,0 -0.3,-0.1 -0.2,-0.1 -0.4,-0.2 -0.4,-0.1 0,0.1 -0.1,0 -0.2,-0.1 -0.3,-0.2 -1.7,-0.7 -2.3,-0.8 l -0.9,-0.1 c -0.2,0 -0.5,-0.1 -0.6,-0.1 -0.1,0 -0.3,-0.1 -0.4,-0.1 h -0.2 c 0,0.1 -0.2,0 -0.3,0 -0.1,-0.1 -0.3,-0.1 -0.4,-0.1 -0.1,0 -0.4,-0.1 -0.7,-0.1 -0.7,-0.1 -1.5,-0.2 -1.9,-0.2 -0.2,0 -0.5,-0.1 -0.5,-0.1 -0.1,-0.1 -0.1,-0.1 -0.4,-0.1 z m -23.3,1.7 c 0.2,0 0.3,0.1 0.2,0.2 -0.15,0.2 -0.9,0.3 -0.9,0.2 0,-0.1 0.2,-0.2 0.43,-0.2 h 0.26 z m 9.4,1.7 c -0.96,0.1 -3.06,0.6 -5.36,1.2 l -2.03,0.6 -1.8,-0.2 c -1.56,-0.1 -1.93,-0.1 -2.86,0.1 -1.33,0.4 -2.34,0.9 -3.5,2.1 -0.26,0.3 -0.45,0.4 -0.63,0.6 0.26,-0.2 0.56,-0.5 0.73,-0.7 0.55,-0.7 2.03,-1.6 2.64,-1.7 0.4,-0.1 0.9,-0.2 1.1,-0.3 0.3,-0.1 0.7,-0.2 0.8,-0.2 l 1.5,0.2 c 0.7,0 1.4,0.1 1.6,0.2 0.4,0.1 0.7,0 2.9,-0.6 2.3,-0.7 3.9,-1 5,-1.1 z m -16.77,2.6 -0.02,0.1 c 0,0.1 -0.1,0.2 -0.22,0.2 -0.12,0 -0.5,0.3 -1,0.6 l -0.8,0.6 -0.4,0.4 c 0,0 -0.5,0.4 -0.6,0.4 l -0.1,0.1 h 0.1 c 0.3,0 0.6,-0.3 0.7,-0.4 0.1,-0.1 0.3,-0.2 0.4,-0.2 0.1,0 0.4,-0.1 0.6,-0.4 0.5,-0.3 1,-0.6 1.5,-0.8 z m -1.67,1.9 c 0.1,0 0.18,0 0.2,0.1 0.05,0.1 0.03,0.2 -0.03,0.2 -0.08,0 -0.4,0.1 -0.72,0.2 -0.36,0.1 -0.53,0.1 -0.44,0 0.1,-0.2 0.7,-0.3 0.9,-0.3 z"
+		 id="path5295"
+		 inkscape:connector-curvature="0"
+		 style="fill:#e1e0e2;stroke-width:0.02" />
+	  <path
+		 d="m 519.4,93.96 c -0.06,0 0,0.75 0.07,1 0.05,0.15 0.1,0.44 0.22,1.3 0,0.23 0,0.45 0.1,0.5 v 0.68 c 0,0.1 0.1,0.56 0.2,1.04 0.4,1.95 0.5,2.95 0.4,2.95 -0.1,0 -0.4,1.1 -0.3,1.25 0,0.07 0.1,0.07 0,-0.03 -0.1,-0.04 -0.1,-0.1 0,-0.1 v -0.2 c 0,-0.17 0.2,-0.52 0.2,-0.63 v -0.2 l 0.1,-0.13 c 0,-0.2 0,-0.2 0,0 0,0 0,0.1 0.1,0 v -0.2 l -0.1,-0.5 c 0,-0.3 -0.1,-0.5 -0.1,-0.6 -0.2,-0.9 -0.3,-1.3 -0.4,-1.8 l -0.1,-0.5 c 0,-0.1 -0.1,-0.2 0,-0.5 V 97 l 0.1,0.3 c 0.1,0.18 0.1,0.4 0.1,0.47 0.1,0.07 0.1,0.22 0.1,0.3 0,0.07 0,0.14 0.1,0.2 0.1,0.1 0.1,-0.43 -0.1,-0.87 l -0.2,-0.6 c -0.2,-1.1 -0.3,-1.84 -0.4,-1.84 l -0.1,-0.38 v -0.45 c 0,-0.08 -0.1,-0.3 -0.1,-0.5 -0.1,-0.24 -0.1,-0.4 -0.2,-0.4 z m 0.5,3.02 c 0.02,0 0.03,0 0.04,0.02 v 0.17 c -0.02,0.03 -0.03,0 -0.03,-0.1 z m -18.34,0.35 c -0.08,0 -0.08,0 -0.08,0.03 l -0.14,0.44 -0.22,0.68 -0.15,0.48 c -0.15,0.27 -0.3,1.6 -0.22,1.8 v 0.15 -0.2 l 0.07,-0.3 c 0.08,-0.2 0.22,-0.8 0.37,-1.4 l 0.2,-0.9 v -0.5 l -0.1,-0.1 z m -0.22,0.82 c 0,-0.02 0.07,0 0.07,0.05 v 0.04 c -0.1,-0.08 0,-0.08 0,-0.15 z m -0.15,0.54 v 0.1 l -0.1,0.2 c -0.1,0 -0.1,0 -0.1,-0.1 v -0.2 z m -0.2,0.5 v 0.1 c 0,0.1 -0.1,0.1 -0.1,0.1 v -0.1 z m 38.7,3.2 c -0.1,0 0,0.6 0,0.6 v 0.5 c 0,0 0.1,0.2 0.1,0.3 v 1.1 c 0,0 0,0.3 0.1,0.4 l 0.2,0.8 0.1,0.6 v 0.3 l 0.1,0.3 c 0.1,0 0.1,0 0.1,0.1 v 0.4 l 0.2,0.8 0.4,1.2 v 0.6 c 0.3,1 0.4,1.5 0.5,1.6 l 0.1,0.1 c 0,0 0,0.2 0.1,0.2 0,0 0,-0.5 -0.1,-0.8 -0.1,-0.2 -0.1,-0.3 -0.1,-0.3 l -0.1,-0.2 c 0,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 -0.1,-0.3 -0.1,-0.3 l -0.3,-0.5 -0.3,-0.6 -0.2,-0.8 -0.3,-0.9 -0.1,-0.5 -0.2,-0.6 c -0.1,-0.6 -0.3,-0.9 -0.3,-1.1 v -0.2 c 0,0 -0.1,-0.1 -0.1,-0.2 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 -0.1,-0.2 -0.2,-0.4 l -0.2,-0.6 c -0.1,-0.6 -0.3,-1 -0.4,-1.1 -0.1,-0.1 -0.1,-0.3 -0.1,-0.3 0,-0.1 0,-0.2 -0.1,-0.2 z m 1.3,5.2 v 0.1 c 0,0 -0.1,0 -0.1,-0.1 v -0.1 z m 0.1,0.6 v 0.1 z m 0.1,0.6 v 0.3 c 0,0.1 -0.1,0 -0.1,-0.2 v -0.1 z m 0.1,0.6 v 0.7 l 0.1,0.5 0.2,0.8 c 0.1,0.2 0.1,0.5 0.1,0.6 -0.1,0.2 -0.1,0.1 -0.2,-0.2 -0.1,-0.1 -0.1,-0.3 -0.2,-0.3 -0.1,0 -0.1,-0.1 -0.1,-0.2 0,-0.2 0,-0.3 -0.1,-0.4 -0.1,-0.1 -0.1,-0.2 -0.1,-0.3 0,-0.1 -0.1,-0.2 -0.1,-0.3 -0.1,-0.2 -0.1,-0.3 -0.1,-0.4 0,-0.1 -0.1,-0.1 -0.1,-0.2 -0.1,-0.1 -0.2,-0.5 -0.1,-0.6 z M 473.7,151 v 0.3 c 0,0.15 0.07,0.5 0.1,0.7 0.24,1.15 0.3,1.72 0.23,1.8 0,0 -0.03,0 -0.03,-0.1 0,-0.1 0,-0.13 -0.06,-0.2 -0.08,-0.06 -0.08,-0.2 -0.15,-0.3 0,-0.1 -0.1,-0.2 -0.1,-0.2 0,0 -0.1,-0.04 -0.1,-0.15 0,0.15 0.1,0.6 0.2,1 0,0.14 0.1,0.44 0.3,0.8 0.2,0.74 0.5,1.54 0.5,1.7 l 0.2,0.43 c 0.1,0.5 0.5,1.5 0.7,1.9 l 0.1,0.3 c 0,0.24 1.6,3.46 2.3,4.7 l 0.8,1.47 c 0.7,1.3 1.3,2.35 1.3,2.78 0.2,0.75 0.2,0.97 0,0.9 -0.2,0 -1.3,-1.16 -1.6,-1.45 -0.2,-0.2 -0.6,-1.1 -1,-1.8 l -0.4,-0.9 -0.3,-0.65 -0.8,-2.07 -0.5,-1 -0.4,-0.9 c -0.1,-0.2 -0.2,-0.66 -0.4,-0.95 -0.3,-0.5 -0.3,-0.5 -0.4,-0.5 -0.1,0.1 -0.1,0.2 -0.1,0.3 0.1,0.2 0.1,0.4 0.1,0.5 l 0.3,1.2 0.1,0.6 c 0,0.2 0,0.5 0.1,0.5 l 0.1,0.3 c 0,0.1 0.1,0.3 0.1,0.5 l 0.3,0.7 0.6,1.5 0.3,0.8 c 0,0.2 0.4,0.8 0.9,1.4 0.1,0.2 0.6,0.9 1,1.6 l 1.5,2.3 1.5,1.9 c 0.1,0.1 1.1,1.3 1.2,1.5 0.2,0.3 2.4,2.5 3,3.1 1.4,1.3 2.5,2.2 3.8,3.2 0.7,0.5 1.2,0.8 2.1,1 l 1.8,0.7 c 0.7,0.2 1.2,0.4 1.3,0.4 -0.1,0 -0.4,-0.1 -0.8,-0.3 -1.2,-0.4 -2.8,-1.1 -3.5,-1.5 -2,-1.1 -5.3,-4 -7.6,-6.6 l -1.2,-1.4 c -0.7,-0.8 -1.3,-1.6 -2,-2.6 -0.5,-0.8 -0.8,-1.1 -0.7,-1.1 0,0 0.3,0.1 0.8,0.5 1,0.9 1.2,0.9 1,0.2 -0.1,-0.7 -0.7,-1.8 -1.9,-4.1 -1.8,-3.2 -2.5,-4.7 -3.5,-7.5 -0.5,-1.5 -0.6,-2 -0.6,-2.2 0.1,0 0.1,-0.2 0,-0.6 -0.1,-0.9 -0.2,-1.3 -0.2,-1.4 h 0.1 c 0.1,0.1 0.5,1.1 0.8,2 l 0.8,2.2 c 1.1,3.2 1.7,4.8 3,7 0.8,1.5 2.1,3.4 2.2,3.4 l 0.2,-0.1 c 0.1,-0.1 0.2,0 0.8,1.2 0.3,0.5 0.8,1.4 1.1,1.8 0.3,0.4 0.6,1 0.6,1 l 0.1,0.3 v 0.1 l 0.1,0.4 c 0.2,0.5 0.8,2.1 0.9,2.7 0.1,0.5 0.3,0.8 0.7,1.4 0.6,0.8 1.1,1.3 1.4,1.2 0.2,-0.1 0,-0.6 -0.7,-2.2 -0.4,-0.9 -0.6,-1.4 -0.5,-1.4 l 0.7,0.7 c 1.1,1 1.8,1.7 1.8,1.6 0.1,0 0,0 0,-0.1 0,0 -0.6,-0.6 -1.4,-1.3 -0.7,-0.7 -1.3,-1.2 -1.3,-1.2 -0.1,0.1 -0.1,0.3 0.1,0.6 0.4,0.8 0.6,1.3 0.6,1.4 0,0.1 0,0.2 0.1,0.2 0.1,0 0.4,0.8 0.3,0.8 0,0 0,0.1 0.1,0.1 0.1,0 0.1,0.2 0.1,0.2 0,0.2 -0.3,0 -0.5,0 l -0.6,-0.7 c -0.1,0 -0.1,0 -0.1,-0.1 0,-0.1 0,-0.1 -0.1,-0.1 -0.1,0 -0.2,-0.3 -0.2,-0.7 0,-0.1 -0.1,-0.3 -0.1,-0.3 0,0 -0.1,-0.1 -0.1,-0.2 0,-0.1 0,-0.1 -0.1,-0.2 l -0.1,-0.3 c 0,-0.1 0,-0.3 -0.1,-0.3 v -0.2 c 0,-0.1 -0.1,-0.2 -0.1,-0.3 l -0.1,-0.1 c 0,-0.1 0,-0.3 -0.3,-0.9 -0.1,-0.2 -0.3,-0.7 -0.7,-1.1 -0.7,-1.1 -1.2,-2 -1.8,-3.2 l -0.6,-0.8 c 0,0 -0.1,0.2 -0.1,0.3 0,0.2 0,0.3 -0.1,0.4 0,0 -0.1,0 -0.2,-0.2 -0.3,-0.3 -1.2,-1.7 -1.7,-2.5 -0.3,-0.5 -1.4,-2.7 -1.7,-3.2 -0.2,-0.3 -0.5,-1.2 -0.7,-1.8 -0.4,-1.1 -1.2,-3.5 -1.5,-4.6 -0.1,-0.4 -0.4,-1 -0.5,-1.3 -0.2,-0.3 -0.3,-0.7 -0.4,-0.9 l -0.5,-1.2 -0.3,-0.4 z m 94.8,13.43 c -0.03,0.02 -0.1,0.72 -0.3,2.23 -0.2,1.6 -0.36,3.1 -0.53,3.96 -0.1,0.35 -0.17,0.86 -0.17,1 -0.02,0.45 -0.5,2.3 -0.9,3.75 -0.2,0.63 -0.35,1.14 -0.5,1.4 -0.04,0.2 -0.2,0.5 -0.22,0.62 0,0.1 -0.13,0.4 -0.2,0.6 -0.07,0.2 -0.14,0.4 -0.14,0.5 0,0.1 0.07,0.1 0.15,0.1 0.3,-0.2 1,-1.5 1.4,-2.6 0.9,-2.3 1.3,-4.4 1.4,-6.6 0.1,-0.8 0.1,-1.6 0.2,-1.9 0,-0.5 0.1,-3 0,-3.1 h -0.1 z M 553,173 c -0.08,0.05 -0.15,0.23 -0.2,0.42 l -0.07,0.22 c -0.04,0 -0.06,0.08 -0.06,0.15 l -0.12,0.4 c -0.15,0.5 -0.22,0.9 -0.3,1.1 0,0.1 -0.07,0.4 -0.07,0.6 -0.14,0.5 -0.22,1.6 -0.22,1.7 l 0.08,0.3 c 0.07,0.2 0.07,0.2 0.14,0.1 0.08,-0.1 0.15,-0.3 0.3,-0.9 0.36,-1.5 0.66,-3.9 0.5,-4.2 h -0.06 z m -70.4,5.7 c -0.04,0 0,0.1 0.2,1 0.08,0.3 0.15,0.58 0.15,0.67 0,0.07 0.05,0.22 0.08,0.44 0.07,0.2 0.13,0.5 0.17,0.6 0.1,0.4 0.64,1.9 0.83,2.5 l 0.22,0.6 0.15,0.3 0.07,0.2 c 0,0.1 0.37,0.8 0.55,1.1 0.22,0.4 0.32,0.7 0.38,1.2 0.05,0.6 0.1,0.8 0.15,0.8 l -0.05,-0.7 c -0.06,-0.5 -0.05,-0.8 0.02,-0.8 0,0 0,0.1 -0.02,0.1 -0.05,0.2 0,0.6 0.15,1.9 l 0.1,0.7 c 0.03,0 0.08,0.4 0.1,0.8 l 0.1,1.4 c 0.04,0.3 0.08,1.6 0.08,2.7 0.03,1.8 0.02,2.2 -0.05,2.3 -0.04,0.1 -0.07,0.3 -0.07,0.4 0,0.1 0,0.2 -0.1,0.3 h 0.1 c 0.1,-0.1 0.2,-0.6 0.2,-1.4 v -0.6 l -0.2,0.6 -0.2,0.6 v 0.2 c 0,0 -0.1,0.2 -0.1,0.3 0,0.1 -0.2,0.4 -0.3,0.8 -0.1,0.4 -0.2,0.7 -0.3,0.8 l -0.1,0.5 c -0.3,0.7 -0.5,1.4 -0.6,1.5 v 0.2 c 0,0 0,0.2 -0.2,0.4 l -0.1,0.4 c 0,0.2 0.5,-0.6 0.6,-0.8 0,-0.1 0,-0.1 0.1,-0.1 0,0.1 -0.1,0.1 -0.1,0.2 0,0.2 -0.7,1.2 -1.2,1.5 -0.7,0.5 -1.5,1 -1.8,1 -0.1,0 -0.2,0.1 -0.3,0.2 0,0.1 -0.2,0.1 -0.9,0.4 l -1.2,0.5 h -0.1 l -0.5,0.1 c -1.4,0.5 -2,0.7 -2.2,1.1 -0.4,0.4 -0.4,0.4 0.1,0.6 0.2,0.1 0.5,0.1 0.6,0.1 0.2,0 0.6,0.2 0.7,0.4 0,0.1 0.2,0.1 0.2,0.1 l 0.4,0.2 c 0.2,0 0.6,0.2 1,0.3 l 0.8,0.1 c 0,0 0.1,0 0.1,-0.1 0,-0.1 0,-0.1 0.1,-0.1 l 0.2,-0.1 h 0.4 -0.2 c -0.2,0 -0.3,0 -0.4,0.2 -0.2,0.2 -0.2,0.2 -0.1,0.2 0.2,0 0.2,0.1 0.3,0.4 l 0.2,0.4 c 0,0.1 0.1,0.1 0.1,0.1 0.1,0 -0.1,-0.4 -0.2,-0.6 -0.1,-0.2 -0.1,-0.2 0,-0.3 0.1,-0.1 0.2,-0.1 0.4,-0.1 l 0.4,0.2 c 0.1,0.1 0.2,0.1 0.2,0.1 0.2,0 0.2,0.1 0.7,0.5 0.3,0.3 0.5,0.4 0.7,0.4 0.2,0 -0.6,-0.5 -0.8,-0.5 -0.2,0 -0.2,-0.1 -0.2,-0.4 l -0.1,-0.3 c -0.1,-0.1 0,-0.1 0.1,-0.2 l 0.2,-0.1 0.3,-0.1 c 0.1,0 0.4,-0.1 0.5,-0.1 0.1,-0.1 0.4,-0.1 0.4,-0.2 0.9,-0.4 2.5,-1.3 2.8,-1.6 0,-0.1 0.1,-0.1 0.2,-0.1 0.1,-0.1 0.1,-0.1 -0.1,-0.1 0,0 -0.1,0 -0.1,0.1 0,0.1 -0.1,0 -0.1,0 l -0.3,0.2 -0.5,0.2 -0.4,0.1 c -0.1,0.1 -0.2,0.1 -0.2,0.1 l -0.2,0.1 c -0.1,0.1 -0.2,0.1 -0.4,0.1 l -0.3,0.1 c 0,0.1 -0.1,0.1 -0.3,0.1 -0.1,0 -0.3,0.1 -0.5,0.1 -0.2,0.1 -0.6,0.1 -0.9,0.1 -0.5,0 -0.5,0 -0.6,-0.1 v -0.1 l 0.1,-0.1 c 0.3,-0.2 0.6,-0.4 0.9,-0.5 l 0.5,-0.2 c 0.6,-0.2 1.3,-0.5 1.4,-0.6 0.4,-0.1 0.8,-0.4 1.2,-0.7 0.4,-0.4 0.5,-0.4 0.5,-0.1 l -0.1,0.5 c -0.1,0.2 -0.1,0.2 0.1,0.2 0.1,0 0.3,-0.2 0.7,-0.6 0.7,-0.6 0.8,-0.9 1.3,-2.5 0.4,-1.1 0.4,-1.5 0.5,-2.5 0.3,-2.5 0.4,-4.5 0.2,-5.1 0,-0.3 -0.1,-0.4 -0.3,-0.3 0,0.1 -0.1,0.1 -0.1,0 -0.1,0 -0.1,-0.6 -0.1,-1.3 -0.1,-1.1 -0.2,-3.7 -0.3,-4 l -0.2,-1.5 c -0.1,-1.4 -0.2,-1.8 -0.4,-2.5 l -0.1,-0.5 c -0.2,-0.8 -0.3,-0.9 -0.9,-1.2 -0.4,-0.2 -0.6,-0.3 -0.5,-0.1 0,0 0.1,0.3 0.1,0.7 0.1,1.1 0.1,1.3 0.4,2.1 0.1,0.2 0.3,1 0.2,1 l 0.1,0.2 0.2,0.8 0.1,1.4 c 0.3,2 0.3,3.4 0.3,4.7 0,1 -0.1,1.5 -0.3,1.6 -0.1,0.1 -0.4,-0.3 -0.5,-0.5 0,-0.2 0,-0.2 -0.1,-0.2 -0.1,-0.2 -0.1,-0.8 -0.2,-1.9 0,-0.6 -0.1,-1.3 -0.1,-1.6 -0.1,-0.3 -0.1,-0.8 -0.1,-1 l -0.1,-1 -0.1,-0.9 c 0,-0.2 -0.1,-0.5 -0.2,-0.5 -0.1,-0.1 -0.1,-0.3 -0.1,-0.3 0,-0.3 -0.2,-1.3 -0.4,-1.8 v -0.2 l -0.1,0.2 c -0.1,0.2 -0.1,0.2 -0.2,0.2 l -0.2,-0.6 c -0.1,-0.2 -0.2,-0.4 -0.2,-0.5 l -0.5,-1.3 c -0.2,-0.4 -0.9,-2.3 -1.1,-2.7 -0.1,-0.4 -0.4,-0.7 -0.4,-0.6 z m 1.18,3.73 c 0,-0.03 0.02,0 0.05,0.03 v 0.27 c 0,0.14 -0.08,0.14 -0.08,0.14 0,0 0,-0.14 -0.07,-0.22 v -0.14 z m 1.74,4.14 z m 0.08,0.22 c 0.07,0.2 0.22,1.1 0.44,2.3 l 0.14,0.9 c -0.22,-1.5 -0.44,-2.7 -0.44,-2.8 0,-0.1 0,-0.3 -0.07,-0.5 z m 64.55,3 h -0.08 c 0,0.1 -0.07,0.3 -0.22,0.5 l -0.44,0.9 c 0,0.2 -0.2,0.6 -0.4,0.9 -0.1,0.3 -0.2,0.6 -0.2,0.7 0.1,0 0.2,-0.1 0.7,-0.9 0.3,-0.4 0.5,-0.9 0.6,-1.1 0.2,-0.6 0.4,-1.1 0.2,-1.2 z m -63.9,1.6 v 0.1 c 0.08,1.6 0.15,2.1 0.37,2.7 0.22,0.6 0.37,0.6 0.52,0.6 0.07,0 0.07,0 0.14,0.1 h -0.07 c -0.2,0 -0.2,0 -0.5,-0.8 -0.1,-0.4 -0.2,-1.2 -0.2,-2.4 v -0.3 z m 2.06,3.2 h 0.2 z m 0.2,0 c 0.1,0 0.1,0.2 0.2,0.4 v -0.4 z m -0.2,0 c 0.1,0.1 0,0.1 0,0.1 h -0.1 l 0.2,-0.1 z m -0.1,0.1 c 0,0.1 -0.2,0.3 -0.2,0.4 0,0.1 0,0.2 -0.1,0.3 l -0.1,0.2 -0.1,-0.2 c -0.1,-0.2 -0.1,-0.4 -0.1,-0.5 v -0.1 l 0.2,0.4 0.2,0.4 c 0.1,0 0.3,-0.4 0.3,-0.6 0,-0.1 0.1,-0.3 0.2,-0.3 z m -2.3,2.5 c 0.1,0.2 -0.1,0.8 -0.2,0.8 v 0.5 l -0.1,0.2 c 0,0.2 -0.2,0.6 -0.2,0.6 l -0.1,0.3 c 0,0.1 -0.1,0.3 -0.2,0.3 v 0.1 c 0,-0.1 0.1,-0.1 0.1,-0.2 0.1,-0.1 0.6,-1 0.7,-1.3 0.2,-0.4 0.3,-0.7 0.4,-1.2 l 0.1,-0.3 z m 1.1,0.7 h 0.1 c 0.1,0.1 -0.1,0.8 -0.5,1.5 l -0.5,0.9 c -0.2,0.3 -0.2,0.3 -0.2,0.1 0,-0.1 0,-0.1 0.1,-0.2 0.1,0 0.2,-0.2 0.3,-0.4 0.1,-0.4 0.4,-0.8 0.5,-0.9 l 0.3,-0.5 0.2,-0.4 z m 1.6,1.3 c -0.1,0.6 -0.4,1.3 -0.6,2.1 0,0.2 -0.1,0.4 -0.3,0.5 0.3,-0.4 0.8,-1.7 1,-2.6 z m -1.7,2.2 h 0.1 c 0.1,0.1 0.1,0.9 0,1 v 0.1 -0.2 c 0.1,-0.3 0.1,-0.8 0,-0.8 l -0.7,0.6 v 0.1 l 0.3,-0.2 0.5,-0.5 z m 0.8,0.4 c -0.2,0.4 -0.5,0.8 -0.6,0.8 0.2,0 0.5,-0.4 0.7,-0.8 z m -1.9,0.7 c -0.1,0.1 -0.3,0.3 -0.5,0.3 -0.1,0.1 -0.3,0.2 -0.6,0.3 0.5,-0.2 0.9,-0.4 1.2,-0.7 z m 1.3,0 h 0.1 z m -2.4,0.6 -0.6,0.3 z m -0.7,0.3 h -0.3 c -0.3,0.1 -0.8,0.4 -1.4,0.8 -0.4,0.4 -0.7,0.7 -0.6,0.7 0.1,0.1 0.5,0.1 1,0.1 0.7,0 1.1,0 1.5,-0.2 h 0.4 -0.1 c -0.2,0.1 -0.4,0.2 -0.7,0.2 -0.6,0.1 -1.9,0.1 -1.9,0 0,-0.2 1.7,-1.5 2.1,-1.5 0.1,0 0.2,0 0.4,-0.1 z m -0.3,1.8 c -0.2,0.1 -0.3,0.1 -0.6,0.3 l -1.1,0.5 c -0.2,0.1 -0.3,0.3 -0.3,0.4 0,0 0,0.1 -0.1,0.1 l 0.1,-0.1 c 0,-0.3 0.2,-0.4 1.8,-1 l 0.3,-0.2 z"
+		 id="path5354"
+		 inkscape:connector-curvature="0"
+		 style="fill:#525767;stroke-width:0.01" />
+	</g>
   </g>
 </svg>
diff --git a/resources/vector/hair/underArm bushy left.svg b/resources/vector/hair/underArm bushy left.svg
index 552a8a8f241972a7fea0c1a70b9670fb98764693..9a64fec608f0dc7ad0b10756c8c8c1787d029f1f 100644
--- a/resources/vector/hair/underArm bushy left.svg	
+++ b/resources/vector/hair/underArm bushy left.svg	
@@ -13,79 +13,79 @@
    sodipodi:docname="underArm bushy left.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
   <metadata
-     id="metadata4148">
-    <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>
+	 id="metadata4148">
+	<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="defs4146" />
+	 id="defs4146" />
   <sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1680"
-     inkscape:window-height="987"
-     id="namedview4144"
-     showgrid="false"
-     inkscape:zoom="0.788"
-     inkscape:cx="500"
-     inkscape:cy="630.24332"
-     inkscape:window-x="-8"
-     inkscape:window-y="-8"
-     inkscape:window-maximized="1"
-     inkscape:current-layer="layer14"
-     inkscape:snap-global="false" />
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1680"
+	 inkscape:window-height="987"
+	 id="namedview4144"
+	 showgrid="false"
+	 inkscape:zoom="0.788"
+	 inkscape:cx="500"
+	 inkscape:cy="630.24332"
+	 inkscape:window-x="-8"
+	 inkscape:window-y="-8"
+	 inkscape:window-maximized="1"
+	 inkscape:current-layer="layer14"
+	 inkscape:snap-global="false" />
   <style
-     id="style2">.st0{fill:#010101;} .st1{fill:#F6E0E8;}</style>
+	 id="style2">.st0{fill:#010101;} .st1{fill:#F6E0E8;}</style>
   <style
-     id="style4208"
-     type="text/css">
+	 id="style4208"
+	 type="text/css">
 	.st0{fill:#010101;}
 	.st1{fill:#F6E0E8;}
 </style>
   <g
-     inkscape:groupmode="layer"
-     id="layer14"
-     inkscape:label="Layer 3" />
+	 inkscape:groupmode="layer"
+	 id="layer14"
+	 inkscape:label="Layer 3" />
   <g
-     inkscape:groupmode="layer"
-     id="layer12"
-     inkscape:label="Layer 1" />
+	 inkscape:groupmode="layer"
+	 id="layer12"
+	 inkscape:label="Layer 1" />
   <g
-     inkscape:groupmode="layer"
-     id="layer13"
-     inkscape:label="Layer 2">
-    <g
-       transform="matrix(-1.3230272,0,0,0.60512313,1228.2585,-15.297203)"
-       style="stroke-width:0.1;stroke-linecap:round"
-       id="layer2-4">
-      <path
-         style="fill:#9497a2"
-         inkscape:connector-curvature="0"
-         d="m 495.4,468.64 -1.5,1.78 -0.37,-2.72 -2.7,1.5 -1.6,-3.65 -4.5,-1.97 -2.25,-3.18 5.53,2.25 -5.5,-4.4 2.2,-0.38 -3.9,-3 -3.2,-4.3 5.4,3 -4.9,-6.47 4.4,1.78 -3.8,-7.86 2.6,2.34 -4.31,-6.36 5.06,2 -2.2,-3.9 -3.5,-3.2 4.2,1.1 -3.86,-8.6 -0.63,-5.4 4.2,10.3 -0.32,-9.9 3,10.2 2.64,-10.5 0.8,6.2 0.2,5.5 7.1,-10.2 -3,6.95 6.3,-3.4 -5.5,5.1 -2.9,3 11.2,-4 -4.7,4.1 8.2,-1.9 -10.7,5 8.4,1.02 -6.5,3.72 5.6,-0.1 -5.3,3.1 3.7,1.4 -4.4,1.7 6.4,-1.4 2.1,-2.1 -4.8,5.2 4.3,-1.2 -7,5.9 5.4,-2 -4.2,4.2 -2.9,3.7 6,-2.1 -3.3,5 5.5,-0.8 -5,2.3 3.2,1.8 -3.8,0.3 2.5,3.6 z"
-         id="path4488-3" />
-      <path
-         style="fill:#b4b3b7"
-         inkscape:connector-curvature="0"
-         d="m 485.05,423.03 z m 0,0 -0.16,0.97 v 1.05 c -0.1,0.42 0,0.83 0.1,1.24 0.1,0.4 0.1,0.3 0.1,0.8 0,0.4 0.1,0.9 0.1,1.3 -0.1,-0.4 -0.1,-0.7 -0.1,-1.1 l -0.9,0.4 c 0,0.3 0.1,0.7 0.1,1 l 0.3,1.4 c 0.1,0.3 0.1,0.7 0.2,1.1 l 0.4,-0.3 v 0.2 -0.3 l 0.3,-0.2 c 0,-0.4 -0.1,-0.8 -0.2,-1.1 0,-0.1 0,-0.2 -0.1,-0.3 0,-0.3 -0.1,-0.6 -0.1,-0.8 0,-0.9 -0.1,-1.8 -0.2,-2.6 0,-0.2 0,-0.3 -0.1,-0.4 -0.1,-0.6 -0.3,-1.1 -0.2,-1.7 v -1 z m -8.48,0.45 -0.12,0.98 c 0.1,0.33 0.27,0.65 0.4,0.97 0.2,0.44 0.35,0.88 0.5,1.33 0.16,0.46 0.2,0.94 0.3,1.4 0.12,0.46 0.2,0.92 0.3,1.37 0.04,0.24 0.13,0.47 0.24,0.7 l 0.1,-0.96 c -0.1,-0.18 -0.2,-0.38 -0.2,-0.58 0,0 0.1,0.1 0.1,0.2 l 0.6,1.3 0.5,1.2 v 0.1 c 0.1,0.3 -0.1,-0.1 0.1,0.3 l 0.2,0.4 0.1,0.2 -1.2,-0.6 c -0.6,-0.2 -1.1,-0.4 -1.7,-0.6 -0.3,-0.1 -0.6,-0.1 -0.8,-0.1 v 1 c 0.2,-0.1 0.5,0 0.8,0 l 1.2,0.3 v 0.4 c 0.2,-0.1 0.5,0 0.7,0.1 l 0.3,0.1 -0.2,0.1 1,1 c 0.4,0.3 0.9,0.7 1.4,1.1 0.2,0.1 0.1,0 0.2,0.2 l 0.4,-0.2 c 0.1,0.1 0.3,0.3 0.4,0.5 0.2,0.3 0.5,0.5 0.7,0.8 l 0.5,0.6 0.4,0.6 c 0.2,0.3 0.5,0.6 0.7,0.9 l 0.7,0.8 0.8,-0.5 -0.7,-0.9 c -0.2,-0.3 -0.5,-0.6 -0.7,-1 l -0.5,-0.7 -0.6,-0.6 -0.7,-0.8 -0.7,-0.7 c -0.2,-0.1 -0.4,-0.2 -0.6,-0.2 l -0.2,0.1 -0.6,-0.5 0.1,-0.4 c 0.6,0.2 1.3,0.5 1.9,0.7 0.3,0.1 0.6,0.3 0.8,0.4 l 0.3,0.2 c 0.2,0.3 0.3,0.5 0.5,0.8 l 0.8,-0.4 c -0.2,-0.4 -0.4,-0.7 -0.5,-1.1 -0.1,-0.4 -0.3,-0.7 -0.6,-0.9 l 0.4,-0.2 c -0.2,-0.4 -0.4,-0.7 -0.6,-1 -0.5,-0.7 -0.9,-1.3 -1.4,-1.9 l -0.4,-0.4 0.3,-0.9 0.7,-2.3 c 0.2,-0.4 0.4,-0.9 0.5,-1.4 l -0.1,-0.9 c -0.1,0.5 -0.3,1 -0.5,1.5 -0.2,0.8 -0.5,1.5 -0.7,2.3 -0.1,0.2 -0.1,0.4 -0.2,0.6 v -0.3 c -0.1,-0.3 -0.2,-0.6 -0.4,-0.8 l -0.5,-0.9 -0.6,-0.9 c -0.2,-0.3 -0.4,-0.6 -0.4,-0.9 l -0.1,-0.2 c 0.1,-0.2 0.1,-0.4 0.2,-0.6 l -0.1,-1 c -0.2,0.2 -0.2,0.5 -0.3,0.7 -0.1,0.5 -0.1,1 0,1.5 v 0.4 c 0.2,0.3 0.4,0.8 0.5,1.2 l 0.6,1.6 c 0.1,0.1 0.1,0.3 0.2,0.5 l -0.7,0.4 c 0.4,0.3 0.7,0.7 1.1,1 l 0.1,0.1 v 0.7 c -0.4,-0.3 -0.8,-0.6 -1.1,-1 l -0.9,0.5 c 0.4,0.4 0.9,0.7 1.4,1.1 0.6,0.4 1.2,0.8 1.8,1.3 -0.8,-0.3 -1.6,-0.6 -2.5,-1 l -0.8,-0.3 v -0.7 c -0.1,-0.2 -0.2,-0.4 -0.4,-0.7 l -0.3,-0.9 -0.6,-1.2 -0.7,-1.3 c -0.2,-0.3 -0.3,-0.6 -0.4,-0.9 l -0.1,0.4 v -0.2 c -0.1,-0.5 -0.1,-1 -0.3,-1.4 -0.1,-0.5 -0.3,-0.9 -0.5,-1.4 -0.1,-0.3 -0.3,-0.6 -0.4,-1 z m 13.57,1.1 -0.15,0.95 c 0,-0.2 0,-0.42 -0.1,-0.64 l -0.1,0.2 -0.2,0.9 c -0.2,0.7 -0.5,1.5 -0.7,2.2 -0.3,0.2 -0.5,0.5 -0.7,0.8 -0.1,0.1 -0.2,0.3 -0.3,0.5 -0.1,0.1 -0.2,0.1 -0.2,0.2 -0.5,0.4 -0.9,0.9 -1.2,1.5 -0.2,0.3 -0.3,0.7 -0.4,1.1 v 0.1 l 0.9,-0.4 v -0.1 c 0,-0.4 0.2,-0.8 0.4,-1.1 0.1,-0.3 0.3,-0.6 0.6,-0.9 v 0.5 -0.2 l 0.1,0.7 c 0,-0.1 0.1,-0.3 0.1,-0.4 l 0.6,-1.6 v -0.1 l 0.1,-0.2 c 0.4,-0.3 0.8,-0.6 1.3,-0.9 0.5,-0.3 1,-0.6 1.7,-0.6 h 0.8 v -1 h -0.8 c -0.7,0 -1.2,0.3 -1.8,0.6 l -1,0.6 0.3,-1 c 0.1,-0.4 0.2,-0.7 0.2,-1 v -1.5 z m -8.2,4.34 0.22,0.4 c 0.12,0.18 0.2,0.4 0.25,0.6 l -0.2,-0.4 -0.2,-0.6 z m 2.34,0.4 -0.87,0.45 0.2,0.84 0.2,0.5 0.9,-0.4 -0.1,-0.4 c 0,-0.3 -0.1,-0.5 -0.1,-0.8 z m 11.02,1.14 c -0.43,0.1 -0.85,0.23 -1.27,0.37 -0.53,0.2 -1.05,0.42 -1.55,0.68 l -0.42,0.2 -1.28,0.6 -0.6,0.3 -0.23,0.2 -0.1,0.1 c -0.23,0.2 -0.46,0.3 -0.7,0.5 l 0.53,-0.2 -0.1,0.2 -0.06,0.2 v 0.1 c -0.4,0.2 -0.8,0.4 -1.2,0.7 l 0.9,-0.3 c -1.5,0.9 -0.42,0.2 -0.05,0.1 l 0.2,-0.1 -0.2,0.2 c -0.17,0.2 -0.32,0.4 -0.44,0.6 l 0.9,-0.4 v 0.2 l 0.08,-0.2 0.2,-0.2 0.8,-0.4 0.9,-0.5 v 0.1 l 0.2,-0.1 -0.2,0.2 -0.2,0.2 c -0.2,0.2 -0.5,0.5 -0.8,0.7 0,0.1 0,0.1 -0.1,0.1 v -0.2 l -0.3,0.5 -0.1,0.6 c 0,0.3 -0.1,0.5 -0.2,0.8 l -0.1,0.3 0.1,1 0.2,-0.3 c 0.1,-0.2 0.2,-0.4 0.2,-0.7 0.1,-0.2 0.2,-0.3 0.2,-0.6 0.1,-0.1 0.2,-0.3 0.3,-0.4 v -0.6 l 0.2,-0.1 h 0.1 v 0.1 l 0.9,-0.4 c 0,0 0.1,-0.1 0.1,-0.2 1.1,-0.6 1.2,-0.7 2.2,-1.2 0.7,-0.4 1.4,-0.7 2.1,-1 0.5,-0.1 0.8,-0.3 1.2,-0.6 v -0.1 h -0.1 c 0.1,0 0,0 0,0 h -0.1 l 0.1,-0.1 -0.5,0.2 -0.9,0.3 v -0.6 h 0.1 -0.1 z m -0.53,1.22 c -0.14,0.06 -0.3,0.12 -0.42,0.2 l -0.33,0.18 0.3,-0.23 z m -12.28,0.03 0.9,1.3 -1,-0.6 v -0.3 l -0.1,-0.1 v -0.1 z m 10.8,0.7 -1.7,1 0.4,-0.4 0.4,-0.3 h 0.1 l 0.6,-0.2 z m 0.9,3.7 h -0.7 c -0.3,0.1 -0.7,0.1 -1,0.1 -0.5,0 -0.9,0.1 -1.3,0.2 -0.3,0.1 -0.5,0.1 -0.8,0.2 l -0.1,0.1 -0.8,0.6 c 0.2,-0.1 0.4,-0.2 0.7,-0.2 0.4,-0.1 0.8,-0.1 1.2,-0.2 h 1.6 z m -0.5,0.6 -0.6,0.2 c -0.3,0.1 -0.6,0.1 -0.8,0.2 -0.1,0 -0.1,0.1 -0.1,0.1 0,0 -0.1,0 -0.1,0.1 h -0.5 c -0.3,0 -0.5,0 -0.7,0.1 l -0.6,0.3 c -0.2,0.1 -0.4,0.2 -0.4,0.5 l 0.1,0.1 -0.5,0.3 0.5,-0.2 -0.3,0.2 0.4,-0.2 h 0.1 l -0.1,0.1 0.2,-0.1 -0.1,0.1 -0.3,0.3 -0.1,0.1 0.9,-0.4 v -0.1 h 0.1 l -0.8,0.4 c 0,0.1 -0.2,0.4 -0.2,0.5 l 0.1,0.1 0.1,0.1 c 0.1,0.1 0.3,0 0.4,0 l -0.1,0.1 c -0.4,0.3 -0.7,0.6 -1.1,1 l -0.7,1 v 0.1 c 0,0.2 0.3,0.1 0.5,-0.1 l -0.2,0.4 0.9,-0.4 c 0.1,-0.2 0.1,-0.4 0.3,-0.6 l 0.2,-0.3 v 0.7 c 0,0.1 0.1,0.1 0.1,0 v -0.1 l 0.1,-0.1 c 0.1,-0.2 0.3,-0.3 0.4,-0.5 v 0.1 l 0.2,-0.2 c 0.3,-0.3 0.8,-0.6 1.2,-0.9 0.5,-0.3 1,-0.6 1.6,-0.8 0.1,-0.1 0.4,-0.2 0.5,-0.2 h 0.2 v -0.2 h 1.2 l 0.8,-0.5 h -0.9 l 0.3,-0.2 -0.1,-0.1 h -0.2 v 0.1 l 0.1,-0.1 -1.2,0.1 h -0.6 v -0.2 c -0.3,0.1 -0.7,0.1 -1.1,0.1 z m -16.2,1 v 1 h 0.8 c 0.4,0 0.8,0.1 1.1,0.3 l -0.4,0.3 c 0.2,0 0.5,0 0.8,0.1 0.3,0.1 0.6,0.4 0.8,0.6 l 0.4,0.5 -0.2,0.2 0.4,0.5 -0.4,0.3 c 0.2,0 0.3,0 0.5,0.1 l 0.9,1.3 0.9,1.5 0.2,0.5 0.8,-0.4 -0.3,-0.5 c -0.3,-0.4 -0.5,-0.8 -0.8,-1.2 l 1.4,1 0.6,0.6 0.8,-0.5 -0.6,-0.5 c -0.5,-0.3 -1.1,-0.6 -1.6,-1 -0.5,-0.3 -1,-0.7 -1.5,-0.9 -0.1,0 -0.2,-0.1 -0.3,-0.1 v -0.1 l -0.3,-0.4 0.7,0.5 c 0.3,0.2 0.6,0.3 0.9,0.5 l 0.4,0.3 c 0.4,0.3 0.8,0.5 1.2,0.8 l 0.8,0.6 0.1,-0.9 -0.9,-0.6 -1.3,-0.8 c -0.4,-0.2 -0.9,-0.4 -1.3,-0.7 -0.4,-0.2 -0.7,-0.4 -1,-0.6 v 0.5 l -0.2,-0.2 c -0.3,-0.2 -0.6,-0.5 -0.9,-0.6 l -0.2,-0.1 v -0.2 c -0.2,-0.2 -0.5,-0.3 -0.7,-0.4 -0.2,-0.1 -0.4,-0.2 -0.5,-0.2 -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 h -0.8 z m 15.9,0.1 -0.1,0.1 -0.3,0.1 h -0.3 c 0.2,0 0.4,-0.1 0.6,-0.1 z m -3.1,0.2 h -0.1 z m 1.2,0 z m -0.1,0.2 c 0,0.1 -0.1,0.1 -0.1,0.2 l -0.1,0.1 c 0,0.1 -0.1,0.1 -0.1,0.1 l 0.1,-0.3 z m 5.3,2.6 c -0.6,0.2 -1.2,0.4 -1.7,0.7 h -0.1 c 0.1,-0.1 0.3,-0.2 0.2,-0.4 l -0.1,-0.1 h -0.1 l -0.6,0.2 c -0.2,0 -0.4,0.1 -0.5,0.2 -0.4,0.3 -0.9,0.5 -1.3,0.8 -0.2,0.2 -0.4,0.5 -0.6,0.7 -0.1,0.2 -0.2,0.4 -0.4,0.6 l 0.7,-0.3 c -0.2,0.2 -0.3,0.4 -0.4,0.6 l -0.1,0.1 -0.8,0.6 0.2,-0.1 c 0.1,-0.1 0.2,-0.2 0.4,-0.2 l -0.1,0.2 h -0.1 l -0.2,0.3 c -0.1,0.1 -0.3,0.4 -0.4,0.5 l -0.3,0.5 c 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.2 -0.3,0.7 -0.3,1 v 0.1 l 0.1,0.1 c 0.4,-0.3 0.8,-0.4 1.1,-0.7 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.3 0.2,-0.4 l 0.2,-0.5 0.4,-0.6 c 0.2,-0.4 0.5,-0.7 0.7,-1.1 v -0.1 l 0.2,-0.1 0.8,-0.4 c 0.6,-0.3 1.2,-0.5 1.7,-0.9 v -0.1 h -0.1 c -0.2,0 -0.3,0.1 -0.5,0.1 h -0.3 c -0.4,0.1 -0.8,0.6 -1.1,0.6 h -0.1 l 0.4,-0.4 1.6,-0.6 z m -2.4,0.8 -0.1,0.1 -0.3,0.3 -0.7,0.4 -0.5,0.3 0.2,-0.3 0.3,-0.4 c 0,0 0.1,0 0.1,-0.1 l 0.2,-0.1 c 0.2,0 0.4,-0.2 0.7,-0.2 z m 0.5,0.7 -0.6,0.3 -0.6,0.3 0.2,-0.1 0.4,-0.3 0.2,-0.1 h 0.4 z m -15.9,0.3 -0.1,1 0.6,0.3 1,0.7 c 0.1,0.1 0.2,0.1 0.3,0.2 l -0.3,0.2 c 0.2,0.2 0.5,0.3 0.9,0.4 0.1,0.1 0.3,0.1 0.5,0.2 l 0.5,0.5 c 0.1,0.2 0.2,0.3 0.3,0.5 l 0.1,-0.9 c 0.2,0.1 0.5,0.2 0.7,0.4 l 0.2,0.2 v 0.1 c 0.2,0.4 0.3,0.7 0.4,1.1 -0.3,-0.1 -0.6,-0.2 -0.9,-0.4 l -0.8,0.6 c 0.3,0.1 0.7,0.3 1,0.4 0.4,0.2 0.9,0.5 1.3,0.7 0.2,0.4 0.3,0.7 0.6,1 l 0.6,0.5 0.8,-0.5 h -0.1 l 0.3,-0.2 c -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.3,-0.3 -0.7,-0.7 -1.1,-0.9 -0.1,0 -0.1,0 -0.2,-0.1 l -0.2,-0.3 -0.2,-0.3 c -0.2,-0.3 -0.2,-0.4 -0.3,-0.7 l 0.1,0.1 0.6,0.5 0.8,-0.5 -0.7,-0.5 c -0.3,-0.2 -0.5,-0.3 -0.8,-0.4 l -0.6,-0.3 v -0.1 l -0.1,-0.1 -0.2,-0.3 -0.3,-0.6 -0.7,0.5 c -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.2,-0.1 -0.5,-0.2 -0.7,-0.2 l -0.2,0.1 -0.5,-0.3 c -0.4,-0.3 -0.8,-0.5 -1.2,-0.8 l -1,-0.7 -0.6,-0.3 z m 17,1.5 c -0.3,0.1 -0.6,0.1 -0.9,0.2 l -0.3,0.1 h -0.4 c -0.2,0 -0.4,0 -0.6,0.1 -0.2,0.1 -0.3,0.2 -0.4,0.2 l -0.3,0.3 -0.1,0.2 c -0.7,0.4 -1.3,0.8 -2,1.3 l 0.9,-0.3 c 0.3,-0.2 0.6,-0.4 0.8,-0.5 h 0.1 l 0.2,-0.1 v 0.2 c 0,0.1 0,0.2 -0.1,0.3 v 0.1 l -1,0.7 c -0.4,0.3 -0.8,0.6 -1.1,1 -0.2,0.3 -0.4,0.6 -0.5,0.8 l 0.1,1 c 0.1,-0.3 0.2,-0.6 0.4,-0.8 0.3,-0.4 0.7,-0.7 1.1,-1 0.4,-0.3 0.8,-0.5 1.2,-0.7 v -0.2 l 0.2,-0.6 c 0,-0.1 0,-0.2 0.1,-0.2 0.1,0 0.2,-0.1 0.4,-0.2 0.2,-0.1 0.3,-0.1 0.5,-0.1 h 2.2 v -1 h -0.8 l 0.3,-0.2 h -0.2 z m 2.3,2.3 c -0.3,0.2 -0.7,0.2 -1,0.3 l 0.1,-0.1 c -0.4,0.1 -0.7,0.1 -1.1,0.1 -0.5,0 -0.9,0.1 -1.3,0.3 -0.5,0.3 -1,0.5 -1.3,0.9 l -0.2,0.2 -0.2,0.1 c -0.5,0.3 -0.8,0.8 -1.2,1.3 -0.3,0.4 -0.5,0.8 -0.8,1.2 l 0.8,-0.4 0.5,-0.8 v 0.1 l 0.9,-0.4 v -0.2 c 0.1,-0.3 0.2,-0.5 0.4,-0.8 h 0.3 -0.1 l 0.1,0.9 0.2,-0.3 c 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.2 0.4,-0.2 0.5,-0.3 0.5,-0.2 1,-0.3 1.5,-0.4 0.5,-0.1 0.9,-0.1 1.3,-0.2 z m -3.3,0.9 c -0.1,0 -0.1,0 -0.1,0.1 h -0.4 c 0,-0.1 0,-0.1 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.1 z m 2.7,1 h -0.1 l -0.3,0.1 -0.7,0.2 c -0.4,0.1 -0.8,0.2 -1.1,0.4 l -0.7,0.2 -0.7,0.4 -0.4,0.2 -0.4,0.2 -0.1,-0.9 c -0.3,0.1 -0.5,0.3 -0.7,0.5 -0.4,0.4 -0.6,0.8 -0.9,1.3 l -0.2,0.5 -0.1,0.1 c -0.1,0.1 -0.2,0.2 -0.3,0.4 l 0.1,-0.1 -0.1,0.1 v 0.4 c -0.1,0.1 0,0.1 -0.1,0.2 l 0.1,-0.1 v 0.3 l 0.2,-0.5 0.5,-0.2 0.1,-0.1 0.6,-0.6 c 0.1,-0.1 0.2,-0.3 0.4,-0.4 l 0.2,-0.1 0.2,-0.1 1.5,-0.6 1.8,-0.6 c 0.4,0 0.7,-0.1 1.1,-0.1 v -1 c -0.4,0 -0.8,0.2 -1.1,0.2 l -0.3,0.1 z m -16.6,0.3 -0.8,0.5 c 0.3,0 0.5,0.2 0.7,0.3 l 0.9,0.6 0.8,0.6 -0.6,0.4 h 0.4 l -0.2,0.2 0.6,0.4 0.8,0.5 c 0,0.3 0.1,0.5 0.3,0.7 0.3,0.6 -0.1,-0.1 0.3,0.6 0.3,0.6 0.7,1.2 1.1,1.8 l -0.3,-0.2 -0.6,-0.2 c -0.4,-0.1 -0.7,-0.3 -1,-0.5 l -1.3,-0.8 c -0.3,-0.2 -0.6,-0.3 -0.9,-0.5 l -0.4,0.3 v -0.9 l -0.2,-0.1 c -0.4,-0.2 -0.8,-0.4 -1.3,-0.5 l -0.7,-0.3 -0.1,1 0.7,0.3 c 0.5,0.1 0.8,0.3 1.2,0.5 l 0.2,0.1 -0.4,0.3 c 0.3,0.1 0.6,0.3 0.9,0.5 l 1.3,0.8 c 0.3,0.2 0.6,0.4 0.9,0.5 0.2,0.1 0.3,0.2 0.5,0.3 l 0.2,0.3 0.8,-0.5 0.1,0.1 c 0.2,0.5 0.5,0.9 0.8,1.3 l 0.2,0.3 0.8,-0.5 -0.2,-0.2 c -0.3,-0.4 -0.6,-0.8 -0.9,-1.3 l -1,-1.7 0.6,0.3 c 0.4,0.2 0.7,0.5 1,0.8 0.3,0.4 0.5,0.8 0.7,1.2 l 0.3,0.9 0.8,-0.4 -0.3,-0.9 c 0,-0.2 -0.1,-0.3 -0.2,-0.5 v -0.1 l 0.4,-0.2 c -0.2,-0.2 -0.5,-0.4 -0.7,-0.7 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 l -0.7,-0.6 c -0.3,-0.2 -0.5,-0.5 -0.8,-0.7 v -0.1 l -0.2,-0.1 -0.4,-0.3 -1.1,-0.6 c -0.3,-0.2 -0.5,-0.3 -0.8,-0.5 l -1.1,-0.8 c -0.3,-0.2 -0.6,-0.5 -0.9,-0.6 l -0.8,-0.3 z m 11.3,2.6 v 0.3 c -0.1,0.1 -0.2,0.1 -0.4,0.2 l -0.2,0.1 v -0.1 l 0.2,-0.3 0.2,-0.3 z m 3.8,1.2 -0.9,0.4 c -0.3,0.2 -0.6,0.4 -0.8,0.6 -0.3,0.2 -0.5,0.4 -0.7,0.6 l -0.8,0.4 c -0.4,0.3 -0.7,0.6 -1,0.9 -0.2,0.2 -0.3,0.5 -0.4,0.7 l 0.6,-0.2 v 0.1 c -0.2,0.3 -0.3,0.7 -0.4,1.1 l -0.6,0.4 c -0.5,0.4 -1,0.8 -1.5,1.3 l 0.9,-0.3 c 0.4,-0.4 0.8,-0.7 1.3,-1.1 v 0.5 c -0.2,0.3 -0.4,0.7 -0.5,1.1 l 0.8,-0.4 c 0.1,-0.4 0.3,-0.8 0.5,-1.1 v 0.1 c 0,0.3 -0.1,0.6 -0.1,0.8 v 0.1 l 0.8,-0.4 c 0,-0.3 0.1,-0.6 0.1,-0.8 0.1,-0.3 0.1,-0.6 0.2,-0.9 l 0.2,-0.2 c 0.4,-0.1 0.7,-0.2 1.1,-0.2 l 0.8,-0.6 c -0.5,0.1 -1,0.2 -1.4,0.3 0.3,-0.2 0.6,-0.5 0.9,-0.7 0.6,-0.3 0.6,-0.3 0.9,-0.5 l -0.9,0.4 c -0.1,0 -0.1,0.1 -0.1,0.1 l 0.7,-0.4 -0.1,0.1 c -0.1,0 -0.1,0.1 -0.2,0.1 l -1.1,0.6 c -0.1,0.1 -0.1,0.1 -0.2,0.1 -0.2,0.1 -0.3,0.3 -0.5,0.4 l -0.2,0.2 0.1,-0.4 1.3,-0.9 c 0.4,-0.2 0.8,-0.4 1.3,-0.6 0.3,-0.1 0.5,-0.1 0.8,-0.2 v -1 l -0.8,0.3 c -0.4,0.1 -0.7,0.3 -1.1,0.5 l -0.5,0.2 0.5,-0.4 0.9,-0.7 z m -11,0.5 z m 8.3,1.5 -0.2,0.2 c -0.2,0.1 -0.4,0.3 -0.6,0.5 0,-0.1 0,-0.1 0.1,-0.1 0.2,-0.3 0.4,-0.5 0.6,-0.6 z m -0.6,1.7 c 0,0.1 -0.1,0.2 -0.1,0.2 l -0.3,0.2 v -0.1 l 0.3,-0.3 z m -0.1,0.4 c 0,0.1 0,0.1 -0.1,0.1 -0.3,0.2 -0.5,0.4 -0.6,0.7 l -0.2,0.2 c 0,-0.2 0.1,-0.4 0.2,-0.6 v -0.1 c 0.1,0 0.3,-0.1 0.4,-0.2 z m -8,1.4 -0.7,0.1 v 1.3 h 0.7 c 0.3,0 0.6,0.1 0.8,0.1 v -0.2 l 1.1,0.6 c 0.4,0.3 0.7,0.7 0.9,1.1 l 0.8,-0.5 c -0.3,-0.5 -0.6,-0.9 -1,-1.2 -0.4,-0.3 -0.9,-0.6 -1.3,-0.8 -0.3,-0.2 -0.5,-0.3 -0.8,-0.3 l -0.2,0.1 -0.5,-0.1 h -0.1 z m 12,0 -1.4,1 -0.8,0.5 0.1,-0.1 0.2,-0.2 c 0.2,-0.2 0.2,-0.2 -0.1,0 l 0.7,-0.6 c -0.6,0.2 -1.2,0.6 -1.7,1 -0.3,0.2 -0.6,0.6 -0.8,0.9 -0.2,0.1 -0.4,0.3 -0.5,0.5 v 0.3 l -0.2,0.5 v 0.1 l 0.3,-0.2 v 0.1 l 0.1,-0.1 0.6,-0.2 v -0.1 l 0.1,-0.4 c 0.2,-0.1 0.3,-0.2 0.6,-0.4 0.5,-0.3 1,-0.6 1.5,-1 0.5,-0.3 0.9,-0.6 1.4,-0.9 z m -1.1,2.8 -0.9,0.6 -0.3,0.3 -0.6,0.7 c -0.5,0.6 -0.9,1.2 -1.2,1.8 -0.1,0.2 -0.3,0.4 -0.4,0.6 l 0.8,-0.4 0.1,-0.1 v 0.3 l -0.5,0.3 v 0.1 c 0,0 0.2,-0.1 0.3,-0.1 v -0.1 l 0.1,-0.1 0.9,-0.6 0.1,-0.1 c 0.1,-0.1 0.3,-0.2 0.4,-0.2 0.4,-0.2 0.9,-0.3 1.3,-0.3 v -0.3 l 0.5,-0.4 -0.2,0.1 0.7,-0.6 -0.9,0.5 v -0.3 c -0.5,0.1 -1,0.2 -1.5,0.4 -0.4,0.1 -0.7,0.2 -1,0.4 0.3,-0.5 0.6,-1 1,-1.5 l 0.6,-0.7 c 0.3,-0.2 0.9,-0.6 -0.5,0.2 z m -10.6,1.4 c -0.2,0 -0.4,0 -0.5,0.1 l -0.8,0.6 h 1.3 c 0.3,0.1 0.6,0.1 0.9,0.2 l 1,0.4 0.5,0.2 h -0.5 c -0.3,0 -0.6,-0.1 -0.9,-0.1 l -0.8,0.6 0.9,0.2 0.6,0.1 -0.3,0.2 h 0.5 c 0.1,0 0.3,0.1 0.4,0.1 l 0.2,-0.1 c 0.4,0.1 0.8,0.2 1.2,0.5 l 0.2,0.2 h 0.1 l -0.1,0.5 v 1.6 l 0.1,-0.9 v -0.5 c 0.1,-0.2 0.1,-0.4 0.2,-0.5 v -0.4 l 0.4,-0.3 -0.2,-0.1 -0.3,-0.1 v -0.1 0.1 c -0.4,-0.2 -0.7,-0.3 -1,-0.4 l -0.6,-0.1 0.6,-0.3 c -0.1,-0.1 -0.2,-0.1 -0.2,-0.2 l -0.7,-0.3 -1.1,-0.4 c -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 h -0.8 z"
-         id="path4490-5" />
-      <path
-         style="fill:#525767"
-         inkscape:connector-curvature="0"
-         d="m 484.52,430.5 -0.12,0.97 c 0.3,0.55 0.57,1.1 0.84,1.66 0.1,0.18 0.17,0.37 0.26,0.56 l 0.15,0.4 c 0.5,1.4 1.03,2.9 1.5,4.3 v 1.1 l -0.3,-0.9 c -0.1,-0.2 -0.18,-0.4 -0.26,-0.6 l -0.5,-1 -0.5,-0.8 -0.1,-0.2 -0.1,0.3 -0.5,-0.9 c -0.4,-0.7 -0.8,-1.4 -1.2,-2 l -0.5,-0.6 c -0.2,-0.3 -0.5,-0.5 -0.7,-0.7 l -0.1,0.9 c 0.4,0.3 0.8,0.8 1.1,1.2 0.4,0.6 0.8,1.3 1.1,1.9 v 0.1 l -0.1,-0.1 -0.1,0.9 c 0.5,0.6 0.9,1.3 1.4,2 l 0.9,1.4 0.6,1.9 v 0.9 l -0.1,-0.1 c 0,-0.1 0,-0.1 -0.1,-0.1 v -0.5 c -0.1,-0.3 -0.1,-0.7 -0.2,-1 l -0.2,1 c -0.7,-1.2 -1.5,-2.3 -2.2,-3.4 -0.5,-0.7 -1,-1.4 -1.4,-2.1 l -0.1,0.9 1.3,1.9 c 0.6,0.8 1.1,1.7 1.7,2.5 l 0.7,1.2 v 0.7 l -0.7,-1.1 -0.9,-1.8 c -0.2,-0.4 -0.3,-0.6 -0.6,-1 l -0.3,-0.5 -1.1,-1.7 -0.1,0.9 c 0.4,0.5 0.8,1.1 1.2,1.6 l 0.3,0.4 0.6,1 0.9,1.6 -0.3,-0.2 c -0.2,-0.1 -0.4,-0.3 -0.6,-0.3 v 0.8 l -1.1,-1.7 -0.1,1 1.2,1.8 c 0.6,0.9 1.3,1.8 1.9,2.7 l 0.5,0.9 -0.1,0.6 0.1,0.2 -0.1,0.4 c -0.5,-0.8 -1,-1.5 -1.4,-2.3 -0.4,-0.7 -0.8,-1.4 -0.9,-2.2 l -0.2,0.9 c 0.1,0.7 0.6,1.4 0.9,2.1 l 1.5,2.5 0.3,0.4 c -0.3,-0.4 -0.6,-0.7 -1,-1 l -0.2,-0.3 c -0.3,-0.6 -0.7,-1.1 -1,-1.7 l -0.1,0.7 -0.1,-0.2 c -0.3,-0.6 -0.7,-1.1 -1,-1.7 l -0.1,0.9 1,1.5 v 0.1 l -0.3,-0.3 c -0.3,-0.2 -0.6,-0.4 -0.9,-0.7 l -0.1,1 0.9,0.6 c 0.2,0.2 0.5,0.3 0.7,0.5 0.3,0.3 0.6,0.6 0.9,1 0.6,0.7 1.1,1.5 1.6,2.3 v 0.3 l -0.3,-0.5 c -0.3,-0.4 -0.6,-0.7 -1,-1 l -0.5,-0.4 c -0.1,0 -0.1,0 -0.2,-0.1 v 1 l 0.1,0.1 c 0.2,0.1 0.3,0.1 0.4,0.3 0.3,0.2 0.5,0.4 0.7,0.7 v 0.6 l 0.3,0.2 v 0.2 l -0.1,-0.1 v 1 l 0.3,0.3 -0.8,-0.5 -1,-0.9 v 0.2 l -1.1,-0.6 c -0.6,-0.2 -1.1,-0.5 -1.7,-0.5 v 1 c 0.6,-0.1 1.1,0.1 1.7,0.3 0.5,0.2 1,0.5 1.5,0.8 l 0.6,0.4 1,0.72 v 0.4 c -0.3,-0.3 -0.6,-0.6 -0.8,-0.95 l -0.1,1 c 0.3,0.3 0.6,0.6 0.8,1 v 0.1 -0.18 l 0.3,0.3 c 0.5,0.7 0.9,1.4 1.4,2.1 l -0.3,-0.3 c -0.6,-0.4 -1.2,-0.7 -1.8,-1.1 -0.3,-0.2 -0.7,-0.4 -1.1,-0.4 v 1 c 0.4,0 0.7,0.2 1.1,0.3 l 1.1,0.7 v 0.3 l 0.9,1.2 0.2,0.35 -2.1,-0.7 c -0.4,-0.2 -0.8,-0.4 -1.1,-0.6 l -0.1,1 h 0.1 c 0.1,0.1 0,0 0.3,0.1 l 0.8,0.3 2.2,0.7 c -0.1,0.13 -0.1,0.3 -0.2,0.4 l 0.1,1 c 0.1,-0.2 0.2,-0.4 0.2,-0.66 0,-0.2 0.1,-0.4 0.1,-0.6 v -0.1 0.5 -0.5 l 0.1,0.1 -0.1,0.4 v 0.4 h 0.2 l 0.1,0.6 v -1.2 l 0.2,0.35 v 0.1 l 0.1,0.9 c 0,-0.2 0.1,-0.3 0.2,-0.5 v -0.2 l 0.1,0.3 -0.1,0.2 0.1,1 0.1,-0.1 0.1,0.5 0.1,-0.2 0.6,-1 0.3,-0.32 0.1,0.1 0.1,0.4 v 0.1 -0.4 l 0.4,0.2 c 0.04,0.1 0.1,0.2 0.1,0.3 l 0.1,0.3 v 0.3 -0.8 l 0.2,0.9 c 0,-0.5 0,-0.9 -0.1,-1.4 l 0.2,0.1 0.6,0.2 0.22,0.1 v -1 l -0.2,-0.1 c -0.3,-0.35 -0.66,-0.6 -1,-0.9 0.1,-0.05 0.14,-0.1 0.24,-0.1 v -0.2 c 0.1,0 0.1,-0.03 0.2,-0.04 0.3,0 0.6,0 0.8,0.1 v -0.9 h -0.9 c -0.4,0.1 -0.8,0.2 -1.2,0.4 v 0.3 l -0.55,-0.5 -0.3,-1 v -0.6 l 0.1,-0.1 c 0,0.1 0.1,0.2 0.1,0.3 l 0.05,-0.4 0.5,-0.5 c 0.4,-0.2 0.7,-0.4 1.1,-0.7 l -0.1,-1 c -0.3,0.3 -0.7,0.5 -1,0.7 l -0.7,0.5 -0.7,-1.1 c 0.1,-0.3 0.2,-0.6 0.32,-0.9 0.2,-0.4 0.4,-0.9 0.72,-1.2 l 0.6,-0.7 -0.1,-1 c -0.2,0.3 -0.4,0.52 -0.6,0.8 -0.2,0.2 -0.4,0.5 -0.56,0.7 l -0.24,0.53 c -0.1,0.4 -0.3,0.9 -0.4,1.4 l 0.03,-0.4 0.3,-1.5 c 0.1,-0.3 0.2,-0.5 0.4,-0.6 l -0.1,-1 -0.3,0.4 -0.2,0.2 c -0.2,0.5 -0.3,1 -0.4,1.5 l -0.1,0.8 c 0,0 -0.1,0 -0.1,-0.1 l -0.2,-0.8 -0.1,-0.3 0.1,-0.4 0.1,-0.8 0.2,-1.6 v 0.3 -1.4 c 0.06,-0.2 0.1,-0.3 0.2,-0.4 l 0.26,-0.5 c 0.2,-0.4 0.5,-0.6 0.8,-0.9 0.3,-0.2 0.6,-0.5 1,-0.6 l -0.08,-1 c -0.4,0.2 -0.7,0.4 -1,0.7 l -0.1,0.1 0.1,-0.2 0.1,-0.1 V 449 l -0.2,1 c 0,-1.3 0.1,-1 -0.16,-0.6 l -0.5,0.8 c -0.2,0.3 -0.4,0.7 -0.5,1 V 448 c 0.04,-0.03 0.1,-0.1 0.1,-0.2 l -0.1,-0.8 v -0.93 l -0.1,0.92 v 0.1 c -0.2,0.4 -0.3,0.8 -0.5,1.2 -0.3,0.9 -0.46,1.8 -0.5,2.7 l -0.26,-0.9 v -0.4 c 0,-0.6 0,-1.1 -0.1,-1.6 0,-0.3 0.1,-0.6 0.1,-0.9 0,-0.1 0.08,-0.3 0.1,-0.4 0.1,-0.5 0.3,-1 0.48,-1.6 l 0.3,-0.9 0.1,-0.3 v -1.1 l -0.1,0.9 v -0.8 0.3 l -0.3,0.9 c -0.1,0.5 -0.34,1 -0.5,1.6 0,0.1 0,0.2 -0.1,0.3 0,0.3 -0.1,0.7 -0.1,1 l -0.4,-1.7 0.2,-0.5 0.1,0.8 0.2,-0.8 c 0,-0.2 0.1,-0.7 0.2,-0.9 l 0.3,-1.4 c 0.3,-0.5 0.6,-0.9 0.9,-1.4 0.3,-0.4 0.6,-0.9 1,-1.4 l -0.1,-1 -0.5,0.9 -0.1,-0.7 -0.3,0.6 -0.04,-0.4 -0.2,0.6 v -0.8 l -0.18,1 v -0.9 l -0.1,0.2 -0.1,0.3 -0.4,1.1 c -0.3,0.8 -0.6,1.6 -0.8,2.5 0,0.2 -0.1,0.5 -0.1,0.7 v -2 c 0.1,-0.1 0.1,-0.2 0.1,-0.3 0.03,-0.1 0.1,-0.4 0.1,-0.5 v -1 l -0.1,0.9 v -0.8 l -0.07,0.2 c 0,0 0,0.1 -0.1,0.1 v -0.6 l -0.2,1 v 0.2 c -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.1,0.3 -0.2,0.6 -0.2,0.9 l -0.2,-1 c -0.1,-0.2 -0.1,-0.4 -0.1,-0.6 v -0.1 c 0.4,-1.2 0.9,-2.4 1.5,-3.5 l 0.34,-0.7 0.3,-0.5 v -0.6 l 0.3,-0.5 -0.1,-1 -0.6,1.4 c -0.3,0.6 -0.6,1.1 -0.9,1.7 l -0.5,0.9 c -0.3,0.6 -0.5,1.3 -0.8,1.9 l -0.1,-0.4 v -0.6 l 0.1,-0.6 -0.1,-0.3 c 0,-1.1 -0.1,-2.1 -0.1,-3.2 v -4.2 l -0.1,1 v 4.1 c 0,0.6 0.1,1.2 0.1,1.8 l -0.6,-1.6 c 0,-0.3 0,-0.7 0.1,-1.1 0.1,-0.4 0.1,-0.7 0.2,-1.1 l 0.2,-0.5 c 0,-0.1 0.1,-0.1 0.1,-0.2 l -0.2,-0.9 c -0.04,0.4 -0.2,0.8 -0.23,1.1 -0.1,0.4 -0.1,0.4 -0.1,0.8 -0.1,0.6 -0.1,1.1 -0.1,1.6 -0.1,-0.4 -0.3,-0.7 -0.43,-1.1 l -1,-2.6 c -0.2,-0.6 -0.4,-1.3 -0.5,-2 l -0.1,0.7 -0.43,-1 z m 3,7.97 c 0.12,0.33 0.25,0.66 0.36,1 0.1,0.27 0.1,0.32 0.12,0.4 V 440 c -0.16,-0.52 -0.3,-1.04 -0.48,-1.55 z m -0.22,0.4 c 0.25,0.8 0.5,1.6 0.72,2.4 v 0.1 l -0.25,-0.48 -0.1,-0.3 c -0.07,-0.3 -0.17,-0.5 -0.26,-0.7 0,-0.3 -0.1,-0.6 -0.1,-0.9 v -0.2 z m 2.24,0.33 c -0.26,0.66 -0.52,1.34 -0.76,2.02 0,0.04 -0.03,0.1 -0.04,0.13 0,-0.1 -0.03,-0.2 -0.04,-0.3 l 0.46,-1.13 z m -0.87,1.93 -0.1,0.72 c -0.03,-0.05 -0.06,-0.18 -0.08,-0.22 0,-0.17 0.1,-0.33 0.1,-0.5 z m 2.43,1.03 -0.05,0.16 -0.1,0.17 0.15,-0.4 z m -2.46,0.56 0.15,0.84 0.1,0.86 v 0.2 l -0.2,-0.48 c 0,-0.1 0,-0.2 -0.1,-0.32 l -0.2,-0.93 v -0.2 z m 2.14,0.2 -0.12,0.36 -0.3,0.93 -0.12,0.3 c 0.13,-0.4 0.28,-0.9 0.46,-1.3 l 0.08,-0.2 z m -1.25,0.55 v 2.26 l -0.26,-1.3 0.2,-0.75 0.06,-0.2 z m -1.52,0.03 0.1,0.13 v 0.3 -0.13 l 0.1,-0.3 z m 0.2,0.7 c 0.1,0.16 0.1,0.32 0.1,0.48 0,-0.1 -0.1,-0.18 -0.1,-0.27 l 0.1,-0.1 v -0.1 z m 0.4,0.36 0.1,0.3 v 0.18 -0.48 z m -0.8,0.1 0.1,0.1 v 0.26 l 0.1,-0.22 v 0.6 -0.74 z m 1.4,0.47 0.3,1.42 v 0.02 -0.38 c 0,-0.4 -0.1,-0.6 -0.2,-1 v -0.2 z m -1.1,0 0.6,0.96 c 0,0.1 0.1,0.3 0.1,0.4 -0.1,-0.1 -0.2,-0.2 -0.3,-0.4 l -0.2,-0.4 v -0.7 l 0.1,-0.2 z m -2,0.07 c 0.2,0.07 0.3,0.15 0.5,0.25 0.3,0.14 0.5,0.34 0.7,0.54 0.3,0.2 0.4,0.5 0.6,0.8 l 0.5,0.9 c 0.2,0.4 0.3,0.8 0.4,1.2 l 0.1,0.1 c -0.1,-0.4 -0.3,-0.7 -0.6,-1.1 l -1.8,-2.7 -0.1,-0.1 z m 3,1.7 0.2,0.34 v 0.02 l -0.1,-0.15 v -0.2 z m -0.5,0.4 0.3,0.32 0.1,0.53 V 448 l -0.2,-0.7 z m 1.2,0.38 c 0.2,0.75 0.4,1.5 0.5,2.26 v 0.16 l -0.1,-0.7 c -0.1,-0.45 -0.1,-0.72 -0.2,-1.16 v -0.53 z m -0.7,0.23 0.1,0.4 -0.1,0.3 v -0.6 z m 0.3,1 v 1.4 c 0,0.2 0.1,0.3 0,0.4 v -0.3 1.1 c -0.1,-0.1 -0.1,-0.3 -0.2,-0.5 v -0.6 c 0,0.1 0,0.1 0.1,0.2 l 0.1,-0.9 0.2,-0.4 z m 0.1,0.5 c 0,0.1 0.1,0.1 0.1,0.2 v 0.6 l 0.2,1 v -0.5 l 0.1,0.7 0.1,1.6 -0.3,-1 v -2.3 z m 2.3,0.2 v 0.8 l 0.1,2.2 v 1.3 l -0.3,0.9 c -0.3,0.6 -0.4,1.3 -0.5,2 l -0.1,-0.7 v -0.1 c 0,-0.5 0,-1 0.1,-1.4 0.1,0.3 0.2,0.7 0.2,1 v 0.4 l 0.2,-0.9 v -0.4 c 0,-0.4 -0.1,-0.8 -0.2,-1.2 0.1,-0.9 0.2,-1.7 0.5,-2.6 0.1,-0.3 0.3,-0.6 0.4,-0.9 z m -1.9,0.7 0.1,0.7 0.2,0.8 v 1.9 -0.2 c 0,-1 -0.1,-2 -0.2,-3 z m -1.1,0.8 0.2,0.4 v 0.2 c 0,-0.1 -0.1,-0.2 -0.1,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 z m 1.6,1.4 0.2,0.7 0.1,-0.5 0.2,0.9 v 1.7 c -0.2,-0.8 -0.3,-1.6 -0.4,-2.4 v -0.3 z m -1,1.7 z m 0.7,0.2 z m -0.5,0.1 c 0,0.1 0,0.1 0.1,0.2 v 0.1 l -0.1,-0.1 z m 0,1.6 0.4,0.7 0.2,0.5 v 0.2 c -0.2,-0.3 -0.4,-0.7 -0.6,-1 v -0.3 z m 2.3,0.1 -0.1,1.3 -0.1,0.9 -0.2,-0.4 v -0.4 c 0.1,-0.4 0.1,-0.9 0.2,-1.3 v 0.5 l 0.2,1 v -0.1 c 0,-0.3 0.1,-0.7 0.1,-1 l 0.1,-0.4 z m -1.6,1.3 0.2,0.4 -0.1,-0.3 v -0.1 z m 0.8,1 0.1,0.1 0.1,0.6 -0.1,-0.3 -0.1,-0.2 0.1,-0.2 z m -1.4,1.6 0.3,0.2 0.7,0.7 0.1,0.1 v 0.1 c 0,0.1 0.1,0.1 0.1,0.2 l 0.3,0.7 0.1,0.3 v 0.1 l 0.1,0.2 0.2,0.6 -0.7,-1.2 -0.5,-0.8 -0.2,-0.4 -0.2,-0.2 v -0.5 z m 2.6,3.2 0.3,0.5 0.1,0.3 v 0.2 l -0.4,-0.8 0.1,-0.1 z m -0.5,0.2 0.1,0.2 0.2,0.4 v 0.1 l -0.3,-0.4 z m 1.2,1.2 c 0.1,0.1 0.1,0.2 0.1,0.4 l -0.1,-0.3 0.1,-0.1 z m -0.6,0.2 0.3,1.3 0.1,0.2 -0.6,-0.2 v -0.9 c 0,0.1 0.1,0.1 0.1,0.2 v -0.3 l 0.1,0.4 0.1,-0.7 z m -0.9,0.2 c 0.1,0.1 0.2,0.2 0.3,0.4 l 0.1,0.1 0.1,0.2 c -0.1,-0.2 -0.3,-0.4 -0.4,-0.6 z m 0.5,0.5 0.1,0.1 0.1,0.2 v 0.2 l -0.1,-0.2 v -0.2 z m 1.3,0.8 0.1,0.1 v 0.1 -0.1 z m 0.4,0.3 0.1,0.3 h -0.1 v -0.2 z m -0.2,0.1 0.1,0.2 h -0.1 v -0.1 z m -0.1,1.2 v 0.1 z"
-         id="path4653-3" />
-    </g>
+	 inkscape:groupmode="layer"
+	 id="layer13"
+	 inkscape:label="Layer 2">
+	<g
+	   transform="matrix(-1.3230272,0,0,0.60512313,1228.2585,-15.297203)"
+	   style="stroke-width:0.1;stroke-linecap:round"
+	   id="layer2-4">
+	  <path
+		 style="fill:#9497a2"
+		 inkscape:connector-curvature="0"
+		 d="m 495.4,468.64 -1.5,1.78 -0.37,-2.72 -2.7,1.5 -1.6,-3.65 -4.5,-1.97 -2.25,-3.18 5.53,2.25 -5.5,-4.4 2.2,-0.38 -3.9,-3 -3.2,-4.3 5.4,3 -4.9,-6.47 4.4,1.78 -3.8,-7.86 2.6,2.34 -4.31,-6.36 5.06,2 -2.2,-3.9 -3.5,-3.2 4.2,1.1 -3.86,-8.6 -0.63,-5.4 4.2,10.3 -0.32,-9.9 3,10.2 2.64,-10.5 0.8,6.2 0.2,5.5 7.1,-10.2 -3,6.95 6.3,-3.4 -5.5,5.1 -2.9,3 11.2,-4 -4.7,4.1 8.2,-1.9 -10.7,5 8.4,1.02 -6.5,3.72 5.6,-0.1 -5.3,3.1 3.7,1.4 -4.4,1.7 6.4,-1.4 2.1,-2.1 -4.8,5.2 4.3,-1.2 -7,5.9 5.4,-2 -4.2,4.2 -2.9,3.7 6,-2.1 -3.3,5 5.5,-0.8 -5,2.3 3.2,1.8 -3.8,0.3 2.5,3.6 z"
+		 id="path4488-3" />
+	  <path
+		 style="fill:#b4b3b7"
+		 inkscape:connector-curvature="0"
+		 d="m 485.05,423.03 z m 0,0 -0.16,0.97 v 1.05 c -0.1,0.42 0,0.83 0.1,1.24 0.1,0.4 0.1,0.3 0.1,0.8 0,0.4 0.1,0.9 0.1,1.3 -0.1,-0.4 -0.1,-0.7 -0.1,-1.1 l -0.9,0.4 c 0,0.3 0.1,0.7 0.1,1 l 0.3,1.4 c 0.1,0.3 0.1,0.7 0.2,1.1 l 0.4,-0.3 v 0.2 -0.3 l 0.3,-0.2 c 0,-0.4 -0.1,-0.8 -0.2,-1.1 0,-0.1 0,-0.2 -0.1,-0.3 0,-0.3 -0.1,-0.6 -0.1,-0.8 0,-0.9 -0.1,-1.8 -0.2,-2.6 0,-0.2 0,-0.3 -0.1,-0.4 -0.1,-0.6 -0.3,-1.1 -0.2,-1.7 v -1 z m -8.48,0.45 -0.12,0.98 c 0.1,0.33 0.27,0.65 0.4,0.97 0.2,0.44 0.35,0.88 0.5,1.33 0.16,0.46 0.2,0.94 0.3,1.4 0.12,0.46 0.2,0.92 0.3,1.37 0.04,0.24 0.13,0.47 0.24,0.7 l 0.1,-0.96 c -0.1,-0.18 -0.2,-0.38 -0.2,-0.58 0,0 0.1,0.1 0.1,0.2 l 0.6,1.3 0.5,1.2 v 0.1 c 0.1,0.3 -0.1,-0.1 0.1,0.3 l 0.2,0.4 0.1,0.2 -1.2,-0.6 c -0.6,-0.2 -1.1,-0.4 -1.7,-0.6 -0.3,-0.1 -0.6,-0.1 -0.8,-0.1 v 1 c 0.2,-0.1 0.5,0 0.8,0 l 1.2,0.3 v 0.4 c 0.2,-0.1 0.5,0 0.7,0.1 l 0.3,0.1 -0.2,0.1 1,1 c 0.4,0.3 0.9,0.7 1.4,1.1 0.2,0.1 0.1,0 0.2,0.2 l 0.4,-0.2 c 0.1,0.1 0.3,0.3 0.4,0.5 0.2,0.3 0.5,0.5 0.7,0.8 l 0.5,0.6 0.4,0.6 c 0.2,0.3 0.5,0.6 0.7,0.9 l 0.7,0.8 0.8,-0.5 -0.7,-0.9 c -0.2,-0.3 -0.5,-0.6 -0.7,-1 l -0.5,-0.7 -0.6,-0.6 -0.7,-0.8 -0.7,-0.7 c -0.2,-0.1 -0.4,-0.2 -0.6,-0.2 l -0.2,0.1 -0.6,-0.5 0.1,-0.4 c 0.6,0.2 1.3,0.5 1.9,0.7 0.3,0.1 0.6,0.3 0.8,0.4 l 0.3,0.2 c 0.2,0.3 0.3,0.5 0.5,0.8 l 0.8,-0.4 c -0.2,-0.4 -0.4,-0.7 -0.5,-1.1 -0.1,-0.4 -0.3,-0.7 -0.6,-0.9 l 0.4,-0.2 c -0.2,-0.4 -0.4,-0.7 -0.6,-1 -0.5,-0.7 -0.9,-1.3 -1.4,-1.9 l -0.4,-0.4 0.3,-0.9 0.7,-2.3 c 0.2,-0.4 0.4,-0.9 0.5,-1.4 l -0.1,-0.9 c -0.1,0.5 -0.3,1 -0.5,1.5 -0.2,0.8 -0.5,1.5 -0.7,2.3 -0.1,0.2 -0.1,0.4 -0.2,0.6 v -0.3 c -0.1,-0.3 -0.2,-0.6 -0.4,-0.8 l -0.5,-0.9 -0.6,-0.9 c -0.2,-0.3 -0.4,-0.6 -0.4,-0.9 l -0.1,-0.2 c 0.1,-0.2 0.1,-0.4 0.2,-0.6 l -0.1,-1 c -0.2,0.2 -0.2,0.5 -0.3,0.7 -0.1,0.5 -0.1,1 0,1.5 v 0.4 c 0.2,0.3 0.4,0.8 0.5,1.2 l 0.6,1.6 c 0.1,0.1 0.1,0.3 0.2,0.5 l -0.7,0.4 c 0.4,0.3 0.7,0.7 1.1,1 l 0.1,0.1 v 0.7 c -0.4,-0.3 -0.8,-0.6 -1.1,-1 l -0.9,0.5 c 0.4,0.4 0.9,0.7 1.4,1.1 0.6,0.4 1.2,0.8 1.8,1.3 -0.8,-0.3 -1.6,-0.6 -2.5,-1 l -0.8,-0.3 v -0.7 c -0.1,-0.2 -0.2,-0.4 -0.4,-0.7 l -0.3,-0.9 -0.6,-1.2 -0.7,-1.3 c -0.2,-0.3 -0.3,-0.6 -0.4,-0.9 l -0.1,0.4 v -0.2 c -0.1,-0.5 -0.1,-1 -0.3,-1.4 -0.1,-0.5 -0.3,-0.9 -0.5,-1.4 -0.1,-0.3 -0.3,-0.6 -0.4,-1 z m 13.57,1.1 -0.15,0.95 c 0,-0.2 0,-0.42 -0.1,-0.64 l -0.1,0.2 -0.2,0.9 c -0.2,0.7 -0.5,1.5 -0.7,2.2 -0.3,0.2 -0.5,0.5 -0.7,0.8 -0.1,0.1 -0.2,0.3 -0.3,0.5 -0.1,0.1 -0.2,0.1 -0.2,0.2 -0.5,0.4 -0.9,0.9 -1.2,1.5 -0.2,0.3 -0.3,0.7 -0.4,1.1 v 0.1 l 0.9,-0.4 v -0.1 c 0,-0.4 0.2,-0.8 0.4,-1.1 0.1,-0.3 0.3,-0.6 0.6,-0.9 v 0.5 -0.2 l 0.1,0.7 c 0,-0.1 0.1,-0.3 0.1,-0.4 l 0.6,-1.6 v -0.1 l 0.1,-0.2 c 0.4,-0.3 0.8,-0.6 1.3,-0.9 0.5,-0.3 1,-0.6 1.7,-0.6 h 0.8 v -1 h -0.8 c -0.7,0 -1.2,0.3 -1.8,0.6 l -1,0.6 0.3,-1 c 0.1,-0.4 0.2,-0.7 0.2,-1 v -1.5 z m -8.2,4.34 0.22,0.4 c 0.12,0.18 0.2,0.4 0.25,0.6 l -0.2,-0.4 -0.2,-0.6 z m 2.34,0.4 -0.87,0.45 0.2,0.84 0.2,0.5 0.9,-0.4 -0.1,-0.4 c 0,-0.3 -0.1,-0.5 -0.1,-0.8 z m 11.02,1.14 c -0.43,0.1 -0.85,0.23 -1.27,0.37 -0.53,0.2 -1.05,0.42 -1.55,0.68 l -0.42,0.2 -1.28,0.6 -0.6,0.3 -0.23,0.2 -0.1,0.1 c -0.23,0.2 -0.46,0.3 -0.7,0.5 l 0.53,-0.2 -0.1,0.2 -0.06,0.2 v 0.1 c -0.4,0.2 -0.8,0.4 -1.2,0.7 l 0.9,-0.3 c -1.5,0.9 -0.42,0.2 -0.05,0.1 l 0.2,-0.1 -0.2,0.2 c -0.17,0.2 -0.32,0.4 -0.44,0.6 l 0.9,-0.4 v 0.2 l 0.08,-0.2 0.2,-0.2 0.8,-0.4 0.9,-0.5 v 0.1 l 0.2,-0.1 -0.2,0.2 -0.2,0.2 c -0.2,0.2 -0.5,0.5 -0.8,0.7 0,0.1 0,0.1 -0.1,0.1 v -0.2 l -0.3,0.5 -0.1,0.6 c 0,0.3 -0.1,0.5 -0.2,0.8 l -0.1,0.3 0.1,1 0.2,-0.3 c 0.1,-0.2 0.2,-0.4 0.2,-0.7 0.1,-0.2 0.2,-0.3 0.2,-0.6 0.1,-0.1 0.2,-0.3 0.3,-0.4 v -0.6 l 0.2,-0.1 h 0.1 v 0.1 l 0.9,-0.4 c 0,0 0.1,-0.1 0.1,-0.2 1.1,-0.6 1.2,-0.7 2.2,-1.2 0.7,-0.4 1.4,-0.7 2.1,-1 0.5,-0.1 0.8,-0.3 1.2,-0.6 v -0.1 h -0.1 c 0.1,0 0,0 0,0 h -0.1 l 0.1,-0.1 -0.5,0.2 -0.9,0.3 v -0.6 h 0.1 -0.1 z m -0.53,1.22 c -0.14,0.06 -0.3,0.12 -0.42,0.2 l -0.33,0.18 0.3,-0.23 z m -12.28,0.03 0.9,1.3 -1,-0.6 v -0.3 l -0.1,-0.1 v -0.1 z m 10.8,0.7 -1.7,1 0.4,-0.4 0.4,-0.3 h 0.1 l 0.6,-0.2 z m 0.9,3.7 h -0.7 c -0.3,0.1 -0.7,0.1 -1,0.1 -0.5,0 -0.9,0.1 -1.3,0.2 -0.3,0.1 -0.5,0.1 -0.8,0.2 l -0.1,0.1 -0.8,0.6 c 0.2,-0.1 0.4,-0.2 0.7,-0.2 0.4,-0.1 0.8,-0.1 1.2,-0.2 h 1.6 z m -0.5,0.6 -0.6,0.2 c -0.3,0.1 -0.6,0.1 -0.8,0.2 -0.1,0 -0.1,0.1 -0.1,0.1 0,0 -0.1,0 -0.1,0.1 h -0.5 c -0.3,0 -0.5,0 -0.7,0.1 l -0.6,0.3 c -0.2,0.1 -0.4,0.2 -0.4,0.5 l 0.1,0.1 -0.5,0.3 0.5,-0.2 -0.3,0.2 0.4,-0.2 h 0.1 l -0.1,0.1 0.2,-0.1 -0.1,0.1 -0.3,0.3 -0.1,0.1 0.9,-0.4 v -0.1 h 0.1 l -0.8,0.4 c 0,0.1 -0.2,0.4 -0.2,0.5 l 0.1,0.1 0.1,0.1 c 0.1,0.1 0.3,0 0.4,0 l -0.1,0.1 c -0.4,0.3 -0.7,0.6 -1.1,1 l -0.7,1 v 0.1 c 0,0.2 0.3,0.1 0.5,-0.1 l -0.2,0.4 0.9,-0.4 c 0.1,-0.2 0.1,-0.4 0.3,-0.6 l 0.2,-0.3 v 0.7 c 0,0.1 0.1,0.1 0.1,0 v -0.1 l 0.1,-0.1 c 0.1,-0.2 0.3,-0.3 0.4,-0.5 v 0.1 l 0.2,-0.2 c 0.3,-0.3 0.8,-0.6 1.2,-0.9 0.5,-0.3 1,-0.6 1.6,-0.8 0.1,-0.1 0.4,-0.2 0.5,-0.2 h 0.2 v -0.2 h 1.2 l 0.8,-0.5 h -0.9 l 0.3,-0.2 -0.1,-0.1 h -0.2 v 0.1 l 0.1,-0.1 -1.2,0.1 h -0.6 v -0.2 c -0.3,0.1 -0.7,0.1 -1.1,0.1 z m -16.2,1 v 1 h 0.8 c 0.4,0 0.8,0.1 1.1,0.3 l -0.4,0.3 c 0.2,0 0.5,0 0.8,0.1 0.3,0.1 0.6,0.4 0.8,0.6 l 0.4,0.5 -0.2,0.2 0.4,0.5 -0.4,0.3 c 0.2,0 0.3,0 0.5,0.1 l 0.9,1.3 0.9,1.5 0.2,0.5 0.8,-0.4 -0.3,-0.5 c -0.3,-0.4 -0.5,-0.8 -0.8,-1.2 l 1.4,1 0.6,0.6 0.8,-0.5 -0.6,-0.5 c -0.5,-0.3 -1.1,-0.6 -1.6,-1 -0.5,-0.3 -1,-0.7 -1.5,-0.9 -0.1,0 -0.2,-0.1 -0.3,-0.1 v -0.1 l -0.3,-0.4 0.7,0.5 c 0.3,0.2 0.6,0.3 0.9,0.5 l 0.4,0.3 c 0.4,0.3 0.8,0.5 1.2,0.8 l 0.8,0.6 0.1,-0.9 -0.9,-0.6 -1.3,-0.8 c -0.4,-0.2 -0.9,-0.4 -1.3,-0.7 -0.4,-0.2 -0.7,-0.4 -1,-0.6 v 0.5 l -0.2,-0.2 c -0.3,-0.2 -0.6,-0.5 -0.9,-0.6 l -0.2,-0.1 v -0.2 c -0.2,-0.2 -0.5,-0.3 -0.7,-0.4 -0.2,-0.1 -0.4,-0.2 -0.5,-0.2 -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 h -0.8 z m 15.9,0.1 -0.1,0.1 -0.3,0.1 h -0.3 c 0.2,0 0.4,-0.1 0.6,-0.1 z m -3.1,0.2 h -0.1 z m 1.2,0 z m -0.1,0.2 c 0,0.1 -0.1,0.1 -0.1,0.2 l -0.1,0.1 c 0,0.1 -0.1,0.1 -0.1,0.1 l 0.1,-0.3 z m 5.3,2.6 c -0.6,0.2 -1.2,0.4 -1.7,0.7 h -0.1 c 0.1,-0.1 0.3,-0.2 0.2,-0.4 l -0.1,-0.1 h -0.1 l -0.6,0.2 c -0.2,0 -0.4,0.1 -0.5,0.2 -0.4,0.3 -0.9,0.5 -1.3,0.8 -0.2,0.2 -0.4,0.5 -0.6,0.7 -0.1,0.2 -0.2,0.4 -0.4,0.6 l 0.7,-0.3 c -0.2,0.2 -0.3,0.4 -0.4,0.6 l -0.1,0.1 -0.8,0.6 0.2,-0.1 c 0.1,-0.1 0.2,-0.2 0.4,-0.2 l -0.1,0.2 h -0.1 l -0.2,0.3 c -0.1,0.1 -0.3,0.4 -0.4,0.5 l -0.3,0.5 c 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.2 -0.3,0.7 -0.3,1 v 0.1 l 0.1,0.1 c 0.4,-0.3 0.8,-0.4 1.1,-0.7 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.3 0.2,-0.4 l 0.2,-0.5 0.4,-0.6 c 0.2,-0.4 0.5,-0.7 0.7,-1.1 v -0.1 l 0.2,-0.1 0.8,-0.4 c 0.6,-0.3 1.2,-0.5 1.7,-0.9 v -0.1 h -0.1 c -0.2,0 -0.3,0.1 -0.5,0.1 h -0.3 c -0.4,0.1 -0.8,0.6 -1.1,0.6 h -0.1 l 0.4,-0.4 1.6,-0.6 z m -2.4,0.8 -0.1,0.1 -0.3,0.3 -0.7,0.4 -0.5,0.3 0.2,-0.3 0.3,-0.4 c 0,0 0.1,0 0.1,-0.1 l 0.2,-0.1 c 0.2,0 0.4,-0.2 0.7,-0.2 z m 0.5,0.7 -0.6,0.3 -0.6,0.3 0.2,-0.1 0.4,-0.3 0.2,-0.1 h 0.4 z m -15.9,0.3 -0.1,1 0.6,0.3 1,0.7 c 0.1,0.1 0.2,0.1 0.3,0.2 l -0.3,0.2 c 0.2,0.2 0.5,0.3 0.9,0.4 0.1,0.1 0.3,0.1 0.5,0.2 l 0.5,0.5 c 0.1,0.2 0.2,0.3 0.3,0.5 l 0.1,-0.9 c 0.2,0.1 0.5,0.2 0.7,0.4 l 0.2,0.2 v 0.1 c 0.2,0.4 0.3,0.7 0.4,1.1 -0.3,-0.1 -0.6,-0.2 -0.9,-0.4 l -0.8,0.6 c 0.3,0.1 0.7,0.3 1,0.4 0.4,0.2 0.9,0.5 1.3,0.7 0.2,0.4 0.3,0.7 0.6,1 l 0.6,0.5 0.8,-0.5 h -0.1 l 0.3,-0.2 c -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.3,-0.3 -0.7,-0.7 -1.1,-0.9 -0.1,0 -0.1,0 -0.2,-0.1 l -0.2,-0.3 -0.2,-0.3 c -0.2,-0.3 -0.2,-0.4 -0.3,-0.7 l 0.1,0.1 0.6,0.5 0.8,-0.5 -0.7,-0.5 c -0.3,-0.2 -0.5,-0.3 -0.8,-0.4 l -0.6,-0.3 v -0.1 l -0.1,-0.1 -0.2,-0.3 -0.3,-0.6 -0.7,0.5 c -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.2,-0.1 -0.5,-0.2 -0.7,-0.2 l -0.2,0.1 -0.5,-0.3 c -0.4,-0.3 -0.8,-0.5 -1.2,-0.8 l -1,-0.7 -0.6,-0.3 z m 17,1.5 c -0.3,0.1 -0.6,0.1 -0.9,0.2 l -0.3,0.1 h -0.4 c -0.2,0 -0.4,0 -0.6,0.1 -0.2,0.1 -0.3,0.2 -0.4,0.2 l -0.3,0.3 -0.1,0.2 c -0.7,0.4 -1.3,0.8 -2,1.3 l 0.9,-0.3 c 0.3,-0.2 0.6,-0.4 0.8,-0.5 h 0.1 l 0.2,-0.1 v 0.2 c 0,0.1 0,0.2 -0.1,0.3 v 0.1 l -1,0.7 c -0.4,0.3 -0.8,0.6 -1.1,1 -0.2,0.3 -0.4,0.6 -0.5,0.8 l 0.1,1 c 0.1,-0.3 0.2,-0.6 0.4,-0.8 0.3,-0.4 0.7,-0.7 1.1,-1 0.4,-0.3 0.8,-0.5 1.2,-0.7 v -0.2 l 0.2,-0.6 c 0,-0.1 0,-0.2 0.1,-0.2 0.1,0 0.2,-0.1 0.4,-0.2 0.2,-0.1 0.3,-0.1 0.5,-0.1 h 2.2 v -1 h -0.8 l 0.3,-0.2 h -0.2 z m 2.3,2.3 c -0.3,0.2 -0.7,0.2 -1,0.3 l 0.1,-0.1 c -0.4,0.1 -0.7,0.1 -1.1,0.1 -0.5,0 -0.9,0.1 -1.3,0.3 -0.5,0.3 -1,0.5 -1.3,0.9 l -0.2,0.2 -0.2,0.1 c -0.5,0.3 -0.8,0.8 -1.2,1.3 -0.3,0.4 -0.5,0.8 -0.8,1.2 l 0.8,-0.4 0.5,-0.8 v 0.1 l 0.9,-0.4 v -0.2 c 0.1,-0.3 0.2,-0.5 0.4,-0.8 h 0.3 -0.1 l 0.1,0.9 0.2,-0.3 c 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.2 0.4,-0.2 0.5,-0.3 0.5,-0.2 1,-0.3 1.5,-0.4 0.5,-0.1 0.9,-0.1 1.3,-0.2 z m -3.3,0.9 c -0.1,0 -0.1,0 -0.1,0.1 h -0.4 c 0,-0.1 0,-0.1 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.1 z m 2.7,1 h -0.1 l -0.3,0.1 -0.7,0.2 c -0.4,0.1 -0.8,0.2 -1.1,0.4 l -0.7,0.2 -0.7,0.4 -0.4,0.2 -0.4,0.2 -0.1,-0.9 c -0.3,0.1 -0.5,0.3 -0.7,0.5 -0.4,0.4 -0.6,0.8 -0.9,1.3 l -0.2,0.5 -0.1,0.1 c -0.1,0.1 -0.2,0.2 -0.3,0.4 l 0.1,-0.1 -0.1,0.1 v 0.4 c -0.1,0.1 0,0.1 -0.1,0.2 l 0.1,-0.1 v 0.3 l 0.2,-0.5 0.5,-0.2 0.1,-0.1 0.6,-0.6 c 0.1,-0.1 0.2,-0.3 0.4,-0.4 l 0.2,-0.1 0.2,-0.1 1.5,-0.6 1.8,-0.6 c 0.4,0 0.7,-0.1 1.1,-0.1 v -1 c -0.4,0 -0.8,0.2 -1.1,0.2 l -0.3,0.1 z m -16.6,0.3 -0.8,0.5 c 0.3,0 0.5,0.2 0.7,0.3 l 0.9,0.6 0.8,0.6 -0.6,0.4 h 0.4 l -0.2,0.2 0.6,0.4 0.8,0.5 c 0,0.3 0.1,0.5 0.3,0.7 0.3,0.6 -0.1,-0.1 0.3,0.6 0.3,0.6 0.7,1.2 1.1,1.8 l -0.3,-0.2 -0.6,-0.2 c -0.4,-0.1 -0.7,-0.3 -1,-0.5 l -1.3,-0.8 c -0.3,-0.2 -0.6,-0.3 -0.9,-0.5 l -0.4,0.3 v -0.9 l -0.2,-0.1 c -0.4,-0.2 -0.8,-0.4 -1.3,-0.5 l -0.7,-0.3 -0.1,1 0.7,0.3 c 0.5,0.1 0.8,0.3 1.2,0.5 l 0.2,0.1 -0.4,0.3 c 0.3,0.1 0.6,0.3 0.9,0.5 l 1.3,0.8 c 0.3,0.2 0.6,0.4 0.9,0.5 0.2,0.1 0.3,0.2 0.5,0.3 l 0.2,0.3 0.8,-0.5 0.1,0.1 c 0.2,0.5 0.5,0.9 0.8,1.3 l 0.2,0.3 0.8,-0.5 -0.2,-0.2 c -0.3,-0.4 -0.6,-0.8 -0.9,-1.3 l -1,-1.7 0.6,0.3 c 0.4,0.2 0.7,0.5 1,0.8 0.3,0.4 0.5,0.8 0.7,1.2 l 0.3,0.9 0.8,-0.4 -0.3,-0.9 c 0,-0.2 -0.1,-0.3 -0.2,-0.5 v -0.1 l 0.4,-0.2 c -0.2,-0.2 -0.5,-0.4 -0.7,-0.7 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 l -0.7,-0.6 c -0.3,-0.2 -0.5,-0.5 -0.8,-0.7 v -0.1 l -0.2,-0.1 -0.4,-0.3 -1.1,-0.6 c -0.3,-0.2 -0.5,-0.3 -0.8,-0.5 l -1.1,-0.8 c -0.3,-0.2 -0.6,-0.5 -0.9,-0.6 l -0.8,-0.3 z m 11.3,2.6 v 0.3 c -0.1,0.1 -0.2,0.1 -0.4,0.2 l -0.2,0.1 v -0.1 l 0.2,-0.3 0.2,-0.3 z m 3.8,1.2 -0.9,0.4 c -0.3,0.2 -0.6,0.4 -0.8,0.6 -0.3,0.2 -0.5,0.4 -0.7,0.6 l -0.8,0.4 c -0.4,0.3 -0.7,0.6 -1,0.9 -0.2,0.2 -0.3,0.5 -0.4,0.7 l 0.6,-0.2 v 0.1 c -0.2,0.3 -0.3,0.7 -0.4,1.1 l -0.6,0.4 c -0.5,0.4 -1,0.8 -1.5,1.3 l 0.9,-0.3 c 0.4,-0.4 0.8,-0.7 1.3,-1.1 v 0.5 c -0.2,0.3 -0.4,0.7 -0.5,1.1 l 0.8,-0.4 c 0.1,-0.4 0.3,-0.8 0.5,-1.1 v 0.1 c 0,0.3 -0.1,0.6 -0.1,0.8 v 0.1 l 0.8,-0.4 c 0,-0.3 0.1,-0.6 0.1,-0.8 0.1,-0.3 0.1,-0.6 0.2,-0.9 l 0.2,-0.2 c 0.4,-0.1 0.7,-0.2 1.1,-0.2 l 0.8,-0.6 c -0.5,0.1 -1,0.2 -1.4,0.3 0.3,-0.2 0.6,-0.5 0.9,-0.7 0.6,-0.3 0.6,-0.3 0.9,-0.5 l -0.9,0.4 c -0.1,0 -0.1,0.1 -0.1,0.1 l 0.7,-0.4 -0.1,0.1 c -0.1,0 -0.1,0.1 -0.2,0.1 l -1.1,0.6 c -0.1,0.1 -0.1,0.1 -0.2,0.1 -0.2,0.1 -0.3,0.3 -0.5,0.4 l -0.2,0.2 0.1,-0.4 1.3,-0.9 c 0.4,-0.2 0.8,-0.4 1.3,-0.6 0.3,-0.1 0.5,-0.1 0.8,-0.2 v -1 l -0.8,0.3 c -0.4,0.1 -0.7,0.3 -1.1,0.5 l -0.5,0.2 0.5,-0.4 0.9,-0.7 z m -11,0.5 z m 8.3,1.5 -0.2,0.2 c -0.2,0.1 -0.4,0.3 -0.6,0.5 0,-0.1 0,-0.1 0.1,-0.1 0.2,-0.3 0.4,-0.5 0.6,-0.6 z m -0.6,1.7 c 0,0.1 -0.1,0.2 -0.1,0.2 l -0.3,0.2 v -0.1 l 0.3,-0.3 z m -0.1,0.4 c 0,0.1 0,0.1 -0.1,0.1 -0.3,0.2 -0.5,0.4 -0.6,0.7 l -0.2,0.2 c 0,-0.2 0.1,-0.4 0.2,-0.6 v -0.1 c 0.1,0 0.3,-0.1 0.4,-0.2 z m -8,1.4 -0.7,0.1 v 1.3 h 0.7 c 0.3,0 0.6,0.1 0.8,0.1 v -0.2 l 1.1,0.6 c 0.4,0.3 0.7,0.7 0.9,1.1 l 0.8,-0.5 c -0.3,-0.5 -0.6,-0.9 -1,-1.2 -0.4,-0.3 -0.9,-0.6 -1.3,-0.8 -0.3,-0.2 -0.5,-0.3 -0.8,-0.3 l -0.2,0.1 -0.5,-0.1 h -0.1 z m 12,0 -1.4,1 -0.8,0.5 0.1,-0.1 0.2,-0.2 c 0.2,-0.2 0.2,-0.2 -0.1,0 l 0.7,-0.6 c -0.6,0.2 -1.2,0.6 -1.7,1 -0.3,0.2 -0.6,0.6 -0.8,0.9 -0.2,0.1 -0.4,0.3 -0.5,0.5 v 0.3 l -0.2,0.5 v 0.1 l 0.3,-0.2 v 0.1 l 0.1,-0.1 0.6,-0.2 v -0.1 l 0.1,-0.4 c 0.2,-0.1 0.3,-0.2 0.6,-0.4 0.5,-0.3 1,-0.6 1.5,-1 0.5,-0.3 0.9,-0.6 1.4,-0.9 z m -1.1,2.8 -0.9,0.6 -0.3,0.3 -0.6,0.7 c -0.5,0.6 -0.9,1.2 -1.2,1.8 -0.1,0.2 -0.3,0.4 -0.4,0.6 l 0.8,-0.4 0.1,-0.1 v 0.3 l -0.5,0.3 v 0.1 c 0,0 0.2,-0.1 0.3,-0.1 v -0.1 l 0.1,-0.1 0.9,-0.6 0.1,-0.1 c 0.1,-0.1 0.3,-0.2 0.4,-0.2 0.4,-0.2 0.9,-0.3 1.3,-0.3 v -0.3 l 0.5,-0.4 -0.2,0.1 0.7,-0.6 -0.9,0.5 v -0.3 c -0.5,0.1 -1,0.2 -1.5,0.4 -0.4,0.1 -0.7,0.2 -1,0.4 0.3,-0.5 0.6,-1 1,-1.5 l 0.6,-0.7 c 0.3,-0.2 0.9,-0.6 -0.5,0.2 z m -10.6,1.4 c -0.2,0 -0.4,0 -0.5,0.1 l -0.8,0.6 h 1.3 c 0.3,0.1 0.6,0.1 0.9,0.2 l 1,0.4 0.5,0.2 h -0.5 c -0.3,0 -0.6,-0.1 -0.9,-0.1 l -0.8,0.6 0.9,0.2 0.6,0.1 -0.3,0.2 h 0.5 c 0.1,0 0.3,0.1 0.4,0.1 l 0.2,-0.1 c 0.4,0.1 0.8,0.2 1.2,0.5 l 0.2,0.2 h 0.1 l -0.1,0.5 v 1.6 l 0.1,-0.9 v -0.5 c 0.1,-0.2 0.1,-0.4 0.2,-0.5 v -0.4 l 0.4,-0.3 -0.2,-0.1 -0.3,-0.1 v -0.1 0.1 c -0.4,-0.2 -0.7,-0.3 -1,-0.4 l -0.6,-0.1 0.6,-0.3 c -0.1,-0.1 -0.2,-0.1 -0.2,-0.2 l -0.7,-0.3 -1.1,-0.4 c -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 h -0.8 z"
+		 id="path4490-5" />
+	  <path
+		 style="fill:#525767"
+		 inkscape:connector-curvature="0"
+		 d="m 484.52,430.5 -0.12,0.97 c 0.3,0.55 0.57,1.1 0.84,1.66 0.1,0.18 0.17,0.37 0.26,0.56 l 0.15,0.4 c 0.5,1.4 1.03,2.9 1.5,4.3 v 1.1 l -0.3,-0.9 c -0.1,-0.2 -0.18,-0.4 -0.26,-0.6 l -0.5,-1 -0.5,-0.8 -0.1,-0.2 -0.1,0.3 -0.5,-0.9 c -0.4,-0.7 -0.8,-1.4 -1.2,-2 l -0.5,-0.6 c -0.2,-0.3 -0.5,-0.5 -0.7,-0.7 l -0.1,0.9 c 0.4,0.3 0.8,0.8 1.1,1.2 0.4,0.6 0.8,1.3 1.1,1.9 v 0.1 l -0.1,-0.1 -0.1,0.9 c 0.5,0.6 0.9,1.3 1.4,2 l 0.9,1.4 0.6,1.9 v 0.9 l -0.1,-0.1 c 0,-0.1 0,-0.1 -0.1,-0.1 v -0.5 c -0.1,-0.3 -0.1,-0.7 -0.2,-1 l -0.2,1 c -0.7,-1.2 -1.5,-2.3 -2.2,-3.4 -0.5,-0.7 -1,-1.4 -1.4,-2.1 l -0.1,0.9 1.3,1.9 c 0.6,0.8 1.1,1.7 1.7,2.5 l 0.7,1.2 v 0.7 l -0.7,-1.1 -0.9,-1.8 c -0.2,-0.4 -0.3,-0.6 -0.6,-1 l -0.3,-0.5 -1.1,-1.7 -0.1,0.9 c 0.4,0.5 0.8,1.1 1.2,1.6 l 0.3,0.4 0.6,1 0.9,1.6 -0.3,-0.2 c -0.2,-0.1 -0.4,-0.3 -0.6,-0.3 v 0.8 l -1.1,-1.7 -0.1,1 1.2,1.8 c 0.6,0.9 1.3,1.8 1.9,2.7 l 0.5,0.9 -0.1,0.6 0.1,0.2 -0.1,0.4 c -0.5,-0.8 -1,-1.5 -1.4,-2.3 -0.4,-0.7 -0.8,-1.4 -0.9,-2.2 l -0.2,0.9 c 0.1,0.7 0.6,1.4 0.9,2.1 l 1.5,2.5 0.3,0.4 c -0.3,-0.4 -0.6,-0.7 -1,-1 l -0.2,-0.3 c -0.3,-0.6 -0.7,-1.1 -1,-1.7 l -0.1,0.7 -0.1,-0.2 c -0.3,-0.6 -0.7,-1.1 -1,-1.7 l -0.1,0.9 1,1.5 v 0.1 l -0.3,-0.3 c -0.3,-0.2 -0.6,-0.4 -0.9,-0.7 l -0.1,1 0.9,0.6 c 0.2,0.2 0.5,0.3 0.7,0.5 0.3,0.3 0.6,0.6 0.9,1 0.6,0.7 1.1,1.5 1.6,2.3 v 0.3 l -0.3,-0.5 c -0.3,-0.4 -0.6,-0.7 -1,-1 l -0.5,-0.4 c -0.1,0 -0.1,0 -0.2,-0.1 v 1 l 0.1,0.1 c 0.2,0.1 0.3,0.1 0.4,0.3 0.3,0.2 0.5,0.4 0.7,0.7 v 0.6 l 0.3,0.2 v 0.2 l -0.1,-0.1 v 1 l 0.3,0.3 -0.8,-0.5 -1,-0.9 v 0.2 l -1.1,-0.6 c -0.6,-0.2 -1.1,-0.5 -1.7,-0.5 v 1 c 0.6,-0.1 1.1,0.1 1.7,0.3 0.5,0.2 1,0.5 1.5,0.8 l 0.6,0.4 1,0.72 v 0.4 c -0.3,-0.3 -0.6,-0.6 -0.8,-0.95 l -0.1,1 c 0.3,0.3 0.6,0.6 0.8,1 v 0.1 -0.18 l 0.3,0.3 c 0.5,0.7 0.9,1.4 1.4,2.1 l -0.3,-0.3 c -0.6,-0.4 -1.2,-0.7 -1.8,-1.1 -0.3,-0.2 -0.7,-0.4 -1.1,-0.4 v 1 c 0.4,0 0.7,0.2 1.1,0.3 l 1.1,0.7 v 0.3 l 0.9,1.2 0.2,0.35 -2.1,-0.7 c -0.4,-0.2 -0.8,-0.4 -1.1,-0.6 l -0.1,1 h 0.1 c 0.1,0.1 0,0 0.3,0.1 l 0.8,0.3 2.2,0.7 c -0.1,0.13 -0.1,0.3 -0.2,0.4 l 0.1,1 c 0.1,-0.2 0.2,-0.4 0.2,-0.66 0,-0.2 0.1,-0.4 0.1,-0.6 v -0.1 0.5 -0.5 l 0.1,0.1 -0.1,0.4 v 0.4 h 0.2 l 0.1,0.6 v -1.2 l 0.2,0.35 v 0.1 l 0.1,0.9 c 0,-0.2 0.1,-0.3 0.2,-0.5 v -0.2 l 0.1,0.3 -0.1,0.2 0.1,1 0.1,-0.1 0.1,0.5 0.1,-0.2 0.6,-1 0.3,-0.32 0.1,0.1 0.1,0.4 v 0.1 -0.4 l 0.4,0.2 c 0.04,0.1 0.1,0.2 0.1,0.3 l 0.1,0.3 v 0.3 -0.8 l 0.2,0.9 c 0,-0.5 0,-0.9 -0.1,-1.4 l 0.2,0.1 0.6,0.2 0.22,0.1 v -1 l -0.2,-0.1 c -0.3,-0.35 -0.66,-0.6 -1,-0.9 0.1,-0.05 0.14,-0.1 0.24,-0.1 v -0.2 c 0.1,0 0.1,-0.03 0.2,-0.04 0.3,0 0.6,0 0.8,0.1 v -0.9 h -0.9 c -0.4,0.1 -0.8,0.2 -1.2,0.4 v 0.3 l -0.55,-0.5 -0.3,-1 v -0.6 l 0.1,-0.1 c 0,0.1 0.1,0.2 0.1,0.3 l 0.05,-0.4 0.5,-0.5 c 0.4,-0.2 0.7,-0.4 1.1,-0.7 l -0.1,-1 c -0.3,0.3 -0.7,0.5 -1,0.7 l -0.7,0.5 -0.7,-1.1 c 0.1,-0.3 0.2,-0.6 0.32,-0.9 0.2,-0.4 0.4,-0.9 0.72,-1.2 l 0.6,-0.7 -0.1,-1 c -0.2,0.3 -0.4,0.52 -0.6,0.8 -0.2,0.2 -0.4,0.5 -0.56,0.7 l -0.24,0.53 c -0.1,0.4 -0.3,0.9 -0.4,1.4 l 0.03,-0.4 0.3,-1.5 c 0.1,-0.3 0.2,-0.5 0.4,-0.6 l -0.1,-1 -0.3,0.4 -0.2,0.2 c -0.2,0.5 -0.3,1 -0.4,1.5 l -0.1,0.8 c 0,0 -0.1,0 -0.1,-0.1 l -0.2,-0.8 -0.1,-0.3 0.1,-0.4 0.1,-0.8 0.2,-1.6 v 0.3 -1.4 c 0.06,-0.2 0.1,-0.3 0.2,-0.4 l 0.26,-0.5 c 0.2,-0.4 0.5,-0.6 0.8,-0.9 0.3,-0.2 0.6,-0.5 1,-0.6 l -0.08,-1 c -0.4,0.2 -0.7,0.4 -1,0.7 l -0.1,0.1 0.1,-0.2 0.1,-0.1 V 449 l -0.2,1 c 0,-1.3 0.1,-1 -0.16,-0.6 l -0.5,0.8 c -0.2,0.3 -0.4,0.7 -0.5,1 V 448 c 0.04,-0.03 0.1,-0.1 0.1,-0.2 l -0.1,-0.8 v -0.93 l -0.1,0.92 v 0.1 c -0.2,0.4 -0.3,0.8 -0.5,1.2 -0.3,0.9 -0.46,1.8 -0.5,2.7 l -0.26,-0.9 v -0.4 c 0,-0.6 0,-1.1 -0.1,-1.6 0,-0.3 0.1,-0.6 0.1,-0.9 0,-0.1 0.08,-0.3 0.1,-0.4 0.1,-0.5 0.3,-1 0.48,-1.6 l 0.3,-0.9 0.1,-0.3 v -1.1 l -0.1,0.9 v -0.8 0.3 l -0.3,0.9 c -0.1,0.5 -0.34,1 -0.5,1.6 0,0.1 0,0.2 -0.1,0.3 0,0.3 -0.1,0.7 -0.1,1 l -0.4,-1.7 0.2,-0.5 0.1,0.8 0.2,-0.8 c 0,-0.2 0.1,-0.7 0.2,-0.9 l 0.3,-1.4 c 0.3,-0.5 0.6,-0.9 0.9,-1.4 0.3,-0.4 0.6,-0.9 1,-1.4 l -0.1,-1 -0.5,0.9 -0.1,-0.7 -0.3,0.6 -0.04,-0.4 -0.2,0.6 v -0.8 l -0.18,1 v -0.9 l -0.1,0.2 -0.1,0.3 -0.4,1.1 c -0.3,0.8 -0.6,1.6 -0.8,2.5 0,0.2 -0.1,0.5 -0.1,0.7 v -2 c 0.1,-0.1 0.1,-0.2 0.1,-0.3 0.03,-0.1 0.1,-0.4 0.1,-0.5 v -1 l -0.1,0.9 v -0.8 l -0.07,0.2 c 0,0 0,0.1 -0.1,0.1 v -0.6 l -0.2,1 v 0.2 c -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.1,0.3 -0.2,0.6 -0.2,0.9 l -0.2,-1 c -0.1,-0.2 -0.1,-0.4 -0.1,-0.6 v -0.1 c 0.4,-1.2 0.9,-2.4 1.5,-3.5 l 0.34,-0.7 0.3,-0.5 v -0.6 l 0.3,-0.5 -0.1,-1 -0.6,1.4 c -0.3,0.6 -0.6,1.1 -0.9,1.7 l -0.5,0.9 c -0.3,0.6 -0.5,1.3 -0.8,1.9 l -0.1,-0.4 v -0.6 l 0.1,-0.6 -0.1,-0.3 c 0,-1.1 -0.1,-2.1 -0.1,-3.2 v -4.2 l -0.1,1 v 4.1 c 0,0.6 0.1,1.2 0.1,1.8 l -0.6,-1.6 c 0,-0.3 0,-0.7 0.1,-1.1 0.1,-0.4 0.1,-0.7 0.2,-1.1 l 0.2,-0.5 c 0,-0.1 0.1,-0.1 0.1,-0.2 l -0.2,-0.9 c -0.04,0.4 -0.2,0.8 -0.23,1.1 -0.1,0.4 -0.1,0.4 -0.1,0.8 -0.1,0.6 -0.1,1.1 -0.1,1.6 -0.1,-0.4 -0.3,-0.7 -0.43,-1.1 l -1,-2.6 c -0.2,-0.6 -0.4,-1.3 -0.5,-2 l -0.1,0.7 -0.43,-1 z m 3,7.97 c 0.12,0.33 0.25,0.66 0.36,1 0.1,0.27 0.1,0.32 0.12,0.4 V 440 c -0.16,-0.52 -0.3,-1.04 -0.48,-1.55 z m -0.22,0.4 c 0.25,0.8 0.5,1.6 0.72,2.4 v 0.1 l -0.25,-0.48 -0.1,-0.3 c -0.07,-0.3 -0.17,-0.5 -0.26,-0.7 0,-0.3 -0.1,-0.6 -0.1,-0.9 v -0.2 z m 2.24,0.33 c -0.26,0.66 -0.52,1.34 -0.76,2.02 0,0.04 -0.03,0.1 -0.04,0.13 0,-0.1 -0.03,-0.2 -0.04,-0.3 l 0.46,-1.13 z m -0.87,1.93 -0.1,0.72 c -0.03,-0.05 -0.06,-0.18 -0.08,-0.22 0,-0.17 0.1,-0.33 0.1,-0.5 z m 2.43,1.03 -0.05,0.16 -0.1,0.17 0.15,-0.4 z m -2.46,0.56 0.15,0.84 0.1,0.86 v 0.2 l -0.2,-0.48 c 0,-0.1 0,-0.2 -0.1,-0.32 l -0.2,-0.93 v -0.2 z m 2.14,0.2 -0.12,0.36 -0.3,0.93 -0.12,0.3 c 0.13,-0.4 0.28,-0.9 0.46,-1.3 l 0.08,-0.2 z m -1.25,0.55 v 2.26 l -0.26,-1.3 0.2,-0.75 0.06,-0.2 z m -1.52,0.03 0.1,0.13 v 0.3 -0.13 l 0.1,-0.3 z m 0.2,0.7 c 0.1,0.16 0.1,0.32 0.1,0.48 0,-0.1 -0.1,-0.18 -0.1,-0.27 l 0.1,-0.1 v -0.1 z m 0.4,0.36 0.1,0.3 v 0.18 -0.48 z m -0.8,0.1 0.1,0.1 v 0.26 l 0.1,-0.22 v 0.6 -0.74 z m 1.4,0.47 0.3,1.42 v 0.02 -0.38 c 0,-0.4 -0.1,-0.6 -0.2,-1 v -0.2 z m -1.1,0 0.6,0.96 c 0,0.1 0.1,0.3 0.1,0.4 -0.1,-0.1 -0.2,-0.2 -0.3,-0.4 l -0.2,-0.4 v -0.7 l 0.1,-0.2 z m -2,0.07 c 0.2,0.07 0.3,0.15 0.5,0.25 0.3,0.14 0.5,0.34 0.7,0.54 0.3,0.2 0.4,0.5 0.6,0.8 l 0.5,0.9 c 0.2,0.4 0.3,0.8 0.4,1.2 l 0.1,0.1 c -0.1,-0.4 -0.3,-0.7 -0.6,-1.1 l -1.8,-2.7 -0.1,-0.1 z m 3,1.7 0.2,0.34 v 0.02 l -0.1,-0.15 v -0.2 z m -0.5,0.4 0.3,0.32 0.1,0.53 V 448 l -0.2,-0.7 z m 1.2,0.38 c 0.2,0.75 0.4,1.5 0.5,2.26 v 0.16 l -0.1,-0.7 c -0.1,-0.45 -0.1,-0.72 -0.2,-1.16 v -0.53 z m -0.7,0.23 0.1,0.4 -0.1,0.3 v -0.6 z m 0.3,1 v 1.4 c 0,0.2 0.1,0.3 0,0.4 v -0.3 1.1 c -0.1,-0.1 -0.1,-0.3 -0.2,-0.5 v -0.6 c 0,0.1 0,0.1 0.1,0.2 l 0.1,-0.9 0.2,-0.4 z m 0.1,0.5 c 0,0.1 0.1,0.1 0.1,0.2 v 0.6 l 0.2,1 v -0.5 l 0.1,0.7 0.1,1.6 -0.3,-1 v -2.3 z m 2.3,0.2 v 0.8 l 0.1,2.2 v 1.3 l -0.3,0.9 c -0.3,0.6 -0.4,1.3 -0.5,2 l -0.1,-0.7 v -0.1 c 0,-0.5 0,-1 0.1,-1.4 0.1,0.3 0.2,0.7 0.2,1 v 0.4 l 0.2,-0.9 v -0.4 c 0,-0.4 -0.1,-0.8 -0.2,-1.2 0.1,-0.9 0.2,-1.7 0.5,-2.6 0.1,-0.3 0.3,-0.6 0.4,-0.9 z m -1.9,0.7 0.1,0.7 0.2,0.8 v 1.9 -0.2 c 0,-1 -0.1,-2 -0.2,-3 z m -1.1,0.8 0.2,0.4 v 0.2 c 0,-0.1 -0.1,-0.2 -0.1,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 z m 1.6,1.4 0.2,0.7 0.1,-0.5 0.2,0.9 v 1.7 c -0.2,-0.8 -0.3,-1.6 -0.4,-2.4 v -0.3 z m -1,1.7 z m 0.7,0.2 z m -0.5,0.1 c 0,0.1 0,0.1 0.1,0.2 v 0.1 l -0.1,-0.1 z m 0,1.6 0.4,0.7 0.2,0.5 v 0.2 c -0.2,-0.3 -0.4,-0.7 -0.6,-1 v -0.3 z m 2.3,0.1 -0.1,1.3 -0.1,0.9 -0.2,-0.4 v -0.4 c 0.1,-0.4 0.1,-0.9 0.2,-1.3 v 0.5 l 0.2,1 v -0.1 c 0,-0.3 0.1,-0.7 0.1,-1 l 0.1,-0.4 z m -1.6,1.3 0.2,0.4 -0.1,-0.3 v -0.1 z m 0.8,1 0.1,0.1 0.1,0.6 -0.1,-0.3 -0.1,-0.2 0.1,-0.2 z m -1.4,1.6 0.3,0.2 0.7,0.7 0.1,0.1 v 0.1 c 0,0.1 0.1,0.1 0.1,0.2 l 0.3,0.7 0.1,0.3 v 0.1 l 0.1,0.2 0.2,0.6 -0.7,-1.2 -0.5,-0.8 -0.2,-0.4 -0.2,-0.2 v -0.5 z m 2.6,3.2 0.3,0.5 0.1,0.3 v 0.2 l -0.4,-0.8 0.1,-0.1 z m -0.5,0.2 0.1,0.2 0.2,0.4 v 0.1 l -0.3,-0.4 z m 1.2,1.2 c 0.1,0.1 0.1,0.2 0.1,0.4 l -0.1,-0.3 0.1,-0.1 z m -0.6,0.2 0.3,1.3 0.1,0.2 -0.6,-0.2 v -0.9 c 0,0.1 0.1,0.1 0.1,0.2 v -0.3 l 0.1,0.4 0.1,-0.7 z m -0.9,0.2 c 0.1,0.1 0.2,0.2 0.3,0.4 l 0.1,0.1 0.1,0.2 c -0.1,-0.2 -0.3,-0.4 -0.4,-0.6 z m 0.5,0.5 0.1,0.1 0.1,0.2 v 0.2 l -0.1,-0.2 v -0.2 z m 1.3,0.8 0.1,0.1 v 0.1 -0.1 z m 0.4,0.3 0.1,0.3 h -0.1 v -0.2 z m -0.2,0.1 0.1,0.2 h -0.1 v -0.1 z m -0.1,1.2 v 0.1 z"
+		 id="path4653-3" />
+	</g>
   </g>
 </svg>
diff --git a/resources/vector/hair/underArm bushy right.svg b/resources/vector/hair/underArm bushy right.svg
index 049aac903c8b222d56892487e549bac38886630a..8337a85a5053a5e64d6deca5c527d30890c62d57 100644
--- a/resources/vector/hair/underArm bushy right.svg	
+++ b/resources/vector/hair/underArm bushy right.svg	
@@ -13,82 +13,82 @@
    sodipodi:docname="underArm bushy right.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
   <metadata
-     id="metadata4148">
-    <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>
+	 id="metadata4148">
+	<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="defs4146" />
+	 id="defs4146" />
   <sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1680"
-     inkscape:window-height="987"
-     id="namedview4144"
-     showgrid="false"
-     inkscape:zoom="0.788"
-     inkscape:cx="500"
-     inkscape:cy="630.24332"
-     inkscape:window-x="-8"
-     inkscape:window-y="-8"
-     inkscape:window-maximized="1"
-     inkscape:current-layer="layer13"
-     inkscape:snap-global="false" />
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1680"
+	 inkscape:window-height="987"
+	 id="namedview4144"
+	 showgrid="false"
+	 inkscape:zoom="0.788"
+	 inkscape:cx="500"
+	 inkscape:cy="630.24332"
+	 inkscape:window-x="-8"
+	 inkscape:window-y="-8"
+	 inkscape:window-maximized="1"
+	 inkscape:current-layer="layer13"
+	 inkscape:snap-global="false" />
   <style
-     id="style2">.st0{fill:#010101;} .st1{fill:#F6E0E8;}</style>
+	 id="style2">.st0{fill:#010101;} .st1{fill:#F6E0E8;}</style>
   <style
-     id="style4208"
-     type="text/css">
+	 id="style4208"
+	 type="text/css">
 	.st0{fill:#010101;}
 	.st1{fill:#F6E0E8;}
 </style>
   <g
-     inkscape:groupmode="layer"
-     id="layer14"
-     inkscape:label="Layer 3">
-    <g
-       transform="matrix(0.32825958,0.34029125,-0.21729162,0.51740458,407.60151,-162.98551)"
-       style="stroke-width:0.1;stroke-linecap:round"
-       id="layer2-4-3"
-       inkscape:transform-center-x="5.1605772"
-       inkscape:transform-center-y="-2.3165394">
-      <path
-         style="fill:#9497a2"
-         inkscape:connector-curvature="0"
-         d="m 495.4,468.64 -1.5,1.78 -0.37,-2.72 -2.7,1.5 -1.6,-3.65 -4.5,-1.97 -2.25,-3.18 5.53,2.25 -5.5,-4.4 2.2,-0.38 -3.9,-3 -3.2,-4.3 5.4,3 -4.9,-6.47 4.4,1.78 -3.8,-7.86 2.6,2.34 -4.31,-6.36 5.06,2 -2.2,-3.9 -3.5,-3.2 4.2,1.1 -3.86,-8.6 -0.63,-5.4 4.2,10.3 -0.32,-9.9 3,10.2 2.64,-10.5 0.8,6.2 0.2,5.5 7.1,-10.2 -3,6.95 6.3,-3.4 -5.5,5.1 -2.9,3 11.2,-4 -4.7,4.1 8.2,-1.9 -10.7,5 8.4,1.02 -6.5,3.72 5.6,-0.1 -5.3,3.1 3.7,1.4 -4.4,1.7 6.4,-1.4 2.1,-2.1 -4.8,5.2 4.3,-1.2 -7,5.9 5.4,-2 -4.2,4.2 -2.9,3.7 6,-2.1 -3.3,5 5.5,-0.8 -5,2.3 3.2,1.8 -3.8,0.3 2.5,3.6 z"
-         id="path4488-3-1" />
-      <path
-         style="fill:#b4b3b7"
-         inkscape:connector-curvature="0"
-         d="m 485.05,423.03 z m 0,0 -0.16,0.97 v 1.05 c -0.1,0.42 0,0.83 0.1,1.24 0.1,0.4 0.1,0.3 0.1,0.8 0,0.4 0.1,0.9 0.1,1.3 -0.1,-0.4 -0.1,-0.7 -0.1,-1.1 l -0.9,0.4 c 0,0.3 0.1,0.7 0.1,1 l 0.3,1.4 c 0.1,0.3 0.1,0.7 0.2,1.1 l 0.4,-0.3 v 0.2 -0.3 l 0.3,-0.2 c 0,-0.4 -0.1,-0.8 -0.2,-1.1 0,-0.1 0,-0.2 -0.1,-0.3 0,-0.3 -0.1,-0.6 -0.1,-0.8 0,-0.9 -0.1,-1.8 -0.2,-2.6 0,-0.2 0,-0.3 -0.1,-0.4 -0.1,-0.6 -0.3,-1.1 -0.2,-1.7 v -1 z m -8.48,0.45 -0.12,0.98 c 0.1,0.33 0.27,0.65 0.4,0.97 0.2,0.44 0.35,0.88 0.5,1.33 0.16,0.46 0.2,0.94 0.3,1.4 0.12,0.46 0.2,0.92 0.3,1.37 0.04,0.24 0.13,0.47 0.24,0.7 l 0.1,-0.96 c -0.1,-0.18 -0.2,-0.38 -0.2,-0.58 0,0 0.1,0.1 0.1,0.2 l 0.6,1.3 0.5,1.2 v 0.1 c 0.1,0.3 -0.1,-0.1 0.1,0.3 l 0.2,0.4 0.1,0.2 -1.2,-0.6 c -0.6,-0.2 -1.1,-0.4 -1.7,-0.6 -0.3,-0.1 -0.6,-0.1 -0.8,-0.1 v 1 c 0.2,-0.1 0.5,0 0.8,0 l 1.2,0.3 v 0.4 c 0.2,-0.1 0.5,0 0.7,0.1 l 0.3,0.1 -0.2,0.1 1,1 c 0.4,0.3 0.9,0.7 1.4,1.1 0.2,0.1 0.1,0 0.2,0.2 l 0.4,-0.2 c 0.1,0.1 0.3,0.3 0.4,0.5 0.2,0.3 0.5,0.5 0.7,0.8 l 0.5,0.6 0.4,0.6 c 0.2,0.3 0.5,0.6 0.7,0.9 l 0.7,0.8 0.8,-0.5 -0.7,-0.9 c -0.2,-0.3 -0.5,-0.6 -0.7,-1 l -0.5,-0.7 -0.6,-0.6 -0.7,-0.8 -0.7,-0.7 c -0.2,-0.1 -0.4,-0.2 -0.6,-0.2 l -0.2,0.1 -0.6,-0.5 0.1,-0.4 c 0.6,0.2 1.3,0.5 1.9,0.7 0.3,0.1 0.6,0.3 0.8,0.4 l 0.3,0.2 c 0.2,0.3 0.3,0.5 0.5,0.8 l 0.8,-0.4 c -0.2,-0.4 -0.4,-0.7 -0.5,-1.1 -0.1,-0.4 -0.3,-0.7 -0.6,-0.9 l 0.4,-0.2 c -0.2,-0.4 -0.4,-0.7 -0.6,-1 -0.5,-0.7 -0.9,-1.3 -1.4,-1.9 l -0.4,-0.4 0.3,-0.9 0.7,-2.3 c 0.2,-0.4 0.4,-0.9 0.5,-1.4 l -0.1,-0.9 c -0.1,0.5 -0.3,1 -0.5,1.5 -0.2,0.8 -0.5,1.5 -0.7,2.3 -0.1,0.2 -0.1,0.4 -0.2,0.6 v -0.3 c -0.1,-0.3 -0.2,-0.6 -0.4,-0.8 l -0.5,-0.9 -0.6,-0.9 c -0.2,-0.3 -0.4,-0.6 -0.4,-0.9 l -0.1,-0.2 c 0.1,-0.2 0.1,-0.4 0.2,-0.6 l -0.1,-1 c -0.2,0.2 -0.2,0.5 -0.3,0.7 -0.1,0.5 -0.1,1 0,1.5 v 0.4 c 0.2,0.3 0.4,0.8 0.5,1.2 l 0.6,1.6 c 0.1,0.1 0.1,0.3 0.2,0.5 l -0.7,0.4 c 0.4,0.3 0.7,0.7 1.1,1 l 0.1,0.1 v 0.7 c -0.4,-0.3 -0.8,-0.6 -1.1,-1 l -0.9,0.5 c 0.4,0.4 0.9,0.7 1.4,1.1 0.6,0.4 1.2,0.8 1.8,1.3 -0.8,-0.3 -1.6,-0.6 -2.5,-1 l -0.8,-0.3 v -0.7 c -0.1,-0.2 -0.2,-0.4 -0.4,-0.7 l -0.3,-0.9 -0.6,-1.2 -0.7,-1.3 c -0.2,-0.3 -0.3,-0.6 -0.4,-0.9 l -0.1,0.4 v -0.2 c -0.1,-0.5 -0.1,-1 -0.3,-1.4 -0.1,-0.5 -0.3,-0.9 -0.5,-1.4 -0.1,-0.3 -0.3,-0.6 -0.4,-1 z m 13.57,1.1 -0.15,0.95 c 0,-0.2 0,-0.42 -0.1,-0.64 l -0.1,0.2 -0.2,0.9 c -0.2,0.7 -0.5,1.5 -0.7,2.2 -0.3,0.2 -0.5,0.5 -0.7,0.8 -0.1,0.1 -0.2,0.3 -0.3,0.5 -0.1,0.1 -0.2,0.1 -0.2,0.2 -0.5,0.4 -0.9,0.9 -1.2,1.5 -0.2,0.3 -0.3,0.7 -0.4,1.1 v 0.1 l 0.9,-0.4 v -0.1 c 0,-0.4 0.2,-0.8 0.4,-1.1 0.1,-0.3 0.3,-0.6 0.6,-0.9 v 0.5 -0.2 l 0.1,0.7 c 0,-0.1 0.1,-0.3 0.1,-0.4 l 0.6,-1.6 v -0.1 l 0.1,-0.2 c 0.4,-0.3 0.8,-0.6 1.3,-0.9 0.5,-0.3 1,-0.6 1.7,-0.6 h 0.8 v -1 h -0.8 c -0.7,0 -1.2,0.3 -1.8,0.6 l -1,0.6 0.3,-1 c 0.1,-0.4 0.2,-0.7 0.2,-1 v -1.5 z m -8.2,4.34 0.22,0.4 c 0.12,0.18 0.2,0.4 0.25,0.6 l -0.2,-0.4 -0.2,-0.6 z m 2.34,0.4 -0.87,0.45 0.2,0.84 0.2,0.5 0.9,-0.4 -0.1,-0.4 c 0,-0.3 -0.1,-0.5 -0.1,-0.8 z m 11.02,1.14 c -0.43,0.1 -0.85,0.23 -1.27,0.37 -0.53,0.2 -1.05,0.42 -1.55,0.68 l -0.42,0.2 -1.28,0.6 -0.6,0.3 -0.23,0.2 -0.1,0.1 c -0.23,0.2 -0.46,0.3 -0.7,0.5 l 0.53,-0.2 -0.1,0.2 -0.06,0.2 v 0.1 c -0.4,0.2 -0.8,0.4 -1.2,0.7 l 0.9,-0.3 c -1.5,0.9 -0.42,0.2 -0.05,0.1 l 0.2,-0.1 -0.2,0.2 c -0.17,0.2 -0.32,0.4 -0.44,0.6 l 0.9,-0.4 v 0.2 l 0.08,-0.2 0.2,-0.2 0.8,-0.4 0.9,-0.5 v 0.1 l 0.2,-0.1 -0.2,0.2 -0.2,0.2 c -0.2,0.2 -0.5,0.5 -0.8,0.7 0,0.1 0,0.1 -0.1,0.1 v -0.2 l -0.3,0.5 -0.1,0.6 c 0,0.3 -0.1,0.5 -0.2,0.8 l -0.1,0.3 0.1,1 0.2,-0.3 c 0.1,-0.2 0.2,-0.4 0.2,-0.7 0.1,-0.2 0.2,-0.3 0.2,-0.6 0.1,-0.1 0.2,-0.3 0.3,-0.4 v -0.6 l 0.2,-0.1 h 0.1 v 0.1 l 0.9,-0.4 c 0,0 0.1,-0.1 0.1,-0.2 1.1,-0.6 1.2,-0.7 2.2,-1.2 0.7,-0.4 1.4,-0.7 2.1,-1 0.5,-0.1 0.8,-0.3 1.2,-0.6 v -0.1 h -0.1 c 0.1,0 0,0 0,0 h -0.1 l 0.1,-0.1 -0.5,0.2 -0.9,0.3 v -0.6 h 0.1 -0.1 z m -0.53,1.22 c -0.14,0.06 -0.3,0.12 -0.42,0.2 l -0.33,0.18 0.3,-0.23 z m -12.28,0.03 0.9,1.3 -1,-0.6 v -0.3 l -0.1,-0.1 v -0.1 z m 10.8,0.7 -1.7,1 0.4,-0.4 0.4,-0.3 h 0.1 l 0.6,-0.2 z m 0.9,3.7 h -0.7 c -0.3,0.1 -0.7,0.1 -1,0.1 -0.5,0 -0.9,0.1 -1.3,0.2 -0.3,0.1 -0.5,0.1 -0.8,0.2 l -0.1,0.1 -0.8,0.6 c 0.2,-0.1 0.4,-0.2 0.7,-0.2 0.4,-0.1 0.8,-0.1 1.2,-0.2 h 1.6 z m -0.5,0.6 -0.6,0.2 c -0.3,0.1 -0.6,0.1 -0.8,0.2 -0.1,0 -0.1,0.1 -0.1,0.1 0,0 -0.1,0 -0.1,0.1 h -0.5 c -0.3,0 -0.5,0 -0.7,0.1 l -0.6,0.3 c -0.2,0.1 -0.4,0.2 -0.4,0.5 l 0.1,0.1 -0.5,0.3 0.5,-0.2 -0.3,0.2 0.4,-0.2 h 0.1 l -0.1,0.1 0.2,-0.1 -0.1,0.1 -0.3,0.3 -0.1,0.1 0.9,-0.4 v -0.1 h 0.1 l -0.8,0.4 c 0,0.1 -0.2,0.4 -0.2,0.5 l 0.1,0.1 0.1,0.1 c 0.1,0.1 0.3,0 0.4,0 l -0.1,0.1 c -0.4,0.3 -0.7,0.6 -1.1,1 l -0.7,1 v 0.1 c 0,0.2 0.3,0.1 0.5,-0.1 l -0.2,0.4 0.9,-0.4 c 0.1,-0.2 0.1,-0.4 0.3,-0.6 l 0.2,-0.3 v 0.7 c 0,0.1 0.1,0.1 0.1,0 v -0.1 l 0.1,-0.1 c 0.1,-0.2 0.3,-0.3 0.4,-0.5 v 0.1 l 0.2,-0.2 c 0.3,-0.3 0.8,-0.6 1.2,-0.9 0.5,-0.3 1,-0.6 1.6,-0.8 0.1,-0.1 0.4,-0.2 0.5,-0.2 h 0.2 v -0.2 h 1.2 l 0.8,-0.5 h -0.9 l 0.3,-0.2 -0.1,-0.1 h -0.2 v 0.1 l 0.1,-0.1 -1.2,0.1 h -0.6 v -0.2 c -0.3,0.1 -0.7,0.1 -1.1,0.1 z m -16.2,1 v 1 h 0.8 c 0.4,0 0.8,0.1 1.1,0.3 l -0.4,0.3 c 0.2,0 0.5,0 0.8,0.1 0.3,0.1 0.6,0.4 0.8,0.6 l 0.4,0.5 -0.2,0.2 0.4,0.5 -0.4,0.3 c 0.2,0 0.3,0 0.5,0.1 l 0.9,1.3 0.9,1.5 0.2,0.5 0.8,-0.4 -0.3,-0.5 c -0.3,-0.4 -0.5,-0.8 -0.8,-1.2 l 1.4,1 0.6,0.6 0.8,-0.5 -0.6,-0.5 c -0.5,-0.3 -1.1,-0.6 -1.6,-1 -0.5,-0.3 -1,-0.7 -1.5,-0.9 -0.1,0 -0.2,-0.1 -0.3,-0.1 v -0.1 l -0.3,-0.4 0.7,0.5 c 0.3,0.2 0.6,0.3 0.9,0.5 l 0.4,0.3 c 0.4,0.3 0.8,0.5 1.2,0.8 l 0.8,0.6 0.1,-0.9 -0.9,-0.6 -1.3,-0.8 c -0.4,-0.2 -0.9,-0.4 -1.3,-0.7 -0.4,-0.2 -0.7,-0.4 -1,-0.6 v 0.5 l -0.2,-0.2 c -0.3,-0.2 -0.6,-0.5 -0.9,-0.6 l -0.2,-0.1 v -0.2 c -0.2,-0.2 -0.5,-0.3 -0.7,-0.4 -0.2,-0.1 -0.4,-0.2 -0.5,-0.2 -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 h -0.8 z m 15.9,0.1 -0.1,0.1 -0.3,0.1 h -0.3 c 0.2,0 0.4,-0.1 0.6,-0.1 z m -3.1,0.2 h -0.1 z m 1.2,0 z m -0.1,0.2 c 0,0.1 -0.1,0.1 -0.1,0.2 l -0.1,0.1 c 0,0.1 -0.1,0.1 -0.1,0.1 l 0.1,-0.3 z m 5.3,2.6 c -0.6,0.2 -1.2,0.4 -1.7,0.7 h -0.1 c 0.1,-0.1 0.3,-0.2 0.2,-0.4 l -0.1,-0.1 h -0.1 l -0.6,0.2 c -0.2,0 -0.4,0.1 -0.5,0.2 -0.4,0.3 -0.9,0.5 -1.3,0.8 -0.2,0.2 -0.4,0.5 -0.6,0.7 -0.1,0.2 -0.2,0.4 -0.4,0.6 l 0.7,-0.3 c -0.2,0.2 -0.3,0.4 -0.4,0.6 l -0.1,0.1 -0.8,0.6 0.2,-0.1 c 0.1,-0.1 0.2,-0.2 0.4,-0.2 l -0.1,0.2 h -0.1 l -0.2,0.3 c -0.1,0.1 -0.3,0.4 -0.4,0.5 l -0.3,0.5 c 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.2 -0.3,0.7 -0.3,1 v 0.1 l 0.1,0.1 c 0.4,-0.3 0.8,-0.4 1.1,-0.7 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.3 0.2,-0.4 l 0.2,-0.5 0.4,-0.6 c 0.2,-0.4 0.5,-0.7 0.7,-1.1 v -0.1 l 0.2,-0.1 0.8,-0.4 c 0.6,-0.3 1.2,-0.5 1.7,-0.9 v -0.1 h -0.1 c -0.2,0 -0.3,0.1 -0.5,0.1 h -0.3 c -0.4,0.1 -0.8,0.6 -1.1,0.6 h -0.1 l 0.4,-0.4 1.6,-0.6 z m -2.4,0.8 -0.1,0.1 -0.3,0.3 -0.7,0.4 -0.5,0.3 0.2,-0.3 0.3,-0.4 c 0,0 0.1,0 0.1,-0.1 l 0.2,-0.1 c 0.2,0 0.4,-0.2 0.7,-0.2 z m 0.5,0.7 -0.6,0.3 -0.6,0.3 0.2,-0.1 0.4,-0.3 0.2,-0.1 h 0.4 z m -15.9,0.3 -0.1,1 0.6,0.3 1,0.7 c 0.1,0.1 0.2,0.1 0.3,0.2 l -0.3,0.2 c 0.2,0.2 0.5,0.3 0.9,0.4 0.1,0.1 0.3,0.1 0.5,0.2 l 0.5,0.5 c 0.1,0.2 0.2,0.3 0.3,0.5 l 0.1,-0.9 c 0.2,0.1 0.5,0.2 0.7,0.4 l 0.2,0.2 v 0.1 c 0.2,0.4 0.3,0.7 0.4,1.1 -0.3,-0.1 -0.6,-0.2 -0.9,-0.4 l -0.8,0.6 c 0.3,0.1 0.7,0.3 1,0.4 0.4,0.2 0.9,0.5 1.3,0.7 0.2,0.4 0.3,0.7 0.6,1 l 0.6,0.5 0.8,-0.5 h -0.1 l 0.3,-0.2 c -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.3,-0.3 -0.7,-0.7 -1.1,-0.9 -0.1,0 -0.1,0 -0.2,-0.1 l -0.2,-0.3 -0.2,-0.3 c -0.2,-0.3 -0.2,-0.4 -0.3,-0.7 l 0.1,0.1 0.6,0.5 0.8,-0.5 -0.7,-0.5 c -0.3,-0.2 -0.5,-0.3 -0.8,-0.4 l -0.6,-0.3 v -0.1 l -0.1,-0.1 -0.2,-0.3 -0.3,-0.6 -0.7,0.5 c -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.2,-0.1 -0.5,-0.2 -0.7,-0.2 l -0.2,0.1 -0.5,-0.3 c -0.4,-0.3 -0.8,-0.5 -1.2,-0.8 l -1,-0.7 -0.6,-0.3 z m 17,1.5 c -0.3,0.1 -0.6,0.1 -0.9,0.2 l -0.3,0.1 h -0.4 c -0.2,0 -0.4,0 -0.6,0.1 -0.2,0.1 -0.3,0.2 -0.4,0.2 l -0.3,0.3 -0.1,0.2 c -0.7,0.4 -1.3,0.8 -2,1.3 l 0.9,-0.3 c 0.3,-0.2 0.6,-0.4 0.8,-0.5 h 0.1 l 0.2,-0.1 v 0.2 c 0,0.1 0,0.2 -0.1,0.3 v 0.1 l -1,0.7 c -0.4,0.3 -0.8,0.6 -1.1,1 -0.2,0.3 -0.4,0.6 -0.5,0.8 l 0.1,1 c 0.1,-0.3 0.2,-0.6 0.4,-0.8 0.3,-0.4 0.7,-0.7 1.1,-1 0.4,-0.3 0.8,-0.5 1.2,-0.7 v -0.2 l 0.2,-0.6 c 0,-0.1 0,-0.2 0.1,-0.2 0.1,0 0.2,-0.1 0.4,-0.2 0.2,-0.1 0.3,-0.1 0.5,-0.1 h 2.2 v -1 h -0.8 l 0.3,-0.2 h -0.2 z m 2.3,2.3 c -0.3,0.2 -0.7,0.2 -1,0.3 l 0.1,-0.1 c -0.4,0.1 -0.7,0.1 -1.1,0.1 -0.5,0 -0.9,0.1 -1.3,0.3 -0.5,0.3 -1,0.5 -1.3,0.9 l -0.2,0.2 -0.2,0.1 c -0.5,0.3 -0.8,0.8 -1.2,1.3 -0.3,0.4 -0.5,0.8 -0.8,1.2 l 0.8,-0.4 0.5,-0.8 v 0.1 l 0.9,-0.4 v -0.2 c 0.1,-0.3 0.2,-0.5 0.4,-0.8 h 0.3 -0.1 l 0.1,0.9 0.2,-0.3 c 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.2 0.4,-0.2 0.5,-0.3 0.5,-0.2 1,-0.3 1.5,-0.4 0.5,-0.1 0.9,-0.1 1.3,-0.2 z m -3.3,0.9 c -0.1,0 -0.1,0 -0.1,0.1 h -0.4 c 0,-0.1 0,-0.1 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.1 z m 2.7,1 h -0.1 l -0.3,0.1 -0.7,0.2 c -0.4,0.1 -0.8,0.2 -1.1,0.4 l -0.7,0.2 -0.7,0.4 -0.4,0.2 -0.4,0.2 -0.1,-0.9 c -0.3,0.1 -0.5,0.3 -0.7,0.5 -0.4,0.4 -0.6,0.8 -0.9,1.3 l -0.2,0.5 -0.1,0.1 c -0.1,0.1 -0.2,0.2 -0.3,0.4 l 0.1,-0.1 -0.1,0.1 v 0.4 c -0.1,0.1 0,0.1 -0.1,0.2 l 0.1,-0.1 v 0.3 l 0.2,-0.5 0.5,-0.2 0.1,-0.1 0.6,-0.6 c 0.1,-0.1 0.2,-0.3 0.4,-0.4 l 0.2,-0.1 0.2,-0.1 1.5,-0.6 1.8,-0.6 c 0.4,0 0.7,-0.1 1.1,-0.1 v -1 c -0.4,0 -0.8,0.2 -1.1,0.2 l -0.3,0.1 z m -16.6,0.3 -0.8,0.5 c 0.3,0 0.5,0.2 0.7,0.3 l 0.9,0.6 0.8,0.6 -0.6,0.4 h 0.4 l -0.2,0.2 0.6,0.4 0.8,0.5 c 0,0.3 0.1,0.5 0.3,0.7 0.3,0.6 -0.1,-0.1 0.3,0.6 0.3,0.6 0.7,1.2 1.1,1.8 l -0.3,-0.2 -0.6,-0.2 c -0.4,-0.1 -0.7,-0.3 -1,-0.5 l -1.3,-0.8 c -0.3,-0.2 -0.6,-0.3 -0.9,-0.5 l -0.4,0.3 v -0.9 l -0.2,-0.1 c -0.4,-0.2 -0.8,-0.4 -1.3,-0.5 l -0.7,-0.3 -0.1,1 0.7,0.3 c 0.5,0.1 0.8,0.3 1.2,0.5 l 0.2,0.1 -0.4,0.3 c 0.3,0.1 0.6,0.3 0.9,0.5 l 1.3,0.8 c 0.3,0.2 0.6,0.4 0.9,0.5 0.2,0.1 0.3,0.2 0.5,0.3 l 0.2,0.3 0.8,-0.5 0.1,0.1 c 0.2,0.5 0.5,0.9 0.8,1.3 l 0.2,0.3 0.8,-0.5 -0.2,-0.2 c -0.3,-0.4 -0.6,-0.8 -0.9,-1.3 l -1,-1.7 0.6,0.3 c 0.4,0.2 0.7,0.5 1,0.8 0.3,0.4 0.5,0.8 0.7,1.2 l 0.3,0.9 0.8,-0.4 -0.3,-0.9 c 0,-0.2 -0.1,-0.3 -0.2,-0.5 v -0.1 l 0.4,-0.2 c -0.2,-0.2 -0.5,-0.4 -0.7,-0.7 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 l -0.7,-0.6 c -0.3,-0.2 -0.5,-0.5 -0.8,-0.7 v -0.1 l -0.2,-0.1 -0.4,-0.3 -1.1,-0.6 c -0.3,-0.2 -0.5,-0.3 -0.8,-0.5 l -1.1,-0.8 c -0.3,-0.2 -0.6,-0.5 -0.9,-0.6 l -0.8,-0.3 z m 11.3,2.6 v 0.3 c -0.1,0.1 -0.2,0.1 -0.4,0.2 l -0.2,0.1 v -0.1 l 0.2,-0.3 0.2,-0.3 z m 3.8,1.2 -0.9,0.4 c -0.3,0.2 -0.6,0.4 -0.8,0.6 -0.3,0.2 -0.5,0.4 -0.7,0.6 l -0.8,0.4 c -0.4,0.3 -0.7,0.6 -1,0.9 -0.2,0.2 -0.3,0.5 -0.4,0.7 l 0.6,-0.2 v 0.1 c -0.2,0.3 -0.3,0.7 -0.4,1.1 l -0.6,0.4 c -0.5,0.4 -1,0.8 -1.5,1.3 l 0.9,-0.3 c 0.4,-0.4 0.8,-0.7 1.3,-1.1 v 0.5 c -0.2,0.3 -0.4,0.7 -0.5,1.1 l 0.8,-0.4 c 0.1,-0.4 0.3,-0.8 0.5,-1.1 v 0.1 c 0,0.3 -0.1,0.6 -0.1,0.8 v 0.1 l 0.8,-0.4 c 0,-0.3 0.1,-0.6 0.1,-0.8 0.1,-0.3 0.1,-0.6 0.2,-0.9 l 0.2,-0.2 c 0.4,-0.1 0.7,-0.2 1.1,-0.2 l 0.8,-0.6 c -0.5,0.1 -1,0.2 -1.4,0.3 0.3,-0.2 0.6,-0.5 0.9,-0.7 0.6,-0.3 0.6,-0.3 0.9,-0.5 l -0.9,0.4 c -0.1,0 -0.1,0.1 -0.1,0.1 l 0.7,-0.4 -0.1,0.1 c -0.1,0 -0.1,0.1 -0.2,0.1 l -1.1,0.6 c -0.1,0.1 -0.1,0.1 -0.2,0.1 -0.2,0.1 -0.3,0.3 -0.5,0.4 l -0.2,0.2 0.1,-0.4 1.3,-0.9 c 0.4,-0.2 0.8,-0.4 1.3,-0.6 0.3,-0.1 0.5,-0.1 0.8,-0.2 v -1 l -0.8,0.3 c -0.4,0.1 -0.7,0.3 -1.1,0.5 l -0.5,0.2 0.5,-0.4 0.9,-0.7 z m -11,0.5 z m 8.3,1.5 -0.2,0.2 c -0.2,0.1 -0.4,0.3 -0.6,0.5 0,-0.1 0,-0.1 0.1,-0.1 0.2,-0.3 0.4,-0.5 0.6,-0.6 z m -0.6,1.7 c 0,0.1 -0.1,0.2 -0.1,0.2 l -0.3,0.2 v -0.1 l 0.3,-0.3 z m -0.1,0.4 c 0,0.1 0,0.1 -0.1,0.1 -0.3,0.2 -0.5,0.4 -0.6,0.7 l -0.2,0.2 c 0,-0.2 0.1,-0.4 0.2,-0.6 v -0.1 c 0.1,0 0.3,-0.1 0.4,-0.2 z m -8,1.4 -0.7,0.1 v 1.3 h 0.7 c 0.3,0 0.6,0.1 0.8,0.1 v -0.2 l 1.1,0.6 c 0.4,0.3 0.7,0.7 0.9,1.1 l 0.8,-0.5 c -0.3,-0.5 -0.6,-0.9 -1,-1.2 -0.4,-0.3 -0.9,-0.6 -1.3,-0.8 -0.3,-0.2 -0.5,-0.3 -0.8,-0.3 l -0.2,0.1 -0.5,-0.1 h -0.1 z m 12,0 -1.4,1 -0.8,0.5 0.1,-0.1 0.2,-0.2 c 0.2,-0.2 0.2,-0.2 -0.1,0 l 0.7,-0.6 c -0.6,0.2 -1.2,0.6 -1.7,1 -0.3,0.2 -0.6,0.6 -0.8,0.9 -0.2,0.1 -0.4,0.3 -0.5,0.5 v 0.3 l -0.2,0.5 v 0.1 l 0.3,-0.2 v 0.1 l 0.1,-0.1 0.6,-0.2 v -0.1 l 0.1,-0.4 c 0.2,-0.1 0.3,-0.2 0.6,-0.4 0.5,-0.3 1,-0.6 1.5,-1 0.5,-0.3 0.9,-0.6 1.4,-0.9 z m -1.1,2.8 -0.9,0.6 -0.3,0.3 -0.6,0.7 c -0.5,0.6 -0.9,1.2 -1.2,1.8 -0.1,0.2 -0.3,0.4 -0.4,0.6 l 0.8,-0.4 0.1,-0.1 v 0.3 l -0.5,0.3 v 0.1 c 0,0 0.2,-0.1 0.3,-0.1 v -0.1 l 0.1,-0.1 0.9,-0.6 0.1,-0.1 c 0.1,-0.1 0.3,-0.2 0.4,-0.2 0.4,-0.2 0.9,-0.3 1.3,-0.3 v -0.3 l 0.5,-0.4 -0.2,0.1 0.7,-0.6 -0.9,0.5 v -0.3 c -0.5,0.1 -1,0.2 -1.5,0.4 -0.4,0.1 -0.7,0.2 -1,0.4 0.3,-0.5 0.6,-1 1,-1.5 l 0.6,-0.7 c 0.3,-0.2 0.9,-0.6 -0.5,0.2 z m -10.6,1.4 c -0.2,0 -0.4,0 -0.5,0.1 l -0.8,0.6 h 1.3 c 0.3,0.1 0.6,0.1 0.9,0.2 l 1,0.4 0.5,0.2 h -0.5 c -0.3,0 -0.6,-0.1 -0.9,-0.1 l -0.8,0.6 0.9,0.2 0.6,0.1 -0.3,0.2 h 0.5 c 0.1,0 0.3,0.1 0.4,0.1 l 0.2,-0.1 c 0.4,0.1 0.8,0.2 1.2,0.5 l 0.2,0.2 h 0.1 l -0.1,0.5 v 1.6 l 0.1,-0.9 v -0.5 c 0.1,-0.2 0.1,-0.4 0.2,-0.5 v -0.4 l 0.4,-0.3 -0.2,-0.1 -0.3,-0.1 v -0.1 0.1 c -0.4,-0.2 -0.7,-0.3 -1,-0.4 l -0.6,-0.1 0.6,-0.3 c -0.1,-0.1 -0.2,-0.1 -0.2,-0.2 l -0.7,-0.3 -1.1,-0.4 c -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 h -0.8 z"
-         id="path4490-5-3" />
-      <path
-         style="fill:#525767"
-         inkscape:connector-curvature="0"
-         d="m 484.52,430.5 -0.12,0.97 c 0.3,0.55 0.57,1.1 0.84,1.66 0.1,0.18 0.17,0.37 0.26,0.56 l 0.15,0.4 c 0.5,1.4 1.03,2.9 1.5,4.3 v 1.1 l -0.3,-0.9 c -0.1,-0.2 -0.18,-0.4 -0.26,-0.6 l -0.5,-1 -0.5,-0.8 -0.1,-0.2 -0.1,0.3 -0.5,-0.9 c -0.4,-0.7 -0.8,-1.4 -1.2,-2 l -0.5,-0.6 c -0.2,-0.3 -0.5,-0.5 -0.7,-0.7 l -0.1,0.9 c 0.4,0.3 0.8,0.8 1.1,1.2 0.4,0.6 0.8,1.3 1.1,1.9 v 0.1 l -0.1,-0.1 -0.1,0.9 c 0.5,0.6 0.9,1.3 1.4,2 l 0.9,1.4 0.6,1.9 v 0.9 l -0.1,-0.1 c 0,-0.1 0,-0.1 -0.1,-0.1 v -0.5 c -0.1,-0.3 -0.1,-0.7 -0.2,-1 l -0.2,1 c -0.7,-1.2 -1.5,-2.3 -2.2,-3.4 -0.5,-0.7 -1,-1.4 -1.4,-2.1 l -0.1,0.9 1.3,1.9 c 0.6,0.8 1.1,1.7 1.7,2.5 l 0.7,1.2 v 0.7 l -0.7,-1.1 -0.9,-1.8 c -0.2,-0.4 -0.3,-0.6 -0.6,-1 l -0.3,-0.5 -1.1,-1.7 -0.1,0.9 c 0.4,0.5 0.8,1.1 1.2,1.6 l 0.3,0.4 0.6,1 0.9,1.6 -0.3,-0.2 c -0.2,-0.1 -0.4,-0.3 -0.6,-0.3 v 0.8 l -1.1,-1.7 -0.1,1 1.2,1.8 c 0.6,0.9 1.3,1.8 1.9,2.7 l 0.5,0.9 -0.1,0.6 0.1,0.2 -0.1,0.4 c -0.5,-0.8 -1,-1.5 -1.4,-2.3 -0.4,-0.7 -0.8,-1.4 -0.9,-2.2 l -0.2,0.9 c 0.1,0.7 0.6,1.4 0.9,2.1 l 1.5,2.5 0.3,0.4 c -0.3,-0.4 -0.6,-0.7 -1,-1 l -0.2,-0.3 c -0.3,-0.6 -0.7,-1.1 -1,-1.7 l -0.1,0.7 -0.1,-0.2 c -0.3,-0.6 -0.7,-1.1 -1,-1.7 l -0.1,0.9 1,1.5 v 0.1 l -0.3,-0.3 c -0.3,-0.2 -0.6,-0.4 -0.9,-0.7 l -0.1,1 0.9,0.6 c 0.2,0.2 0.5,0.3 0.7,0.5 0.3,0.3 0.6,0.6 0.9,1 0.6,0.7 1.1,1.5 1.6,2.3 v 0.3 l -0.3,-0.5 c -0.3,-0.4 -0.6,-0.7 -1,-1 l -0.5,-0.4 c -0.1,0 -0.1,0 -0.2,-0.1 v 1 l 0.1,0.1 c 0.2,0.1 0.3,0.1 0.4,0.3 0.3,0.2 0.5,0.4 0.7,0.7 v 0.6 l 0.3,0.2 v 0.2 l -0.1,-0.1 v 1 l 0.3,0.3 -0.8,-0.5 -1,-0.9 v 0.2 l -1.1,-0.6 c -0.6,-0.2 -1.1,-0.5 -1.7,-0.5 v 1 c 0.6,-0.1 1.1,0.1 1.7,0.3 0.5,0.2 1,0.5 1.5,0.8 l 0.6,0.4 1,0.72 v 0.4 c -0.3,-0.3 -0.6,-0.6 -0.8,-0.95 l -0.1,1 c 0.3,0.3 0.6,0.6 0.8,1 v 0.1 -0.18 l 0.3,0.3 c 0.5,0.7 0.9,1.4 1.4,2.1 l -0.3,-0.3 c -0.6,-0.4 -1.2,-0.7 -1.8,-1.1 -0.3,-0.2 -0.7,-0.4 -1.1,-0.4 v 1 c 0.4,0 0.7,0.2 1.1,0.3 l 1.1,0.7 v 0.3 l 0.9,1.2 0.2,0.35 -2.1,-0.7 c -0.4,-0.2 -0.8,-0.4 -1.1,-0.6 l -0.1,1 h 0.1 c 0.1,0.1 0,0 0.3,0.1 l 0.8,0.3 2.2,0.7 c -0.1,0.13 -0.1,0.3 -0.2,0.4 l 0.1,1 c 0.1,-0.2 0.2,-0.4 0.2,-0.66 0,-0.2 0.1,-0.4 0.1,-0.6 v -0.1 0.5 -0.5 l 0.1,0.1 -0.1,0.4 v 0.4 h 0.2 l 0.1,0.6 v -1.2 l 0.2,0.35 v 0.1 l 0.1,0.9 c 0,-0.2 0.1,-0.3 0.2,-0.5 v -0.2 l 0.1,0.3 -0.1,0.2 0.1,1 0.1,-0.1 0.1,0.5 0.1,-0.2 0.6,-1 0.3,-0.32 0.1,0.1 0.1,0.4 v 0.1 -0.4 l 0.4,0.2 c 0.04,0.1 0.1,0.2 0.1,0.3 l 0.1,0.3 v 0.3 -0.8 l 0.2,0.9 c 0,-0.5 0,-0.9 -0.1,-1.4 l 0.2,0.1 0.6,0.2 0.22,0.1 v -1 l -0.2,-0.1 c -0.3,-0.35 -0.66,-0.6 -1,-0.9 0.1,-0.05 0.14,-0.1 0.24,-0.1 v -0.2 c 0.1,0 0.1,-0.03 0.2,-0.04 0.3,0 0.6,0 0.8,0.1 v -0.9 h -0.9 c -0.4,0.1 -0.8,0.2 -1.2,0.4 v 0.3 l -0.55,-0.5 -0.3,-1 v -0.6 l 0.1,-0.1 c 0,0.1 0.1,0.2 0.1,0.3 l 0.05,-0.4 0.5,-0.5 c 0.4,-0.2 0.7,-0.4 1.1,-0.7 l -0.1,-1 c -0.3,0.3 -0.7,0.5 -1,0.7 l -0.7,0.5 -0.7,-1.1 c 0.1,-0.3 0.2,-0.6 0.32,-0.9 0.2,-0.4 0.4,-0.9 0.72,-1.2 l 0.6,-0.7 -0.1,-1 c -0.2,0.3 -0.4,0.52 -0.6,0.8 -0.2,0.2 -0.4,0.5 -0.56,0.7 l -0.24,0.53 c -0.1,0.4 -0.3,0.9 -0.4,1.4 l 0.03,-0.4 0.3,-1.5 c 0.1,-0.3 0.2,-0.5 0.4,-0.6 l -0.1,-1 -0.3,0.4 -0.2,0.2 c -0.2,0.5 -0.3,1 -0.4,1.5 l -0.1,0.8 c 0,0 -0.1,0 -0.1,-0.1 l -0.2,-0.8 -0.1,-0.3 0.1,-0.4 0.1,-0.8 0.2,-1.6 v 0.3 -1.4 c 0.06,-0.2 0.1,-0.3 0.2,-0.4 l 0.26,-0.5 c 0.2,-0.4 0.5,-0.6 0.8,-0.9 0.3,-0.2 0.6,-0.5 1,-0.6 l -0.08,-1 c -0.4,0.2 -0.7,0.4 -1,0.7 l -0.1,0.1 0.1,-0.2 0.1,-0.1 V 449 l -0.2,1 c 0,-1.3 0.1,-1 -0.16,-0.6 l -0.5,0.8 c -0.2,0.3 -0.4,0.7 -0.5,1 V 448 c 0.04,-0.03 0.1,-0.1 0.1,-0.2 l -0.1,-0.8 v -0.93 l -0.1,0.92 v 0.1 c -0.2,0.4 -0.3,0.8 -0.5,1.2 -0.3,0.9 -0.46,1.8 -0.5,2.7 l -0.26,-0.9 v -0.4 c 0,-0.6 0,-1.1 -0.1,-1.6 0,-0.3 0.1,-0.6 0.1,-0.9 0,-0.1 0.08,-0.3 0.1,-0.4 0.1,-0.5 0.3,-1 0.48,-1.6 l 0.3,-0.9 0.1,-0.3 v -1.1 l -0.1,0.9 v -0.8 0.3 l -0.3,0.9 c -0.1,0.5 -0.34,1 -0.5,1.6 0,0.1 0,0.2 -0.1,0.3 0,0.3 -0.1,0.7 -0.1,1 l -0.4,-1.7 0.2,-0.5 0.1,0.8 0.2,-0.8 c 0,-0.2 0.1,-0.7 0.2,-0.9 l 0.3,-1.4 c 0.3,-0.5 0.6,-0.9 0.9,-1.4 0.3,-0.4 0.6,-0.9 1,-1.4 l -0.1,-1 -0.5,0.9 -0.1,-0.7 -0.3,0.6 -0.04,-0.4 -0.2,0.6 v -0.8 l -0.18,1 v -0.9 l -0.1,0.2 -0.1,0.3 -0.4,1.1 c -0.3,0.8 -0.6,1.6 -0.8,2.5 0,0.2 -0.1,0.5 -0.1,0.7 v -2 c 0.1,-0.1 0.1,-0.2 0.1,-0.3 0.03,-0.1 0.1,-0.4 0.1,-0.5 v -1 l -0.1,0.9 v -0.8 l -0.07,0.2 c 0,0 0,0.1 -0.1,0.1 v -0.6 l -0.2,1 v 0.2 c -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.1,0.3 -0.2,0.6 -0.2,0.9 l -0.2,-1 c -0.1,-0.2 -0.1,-0.4 -0.1,-0.6 v -0.1 c 0.4,-1.2 0.9,-2.4 1.5,-3.5 l 0.34,-0.7 0.3,-0.5 v -0.6 l 0.3,-0.5 -0.1,-1 -0.6,1.4 c -0.3,0.6 -0.6,1.1 -0.9,1.7 l -0.5,0.9 c -0.3,0.6 -0.5,1.3 -0.8,1.9 l -0.1,-0.4 v -0.6 l 0.1,-0.6 -0.1,-0.3 c 0,-1.1 -0.1,-2.1 -0.1,-3.2 v -4.2 l -0.1,1 v 4.1 c 0,0.6 0.1,1.2 0.1,1.8 l -0.6,-1.6 c 0,-0.3 0,-0.7 0.1,-1.1 0.1,-0.4 0.1,-0.7 0.2,-1.1 l 0.2,-0.5 c 0,-0.1 0.1,-0.1 0.1,-0.2 l -0.2,-0.9 c -0.04,0.4 -0.2,0.8 -0.23,1.1 -0.1,0.4 -0.1,0.4 -0.1,0.8 -0.1,0.6 -0.1,1.1 -0.1,1.6 -0.1,-0.4 -0.3,-0.7 -0.43,-1.1 l -1,-2.6 c -0.2,-0.6 -0.4,-1.3 -0.5,-2 l -0.1,0.7 -0.43,-1 z m 3,7.97 c 0.12,0.33 0.25,0.66 0.36,1 0.1,0.27 0.1,0.32 0.12,0.4 V 440 c -0.16,-0.52 -0.3,-1.04 -0.48,-1.55 z m -0.22,0.4 c 0.25,0.8 0.5,1.6 0.72,2.4 v 0.1 l -0.25,-0.48 -0.1,-0.3 c -0.07,-0.3 -0.17,-0.5 -0.26,-0.7 0,-0.3 -0.1,-0.6 -0.1,-0.9 v -0.2 z m 2.24,0.33 c -0.26,0.66 -0.52,1.34 -0.76,2.02 0,0.04 -0.03,0.1 -0.04,0.13 0,-0.1 -0.03,-0.2 -0.04,-0.3 l 0.46,-1.13 z m -0.87,1.93 -0.1,0.72 c -0.03,-0.05 -0.06,-0.18 -0.08,-0.22 0,-0.17 0.1,-0.33 0.1,-0.5 z m 2.43,1.03 -0.05,0.16 -0.1,0.17 0.15,-0.4 z m -2.46,0.56 0.15,0.84 0.1,0.86 v 0.2 l -0.2,-0.48 c 0,-0.1 0,-0.2 -0.1,-0.32 l -0.2,-0.93 v -0.2 z m 2.14,0.2 -0.12,0.36 -0.3,0.93 -0.12,0.3 c 0.13,-0.4 0.28,-0.9 0.46,-1.3 l 0.08,-0.2 z m -1.25,0.55 v 2.26 l -0.26,-1.3 0.2,-0.75 0.06,-0.2 z m -1.52,0.03 0.1,0.13 v 0.3 -0.13 l 0.1,-0.3 z m 0.2,0.7 c 0.1,0.16 0.1,0.32 0.1,0.48 0,-0.1 -0.1,-0.18 -0.1,-0.27 l 0.1,-0.1 v -0.1 z m 0.4,0.36 0.1,0.3 v 0.18 -0.48 z m -0.8,0.1 0.1,0.1 v 0.26 l 0.1,-0.22 v 0.6 -0.74 z m 1.4,0.47 0.3,1.42 v 0.02 -0.38 c 0,-0.4 -0.1,-0.6 -0.2,-1 v -0.2 z m -1.1,0 0.6,0.96 c 0,0.1 0.1,0.3 0.1,0.4 -0.1,-0.1 -0.2,-0.2 -0.3,-0.4 l -0.2,-0.4 v -0.7 l 0.1,-0.2 z m -2,0.07 c 0.2,0.07 0.3,0.15 0.5,0.25 0.3,0.14 0.5,0.34 0.7,0.54 0.3,0.2 0.4,0.5 0.6,0.8 l 0.5,0.9 c 0.2,0.4 0.3,0.8 0.4,1.2 l 0.1,0.1 c -0.1,-0.4 -0.3,-0.7 -0.6,-1.1 l -1.8,-2.7 -0.1,-0.1 z m 3,1.7 0.2,0.34 v 0.02 l -0.1,-0.15 v -0.2 z m -0.5,0.4 0.3,0.32 0.1,0.53 V 448 l -0.2,-0.7 z m 1.2,0.38 c 0.2,0.75 0.4,1.5 0.5,2.26 v 0.16 l -0.1,-0.7 c -0.1,-0.45 -0.1,-0.72 -0.2,-1.16 v -0.53 z m -0.7,0.23 0.1,0.4 -0.1,0.3 v -0.6 z m 0.3,1 v 1.4 c 0,0.2 0.1,0.3 0,0.4 v -0.3 1.1 c -0.1,-0.1 -0.1,-0.3 -0.2,-0.5 v -0.6 c 0,0.1 0,0.1 0.1,0.2 l 0.1,-0.9 0.2,-0.4 z m 0.1,0.5 c 0,0.1 0.1,0.1 0.1,0.2 v 0.6 l 0.2,1 v -0.5 l 0.1,0.7 0.1,1.6 -0.3,-1 v -2.3 z m 2.3,0.2 v 0.8 l 0.1,2.2 v 1.3 l -0.3,0.9 c -0.3,0.6 -0.4,1.3 -0.5,2 l -0.1,-0.7 v -0.1 c 0,-0.5 0,-1 0.1,-1.4 0.1,0.3 0.2,0.7 0.2,1 v 0.4 l 0.2,-0.9 v -0.4 c 0,-0.4 -0.1,-0.8 -0.2,-1.2 0.1,-0.9 0.2,-1.7 0.5,-2.6 0.1,-0.3 0.3,-0.6 0.4,-0.9 z m -1.9,0.7 0.1,0.7 0.2,0.8 v 1.9 -0.2 c 0,-1 -0.1,-2 -0.2,-3 z m -1.1,0.8 0.2,0.4 v 0.2 c 0,-0.1 -0.1,-0.2 -0.1,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 z m 1.6,1.4 0.2,0.7 0.1,-0.5 0.2,0.9 v 1.7 c -0.2,-0.8 -0.3,-1.6 -0.4,-2.4 v -0.3 z m -0.8,2 c 0,0.1 0,0.1 0.1,0.2 v 0.1 l -0.1,-0.1 z m 0,1.6 0.4,0.7 0.2,0.5 v 0.2 c -0.2,-0.3 -0.4,-0.7 -0.6,-1 v -0.3 z m 2.3,0.1 -0.1,1.3 -0.1,0.9 -0.2,-0.4 v -0.4 c 0.1,-0.4 0.1,-0.9 0.2,-1.3 v 0.5 l 0.2,1 v -0.1 c 0,-0.3 0.1,-0.7 0.1,-1 l 0.1,-0.4 z m -1.6,1.3 0.2,0.4 -0.1,-0.3 v -0.1 z m 0.8,1 0.1,0.1 0.1,0.6 -0.1,-0.3 -0.1,-0.2 0.1,-0.2 z m 39.15278,1.79231 -40.25278,0.008 0.7,0.7 0.1,0.1 v 0.1 c 0,0.1 0.1,0.1 0.1,0.2 l 0.3,0.7 0.1,0.3 v 0.1 l 0.1,0.2 0.2,0.6 -0.7,-1.2 -0.5,-0.8 -0.2,-0.4 -0.2,-0.2 v -0.5 z M 492.31,463.31 l 0.3,0.5 0.1,0.3 v 0.2 l -0.4,-0.8 0.1,-0.1 z m -0.5,0.2 0.1,0.2 0.2,0.4 v 0.1 l -0.3,-0.4 z m 1.2,1.2 c 0.1,0.1 0.1,0.2 0.1,0.4 l -0.1,-0.3 0.1,-0.1 z m -0.6,0.2 0.3,1.3 0.1,0.2 -0.6,-0.2 v -0.9 c 0,0.1 0.1,0.1 0.1,0.2 v -0.3 l 0.1,0.4 0.1,-0.7 z m -0.9,0.2 c 0.1,0.1 0.2,0.2 0.3,0.4 l 0.1,0.1 0.1,0.2 c -0.1,-0.2 -0.3,-0.4 -0.4,-0.6 z m 0.5,0.5 0.1,0.1 0.1,0.2 v 0.2 l -0.1,-0.2 v -0.2 z m 1.3,0.8 0.1,0.1 v 0.1 -0.1 z m 0.4,0.3 0.1,0.3 h -0.1 v -0.2 z m -0.2,0.1 0.1,0.2 h -0.1 v -0.1 z m -0.1,1.2 v 0.1 z"
-         id="path4653-3-1"
-         sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccscccccccccccccscccccccccccccccsccccccccsccccccccccccccccccccccccccccccccccccsccccccccccccccccssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccscsscccccccccccccccccccccccccccccccccccscccccccccccscccccccccccccccsccsccscccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccsccccccccccccccccccccccccccccccccccccccccsccccccccccscccccccccccccccscsccscsccccccscccccsccccccccccccccccccccccccccccccscccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
-    </g>
+	 inkscape:groupmode="layer"
+	 id="layer14"
+	 inkscape:label="Layer 3">
+	<g
+	   transform="matrix(0.32825958,0.34029125,-0.21729162,0.51740458,407.60151,-162.98551)"
+	   style="stroke-width:0.1;stroke-linecap:round"
+	   id="layer2-4-3"
+	   inkscape:transform-center-x="5.1605772"
+	   inkscape:transform-center-y="-2.3165394">
+	  <path
+		 style="fill:#9497a2"
+		 inkscape:connector-curvature="0"
+		 d="m 495.4,468.64 -1.5,1.78 -0.37,-2.72 -2.7,1.5 -1.6,-3.65 -4.5,-1.97 -2.25,-3.18 5.53,2.25 -5.5,-4.4 2.2,-0.38 -3.9,-3 -3.2,-4.3 5.4,3 -4.9,-6.47 4.4,1.78 -3.8,-7.86 2.6,2.34 -4.31,-6.36 5.06,2 -2.2,-3.9 -3.5,-3.2 4.2,1.1 -3.86,-8.6 -0.63,-5.4 4.2,10.3 -0.32,-9.9 3,10.2 2.64,-10.5 0.8,6.2 0.2,5.5 7.1,-10.2 -3,6.95 6.3,-3.4 -5.5,5.1 -2.9,3 11.2,-4 -4.7,4.1 8.2,-1.9 -10.7,5 8.4,1.02 -6.5,3.72 5.6,-0.1 -5.3,3.1 3.7,1.4 -4.4,1.7 6.4,-1.4 2.1,-2.1 -4.8,5.2 4.3,-1.2 -7,5.9 5.4,-2 -4.2,4.2 -2.9,3.7 6,-2.1 -3.3,5 5.5,-0.8 -5,2.3 3.2,1.8 -3.8,0.3 2.5,3.6 z"
+		 id="path4488-3-1" />
+	  <path
+		 style="fill:#b4b3b7"
+		 inkscape:connector-curvature="0"
+		 d="m 485.05,423.03 z m 0,0 -0.16,0.97 v 1.05 c -0.1,0.42 0,0.83 0.1,1.24 0.1,0.4 0.1,0.3 0.1,0.8 0,0.4 0.1,0.9 0.1,1.3 -0.1,-0.4 -0.1,-0.7 -0.1,-1.1 l -0.9,0.4 c 0,0.3 0.1,0.7 0.1,1 l 0.3,1.4 c 0.1,0.3 0.1,0.7 0.2,1.1 l 0.4,-0.3 v 0.2 -0.3 l 0.3,-0.2 c 0,-0.4 -0.1,-0.8 -0.2,-1.1 0,-0.1 0,-0.2 -0.1,-0.3 0,-0.3 -0.1,-0.6 -0.1,-0.8 0,-0.9 -0.1,-1.8 -0.2,-2.6 0,-0.2 0,-0.3 -0.1,-0.4 -0.1,-0.6 -0.3,-1.1 -0.2,-1.7 v -1 z m -8.48,0.45 -0.12,0.98 c 0.1,0.33 0.27,0.65 0.4,0.97 0.2,0.44 0.35,0.88 0.5,1.33 0.16,0.46 0.2,0.94 0.3,1.4 0.12,0.46 0.2,0.92 0.3,1.37 0.04,0.24 0.13,0.47 0.24,0.7 l 0.1,-0.96 c -0.1,-0.18 -0.2,-0.38 -0.2,-0.58 0,0 0.1,0.1 0.1,0.2 l 0.6,1.3 0.5,1.2 v 0.1 c 0.1,0.3 -0.1,-0.1 0.1,0.3 l 0.2,0.4 0.1,0.2 -1.2,-0.6 c -0.6,-0.2 -1.1,-0.4 -1.7,-0.6 -0.3,-0.1 -0.6,-0.1 -0.8,-0.1 v 1 c 0.2,-0.1 0.5,0 0.8,0 l 1.2,0.3 v 0.4 c 0.2,-0.1 0.5,0 0.7,0.1 l 0.3,0.1 -0.2,0.1 1,1 c 0.4,0.3 0.9,0.7 1.4,1.1 0.2,0.1 0.1,0 0.2,0.2 l 0.4,-0.2 c 0.1,0.1 0.3,0.3 0.4,0.5 0.2,0.3 0.5,0.5 0.7,0.8 l 0.5,0.6 0.4,0.6 c 0.2,0.3 0.5,0.6 0.7,0.9 l 0.7,0.8 0.8,-0.5 -0.7,-0.9 c -0.2,-0.3 -0.5,-0.6 -0.7,-1 l -0.5,-0.7 -0.6,-0.6 -0.7,-0.8 -0.7,-0.7 c -0.2,-0.1 -0.4,-0.2 -0.6,-0.2 l -0.2,0.1 -0.6,-0.5 0.1,-0.4 c 0.6,0.2 1.3,0.5 1.9,0.7 0.3,0.1 0.6,0.3 0.8,0.4 l 0.3,0.2 c 0.2,0.3 0.3,0.5 0.5,0.8 l 0.8,-0.4 c -0.2,-0.4 -0.4,-0.7 -0.5,-1.1 -0.1,-0.4 -0.3,-0.7 -0.6,-0.9 l 0.4,-0.2 c -0.2,-0.4 -0.4,-0.7 -0.6,-1 -0.5,-0.7 -0.9,-1.3 -1.4,-1.9 l -0.4,-0.4 0.3,-0.9 0.7,-2.3 c 0.2,-0.4 0.4,-0.9 0.5,-1.4 l -0.1,-0.9 c -0.1,0.5 -0.3,1 -0.5,1.5 -0.2,0.8 -0.5,1.5 -0.7,2.3 -0.1,0.2 -0.1,0.4 -0.2,0.6 v -0.3 c -0.1,-0.3 -0.2,-0.6 -0.4,-0.8 l -0.5,-0.9 -0.6,-0.9 c -0.2,-0.3 -0.4,-0.6 -0.4,-0.9 l -0.1,-0.2 c 0.1,-0.2 0.1,-0.4 0.2,-0.6 l -0.1,-1 c -0.2,0.2 -0.2,0.5 -0.3,0.7 -0.1,0.5 -0.1,1 0,1.5 v 0.4 c 0.2,0.3 0.4,0.8 0.5,1.2 l 0.6,1.6 c 0.1,0.1 0.1,0.3 0.2,0.5 l -0.7,0.4 c 0.4,0.3 0.7,0.7 1.1,1 l 0.1,0.1 v 0.7 c -0.4,-0.3 -0.8,-0.6 -1.1,-1 l -0.9,0.5 c 0.4,0.4 0.9,0.7 1.4,1.1 0.6,0.4 1.2,0.8 1.8,1.3 -0.8,-0.3 -1.6,-0.6 -2.5,-1 l -0.8,-0.3 v -0.7 c -0.1,-0.2 -0.2,-0.4 -0.4,-0.7 l -0.3,-0.9 -0.6,-1.2 -0.7,-1.3 c -0.2,-0.3 -0.3,-0.6 -0.4,-0.9 l -0.1,0.4 v -0.2 c -0.1,-0.5 -0.1,-1 -0.3,-1.4 -0.1,-0.5 -0.3,-0.9 -0.5,-1.4 -0.1,-0.3 -0.3,-0.6 -0.4,-1 z m 13.57,1.1 -0.15,0.95 c 0,-0.2 0,-0.42 -0.1,-0.64 l -0.1,0.2 -0.2,0.9 c -0.2,0.7 -0.5,1.5 -0.7,2.2 -0.3,0.2 -0.5,0.5 -0.7,0.8 -0.1,0.1 -0.2,0.3 -0.3,0.5 -0.1,0.1 -0.2,0.1 -0.2,0.2 -0.5,0.4 -0.9,0.9 -1.2,1.5 -0.2,0.3 -0.3,0.7 -0.4,1.1 v 0.1 l 0.9,-0.4 v -0.1 c 0,-0.4 0.2,-0.8 0.4,-1.1 0.1,-0.3 0.3,-0.6 0.6,-0.9 v 0.5 -0.2 l 0.1,0.7 c 0,-0.1 0.1,-0.3 0.1,-0.4 l 0.6,-1.6 v -0.1 l 0.1,-0.2 c 0.4,-0.3 0.8,-0.6 1.3,-0.9 0.5,-0.3 1,-0.6 1.7,-0.6 h 0.8 v -1 h -0.8 c -0.7,0 -1.2,0.3 -1.8,0.6 l -1,0.6 0.3,-1 c 0.1,-0.4 0.2,-0.7 0.2,-1 v -1.5 z m -8.2,4.34 0.22,0.4 c 0.12,0.18 0.2,0.4 0.25,0.6 l -0.2,-0.4 -0.2,-0.6 z m 2.34,0.4 -0.87,0.45 0.2,0.84 0.2,0.5 0.9,-0.4 -0.1,-0.4 c 0,-0.3 -0.1,-0.5 -0.1,-0.8 z m 11.02,1.14 c -0.43,0.1 -0.85,0.23 -1.27,0.37 -0.53,0.2 -1.05,0.42 -1.55,0.68 l -0.42,0.2 -1.28,0.6 -0.6,0.3 -0.23,0.2 -0.1,0.1 c -0.23,0.2 -0.46,0.3 -0.7,0.5 l 0.53,-0.2 -0.1,0.2 -0.06,0.2 v 0.1 c -0.4,0.2 -0.8,0.4 -1.2,0.7 l 0.9,-0.3 c -1.5,0.9 -0.42,0.2 -0.05,0.1 l 0.2,-0.1 -0.2,0.2 c -0.17,0.2 -0.32,0.4 -0.44,0.6 l 0.9,-0.4 v 0.2 l 0.08,-0.2 0.2,-0.2 0.8,-0.4 0.9,-0.5 v 0.1 l 0.2,-0.1 -0.2,0.2 -0.2,0.2 c -0.2,0.2 -0.5,0.5 -0.8,0.7 0,0.1 0,0.1 -0.1,0.1 v -0.2 l -0.3,0.5 -0.1,0.6 c 0,0.3 -0.1,0.5 -0.2,0.8 l -0.1,0.3 0.1,1 0.2,-0.3 c 0.1,-0.2 0.2,-0.4 0.2,-0.7 0.1,-0.2 0.2,-0.3 0.2,-0.6 0.1,-0.1 0.2,-0.3 0.3,-0.4 v -0.6 l 0.2,-0.1 h 0.1 v 0.1 l 0.9,-0.4 c 0,0 0.1,-0.1 0.1,-0.2 1.1,-0.6 1.2,-0.7 2.2,-1.2 0.7,-0.4 1.4,-0.7 2.1,-1 0.5,-0.1 0.8,-0.3 1.2,-0.6 v -0.1 h -0.1 c 0.1,0 0,0 0,0 h -0.1 l 0.1,-0.1 -0.5,0.2 -0.9,0.3 v -0.6 h 0.1 -0.1 z m -0.53,1.22 c -0.14,0.06 -0.3,0.12 -0.42,0.2 l -0.33,0.18 0.3,-0.23 z m -12.28,0.03 0.9,1.3 -1,-0.6 v -0.3 l -0.1,-0.1 v -0.1 z m 10.8,0.7 -1.7,1 0.4,-0.4 0.4,-0.3 h 0.1 l 0.6,-0.2 z m 0.9,3.7 h -0.7 c -0.3,0.1 -0.7,0.1 -1,0.1 -0.5,0 -0.9,0.1 -1.3,0.2 -0.3,0.1 -0.5,0.1 -0.8,0.2 l -0.1,0.1 -0.8,0.6 c 0.2,-0.1 0.4,-0.2 0.7,-0.2 0.4,-0.1 0.8,-0.1 1.2,-0.2 h 1.6 z m -0.5,0.6 -0.6,0.2 c -0.3,0.1 -0.6,0.1 -0.8,0.2 -0.1,0 -0.1,0.1 -0.1,0.1 0,0 -0.1,0 -0.1,0.1 h -0.5 c -0.3,0 -0.5,0 -0.7,0.1 l -0.6,0.3 c -0.2,0.1 -0.4,0.2 -0.4,0.5 l 0.1,0.1 -0.5,0.3 0.5,-0.2 -0.3,0.2 0.4,-0.2 h 0.1 l -0.1,0.1 0.2,-0.1 -0.1,0.1 -0.3,0.3 -0.1,0.1 0.9,-0.4 v -0.1 h 0.1 l -0.8,0.4 c 0,0.1 -0.2,0.4 -0.2,0.5 l 0.1,0.1 0.1,0.1 c 0.1,0.1 0.3,0 0.4,0 l -0.1,0.1 c -0.4,0.3 -0.7,0.6 -1.1,1 l -0.7,1 v 0.1 c 0,0.2 0.3,0.1 0.5,-0.1 l -0.2,0.4 0.9,-0.4 c 0.1,-0.2 0.1,-0.4 0.3,-0.6 l 0.2,-0.3 v 0.7 c 0,0.1 0.1,0.1 0.1,0 v -0.1 l 0.1,-0.1 c 0.1,-0.2 0.3,-0.3 0.4,-0.5 v 0.1 l 0.2,-0.2 c 0.3,-0.3 0.8,-0.6 1.2,-0.9 0.5,-0.3 1,-0.6 1.6,-0.8 0.1,-0.1 0.4,-0.2 0.5,-0.2 h 0.2 v -0.2 h 1.2 l 0.8,-0.5 h -0.9 l 0.3,-0.2 -0.1,-0.1 h -0.2 v 0.1 l 0.1,-0.1 -1.2,0.1 h -0.6 v -0.2 c -0.3,0.1 -0.7,0.1 -1.1,0.1 z m -16.2,1 v 1 h 0.8 c 0.4,0 0.8,0.1 1.1,0.3 l -0.4,0.3 c 0.2,0 0.5,0 0.8,0.1 0.3,0.1 0.6,0.4 0.8,0.6 l 0.4,0.5 -0.2,0.2 0.4,0.5 -0.4,0.3 c 0.2,0 0.3,0 0.5,0.1 l 0.9,1.3 0.9,1.5 0.2,0.5 0.8,-0.4 -0.3,-0.5 c -0.3,-0.4 -0.5,-0.8 -0.8,-1.2 l 1.4,1 0.6,0.6 0.8,-0.5 -0.6,-0.5 c -0.5,-0.3 -1.1,-0.6 -1.6,-1 -0.5,-0.3 -1,-0.7 -1.5,-0.9 -0.1,0 -0.2,-0.1 -0.3,-0.1 v -0.1 l -0.3,-0.4 0.7,0.5 c 0.3,0.2 0.6,0.3 0.9,0.5 l 0.4,0.3 c 0.4,0.3 0.8,0.5 1.2,0.8 l 0.8,0.6 0.1,-0.9 -0.9,-0.6 -1.3,-0.8 c -0.4,-0.2 -0.9,-0.4 -1.3,-0.7 -0.4,-0.2 -0.7,-0.4 -1,-0.6 v 0.5 l -0.2,-0.2 c -0.3,-0.2 -0.6,-0.5 -0.9,-0.6 l -0.2,-0.1 v -0.2 c -0.2,-0.2 -0.5,-0.3 -0.7,-0.4 -0.2,-0.1 -0.4,-0.2 -0.5,-0.2 -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 h -0.8 z m 15.9,0.1 -0.1,0.1 -0.3,0.1 h -0.3 c 0.2,0 0.4,-0.1 0.6,-0.1 z m -3.1,0.2 h -0.1 z m 1.2,0 z m -0.1,0.2 c 0,0.1 -0.1,0.1 -0.1,0.2 l -0.1,0.1 c 0,0.1 -0.1,0.1 -0.1,0.1 l 0.1,-0.3 z m 5.3,2.6 c -0.6,0.2 -1.2,0.4 -1.7,0.7 h -0.1 c 0.1,-0.1 0.3,-0.2 0.2,-0.4 l -0.1,-0.1 h -0.1 l -0.6,0.2 c -0.2,0 -0.4,0.1 -0.5,0.2 -0.4,0.3 -0.9,0.5 -1.3,0.8 -0.2,0.2 -0.4,0.5 -0.6,0.7 -0.1,0.2 -0.2,0.4 -0.4,0.6 l 0.7,-0.3 c -0.2,0.2 -0.3,0.4 -0.4,0.6 l -0.1,0.1 -0.8,0.6 0.2,-0.1 c 0.1,-0.1 0.2,-0.2 0.4,-0.2 l -0.1,0.2 h -0.1 l -0.2,0.3 c -0.1,0.1 -0.3,0.4 -0.4,0.5 l -0.3,0.5 c 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.2 -0.3,0.7 -0.3,1 v 0.1 l 0.1,0.1 c 0.4,-0.3 0.8,-0.4 1.1,-0.7 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.3 0.2,-0.4 l 0.2,-0.5 0.4,-0.6 c 0.2,-0.4 0.5,-0.7 0.7,-1.1 v -0.1 l 0.2,-0.1 0.8,-0.4 c 0.6,-0.3 1.2,-0.5 1.7,-0.9 v -0.1 h -0.1 c -0.2,0 -0.3,0.1 -0.5,0.1 h -0.3 c -0.4,0.1 -0.8,0.6 -1.1,0.6 h -0.1 l 0.4,-0.4 1.6,-0.6 z m -2.4,0.8 -0.1,0.1 -0.3,0.3 -0.7,0.4 -0.5,0.3 0.2,-0.3 0.3,-0.4 c 0,0 0.1,0 0.1,-0.1 l 0.2,-0.1 c 0.2,0 0.4,-0.2 0.7,-0.2 z m 0.5,0.7 -0.6,0.3 -0.6,0.3 0.2,-0.1 0.4,-0.3 0.2,-0.1 h 0.4 z m -15.9,0.3 -0.1,1 0.6,0.3 1,0.7 c 0.1,0.1 0.2,0.1 0.3,0.2 l -0.3,0.2 c 0.2,0.2 0.5,0.3 0.9,0.4 0.1,0.1 0.3,0.1 0.5,0.2 l 0.5,0.5 c 0.1,0.2 0.2,0.3 0.3,0.5 l 0.1,-0.9 c 0.2,0.1 0.5,0.2 0.7,0.4 l 0.2,0.2 v 0.1 c 0.2,0.4 0.3,0.7 0.4,1.1 -0.3,-0.1 -0.6,-0.2 -0.9,-0.4 l -0.8,0.6 c 0.3,0.1 0.7,0.3 1,0.4 0.4,0.2 0.9,0.5 1.3,0.7 0.2,0.4 0.3,0.7 0.6,1 l 0.6,0.5 0.8,-0.5 h -0.1 l 0.3,-0.2 c -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.3,-0.3 -0.7,-0.7 -1.1,-0.9 -0.1,0 -0.1,0 -0.2,-0.1 l -0.2,-0.3 -0.2,-0.3 c -0.2,-0.3 -0.2,-0.4 -0.3,-0.7 l 0.1,0.1 0.6,0.5 0.8,-0.5 -0.7,-0.5 c -0.3,-0.2 -0.5,-0.3 -0.8,-0.4 l -0.6,-0.3 v -0.1 l -0.1,-0.1 -0.2,-0.3 -0.3,-0.6 -0.7,0.5 c -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.2,-0.1 -0.5,-0.2 -0.7,-0.2 l -0.2,0.1 -0.5,-0.3 c -0.4,-0.3 -0.8,-0.5 -1.2,-0.8 l -1,-0.7 -0.6,-0.3 z m 17,1.5 c -0.3,0.1 -0.6,0.1 -0.9,0.2 l -0.3,0.1 h -0.4 c -0.2,0 -0.4,0 -0.6,0.1 -0.2,0.1 -0.3,0.2 -0.4,0.2 l -0.3,0.3 -0.1,0.2 c -0.7,0.4 -1.3,0.8 -2,1.3 l 0.9,-0.3 c 0.3,-0.2 0.6,-0.4 0.8,-0.5 h 0.1 l 0.2,-0.1 v 0.2 c 0,0.1 0,0.2 -0.1,0.3 v 0.1 l -1,0.7 c -0.4,0.3 -0.8,0.6 -1.1,1 -0.2,0.3 -0.4,0.6 -0.5,0.8 l 0.1,1 c 0.1,-0.3 0.2,-0.6 0.4,-0.8 0.3,-0.4 0.7,-0.7 1.1,-1 0.4,-0.3 0.8,-0.5 1.2,-0.7 v -0.2 l 0.2,-0.6 c 0,-0.1 0,-0.2 0.1,-0.2 0.1,0 0.2,-0.1 0.4,-0.2 0.2,-0.1 0.3,-0.1 0.5,-0.1 h 2.2 v -1 h -0.8 l 0.3,-0.2 h -0.2 z m 2.3,2.3 c -0.3,0.2 -0.7,0.2 -1,0.3 l 0.1,-0.1 c -0.4,0.1 -0.7,0.1 -1.1,0.1 -0.5,0 -0.9,0.1 -1.3,0.3 -0.5,0.3 -1,0.5 -1.3,0.9 l -0.2,0.2 -0.2,0.1 c -0.5,0.3 -0.8,0.8 -1.2,1.3 -0.3,0.4 -0.5,0.8 -0.8,1.2 l 0.8,-0.4 0.5,-0.8 v 0.1 l 0.9,-0.4 v -0.2 c 0.1,-0.3 0.2,-0.5 0.4,-0.8 h 0.3 -0.1 l 0.1,0.9 0.2,-0.3 c 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.2 0.4,-0.2 0.5,-0.3 0.5,-0.2 1,-0.3 1.5,-0.4 0.5,-0.1 0.9,-0.1 1.3,-0.2 z m -3.3,0.9 c -0.1,0 -0.1,0 -0.1,0.1 h -0.4 c 0,-0.1 0,-0.1 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.1 z m 2.7,1 h -0.1 l -0.3,0.1 -0.7,0.2 c -0.4,0.1 -0.8,0.2 -1.1,0.4 l -0.7,0.2 -0.7,0.4 -0.4,0.2 -0.4,0.2 -0.1,-0.9 c -0.3,0.1 -0.5,0.3 -0.7,0.5 -0.4,0.4 -0.6,0.8 -0.9,1.3 l -0.2,0.5 -0.1,0.1 c -0.1,0.1 -0.2,0.2 -0.3,0.4 l 0.1,-0.1 -0.1,0.1 v 0.4 c -0.1,0.1 0,0.1 -0.1,0.2 l 0.1,-0.1 v 0.3 l 0.2,-0.5 0.5,-0.2 0.1,-0.1 0.6,-0.6 c 0.1,-0.1 0.2,-0.3 0.4,-0.4 l 0.2,-0.1 0.2,-0.1 1.5,-0.6 1.8,-0.6 c 0.4,0 0.7,-0.1 1.1,-0.1 v -1 c -0.4,0 -0.8,0.2 -1.1,0.2 l -0.3,0.1 z m -16.6,0.3 -0.8,0.5 c 0.3,0 0.5,0.2 0.7,0.3 l 0.9,0.6 0.8,0.6 -0.6,0.4 h 0.4 l -0.2,0.2 0.6,0.4 0.8,0.5 c 0,0.3 0.1,0.5 0.3,0.7 0.3,0.6 -0.1,-0.1 0.3,0.6 0.3,0.6 0.7,1.2 1.1,1.8 l -0.3,-0.2 -0.6,-0.2 c -0.4,-0.1 -0.7,-0.3 -1,-0.5 l -1.3,-0.8 c -0.3,-0.2 -0.6,-0.3 -0.9,-0.5 l -0.4,0.3 v -0.9 l -0.2,-0.1 c -0.4,-0.2 -0.8,-0.4 -1.3,-0.5 l -0.7,-0.3 -0.1,1 0.7,0.3 c 0.5,0.1 0.8,0.3 1.2,0.5 l 0.2,0.1 -0.4,0.3 c 0.3,0.1 0.6,0.3 0.9,0.5 l 1.3,0.8 c 0.3,0.2 0.6,0.4 0.9,0.5 0.2,0.1 0.3,0.2 0.5,0.3 l 0.2,0.3 0.8,-0.5 0.1,0.1 c 0.2,0.5 0.5,0.9 0.8,1.3 l 0.2,0.3 0.8,-0.5 -0.2,-0.2 c -0.3,-0.4 -0.6,-0.8 -0.9,-1.3 l -1,-1.7 0.6,0.3 c 0.4,0.2 0.7,0.5 1,0.8 0.3,0.4 0.5,0.8 0.7,1.2 l 0.3,0.9 0.8,-0.4 -0.3,-0.9 c 0,-0.2 -0.1,-0.3 -0.2,-0.5 v -0.1 l 0.4,-0.2 c -0.2,-0.2 -0.5,-0.4 -0.7,-0.7 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 l -0.7,-0.6 c -0.3,-0.2 -0.5,-0.5 -0.8,-0.7 v -0.1 l -0.2,-0.1 -0.4,-0.3 -1.1,-0.6 c -0.3,-0.2 -0.5,-0.3 -0.8,-0.5 l -1.1,-0.8 c -0.3,-0.2 -0.6,-0.5 -0.9,-0.6 l -0.8,-0.3 z m 11.3,2.6 v 0.3 c -0.1,0.1 -0.2,0.1 -0.4,0.2 l -0.2,0.1 v -0.1 l 0.2,-0.3 0.2,-0.3 z m 3.8,1.2 -0.9,0.4 c -0.3,0.2 -0.6,0.4 -0.8,0.6 -0.3,0.2 -0.5,0.4 -0.7,0.6 l -0.8,0.4 c -0.4,0.3 -0.7,0.6 -1,0.9 -0.2,0.2 -0.3,0.5 -0.4,0.7 l 0.6,-0.2 v 0.1 c -0.2,0.3 -0.3,0.7 -0.4,1.1 l -0.6,0.4 c -0.5,0.4 -1,0.8 -1.5,1.3 l 0.9,-0.3 c 0.4,-0.4 0.8,-0.7 1.3,-1.1 v 0.5 c -0.2,0.3 -0.4,0.7 -0.5,1.1 l 0.8,-0.4 c 0.1,-0.4 0.3,-0.8 0.5,-1.1 v 0.1 c 0,0.3 -0.1,0.6 -0.1,0.8 v 0.1 l 0.8,-0.4 c 0,-0.3 0.1,-0.6 0.1,-0.8 0.1,-0.3 0.1,-0.6 0.2,-0.9 l 0.2,-0.2 c 0.4,-0.1 0.7,-0.2 1.1,-0.2 l 0.8,-0.6 c -0.5,0.1 -1,0.2 -1.4,0.3 0.3,-0.2 0.6,-0.5 0.9,-0.7 0.6,-0.3 0.6,-0.3 0.9,-0.5 l -0.9,0.4 c -0.1,0 -0.1,0.1 -0.1,0.1 l 0.7,-0.4 -0.1,0.1 c -0.1,0 -0.1,0.1 -0.2,0.1 l -1.1,0.6 c -0.1,0.1 -0.1,0.1 -0.2,0.1 -0.2,0.1 -0.3,0.3 -0.5,0.4 l -0.2,0.2 0.1,-0.4 1.3,-0.9 c 0.4,-0.2 0.8,-0.4 1.3,-0.6 0.3,-0.1 0.5,-0.1 0.8,-0.2 v -1 l -0.8,0.3 c -0.4,0.1 -0.7,0.3 -1.1,0.5 l -0.5,0.2 0.5,-0.4 0.9,-0.7 z m -11,0.5 z m 8.3,1.5 -0.2,0.2 c -0.2,0.1 -0.4,0.3 -0.6,0.5 0,-0.1 0,-0.1 0.1,-0.1 0.2,-0.3 0.4,-0.5 0.6,-0.6 z m -0.6,1.7 c 0,0.1 -0.1,0.2 -0.1,0.2 l -0.3,0.2 v -0.1 l 0.3,-0.3 z m -0.1,0.4 c 0,0.1 0,0.1 -0.1,0.1 -0.3,0.2 -0.5,0.4 -0.6,0.7 l -0.2,0.2 c 0,-0.2 0.1,-0.4 0.2,-0.6 v -0.1 c 0.1,0 0.3,-0.1 0.4,-0.2 z m -8,1.4 -0.7,0.1 v 1.3 h 0.7 c 0.3,0 0.6,0.1 0.8,0.1 v -0.2 l 1.1,0.6 c 0.4,0.3 0.7,0.7 0.9,1.1 l 0.8,-0.5 c -0.3,-0.5 -0.6,-0.9 -1,-1.2 -0.4,-0.3 -0.9,-0.6 -1.3,-0.8 -0.3,-0.2 -0.5,-0.3 -0.8,-0.3 l -0.2,0.1 -0.5,-0.1 h -0.1 z m 12,0 -1.4,1 -0.8,0.5 0.1,-0.1 0.2,-0.2 c 0.2,-0.2 0.2,-0.2 -0.1,0 l 0.7,-0.6 c -0.6,0.2 -1.2,0.6 -1.7,1 -0.3,0.2 -0.6,0.6 -0.8,0.9 -0.2,0.1 -0.4,0.3 -0.5,0.5 v 0.3 l -0.2,0.5 v 0.1 l 0.3,-0.2 v 0.1 l 0.1,-0.1 0.6,-0.2 v -0.1 l 0.1,-0.4 c 0.2,-0.1 0.3,-0.2 0.6,-0.4 0.5,-0.3 1,-0.6 1.5,-1 0.5,-0.3 0.9,-0.6 1.4,-0.9 z m -1.1,2.8 -0.9,0.6 -0.3,0.3 -0.6,0.7 c -0.5,0.6 -0.9,1.2 -1.2,1.8 -0.1,0.2 -0.3,0.4 -0.4,0.6 l 0.8,-0.4 0.1,-0.1 v 0.3 l -0.5,0.3 v 0.1 c 0,0 0.2,-0.1 0.3,-0.1 v -0.1 l 0.1,-0.1 0.9,-0.6 0.1,-0.1 c 0.1,-0.1 0.3,-0.2 0.4,-0.2 0.4,-0.2 0.9,-0.3 1.3,-0.3 v -0.3 l 0.5,-0.4 -0.2,0.1 0.7,-0.6 -0.9,0.5 v -0.3 c -0.5,0.1 -1,0.2 -1.5,0.4 -0.4,0.1 -0.7,0.2 -1,0.4 0.3,-0.5 0.6,-1 1,-1.5 l 0.6,-0.7 c 0.3,-0.2 0.9,-0.6 -0.5,0.2 z m -10.6,1.4 c -0.2,0 -0.4,0 -0.5,0.1 l -0.8,0.6 h 1.3 c 0.3,0.1 0.6,0.1 0.9,0.2 l 1,0.4 0.5,0.2 h -0.5 c -0.3,0 -0.6,-0.1 -0.9,-0.1 l -0.8,0.6 0.9,0.2 0.6,0.1 -0.3,0.2 h 0.5 c 0.1,0 0.3,0.1 0.4,0.1 l 0.2,-0.1 c 0.4,0.1 0.8,0.2 1.2,0.5 l 0.2,0.2 h 0.1 l -0.1,0.5 v 1.6 l 0.1,-0.9 v -0.5 c 0.1,-0.2 0.1,-0.4 0.2,-0.5 v -0.4 l 0.4,-0.3 -0.2,-0.1 -0.3,-0.1 v -0.1 0.1 c -0.4,-0.2 -0.7,-0.3 -1,-0.4 l -0.6,-0.1 0.6,-0.3 c -0.1,-0.1 -0.2,-0.1 -0.2,-0.2 l -0.7,-0.3 -1.1,-0.4 c -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 h -0.8 z"
+		 id="path4490-5-3" />
+	  <path
+		 style="fill:#525767"
+		 inkscape:connector-curvature="0"
+		 d="m 484.52,430.5 -0.12,0.97 c 0.3,0.55 0.57,1.1 0.84,1.66 0.1,0.18 0.17,0.37 0.26,0.56 l 0.15,0.4 c 0.5,1.4 1.03,2.9 1.5,4.3 v 1.1 l -0.3,-0.9 c -0.1,-0.2 -0.18,-0.4 -0.26,-0.6 l -0.5,-1 -0.5,-0.8 -0.1,-0.2 -0.1,0.3 -0.5,-0.9 c -0.4,-0.7 -0.8,-1.4 -1.2,-2 l -0.5,-0.6 c -0.2,-0.3 -0.5,-0.5 -0.7,-0.7 l -0.1,0.9 c 0.4,0.3 0.8,0.8 1.1,1.2 0.4,0.6 0.8,1.3 1.1,1.9 v 0.1 l -0.1,-0.1 -0.1,0.9 c 0.5,0.6 0.9,1.3 1.4,2 l 0.9,1.4 0.6,1.9 v 0.9 l -0.1,-0.1 c 0,-0.1 0,-0.1 -0.1,-0.1 v -0.5 c -0.1,-0.3 -0.1,-0.7 -0.2,-1 l -0.2,1 c -0.7,-1.2 -1.5,-2.3 -2.2,-3.4 -0.5,-0.7 -1,-1.4 -1.4,-2.1 l -0.1,0.9 1.3,1.9 c 0.6,0.8 1.1,1.7 1.7,2.5 l 0.7,1.2 v 0.7 l -0.7,-1.1 -0.9,-1.8 c -0.2,-0.4 -0.3,-0.6 -0.6,-1 l -0.3,-0.5 -1.1,-1.7 -0.1,0.9 c 0.4,0.5 0.8,1.1 1.2,1.6 l 0.3,0.4 0.6,1 0.9,1.6 -0.3,-0.2 c -0.2,-0.1 -0.4,-0.3 -0.6,-0.3 v 0.8 l -1.1,-1.7 -0.1,1 1.2,1.8 c 0.6,0.9 1.3,1.8 1.9,2.7 l 0.5,0.9 -0.1,0.6 0.1,0.2 -0.1,0.4 c -0.5,-0.8 -1,-1.5 -1.4,-2.3 -0.4,-0.7 -0.8,-1.4 -0.9,-2.2 l -0.2,0.9 c 0.1,0.7 0.6,1.4 0.9,2.1 l 1.5,2.5 0.3,0.4 c -0.3,-0.4 -0.6,-0.7 -1,-1 l -0.2,-0.3 c -0.3,-0.6 -0.7,-1.1 -1,-1.7 l -0.1,0.7 -0.1,-0.2 c -0.3,-0.6 -0.7,-1.1 -1,-1.7 l -0.1,0.9 1,1.5 v 0.1 l -0.3,-0.3 c -0.3,-0.2 -0.6,-0.4 -0.9,-0.7 l -0.1,1 0.9,0.6 c 0.2,0.2 0.5,0.3 0.7,0.5 0.3,0.3 0.6,0.6 0.9,1 0.6,0.7 1.1,1.5 1.6,2.3 v 0.3 l -0.3,-0.5 c -0.3,-0.4 -0.6,-0.7 -1,-1 l -0.5,-0.4 c -0.1,0 -0.1,0 -0.2,-0.1 v 1 l 0.1,0.1 c 0.2,0.1 0.3,0.1 0.4,0.3 0.3,0.2 0.5,0.4 0.7,0.7 v 0.6 l 0.3,0.2 v 0.2 l -0.1,-0.1 v 1 l 0.3,0.3 -0.8,-0.5 -1,-0.9 v 0.2 l -1.1,-0.6 c -0.6,-0.2 -1.1,-0.5 -1.7,-0.5 v 1 c 0.6,-0.1 1.1,0.1 1.7,0.3 0.5,0.2 1,0.5 1.5,0.8 l 0.6,0.4 1,0.72 v 0.4 c -0.3,-0.3 -0.6,-0.6 -0.8,-0.95 l -0.1,1 c 0.3,0.3 0.6,0.6 0.8,1 v 0.1 -0.18 l 0.3,0.3 c 0.5,0.7 0.9,1.4 1.4,2.1 l -0.3,-0.3 c -0.6,-0.4 -1.2,-0.7 -1.8,-1.1 -0.3,-0.2 -0.7,-0.4 -1.1,-0.4 v 1 c 0.4,0 0.7,0.2 1.1,0.3 l 1.1,0.7 v 0.3 l 0.9,1.2 0.2,0.35 -2.1,-0.7 c -0.4,-0.2 -0.8,-0.4 -1.1,-0.6 l -0.1,1 h 0.1 c 0.1,0.1 0,0 0.3,0.1 l 0.8,0.3 2.2,0.7 c -0.1,0.13 -0.1,0.3 -0.2,0.4 l 0.1,1 c 0.1,-0.2 0.2,-0.4 0.2,-0.66 0,-0.2 0.1,-0.4 0.1,-0.6 v -0.1 0.5 -0.5 l 0.1,0.1 -0.1,0.4 v 0.4 h 0.2 l 0.1,0.6 v -1.2 l 0.2,0.35 v 0.1 l 0.1,0.9 c 0,-0.2 0.1,-0.3 0.2,-0.5 v -0.2 l 0.1,0.3 -0.1,0.2 0.1,1 0.1,-0.1 0.1,0.5 0.1,-0.2 0.6,-1 0.3,-0.32 0.1,0.1 0.1,0.4 v 0.1 -0.4 l 0.4,0.2 c 0.04,0.1 0.1,0.2 0.1,0.3 l 0.1,0.3 v 0.3 -0.8 l 0.2,0.9 c 0,-0.5 0,-0.9 -0.1,-1.4 l 0.2,0.1 0.6,0.2 0.22,0.1 v -1 l -0.2,-0.1 c -0.3,-0.35 -0.66,-0.6 -1,-0.9 0.1,-0.05 0.14,-0.1 0.24,-0.1 v -0.2 c 0.1,0 0.1,-0.03 0.2,-0.04 0.3,0 0.6,0 0.8,0.1 v -0.9 h -0.9 c -0.4,0.1 -0.8,0.2 -1.2,0.4 v 0.3 l -0.55,-0.5 -0.3,-1 v -0.6 l 0.1,-0.1 c 0,0.1 0.1,0.2 0.1,0.3 l 0.05,-0.4 0.5,-0.5 c 0.4,-0.2 0.7,-0.4 1.1,-0.7 l -0.1,-1 c -0.3,0.3 -0.7,0.5 -1,0.7 l -0.7,0.5 -0.7,-1.1 c 0.1,-0.3 0.2,-0.6 0.32,-0.9 0.2,-0.4 0.4,-0.9 0.72,-1.2 l 0.6,-0.7 -0.1,-1 c -0.2,0.3 -0.4,0.52 -0.6,0.8 -0.2,0.2 -0.4,0.5 -0.56,0.7 l -0.24,0.53 c -0.1,0.4 -0.3,0.9 -0.4,1.4 l 0.03,-0.4 0.3,-1.5 c 0.1,-0.3 0.2,-0.5 0.4,-0.6 l -0.1,-1 -0.3,0.4 -0.2,0.2 c -0.2,0.5 -0.3,1 -0.4,1.5 l -0.1,0.8 c 0,0 -0.1,0 -0.1,-0.1 l -0.2,-0.8 -0.1,-0.3 0.1,-0.4 0.1,-0.8 0.2,-1.6 v 0.3 -1.4 c 0.06,-0.2 0.1,-0.3 0.2,-0.4 l 0.26,-0.5 c 0.2,-0.4 0.5,-0.6 0.8,-0.9 0.3,-0.2 0.6,-0.5 1,-0.6 l -0.08,-1 c -0.4,0.2 -0.7,0.4 -1,0.7 l -0.1,0.1 0.1,-0.2 0.1,-0.1 V 449 l -0.2,1 c 0,-1.3 0.1,-1 -0.16,-0.6 l -0.5,0.8 c -0.2,0.3 -0.4,0.7 -0.5,1 V 448 c 0.04,-0.03 0.1,-0.1 0.1,-0.2 l -0.1,-0.8 v -0.93 l -0.1,0.92 v 0.1 c -0.2,0.4 -0.3,0.8 -0.5,1.2 -0.3,0.9 -0.46,1.8 -0.5,2.7 l -0.26,-0.9 v -0.4 c 0,-0.6 0,-1.1 -0.1,-1.6 0,-0.3 0.1,-0.6 0.1,-0.9 0,-0.1 0.08,-0.3 0.1,-0.4 0.1,-0.5 0.3,-1 0.48,-1.6 l 0.3,-0.9 0.1,-0.3 v -1.1 l -0.1,0.9 v -0.8 0.3 l -0.3,0.9 c -0.1,0.5 -0.34,1 -0.5,1.6 0,0.1 0,0.2 -0.1,0.3 0,0.3 -0.1,0.7 -0.1,1 l -0.4,-1.7 0.2,-0.5 0.1,0.8 0.2,-0.8 c 0,-0.2 0.1,-0.7 0.2,-0.9 l 0.3,-1.4 c 0.3,-0.5 0.6,-0.9 0.9,-1.4 0.3,-0.4 0.6,-0.9 1,-1.4 l -0.1,-1 -0.5,0.9 -0.1,-0.7 -0.3,0.6 -0.04,-0.4 -0.2,0.6 v -0.8 l -0.18,1 v -0.9 l -0.1,0.2 -0.1,0.3 -0.4,1.1 c -0.3,0.8 -0.6,1.6 -0.8,2.5 0,0.2 -0.1,0.5 -0.1,0.7 v -2 c 0.1,-0.1 0.1,-0.2 0.1,-0.3 0.03,-0.1 0.1,-0.4 0.1,-0.5 v -1 l -0.1,0.9 v -0.8 l -0.07,0.2 c 0,0 0,0.1 -0.1,0.1 v -0.6 l -0.2,1 v 0.2 c -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.1,0.3 -0.2,0.6 -0.2,0.9 l -0.2,-1 c -0.1,-0.2 -0.1,-0.4 -0.1,-0.6 v -0.1 c 0.4,-1.2 0.9,-2.4 1.5,-3.5 l 0.34,-0.7 0.3,-0.5 v -0.6 l 0.3,-0.5 -0.1,-1 -0.6,1.4 c -0.3,0.6 -0.6,1.1 -0.9,1.7 l -0.5,0.9 c -0.3,0.6 -0.5,1.3 -0.8,1.9 l -0.1,-0.4 v -0.6 l 0.1,-0.6 -0.1,-0.3 c 0,-1.1 -0.1,-2.1 -0.1,-3.2 v -4.2 l -0.1,1 v 4.1 c 0,0.6 0.1,1.2 0.1,1.8 l -0.6,-1.6 c 0,-0.3 0,-0.7 0.1,-1.1 0.1,-0.4 0.1,-0.7 0.2,-1.1 l 0.2,-0.5 c 0,-0.1 0.1,-0.1 0.1,-0.2 l -0.2,-0.9 c -0.04,0.4 -0.2,0.8 -0.23,1.1 -0.1,0.4 -0.1,0.4 -0.1,0.8 -0.1,0.6 -0.1,1.1 -0.1,1.6 -0.1,-0.4 -0.3,-0.7 -0.43,-1.1 l -1,-2.6 c -0.2,-0.6 -0.4,-1.3 -0.5,-2 l -0.1,0.7 -0.43,-1 z m 3,7.97 c 0.12,0.33 0.25,0.66 0.36,1 0.1,0.27 0.1,0.32 0.12,0.4 V 440 c -0.16,-0.52 -0.3,-1.04 -0.48,-1.55 z m -0.22,0.4 c 0.25,0.8 0.5,1.6 0.72,2.4 v 0.1 l -0.25,-0.48 -0.1,-0.3 c -0.07,-0.3 -0.17,-0.5 -0.26,-0.7 0,-0.3 -0.1,-0.6 -0.1,-0.9 v -0.2 z m 2.24,0.33 c -0.26,0.66 -0.52,1.34 -0.76,2.02 0,0.04 -0.03,0.1 -0.04,0.13 0,-0.1 -0.03,-0.2 -0.04,-0.3 l 0.46,-1.13 z m -0.87,1.93 -0.1,0.72 c -0.03,-0.05 -0.06,-0.18 -0.08,-0.22 0,-0.17 0.1,-0.33 0.1,-0.5 z m 2.43,1.03 -0.05,0.16 -0.1,0.17 0.15,-0.4 z m -2.46,0.56 0.15,0.84 0.1,0.86 v 0.2 l -0.2,-0.48 c 0,-0.1 0,-0.2 -0.1,-0.32 l -0.2,-0.93 v -0.2 z m 2.14,0.2 -0.12,0.36 -0.3,0.93 -0.12,0.3 c 0.13,-0.4 0.28,-0.9 0.46,-1.3 l 0.08,-0.2 z m -1.25,0.55 v 2.26 l -0.26,-1.3 0.2,-0.75 0.06,-0.2 z m -1.52,0.03 0.1,0.13 v 0.3 -0.13 l 0.1,-0.3 z m 0.2,0.7 c 0.1,0.16 0.1,0.32 0.1,0.48 0,-0.1 -0.1,-0.18 -0.1,-0.27 l 0.1,-0.1 v -0.1 z m 0.4,0.36 0.1,0.3 v 0.18 -0.48 z m -0.8,0.1 0.1,0.1 v 0.26 l 0.1,-0.22 v 0.6 -0.74 z m 1.4,0.47 0.3,1.42 v 0.02 -0.38 c 0,-0.4 -0.1,-0.6 -0.2,-1 v -0.2 z m -1.1,0 0.6,0.96 c 0,0.1 0.1,0.3 0.1,0.4 -0.1,-0.1 -0.2,-0.2 -0.3,-0.4 l -0.2,-0.4 v -0.7 l 0.1,-0.2 z m -2,0.07 c 0.2,0.07 0.3,0.15 0.5,0.25 0.3,0.14 0.5,0.34 0.7,0.54 0.3,0.2 0.4,0.5 0.6,0.8 l 0.5,0.9 c 0.2,0.4 0.3,0.8 0.4,1.2 l 0.1,0.1 c -0.1,-0.4 -0.3,-0.7 -0.6,-1.1 l -1.8,-2.7 -0.1,-0.1 z m 3,1.7 0.2,0.34 v 0.02 l -0.1,-0.15 v -0.2 z m -0.5,0.4 0.3,0.32 0.1,0.53 V 448 l -0.2,-0.7 z m 1.2,0.38 c 0.2,0.75 0.4,1.5 0.5,2.26 v 0.16 l -0.1,-0.7 c -0.1,-0.45 -0.1,-0.72 -0.2,-1.16 v -0.53 z m -0.7,0.23 0.1,0.4 -0.1,0.3 v -0.6 z m 0.3,1 v 1.4 c 0,0.2 0.1,0.3 0,0.4 v -0.3 1.1 c -0.1,-0.1 -0.1,-0.3 -0.2,-0.5 v -0.6 c 0,0.1 0,0.1 0.1,0.2 l 0.1,-0.9 0.2,-0.4 z m 0.1,0.5 c 0,0.1 0.1,0.1 0.1,0.2 v 0.6 l 0.2,1 v -0.5 l 0.1,0.7 0.1,1.6 -0.3,-1 v -2.3 z m 2.3,0.2 v 0.8 l 0.1,2.2 v 1.3 l -0.3,0.9 c -0.3,0.6 -0.4,1.3 -0.5,2 l -0.1,-0.7 v -0.1 c 0,-0.5 0,-1 0.1,-1.4 0.1,0.3 0.2,0.7 0.2,1 v 0.4 l 0.2,-0.9 v -0.4 c 0,-0.4 -0.1,-0.8 -0.2,-1.2 0.1,-0.9 0.2,-1.7 0.5,-2.6 0.1,-0.3 0.3,-0.6 0.4,-0.9 z m -1.9,0.7 0.1,0.7 0.2,0.8 v 1.9 -0.2 c 0,-1 -0.1,-2 -0.2,-3 z m -1.1,0.8 0.2,0.4 v 0.2 c 0,-0.1 -0.1,-0.2 -0.1,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 z m 1.6,1.4 0.2,0.7 0.1,-0.5 0.2,0.9 v 1.7 c -0.2,-0.8 -0.3,-1.6 -0.4,-2.4 v -0.3 z m -0.8,2 c 0,0.1 0,0.1 0.1,0.2 v 0.1 l -0.1,-0.1 z m 0,1.6 0.4,0.7 0.2,0.5 v 0.2 c -0.2,-0.3 -0.4,-0.7 -0.6,-1 v -0.3 z m 2.3,0.1 -0.1,1.3 -0.1,0.9 -0.2,-0.4 v -0.4 c 0.1,-0.4 0.1,-0.9 0.2,-1.3 v 0.5 l 0.2,1 v -0.1 c 0,-0.3 0.1,-0.7 0.1,-1 l 0.1,-0.4 z m -1.6,1.3 0.2,0.4 -0.1,-0.3 v -0.1 z m 0.8,1 0.1,0.1 0.1,0.6 -0.1,-0.3 -0.1,-0.2 0.1,-0.2 z m 39.15278,1.79231 -40.25278,0.008 0.7,0.7 0.1,0.1 v 0.1 c 0,0.1 0.1,0.1 0.1,0.2 l 0.3,0.7 0.1,0.3 v 0.1 l 0.1,0.2 0.2,0.6 -0.7,-1.2 -0.5,-0.8 -0.2,-0.4 -0.2,-0.2 v -0.5 z M 492.31,463.31 l 0.3,0.5 0.1,0.3 v 0.2 l -0.4,-0.8 0.1,-0.1 z m -0.5,0.2 0.1,0.2 0.2,0.4 v 0.1 l -0.3,-0.4 z m 1.2,1.2 c 0.1,0.1 0.1,0.2 0.1,0.4 l -0.1,-0.3 0.1,-0.1 z m -0.6,0.2 0.3,1.3 0.1,0.2 -0.6,-0.2 v -0.9 c 0,0.1 0.1,0.1 0.1,0.2 v -0.3 l 0.1,0.4 0.1,-0.7 z m -0.9,0.2 c 0.1,0.1 0.2,0.2 0.3,0.4 l 0.1,0.1 0.1,0.2 c -0.1,-0.2 -0.3,-0.4 -0.4,-0.6 z m 0.5,0.5 0.1,0.1 0.1,0.2 v 0.2 l -0.1,-0.2 v -0.2 z m 1.3,0.8 0.1,0.1 v 0.1 -0.1 z m 0.4,0.3 0.1,0.3 h -0.1 v -0.2 z m -0.2,0.1 0.1,0.2 h -0.1 v -0.1 z m -0.1,1.2 v 0.1 z"
+		 id="path4653-3-1"
+		 sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccscccccccccccccscccccccccccccccsccccccccsccccccccccccccccccccccccccccccccccccsccccccccccccccccssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccscsscccccccccccccccccccccccccccccccccccscccccccccccscccccccccccccccsccsccscccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccsccccccccccccccccccccccccccccccccccccccccsccccccccccscccccccccccccccscsccscsccccccscccccsccccccccccccccccccccccccccccccscccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
+	</g>
   </g>
   <g
-     inkscape:groupmode="layer"
-     id="layer12"
-     inkscape:label="Layer 1" />
+	 inkscape:groupmode="layer"
+	 id="layer12"
+	 inkscape:label="Layer 1" />
   <g
-     inkscape:groupmode="layer"
-     id="layer13"
-     inkscape:label="Layer 2" />
+	 inkscape:groupmode="layer"
+	 id="layer13"
+	 inkscape:label="Layer 2" />
 </svg>
diff --git a/resources/vector/hair/underarm bushy.svg b/resources/vector/hair/underarm bushy.svg
index b68492608d81d58e95d2cfc7b4ff5964e7577db0..169d6b4175dca07116da96d49c7d1a273ea2cd5c 100644
--- a/resources/vector/hair/underarm bushy.svg	
+++ b/resources/vector/hair/underarm bushy.svg	
@@ -13,103 +13,103 @@
    sodipodi:docname="underarm bushy.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
   <metadata
-     id="metadata4148">
-    <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>
+	 id="metadata4148">
+	<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="defs4146" />
+	 id="defs4146" />
   <sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1159"
-     inkscape:window-height="928"
-     id="namedview4144"
-     showgrid="false"
-     inkscape:zoom="0.788"
-     inkscape:cx="500"
-     inkscape:cy="630.24332"
-     inkscape:window-x="10"
-     inkscape:window-y="30"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="layer13"
-     inkscape:snap-global="false" />
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1159"
+	 inkscape:window-height="928"
+	 id="namedview4144"
+	 showgrid="false"
+	 inkscape:zoom="0.788"
+	 inkscape:cx="500"
+	 inkscape:cy="630.24332"
+	 inkscape:window-x="10"
+	 inkscape:window-y="30"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="layer13"
+	 inkscape:snap-global="false" />
   <style
-     id="style2">.st0{fill:#010101;} .st1{fill:#F6E0E8;}</style>
+	 id="style2">.st0{fill:#010101;} .st1{fill:#F6E0E8;}</style>
   <style
-     id="style4208"
-     type="text/css">
+	 id="style4208"
+	 type="text/css">
 	.st0{fill:#010101;}
 	.st1{fill:#F6E0E8;}
 </style>
   <g
-     inkscape:groupmode="layer"
-     id="layer14"
-     inkscape:label="Layer 3">
-    <g
-       transform="matrix(0.32825958,0.34029125,-0.21729162,0.51740458,407.60151,-162.98551)"
-       style="stroke-width:0.1;stroke-linecap:round"
-       id="layer2-4-3"
-       inkscape:transform-center-x="5.1605772"
-       inkscape:transform-center-y="-2.3165394">
-      <path
-         style="fill:#9497a2"
-         inkscape:connector-curvature="0"
-         d="m 495.4,468.64 -1.5,1.78 -0.37,-2.72 -2.7,1.5 -1.6,-3.65 -4.5,-1.97 -2.25,-3.18 5.53,2.25 -5.5,-4.4 2.2,-0.38 -3.9,-3 -3.2,-4.3 5.4,3 -4.9,-6.47 4.4,1.78 -3.8,-7.86 2.6,2.34 -4.31,-6.36 5.06,2 -2.2,-3.9 -3.5,-3.2 4.2,1.1 -3.86,-8.6 -0.63,-5.4 4.2,10.3 -0.32,-9.9 3,10.2 2.64,-10.5 0.8,6.2 0.2,5.5 7.1,-10.2 -3,6.95 6.3,-3.4 -5.5,5.1 -2.9,3 11.2,-4 -4.7,4.1 8.2,-1.9 -10.7,5 8.4,1.02 -6.5,3.72 5.6,-0.1 -5.3,3.1 3.7,1.4 -4.4,1.7 6.4,-1.4 2.1,-2.1 -4.8,5.2 4.3,-1.2 -7,5.9 5.4,-2 -4.2,4.2 -2.9,3.7 6,-2.1 -3.3,5 5.5,-0.8 -5,2.3 3.2,1.8 -3.8,0.3 2.5,3.6 z"
-         id="path4488-3-1" />
-      <path
-         style="fill:#b4b3b7"
-         inkscape:connector-curvature="0"
-         d="m 485.05,423.03 z m 0,0 -0.16,0.97 v 1.05 c -0.1,0.42 0,0.83 0.1,1.24 0.1,0.4 0.1,0.3 0.1,0.8 0,0.4 0.1,0.9 0.1,1.3 -0.1,-0.4 -0.1,-0.7 -0.1,-1.1 l -0.9,0.4 c 0,0.3 0.1,0.7 0.1,1 l 0.3,1.4 c 0.1,0.3 0.1,0.7 0.2,1.1 l 0.4,-0.3 v 0.2 -0.3 l 0.3,-0.2 c 0,-0.4 -0.1,-0.8 -0.2,-1.1 0,-0.1 0,-0.2 -0.1,-0.3 0,-0.3 -0.1,-0.6 -0.1,-0.8 0,-0.9 -0.1,-1.8 -0.2,-2.6 0,-0.2 0,-0.3 -0.1,-0.4 -0.1,-0.6 -0.3,-1.1 -0.2,-1.7 v -1 z m -8.48,0.45 -0.12,0.98 c 0.1,0.33 0.27,0.65 0.4,0.97 0.2,0.44 0.35,0.88 0.5,1.33 0.16,0.46 0.2,0.94 0.3,1.4 0.12,0.46 0.2,0.92 0.3,1.37 0.04,0.24 0.13,0.47 0.24,0.7 l 0.1,-0.96 c -0.1,-0.18 -0.2,-0.38 -0.2,-0.58 0,0 0.1,0.1 0.1,0.2 l 0.6,1.3 0.5,1.2 v 0.1 c 0.1,0.3 -0.1,-0.1 0.1,0.3 l 0.2,0.4 0.1,0.2 -1.2,-0.6 c -0.6,-0.2 -1.1,-0.4 -1.7,-0.6 -0.3,-0.1 -0.6,-0.1 -0.8,-0.1 v 1 c 0.2,-0.1 0.5,0 0.8,0 l 1.2,0.3 v 0.4 c 0.2,-0.1 0.5,0 0.7,0.1 l 0.3,0.1 -0.2,0.1 1,1 c 0.4,0.3 0.9,0.7 1.4,1.1 0.2,0.1 0.1,0 0.2,0.2 l 0.4,-0.2 c 0.1,0.1 0.3,0.3 0.4,0.5 0.2,0.3 0.5,0.5 0.7,0.8 l 0.5,0.6 0.4,0.6 c 0.2,0.3 0.5,0.6 0.7,0.9 l 0.7,0.8 0.8,-0.5 -0.7,-0.9 c -0.2,-0.3 -0.5,-0.6 -0.7,-1 l -0.5,-0.7 -0.6,-0.6 -0.7,-0.8 -0.7,-0.7 c -0.2,-0.1 -0.4,-0.2 -0.6,-0.2 l -0.2,0.1 -0.6,-0.5 0.1,-0.4 c 0.6,0.2 1.3,0.5 1.9,0.7 0.3,0.1 0.6,0.3 0.8,0.4 l 0.3,0.2 c 0.2,0.3 0.3,0.5 0.5,0.8 l 0.8,-0.4 c -0.2,-0.4 -0.4,-0.7 -0.5,-1.1 -0.1,-0.4 -0.3,-0.7 -0.6,-0.9 l 0.4,-0.2 c -0.2,-0.4 -0.4,-0.7 -0.6,-1 -0.5,-0.7 -0.9,-1.3 -1.4,-1.9 l -0.4,-0.4 0.3,-0.9 0.7,-2.3 c 0.2,-0.4 0.4,-0.9 0.5,-1.4 l -0.1,-0.9 c -0.1,0.5 -0.3,1 -0.5,1.5 -0.2,0.8 -0.5,1.5 -0.7,2.3 -0.1,0.2 -0.1,0.4 -0.2,0.6 v -0.3 c -0.1,-0.3 -0.2,-0.6 -0.4,-0.8 l -0.5,-0.9 -0.6,-0.9 c -0.2,-0.3 -0.4,-0.6 -0.4,-0.9 l -0.1,-0.2 c 0.1,-0.2 0.1,-0.4 0.2,-0.6 l -0.1,-1 c -0.2,0.2 -0.2,0.5 -0.3,0.7 -0.1,0.5 -0.1,1 0,1.5 v 0.4 c 0.2,0.3 0.4,0.8 0.5,1.2 l 0.6,1.6 c 0.1,0.1 0.1,0.3 0.2,0.5 l -0.7,0.4 c 0.4,0.3 0.7,0.7 1.1,1 l 0.1,0.1 v 0.7 c -0.4,-0.3 -0.8,-0.6 -1.1,-1 l -0.9,0.5 c 0.4,0.4 0.9,0.7 1.4,1.1 0.6,0.4 1.2,0.8 1.8,1.3 -0.8,-0.3 -1.6,-0.6 -2.5,-1 l -0.8,-0.3 v -0.7 c -0.1,-0.2 -0.2,-0.4 -0.4,-0.7 l -0.3,-0.9 -0.6,-1.2 -0.7,-1.3 c -0.2,-0.3 -0.3,-0.6 -0.4,-0.9 l -0.1,0.4 v -0.2 c -0.1,-0.5 -0.1,-1 -0.3,-1.4 -0.1,-0.5 -0.3,-0.9 -0.5,-1.4 -0.1,-0.3 -0.3,-0.6 -0.4,-1 z m 13.57,1.1 -0.15,0.95 c 0,-0.2 0,-0.42 -0.1,-0.64 l -0.1,0.2 -0.2,0.9 c -0.2,0.7 -0.5,1.5 -0.7,2.2 -0.3,0.2 -0.5,0.5 -0.7,0.8 -0.1,0.1 -0.2,0.3 -0.3,0.5 -0.1,0.1 -0.2,0.1 -0.2,0.2 -0.5,0.4 -0.9,0.9 -1.2,1.5 -0.2,0.3 -0.3,0.7 -0.4,1.1 v 0.1 l 0.9,-0.4 v -0.1 c 0,-0.4 0.2,-0.8 0.4,-1.1 0.1,-0.3 0.3,-0.6 0.6,-0.9 v 0.5 -0.2 l 0.1,0.7 c 0,-0.1 0.1,-0.3 0.1,-0.4 l 0.6,-1.6 v -0.1 l 0.1,-0.2 c 0.4,-0.3 0.8,-0.6 1.3,-0.9 0.5,-0.3 1,-0.6 1.7,-0.6 h 0.8 v -1 h -0.8 c -0.7,0 -1.2,0.3 -1.8,0.6 l -1,0.6 0.3,-1 c 0.1,-0.4 0.2,-0.7 0.2,-1 v -1.5 z m -8.2,4.34 0.22,0.4 c 0.12,0.18 0.2,0.4 0.25,0.6 l -0.2,-0.4 -0.2,-0.6 z m 2.34,0.4 -0.87,0.45 0.2,0.84 0.2,0.5 0.9,-0.4 -0.1,-0.4 c 0,-0.3 -0.1,-0.5 -0.1,-0.8 z m 11.02,1.14 c -0.43,0.1 -0.85,0.23 -1.27,0.37 -0.53,0.2 -1.05,0.42 -1.55,0.68 l -0.42,0.2 -1.28,0.6 -0.6,0.3 -0.23,0.2 -0.1,0.1 c -0.23,0.2 -0.46,0.3 -0.7,0.5 l 0.53,-0.2 -0.1,0.2 -0.06,0.2 v 0.1 c -0.4,0.2 -0.8,0.4 -1.2,0.7 l 0.9,-0.3 c -1.5,0.9 -0.42,0.2 -0.05,0.1 l 0.2,-0.1 -0.2,0.2 c -0.17,0.2 -0.32,0.4 -0.44,0.6 l 0.9,-0.4 v 0.2 l 0.08,-0.2 0.2,-0.2 0.8,-0.4 0.9,-0.5 v 0.1 l 0.2,-0.1 -0.2,0.2 -0.2,0.2 c -0.2,0.2 -0.5,0.5 -0.8,0.7 0,0.1 0,0.1 -0.1,0.1 v -0.2 l -0.3,0.5 -0.1,0.6 c 0,0.3 -0.1,0.5 -0.2,0.8 l -0.1,0.3 0.1,1 0.2,-0.3 c 0.1,-0.2 0.2,-0.4 0.2,-0.7 0.1,-0.2 0.2,-0.3 0.2,-0.6 0.1,-0.1 0.2,-0.3 0.3,-0.4 v -0.6 l 0.2,-0.1 h 0.1 v 0.1 l 0.9,-0.4 c 0,0 0.1,-0.1 0.1,-0.2 1.1,-0.6 1.2,-0.7 2.2,-1.2 0.7,-0.4 1.4,-0.7 2.1,-1 0.5,-0.1 0.8,-0.3 1.2,-0.6 v -0.1 h -0.1 c 0.1,0 0,0 0,0 h -0.1 l 0.1,-0.1 -0.5,0.2 -0.9,0.3 v -0.6 h 0.1 -0.1 z m -0.53,1.22 c -0.14,0.06 -0.3,0.12 -0.42,0.2 l -0.33,0.18 0.3,-0.23 z m -12.28,0.03 0.9,1.3 -1,-0.6 v -0.3 l -0.1,-0.1 v -0.1 z m 10.8,0.7 -1.7,1 0.4,-0.4 0.4,-0.3 h 0.1 l 0.6,-0.2 z m 0.9,3.7 h -0.7 c -0.3,0.1 -0.7,0.1 -1,0.1 -0.5,0 -0.9,0.1 -1.3,0.2 -0.3,0.1 -0.5,0.1 -0.8,0.2 l -0.1,0.1 -0.8,0.6 c 0.2,-0.1 0.4,-0.2 0.7,-0.2 0.4,-0.1 0.8,-0.1 1.2,-0.2 h 1.6 z m -0.5,0.6 -0.6,0.2 c -0.3,0.1 -0.6,0.1 -0.8,0.2 -0.1,0 -0.1,0.1 -0.1,0.1 0,0 -0.1,0 -0.1,0.1 h -0.5 c -0.3,0 -0.5,0 -0.7,0.1 l -0.6,0.3 c -0.2,0.1 -0.4,0.2 -0.4,0.5 l 0.1,0.1 -0.5,0.3 0.5,-0.2 -0.3,0.2 0.4,-0.2 h 0.1 l -0.1,0.1 0.2,-0.1 -0.1,0.1 -0.3,0.3 -0.1,0.1 0.9,-0.4 v -0.1 h 0.1 l -0.8,0.4 c 0,0.1 -0.2,0.4 -0.2,0.5 l 0.1,0.1 0.1,0.1 c 0.1,0.1 0.3,0 0.4,0 l -0.1,0.1 c -0.4,0.3 -0.7,0.6 -1.1,1 l -0.7,1 v 0.1 c 0,0.2 0.3,0.1 0.5,-0.1 l -0.2,0.4 0.9,-0.4 c 0.1,-0.2 0.1,-0.4 0.3,-0.6 l 0.2,-0.3 v 0.7 c 0,0.1 0.1,0.1 0.1,0 v -0.1 l 0.1,-0.1 c 0.1,-0.2 0.3,-0.3 0.4,-0.5 v 0.1 l 0.2,-0.2 c 0.3,-0.3 0.8,-0.6 1.2,-0.9 0.5,-0.3 1,-0.6 1.6,-0.8 0.1,-0.1 0.4,-0.2 0.5,-0.2 h 0.2 v -0.2 h 1.2 l 0.8,-0.5 h -0.9 l 0.3,-0.2 -0.1,-0.1 h -0.2 v 0.1 l 0.1,-0.1 -1.2,0.1 h -0.6 v -0.2 c -0.3,0.1 -0.7,0.1 -1.1,0.1 z m -16.2,1 v 1 h 0.8 c 0.4,0 0.8,0.1 1.1,0.3 l -0.4,0.3 c 0.2,0 0.5,0 0.8,0.1 0.3,0.1 0.6,0.4 0.8,0.6 l 0.4,0.5 -0.2,0.2 0.4,0.5 -0.4,0.3 c 0.2,0 0.3,0 0.5,0.1 l 0.9,1.3 0.9,1.5 0.2,0.5 0.8,-0.4 -0.3,-0.5 c -0.3,-0.4 -0.5,-0.8 -0.8,-1.2 l 1.4,1 0.6,0.6 0.8,-0.5 -0.6,-0.5 c -0.5,-0.3 -1.1,-0.6 -1.6,-1 -0.5,-0.3 -1,-0.7 -1.5,-0.9 -0.1,0 -0.2,-0.1 -0.3,-0.1 v -0.1 l -0.3,-0.4 0.7,0.5 c 0.3,0.2 0.6,0.3 0.9,0.5 l 0.4,0.3 c 0.4,0.3 0.8,0.5 1.2,0.8 l 0.8,0.6 0.1,-0.9 -0.9,-0.6 -1.3,-0.8 c -0.4,-0.2 -0.9,-0.4 -1.3,-0.7 -0.4,-0.2 -0.7,-0.4 -1,-0.6 v 0.5 l -0.2,-0.2 c -0.3,-0.2 -0.6,-0.5 -0.9,-0.6 l -0.2,-0.1 v -0.2 c -0.2,-0.2 -0.5,-0.3 -0.7,-0.4 -0.2,-0.1 -0.4,-0.2 -0.5,-0.2 -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 h -0.8 z m 15.9,0.1 -0.1,0.1 -0.3,0.1 h -0.3 c 0.2,0 0.4,-0.1 0.6,-0.1 z m -3.1,0.2 h -0.1 z m 1.2,0 z m -0.1,0.2 c 0,0.1 -0.1,0.1 -0.1,0.2 l -0.1,0.1 c 0,0.1 -0.1,0.1 -0.1,0.1 l 0.1,-0.3 z m 5.3,2.6 c -0.6,0.2 -1.2,0.4 -1.7,0.7 h -0.1 c 0.1,-0.1 0.3,-0.2 0.2,-0.4 l -0.1,-0.1 h -0.1 l -0.6,0.2 c -0.2,0 -0.4,0.1 -0.5,0.2 -0.4,0.3 -0.9,0.5 -1.3,0.8 -0.2,0.2 -0.4,0.5 -0.6,0.7 -0.1,0.2 -0.2,0.4 -0.4,0.6 l 0.7,-0.3 c -0.2,0.2 -0.3,0.4 -0.4,0.6 l -0.1,0.1 -0.8,0.6 0.2,-0.1 c 0.1,-0.1 0.2,-0.2 0.4,-0.2 l -0.1,0.2 h -0.1 l -0.2,0.3 c -0.1,0.1 -0.3,0.4 -0.4,0.5 l -0.3,0.5 c 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.2 -0.3,0.7 -0.3,1 v 0.1 l 0.1,0.1 c 0.4,-0.3 0.8,-0.4 1.1,-0.7 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.3 0.2,-0.4 l 0.2,-0.5 0.4,-0.6 c 0.2,-0.4 0.5,-0.7 0.7,-1.1 v -0.1 l 0.2,-0.1 0.8,-0.4 c 0.6,-0.3 1.2,-0.5 1.7,-0.9 v -0.1 h -0.1 c -0.2,0 -0.3,0.1 -0.5,0.1 h -0.3 c -0.4,0.1 -0.8,0.6 -1.1,0.6 h -0.1 l 0.4,-0.4 1.6,-0.6 z m -2.4,0.8 -0.1,0.1 -0.3,0.3 -0.7,0.4 -0.5,0.3 0.2,-0.3 0.3,-0.4 c 0,0 0.1,0 0.1,-0.1 l 0.2,-0.1 c 0.2,0 0.4,-0.2 0.7,-0.2 z m 0.5,0.7 -0.6,0.3 -0.6,0.3 0.2,-0.1 0.4,-0.3 0.2,-0.1 h 0.4 z m -15.9,0.3 -0.1,1 0.6,0.3 1,0.7 c 0.1,0.1 0.2,0.1 0.3,0.2 l -0.3,0.2 c 0.2,0.2 0.5,0.3 0.9,0.4 0.1,0.1 0.3,0.1 0.5,0.2 l 0.5,0.5 c 0.1,0.2 0.2,0.3 0.3,0.5 l 0.1,-0.9 c 0.2,0.1 0.5,0.2 0.7,0.4 l 0.2,0.2 v 0.1 c 0.2,0.4 0.3,0.7 0.4,1.1 -0.3,-0.1 -0.6,-0.2 -0.9,-0.4 l -0.8,0.6 c 0.3,0.1 0.7,0.3 1,0.4 0.4,0.2 0.9,0.5 1.3,0.7 0.2,0.4 0.3,0.7 0.6,1 l 0.6,0.5 0.8,-0.5 h -0.1 l 0.3,-0.2 c -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.3,-0.3 -0.7,-0.7 -1.1,-0.9 -0.1,0 -0.1,0 -0.2,-0.1 l -0.2,-0.3 -0.2,-0.3 c -0.2,-0.3 -0.2,-0.4 -0.3,-0.7 l 0.1,0.1 0.6,0.5 0.8,-0.5 -0.7,-0.5 c -0.3,-0.2 -0.5,-0.3 -0.8,-0.4 l -0.6,-0.3 v -0.1 l -0.1,-0.1 -0.2,-0.3 -0.3,-0.6 -0.7,0.5 c -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.2,-0.1 -0.5,-0.2 -0.7,-0.2 l -0.2,0.1 -0.5,-0.3 c -0.4,-0.3 -0.8,-0.5 -1.2,-0.8 l -1,-0.7 -0.6,-0.3 z m 17,1.5 c -0.3,0.1 -0.6,0.1 -0.9,0.2 l -0.3,0.1 h -0.4 c -0.2,0 -0.4,0 -0.6,0.1 -0.2,0.1 -0.3,0.2 -0.4,0.2 l -0.3,0.3 -0.1,0.2 c -0.7,0.4 -1.3,0.8 -2,1.3 l 0.9,-0.3 c 0.3,-0.2 0.6,-0.4 0.8,-0.5 h 0.1 l 0.2,-0.1 v 0.2 c 0,0.1 0,0.2 -0.1,0.3 v 0.1 l -1,0.7 c -0.4,0.3 -0.8,0.6 -1.1,1 -0.2,0.3 -0.4,0.6 -0.5,0.8 l 0.1,1 c 0.1,-0.3 0.2,-0.6 0.4,-0.8 0.3,-0.4 0.7,-0.7 1.1,-1 0.4,-0.3 0.8,-0.5 1.2,-0.7 v -0.2 l 0.2,-0.6 c 0,-0.1 0,-0.2 0.1,-0.2 0.1,0 0.2,-0.1 0.4,-0.2 0.2,-0.1 0.3,-0.1 0.5,-0.1 h 2.2 v -1 h -0.8 l 0.3,-0.2 h -0.2 z m 2.3,2.3 c -0.3,0.2 -0.7,0.2 -1,0.3 l 0.1,-0.1 c -0.4,0.1 -0.7,0.1 -1.1,0.1 -0.5,0 -0.9,0.1 -1.3,0.3 -0.5,0.3 -1,0.5 -1.3,0.9 l -0.2,0.2 -0.2,0.1 c -0.5,0.3 -0.8,0.8 -1.2,1.3 -0.3,0.4 -0.5,0.8 -0.8,1.2 l 0.8,-0.4 0.5,-0.8 v 0.1 l 0.9,-0.4 v -0.2 c 0.1,-0.3 0.2,-0.5 0.4,-0.8 h 0.3 -0.1 l 0.1,0.9 0.2,-0.3 c 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.2 0.4,-0.2 0.5,-0.3 0.5,-0.2 1,-0.3 1.5,-0.4 0.5,-0.1 0.9,-0.1 1.3,-0.2 z m -3.3,0.9 c -0.1,0 -0.1,0 -0.1,0.1 h -0.4 c 0,-0.1 0,-0.1 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.1 z m 2.7,1 h -0.1 l -0.3,0.1 -0.7,0.2 c -0.4,0.1 -0.8,0.2 -1.1,0.4 l -0.7,0.2 -0.7,0.4 -0.4,0.2 -0.4,0.2 -0.1,-0.9 c -0.3,0.1 -0.5,0.3 -0.7,0.5 -0.4,0.4 -0.6,0.8 -0.9,1.3 l -0.2,0.5 -0.1,0.1 c -0.1,0.1 -0.2,0.2 -0.3,0.4 l 0.1,-0.1 -0.1,0.1 v 0.4 c -0.1,0.1 0,0.1 -0.1,0.2 l 0.1,-0.1 v 0.3 l 0.2,-0.5 0.5,-0.2 0.1,-0.1 0.6,-0.6 c 0.1,-0.1 0.2,-0.3 0.4,-0.4 l 0.2,-0.1 0.2,-0.1 1.5,-0.6 1.8,-0.6 c 0.4,0 0.7,-0.1 1.1,-0.1 v -1 c -0.4,0 -0.8,0.2 -1.1,0.2 l -0.3,0.1 z m -16.6,0.3 -0.8,0.5 c 0.3,0 0.5,0.2 0.7,0.3 l 0.9,0.6 0.8,0.6 -0.6,0.4 h 0.4 l -0.2,0.2 0.6,0.4 0.8,0.5 c 0,0.3 0.1,0.5 0.3,0.7 0.3,0.6 -0.1,-0.1 0.3,0.6 0.3,0.6 0.7,1.2 1.1,1.8 l -0.3,-0.2 -0.6,-0.2 c -0.4,-0.1 -0.7,-0.3 -1,-0.5 l -1.3,-0.8 c -0.3,-0.2 -0.6,-0.3 -0.9,-0.5 l -0.4,0.3 v -0.9 l -0.2,-0.1 c -0.4,-0.2 -0.8,-0.4 -1.3,-0.5 l -0.7,-0.3 -0.1,1 0.7,0.3 c 0.5,0.1 0.8,0.3 1.2,0.5 l 0.2,0.1 -0.4,0.3 c 0.3,0.1 0.6,0.3 0.9,0.5 l 1.3,0.8 c 0.3,0.2 0.6,0.4 0.9,0.5 0.2,0.1 0.3,0.2 0.5,0.3 l 0.2,0.3 0.8,-0.5 0.1,0.1 c 0.2,0.5 0.5,0.9 0.8,1.3 l 0.2,0.3 0.8,-0.5 -0.2,-0.2 c -0.3,-0.4 -0.6,-0.8 -0.9,-1.3 l -1,-1.7 0.6,0.3 c 0.4,0.2 0.7,0.5 1,0.8 0.3,0.4 0.5,0.8 0.7,1.2 l 0.3,0.9 0.8,-0.4 -0.3,-0.9 c 0,-0.2 -0.1,-0.3 -0.2,-0.5 v -0.1 l 0.4,-0.2 c -0.2,-0.2 -0.5,-0.4 -0.7,-0.7 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 l -0.7,-0.6 c -0.3,-0.2 -0.5,-0.5 -0.8,-0.7 v -0.1 l -0.2,-0.1 -0.4,-0.3 -1.1,-0.6 c -0.3,-0.2 -0.5,-0.3 -0.8,-0.5 l -1.1,-0.8 c -0.3,-0.2 -0.6,-0.5 -0.9,-0.6 l -0.8,-0.3 z m 11.3,2.6 v 0.3 c -0.1,0.1 -0.2,0.1 -0.4,0.2 l -0.2,0.1 v -0.1 l 0.2,-0.3 0.2,-0.3 z m 3.8,1.2 -0.9,0.4 c -0.3,0.2 -0.6,0.4 -0.8,0.6 -0.3,0.2 -0.5,0.4 -0.7,0.6 l -0.8,0.4 c -0.4,0.3 -0.7,0.6 -1,0.9 -0.2,0.2 -0.3,0.5 -0.4,0.7 l 0.6,-0.2 v 0.1 c -0.2,0.3 -0.3,0.7 -0.4,1.1 l -0.6,0.4 c -0.5,0.4 -1,0.8 -1.5,1.3 l 0.9,-0.3 c 0.4,-0.4 0.8,-0.7 1.3,-1.1 v 0.5 c -0.2,0.3 -0.4,0.7 -0.5,1.1 l 0.8,-0.4 c 0.1,-0.4 0.3,-0.8 0.5,-1.1 v 0.1 c 0,0.3 -0.1,0.6 -0.1,0.8 v 0.1 l 0.8,-0.4 c 0,-0.3 0.1,-0.6 0.1,-0.8 0.1,-0.3 0.1,-0.6 0.2,-0.9 l 0.2,-0.2 c 0.4,-0.1 0.7,-0.2 1.1,-0.2 l 0.8,-0.6 c -0.5,0.1 -1,0.2 -1.4,0.3 0.3,-0.2 0.6,-0.5 0.9,-0.7 0.6,-0.3 0.6,-0.3 0.9,-0.5 l -0.9,0.4 c -0.1,0 -0.1,0.1 -0.1,0.1 l 0.7,-0.4 -0.1,0.1 c -0.1,0 -0.1,0.1 -0.2,0.1 l -1.1,0.6 c -0.1,0.1 -0.1,0.1 -0.2,0.1 -0.2,0.1 -0.3,0.3 -0.5,0.4 l -0.2,0.2 0.1,-0.4 1.3,-0.9 c 0.4,-0.2 0.8,-0.4 1.3,-0.6 0.3,-0.1 0.5,-0.1 0.8,-0.2 v -1 l -0.8,0.3 c -0.4,0.1 -0.7,0.3 -1.1,0.5 l -0.5,0.2 0.5,-0.4 0.9,-0.7 z m -11,0.5 z m 8.3,1.5 -0.2,0.2 c -0.2,0.1 -0.4,0.3 -0.6,0.5 0,-0.1 0,-0.1 0.1,-0.1 0.2,-0.3 0.4,-0.5 0.6,-0.6 z m -0.6,1.7 c 0,0.1 -0.1,0.2 -0.1,0.2 l -0.3,0.2 v -0.1 l 0.3,-0.3 z m -0.1,0.4 c 0,0.1 0,0.1 -0.1,0.1 -0.3,0.2 -0.5,0.4 -0.6,0.7 l -0.2,0.2 c 0,-0.2 0.1,-0.4 0.2,-0.6 v -0.1 c 0.1,0 0.3,-0.1 0.4,-0.2 z m -8,1.4 -0.7,0.1 v 1.3 h 0.7 c 0.3,0 0.6,0.1 0.8,0.1 v -0.2 l 1.1,0.6 c 0.4,0.3 0.7,0.7 0.9,1.1 l 0.8,-0.5 c -0.3,-0.5 -0.6,-0.9 -1,-1.2 -0.4,-0.3 -0.9,-0.6 -1.3,-0.8 -0.3,-0.2 -0.5,-0.3 -0.8,-0.3 l -0.2,0.1 -0.5,-0.1 h -0.1 z m 12,0 -1.4,1 -0.8,0.5 0.1,-0.1 0.2,-0.2 c 0.2,-0.2 0.2,-0.2 -0.1,0 l 0.7,-0.6 c -0.6,0.2 -1.2,0.6 -1.7,1 -0.3,0.2 -0.6,0.6 -0.8,0.9 -0.2,0.1 -0.4,0.3 -0.5,0.5 v 0.3 l -0.2,0.5 v 0.1 l 0.3,-0.2 v 0.1 l 0.1,-0.1 0.6,-0.2 v -0.1 l 0.1,-0.4 c 0.2,-0.1 0.3,-0.2 0.6,-0.4 0.5,-0.3 1,-0.6 1.5,-1 0.5,-0.3 0.9,-0.6 1.4,-0.9 z m -1.1,2.8 -0.9,0.6 -0.3,0.3 -0.6,0.7 c -0.5,0.6 -0.9,1.2 -1.2,1.8 -0.1,0.2 -0.3,0.4 -0.4,0.6 l 0.8,-0.4 0.1,-0.1 v 0.3 l -0.5,0.3 v 0.1 c 0,0 0.2,-0.1 0.3,-0.1 v -0.1 l 0.1,-0.1 0.9,-0.6 0.1,-0.1 c 0.1,-0.1 0.3,-0.2 0.4,-0.2 0.4,-0.2 0.9,-0.3 1.3,-0.3 v -0.3 l 0.5,-0.4 -0.2,0.1 0.7,-0.6 -0.9,0.5 v -0.3 c -0.5,0.1 -1,0.2 -1.5,0.4 -0.4,0.1 -0.7,0.2 -1,0.4 0.3,-0.5 0.6,-1 1,-1.5 l 0.6,-0.7 c 0.3,-0.2 0.9,-0.6 -0.5,0.2 z m -10.6,1.4 c -0.2,0 -0.4,0 -0.5,0.1 l -0.8,0.6 h 1.3 c 0.3,0.1 0.6,0.1 0.9,0.2 l 1,0.4 0.5,0.2 h -0.5 c -0.3,0 -0.6,-0.1 -0.9,-0.1 l -0.8,0.6 0.9,0.2 0.6,0.1 -0.3,0.2 h 0.5 c 0.1,0 0.3,0.1 0.4,0.1 l 0.2,-0.1 c 0.4,0.1 0.8,0.2 1.2,0.5 l 0.2,0.2 h 0.1 l -0.1,0.5 v 1.6 l 0.1,-0.9 v -0.5 c 0.1,-0.2 0.1,-0.4 0.2,-0.5 v -0.4 l 0.4,-0.3 -0.2,-0.1 -0.3,-0.1 v -0.1 0.1 c -0.4,-0.2 -0.7,-0.3 -1,-0.4 l -0.6,-0.1 0.6,-0.3 c -0.1,-0.1 -0.2,-0.1 -0.2,-0.2 l -0.7,-0.3 -1.1,-0.4 c -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 h -0.8 z"
-         id="path4490-5-3" />
-      <path
-         style="fill:#525767"
-         inkscape:connector-curvature="0"
-         d="m 484.52,430.5 -0.12,0.97 c 0.3,0.55 0.57,1.1 0.84,1.66 0.1,0.18 0.17,0.37 0.26,0.56 l 0.15,0.4 c 0.5,1.4 1.03,2.9 1.5,4.3 v 1.1 l -0.3,-0.9 c -0.1,-0.2 -0.18,-0.4 -0.26,-0.6 l -0.5,-1 -0.5,-0.8 -0.1,-0.2 -0.1,0.3 -0.5,-0.9 c -0.4,-0.7 -0.8,-1.4 -1.2,-2 l -0.5,-0.6 c -0.2,-0.3 -0.5,-0.5 -0.7,-0.7 l -0.1,0.9 c 0.4,0.3 0.8,0.8 1.1,1.2 0.4,0.6 0.8,1.3 1.1,1.9 v 0.1 l -0.1,-0.1 -0.1,0.9 c 0.5,0.6 0.9,1.3 1.4,2 l 0.9,1.4 0.6,1.9 v 0.9 l -0.1,-0.1 c 0,-0.1 0,-0.1 -0.1,-0.1 v -0.5 c -0.1,-0.3 -0.1,-0.7 -0.2,-1 l -0.2,1 c -0.7,-1.2 -1.5,-2.3 -2.2,-3.4 -0.5,-0.7 -1,-1.4 -1.4,-2.1 l -0.1,0.9 1.3,1.9 c 0.6,0.8 1.1,1.7 1.7,2.5 l 0.7,1.2 v 0.7 l -0.7,-1.1 -0.9,-1.8 c -0.2,-0.4 -0.3,-0.6 -0.6,-1 l -0.3,-0.5 -1.1,-1.7 -0.1,0.9 c 0.4,0.5 0.8,1.1 1.2,1.6 l 0.3,0.4 0.6,1 0.9,1.6 -0.3,-0.2 c -0.2,-0.1 -0.4,-0.3 -0.6,-0.3 v 0.8 l -1.1,-1.7 -0.1,1 1.2,1.8 c 0.6,0.9 1.3,1.8 1.9,2.7 l 0.5,0.9 -0.1,0.6 0.1,0.2 -0.1,0.4 c -0.5,-0.8 -1,-1.5 -1.4,-2.3 -0.4,-0.7 -0.8,-1.4 -0.9,-2.2 l -0.2,0.9 c 0.1,0.7 0.6,1.4 0.9,2.1 l 1.5,2.5 0.3,0.4 c -0.3,-0.4 -0.6,-0.7 -1,-1 l -0.2,-0.3 c -0.3,-0.6 -0.7,-1.1 -1,-1.7 l -0.1,0.7 -0.1,-0.2 c -0.3,-0.6 -0.7,-1.1 -1,-1.7 l -0.1,0.9 1,1.5 v 0.1 l -0.3,-0.3 c -0.3,-0.2 -0.6,-0.4 -0.9,-0.7 l -0.1,1 0.9,0.6 c 0.2,0.2 0.5,0.3 0.7,0.5 0.3,0.3 0.6,0.6 0.9,1 0.6,0.7 1.1,1.5 1.6,2.3 v 0.3 l -0.3,-0.5 c -0.3,-0.4 -0.6,-0.7 -1,-1 l -0.5,-0.4 c -0.1,0 -0.1,0 -0.2,-0.1 v 1 l 0.1,0.1 c 0.2,0.1 0.3,0.1 0.4,0.3 0.3,0.2 0.5,0.4 0.7,0.7 v 0.6 l 0.3,0.2 v 0.2 l -0.1,-0.1 v 1 l 0.3,0.3 -0.8,-0.5 -1,-0.9 v 0.2 l -1.1,-0.6 c -0.6,-0.2 -1.1,-0.5 -1.7,-0.5 v 1 c 0.6,-0.1 1.1,0.1 1.7,0.3 0.5,0.2 1,0.5 1.5,0.8 l 0.6,0.4 1,0.72 v 0.4 c -0.3,-0.3 -0.6,-0.6 -0.8,-0.95 l -0.1,1 c 0.3,0.3 0.6,0.6 0.8,1 v 0.1 -0.18 l 0.3,0.3 c 0.5,0.7 0.9,1.4 1.4,2.1 l -0.3,-0.3 c -0.6,-0.4 -1.2,-0.7 -1.8,-1.1 -0.3,-0.2 -0.7,-0.4 -1.1,-0.4 v 1 c 0.4,0 0.7,0.2 1.1,0.3 l 1.1,0.7 v 0.3 l 0.9,1.2 0.2,0.35 -2.1,-0.7 c -0.4,-0.2 -0.8,-0.4 -1.1,-0.6 l -0.1,1 h 0.1 c 0.1,0.1 0,0 0.3,0.1 l 0.8,0.3 2.2,0.7 c -0.1,0.13 -0.1,0.3 -0.2,0.4 l 0.1,1 c 0.1,-0.2 0.2,-0.4 0.2,-0.66 0,-0.2 0.1,-0.4 0.1,-0.6 v -0.1 0.5 -0.5 l 0.1,0.1 -0.1,0.4 v 0.4 h 0.2 l 0.1,0.6 v -1.2 l 0.2,0.35 v 0.1 l 0.1,0.9 c 0,-0.2 0.1,-0.3 0.2,-0.5 v -0.2 l 0.1,0.3 -0.1,0.2 0.1,1 0.1,-0.1 0.1,0.5 0.1,-0.2 0.6,-1 0.3,-0.32 0.1,0.1 0.1,0.4 v 0.1 -0.4 l 0.4,0.2 c 0.04,0.1 0.1,0.2 0.1,0.3 l 0.1,0.3 v 0.3 -0.8 l 0.2,0.9 c 0,-0.5 0,-0.9 -0.1,-1.4 l 0.2,0.1 0.6,0.2 0.22,0.1 v -1 l -0.2,-0.1 c -0.3,-0.35 -0.66,-0.6 -1,-0.9 0.1,-0.05 0.14,-0.1 0.24,-0.1 v -0.2 c 0.1,0 0.1,-0.03 0.2,-0.04 0.3,0 0.6,0 0.8,0.1 v -0.9 h -0.9 c -0.4,0.1 -0.8,0.2 -1.2,0.4 v 0.3 l -0.55,-0.5 -0.3,-1 v -0.6 l 0.1,-0.1 c 0,0.1 0.1,0.2 0.1,0.3 l 0.05,-0.4 0.5,-0.5 c 0.4,-0.2 0.7,-0.4 1.1,-0.7 l -0.1,-1 c -0.3,0.3 -0.7,0.5 -1,0.7 l -0.7,0.5 -0.7,-1.1 c 0.1,-0.3 0.2,-0.6 0.32,-0.9 0.2,-0.4 0.4,-0.9 0.72,-1.2 l 0.6,-0.7 -0.1,-1 c -0.2,0.3 -0.4,0.52 -0.6,0.8 -0.2,0.2 -0.4,0.5 -0.56,0.7 l -0.24,0.53 c -0.1,0.4 -0.3,0.9 -0.4,1.4 l 0.03,-0.4 0.3,-1.5 c 0.1,-0.3 0.2,-0.5 0.4,-0.6 l -0.1,-1 -0.3,0.4 -0.2,0.2 c -0.2,0.5 -0.3,1 -0.4,1.5 l -0.1,0.8 c 0,0 -0.1,0 -0.1,-0.1 l -0.2,-0.8 -0.1,-0.3 0.1,-0.4 0.1,-0.8 0.2,-1.6 v 0.3 -1.4 c 0.06,-0.2 0.1,-0.3 0.2,-0.4 l 0.26,-0.5 c 0.2,-0.4 0.5,-0.6 0.8,-0.9 0.3,-0.2 0.6,-0.5 1,-0.6 l -0.08,-1 c -0.4,0.2 -0.7,0.4 -1,0.7 l -0.1,0.1 0.1,-0.2 0.1,-0.1 V 449 l -0.2,1 c 0,-1.3 0.1,-1 -0.16,-0.6 l -0.5,0.8 c -0.2,0.3 -0.4,0.7 -0.5,1 V 448 c 0.04,-0.03 0.1,-0.1 0.1,-0.2 l -0.1,-0.8 v -0.93 l -0.1,0.92 v 0.1 c -0.2,0.4 -0.3,0.8 -0.5,1.2 -0.3,0.9 -0.46,1.8 -0.5,2.7 l -0.26,-0.9 v -0.4 c 0,-0.6 0,-1.1 -0.1,-1.6 0,-0.3 0.1,-0.6 0.1,-0.9 0,-0.1 0.08,-0.3 0.1,-0.4 0.1,-0.5 0.3,-1 0.48,-1.6 l 0.3,-0.9 0.1,-0.3 v -1.1 l -0.1,0.9 v -0.8 0.3 l -0.3,0.9 c -0.1,0.5 -0.34,1 -0.5,1.6 0,0.1 0,0.2 -0.1,0.3 0,0.3 -0.1,0.7 -0.1,1 l -0.4,-1.7 0.2,-0.5 0.1,0.8 0.2,-0.8 c 0,-0.2 0.1,-0.7 0.2,-0.9 l 0.3,-1.4 c 0.3,-0.5 0.6,-0.9 0.9,-1.4 0.3,-0.4 0.6,-0.9 1,-1.4 l -0.1,-1 -0.5,0.9 -0.1,-0.7 -0.3,0.6 -0.04,-0.4 -0.2,0.6 v -0.8 l -0.18,1 v -0.9 l -0.1,0.2 -0.1,0.3 -0.4,1.1 c -0.3,0.8 -0.6,1.6 -0.8,2.5 0,0.2 -0.1,0.5 -0.1,0.7 v -2 c 0.1,-0.1 0.1,-0.2 0.1,-0.3 0.03,-0.1 0.1,-0.4 0.1,-0.5 v -1 l -0.1,0.9 v -0.8 l -0.07,0.2 c 0,0 0,0.1 -0.1,0.1 v -0.6 l -0.2,1 v 0.2 c -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.1,0.3 -0.2,0.6 -0.2,0.9 l -0.2,-1 c -0.1,-0.2 -0.1,-0.4 -0.1,-0.6 v -0.1 c 0.4,-1.2 0.9,-2.4 1.5,-3.5 l 0.34,-0.7 0.3,-0.5 v -0.6 l 0.3,-0.5 -0.1,-1 -0.6,1.4 c -0.3,0.6 -0.6,1.1 -0.9,1.7 l -0.5,0.9 c -0.3,0.6 -0.5,1.3 -0.8,1.9 l -0.1,-0.4 v -0.6 l 0.1,-0.6 -0.1,-0.3 c 0,-1.1 -0.1,-2.1 -0.1,-3.2 v -4.2 l -0.1,1 v 4.1 c 0,0.6 0.1,1.2 0.1,1.8 l -0.6,-1.6 c 0,-0.3 0,-0.7 0.1,-1.1 0.1,-0.4 0.1,-0.7 0.2,-1.1 l 0.2,-0.5 c 0,-0.1 0.1,-0.1 0.1,-0.2 l -0.2,-0.9 c -0.04,0.4 -0.2,0.8 -0.23,1.1 -0.1,0.4 -0.1,0.4 -0.1,0.8 -0.1,0.6 -0.1,1.1 -0.1,1.6 -0.1,-0.4 -0.3,-0.7 -0.43,-1.1 l -1,-2.6 c -0.2,-0.6 -0.4,-1.3 -0.5,-2 l -0.1,0.7 -0.43,-1 z m 3,7.97 c 0.12,0.33 0.25,0.66 0.36,1 0.1,0.27 0.1,0.32 0.12,0.4 V 440 c -0.16,-0.52 -0.3,-1.04 -0.48,-1.55 z m -0.22,0.4 c 0.25,0.8 0.5,1.6 0.72,2.4 v 0.1 l -0.25,-0.48 -0.1,-0.3 c -0.07,-0.3 -0.17,-0.5 -0.26,-0.7 0,-0.3 -0.1,-0.6 -0.1,-0.9 v -0.2 z m 2.24,0.33 c -0.26,0.66 -0.52,1.34 -0.76,2.02 0,0.04 -0.03,0.1 -0.04,0.13 0,-0.1 -0.03,-0.2 -0.04,-0.3 l 0.46,-1.13 z m -0.87,1.93 -0.1,0.72 c -0.03,-0.05 -0.06,-0.18 -0.08,-0.22 0,-0.17 0.1,-0.33 0.1,-0.5 z m 2.43,1.03 -0.05,0.16 -0.1,0.17 0.15,-0.4 z m -2.46,0.56 0.15,0.84 0.1,0.86 v 0.2 l -0.2,-0.48 c 0,-0.1 0,-0.2 -0.1,-0.32 l -0.2,-0.93 v -0.2 z m 2.14,0.2 -0.12,0.36 -0.3,0.93 -0.12,0.3 c 0.13,-0.4 0.28,-0.9 0.46,-1.3 l 0.08,-0.2 z m -1.25,0.55 v 2.26 l -0.26,-1.3 0.2,-0.75 0.06,-0.2 z m -1.52,0.03 0.1,0.13 v 0.3 -0.13 l 0.1,-0.3 z m 0.2,0.7 c 0.1,0.16 0.1,0.32 0.1,0.48 0,-0.1 -0.1,-0.18 -0.1,-0.27 l 0.1,-0.1 v -0.1 z m 0.4,0.36 0.1,0.3 v 0.18 -0.48 z m -0.8,0.1 0.1,0.1 v 0.26 l 0.1,-0.22 v 0.6 -0.74 z m 1.4,0.47 0.3,1.42 v 0.02 -0.38 c 0,-0.4 -0.1,-0.6 -0.2,-1 v -0.2 z m -1.1,0 0.6,0.96 c 0,0.1 0.1,0.3 0.1,0.4 -0.1,-0.1 -0.2,-0.2 -0.3,-0.4 l -0.2,-0.4 v -0.7 l 0.1,-0.2 z m -2,0.07 c 0.2,0.07 0.3,0.15 0.5,0.25 0.3,0.14 0.5,0.34 0.7,0.54 0.3,0.2 0.4,0.5 0.6,0.8 l 0.5,0.9 c 0.2,0.4 0.3,0.8 0.4,1.2 l 0.1,0.1 c -0.1,-0.4 -0.3,-0.7 -0.6,-1.1 l -1.8,-2.7 -0.1,-0.1 z m 3,1.7 0.2,0.34 v 0.02 l -0.1,-0.15 v -0.2 z m -0.5,0.4 0.3,0.32 0.1,0.53 V 448 l -0.2,-0.7 z m 1.2,0.38 c 0.2,0.75 0.4,1.5 0.5,2.26 v 0.16 l -0.1,-0.7 c -0.1,-0.45 -0.1,-0.72 -0.2,-1.16 v -0.53 z m -0.7,0.23 0.1,0.4 -0.1,0.3 v -0.6 z m 0.3,1 v 1.4 c 0,0.2 0.1,0.3 0,0.4 v -0.3 1.1 c -0.1,-0.1 -0.1,-0.3 -0.2,-0.5 v -0.6 c 0,0.1 0,0.1 0.1,0.2 l 0.1,-0.9 0.2,-0.4 z m 0.1,0.5 c 0,0.1 0.1,0.1 0.1,0.2 v 0.6 l 0.2,1 v -0.5 l 0.1,0.7 0.1,1.6 -0.3,-1 v -2.3 z m 2.3,0.2 v 0.8 l 0.1,2.2 v 1.3 l -0.3,0.9 c -0.3,0.6 -0.4,1.3 -0.5,2 l -0.1,-0.7 v -0.1 c 0,-0.5 0,-1 0.1,-1.4 0.1,0.3 0.2,0.7 0.2,1 v 0.4 l 0.2,-0.9 v -0.4 c 0,-0.4 -0.1,-0.8 -0.2,-1.2 0.1,-0.9 0.2,-1.7 0.5,-2.6 0.1,-0.3 0.3,-0.6 0.4,-0.9 z m -1.9,0.7 0.1,0.7 0.2,0.8 v 1.9 -0.2 c 0,-1 -0.1,-2 -0.2,-3 z m -1.1,0.8 0.2,0.4 v 0.2 c 0,-0.1 -0.1,-0.2 -0.1,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 z m 1.6,1.4 0.2,0.7 0.1,-0.5 0.2,0.9 v 1.7 c -0.2,-0.8 -0.3,-1.6 -0.4,-2.4 v -0.3 z m -0.8,2 c 0,0.1 0,0.1 0.1,0.2 v 0.1 l -0.1,-0.1 z m 0,1.6 0.4,0.7 0.2,0.5 v 0.2 c -0.2,-0.3 -0.4,-0.7 -0.6,-1 v -0.3 z m 2.3,0.1 -0.1,1.3 -0.1,0.9 -0.2,-0.4 v -0.4 c 0.1,-0.4 0.1,-0.9 0.2,-1.3 v 0.5 l 0.2,1 v -0.1 c 0,-0.3 0.1,-0.7 0.1,-1 l 0.1,-0.4 z m -1.6,1.3 0.2,0.4 -0.1,-0.3 v -0.1 z m 0.8,1 0.1,0.1 0.1,0.6 -0.1,-0.3 -0.1,-0.2 0.1,-0.2 z m 39.15278,1.79231 -40.25278,0.008 0.7,0.7 0.1,0.1 v 0.1 c 0,0.1 0.1,0.1 0.1,0.2 l 0.3,0.7 0.1,0.3 v 0.1 l 0.1,0.2 0.2,0.6 -0.7,-1.2 -0.5,-0.8 -0.2,-0.4 -0.2,-0.2 v -0.5 z M 492.31,463.31 l 0.3,0.5 0.1,0.3 v 0.2 l -0.4,-0.8 0.1,-0.1 z m -0.5,0.2 0.1,0.2 0.2,0.4 v 0.1 l -0.3,-0.4 z m 1.2,1.2 c 0.1,0.1 0.1,0.2 0.1,0.4 l -0.1,-0.3 0.1,-0.1 z m -0.6,0.2 0.3,1.3 0.1,0.2 -0.6,-0.2 v -0.9 c 0,0.1 0.1,0.1 0.1,0.2 v -0.3 l 0.1,0.4 0.1,-0.7 z m -0.9,0.2 c 0.1,0.1 0.2,0.2 0.3,0.4 l 0.1,0.1 0.1,0.2 c -0.1,-0.2 -0.3,-0.4 -0.4,-0.6 z m 0.5,0.5 0.1,0.1 0.1,0.2 v 0.2 l -0.1,-0.2 v -0.2 z m 1.3,0.8 0.1,0.1 v 0.1 -0.1 z m 0.4,0.3 0.1,0.3 h -0.1 v -0.2 z m -0.2,0.1 0.1,0.2 h -0.1 v -0.1 z m -0.1,1.2 v 0.1 z"
-         id="path4653-3-1"
-         sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccscccccccccccccscccccccccccccccsccccccccsccccccccccccccccccccccccccccccccccccsccccccccccccccccssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccscsscccccccccccccccccccccccccccccccccccscccccccccccscccccccccccccccsccsccscccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccsccccccccccccccccccccccccccccccccccccccccsccccccccccscccccccccccccccscsccscsccccccscccccsccccccccccccccccccccccccccccccscccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
-    </g>
+	 inkscape:groupmode="layer"
+	 id="layer14"
+	 inkscape:label="Layer 3">
+	<g
+	   transform="matrix(0.32825958,0.34029125,-0.21729162,0.51740458,407.60151,-162.98551)"
+	   style="stroke-width:0.1;stroke-linecap:round"
+	   id="layer2-4-3"
+	   inkscape:transform-center-x="5.1605772"
+	   inkscape:transform-center-y="-2.3165394">
+	  <path
+		 style="fill:#9497a2"
+		 inkscape:connector-curvature="0"
+		 d="m 495.4,468.64 -1.5,1.78 -0.37,-2.72 -2.7,1.5 -1.6,-3.65 -4.5,-1.97 -2.25,-3.18 5.53,2.25 -5.5,-4.4 2.2,-0.38 -3.9,-3 -3.2,-4.3 5.4,3 -4.9,-6.47 4.4,1.78 -3.8,-7.86 2.6,2.34 -4.31,-6.36 5.06,2 -2.2,-3.9 -3.5,-3.2 4.2,1.1 -3.86,-8.6 -0.63,-5.4 4.2,10.3 -0.32,-9.9 3,10.2 2.64,-10.5 0.8,6.2 0.2,5.5 7.1,-10.2 -3,6.95 6.3,-3.4 -5.5,5.1 -2.9,3 11.2,-4 -4.7,4.1 8.2,-1.9 -10.7,5 8.4,1.02 -6.5,3.72 5.6,-0.1 -5.3,3.1 3.7,1.4 -4.4,1.7 6.4,-1.4 2.1,-2.1 -4.8,5.2 4.3,-1.2 -7,5.9 5.4,-2 -4.2,4.2 -2.9,3.7 6,-2.1 -3.3,5 5.5,-0.8 -5,2.3 3.2,1.8 -3.8,0.3 2.5,3.6 z"
+		 id="path4488-3-1" />
+	  <path
+		 style="fill:#b4b3b7"
+		 inkscape:connector-curvature="0"
+		 d="m 485.05,423.03 z m 0,0 -0.16,0.97 v 1.05 c -0.1,0.42 0,0.83 0.1,1.24 0.1,0.4 0.1,0.3 0.1,0.8 0,0.4 0.1,0.9 0.1,1.3 -0.1,-0.4 -0.1,-0.7 -0.1,-1.1 l -0.9,0.4 c 0,0.3 0.1,0.7 0.1,1 l 0.3,1.4 c 0.1,0.3 0.1,0.7 0.2,1.1 l 0.4,-0.3 v 0.2 -0.3 l 0.3,-0.2 c 0,-0.4 -0.1,-0.8 -0.2,-1.1 0,-0.1 0,-0.2 -0.1,-0.3 0,-0.3 -0.1,-0.6 -0.1,-0.8 0,-0.9 -0.1,-1.8 -0.2,-2.6 0,-0.2 0,-0.3 -0.1,-0.4 -0.1,-0.6 -0.3,-1.1 -0.2,-1.7 v -1 z m -8.48,0.45 -0.12,0.98 c 0.1,0.33 0.27,0.65 0.4,0.97 0.2,0.44 0.35,0.88 0.5,1.33 0.16,0.46 0.2,0.94 0.3,1.4 0.12,0.46 0.2,0.92 0.3,1.37 0.04,0.24 0.13,0.47 0.24,0.7 l 0.1,-0.96 c -0.1,-0.18 -0.2,-0.38 -0.2,-0.58 0,0 0.1,0.1 0.1,0.2 l 0.6,1.3 0.5,1.2 v 0.1 c 0.1,0.3 -0.1,-0.1 0.1,0.3 l 0.2,0.4 0.1,0.2 -1.2,-0.6 c -0.6,-0.2 -1.1,-0.4 -1.7,-0.6 -0.3,-0.1 -0.6,-0.1 -0.8,-0.1 v 1 c 0.2,-0.1 0.5,0 0.8,0 l 1.2,0.3 v 0.4 c 0.2,-0.1 0.5,0 0.7,0.1 l 0.3,0.1 -0.2,0.1 1,1 c 0.4,0.3 0.9,0.7 1.4,1.1 0.2,0.1 0.1,0 0.2,0.2 l 0.4,-0.2 c 0.1,0.1 0.3,0.3 0.4,0.5 0.2,0.3 0.5,0.5 0.7,0.8 l 0.5,0.6 0.4,0.6 c 0.2,0.3 0.5,0.6 0.7,0.9 l 0.7,0.8 0.8,-0.5 -0.7,-0.9 c -0.2,-0.3 -0.5,-0.6 -0.7,-1 l -0.5,-0.7 -0.6,-0.6 -0.7,-0.8 -0.7,-0.7 c -0.2,-0.1 -0.4,-0.2 -0.6,-0.2 l -0.2,0.1 -0.6,-0.5 0.1,-0.4 c 0.6,0.2 1.3,0.5 1.9,0.7 0.3,0.1 0.6,0.3 0.8,0.4 l 0.3,0.2 c 0.2,0.3 0.3,0.5 0.5,0.8 l 0.8,-0.4 c -0.2,-0.4 -0.4,-0.7 -0.5,-1.1 -0.1,-0.4 -0.3,-0.7 -0.6,-0.9 l 0.4,-0.2 c -0.2,-0.4 -0.4,-0.7 -0.6,-1 -0.5,-0.7 -0.9,-1.3 -1.4,-1.9 l -0.4,-0.4 0.3,-0.9 0.7,-2.3 c 0.2,-0.4 0.4,-0.9 0.5,-1.4 l -0.1,-0.9 c -0.1,0.5 -0.3,1 -0.5,1.5 -0.2,0.8 -0.5,1.5 -0.7,2.3 -0.1,0.2 -0.1,0.4 -0.2,0.6 v -0.3 c -0.1,-0.3 -0.2,-0.6 -0.4,-0.8 l -0.5,-0.9 -0.6,-0.9 c -0.2,-0.3 -0.4,-0.6 -0.4,-0.9 l -0.1,-0.2 c 0.1,-0.2 0.1,-0.4 0.2,-0.6 l -0.1,-1 c -0.2,0.2 -0.2,0.5 -0.3,0.7 -0.1,0.5 -0.1,1 0,1.5 v 0.4 c 0.2,0.3 0.4,0.8 0.5,1.2 l 0.6,1.6 c 0.1,0.1 0.1,0.3 0.2,0.5 l -0.7,0.4 c 0.4,0.3 0.7,0.7 1.1,1 l 0.1,0.1 v 0.7 c -0.4,-0.3 -0.8,-0.6 -1.1,-1 l -0.9,0.5 c 0.4,0.4 0.9,0.7 1.4,1.1 0.6,0.4 1.2,0.8 1.8,1.3 -0.8,-0.3 -1.6,-0.6 -2.5,-1 l -0.8,-0.3 v -0.7 c -0.1,-0.2 -0.2,-0.4 -0.4,-0.7 l -0.3,-0.9 -0.6,-1.2 -0.7,-1.3 c -0.2,-0.3 -0.3,-0.6 -0.4,-0.9 l -0.1,0.4 v -0.2 c -0.1,-0.5 -0.1,-1 -0.3,-1.4 -0.1,-0.5 -0.3,-0.9 -0.5,-1.4 -0.1,-0.3 -0.3,-0.6 -0.4,-1 z m 13.57,1.1 -0.15,0.95 c 0,-0.2 0,-0.42 -0.1,-0.64 l -0.1,0.2 -0.2,0.9 c -0.2,0.7 -0.5,1.5 -0.7,2.2 -0.3,0.2 -0.5,0.5 -0.7,0.8 -0.1,0.1 -0.2,0.3 -0.3,0.5 -0.1,0.1 -0.2,0.1 -0.2,0.2 -0.5,0.4 -0.9,0.9 -1.2,1.5 -0.2,0.3 -0.3,0.7 -0.4,1.1 v 0.1 l 0.9,-0.4 v -0.1 c 0,-0.4 0.2,-0.8 0.4,-1.1 0.1,-0.3 0.3,-0.6 0.6,-0.9 v 0.5 -0.2 l 0.1,0.7 c 0,-0.1 0.1,-0.3 0.1,-0.4 l 0.6,-1.6 v -0.1 l 0.1,-0.2 c 0.4,-0.3 0.8,-0.6 1.3,-0.9 0.5,-0.3 1,-0.6 1.7,-0.6 h 0.8 v -1 h -0.8 c -0.7,0 -1.2,0.3 -1.8,0.6 l -1,0.6 0.3,-1 c 0.1,-0.4 0.2,-0.7 0.2,-1 v -1.5 z m -8.2,4.34 0.22,0.4 c 0.12,0.18 0.2,0.4 0.25,0.6 l -0.2,-0.4 -0.2,-0.6 z m 2.34,0.4 -0.87,0.45 0.2,0.84 0.2,0.5 0.9,-0.4 -0.1,-0.4 c 0,-0.3 -0.1,-0.5 -0.1,-0.8 z m 11.02,1.14 c -0.43,0.1 -0.85,0.23 -1.27,0.37 -0.53,0.2 -1.05,0.42 -1.55,0.68 l -0.42,0.2 -1.28,0.6 -0.6,0.3 -0.23,0.2 -0.1,0.1 c -0.23,0.2 -0.46,0.3 -0.7,0.5 l 0.53,-0.2 -0.1,0.2 -0.06,0.2 v 0.1 c -0.4,0.2 -0.8,0.4 -1.2,0.7 l 0.9,-0.3 c -1.5,0.9 -0.42,0.2 -0.05,0.1 l 0.2,-0.1 -0.2,0.2 c -0.17,0.2 -0.32,0.4 -0.44,0.6 l 0.9,-0.4 v 0.2 l 0.08,-0.2 0.2,-0.2 0.8,-0.4 0.9,-0.5 v 0.1 l 0.2,-0.1 -0.2,0.2 -0.2,0.2 c -0.2,0.2 -0.5,0.5 -0.8,0.7 0,0.1 0,0.1 -0.1,0.1 v -0.2 l -0.3,0.5 -0.1,0.6 c 0,0.3 -0.1,0.5 -0.2,0.8 l -0.1,0.3 0.1,1 0.2,-0.3 c 0.1,-0.2 0.2,-0.4 0.2,-0.7 0.1,-0.2 0.2,-0.3 0.2,-0.6 0.1,-0.1 0.2,-0.3 0.3,-0.4 v -0.6 l 0.2,-0.1 h 0.1 v 0.1 l 0.9,-0.4 c 0,0 0.1,-0.1 0.1,-0.2 1.1,-0.6 1.2,-0.7 2.2,-1.2 0.7,-0.4 1.4,-0.7 2.1,-1 0.5,-0.1 0.8,-0.3 1.2,-0.6 v -0.1 h -0.1 c 0.1,0 0,0 0,0 h -0.1 l 0.1,-0.1 -0.5,0.2 -0.9,0.3 v -0.6 h 0.1 -0.1 z m -0.53,1.22 c -0.14,0.06 -0.3,0.12 -0.42,0.2 l -0.33,0.18 0.3,-0.23 z m -12.28,0.03 0.9,1.3 -1,-0.6 v -0.3 l -0.1,-0.1 v -0.1 z m 10.8,0.7 -1.7,1 0.4,-0.4 0.4,-0.3 h 0.1 l 0.6,-0.2 z m 0.9,3.7 h -0.7 c -0.3,0.1 -0.7,0.1 -1,0.1 -0.5,0 -0.9,0.1 -1.3,0.2 -0.3,0.1 -0.5,0.1 -0.8,0.2 l -0.1,0.1 -0.8,0.6 c 0.2,-0.1 0.4,-0.2 0.7,-0.2 0.4,-0.1 0.8,-0.1 1.2,-0.2 h 1.6 z m -0.5,0.6 -0.6,0.2 c -0.3,0.1 -0.6,0.1 -0.8,0.2 -0.1,0 -0.1,0.1 -0.1,0.1 0,0 -0.1,0 -0.1,0.1 h -0.5 c -0.3,0 -0.5,0 -0.7,0.1 l -0.6,0.3 c -0.2,0.1 -0.4,0.2 -0.4,0.5 l 0.1,0.1 -0.5,0.3 0.5,-0.2 -0.3,0.2 0.4,-0.2 h 0.1 l -0.1,0.1 0.2,-0.1 -0.1,0.1 -0.3,0.3 -0.1,0.1 0.9,-0.4 v -0.1 h 0.1 l -0.8,0.4 c 0,0.1 -0.2,0.4 -0.2,0.5 l 0.1,0.1 0.1,0.1 c 0.1,0.1 0.3,0 0.4,0 l -0.1,0.1 c -0.4,0.3 -0.7,0.6 -1.1,1 l -0.7,1 v 0.1 c 0,0.2 0.3,0.1 0.5,-0.1 l -0.2,0.4 0.9,-0.4 c 0.1,-0.2 0.1,-0.4 0.3,-0.6 l 0.2,-0.3 v 0.7 c 0,0.1 0.1,0.1 0.1,0 v -0.1 l 0.1,-0.1 c 0.1,-0.2 0.3,-0.3 0.4,-0.5 v 0.1 l 0.2,-0.2 c 0.3,-0.3 0.8,-0.6 1.2,-0.9 0.5,-0.3 1,-0.6 1.6,-0.8 0.1,-0.1 0.4,-0.2 0.5,-0.2 h 0.2 v -0.2 h 1.2 l 0.8,-0.5 h -0.9 l 0.3,-0.2 -0.1,-0.1 h -0.2 v 0.1 l 0.1,-0.1 -1.2,0.1 h -0.6 v -0.2 c -0.3,0.1 -0.7,0.1 -1.1,0.1 z m -16.2,1 v 1 h 0.8 c 0.4,0 0.8,0.1 1.1,0.3 l -0.4,0.3 c 0.2,0 0.5,0 0.8,0.1 0.3,0.1 0.6,0.4 0.8,0.6 l 0.4,0.5 -0.2,0.2 0.4,0.5 -0.4,0.3 c 0.2,0 0.3,0 0.5,0.1 l 0.9,1.3 0.9,1.5 0.2,0.5 0.8,-0.4 -0.3,-0.5 c -0.3,-0.4 -0.5,-0.8 -0.8,-1.2 l 1.4,1 0.6,0.6 0.8,-0.5 -0.6,-0.5 c -0.5,-0.3 -1.1,-0.6 -1.6,-1 -0.5,-0.3 -1,-0.7 -1.5,-0.9 -0.1,0 -0.2,-0.1 -0.3,-0.1 v -0.1 l -0.3,-0.4 0.7,0.5 c 0.3,0.2 0.6,0.3 0.9,0.5 l 0.4,0.3 c 0.4,0.3 0.8,0.5 1.2,0.8 l 0.8,0.6 0.1,-0.9 -0.9,-0.6 -1.3,-0.8 c -0.4,-0.2 -0.9,-0.4 -1.3,-0.7 -0.4,-0.2 -0.7,-0.4 -1,-0.6 v 0.5 l -0.2,-0.2 c -0.3,-0.2 -0.6,-0.5 -0.9,-0.6 l -0.2,-0.1 v -0.2 c -0.2,-0.2 -0.5,-0.3 -0.7,-0.4 -0.2,-0.1 -0.4,-0.2 -0.5,-0.2 -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 h -0.8 z m 15.9,0.1 -0.1,0.1 -0.3,0.1 h -0.3 c 0.2,0 0.4,-0.1 0.6,-0.1 z m -3.1,0.2 h -0.1 z m 1.2,0 z m -0.1,0.2 c 0,0.1 -0.1,0.1 -0.1,0.2 l -0.1,0.1 c 0,0.1 -0.1,0.1 -0.1,0.1 l 0.1,-0.3 z m 5.3,2.6 c -0.6,0.2 -1.2,0.4 -1.7,0.7 h -0.1 c 0.1,-0.1 0.3,-0.2 0.2,-0.4 l -0.1,-0.1 h -0.1 l -0.6,0.2 c -0.2,0 -0.4,0.1 -0.5,0.2 -0.4,0.3 -0.9,0.5 -1.3,0.8 -0.2,0.2 -0.4,0.5 -0.6,0.7 -0.1,0.2 -0.2,0.4 -0.4,0.6 l 0.7,-0.3 c -0.2,0.2 -0.3,0.4 -0.4,0.6 l -0.1,0.1 -0.8,0.6 0.2,-0.1 c 0.1,-0.1 0.2,-0.2 0.4,-0.2 l -0.1,0.2 h -0.1 l -0.2,0.3 c -0.1,0.1 -0.3,0.4 -0.4,0.5 l -0.3,0.5 c 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.2 -0.3,0.7 -0.3,1 v 0.1 l 0.1,0.1 c 0.4,-0.3 0.8,-0.4 1.1,-0.7 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.3 0.2,-0.4 l 0.2,-0.5 0.4,-0.6 c 0.2,-0.4 0.5,-0.7 0.7,-1.1 v -0.1 l 0.2,-0.1 0.8,-0.4 c 0.6,-0.3 1.2,-0.5 1.7,-0.9 v -0.1 h -0.1 c -0.2,0 -0.3,0.1 -0.5,0.1 h -0.3 c -0.4,0.1 -0.8,0.6 -1.1,0.6 h -0.1 l 0.4,-0.4 1.6,-0.6 z m -2.4,0.8 -0.1,0.1 -0.3,0.3 -0.7,0.4 -0.5,0.3 0.2,-0.3 0.3,-0.4 c 0,0 0.1,0 0.1,-0.1 l 0.2,-0.1 c 0.2,0 0.4,-0.2 0.7,-0.2 z m 0.5,0.7 -0.6,0.3 -0.6,0.3 0.2,-0.1 0.4,-0.3 0.2,-0.1 h 0.4 z m -15.9,0.3 -0.1,1 0.6,0.3 1,0.7 c 0.1,0.1 0.2,0.1 0.3,0.2 l -0.3,0.2 c 0.2,0.2 0.5,0.3 0.9,0.4 0.1,0.1 0.3,0.1 0.5,0.2 l 0.5,0.5 c 0.1,0.2 0.2,0.3 0.3,0.5 l 0.1,-0.9 c 0.2,0.1 0.5,0.2 0.7,0.4 l 0.2,0.2 v 0.1 c 0.2,0.4 0.3,0.7 0.4,1.1 -0.3,-0.1 -0.6,-0.2 -0.9,-0.4 l -0.8,0.6 c 0.3,0.1 0.7,0.3 1,0.4 0.4,0.2 0.9,0.5 1.3,0.7 0.2,0.4 0.3,0.7 0.6,1 l 0.6,0.5 0.8,-0.5 h -0.1 l 0.3,-0.2 c -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.3,-0.3 -0.7,-0.7 -1.1,-0.9 -0.1,0 -0.1,0 -0.2,-0.1 l -0.2,-0.3 -0.2,-0.3 c -0.2,-0.3 -0.2,-0.4 -0.3,-0.7 l 0.1,0.1 0.6,0.5 0.8,-0.5 -0.7,-0.5 c -0.3,-0.2 -0.5,-0.3 -0.8,-0.4 l -0.6,-0.3 v -0.1 l -0.1,-0.1 -0.2,-0.3 -0.3,-0.6 -0.7,0.5 c -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.2,-0.1 -0.5,-0.2 -0.7,-0.2 l -0.2,0.1 -0.5,-0.3 c -0.4,-0.3 -0.8,-0.5 -1.2,-0.8 l -1,-0.7 -0.6,-0.3 z m 17,1.5 c -0.3,0.1 -0.6,0.1 -0.9,0.2 l -0.3,0.1 h -0.4 c -0.2,0 -0.4,0 -0.6,0.1 -0.2,0.1 -0.3,0.2 -0.4,0.2 l -0.3,0.3 -0.1,0.2 c -0.7,0.4 -1.3,0.8 -2,1.3 l 0.9,-0.3 c 0.3,-0.2 0.6,-0.4 0.8,-0.5 h 0.1 l 0.2,-0.1 v 0.2 c 0,0.1 0,0.2 -0.1,0.3 v 0.1 l -1,0.7 c -0.4,0.3 -0.8,0.6 -1.1,1 -0.2,0.3 -0.4,0.6 -0.5,0.8 l 0.1,1 c 0.1,-0.3 0.2,-0.6 0.4,-0.8 0.3,-0.4 0.7,-0.7 1.1,-1 0.4,-0.3 0.8,-0.5 1.2,-0.7 v -0.2 l 0.2,-0.6 c 0,-0.1 0,-0.2 0.1,-0.2 0.1,0 0.2,-0.1 0.4,-0.2 0.2,-0.1 0.3,-0.1 0.5,-0.1 h 2.2 v -1 h -0.8 l 0.3,-0.2 h -0.2 z m 2.3,2.3 c -0.3,0.2 -0.7,0.2 -1,0.3 l 0.1,-0.1 c -0.4,0.1 -0.7,0.1 -1.1,0.1 -0.5,0 -0.9,0.1 -1.3,0.3 -0.5,0.3 -1,0.5 -1.3,0.9 l -0.2,0.2 -0.2,0.1 c -0.5,0.3 -0.8,0.8 -1.2,1.3 -0.3,0.4 -0.5,0.8 -0.8,1.2 l 0.8,-0.4 0.5,-0.8 v 0.1 l 0.9,-0.4 v -0.2 c 0.1,-0.3 0.2,-0.5 0.4,-0.8 h 0.3 -0.1 l 0.1,0.9 0.2,-0.3 c 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.2 0.4,-0.2 0.5,-0.3 0.5,-0.2 1,-0.3 1.5,-0.4 0.5,-0.1 0.9,-0.1 1.3,-0.2 z m -3.3,0.9 c -0.1,0 -0.1,0 -0.1,0.1 h -0.4 c 0,-0.1 0,-0.1 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.1 z m 2.7,1 h -0.1 l -0.3,0.1 -0.7,0.2 c -0.4,0.1 -0.8,0.2 -1.1,0.4 l -0.7,0.2 -0.7,0.4 -0.4,0.2 -0.4,0.2 -0.1,-0.9 c -0.3,0.1 -0.5,0.3 -0.7,0.5 -0.4,0.4 -0.6,0.8 -0.9,1.3 l -0.2,0.5 -0.1,0.1 c -0.1,0.1 -0.2,0.2 -0.3,0.4 l 0.1,-0.1 -0.1,0.1 v 0.4 c -0.1,0.1 0,0.1 -0.1,0.2 l 0.1,-0.1 v 0.3 l 0.2,-0.5 0.5,-0.2 0.1,-0.1 0.6,-0.6 c 0.1,-0.1 0.2,-0.3 0.4,-0.4 l 0.2,-0.1 0.2,-0.1 1.5,-0.6 1.8,-0.6 c 0.4,0 0.7,-0.1 1.1,-0.1 v -1 c -0.4,0 -0.8,0.2 -1.1,0.2 l -0.3,0.1 z m -16.6,0.3 -0.8,0.5 c 0.3,0 0.5,0.2 0.7,0.3 l 0.9,0.6 0.8,0.6 -0.6,0.4 h 0.4 l -0.2,0.2 0.6,0.4 0.8,0.5 c 0,0.3 0.1,0.5 0.3,0.7 0.3,0.6 -0.1,-0.1 0.3,0.6 0.3,0.6 0.7,1.2 1.1,1.8 l -0.3,-0.2 -0.6,-0.2 c -0.4,-0.1 -0.7,-0.3 -1,-0.5 l -1.3,-0.8 c -0.3,-0.2 -0.6,-0.3 -0.9,-0.5 l -0.4,0.3 v -0.9 l -0.2,-0.1 c -0.4,-0.2 -0.8,-0.4 -1.3,-0.5 l -0.7,-0.3 -0.1,1 0.7,0.3 c 0.5,0.1 0.8,0.3 1.2,0.5 l 0.2,0.1 -0.4,0.3 c 0.3,0.1 0.6,0.3 0.9,0.5 l 1.3,0.8 c 0.3,0.2 0.6,0.4 0.9,0.5 0.2,0.1 0.3,0.2 0.5,0.3 l 0.2,0.3 0.8,-0.5 0.1,0.1 c 0.2,0.5 0.5,0.9 0.8,1.3 l 0.2,0.3 0.8,-0.5 -0.2,-0.2 c -0.3,-0.4 -0.6,-0.8 -0.9,-1.3 l -1,-1.7 0.6,0.3 c 0.4,0.2 0.7,0.5 1,0.8 0.3,0.4 0.5,0.8 0.7,1.2 l 0.3,0.9 0.8,-0.4 -0.3,-0.9 c 0,-0.2 -0.1,-0.3 -0.2,-0.5 v -0.1 l 0.4,-0.2 c -0.2,-0.2 -0.5,-0.4 -0.7,-0.7 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 l -0.7,-0.6 c -0.3,-0.2 -0.5,-0.5 -0.8,-0.7 v -0.1 l -0.2,-0.1 -0.4,-0.3 -1.1,-0.6 c -0.3,-0.2 -0.5,-0.3 -0.8,-0.5 l -1.1,-0.8 c -0.3,-0.2 -0.6,-0.5 -0.9,-0.6 l -0.8,-0.3 z m 11.3,2.6 v 0.3 c -0.1,0.1 -0.2,0.1 -0.4,0.2 l -0.2,0.1 v -0.1 l 0.2,-0.3 0.2,-0.3 z m 3.8,1.2 -0.9,0.4 c -0.3,0.2 -0.6,0.4 -0.8,0.6 -0.3,0.2 -0.5,0.4 -0.7,0.6 l -0.8,0.4 c -0.4,0.3 -0.7,0.6 -1,0.9 -0.2,0.2 -0.3,0.5 -0.4,0.7 l 0.6,-0.2 v 0.1 c -0.2,0.3 -0.3,0.7 -0.4,1.1 l -0.6,0.4 c -0.5,0.4 -1,0.8 -1.5,1.3 l 0.9,-0.3 c 0.4,-0.4 0.8,-0.7 1.3,-1.1 v 0.5 c -0.2,0.3 -0.4,0.7 -0.5,1.1 l 0.8,-0.4 c 0.1,-0.4 0.3,-0.8 0.5,-1.1 v 0.1 c 0,0.3 -0.1,0.6 -0.1,0.8 v 0.1 l 0.8,-0.4 c 0,-0.3 0.1,-0.6 0.1,-0.8 0.1,-0.3 0.1,-0.6 0.2,-0.9 l 0.2,-0.2 c 0.4,-0.1 0.7,-0.2 1.1,-0.2 l 0.8,-0.6 c -0.5,0.1 -1,0.2 -1.4,0.3 0.3,-0.2 0.6,-0.5 0.9,-0.7 0.6,-0.3 0.6,-0.3 0.9,-0.5 l -0.9,0.4 c -0.1,0 -0.1,0.1 -0.1,0.1 l 0.7,-0.4 -0.1,0.1 c -0.1,0 -0.1,0.1 -0.2,0.1 l -1.1,0.6 c -0.1,0.1 -0.1,0.1 -0.2,0.1 -0.2,0.1 -0.3,0.3 -0.5,0.4 l -0.2,0.2 0.1,-0.4 1.3,-0.9 c 0.4,-0.2 0.8,-0.4 1.3,-0.6 0.3,-0.1 0.5,-0.1 0.8,-0.2 v -1 l -0.8,0.3 c -0.4,0.1 -0.7,0.3 -1.1,0.5 l -0.5,0.2 0.5,-0.4 0.9,-0.7 z m -11,0.5 z m 8.3,1.5 -0.2,0.2 c -0.2,0.1 -0.4,0.3 -0.6,0.5 0,-0.1 0,-0.1 0.1,-0.1 0.2,-0.3 0.4,-0.5 0.6,-0.6 z m -0.6,1.7 c 0,0.1 -0.1,0.2 -0.1,0.2 l -0.3,0.2 v -0.1 l 0.3,-0.3 z m -0.1,0.4 c 0,0.1 0,0.1 -0.1,0.1 -0.3,0.2 -0.5,0.4 -0.6,0.7 l -0.2,0.2 c 0,-0.2 0.1,-0.4 0.2,-0.6 v -0.1 c 0.1,0 0.3,-0.1 0.4,-0.2 z m -8,1.4 -0.7,0.1 v 1.3 h 0.7 c 0.3,0 0.6,0.1 0.8,0.1 v -0.2 l 1.1,0.6 c 0.4,0.3 0.7,0.7 0.9,1.1 l 0.8,-0.5 c -0.3,-0.5 -0.6,-0.9 -1,-1.2 -0.4,-0.3 -0.9,-0.6 -1.3,-0.8 -0.3,-0.2 -0.5,-0.3 -0.8,-0.3 l -0.2,0.1 -0.5,-0.1 h -0.1 z m 12,0 -1.4,1 -0.8,0.5 0.1,-0.1 0.2,-0.2 c 0.2,-0.2 0.2,-0.2 -0.1,0 l 0.7,-0.6 c -0.6,0.2 -1.2,0.6 -1.7,1 -0.3,0.2 -0.6,0.6 -0.8,0.9 -0.2,0.1 -0.4,0.3 -0.5,0.5 v 0.3 l -0.2,0.5 v 0.1 l 0.3,-0.2 v 0.1 l 0.1,-0.1 0.6,-0.2 v -0.1 l 0.1,-0.4 c 0.2,-0.1 0.3,-0.2 0.6,-0.4 0.5,-0.3 1,-0.6 1.5,-1 0.5,-0.3 0.9,-0.6 1.4,-0.9 z m -1.1,2.8 -0.9,0.6 -0.3,0.3 -0.6,0.7 c -0.5,0.6 -0.9,1.2 -1.2,1.8 -0.1,0.2 -0.3,0.4 -0.4,0.6 l 0.8,-0.4 0.1,-0.1 v 0.3 l -0.5,0.3 v 0.1 c 0,0 0.2,-0.1 0.3,-0.1 v -0.1 l 0.1,-0.1 0.9,-0.6 0.1,-0.1 c 0.1,-0.1 0.3,-0.2 0.4,-0.2 0.4,-0.2 0.9,-0.3 1.3,-0.3 v -0.3 l 0.5,-0.4 -0.2,0.1 0.7,-0.6 -0.9,0.5 v -0.3 c -0.5,0.1 -1,0.2 -1.5,0.4 -0.4,0.1 -0.7,0.2 -1,0.4 0.3,-0.5 0.6,-1 1,-1.5 l 0.6,-0.7 c 0.3,-0.2 0.9,-0.6 -0.5,0.2 z m -10.6,1.4 c -0.2,0 -0.4,0 -0.5,0.1 l -0.8,0.6 h 1.3 c 0.3,0.1 0.6,0.1 0.9,0.2 l 1,0.4 0.5,0.2 h -0.5 c -0.3,0 -0.6,-0.1 -0.9,-0.1 l -0.8,0.6 0.9,0.2 0.6,0.1 -0.3,0.2 h 0.5 c 0.1,0 0.3,0.1 0.4,0.1 l 0.2,-0.1 c 0.4,0.1 0.8,0.2 1.2,0.5 l 0.2,0.2 h 0.1 l -0.1,0.5 v 1.6 l 0.1,-0.9 v -0.5 c 0.1,-0.2 0.1,-0.4 0.2,-0.5 v -0.4 l 0.4,-0.3 -0.2,-0.1 -0.3,-0.1 v -0.1 0.1 c -0.4,-0.2 -0.7,-0.3 -1,-0.4 l -0.6,-0.1 0.6,-0.3 c -0.1,-0.1 -0.2,-0.1 -0.2,-0.2 l -0.7,-0.3 -1.1,-0.4 c -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 h -0.8 z"
+		 id="path4490-5-3" />
+	  <path
+		 style="fill:#525767"
+		 inkscape:connector-curvature="0"
+		 d="m 484.52,430.5 -0.12,0.97 c 0.3,0.55 0.57,1.1 0.84,1.66 0.1,0.18 0.17,0.37 0.26,0.56 l 0.15,0.4 c 0.5,1.4 1.03,2.9 1.5,4.3 v 1.1 l -0.3,-0.9 c -0.1,-0.2 -0.18,-0.4 -0.26,-0.6 l -0.5,-1 -0.5,-0.8 -0.1,-0.2 -0.1,0.3 -0.5,-0.9 c -0.4,-0.7 -0.8,-1.4 -1.2,-2 l -0.5,-0.6 c -0.2,-0.3 -0.5,-0.5 -0.7,-0.7 l -0.1,0.9 c 0.4,0.3 0.8,0.8 1.1,1.2 0.4,0.6 0.8,1.3 1.1,1.9 v 0.1 l -0.1,-0.1 -0.1,0.9 c 0.5,0.6 0.9,1.3 1.4,2 l 0.9,1.4 0.6,1.9 v 0.9 l -0.1,-0.1 c 0,-0.1 0,-0.1 -0.1,-0.1 v -0.5 c -0.1,-0.3 -0.1,-0.7 -0.2,-1 l -0.2,1 c -0.7,-1.2 -1.5,-2.3 -2.2,-3.4 -0.5,-0.7 -1,-1.4 -1.4,-2.1 l -0.1,0.9 1.3,1.9 c 0.6,0.8 1.1,1.7 1.7,2.5 l 0.7,1.2 v 0.7 l -0.7,-1.1 -0.9,-1.8 c -0.2,-0.4 -0.3,-0.6 -0.6,-1 l -0.3,-0.5 -1.1,-1.7 -0.1,0.9 c 0.4,0.5 0.8,1.1 1.2,1.6 l 0.3,0.4 0.6,1 0.9,1.6 -0.3,-0.2 c -0.2,-0.1 -0.4,-0.3 -0.6,-0.3 v 0.8 l -1.1,-1.7 -0.1,1 1.2,1.8 c 0.6,0.9 1.3,1.8 1.9,2.7 l 0.5,0.9 -0.1,0.6 0.1,0.2 -0.1,0.4 c -0.5,-0.8 -1,-1.5 -1.4,-2.3 -0.4,-0.7 -0.8,-1.4 -0.9,-2.2 l -0.2,0.9 c 0.1,0.7 0.6,1.4 0.9,2.1 l 1.5,2.5 0.3,0.4 c -0.3,-0.4 -0.6,-0.7 -1,-1 l -0.2,-0.3 c -0.3,-0.6 -0.7,-1.1 -1,-1.7 l -0.1,0.7 -0.1,-0.2 c -0.3,-0.6 -0.7,-1.1 -1,-1.7 l -0.1,0.9 1,1.5 v 0.1 l -0.3,-0.3 c -0.3,-0.2 -0.6,-0.4 -0.9,-0.7 l -0.1,1 0.9,0.6 c 0.2,0.2 0.5,0.3 0.7,0.5 0.3,0.3 0.6,0.6 0.9,1 0.6,0.7 1.1,1.5 1.6,2.3 v 0.3 l -0.3,-0.5 c -0.3,-0.4 -0.6,-0.7 -1,-1 l -0.5,-0.4 c -0.1,0 -0.1,0 -0.2,-0.1 v 1 l 0.1,0.1 c 0.2,0.1 0.3,0.1 0.4,0.3 0.3,0.2 0.5,0.4 0.7,0.7 v 0.6 l 0.3,0.2 v 0.2 l -0.1,-0.1 v 1 l 0.3,0.3 -0.8,-0.5 -1,-0.9 v 0.2 l -1.1,-0.6 c -0.6,-0.2 -1.1,-0.5 -1.7,-0.5 v 1 c 0.6,-0.1 1.1,0.1 1.7,0.3 0.5,0.2 1,0.5 1.5,0.8 l 0.6,0.4 1,0.72 v 0.4 c -0.3,-0.3 -0.6,-0.6 -0.8,-0.95 l -0.1,1 c 0.3,0.3 0.6,0.6 0.8,1 v 0.1 -0.18 l 0.3,0.3 c 0.5,0.7 0.9,1.4 1.4,2.1 l -0.3,-0.3 c -0.6,-0.4 -1.2,-0.7 -1.8,-1.1 -0.3,-0.2 -0.7,-0.4 -1.1,-0.4 v 1 c 0.4,0 0.7,0.2 1.1,0.3 l 1.1,0.7 v 0.3 l 0.9,1.2 0.2,0.35 -2.1,-0.7 c -0.4,-0.2 -0.8,-0.4 -1.1,-0.6 l -0.1,1 h 0.1 c 0.1,0.1 0,0 0.3,0.1 l 0.8,0.3 2.2,0.7 c -0.1,0.13 -0.1,0.3 -0.2,0.4 l 0.1,1 c 0.1,-0.2 0.2,-0.4 0.2,-0.66 0,-0.2 0.1,-0.4 0.1,-0.6 v -0.1 0.5 -0.5 l 0.1,0.1 -0.1,0.4 v 0.4 h 0.2 l 0.1,0.6 v -1.2 l 0.2,0.35 v 0.1 l 0.1,0.9 c 0,-0.2 0.1,-0.3 0.2,-0.5 v -0.2 l 0.1,0.3 -0.1,0.2 0.1,1 0.1,-0.1 0.1,0.5 0.1,-0.2 0.6,-1 0.3,-0.32 0.1,0.1 0.1,0.4 v 0.1 -0.4 l 0.4,0.2 c 0.04,0.1 0.1,0.2 0.1,0.3 l 0.1,0.3 v 0.3 -0.8 l 0.2,0.9 c 0,-0.5 0,-0.9 -0.1,-1.4 l 0.2,0.1 0.6,0.2 0.22,0.1 v -1 l -0.2,-0.1 c -0.3,-0.35 -0.66,-0.6 -1,-0.9 0.1,-0.05 0.14,-0.1 0.24,-0.1 v -0.2 c 0.1,0 0.1,-0.03 0.2,-0.04 0.3,0 0.6,0 0.8,0.1 v -0.9 h -0.9 c -0.4,0.1 -0.8,0.2 -1.2,0.4 v 0.3 l -0.55,-0.5 -0.3,-1 v -0.6 l 0.1,-0.1 c 0,0.1 0.1,0.2 0.1,0.3 l 0.05,-0.4 0.5,-0.5 c 0.4,-0.2 0.7,-0.4 1.1,-0.7 l -0.1,-1 c -0.3,0.3 -0.7,0.5 -1,0.7 l -0.7,0.5 -0.7,-1.1 c 0.1,-0.3 0.2,-0.6 0.32,-0.9 0.2,-0.4 0.4,-0.9 0.72,-1.2 l 0.6,-0.7 -0.1,-1 c -0.2,0.3 -0.4,0.52 -0.6,0.8 -0.2,0.2 -0.4,0.5 -0.56,0.7 l -0.24,0.53 c -0.1,0.4 -0.3,0.9 -0.4,1.4 l 0.03,-0.4 0.3,-1.5 c 0.1,-0.3 0.2,-0.5 0.4,-0.6 l -0.1,-1 -0.3,0.4 -0.2,0.2 c -0.2,0.5 -0.3,1 -0.4,1.5 l -0.1,0.8 c 0,0 -0.1,0 -0.1,-0.1 l -0.2,-0.8 -0.1,-0.3 0.1,-0.4 0.1,-0.8 0.2,-1.6 v 0.3 -1.4 c 0.06,-0.2 0.1,-0.3 0.2,-0.4 l 0.26,-0.5 c 0.2,-0.4 0.5,-0.6 0.8,-0.9 0.3,-0.2 0.6,-0.5 1,-0.6 l -0.08,-1 c -0.4,0.2 -0.7,0.4 -1,0.7 l -0.1,0.1 0.1,-0.2 0.1,-0.1 V 449 l -0.2,1 c 0,-1.3 0.1,-1 -0.16,-0.6 l -0.5,0.8 c -0.2,0.3 -0.4,0.7 -0.5,1 V 448 c 0.04,-0.03 0.1,-0.1 0.1,-0.2 l -0.1,-0.8 v -0.93 l -0.1,0.92 v 0.1 c -0.2,0.4 -0.3,0.8 -0.5,1.2 -0.3,0.9 -0.46,1.8 -0.5,2.7 l -0.26,-0.9 v -0.4 c 0,-0.6 0,-1.1 -0.1,-1.6 0,-0.3 0.1,-0.6 0.1,-0.9 0,-0.1 0.08,-0.3 0.1,-0.4 0.1,-0.5 0.3,-1 0.48,-1.6 l 0.3,-0.9 0.1,-0.3 v -1.1 l -0.1,0.9 v -0.8 0.3 l -0.3,0.9 c -0.1,0.5 -0.34,1 -0.5,1.6 0,0.1 0,0.2 -0.1,0.3 0,0.3 -0.1,0.7 -0.1,1 l -0.4,-1.7 0.2,-0.5 0.1,0.8 0.2,-0.8 c 0,-0.2 0.1,-0.7 0.2,-0.9 l 0.3,-1.4 c 0.3,-0.5 0.6,-0.9 0.9,-1.4 0.3,-0.4 0.6,-0.9 1,-1.4 l -0.1,-1 -0.5,0.9 -0.1,-0.7 -0.3,0.6 -0.04,-0.4 -0.2,0.6 v -0.8 l -0.18,1 v -0.9 l -0.1,0.2 -0.1,0.3 -0.4,1.1 c -0.3,0.8 -0.6,1.6 -0.8,2.5 0,0.2 -0.1,0.5 -0.1,0.7 v -2 c 0.1,-0.1 0.1,-0.2 0.1,-0.3 0.03,-0.1 0.1,-0.4 0.1,-0.5 v -1 l -0.1,0.9 v -0.8 l -0.07,0.2 c 0,0 0,0.1 -0.1,0.1 v -0.6 l -0.2,1 v 0.2 c -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.1,0.3 -0.2,0.6 -0.2,0.9 l -0.2,-1 c -0.1,-0.2 -0.1,-0.4 -0.1,-0.6 v -0.1 c 0.4,-1.2 0.9,-2.4 1.5,-3.5 l 0.34,-0.7 0.3,-0.5 v -0.6 l 0.3,-0.5 -0.1,-1 -0.6,1.4 c -0.3,0.6 -0.6,1.1 -0.9,1.7 l -0.5,0.9 c -0.3,0.6 -0.5,1.3 -0.8,1.9 l -0.1,-0.4 v -0.6 l 0.1,-0.6 -0.1,-0.3 c 0,-1.1 -0.1,-2.1 -0.1,-3.2 v -4.2 l -0.1,1 v 4.1 c 0,0.6 0.1,1.2 0.1,1.8 l -0.6,-1.6 c 0,-0.3 0,-0.7 0.1,-1.1 0.1,-0.4 0.1,-0.7 0.2,-1.1 l 0.2,-0.5 c 0,-0.1 0.1,-0.1 0.1,-0.2 l -0.2,-0.9 c -0.04,0.4 -0.2,0.8 -0.23,1.1 -0.1,0.4 -0.1,0.4 -0.1,0.8 -0.1,0.6 -0.1,1.1 -0.1,1.6 -0.1,-0.4 -0.3,-0.7 -0.43,-1.1 l -1,-2.6 c -0.2,-0.6 -0.4,-1.3 -0.5,-2 l -0.1,0.7 -0.43,-1 z m 3,7.97 c 0.12,0.33 0.25,0.66 0.36,1 0.1,0.27 0.1,0.32 0.12,0.4 V 440 c -0.16,-0.52 -0.3,-1.04 -0.48,-1.55 z m -0.22,0.4 c 0.25,0.8 0.5,1.6 0.72,2.4 v 0.1 l -0.25,-0.48 -0.1,-0.3 c -0.07,-0.3 -0.17,-0.5 -0.26,-0.7 0,-0.3 -0.1,-0.6 -0.1,-0.9 v -0.2 z m 2.24,0.33 c -0.26,0.66 -0.52,1.34 -0.76,2.02 0,0.04 -0.03,0.1 -0.04,0.13 0,-0.1 -0.03,-0.2 -0.04,-0.3 l 0.46,-1.13 z m -0.87,1.93 -0.1,0.72 c -0.03,-0.05 -0.06,-0.18 -0.08,-0.22 0,-0.17 0.1,-0.33 0.1,-0.5 z m 2.43,1.03 -0.05,0.16 -0.1,0.17 0.15,-0.4 z m -2.46,0.56 0.15,0.84 0.1,0.86 v 0.2 l -0.2,-0.48 c 0,-0.1 0,-0.2 -0.1,-0.32 l -0.2,-0.93 v -0.2 z m 2.14,0.2 -0.12,0.36 -0.3,0.93 -0.12,0.3 c 0.13,-0.4 0.28,-0.9 0.46,-1.3 l 0.08,-0.2 z m -1.25,0.55 v 2.26 l -0.26,-1.3 0.2,-0.75 0.06,-0.2 z m -1.52,0.03 0.1,0.13 v 0.3 -0.13 l 0.1,-0.3 z m 0.2,0.7 c 0.1,0.16 0.1,0.32 0.1,0.48 0,-0.1 -0.1,-0.18 -0.1,-0.27 l 0.1,-0.1 v -0.1 z m 0.4,0.36 0.1,0.3 v 0.18 -0.48 z m -0.8,0.1 0.1,0.1 v 0.26 l 0.1,-0.22 v 0.6 -0.74 z m 1.4,0.47 0.3,1.42 v 0.02 -0.38 c 0,-0.4 -0.1,-0.6 -0.2,-1 v -0.2 z m -1.1,0 0.6,0.96 c 0,0.1 0.1,0.3 0.1,0.4 -0.1,-0.1 -0.2,-0.2 -0.3,-0.4 l -0.2,-0.4 v -0.7 l 0.1,-0.2 z m -2,0.07 c 0.2,0.07 0.3,0.15 0.5,0.25 0.3,0.14 0.5,0.34 0.7,0.54 0.3,0.2 0.4,0.5 0.6,0.8 l 0.5,0.9 c 0.2,0.4 0.3,0.8 0.4,1.2 l 0.1,0.1 c -0.1,-0.4 -0.3,-0.7 -0.6,-1.1 l -1.8,-2.7 -0.1,-0.1 z m 3,1.7 0.2,0.34 v 0.02 l -0.1,-0.15 v -0.2 z m -0.5,0.4 0.3,0.32 0.1,0.53 V 448 l -0.2,-0.7 z m 1.2,0.38 c 0.2,0.75 0.4,1.5 0.5,2.26 v 0.16 l -0.1,-0.7 c -0.1,-0.45 -0.1,-0.72 -0.2,-1.16 v -0.53 z m -0.7,0.23 0.1,0.4 -0.1,0.3 v -0.6 z m 0.3,1 v 1.4 c 0,0.2 0.1,0.3 0,0.4 v -0.3 1.1 c -0.1,-0.1 -0.1,-0.3 -0.2,-0.5 v -0.6 c 0,0.1 0,0.1 0.1,0.2 l 0.1,-0.9 0.2,-0.4 z m 0.1,0.5 c 0,0.1 0.1,0.1 0.1,0.2 v 0.6 l 0.2,1 v -0.5 l 0.1,0.7 0.1,1.6 -0.3,-1 v -2.3 z m 2.3,0.2 v 0.8 l 0.1,2.2 v 1.3 l -0.3,0.9 c -0.3,0.6 -0.4,1.3 -0.5,2 l -0.1,-0.7 v -0.1 c 0,-0.5 0,-1 0.1,-1.4 0.1,0.3 0.2,0.7 0.2,1 v 0.4 l 0.2,-0.9 v -0.4 c 0,-0.4 -0.1,-0.8 -0.2,-1.2 0.1,-0.9 0.2,-1.7 0.5,-2.6 0.1,-0.3 0.3,-0.6 0.4,-0.9 z m -1.9,0.7 0.1,0.7 0.2,0.8 v 1.9 -0.2 c 0,-1 -0.1,-2 -0.2,-3 z m -1.1,0.8 0.2,0.4 v 0.2 c 0,-0.1 -0.1,-0.2 -0.1,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 z m 1.6,1.4 0.2,0.7 0.1,-0.5 0.2,0.9 v 1.7 c -0.2,-0.8 -0.3,-1.6 -0.4,-2.4 v -0.3 z m -0.8,2 c 0,0.1 0,0.1 0.1,0.2 v 0.1 l -0.1,-0.1 z m 0,1.6 0.4,0.7 0.2,0.5 v 0.2 c -0.2,-0.3 -0.4,-0.7 -0.6,-1 v -0.3 z m 2.3,0.1 -0.1,1.3 -0.1,0.9 -0.2,-0.4 v -0.4 c 0.1,-0.4 0.1,-0.9 0.2,-1.3 v 0.5 l 0.2,1 v -0.1 c 0,-0.3 0.1,-0.7 0.1,-1 l 0.1,-0.4 z m -1.6,1.3 0.2,0.4 -0.1,-0.3 v -0.1 z m 0.8,1 0.1,0.1 0.1,0.6 -0.1,-0.3 -0.1,-0.2 0.1,-0.2 z m 39.15278,1.79231 -40.25278,0.008 0.7,0.7 0.1,0.1 v 0.1 c 0,0.1 0.1,0.1 0.1,0.2 l 0.3,0.7 0.1,0.3 v 0.1 l 0.1,0.2 0.2,0.6 -0.7,-1.2 -0.5,-0.8 -0.2,-0.4 -0.2,-0.2 v -0.5 z M 492.31,463.31 l 0.3,0.5 0.1,0.3 v 0.2 l -0.4,-0.8 0.1,-0.1 z m -0.5,0.2 0.1,0.2 0.2,0.4 v 0.1 l -0.3,-0.4 z m 1.2,1.2 c 0.1,0.1 0.1,0.2 0.1,0.4 l -0.1,-0.3 0.1,-0.1 z m -0.6,0.2 0.3,1.3 0.1,0.2 -0.6,-0.2 v -0.9 c 0,0.1 0.1,0.1 0.1,0.2 v -0.3 l 0.1,0.4 0.1,-0.7 z m -0.9,0.2 c 0.1,0.1 0.2,0.2 0.3,0.4 l 0.1,0.1 0.1,0.2 c -0.1,-0.2 -0.3,-0.4 -0.4,-0.6 z m 0.5,0.5 0.1,0.1 0.1,0.2 v 0.2 l -0.1,-0.2 v -0.2 z m 1.3,0.8 0.1,0.1 v 0.1 -0.1 z m 0.4,0.3 0.1,0.3 h -0.1 v -0.2 z m -0.2,0.1 0.1,0.2 h -0.1 v -0.1 z m -0.1,1.2 v 0.1 z"
+		 id="path4653-3-1"
+		 sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccscccccccccccccscccccccccccccccsccccccccsccccccccccccccccccccccccccccccccccccsccccccccccccccccssccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccscsscccccccccccccccccccccccccccccccccccscccccccccccscccccccccccccccsccsccscccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccsccccccccccccccccccccccccccccccccccccccccsccccccccccscccccccccccccccscsccscsccccccscccccsccccccccccccccccccccccccccccccscccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
+	</g>
   </g>
   <g
-     inkscape:groupmode="layer"
-     id="layer12"
-     inkscape:label="Layer 1" />
+	 inkscape:groupmode="layer"
+	 id="layer12"
+	 inkscape:label="Layer 1" />
   <g
-     inkscape:groupmode="layer"
-     id="layer13"
-     inkscape:label="Layer 2">
-    <g
-       transform="matrix(-1.3230272,0,0,0.60512313,1228.2585,-15.297203)"
-       style="stroke-width:0.1;stroke-linecap:round"
-       id="layer2-4">
-      <path
-         style="fill:#9497a2"
-         inkscape:connector-curvature="0"
-         d="m 495.4,468.64 -1.5,1.78 -0.37,-2.72 -2.7,1.5 -1.6,-3.65 -4.5,-1.97 -2.25,-3.18 5.53,2.25 -5.5,-4.4 2.2,-0.38 -3.9,-3 -3.2,-4.3 5.4,3 -4.9,-6.47 4.4,1.78 -3.8,-7.86 2.6,2.34 -4.31,-6.36 5.06,2 -2.2,-3.9 -3.5,-3.2 4.2,1.1 -3.86,-8.6 -0.63,-5.4 4.2,10.3 -0.32,-9.9 3,10.2 2.64,-10.5 0.8,6.2 0.2,5.5 7.1,-10.2 -3,6.95 6.3,-3.4 -5.5,5.1 -2.9,3 11.2,-4 -4.7,4.1 8.2,-1.9 -10.7,5 8.4,1.02 -6.5,3.72 5.6,-0.1 -5.3,3.1 3.7,1.4 -4.4,1.7 6.4,-1.4 2.1,-2.1 -4.8,5.2 4.3,-1.2 -7,5.9 5.4,-2 -4.2,4.2 -2.9,3.7 6,-2.1 -3.3,5 5.5,-0.8 -5,2.3 3.2,1.8 -3.8,0.3 2.5,3.6 z"
-         id="path4488-3" />
-      <path
-         style="fill:#b4b3b7"
-         inkscape:connector-curvature="0"
-         d="m 485.05,423.03 z m 0,0 -0.16,0.97 v 1.05 c -0.1,0.42 0,0.83 0.1,1.24 0.1,0.4 0.1,0.3 0.1,0.8 0,0.4 0.1,0.9 0.1,1.3 -0.1,-0.4 -0.1,-0.7 -0.1,-1.1 l -0.9,0.4 c 0,0.3 0.1,0.7 0.1,1 l 0.3,1.4 c 0.1,0.3 0.1,0.7 0.2,1.1 l 0.4,-0.3 v 0.2 -0.3 l 0.3,-0.2 c 0,-0.4 -0.1,-0.8 -0.2,-1.1 0,-0.1 0,-0.2 -0.1,-0.3 0,-0.3 -0.1,-0.6 -0.1,-0.8 0,-0.9 -0.1,-1.8 -0.2,-2.6 0,-0.2 0,-0.3 -0.1,-0.4 -0.1,-0.6 -0.3,-1.1 -0.2,-1.7 v -1 z m -8.48,0.45 -0.12,0.98 c 0.1,0.33 0.27,0.65 0.4,0.97 0.2,0.44 0.35,0.88 0.5,1.33 0.16,0.46 0.2,0.94 0.3,1.4 0.12,0.46 0.2,0.92 0.3,1.37 0.04,0.24 0.13,0.47 0.24,0.7 l 0.1,-0.96 c -0.1,-0.18 -0.2,-0.38 -0.2,-0.58 0,0 0.1,0.1 0.1,0.2 l 0.6,1.3 0.5,1.2 v 0.1 c 0.1,0.3 -0.1,-0.1 0.1,0.3 l 0.2,0.4 0.1,0.2 -1.2,-0.6 c -0.6,-0.2 -1.1,-0.4 -1.7,-0.6 -0.3,-0.1 -0.6,-0.1 -0.8,-0.1 v 1 c 0.2,-0.1 0.5,0 0.8,0 l 1.2,0.3 v 0.4 c 0.2,-0.1 0.5,0 0.7,0.1 l 0.3,0.1 -0.2,0.1 1,1 c 0.4,0.3 0.9,0.7 1.4,1.1 0.2,0.1 0.1,0 0.2,0.2 l 0.4,-0.2 c 0.1,0.1 0.3,0.3 0.4,0.5 0.2,0.3 0.5,0.5 0.7,0.8 l 0.5,0.6 0.4,0.6 c 0.2,0.3 0.5,0.6 0.7,0.9 l 0.7,0.8 0.8,-0.5 -0.7,-0.9 c -0.2,-0.3 -0.5,-0.6 -0.7,-1 l -0.5,-0.7 -0.6,-0.6 -0.7,-0.8 -0.7,-0.7 c -0.2,-0.1 -0.4,-0.2 -0.6,-0.2 l -0.2,0.1 -0.6,-0.5 0.1,-0.4 c 0.6,0.2 1.3,0.5 1.9,0.7 0.3,0.1 0.6,0.3 0.8,0.4 l 0.3,0.2 c 0.2,0.3 0.3,0.5 0.5,0.8 l 0.8,-0.4 c -0.2,-0.4 -0.4,-0.7 -0.5,-1.1 -0.1,-0.4 -0.3,-0.7 -0.6,-0.9 l 0.4,-0.2 c -0.2,-0.4 -0.4,-0.7 -0.6,-1 -0.5,-0.7 -0.9,-1.3 -1.4,-1.9 l -0.4,-0.4 0.3,-0.9 0.7,-2.3 c 0.2,-0.4 0.4,-0.9 0.5,-1.4 l -0.1,-0.9 c -0.1,0.5 -0.3,1 -0.5,1.5 -0.2,0.8 -0.5,1.5 -0.7,2.3 -0.1,0.2 -0.1,0.4 -0.2,0.6 v -0.3 c -0.1,-0.3 -0.2,-0.6 -0.4,-0.8 l -0.5,-0.9 -0.6,-0.9 c -0.2,-0.3 -0.4,-0.6 -0.4,-0.9 l -0.1,-0.2 c 0.1,-0.2 0.1,-0.4 0.2,-0.6 l -0.1,-1 c -0.2,0.2 -0.2,0.5 -0.3,0.7 -0.1,0.5 -0.1,1 0,1.5 v 0.4 c 0.2,0.3 0.4,0.8 0.5,1.2 l 0.6,1.6 c 0.1,0.1 0.1,0.3 0.2,0.5 l -0.7,0.4 c 0.4,0.3 0.7,0.7 1.1,1 l 0.1,0.1 v 0.7 c -0.4,-0.3 -0.8,-0.6 -1.1,-1 l -0.9,0.5 c 0.4,0.4 0.9,0.7 1.4,1.1 0.6,0.4 1.2,0.8 1.8,1.3 -0.8,-0.3 -1.6,-0.6 -2.5,-1 l -0.8,-0.3 v -0.7 c -0.1,-0.2 -0.2,-0.4 -0.4,-0.7 l -0.3,-0.9 -0.6,-1.2 -0.7,-1.3 c -0.2,-0.3 -0.3,-0.6 -0.4,-0.9 l -0.1,0.4 v -0.2 c -0.1,-0.5 -0.1,-1 -0.3,-1.4 -0.1,-0.5 -0.3,-0.9 -0.5,-1.4 -0.1,-0.3 -0.3,-0.6 -0.4,-1 z m 13.57,1.1 -0.15,0.95 c 0,-0.2 0,-0.42 -0.1,-0.64 l -0.1,0.2 -0.2,0.9 c -0.2,0.7 -0.5,1.5 -0.7,2.2 -0.3,0.2 -0.5,0.5 -0.7,0.8 -0.1,0.1 -0.2,0.3 -0.3,0.5 -0.1,0.1 -0.2,0.1 -0.2,0.2 -0.5,0.4 -0.9,0.9 -1.2,1.5 -0.2,0.3 -0.3,0.7 -0.4,1.1 v 0.1 l 0.9,-0.4 v -0.1 c 0,-0.4 0.2,-0.8 0.4,-1.1 0.1,-0.3 0.3,-0.6 0.6,-0.9 v 0.5 -0.2 l 0.1,0.7 c 0,-0.1 0.1,-0.3 0.1,-0.4 l 0.6,-1.6 v -0.1 l 0.1,-0.2 c 0.4,-0.3 0.8,-0.6 1.3,-0.9 0.5,-0.3 1,-0.6 1.7,-0.6 h 0.8 v -1 h -0.8 c -0.7,0 -1.2,0.3 -1.8,0.6 l -1,0.6 0.3,-1 c 0.1,-0.4 0.2,-0.7 0.2,-1 v -1.5 z m -8.2,4.34 0.22,0.4 c 0.12,0.18 0.2,0.4 0.25,0.6 l -0.2,-0.4 -0.2,-0.6 z m 2.34,0.4 -0.87,0.45 0.2,0.84 0.2,0.5 0.9,-0.4 -0.1,-0.4 c 0,-0.3 -0.1,-0.5 -0.1,-0.8 z m 11.02,1.14 c -0.43,0.1 -0.85,0.23 -1.27,0.37 -0.53,0.2 -1.05,0.42 -1.55,0.68 l -0.42,0.2 -1.28,0.6 -0.6,0.3 -0.23,0.2 -0.1,0.1 c -0.23,0.2 -0.46,0.3 -0.7,0.5 l 0.53,-0.2 -0.1,0.2 -0.06,0.2 v 0.1 c -0.4,0.2 -0.8,0.4 -1.2,0.7 l 0.9,-0.3 c -1.5,0.9 -0.42,0.2 -0.05,0.1 l 0.2,-0.1 -0.2,0.2 c -0.17,0.2 -0.32,0.4 -0.44,0.6 l 0.9,-0.4 v 0.2 l 0.08,-0.2 0.2,-0.2 0.8,-0.4 0.9,-0.5 v 0.1 l 0.2,-0.1 -0.2,0.2 -0.2,0.2 c -0.2,0.2 -0.5,0.5 -0.8,0.7 0,0.1 0,0.1 -0.1,0.1 v -0.2 l -0.3,0.5 -0.1,0.6 c 0,0.3 -0.1,0.5 -0.2,0.8 l -0.1,0.3 0.1,1 0.2,-0.3 c 0.1,-0.2 0.2,-0.4 0.2,-0.7 0.1,-0.2 0.2,-0.3 0.2,-0.6 0.1,-0.1 0.2,-0.3 0.3,-0.4 v -0.6 l 0.2,-0.1 h 0.1 v 0.1 l 0.9,-0.4 c 0,0 0.1,-0.1 0.1,-0.2 1.1,-0.6 1.2,-0.7 2.2,-1.2 0.7,-0.4 1.4,-0.7 2.1,-1 0.5,-0.1 0.8,-0.3 1.2,-0.6 v -0.1 h -0.1 c 0.1,0 0,0 0,0 h -0.1 l 0.1,-0.1 -0.5,0.2 -0.9,0.3 v -0.6 h 0.1 -0.1 z m -0.53,1.22 c -0.14,0.06 -0.3,0.12 -0.42,0.2 l -0.33,0.18 0.3,-0.23 z m -12.28,0.03 0.9,1.3 -1,-0.6 v -0.3 l -0.1,-0.1 v -0.1 z m 10.8,0.7 -1.7,1 0.4,-0.4 0.4,-0.3 h 0.1 l 0.6,-0.2 z m 0.9,3.7 h -0.7 c -0.3,0.1 -0.7,0.1 -1,0.1 -0.5,0 -0.9,0.1 -1.3,0.2 -0.3,0.1 -0.5,0.1 -0.8,0.2 l -0.1,0.1 -0.8,0.6 c 0.2,-0.1 0.4,-0.2 0.7,-0.2 0.4,-0.1 0.8,-0.1 1.2,-0.2 h 1.6 z m -0.5,0.6 -0.6,0.2 c -0.3,0.1 -0.6,0.1 -0.8,0.2 -0.1,0 -0.1,0.1 -0.1,0.1 0,0 -0.1,0 -0.1,0.1 h -0.5 c -0.3,0 -0.5,0 -0.7,0.1 l -0.6,0.3 c -0.2,0.1 -0.4,0.2 -0.4,0.5 l 0.1,0.1 -0.5,0.3 0.5,-0.2 -0.3,0.2 0.4,-0.2 h 0.1 l -0.1,0.1 0.2,-0.1 -0.1,0.1 -0.3,0.3 -0.1,0.1 0.9,-0.4 v -0.1 h 0.1 l -0.8,0.4 c 0,0.1 -0.2,0.4 -0.2,0.5 l 0.1,0.1 0.1,0.1 c 0.1,0.1 0.3,0 0.4,0 l -0.1,0.1 c -0.4,0.3 -0.7,0.6 -1.1,1 l -0.7,1 v 0.1 c 0,0.2 0.3,0.1 0.5,-0.1 l -0.2,0.4 0.9,-0.4 c 0.1,-0.2 0.1,-0.4 0.3,-0.6 l 0.2,-0.3 v 0.7 c 0,0.1 0.1,0.1 0.1,0 v -0.1 l 0.1,-0.1 c 0.1,-0.2 0.3,-0.3 0.4,-0.5 v 0.1 l 0.2,-0.2 c 0.3,-0.3 0.8,-0.6 1.2,-0.9 0.5,-0.3 1,-0.6 1.6,-0.8 0.1,-0.1 0.4,-0.2 0.5,-0.2 h 0.2 v -0.2 h 1.2 l 0.8,-0.5 h -0.9 l 0.3,-0.2 -0.1,-0.1 h -0.2 v 0.1 l 0.1,-0.1 -1.2,0.1 h -0.6 v -0.2 c -0.3,0.1 -0.7,0.1 -1.1,0.1 z m -16.2,1 v 1 h 0.8 c 0.4,0 0.8,0.1 1.1,0.3 l -0.4,0.3 c 0.2,0 0.5,0 0.8,0.1 0.3,0.1 0.6,0.4 0.8,0.6 l 0.4,0.5 -0.2,0.2 0.4,0.5 -0.4,0.3 c 0.2,0 0.3,0 0.5,0.1 l 0.9,1.3 0.9,1.5 0.2,0.5 0.8,-0.4 -0.3,-0.5 c -0.3,-0.4 -0.5,-0.8 -0.8,-1.2 l 1.4,1 0.6,0.6 0.8,-0.5 -0.6,-0.5 c -0.5,-0.3 -1.1,-0.6 -1.6,-1 -0.5,-0.3 -1,-0.7 -1.5,-0.9 -0.1,0 -0.2,-0.1 -0.3,-0.1 v -0.1 l -0.3,-0.4 0.7,0.5 c 0.3,0.2 0.6,0.3 0.9,0.5 l 0.4,0.3 c 0.4,0.3 0.8,0.5 1.2,0.8 l 0.8,0.6 0.1,-0.9 -0.9,-0.6 -1.3,-0.8 c -0.4,-0.2 -0.9,-0.4 -1.3,-0.7 -0.4,-0.2 -0.7,-0.4 -1,-0.6 v 0.5 l -0.2,-0.2 c -0.3,-0.2 -0.6,-0.5 -0.9,-0.6 l -0.2,-0.1 v -0.2 c -0.2,-0.2 -0.5,-0.3 -0.7,-0.4 -0.2,-0.1 -0.4,-0.2 -0.5,-0.2 -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 h -0.8 z m 15.9,0.1 -0.1,0.1 -0.3,0.1 h -0.3 c 0.2,0 0.4,-0.1 0.6,-0.1 z m -3.1,0.2 h -0.1 z m 1.2,0 z m -0.1,0.2 c 0,0.1 -0.1,0.1 -0.1,0.2 l -0.1,0.1 c 0,0.1 -0.1,0.1 -0.1,0.1 l 0.1,-0.3 z m 5.3,2.6 c -0.6,0.2 -1.2,0.4 -1.7,0.7 h -0.1 c 0.1,-0.1 0.3,-0.2 0.2,-0.4 l -0.1,-0.1 h -0.1 l -0.6,0.2 c -0.2,0 -0.4,0.1 -0.5,0.2 -0.4,0.3 -0.9,0.5 -1.3,0.8 -0.2,0.2 -0.4,0.5 -0.6,0.7 -0.1,0.2 -0.2,0.4 -0.4,0.6 l 0.7,-0.3 c -0.2,0.2 -0.3,0.4 -0.4,0.6 l -0.1,0.1 -0.8,0.6 0.2,-0.1 c 0.1,-0.1 0.2,-0.2 0.4,-0.2 l -0.1,0.2 h -0.1 l -0.2,0.3 c -0.1,0.1 -0.3,0.4 -0.4,0.5 l -0.3,0.5 c 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.2 -0.3,0.7 -0.3,1 v 0.1 l 0.1,0.1 c 0.4,-0.3 0.8,-0.4 1.1,-0.7 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.3 0.2,-0.4 l 0.2,-0.5 0.4,-0.6 c 0.2,-0.4 0.5,-0.7 0.7,-1.1 v -0.1 l 0.2,-0.1 0.8,-0.4 c 0.6,-0.3 1.2,-0.5 1.7,-0.9 v -0.1 h -0.1 c -0.2,0 -0.3,0.1 -0.5,0.1 h -0.3 c -0.4,0.1 -0.8,0.6 -1.1,0.6 h -0.1 l 0.4,-0.4 1.6,-0.6 z m -2.4,0.8 -0.1,0.1 -0.3,0.3 -0.7,0.4 -0.5,0.3 0.2,-0.3 0.3,-0.4 c 0,0 0.1,0 0.1,-0.1 l 0.2,-0.1 c 0.2,0 0.4,-0.2 0.7,-0.2 z m 0.5,0.7 -0.6,0.3 -0.6,0.3 0.2,-0.1 0.4,-0.3 0.2,-0.1 h 0.4 z m -15.9,0.3 -0.1,1 0.6,0.3 1,0.7 c 0.1,0.1 0.2,0.1 0.3,0.2 l -0.3,0.2 c 0.2,0.2 0.5,0.3 0.9,0.4 0.1,0.1 0.3,0.1 0.5,0.2 l 0.5,0.5 c 0.1,0.2 0.2,0.3 0.3,0.5 l 0.1,-0.9 c 0.2,0.1 0.5,0.2 0.7,0.4 l 0.2,0.2 v 0.1 c 0.2,0.4 0.3,0.7 0.4,1.1 -0.3,-0.1 -0.6,-0.2 -0.9,-0.4 l -0.8,0.6 c 0.3,0.1 0.7,0.3 1,0.4 0.4,0.2 0.9,0.5 1.3,0.7 0.2,0.4 0.3,0.7 0.6,1 l 0.6,0.5 0.8,-0.5 h -0.1 l 0.3,-0.2 c -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.3,-0.3 -0.7,-0.7 -1.1,-0.9 -0.1,0 -0.1,0 -0.2,-0.1 l -0.2,-0.3 -0.2,-0.3 c -0.2,-0.3 -0.2,-0.4 -0.3,-0.7 l 0.1,0.1 0.6,0.5 0.8,-0.5 -0.7,-0.5 c -0.3,-0.2 -0.5,-0.3 -0.8,-0.4 l -0.6,-0.3 v -0.1 l -0.1,-0.1 -0.2,-0.3 -0.3,-0.6 -0.7,0.5 c -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.2,-0.1 -0.5,-0.2 -0.7,-0.2 l -0.2,0.1 -0.5,-0.3 c -0.4,-0.3 -0.8,-0.5 -1.2,-0.8 l -1,-0.7 -0.6,-0.3 z m 17,1.5 c -0.3,0.1 -0.6,0.1 -0.9,0.2 l -0.3,0.1 h -0.4 c -0.2,0 -0.4,0 -0.6,0.1 -0.2,0.1 -0.3,0.2 -0.4,0.2 l -0.3,0.3 -0.1,0.2 c -0.7,0.4 -1.3,0.8 -2,1.3 l 0.9,-0.3 c 0.3,-0.2 0.6,-0.4 0.8,-0.5 h 0.1 l 0.2,-0.1 v 0.2 c 0,0.1 0,0.2 -0.1,0.3 v 0.1 l -1,0.7 c -0.4,0.3 -0.8,0.6 -1.1,1 -0.2,0.3 -0.4,0.6 -0.5,0.8 l 0.1,1 c 0.1,-0.3 0.2,-0.6 0.4,-0.8 0.3,-0.4 0.7,-0.7 1.1,-1 0.4,-0.3 0.8,-0.5 1.2,-0.7 v -0.2 l 0.2,-0.6 c 0,-0.1 0,-0.2 0.1,-0.2 0.1,0 0.2,-0.1 0.4,-0.2 0.2,-0.1 0.3,-0.1 0.5,-0.1 h 2.2 v -1 h -0.8 l 0.3,-0.2 h -0.2 z m 2.3,2.3 c -0.3,0.2 -0.7,0.2 -1,0.3 l 0.1,-0.1 c -0.4,0.1 -0.7,0.1 -1.1,0.1 -0.5,0 -0.9,0.1 -1.3,0.3 -0.5,0.3 -1,0.5 -1.3,0.9 l -0.2,0.2 -0.2,0.1 c -0.5,0.3 -0.8,0.8 -1.2,1.3 -0.3,0.4 -0.5,0.8 -0.8,1.2 l 0.8,-0.4 0.5,-0.8 v 0.1 l 0.9,-0.4 v -0.2 c 0.1,-0.3 0.2,-0.5 0.4,-0.8 h 0.3 -0.1 l 0.1,0.9 0.2,-0.3 c 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.2 0.4,-0.2 0.5,-0.3 0.5,-0.2 1,-0.3 1.5,-0.4 0.5,-0.1 0.9,-0.1 1.3,-0.2 z m -3.3,0.9 c -0.1,0 -0.1,0 -0.1,0.1 h -0.4 c 0,-0.1 0,-0.1 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.1 z m 2.7,1 h -0.1 l -0.3,0.1 -0.7,0.2 c -0.4,0.1 -0.8,0.2 -1.1,0.4 l -0.7,0.2 -0.7,0.4 -0.4,0.2 -0.4,0.2 -0.1,-0.9 c -0.3,0.1 -0.5,0.3 -0.7,0.5 -0.4,0.4 -0.6,0.8 -0.9,1.3 l -0.2,0.5 -0.1,0.1 c -0.1,0.1 -0.2,0.2 -0.3,0.4 l 0.1,-0.1 -0.1,0.1 v 0.4 c -0.1,0.1 0,0.1 -0.1,0.2 l 0.1,-0.1 v 0.3 l 0.2,-0.5 0.5,-0.2 0.1,-0.1 0.6,-0.6 c 0.1,-0.1 0.2,-0.3 0.4,-0.4 l 0.2,-0.1 0.2,-0.1 1.5,-0.6 1.8,-0.6 c 0.4,0 0.7,-0.1 1.1,-0.1 v -1 c -0.4,0 -0.8,0.2 -1.1,0.2 l -0.3,0.1 z m -16.6,0.3 -0.8,0.5 c 0.3,0 0.5,0.2 0.7,0.3 l 0.9,0.6 0.8,0.6 -0.6,0.4 h 0.4 l -0.2,0.2 0.6,0.4 0.8,0.5 c 0,0.3 0.1,0.5 0.3,0.7 0.3,0.6 -0.1,-0.1 0.3,0.6 0.3,0.6 0.7,1.2 1.1,1.8 l -0.3,-0.2 -0.6,-0.2 c -0.4,-0.1 -0.7,-0.3 -1,-0.5 l -1.3,-0.8 c -0.3,-0.2 -0.6,-0.3 -0.9,-0.5 l -0.4,0.3 v -0.9 l -0.2,-0.1 c -0.4,-0.2 -0.8,-0.4 -1.3,-0.5 l -0.7,-0.3 -0.1,1 0.7,0.3 c 0.5,0.1 0.8,0.3 1.2,0.5 l 0.2,0.1 -0.4,0.3 c 0.3,0.1 0.6,0.3 0.9,0.5 l 1.3,0.8 c 0.3,0.2 0.6,0.4 0.9,0.5 0.2,0.1 0.3,0.2 0.5,0.3 l 0.2,0.3 0.8,-0.5 0.1,0.1 c 0.2,0.5 0.5,0.9 0.8,1.3 l 0.2,0.3 0.8,-0.5 -0.2,-0.2 c -0.3,-0.4 -0.6,-0.8 -0.9,-1.3 l -1,-1.7 0.6,0.3 c 0.4,0.2 0.7,0.5 1,0.8 0.3,0.4 0.5,0.8 0.7,1.2 l 0.3,0.9 0.8,-0.4 -0.3,-0.9 c 0,-0.2 -0.1,-0.3 -0.2,-0.5 v -0.1 l 0.4,-0.2 c -0.2,-0.2 -0.5,-0.4 -0.7,-0.7 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 l -0.7,-0.6 c -0.3,-0.2 -0.5,-0.5 -0.8,-0.7 v -0.1 l -0.2,-0.1 -0.4,-0.3 -1.1,-0.6 c -0.3,-0.2 -0.5,-0.3 -0.8,-0.5 l -1.1,-0.8 c -0.3,-0.2 -0.6,-0.5 -0.9,-0.6 l -0.8,-0.3 z m 11.3,2.6 v 0.3 c -0.1,0.1 -0.2,0.1 -0.4,0.2 l -0.2,0.1 v -0.1 l 0.2,-0.3 0.2,-0.3 z m 3.8,1.2 -0.9,0.4 c -0.3,0.2 -0.6,0.4 -0.8,0.6 -0.3,0.2 -0.5,0.4 -0.7,0.6 l -0.8,0.4 c -0.4,0.3 -0.7,0.6 -1,0.9 -0.2,0.2 -0.3,0.5 -0.4,0.7 l 0.6,-0.2 v 0.1 c -0.2,0.3 -0.3,0.7 -0.4,1.1 l -0.6,0.4 c -0.5,0.4 -1,0.8 -1.5,1.3 l 0.9,-0.3 c 0.4,-0.4 0.8,-0.7 1.3,-1.1 v 0.5 c -0.2,0.3 -0.4,0.7 -0.5,1.1 l 0.8,-0.4 c 0.1,-0.4 0.3,-0.8 0.5,-1.1 v 0.1 c 0,0.3 -0.1,0.6 -0.1,0.8 v 0.1 l 0.8,-0.4 c 0,-0.3 0.1,-0.6 0.1,-0.8 0.1,-0.3 0.1,-0.6 0.2,-0.9 l 0.2,-0.2 c 0.4,-0.1 0.7,-0.2 1.1,-0.2 l 0.8,-0.6 c -0.5,0.1 -1,0.2 -1.4,0.3 0.3,-0.2 0.6,-0.5 0.9,-0.7 0.6,-0.3 0.6,-0.3 0.9,-0.5 l -0.9,0.4 c -0.1,0 -0.1,0.1 -0.1,0.1 l 0.7,-0.4 -0.1,0.1 c -0.1,0 -0.1,0.1 -0.2,0.1 l -1.1,0.6 c -0.1,0.1 -0.1,0.1 -0.2,0.1 -0.2,0.1 -0.3,0.3 -0.5,0.4 l -0.2,0.2 0.1,-0.4 1.3,-0.9 c 0.4,-0.2 0.8,-0.4 1.3,-0.6 0.3,-0.1 0.5,-0.1 0.8,-0.2 v -1 l -0.8,0.3 c -0.4,0.1 -0.7,0.3 -1.1,0.5 l -0.5,0.2 0.5,-0.4 0.9,-0.7 z m -11,0.5 z m 8.3,1.5 -0.2,0.2 c -0.2,0.1 -0.4,0.3 -0.6,0.5 0,-0.1 0,-0.1 0.1,-0.1 0.2,-0.3 0.4,-0.5 0.6,-0.6 z m -0.6,1.7 c 0,0.1 -0.1,0.2 -0.1,0.2 l -0.3,0.2 v -0.1 l 0.3,-0.3 z m -0.1,0.4 c 0,0.1 0,0.1 -0.1,0.1 -0.3,0.2 -0.5,0.4 -0.6,0.7 l -0.2,0.2 c 0,-0.2 0.1,-0.4 0.2,-0.6 v -0.1 c 0.1,0 0.3,-0.1 0.4,-0.2 z m -8,1.4 -0.7,0.1 v 1.3 h 0.7 c 0.3,0 0.6,0.1 0.8,0.1 v -0.2 l 1.1,0.6 c 0.4,0.3 0.7,0.7 0.9,1.1 l 0.8,-0.5 c -0.3,-0.5 -0.6,-0.9 -1,-1.2 -0.4,-0.3 -0.9,-0.6 -1.3,-0.8 -0.3,-0.2 -0.5,-0.3 -0.8,-0.3 l -0.2,0.1 -0.5,-0.1 h -0.1 z m 12,0 -1.4,1 -0.8,0.5 0.1,-0.1 0.2,-0.2 c 0.2,-0.2 0.2,-0.2 -0.1,0 l 0.7,-0.6 c -0.6,0.2 -1.2,0.6 -1.7,1 -0.3,0.2 -0.6,0.6 -0.8,0.9 -0.2,0.1 -0.4,0.3 -0.5,0.5 v 0.3 l -0.2,0.5 v 0.1 l 0.3,-0.2 v 0.1 l 0.1,-0.1 0.6,-0.2 v -0.1 l 0.1,-0.4 c 0.2,-0.1 0.3,-0.2 0.6,-0.4 0.5,-0.3 1,-0.6 1.5,-1 0.5,-0.3 0.9,-0.6 1.4,-0.9 z m -1.1,2.8 -0.9,0.6 -0.3,0.3 -0.6,0.7 c -0.5,0.6 -0.9,1.2 -1.2,1.8 -0.1,0.2 -0.3,0.4 -0.4,0.6 l 0.8,-0.4 0.1,-0.1 v 0.3 l -0.5,0.3 v 0.1 c 0,0 0.2,-0.1 0.3,-0.1 v -0.1 l 0.1,-0.1 0.9,-0.6 0.1,-0.1 c 0.1,-0.1 0.3,-0.2 0.4,-0.2 0.4,-0.2 0.9,-0.3 1.3,-0.3 v -0.3 l 0.5,-0.4 -0.2,0.1 0.7,-0.6 -0.9,0.5 v -0.3 c -0.5,0.1 -1,0.2 -1.5,0.4 -0.4,0.1 -0.7,0.2 -1,0.4 0.3,-0.5 0.6,-1 1,-1.5 l 0.6,-0.7 c 0.3,-0.2 0.9,-0.6 -0.5,0.2 z m -10.6,1.4 c -0.2,0 -0.4,0 -0.5,0.1 l -0.8,0.6 h 1.3 c 0.3,0.1 0.6,0.1 0.9,0.2 l 1,0.4 0.5,0.2 h -0.5 c -0.3,0 -0.6,-0.1 -0.9,-0.1 l -0.8,0.6 0.9,0.2 0.6,0.1 -0.3,0.2 h 0.5 c 0.1,0 0.3,0.1 0.4,0.1 l 0.2,-0.1 c 0.4,0.1 0.8,0.2 1.2,0.5 l 0.2,0.2 h 0.1 l -0.1,0.5 v 1.6 l 0.1,-0.9 v -0.5 c 0.1,-0.2 0.1,-0.4 0.2,-0.5 v -0.4 l 0.4,-0.3 -0.2,-0.1 -0.3,-0.1 v -0.1 0.1 c -0.4,-0.2 -0.7,-0.3 -1,-0.4 l -0.6,-0.1 0.6,-0.3 c -0.1,-0.1 -0.2,-0.1 -0.2,-0.2 l -0.7,-0.3 -1.1,-0.4 c -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 h -0.8 z"
-         id="path4490-5" />
-      <path
-         style="fill:#525767"
-         inkscape:connector-curvature="0"
-         d="m 484.52,430.5 -0.12,0.97 c 0.3,0.55 0.57,1.1 0.84,1.66 0.1,0.18 0.17,0.37 0.26,0.56 l 0.15,0.4 c 0.5,1.4 1.03,2.9 1.5,4.3 v 1.1 l -0.3,-0.9 c -0.1,-0.2 -0.18,-0.4 -0.26,-0.6 l -0.5,-1 -0.5,-0.8 -0.1,-0.2 -0.1,0.3 -0.5,-0.9 c -0.4,-0.7 -0.8,-1.4 -1.2,-2 l -0.5,-0.6 c -0.2,-0.3 -0.5,-0.5 -0.7,-0.7 l -0.1,0.9 c 0.4,0.3 0.8,0.8 1.1,1.2 0.4,0.6 0.8,1.3 1.1,1.9 v 0.1 l -0.1,-0.1 -0.1,0.9 c 0.5,0.6 0.9,1.3 1.4,2 l 0.9,1.4 0.6,1.9 v 0.9 l -0.1,-0.1 c 0,-0.1 0,-0.1 -0.1,-0.1 v -0.5 c -0.1,-0.3 -0.1,-0.7 -0.2,-1 l -0.2,1 c -0.7,-1.2 -1.5,-2.3 -2.2,-3.4 -0.5,-0.7 -1,-1.4 -1.4,-2.1 l -0.1,0.9 1.3,1.9 c 0.6,0.8 1.1,1.7 1.7,2.5 l 0.7,1.2 v 0.7 l -0.7,-1.1 -0.9,-1.8 c -0.2,-0.4 -0.3,-0.6 -0.6,-1 l -0.3,-0.5 -1.1,-1.7 -0.1,0.9 c 0.4,0.5 0.8,1.1 1.2,1.6 l 0.3,0.4 0.6,1 0.9,1.6 -0.3,-0.2 c -0.2,-0.1 -0.4,-0.3 -0.6,-0.3 v 0.8 l -1.1,-1.7 -0.1,1 1.2,1.8 c 0.6,0.9 1.3,1.8 1.9,2.7 l 0.5,0.9 -0.1,0.6 0.1,0.2 -0.1,0.4 c -0.5,-0.8 -1,-1.5 -1.4,-2.3 -0.4,-0.7 -0.8,-1.4 -0.9,-2.2 l -0.2,0.9 c 0.1,0.7 0.6,1.4 0.9,2.1 l 1.5,2.5 0.3,0.4 c -0.3,-0.4 -0.6,-0.7 -1,-1 l -0.2,-0.3 c -0.3,-0.6 -0.7,-1.1 -1,-1.7 l -0.1,0.7 -0.1,-0.2 c -0.3,-0.6 -0.7,-1.1 -1,-1.7 l -0.1,0.9 1,1.5 v 0.1 l -0.3,-0.3 c -0.3,-0.2 -0.6,-0.4 -0.9,-0.7 l -0.1,1 0.9,0.6 c 0.2,0.2 0.5,0.3 0.7,0.5 0.3,0.3 0.6,0.6 0.9,1 0.6,0.7 1.1,1.5 1.6,2.3 v 0.3 l -0.3,-0.5 c -0.3,-0.4 -0.6,-0.7 -1,-1 l -0.5,-0.4 c -0.1,0 -0.1,0 -0.2,-0.1 v 1 l 0.1,0.1 c 0.2,0.1 0.3,0.1 0.4,0.3 0.3,0.2 0.5,0.4 0.7,0.7 v 0.6 l 0.3,0.2 v 0.2 l -0.1,-0.1 v 1 l 0.3,0.3 -0.8,-0.5 -1,-0.9 v 0.2 l -1.1,-0.6 c -0.6,-0.2 -1.1,-0.5 -1.7,-0.5 v 1 c 0.6,-0.1 1.1,0.1 1.7,0.3 0.5,0.2 1,0.5 1.5,0.8 l 0.6,0.4 1,0.72 v 0.4 c -0.3,-0.3 -0.6,-0.6 -0.8,-0.95 l -0.1,1 c 0.3,0.3 0.6,0.6 0.8,1 v 0.1 -0.18 l 0.3,0.3 c 0.5,0.7 0.9,1.4 1.4,2.1 l -0.3,-0.3 c -0.6,-0.4 -1.2,-0.7 -1.8,-1.1 -0.3,-0.2 -0.7,-0.4 -1.1,-0.4 v 1 c 0.4,0 0.7,0.2 1.1,0.3 l 1.1,0.7 v 0.3 l 0.9,1.2 0.2,0.35 -2.1,-0.7 c -0.4,-0.2 -0.8,-0.4 -1.1,-0.6 l -0.1,1 h 0.1 c 0.1,0.1 0,0 0.3,0.1 l 0.8,0.3 2.2,0.7 c -0.1,0.13 -0.1,0.3 -0.2,0.4 l 0.1,1 c 0.1,-0.2 0.2,-0.4 0.2,-0.66 0,-0.2 0.1,-0.4 0.1,-0.6 v -0.1 0.5 -0.5 l 0.1,0.1 -0.1,0.4 v 0.4 h 0.2 l 0.1,0.6 v -1.2 l 0.2,0.35 v 0.1 l 0.1,0.9 c 0,-0.2 0.1,-0.3 0.2,-0.5 v -0.2 l 0.1,0.3 -0.1,0.2 0.1,1 0.1,-0.1 0.1,0.5 0.1,-0.2 0.6,-1 0.3,-0.32 0.1,0.1 0.1,0.4 v 0.1 -0.4 l 0.4,0.2 c 0.04,0.1 0.1,0.2 0.1,0.3 l 0.1,0.3 v 0.3 -0.8 l 0.2,0.9 c 0,-0.5 0,-0.9 -0.1,-1.4 l 0.2,0.1 0.6,0.2 0.22,0.1 v -1 l -0.2,-0.1 c -0.3,-0.35 -0.66,-0.6 -1,-0.9 0.1,-0.05 0.14,-0.1 0.24,-0.1 v -0.2 c 0.1,0 0.1,-0.03 0.2,-0.04 0.3,0 0.6,0 0.8,0.1 v -0.9 h -0.9 c -0.4,0.1 -0.8,0.2 -1.2,0.4 v 0.3 l -0.55,-0.5 -0.3,-1 v -0.6 l 0.1,-0.1 c 0,0.1 0.1,0.2 0.1,0.3 l 0.05,-0.4 0.5,-0.5 c 0.4,-0.2 0.7,-0.4 1.1,-0.7 l -0.1,-1 c -0.3,0.3 -0.7,0.5 -1,0.7 l -0.7,0.5 -0.7,-1.1 c 0.1,-0.3 0.2,-0.6 0.32,-0.9 0.2,-0.4 0.4,-0.9 0.72,-1.2 l 0.6,-0.7 -0.1,-1 c -0.2,0.3 -0.4,0.52 -0.6,0.8 -0.2,0.2 -0.4,0.5 -0.56,0.7 l -0.24,0.53 c -0.1,0.4 -0.3,0.9 -0.4,1.4 l 0.03,-0.4 0.3,-1.5 c 0.1,-0.3 0.2,-0.5 0.4,-0.6 l -0.1,-1 -0.3,0.4 -0.2,0.2 c -0.2,0.5 -0.3,1 -0.4,1.5 l -0.1,0.8 c 0,0 -0.1,0 -0.1,-0.1 l -0.2,-0.8 -0.1,-0.3 0.1,-0.4 0.1,-0.8 0.2,-1.6 v 0.3 -1.4 c 0.06,-0.2 0.1,-0.3 0.2,-0.4 l 0.26,-0.5 c 0.2,-0.4 0.5,-0.6 0.8,-0.9 0.3,-0.2 0.6,-0.5 1,-0.6 l -0.08,-1 c -0.4,0.2 -0.7,0.4 -1,0.7 l -0.1,0.1 0.1,-0.2 0.1,-0.1 V 449 l -0.2,1 c 0,-1.3 0.1,-1 -0.16,-0.6 l -0.5,0.8 c -0.2,0.3 -0.4,0.7 -0.5,1 V 448 c 0.04,-0.03 0.1,-0.1 0.1,-0.2 l -0.1,-0.8 v -0.93 l -0.1,0.92 v 0.1 c -0.2,0.4 -0.3,0.8 -0.5,1.2 -0.3,0.9 -0.46,1.8 -0.5,2.7 l -0.26,-0.9 v -0.4 c 0,-0.6 0,-1.1 -0.1,-1.6 0,-0.3 0.1,-0.6 0.1,-0.9 0,-0.1 0.08,-0.3 0.1,-0.4 0.1,-0.5 0.3,-1 0.48,-1.6 l 0.3,-0.9 0.1,-0.3 v -1.1 l -0.1,0.9 v -0.8 0.3 l -0.3,0.9 c -0.1,0.5 -0.34,1 -0.5,1.6 0,0.1 0,0.2 -0.1,0.3 0,0.3 -0.1,0.7 -0.1,1 l -0.4,-1.7 0.2,-0.5 0.1,0.8 0.2,-0.8 c 0,-0.2 0.1,-0.7 0.2,-0.9 l 0.3,-1.4 c 0.3,-0.5 0.6,-0.9 0.9,-1.4 0.3,-0.4 0.6,-0.9 1,-1.4 l -0.1,-1 -0.5,0.9 -0.1,-0.7 -0.3,0.6 -0.04,-0.4 -0.2,0.6 v -0.8 l -0.18,1 v -0.9 l -0.1,0.2 -0.1,0.3 -0.4,1.1 c -0.3,0.8 -0.6,1.6 -0.8,2.5 0,0.2 -0.1,0.5 -0.1,0.7 v -2 c 0.1,-0.1 0.1,-0.2 0.1,-0.3 0.03,-0.1 0.1,-0.4 0.1,-0.5 v -1 l -0.1,0.9 v -0.8 l -0.07,0.2 c 0,0 0,0.1 -0.1,0.1 v -0.6 l -0.2,1 v 0.2 c -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.1,0.3 -0.2,0.6 -0.2,0.9 l -0.2,-1 c -0.1,-0.2 -0.1,-0.4 -0.1,-0.6 v -0.1 c 0.4,-1.2 0.9,-2.4 1.5,-3.5 l 0.34,-0.7 0.3,-0.5 v -0.6 l 0.3,-0.5 -0.1,-1 -0.6,1.4 c -0.3,0.6 -0.6,1.1 -0.9,1.7 l -0.5,0.9 c -0.3,0.6 -0.5,1.3 -0.8,1.9 l -0.1,-0.4 v -0.6 l 0.1,-0.6 -0.1,-0.3 c 0,-1.1 -0.1,-2.1 -0.1,-3.2 v -4.2 l -0.1,1 v 4.1 c 0,0.6 0.1,1.2 0.1,1.8 l -0.6,-1.6 c 0,-0.3 0,-0.7 0.1,-1.1 0.1,-0.4 0.1,-0.7 0.2,-1.1 l 0.2,-0.5 c 0,-0.1 0.1,-0.1 0.1,-0.2 l -0.2,-0.9 c -0.04,0.4 -0.2,0.8 -0.23,1.1 -0.1,0.4 -0.1,0.4 -0.1,0.8 -0.1,0.6 -0.1,1.1 -0.1,1.6 -0.1,-0.4 -0.3,-0.7 -0.43,-1.1 l -1,-2.6 c -0.2,-0.6 -0.4,-1.3 -0.5,-2 l -0.1,0.7 -0.43,-1 z m 3,7.97 c 0.12,0.33 0.25,0.66 0.36,1 0.1,0.27 0.1,0.32 0.12,0.4 V 440 c -0.16,-0.52 -0.3,-1.04 -0.48,-1.55 z m -0.22,0.4 c 0.25,0.8 0.5,1.6 0.72,2.4 v 0.1 l -0.25,-0.48 -0.1,-0.3 c -0.07,-0.3 -0.17,-0.5 -0.26,-0.7 0,-0.3 -0.1,-0.6 -0.1,-0.9 v -0.2 z m 2.24,0.33 c -0.26,0.66 -0.52,1.34 -0.76,2.02 0,0.04 -0.03,0.1 -0.04,0.13 0,-0.1 -0.03,-0.2 -0.04,-0.3 l 0.46,-1.13 z m -0.87,1.93 -0.1,0.72 c -0.03,-0.05 -0.06,-0.18 -0.08,-0.22 0,-0.17 0.1,-0.33 0.1,-0.5 z m 2.43,1.03 -0.05,0.16 -0.1,0.17 0.15,-0.4 z m -2.46,0.56 0.15,0.84 0.1,0.86 v 0.2 l -0.2,-0.48 c 0,-0.1 0,-0.2 -0.1,-0.32 l -0.2,-0.93 v -0.2 z m 2.14,0.2 -0.12,0.36 -0.3,0.93 -0.12,0.3 c 0.13,-0.4 0.28,-0.9 0.46,-1.3 l 0.08,-0.2 z m -1.25,0.55 v 2.26 l -0.26,-1.3 0.2,-0.75 0.06,-0.2 z m -1.52,0.03 0.1,0.13 v 0.3 -0.13 l 0.1,-0.3 z m 0.2,0.7 c 0.1,0.16 0.1,0.32 0.1,0.48 0,-0.1 -0.1,-0.18 -0.1,-0.27 l 0.1,-0.1 v -0.1 z m 0.4,0.36 0.1,0.3 v 0.18 -0.48 z m -0.8,0.1 0.1,0.1 v 0.26 l 0.1,-0.22 v 0.6 -0.74 z m 1.4,0.47 0.3,1.42 v 0.02 -0.38 c 0,-0.4 -0.1,-0.6 -0.2,-1 v -0.2 z m -1.1,0 0.6,0.96 c 0,0.1 0.1,0.3 0.1,0.4 -0.1,-0.1 -0.2,-0.2 -0.3,-0.4 l -0.2,-0.4 v -0.7 l 0.1,-0.2 z m -2,0.07 c 0.2,0.07 0.3,0.15 0.5,0.25 0.3,0.14 0.5,0.34 0.7,0.54 0.3,0.2 0.4,0.5 0.6,0.8 l 0.5,0.9 c 0.2,0.4 0.3,0.8 0.4,1.2 l 0.1,0.1 c -0.1,-0.4 -0.3,-0.7 -0.6,-1.1 l -1.8,-2.7 -0.1,-0.1 z m 3,1.7 0.2,0.34 v 0.02 l -0.1,-0.15 v -0.2 z m -0.5,0.4 0.3,0.32 0.1,0.53 V 448 l -0.2,-0.7 z m 1.2,0.38 c 0.2,0.75 0.4,1.5 0.5,2.26 v 0.16 l -0.1,-0.7 c -0.1,-0.45 -0.1,-0.72 -0.2,-1.16 v -0.53 z m -0.7,0.23 0.1,0.4 -0.1,0.3 v -0.6 z m 0.3,1 v 1.4 c 0,0.2 0.1,0.3 0,0.4 v -0.3 1.1 c -0.1,-0.1 -0.1,-0.3 -0.2,-0.5 v -0.6 c 0,0.1 0,0.1 0.1,0.2 l 0.1,-0.9 0.2,-0.4 z m 0.1,0.5 c 0,0.1 0.1,0.1 0.1,0.2 v 0.6 l 0.2,1 v -0.5 l 0.1,0.7 0.1,1.6 -0.3,-1 v -2.3 z m 2.3,0.2 v 0.8 l 0.1,2.2 v 1.3 l -0.3,0.9 c -0.3,0.6 -0.4,1.3 -0.5,2 l -0.1,-0.7 v -0.1 c 0,-0.5 0,-1 0.1,-1.4 0.1,0.3 0.2,0.7 0.2,1 v 0.4 l 0.2,-0.9 v -0.4 c 0,-0.4 -0.1,-0.8 -0.2,-1.2 0.1,-0.9 0.2,-1.7 0.5,-2.6 0.1,-0.3 0.3,-0.6 0.4,-0.9 z m -1.9,0.7 0.1,0.7 0.2,0.8 v 1.9 -0.2 c 0,-1 -0.1,-2 -0.2,-3 z m -1.1,0.8 0.2,0.4 v 0.2 c 0,-0.1 -0.1,-0.2 -0.1,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 z m 1.6,1.4 0.2,0.7 0.1,-0.5 0.2,0.9 v 1.7 c -0.2,-0.8 -0.3,-1.6 -0.4,-2.4 v -0.3 z m -1,1.7 z m 0.7,0.2 z m -0.5,0.1 c 0,0.1 0,0.1 0.1,0.2 v 0.1 l -0.1,-0.1 z m 0,1.6 0.4,0.7 0.2,0.5 v 0.2 c -0.2,-0.3 -0.4,-0.7 -0.6,-1 v -0.3 z m 2.3,0.1 -0.1,1.3 -0.1,0.9 -0.2,-0.4 v -0.4 c 0.1,-0.4 0.1,-0.9 0.2,-1.3 v 0.5 l 0.2,1 v -0.1 c 0,-0.3 0.1,-0.7 0.1,-1 l 0.1,-0.4 z m -1.6,1.3 0.2,0.4 -0.1,-0.3 v -0.1 z m 0.8,1 0.1,0.1 0.1,0.6 -0.1,-0.3 -0.1,-0.2 0.1,-0.2 z m -1.4,1.6 0.3,0.2 0.7,0.7 0.1,0.1 v 0.1 c 0,0.1 0.1,0.1 0.1,0.2 l 0.3,0.7 0.1,0.3 v 0.1 l 0.1,0.2 0.2,0.6 -0.7,-1.2 -0.5,-0.8 -0.2,-0.4 -0.2,-0.2 v -0.5 z m 2.6,3.2 0.3,0.5 0.1,0.3 v 0.2 l -0.4,-0.8 0.1,-0.1 z m -0.5,0.2 0.1,0.2 0.2,0.4 v 0.1 l -0.3,-0.4 z m 1.2,1.2 c 0.1,0.1 0.1,0.2 0.1,0.4 l -0.1,-0.3 0.1,-0.1 z m -0.6,0.2 0.3,1.3 0.1,0.2 -0.6,-0.2 v -0.9 c 0,0.1 0.1,0.1 0.1,0.2 v -0.3 l 0.1,0.4 0.1,-0.7 z m -0.9,0.2 c 0.1,0.1 0.2,0.2 0.3,0.4 l 0.1,0.1 0.1,0.2 c -0.1,-0.2 -0.3,-0.4 -0.4,-0.6 z m 0.5,0.5 0.1,0.1 0.1,0.2 v 0.2 l -0.1,-0.2 v -0.2 z m 1.3,0.8 0.1,0.1 v 0.1 -0.1 z m 0.4,0.3 0.1,0.3 h -0.1 v -0.2 z m -0.2,0.1 0.1,0.2 h -0.1 v -0.1 z m -0.1,1.2 v 0.1 z"
-         id="path4653-3" />
-    </g>
+	 inkscape:groupmode="layer"
+	 id="layer13"
+	 inkscape:label="Layer 2">
+	<g
+	   transform="matrix(-1.3230272,0,0,0.60512313,1228.2585,-15.297203)"
+	   style="stroke-width:0.1;stroke-linecap:round"
+	   id="layer2-4">
+	  <path
+		 style="fill:#9497a2"
+		 inkscape:connector-curvature="0"
+		 d="m 495.4,468.64 -1.5,1.78 -0.37,-2.72 -2.7,1.5 -1.6,-3.65 -4.5,-1.97 -2.25,-3.18 5.53,2.25 -5.5,-4.4 2.2,-0.38 -3.9,-3 -3.2,-4.3 5.4,3 -4.9,-6.47 4.4,1.78 -3.8,-7.86 2.6,2.34 -4.31,-6.36 5.06,2 -2.2,-3.9 -3.5,-3.2 4.2,1.1 -3.86,-8.6 -0.63,-5.4 4.2,10.3 -0.32,-9.9 3,10.2 2.64,-10.5 0.8,6.2 0.2,5.5 7.1,-10.2 -3,6.95 6.3,-3.4 -5.5,5.1 -2.9,3 11.2,-4 -4.7,4.1 8.2,-1.9 -10.7,5 8.4,1.02 -6.5,3.72 5.6,-0.1 -5.3,3.1 3.7,1.4 -4.4,1.7 6.4,-1.4 2.1,-2.1 -4.8,5.2 4.3,-1.2 -7,5.9 5.4,-2 -4.2,4.2 -2.9,3.7 6,-2.1 -3.3,5 5.5,-0.8 -5,2.3 3.2,1.8 -3.8,0.3 2.5,3.6 z"
+		 id="path4488-3" />
+	  <path
+		 style="fill:#b4b3b7"
+		 inkscape:connector-curvature="0"
+		 d="m 485.05,423.03 z m 0,0 -0.16,0.97 v 1.05 c -0.1,0.42 0,0.83 0.1,1.24 0.1,0.4 0.1,0.3 0.1,0.8 0,0.4 0.1,0.9 0.1,1.3 -0.1,-0.4 -0.1,-0.7 -0.1,-1.1 l -0.9,0.4 c 0,0.3 0.1,0.7 0.1,1 l 0.3,1.4 c 0.1,0.3 0.1,0.7 0.2,1.1 l 0.4,-0.3 v 0.2 -0.3 l 0.3,-0.2 c 0,-0.4 -0.1,-0.8 -0.2,-1.1 0,-0.1 0,-0.2 -0.1,-0.3 0,-0.3 -0.1,-0.6 -0.1,-0.8 0,-0.9 -0.1,-1.8 -0.2,-2.6 0,-0.2 0,-0.3 -0.1,-0.4 -0.1,-0.6 -0.3,-1.1 -0.2,-1.7 v -1 z m -8.48,0.45 -0.12,0.98 c 0.1,0.33 0.27,0.65 0.4,0.97 0.2,0.44 0.35,0.88 0.5,1.33 0.16,0.46 0.2,0.94 0.3,1.4 0.12,0.46 0.2,0.92 0.3,1.37 0.04,0.24 0.13,0.47 0.24,0.7 l 0.1,-0.96 c -0.1,-0.18 -0.2,-0.38 -0.2,-0.58 0,0 0.1,0.1 0.1,0.2 l 0.6,1.3 0.5,1.2 v 0.1 c 0.1,0.3 -0.1,-0.1 0.1,0.3 l 0.2,0.4 0.1,0.2 -1.2,-0.6 c -0.6,-0.2 -1.1,-0.4 -1.7,-0.6 -0.3,-0.1 -0.6,-0.1 -0.8,-0.1 v 1 c 0.2,-0.1 0.5,0 0.8,0 l 1.2,0.3 v 0.4 c 0.2,-0.1 0.5,0 0.7,0.1 l 0.3,0.1 -0.2,0.1 1,1 c 0.4,0.3 0.9,0.7 1.4,1.1 0.2,0.1 0.1,0 0.2,0.2 l 0.4,-0.2 c 0.1,0.1 0.3,0.3 0.4,0.5 0.2,0.3 0.5,0.5 0.7,0.8 l 0.5,0.6 0.4,0.6 c 0.2,0.3 0.5,0.6 0.7,0.9 l 0.7,0.8 0.8,-0.5 -0.7,-0.9 c -0.2,-0.3 -0.5,-0.6 -0.7,-1 l -0.5,-0.7 -0.6,-0.6 -0.7,-0.8 -0.7,-0.7 c -0.2,-0.1 -0.4,-0.2 -0.6,-0.2 l -0.2,0.1 -0.6,-0.5 0.1,-0.4 c 0.6,0.2 1.3,0.5 1.9,0.7 0.3,0.1 0.6,0.3 0.8,0.4 l 0.3,0.2 c 0.2,0.3 0.3,0.5 0.5,0.8 l 0.8,-0.4 c -0.2,-0.4 -0.4,-0.7 -0.5,-1.1 -0.1,-0.4 -0.3,-0.7 -0.6,-0.9 l 0.4,-0.2 c -0.2,-0.4 -0.4,-0.7 -0.6,-1 -0.5,-0.7 -0.9,-1.3 -1.4,-1.9 l -0.4,-0.4 0.3,-0.9 0.7,-2.3 c 0.2,-0.4 0.4,-0.9 0.5,-1.4 l -0.1,-0.9 c -0.1,0.5 -0.3,1 -0.5,1.5 -0.2,0.8 -0.5,1.5 -0.7,2.3 -0.1,0.2 -0.1,0.4 -0.2,0.6 v -0.3 c -0.1,-0.3 -0.2,-0.6 -0.4,-0.8 l -0.5,-0.9 -0.6,-0.9 c -0.2,-0.3 -0.4,-0.6 -0.4,-0.9 l -0.1,-0.2 c 0.1,-0.2 0.1,-0.4 0.2,-0.6 l -0.1,-1 c -0.2,0.2 -0.2,0.5 -0.3,0.7 -0.1,0.5 -0.1,1 0,1.5 v 0.4 c 0.2,0.3 0.4,0.8 0.5,1.2 l 0.6,1.6 c 0.1,0.1 0.1,0.3 0.2,0.5 l -0.7,0.4 c 0.4,0.3 0.7,0.7 1.1,1 l 0.1,0.1 v 0.7 c -0.4,-0.3 -0.8,-0.6 -1.1,-1 l -0.9,0.5 c 0.4,0.4 0.9,0.7 1.4,1.1 0.6,0.4 1.2,0.8 1.8,1.3 -0.8,-0.3 -1.6,-0.6 -2.5,-1 l -0.8,-0.3 v -0.7 c -0.1,-0.2 -0.2,-0.4 -0.4,-0.7 l -0.3,-0.9 -0.6,-1.2 -0.7,-1.3 c -0.2,-0.3 -0.3,-0.6 -0.4,-0.9 l -0.1,0.4 v -0.2 c -0.1,-0.5 -0.1,-1 -0.3,-1.4 -0.1,-0.5 -0.3,-0.9 -0.5,-1.4 -0.1,-0.3 -0.3,-0.6 -0.4,-1 z m 13.57,1.1 -0.15,0.95 c 0,-0.2 0,-0.42 -0.1,-0.64 l -0.1,0.2 -0.2,0.9 c -0.2,0.7 -0.5,1.5 -0.7,2.2 -0.3,0.2 -0.5,0.5 -0.7,0.8 -0.1,0.1 -0.2,0.3 -0.3,0.5 -0.1,0.1 -0.2,0.1 -0.2,0.2 -0.5,0.4 -0.9,0.9 -1.2,1.5 -0.2,0.3 -0.3,0.7 -0.4,1.1 v 0.1 l 0.9,-0.4 v -0.1 c 0,-0.4 0.2,-0.8 0.4,-1.1 0.1,-0.3 0.3,-0.6 0.6,-0.9 v 0.5 -0.2 l 0.1,0.7 c 0,-0.1 0.1,-0.3 0.1,-0.4 l 0.6,-1.6 v -0.1 l 0.1,-0.2 c 0.4,-0.3 0.8,-0.6 1.3,-0.9 0.5,-0.3 1,-0.6 1.7,-0.6 h 0.8 v -1 h -0.8 c -0.7,0 -1.2,0.3 -1.8,0.6 l -1,0.6 0.3,-1 c 0.1,-0.4 0.2,-0.7 0.2,-1 v -1.5 z m -8.2,4.34 0.22,0.4 c 0.12,0.18 0.2,0.4 0.25,0.6 l -0.2,-0.4 -0.2,-0.6 z m 2.34,0.4 -0.87,0.45 0.2,0.84 0.2,0.5 0.9,-0.4 -0.1,-0.4 c 0,-0.3 -0.1,-0.5 -0.1,-0.8 z m 11.02,1.14 c -0.43,0.1 -0.85,0.23 -1.27,0.37 -0.53,0.2 -1.05,0.42 -1.55,0.68 l -0.42,0.2 -1.28,0.6 -0.6,0.3 -0.23,0.2 -0.1,0.1 c -0.23,0.2 -0.46,0.3 -0.7,0.5 l 0.53,-0.2 -0.1,0.2 -0.06,0.2 v 0.1 c -0.4,0.2 -0.8,0.4 -1.2,0.7 l 0.9,-0.3 c -1.5,0.9 -0.42,0.2 -0.05,0.1 l 0.2,-0.1 -0.2,0.2 c -0.17,0.2 -0.32,0.4 -0.44,0.6 l 0.9,-0.4 v 0.2 l 0.08,-0.2 0.2,-0.2 0.8,-0.4 0.9,-0.5 v 0.1 l 0.2,-0.1 -0.2,0.2 -0.2,0.2 c -0.2,0.2 -0.5,0.5 -0.8,0.7 0,0.1 0,0.1 -0.1,0.1 v -0.2 l -0.3,0.5 -0.1,0.6 c 0,0.3 -0.1,0.5 -0.2,0.8 l -0.1,0.3 0.1,1 0.2,-0.3 c 0.1,-0.2 0.2,-0.4 0.2,-0.7 0.1,-0.2 0.2,-0.3 0.2,-0.6 0.1,-0.1 0.2,-0.3 0.3,-0.4 v -0.6 l 0.2,-0.1 h 0.1 v 0.1 l 0.9,-0.4 c 0,0 0.1,-0.1 0.1,-0.2 1.1,-0.6 1.2,-0.7 2.2,-1.2 0.7,-0.4 1.4,-0.7 2.1,-1 0.5,-0.1 0.8,-0.3 1.2,-0.6 v -0.1 h -0.1 c 0.1,0 0,0 0,0 h -0.1 l 0.1,-0.1 -0.5,0.2 -0.9,0.3 v -0.6 h 0.1 -0.1 z m -0.53,1.22 c -0.14,0.06 -0.3,0.12 -0.42,0.2 l -0.33,0.18 0.3,-0.23 z m -12.28,0.03 0.9,1.3 -1,-0.6 v -0.3 l -0.1,-0.1 v -0.1 z m 10.8,0.7 -1.7,1 0.4,-0.4 0.4,-0.3 h 0.1 l 0.6,-0.2 z m 0.9,3.7 h -0.7 c -0.3,0.1 -0.7,0.1 -1,0.1 -0.5,0 -0.9,0.1 -1.3,0.2 -0.3,0.1 -0.5,0.1 -0.8,0.2 l -0.1,0.1 -0.8,0.6 c 0.2,-0.1 0.4,-0.2 0.7,-0.2 0.4,-0.1 0.8,-0.1 1.2,-0.2 h 1.6 z m -0.5,0.6 -0.6,0.2 c -0.3,0.1 -0.6,0.1 -0.8,0.2 -0.1,0 -0.1,0.1 -0.1,0.1 0,0 -0.1,0 -0.1,0.1 h -0.5 c -0.3,0 -0.5,0 -0.7,0.1 l -0.6,0.3 c -0.2,0.1 -0.4,0.2 -0.4,0.5 l 0.1,0.1 -0.5,0.3 0.5,-0.2 -0.3,0.2 0.4,-0.2 h 0.1 l -0.1,0.1 0.2,-0.1 -0.1,0.1 -0.3,0.3 -0.1,0.1 0.9,-0.4 v -0.1 h 0.1 l -0.8,0.4 c 0,0.1 -0.2,0.4 -0.2,0.5 l 0.1,0.1 0.1,0.1 c 0.1,0.1 0.3,0 0.4,0 l -0.1,0.1 c -0.4,0.3 -0.7,0.6 -1.1,1 l -0.7,1 v 0.1 c 0,0.2 0.3,0.1 0.5,-0.1 l -0.2,0.4 0.9,-0.4 c 0.1,-0.2 0.1,-0.4 0.3,-0.6 l 0.2,-0.3 v 0.7 c 0,0.1 0.1,0.1 0.1,0 v -0.1 l 0.1,-0.1 c 0.1,-0.2 0.3,-0.3 0.4,-0.5 v 0.1 l 0.2,-0.2 c 0.3,-0.3 0.8,-0.6 1.2,-0.9 0.5,-0.3 1,-0.6 1.6,-0.8 0.1,-0.1 0.4,-0.2 0.5,-0.2 h 0.2 v -0.2 h 1.2 l 0.8,-0.5 h -0.9 l 0.3,-0.2 -0.1,-0.1 h -0.2 v 0.1 l 0.1,-0.1 -1.2,0.1 h -0.6 v -0.2 c -0.3,0.1 -0.7,0.1 -1.1,0.1 z m -16.2,1 v 1 h 0.8 c 0.4,0 0.8,0.1 1.1,0.3 l -0.4,0.3 c 0.2,0 0.5,0 0.8,0.1 0.3,0.1 0.6,0.4 0.8,0.6 l 0.4,0.5 -0.2,0.2 0.4,0.5 -0.4,0.3 c 0.2,0 0.3,0 0.5,0.1 l 0.9,1.3 0.9,1.5 0.2,0.5 0.8,-0.4 -0.3,-0.5 c -0.3,-0.4 -0.5,-0.8 -0.8,-1.2 l 1.4,1 0.6,0.6 0.8,-0.5 -0.6,-0.5 c -0.5,-0.3 -1.1,-0.6 -1.6,-1 -0.5,-0.3 -1,-0.7 -1.5,-0.9 -0.1,0 -0.2,-0.1 -0.3,-0.1 v -0.1 l -0.3,-0.4 0.7,0.5 c 0.3,0.2 0.6,0.3 0.9,0.5 l 0.4,0.3 c 0.4,0.3 0.8,0.5 1.2,0.8 l 0.8,0.6 0.1,-0.9 -0.9,-0.6 -1.3,-0.8 c -0.4,-0.2 -0.9,-0.4 -1.3,-0.7 -0.4,-0.2 -0.7,-0.4 -1,-0.6 v 0.5 l -0.2,-0.2 c -0.3,-0.2 -0.6,-0.5 -0.9,-0.6 l -0.2,-0.1 v -0.2 c -0.2,-0.2 -0.5,-0.3 -0.7,-0.4 -0.2,-0.1 -0.4,-0.2 -0.5,-0.2 -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 h -0.8 z m 15.9,0.1 -0.1,0.1 -0.3,0.1 h -0.3 c 0.2,0 0.4,-0.1 0.6,-0.1 z m -3.1,0.2 h -0.1 z m 1.2,0 z m -0.1,0.2 c 0,0.1 -0.1,0.1 -0.1,0.2 l -0.1,0.1 c 0,0.1 -0.1,0.1 -0.1,0.1 l 0.1,-0.3 z m 5.3,2.6 c -0.6,0.2 -1.2,0.4 -1.7,0.7 h -0.1 c 0.1,-0.1 0.3,-0.2 0.2,-0.4 l -0.1,-0.1 h -0.1 l -0.6,0.2 c -0.2,0 -0.4,0.1 -0.5,0.2 -0.4,0.3 -0.9,0.5 -1.3,0.8 -0.2,0.2 -0.4,0.5 -0.6,0.7 -0.1,0.2 -0.2,0.4 -0.4,0.6 l 0.7,-0.3 c -0.2,0.2 -0.3,0.4 -0.4,0.6 l -0.1,0.1 -0.8,0.6 0.2,-0.1 c 0.1,-0.1 0.2,-0.2 0.4,-0.2 l -0.1,0.2 h -0.1 l -0.2,0.3 c -0.1,0.1 -0.3,0.4 -0.4,0.5 l -0.3,0.5 c 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.2 -0.3,0.7 -0.3,1 v 0.1 l 0.1,0.1 c 0.4,-0.3 0.8,-0.4 1.1,-0.7 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.1 0.1,-0.3 0.2,-0.4 l 0.2,-0.5 0.4,-0.6 c 0.2,-0.4 0.5,-0.7 0.7,-1.1 v -0.1 l 0.2,-0.1 0.8,-0.4 c 0.6,-0.3 1.2,-0.5 1.7,-0.9 v -0.1 h -0.1 c -0.2,0 -0.3,0.1 -0.5,0.1 h -0.3 c -0.4,0.1 -0.8,0.6 -1.1,0.6 h -0.1 l 0.4,-0.4 1.6,-0.6 z m -2.4,0.8 -0.1,0.1 -0.3,0.3 -0.7,0.4 -0.5,0.3 0.2,-0.3 0.3,-0.4 c 0,0 0.1,0 0.1,-0.1 l 0.2,-0.1 c 0.2,0 0.4,-0.2 0.7,-0.2 z m 0.5,0.7 -0.6,0.3 -0.6,0.3 0.2,-0.1 0.4,-0.3 0.2,-0.1 h 0.4 z m -15.9,0.3 -0.1,1 0.6,0.3 1,0.7 c 0.1,0.1 0.2,0.1 0.3,0.2 l -0.3,0.2 c 0.2,0.2 0.5,0.3 0.9,0.4 0.1,0.1 0.3,0.1 0.5,0.2 l 0.5,0.5 c 0.1,0.2 0.2,0.3 0.3,0.5 l 0.1,-0.9 c 0.2,0.1 0.5,0.2 0.7,0.4 l 0.2,0.2 v 0.1 c 0.2,0.4 0.3,0.7 0.4,1.1 -0.3,-0.1 -0.6,-0.2 -0.9,-0.4 l -0.8,0.6 c 0.3,0.1 0.7,0.3 1,0.4 0.4,0.2 0.9,0.5 1.3,0.7 0.2,0.4 0.3,0.7 0.6,1 l 0.6,0.5 0.8,-0.5 h -0.1 l 0.3,-0.2 c -0.1,0 -0.1,-0.1 -0.2,-0.1 -0.3,-0.3 -0.7,-0.7 -1.1,-0.9 -0.1,0 -0.1,0 -0.2,-0.1 l -0.2,-0.3 -0.2,-0.3 c -0.2,-0.3 -0.2,-0.4 -0.3,-0.7 l 0.1,0.1 0.6,0.5 0.8,-0.5 -0.7,-0.5 c -0.3,-0.2 -0.5,-0.3 -0.8,-0.4 l -0.6,-0.3 v -0.1 l -0.1,-0.1 -0.2,-0.3 -0.3,-0.6 -0.7,0.5 c -0.1,0 -0.2,-0.1 -0.3,-0.1 -0.2,-0.1 -0.5,-0.2 -0.7,-0.2 l -0.2,0.1 -0.5,-0.3 c -0.4,-0.3 -0.8,-0.5 -1.2,-0.8 l -1,-0.7 -0.6,-0.3 z m 17,1.5 c -0.3,0.1 -0.6,0.1 -0.9,0.2 l -0.3,0.1 h -0.4 c -0.2,0 -0.4,0 -0.6,0.1 -0.2,0.1 -0.3,0.2 -0.4,0.2 l -0.3,0.3 -0.1,0.2 c -0.7,0.4 -1.3,0.8 -2,1.3 l 0.9,-0.3 c 0.3,-0.2 0.6,-0.4 0.8,-0.5 h 0.1 l 0.2,-0.1 v 0.2 c 0,0.1 0,0.2 -0.1,0.3 v 0.1 l -1,0.7 c -0.4,0.3 -0.8,0.6 -1.1,1 -0.2,0.3 -0.4,0.6 -0.5,0.8 l 0.1,1 c 0.1,-0.3 0.2,-0.6 0.4,-0.8 0.3,-0.4 0.7,-0.7 1.1,-1 0.4,-0.3 0.8,-0.5 1.2,-0.7 v -0.2 l 0.2,-0.6 c 0,-0.1 0,-0.2 0.1,-0.2 0.1,0 0.2,-0.1 0.4,-0.2 0.2,-0.1 0.3,-0.1 0.5,-0.1 h 2.2 v -1 h -0.8 l 0.3,-0.2 h -0.2 z m 2.3,2.3 c -0.3,0.2 -0.7,0.2 -1,0.3 l 0.1,-0.1 c -0.4,0.1 -0.7,0.1 -1.1,0.1 -0.5,0 -0.9,0.1 -1.3,0.3 -0.5,0.3 -1,0.5 -1.3,0.9 l -0.2,0.2 -0.2,0.1 c -0.5,0.3 -0.8,0.8 -1.2,1.3 -0.3,0.4 -0.5,0.8 -0.8,1.2 l 0.8,-0.4 0.5,-0.8 v 0.1 l 0.9,-0.4 v -0.2 c 0.1,-0.3 0.2,-0.5 0.4,-0.8 h 0.3 -0.1 l 0.1,0.9 0.2,-0.3 c 0.1,-0.1 0.1,-0.2 0.2,-0.3 0.1,-0.2 0.4,-0.2 0.5,-0.3 0.5,-0.2 1,-0.3 1.5,-0.4 0.5,-0.1 0.9,-0.1 1.3,-0.2 z m -3.3,0.9 c -0.1,0 -0.1,0 -0.1,0.1 h -0.4 c 0,-0.1 0,-0.1 0.1,-0.1 0.1,-0.1 0.2,-0.1 0.3,-0.1 z m 2.7,1 h -0.1 l -0.3,0.1 -0.7,0.2 c -0.4,0.1 -0.8,0.2 -1.1,0.4 l -0.7,0.2 -0.7,0.4 -0.4,0.2 -0.4,0.2 -0.1,-0.9 c -0.3,0.1 -0.5,0.3 -0.7,0.5 -0.4,0.4 -0.6,0.8 -0.9,1.3 l -0.2,0.5 -0.1,0.1 c -0.1,0.1 -0.2,0.2 -0.3,0.4 l 0.1,-0.1 -0.1,0.1 v 0.4 c -0.1,0.1 0,0.1 -0.1,0.2 l 0.1,-0.1 v 0.3 l 0.2,-0.5 0.5,-0.2 0.1,-0.1 0.6,-0.6 c 0.1,-0.1 0.2,-0.3 0.4,-0.4 l 0.2,-0.1 0.2,-0.1 1.5,-0.6 1.8,-0.6 c 0.4,0 0.7,-0.1 1.1,-0.1 v -1 c -0.4,0 -0.8,0.2 -1.1,0.2 l -0.3,0.1 z m -16.6,0.3 -0.8,0.5 c 0.3,0 0.5,0.2 0.7,0.3 l 0.9,0.6 0.8,0.6 -0.6,0.4 h 0.4 l -0.2,0.2 0.6,0.4 0.8,0.5 c 0,0.3 0.1,0.5 0.3,0.7 0.3,0.6 -0.1,-0.1 0.3,0.6 0.3,0.6 0.7,1.2 1.1,1.8 l -0.3,-0.2 -0.6,-0.2 c -0.4,-0.1 -0.7,-0.3 -1,-0.5 l -1.3,-0.8 c -0.3,-0.2 -0.6,-0.3 -0.9,-0.5 l -0.4,0.3 v -0.9 l -0.2,-0.1 c -0.4,-0.2 -0.8,-0.4 -1.3,-0.5 l -0.7,-0.3 -0.1,1 0.7,0.3 c 0.5,0.1 0.8,0.3 1.2,0.5 l 0.2,0.1 -0.4,0.3 c 0.3,0.1 0.6,0.3 0.9,0.5 l 1.3,0.8 c 0.3,0.2 0.6,0.4 0.9,0.5 0.2,0.1 0.3,0.2 0.5,0.3 l 0.2,0.3 0.8,-0.5 0.1,0.1 c 0.2,0.5 0.5,0.9 0.8,1.3 l 0.2,0.3 0.8,-0.5 -0.2,-0.2 c -0.3,-0.4 -0.6,-0.8 -0.9,-1.3 l -1,-1.7 0.6,0.3 c 0.4,0.2 0.7,0.5 1,0.8 0.3,0.4 0.5,0.8 0.7,1.2 l 0.3,0.9 0.8,-0.4 -0.3,-0.9 c 0,-0.2 -0.1,-0.3 -0.2,-0.5 v -0.1 l 0.4,-0.2 c -0.2,-0.2 -0.5,-0.4 -0.7,-0.7 -0.1,-0.1 -0.2,-0.2 -0.3,-0.2 l -0.7,-0.6 c -0.3,-0.2 -0.5,-0.5 -0.8,-0.7 v -0.1 l -0.2,-0.1 -0.4,-0.3 -1.1,-0.6 c -0.3,-0.2 -0.5,-0.3 -0.8,-0.5 l -1.1,-0.8 c -0.3,-0.2 -0.6,-0.5 -0.9,-0.6 l -0.8,-0.3 z m 11.3,2.6 v 0.3 c -0.1,0.1 -0.2,0.1 -0.4,0.2 l -0.2,0.1 v -0.1 l 0.2,-0.3 0.2,-0.3 z m 3.8,1.2 -0.9,0.4 c -0.3,0.2 -0.6,0.4 -0.8,0.6 -0.3,0.2 -0.5,0.4 -0.7,0.6 l -0.8,0.4 c -0.4,0.3 -0.7,0.6 -1,0.9 -0.2,0.2 -0.3,0.5 -0.4,0.7 l 0.6,-0.2 v 0.1 c -0.2,0.3 -0.3,0.7 -0.4,1.1 l -0.6,0.4 c -0.5,0.4 -1,0.8 -1.5,1.3 l 0.9,-0.3 c 0.4,-0.4 0.8,-0.7 1.3,-1.1 v 0.5 c -0.2,0.3 -0.4,0.7 -0.5,1.1 l 0.8,-0.4 c 0.1,-0.4 0.3,-0.8 0.5,-1.1 v 0.1 c 0,0.3 -0.1,0.6 -0.1,0.8 v 0.1 l 0.8,-0.4 c 0,-0.3 0.1,-0.6 0.1,-0.8 0.1,-0.3 0.1,-0.6 0.2,-0.9 l 0.2,-0.2 c 0.4,-0.1 0.7,-0.2 1.1,-0.2 l 0.8,-0.6 c -0.5,0.1 -1,0.2 -1.4,0.3 0.3,-0.2 0.6,-0.5 0.9,-0.7 0.6,-0.3 0.6,-0.3 0.9,-0.5 l -0.9,0.4 c -0.1,0 -0.1,0.1 -0.1,0.1 l 0.7,-0.4 -0.1,0.1 c -0.1,0 -0.1,0.1 -0.2,0.1 l -1.1,0.6 c -0.1,0.1 -0.1,0.1 -0.2,0.1 -0.2,0.1 -0.3,0.3 -0.5,0.4 l -0.2,0.2 0.1,-0.4 1.3,-0.9 c 0.4,-0.2 0.8,-0.4 1.3,-0.6 0.3,-0.1 0.5,-0.1 0.8,-0.2 v -1 l -0.8,0.3 c -0.4,0.1 -0.7,0.3 -1.1,0.5 l -0.5,0.2 0.5,-0.4 0.9,-0.7 z m -11,0.5 z m 8.3,1.5 -0.2,0.2 c -0.2,0.1 -0.4,0.3 -0.6,0.5 0,-0.1 0,-0.1 0.1,-0.1 0.2,-0.3 0.4,-0.5 0.6,-0.6 z m -0.6,1.7 c 0,0.1 -0.1,0.2 -0.1,0.2 l -0.3,0.2 v -0.1 l 0.3,-0.3 z m -0.1,0.4 c 0,0.1 0,0.1 -0.1,0.1 -0.3,0.2 -0.5,0.4 -0.6,0.7 l -0.2,0.2 c 0,-0.2 0.1,-0.4 0.2,-0.6 v -0.1 c 0.1,0 0.3,-0.1 0.4,-0.2 z m -8,1.4 -0.7,0.1 v 1.3 h 0.7 c 0.3,0 0.6,0.1 0.8,0.1 v -0.2 l 1.1,0.6 c 0.4,0.3 0.7,0.7 0.9,1.1 l 0.8,-0.5 c -0.3,-0.5 -0.6,-0.9 -1,-1.2 -0.4,-0.3 -0.9,-0.6 -1.3,-0.8 -0.3,-0.2 -0.5,-0.3 -0.8,-0.3 l -0.2,0.1 -0.5,-0.1 h -0.1 z m 12,0 -1.4,1 -0.8,0.5 0.1,-0.1 0.2,-0.2 c 0.2,-0.2 0.2,-0.2 -0.1,0 l 0.7,-0.6 c -0.6,0.2 -1.2,0.6 -1.7,1 -0.3,0.2 -0.6,0.6 -0.8,0.9 -0.2,0.1 -0.4,0.3 -0.5,0.5 v 0.3 l -0.2,0.5 v 0.1 l 0.3,-0.2 v 0.1 l 0.1,-0.1 0.6,-0.2 v -0.1 l 0.1,-0.4 c 0.2,-0.1 0.3,-0.2 0.6,-0.4 0.5,-0.3 1,-0.6 1.5,-1 0.5,-0.3 0.9,-0.6 1.4,-0.9 z m -1.1,2.8 -0.9,0.6 -0.3,0.3 -0.6,0.7 c -0.5,0.6 -0.9,1.2 -1.2,1.8 -0.1,0.2 -0.3,0.4 -0.4,0.6 l 0.8,-0.4 0.1,-0.1 v 0.3 l -0.5,0.3 v 0.1 c 0,0 0.2,-0.1 0.3,-0.1 v -0.1 l 0.1,-0.1 0.9,-0.6 0.1,-0.1 c 0.1,-0.1 0.3,-0.2 0.4,-0.2 0.4,-0.2 0.9,-0.3 1.3,-0.3 v -0.3 l 0.5,-0.4 -0.2,0.1 0.7,-0.6 -0.9,0.5 v -0.3 c -0.5,0.1 -1,0.2 -1.5,0.4 -0.4,0.1 -0.7,0.2 -1,0.4 0.3,-0.5 0.6,-1 1,-1.5 l 0.6,-0.7 c 0.3,-0.2 0.9,-0.6 -0.5,0.2 z m -10.6,1.4 c -0.2,0 -0.4,0 -0.5,0.1 l -0.8,0.6 h 1.3 c 0.3,0.1 0.6,0.1 0.9,0.2 l 1,0.4 0.5,0.2 h -0.5 c -0.3,0 -0.6,-0.1 -0.9,-0.1 l -0.8,0.6 0.9,0.2 0.6,0.1 -0.3,0.2 h 0.5 c 0.1,0 0.3,0.1 0.4,0.1 l 0.2,-0.1 c 0.4,0.1 0.8,0.2 1.2,0.5 l 0.2,0.2 h 0.1 l -0.1,0.5 v 1.6 l 0.1,-0.9 v -0.5 c 0.1,-0.2 0.1,-0.4 0.2,-0.5 v -0.4 l 0.4,-0.3 -0.2,-0.1 -0.3,-0.1 v -0.1 0.1 c -0.4,-0.2 -0.7,-0.3 -1,-0.4 l -0.6,-0.1 0.6,-0.3 c -0.1,-0.1 -0.2,-0.1 -0.2,-0.2 l -0.7,-0.3 -1.1,-0.4 c -0.3,-0.1 -0.6,-0.2 -0.9,-0.2 h -0.8 z"
+		 id="path4490-5" />
+	  <path
+		 style="fill:#525767"
+		 inkscape:connector-curvature="0"
+		 d="m 484.52,430.5 -0.12,0.97 c 0.3,0.55 0.57,1.1 0.84,1.66 0.1,0.18 0.17,0.37 0.26,0.56 l 0.15,0.4 c 0.5,1.4 1.03,2.9 1.5,4.3 v 1.1 l -0.3,-0.9 c -0.1,-0.2 -0.18,-0.4 -0.26,-0.6 l -0.5,-1 -0.5,-0.8 -0.1,-0.2 -0.1,0.3 -0.5,-0.9 c -0.4,-0.7 -0.8,-1.4 -1.2,-2 l -0.5,-0.6 c -0.2,-0.3 -0.5,-0.5 -0.7,-0.7 l -0.1,0.9 c 0.4,0.3 0.8,0.8 1.1,1.2 0.4,0.6 0.8,1.3 1.1,1.9 v 0.1 l -0.1,-0.1 -0.1,0.9 c 0.5,0.6 0.9,1.3 1.4,2 l 0.9,1.4 0.6,1.9 v 0.9 l -0.1,-0.1 c 0,-0.1 0,-0.1 -0.1,-0.1 v -0.5 c -0.1,-0.3 -0.1,-0.7 -0.2,-1 l -0.2,1 c -0.7,-1.2 -1.5,-2.3 -2.2,-3.4 -0.5,-0.7 -1,-1.4 -1.4,-2.1 l -0.1,0.9 1.3,1.9 c 0.6,0.8 1.1,1.7 1.7,2.5 l 0.7,1.2 v 0.7 l -0.7,-1.1 -0.9,-1.8 c -0.2,-0.4 -0.3,-0.6 -0.6,-1 l -0.3,-0.5 -1.1,-1.7 -0.1,0.9 c 0.4,0.5 0.8,1.1 1.2,1.6 l 0.3,0.4 0.6,1 0.9,1.6 -0.3,-0.2 c -0.2,-0.1 -0.4,-0.3 -0.6,-0.3 v 0.8 l -1.1,-1.7 -0.1,1 1.2,1.8 c 0.6,0.9 1.3,1.8 1.9,2.7 l 0.5,0.9 -0.1,0.6 0.1,0.2 -0.1,0.4 c -0.5,-0.8 -1,-1.5 -1.4,-2.3 -0.4,-0.7 -0.8,-1.4 -0.9,-2.2 l -0.2,0.9 c 0.1,0.7 0.6,1.4 0.9,2.1 l 1.5,2.5 0.3,0.4 c -0.3,-0.4 -0.6,-0.7 -1,-1 l -0.2,-0.3 c -0.3,-0.6 -0.7,-1.1 -1,-1.7 l -0.1,0.7 -0.1,-0.2 c -0.3,-0.6 -0.7,-1.1 -1,-1.7 l -0.1,0.9 1,1.5 v 0.1 l -0.3,-0.3 c -0.3,-0.2 -0.6,-0.4 -0.9,-0.7 l -0.1,1 0.9,0.6 c 0.2,0.2 0.5,0.3 0.7,0.5 0.3,0.3 0.6,0.6 0.9,1 0.6,0.7 1.1,1.5 1.6,2.3 v 0.3 l -0.3,-0.5 c -0.3,-0.4 -0.6,-0.7 -1,-1 l -0.5,-0.4 c -0.1,0 -0.1,0 -0.2,-0.1 v 1 l 0.1,0.1 c 0.2,0.1 0.3,0.1 0.4,0.3 0.3,0.2 0.5,0.4 0.7,0.7 v 0.6 l 0.3,0.2 v 0.2 l -0.1,-0.1 v 1 l 0.3,0.3 -0.8,-0.5 -1,-0.9 v 0.2 l -1.1,-0.6 c -0.6,-0.2 -1.1,-0.5 -1.7,-0.5 v 1 c 0.6,-0.1 1.1,0.1 1.7,0.3 0.5,0.2 1,0.5 1.5,0.8 l 0.6,0.4 1,0.72 v 0.4 c -0.3,-0.3 -0.6,-0.6 -0.8,-0.95 l -0.1,1 c 0.3,0.3 0.6,0.6 0.8,1 v 0.1 -0.18 l 0.3,0.3 c 0.5,0.7 0.9,1.4 1.4,2.1 l -0.3,-0.3 c -0.6,-0.4 -1.2,-0.7 -1.8,-1.1 -0.3,-0.2 -0.7,-0.4 -1.1,-0.4 v 1 c 0.4,0 0.7,0.2 1.1,0.3 l 1.1,0.7 v 0.3 l 0.9,1.2 0.2,0.35 -2.1,-0.7 c -0.4,-0.2 -0.8,-0.4 -1.1,-0.6 l -0.1,1 h 0.1 c 0.1,0.1 0,0 0.3,0.1 l 0.8,0.3 2.2,0.7 c -0.1,0.13 -0.1,0.3 -0.2,0.4 l 0.1,1 c 0.1,-0.2 0.2,-0.4 0.2,-0.66 0,-0.2 0.1,-0.4 0.1,-0.6 v -0.1 0.5 -0.5 l 0.1,0.1 -0.1,0.4 v 0.4 h 0.2 l 0.1,0.6 v -1.2 l 0.2,0.35 v 0.1 l 0.1,0.9 c 0,-0.2 0.1,-0.3 0.2,-0.5 v -0.2 l 0.1,0.3 -0.1,0.2 0.1,1 0.1,-0.1 0.1,0.5 0.1,-0.2 0.6,-1 0.3,-0.32 0.1,0.1 0.1,0.4 v 0.1 -0.4 l 0.4,0.2 c 0.04,0.1 0.1,0.2 0.1,0.3 l 0.1,0.3 v 0.3 -0.8 l 0.2,0.9 c 0,-0.5 0,-0.9 -0.1,-1.4 l 0.2,0.1 0.6,0.2 0.22,0.1 v -1 l -0.2,-0.1 c -0.3,-0.35 -0.66,-0.6 -1,-0.9 0.1,-0.05 0.14,-0.1 0.24,-0.1 v -0.2 c 0.1,0 0.1,-0.03 0.2,-0.04 0.3,0 0.6,0 0.8,0.1 v -0.9 h -0.9 c -0.4,0.1 -0.8,0.2 -1.2,0.4 v 0.3 l -0.55,-0.5 -0.3,-1 v -0.6 l 0.1,-0.1 c 0,0.1 0.1,0.2 0.1,0.3 l 0.05,-0.4 0.5,-0.5 c 0.4,-0.2 0.7,-0.4 1.1,-0.7 l -0.1,-1 c -0.3,0.3 -0.7,0.5 -1,0.7 l -0.7,0.5 -0.7,-1.1 c 0.1,-0.3 0.2,-0.6 0.32,-0.9 0.2,-0.4 0.4,-0.9 0.72,-1.2 l 0.6,-0.7 -0.1,-1 c -0.2,0.3 -0.4,0.52 -0.6,0.8 -0.2,0.2 -0.4,0.5 -0.56,0.7 l -0.24,0.53 c -0.1,0.4 -0.3,0.9 -0.4,1.4 l 0.03,-0.4 0.3,-1.5 c 0.1,-0.3 0.2,-0.5 0.4,-0.6 l -0.1,-1 -0.3,0.4 -0.2,0.2 c -0.2,0.5 -0.3,1 -0.4,1.5 l -0.1,0.8 c 0,0 -0.1,0 -0.1,-0.1 l -0.2,-0.8 -0.1,-0.3 0.1,-0.4 0.1,-0.8 0.2,-1.6 v 0.3 -1.4 c 0.06,-0.2 0.1,-0.3 0.2,-0.4 l 0.26,-0.5 c 0.2,-0.4 0.5,-0.6 0.8,-0.9 0.3,-0.2 0.6,-0.5 1,-0.6 l -0.08,-1 c -0.4,0.2 -0.7,0.4 -1,0.7 l -0.1,0.1 0.1,-0.2 0.1,-0.1 V 449 l -0.2,1 c 0,-1.3 0.1,-1 -0.16,-0.6 l -0.5,0.8 c -0.2,0.3 -0.4,0.7 -0.5,1 V 448 c 0.04,-0.03 0.1,-0.1 0.1,-0.2 l -0.1,-0.8 v -0.93 l -0.1,0.92 v 0.1 c -0.2,0.4 -0.3,0.8 -0.5,1.2 -0.3,0.9 -0.46,1.8 -0.5,2.7 l -0.26,-0.9 v -0.4 c 0,-0.6 0,-1.1 -0.1,-1.6 0,-0.3 0.1,-0.6 0.1,-0.9 0,-0.1 0.08,-0.3 0.1,-0.4 0.1,-0.5 0.3,-1 0.48,-1.6 l 0.3,-0.9 0.1,-0.3 v -1.1 l -0.1,0.9 v -0.8 0.3 l -0.3,0.9 c -0.1,0.5 -0.34,1 -0.5,1.6 0,0.1 0,0.2 -0.1,0.3 0,0.3 -0.1,0.7 -0.1,1 l -0.4,-1.7 0.2,-0.5 0.1,0.8 0.2,-0.8 c 0,-0.2 0.1,-0.7 0.2,-0.9 l 0.3,-1.4 c 0.3,-0.5 0.6,-0.9 0.9,-1.4 0.3,-0.4 0.6,-0.9 1,-1.4 l -0.1,-1 -0.5,0.9 -0.1,-0.7 -0.3,0.6 -0.04,-0.4 -0.2,0.6 v -0.8 l -0.18,1 v -0.9 l -0.1,0.2 -0.1,0.3 -0.4,1.1 c -0.3,0.8 -0.6,1.6 -0.8,2.5 0,0.2 -0.1,0.5 -0.1,0.7 v -2 c 0.1,-0.1 0.1,-0.2 0.1,-0.3 0.03,-0.1 0.1,-0.4 0.1,-0.5 v -1 l -0.1,0.9 v -0.8 l -0.07,0.2 c 0,0 0,0.1 -0.1,0.1 v -0.6 l -0.2,1 v 0.2 c -0.1,0.2 -0.1,0.4 -0.2,0.6 -0.1,0.3 -0.2,0.6 -0.2,0.9 l -0.2,-1 c -0.1,-0.2 -0.1,-0.4 -0.1,-0.6 v -0.1 c 0.4,-1.2 0.9,-2.4 1.5,-3.5 l 0.34,-0.7 0.3,-0.5 v -0.6 l 0.3,-0.5 -0.1,-1 -0.6,1.4 c -0.3,0.6 -0.6,1.1 -0.9,1.7 l -0.5,0.9 c -0.3,0.6 -0.5,1.3 -0.8,1.9 l -0.1,-0.4 v -0.6 l 0.1,-0.6 -0.1,-0.3 c 0,-1.1 -0.1,-2.1 -0.1,-3.2 v -4.2 l -0.1,1 v 4.1 c 0,0.6 0.1,1.2 0.1,1.8 l -0.6,-1.6 c 0,-0.3 0,-0.7 0.1,-1.1 0.1,-0.4 0.1,-0.7 0.2,-1.1 l 0.2,-0.5 c 0,-0.1 0.1,-0.1 0.1,-0.2 l -0.2,-0.9 c -0.04,0.4 -0.2,0.8 -0.23,1.1 -0.1,0.4 -0.1,0.4 -0.1,0.8 -0.1,0.6 -0.1,1.1 -0.1,1.6 -0.1,-0.4 -0.3,-0.7 -0.43,-1.1 l -1,-2.6 c -0.2,-0.6 -0.4,-1.3 -0.5,-2 l -0.1,0.7 -0.43,-1 z m 3,7.97 c 0.12,0.33 0.25,0.66 0.36,1 0.1,0.27 0.1,0.32 0.12,0.4 V 440 c -0.16,-0.52 -0.3,-1.04 -0.48,-1.55 z m -0.22,0.4 c 0.25,0.8 0.5,1.6 0.72,2.4 v 0.1 l -0.25,-0.48 -0.1,-0.3 c -0.07,-0.3 -0.17,-0.5 -0.26,-0.7 0,-0.3 -0.1,-0.6 -0.1,-0.9 v -0.2 z m 2.24,0.33 c -0.26,0.66 -0.52,1.34 -0.76,2.02 0,0.04 -0.03,0.1 -0.04,0.13 0,-0.1 -0.03,-0.2 -0.04,-0.3 l 0.46,-1.13 z m -0.87,1.93 -0.1,0.72 c -0.03,-0.05 -0.06,-0.18 -0.08,-0.22 0,-0.17 0.1,-0.33 0.1,-0.5 z m 2.43,1.03 -0.05,0.16 -0.1,0.17 0.15,-0.4 z m -2.46,0.56 0.15,0.84 0.1,0.86 v 0.2 l -0.2,-0.48 c 0,-0.1 0,-0.2 -0.1,-0.32 l -0.2,-0.93 v -0.2 z m 2.14,0.2 -0.12,0.36 -0.3,0.93 -0.12,0.3 c 0.13,-0.4 0.28,-0.9 0.46,-1.3 l 0.08,-0.2 z m -1.25,0.55 v 2.26 l -0.26,-1.3 0.2,-0.75 0.06,-0.2 z m -1.52,0.03 0.1,0.13 v 0.3 -0.13 l 0.1,-0.3 z m 0.2,0.7 c 0.1,0.16 0.1,0.32 0.1,0.48 0,-0.1 -0.1,-0.18 -0.1,-0.27 l 0.1,-0.1 v -0.1 z m 0.4,0.36 0.1,0.3 v 0.18 -0.48 z m -0.8,0.1 0.1,0.1 v 0.26 l 0.1,-0.22 v 0.6 -0.74 z m 1.4,0.47 0.3,1.42 v 0.02 -0.38 c 0,-0.4 -0.1,-0.6 -0.2,-1 v -0.2 z m -1.1,0 0.6,0.96 c 0,0.1 0.1,0.3 0.1,0.4 -0.1,-0.1 -0.2,-0.2 -0.3,-0.4 l -0.2,-0.4 v -0.7 l 0.1,-0.2 z m -2,0.07 c 0.2,0.07 0.3,0.15 0.5,0.25 0.3,0.14 0.5,0.34 0.7,0.54 0.3,0.2 0.4,0.5 0.6,0.8 l 0.5,0.9 c 0.2,0.4 0.3,0.8 0.4,1.2 l 0.1,0.1 c -0.1,-0.4 -0.3,-0.7 -0.6,-1.1 l -1.8,-2.7 -0.1,-0.1 z m 3,1.7 0.2,0.34 v 0.02 l -0.1,-0.15 v -0.2 z m -0.5,0.4 0.3,0.32 0.1,0.53 V 448 l -0.2,-0.7 z m 1.2,0.38 c 0.2,0.75 0.4,1.5 0.5,2.26 v 0.16 l -0.1,-0.7 c -0.1,-0.45 -0.1,-0.72 -0.2,-1.16 v -0.53 z m -0.7,0.23 0.1,0.4 -0.1,0.3 v -0.6 z m 0.3,1 v 1.4 c 0,0.2 0.1,0.3 0,0.4 v -0.3 1.1 c -0.1,-0.1 -0.1,-0.3 -0.2,-0.5 v -0.6 c 0,0.1 0,0.1 0.1,0.2 l 0.1,-0.9 0.2,-0.4 z m 0.1,0.5 c 0,0.1 0.1,0.1 0.1,0.2 v 0.6 l 0.2,1 v -0.5 l 0.1,0.7 0.1,1.6 -0.3,-1 v -2.3 z m 2.3,0.2 v 0.8 l 0.1,2.2 v 1.3 l -0.3,0.9 c -0.3,0.6 -0.4,1.3 -0.5,2 l -0.1,-0.7 v -0.1 c 0,-0.5 0,-1 0.1,-1.4 0.1,0.3 0.2,0.7 0.2,1 v 0.4 l 0.2,-0.9 v -0.4 c 0,-0.4 -0.1,-0.8 -0.2,-1.2 0.1,-0.9 0.2,-1.7 0.5,-2.6 0.1,-0.3 0.3,-0.6 0.4,-0.9 z m -1.9,0.7 0.1,0.7 0.2,0.8 v 1.9 -0.2 c 0,-1 -0.1,-2 -0.2,-3 z m -1.1,0.8 0.2,0.4 v 0.2 c 0,-0.1 -0.1,-0.2 -0.1,-0.3 0,-0.1 0.1,-0.1 0.1,-0.2 z m 1.6,1.4 0.2,0.7 0.1,-0.5 0.2,0.9 v 1.7 c -0.2,-0.8 -0.3,-1.6 -0.4,-2.4 v -0.3 z m -1,1.7 z m 0.7,0.2 z m -0.5,0.1 c 0,0.1 0,0.1 0.1,0.2 v 0.1 l -0.1,-0.1 z m 0,1.6 0.4,0.7 0.2,0.5 v 0.2 c -0.2,-0.3 -0.4,-0.7 -0.6,-1 v -0.3 z m 2.3,0.1 -0.1,1.3 -0.1,0.9 -0.2,-0.4 v -0.4 c 0.1,-0.4 0.1,-0.9 0.2,-1.3 v 0.5 l 0.2,1 v -0.1 c 0,-0.3 0.1,-0.7 0.1,-1 l 0.1,-0.4 z m -1.6,1.3 0.2,0.4 -0.1,-0.3 v -0.1 z m 0.8,1 0.1,0.1 0.1,0.6 -0.1,-0.3 -0.1,-0.2 0.1,-0.2 z m -1.4,1.6 0.3,0.2 0.7,0.7 0.1,0.1 v 0.1 c 0,0.1 0.1,0.1 0.1,0.2 l 0.3,0.7 0.1,0.3 v 0.1 l 0.1,0.2 0.2,0.6 -0.7,-1.2 -0.5,-0.8 -0.2,-0.4 -0.2,-0.2 v -0.5 z m 2.6,3.2 0.3,0.5 0.1,0.3 v 0.2 l -0.4,-0.8 0.1,-0.1 z m -0.5,0.2 0.1,0.2 0.2,0.4 v 0.1 l -0.3,-0.4 z m 1.2,1.2 c 0.1,0.1 0.1,0.2 0.1,0.4 l -0.1,-0.3 0.1,-0.1 z m -0.6,0.2 0.3,1.3 0.1,0.2 -0.6,-0.2 v -0.9 c 0,0.1 0.1,0.1 0.1,0.2 v -0.3 l 0.1,0.4 0.1,-0.7 z m -0.9,0.2 c 0.1,0.1 0.2,0.2 0.3,0.4 l 0.1,0.1 0.1,0.2 c -0.1,-0.2 -0.3,-0.4 -0.4,-0.6 z m 0.5,0.5 0.1,0.1 0.1,0.2 v 0.2 l -0.1,-0.2 v -0.2 z m 1.3,0.8 0.1,0.1 v 0.1 -0.1 z m 0.4,0.3 0.1,0.3 h -0.1 v -0.2 z m -0.2,0.1 0.1,0.2 h -0.1 v -0.1 z m -0.1,1.2 v 0.1 z"
+		 id="path4653-3" />
+	</g>
   </g>
 </svg>
diff --git a/resources/vector/hair/up front.svg b/resources/vector/hair/up front.svg
index 8ed4b20c2f03d2a59859c0d28dfda8ef754b850d..e2da92744741faa1cfcc3468440b914a2b0cc1f4 100644
--- a/resources/vector/hair/up front.svg	
+++ b/resources/vector/hair/up front.svg	
@@ -18,36 +18,36 @@
    xml:space="preserve"
    sodipodi:docname="bun front.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"><metadata
-     id="metadata10"><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="defs8" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1935"
-     inkscape:window-height="1331"
-     id="namedview6"
-     showgrid="false"
-     inkscape:zoom="3.776"
-     inkscape:cx="502.72508"
-     inkscape:cy="834.78887"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="Layer_1" /><style
-     type="text/css"
-     id="style2">
+	 id="metadata10"><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="defs8" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1935"
+	 inkscape:window-height="1331"
+	 id="namedview6"
+	 showgrid="false"
+	 inkscape:zoom="3.776"
+	 inkscape:cx="502.72508"
+	 inkscape:cy="834.78887"
+	 inkscape:window-x="0"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="Layer_1" /><style
+	 type="text/css"
+	 id="style2">
 	.st0{fill:#5FBA46;}
 </style><path
-     id="Hair_Green"
-     class="st0"
-     d="m 484.6,101.6 c 5.1,7.6 15,14 52.5,7.3 8.37161,3.34619 11.60424,19.36186 10.10424,29.75 -11.09873,28.03941 11.53263,14.41906 14.73347,-4.64407 0.94534,-4.78474 10.77627,-41.649999 -13.02415,-57.61949 C 600.87161,65.963135 504.81101,18.01822 520.2,64.8 c -33,7.1 -33.1,19.4 -35.6,36.8 z"
-     style="fill:#b4b3b7;fill-opacity:1"
-     inkscape:connector-curvature="0"
-     sodipodi:nodetypes="ccccccc" /></svg>
\ No newline at end of file
+	 id="Hair_Green"
+	 class="st0"
+	 d="m 484.6,101.6 c 5.1,7.6 15,14 52.5,7.3 8.37161,3.34619 11.60424,19.36186 10.10424,29.75 -11.09873,28.03941 11.53263,14.41906 14.73347,-4.64407 0.94534,-4.78474 10.77627,-41.649999 -13.02415,-57.61949 C 600.87161,65.963135 504.81101,18.01822 520.2,64.8 c -33,7.1 -33.1,19.4 -35.6,36.8 z"
+	 style="fill:#b4b3b7;fill-opacity:1"
+	 inkscape:connector-curvature="0"
+	 sodipodi:nodetypes="ccccccc" /></svg>
\ No newline at end of file
diff --git a/resources/vector/outfit/ball gag fore.svg b/resources/vector/outfit/ball gag fore.svg
index f098279aead0ed699b08217a434a367c118cd23c..cee02bd60401faa681a61ec81fd3f6fcb2ec41e3 100644
--- a/resources/vector/outfit/ball gag fore.svg	
+++ b/resources/vector/outfit/ball gag fore.svg	
@@ -5,7 +5,7 @@
 	 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000"
 	 style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
 <style type="text/css">
-	.st0{opacity:0.24;fill:#BF2126;enable-background:new    ;}
+	.st0{opacity:0.24;fill:#BF2126;enable-background:new	;}
 	.st1{fill:#070505;}
 	.st2{fill:#BF2126;}
 </style>
diff --git a/resources/vector/outfit/boob 0 straps.svg b/resources/vector/outfit/boob 0 straps.svg
index b3728bb32e62a73db19827467d2079afe12c517a..38cba156db6c8f4c797f01053ac0c860d222cb77 100644
--- a/resources/vector/outfit/boob 0 straps.svg	
+++ b/resources/vector/outfit/boob 0 straps.svg	
@@ -16,34 +16,34 @@
    id="svg4356"
    sodipodi:docname="boob 0 straps.svg"
    inkscape:version="0.91 r13725"><metadata
-     id="metadata4362"><rdf:RDF><cc:Work
-         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
-     id="defs4360" /><sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="1280"
-     inkscape:window-height="952"
-     id="namedview4358"
-     showgrid="false"
-     inkscape:zoom="2.404163"
-     inkscape:cx="504.81177"
-     inkscape:cy="675.75124"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="1"
-     inkscape:current-layer="Boob_0_straps"
-     inkscape:object-nodes="true"
-     inkscape:object-paths="false"
-     inkscape:snap-smooth-nodes="true" /><style
-     type="text/css"
-     id="style3680">
+	 id="metadata4362"><rdf:RDF><cc:Work
+		 rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+		   rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
+	 id="defs4360" /><sodipodi:namedview
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="1280"
+	 inkscape:window-height="952"
+	 id="namedview4358"
+	 showgrid="false"
+	 inkscape:zoom="2.404163"
+	 inkscape:cx="504.81177"
+	 inkscape:cy="675.75124"
+	 inkscape:window-x="0"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="1"
+	 inkscape:current-layer="Boob_0_straps"
+	 inkscape:object-nodes="true"
+	 inkscape:object-paths="false"
+	 inkscape:snap-smooth-nodes="true" /><style
+	 type="text/css"
+	 id="style3680">
 	.st0{fill:#FFFFFF;}
 	.st1{fill:#76C043;}
 	.st2{fill:#2680BC;}
@@ -66,35 +66,35 @@
 	.st19{fill:#787878;}
 	.st20{fill:#D76B93;}
 	.st21{fill:#4DB748;}
-	.st22{opacity:0.24;fill:#BF2126;enable-background:new    ;}
+	.st22{opacity:0.24;fill:#BF2126;enable-background:new	;}
 	.st23{fill:#070505;}
 	.st24{fill:#BF2126;}
 </style><g
-     inkscape:groupmode="layer"
-     id="Boob_0_straps"
-     inkscape:label="Boob_0_straps"
-     style="display:inline"><path
-       id="path9222-6"
-       style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1"
-       d="M 470.40961,273.28725 510.2,215.4 M 528.38181,272.82448 510.2,215.4 l -18.94327,64.68054 -1.27331,13.22861"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cccccc" /><path
-       id="path4809-3"
-       style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 525.55979,279.17038 -34.30306,0.91012 -19.71707,-3.9374 m -5.39254,-1.34213 -6.18716,-1.84961 m 75.79813,6.08134 22.68007,-4.6221 9.32701,-2.31465"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cccccccc" /><path
-       style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none"
-       inkscape:connector-curvature="0"
-       d="m 467.8,271.4 c 1.3,-0.4 2.9,1.2 3.5,3.5 0.5,2.3 -0.1,4.5 -1.3,4.9 -1.3,0.4 -2.9,-1.2 -3.5,-3.5 -0.8,-2.4 -0.1,-4.5 1.3,-4.9 z"
-       class="st20"
-       id="XMLID_552_-5" /><path
-       style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none"
-       d="m 531.02854,284.89997 a 6.1000179,4.9000146 86.283549 0 1 -5.28511,-5.76958 6.1000179,4.9000146 86.283549 0 1 4.49431,-6.4048 6.1000179,4.9000146 86.283549 0 1 5.28511,5.76958 6.1000179,4.9000146 86.283549 0 1 -4.49431,6.4048 z"
-       id="XMLID_553_-6"
-       inkscape:connector-curvature="0" /><path
-       style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-       d="m 531.02854,284.89997 2.62912,12.56863"
-       id="path3338"
-       inkscape:connector-curvature="0"
-       sodipodi:nodetypes="cc" /></g></svg>
\ No newline at end of file
+	 inkscape:groupmode="layer"
+	 id="Boob_0_straps"
+	 inkscape:label="Boob_0_straps"
+	 style="display:inline"><path
+	   id="path9222-6"
+	   style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1"
+	   d="M 470.40961,273.28725 510.2,215.4 M 528.38181,272.82448 510.2,215.4 l -18.94327,64.68054 -1.27331,13.22861"
+	   inkscape:connector-curvature="0"
+	   sodipodi:nodetypes="cccccc" /><path
+	   id="path4809-3"
+	   style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+	   d="m 525.55979,279.17038 -34.30306,0.91012 -19.71707,-3.9374 m -5.39254,-1.34213 -6.18716,-1.84961 m 75.79813,6.08134 22.68007,-4.6221 9.32701,-2.31465"
+	   inkscape:connector-curvature="0"
+	   sodipodi:nodetypes="cccccccc" /><path
+	   style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none"
+	   inkscape:connector-curvature="0"
+	   d="m 467.8,271.4 c 1.3,-0.4 2.9,1.2 3.5,3.5 0.5,2.3 -0.1,4.5 -1.3,4.9 -1.3,0.4 -2.9,-1.2 -3.5,-3.5 -0.8,-2.4 -0.1,-4.5 1.3,-4.9 z"
+	   class="st20"
+	   id="XMLID_552_-5" /><path
+	   style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.5;stroke-miterlimit:4;stroke-dasharray:none"
+	   d="m 531.02854,284.89997 a 6.1000179,4.9000146 86.283549 0 1 -5.28511,-5.76958 6.1000179,4.9000146 86.283549 0 1 4.49431,-6.4048 6.1000179,4.9000146 86.283549 0 1 5.28511,5.76958 6.1000179,4.9000146 86.283549 0 1 -4.49431,6.4048 z"
+	   id="XMLID_553_-6"
+	   inkscape:connector-curvature="0" /><path
+	   style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+	   d="m 531.02854,284.89997 2.62912,12.56863"
+	   id="path3338"
+	   inkscape:connector-curvature="0"
+	   sodipodi:nodetypes="cc" /></g></svg>
\ No newline at end of file
diff --git a/resources/vector/outfit/boob 1 straps.svg b/resources/vector/outfit/boob 1 straps.svg
index e18663416f3e014fc54db118e0e7d16ff509e890..d05d17c429dc0c70badd89b8ae9a3372632080b1 100644
--- a/resources/vector/outfit/boob 1 straps.svg	
+++ b/resources/vector/outfit/boob 1 straps.svg	
@@ -1,13 +1,13 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve" id="svg4356" sodipodi:docname="vector source.svg" inkscape:version="0.91 r13725">
   <metadata id="metadata4362">
-    <rdf:RDF>
-      <cc:Work rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
-        <dc:title/>
-      </cc:Work>
-    </rdf:RDF>
+	<rdf:RDF>
+	  <cc:Work rdf:about="">
+		<dc:format>image/svg+xml</dc:format>
+		<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+		<dc:title/>
+	  </cc:Work>
+	</rdf:RDF>
   </metadata>
   <defs id="defs4360"/>
   <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1280" inkscape:window-height="952" id="namedview4358" showgrid="false" inkscape:zoom="1.2020815" inkscape:cx="434.47578" inkscape:cy="639.70571" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg4356" inkscape:object-nodes="true" inkscape:object-paths="false" inkscape:snap-smooth-nodes="true"/>
@@ -34,20 +34,20 @@
 	.st19{fill:#787878;}
 	.st20{fill:#D76B93;}
 	.st21{fill:#4DB748;}
-	.st22{opacity:0.24;fill:#BF2126;enable-background:new    ;}
+	.st22{opacity:0.24;fill:#BF2126;enable-background:new	;}
 	.st23{fill:#070505;}
 	.st24{fill:#BF2126;}
 </style>
   <svg:g inkscape:groupmode="layer" id="Boob_1_straps" inkscape:label="Boob_1_straps" style="display:inline">
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 511.2,215.6 C 497.352,235.58 454.855,245.458 452.673,271.24" id="path7375" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 515.844,272.368 C 518.949,250.694 511.172,236.274 511.2,215.6" id="path7377" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 514.353,285.57 C 513.863,290.735 519.114,296.818 521.485,298.101" id="path7381" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 453.492,280.324 C 453.976,285.711 462.107,291.148 471.921,291.74" id="path7383" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 509.289,278.981 C 503.14,278.558 499.567,277.327 495.588,275.038" id="path7385" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 455.768,276.097 C 466.382,277.399 484.75,276.419 495.588,275.038" id="path7387" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 495.411,278.532 L 495.588,275.038 C 494.921,255.563 501.294,235.697 511.2,215.6" id="path7389" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
-    <svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none" inkscape:connector-curvature="0" d="M 452.35,271.436 C 454.004,271.157 455.289,273.643 455.578,275.295 C 455.887,277.056 455.463,280.019 453.701,280.321 C 452.009,280.61 450.58,278.146 450.301,276.453 C 450.008,274.67 450.569,271.737 452.35,271.436 Z" class="st20" id="path7391" sodipodi:nodetypes="ccccc"/>
-    <svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999983;stroke-miterlimit:4;stroke-dasharray:none" d="M 515.334,285.383 C 512.641,285.561 510.145,282.014 509.968,279.321 C 509.794,276.672 511.834,272.936 514.483,272.761 C 517.176,272.584 519.672,276.131 519.849,278.823 C 520.023,281.472 517.983,285.209 515.334,285.383 Z" id="path7393" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
-    <svg:path id="path9222-3" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 520.102,279.565 C 530.704,279.485 544.773,271.622 551.242,267.345 C 554.436,248.041 514.781,235.469 511.2,215.6" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 511.2,215.6 C 497.352,235.58 454.855,245.458 452.673,271.24" id="path7375" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 515.844,272.368 C 518.949,250.694 511.172,236.274 511.2,215.6" id="path7377" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 514.353,285.57 C 513.863,290.735 519.114,296.818 521.485,298.101" id="path7381" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 453.492,280.324 C 453.976,285.711 462.107,291.148 471.921,291.74" id="path7383" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 509.289,278.981 C 503.14,278.558 499.567,277.327 495.588,275.038" id="path7385" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 455.768,276.097 C 466.382,277.399 484.75,276.419 495.588,275.038" id="path7387" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 495.411,278.532 L 495.588,275.038 C 494.921,255.563 501.294,235.697 511.2,215.6" id="path7389" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none" inkscape:connector-curvature="0" d="M 452.35,271.436 C 454.004,271.157 455.289,273.643 455.578,275.295 C 455.887,277.056 455.463,280.019 453.701,280.321 C 452.009,280.61 450.58,278.146 450.301,276.453 C 450.008,274.67 450.569,271.737 452.35,271.436 Z" class="st20" id="path7391" sodipodi:nodetypes="ccccc"/>
+	<svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999983;stroke-miterlimit:4;stroke-dasharray:none" d="M 515.334,285.383 C 512.641,285.561 510.145,282.014 509.968,279.321 C 509.794,276.672 511.834,272.936 514.483,272.761 C 517.176,272.584 519.672,276.131 519.849,278.823 C 520.023,281.472 517.983,285.209 515.334,285.383 Z" id="path7393" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
+	<svg:path id="path9222-3" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 520.102,279.565 C 530.704,279.485 544.773,271.622 551.242,267.345 C 554.436,248.041 514.781,235.469 511.2,215.6" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
   </svg:g>
 </svg>
diff --git a/resources/vector/outfit/boob 2 straps.svg b/resources/vector/outfit/boob 2 straps.svg
index 8ae17cd186bdab28f60c4e610c606c959dfc8784..fc052c091bab07bf72a139f9cca4221b08132d17 100644
--- a/resources/vector/outfit/boob 2 straps.svg	
+++ b/resources/vector/outfit/boob 2 straps.svg	
@@ -1,13 +1,13 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve" id="svg4356" sodipodi:docname="vector source.svg" inkscape:version="0.91 r13725">
   <metadata id="metadata4362">
-    <rdf:RDF>
-      <cc:Work rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
-        <dc:title/>
-      </cc:Work>
-    </rdf:RDF>
+	<rdf:RDF>
+	  <cc:Work rdf:about="">
+		<dc:format>image/svg+xml</dc:format>
+		<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+		<dc:title/>
+	  </cc:Work>
+	</rdf:RDF>
   </metadata>
   <defs id="defs4360"/>
   <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1280" inkscape:window-height="952" id="namedview4358" showgrid="false" inkscape:zoom="1.2020815" inkscape:cx="434.47578" inkscape:cy="639.70571" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg4356" inkscape:object-nodes="true" inkscape:object-paths="false" inkscape:snap-smooth-nodes="true"/>
@@ -34,20 +34,20 @@
 	.st19{fill:#787878;}
 	.st20{fill:#D76B93;}
 	.st21{fill:#4DB748;}
-	.st22{opacity:0.24;fill:#BF2126;enable-background:new    ;}
+	.st22{opacity:0.24;fill:#BF2126;enable-background:new	;}
 	.st23{fill:#070505;}
 	.st24{fill:#BF2126;}
 </style>
   <svg:g inkscape:groupmode="layer" id="Boob_2_straps" inkscape:label="Boob_2_straps" style="display:inline">
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 510.2,215.4 c -17.19712,24.81244 -69.92394,37.12918 -72.63365,69.14594" id="path7375" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 515.7378,286.27032 C 519.6138,259.22032 510.165,241.202 510.2,215.4" id="path7377" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 514.05917,301.66813 c -0.634,6.678 6.32316,14.44794 9.38983,16.10687" id="path7381" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 438.613,295.601 c 0.61,6.791 10.93048,13.5302 23.30084,14.27656" id="path7383" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 507.58865,293.98112 C 500.10265,293.46612 495.491,292.993 490.646,290.207" id="path7385" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 441.52165,290.46212 c 13.09,1.606 35.75835,1.44788 49.12435,-0.25512" id="path7387" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 490.469,293.701 0.177,-3.494 c -0.83858,-24.50293 7.09082,-49.52162 19.554,-74.807" id="path7389" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
-    <svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none" inkscape:connector-curvature="0" d="m 437.15035,284.73606 c 2.0422,-0.3446 3.74092,2.62993 4.09824,4.66994 0.38247,2.18359 -0.24149,5.81825 -2.42659,6.192 -2.08027,0.35582 -3.79527,-2.70955 -4.13812,-4.792 -0.35479,-2.15496 0.31294,-5.70656 2.46647,-6.06994 z" class="st20" id="path7391" sodipodi:nodetypes="ccccc"/>
-    <svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999983;stroke-miterlimit:4;stroke-dasharray:none" d="m 515.2283,301.48099 c -3.28587,0.2164 -6.73211,-3.73639 -6.94851,-7.02226 -0.21427,-3.25353 2.6553,-7.58112 5.90883,-7.79539 3.28587,-0.2164 6.73212,3.73638 6.94852,7.02225 0.21427,3.25354 -2.6553,7.58113 -5.90884,7.7954 z" id="path7393" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
-    <svg:path id="path9222-3" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 521.39035,294.70259 C 534.50935,294.60359 551.681,284.278 559.686,278.986 563.61961,255.21307 514.61044,239.86827 510.2,215.4" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 510.2,215.4 c -17.19712,24.81244 -69.92394,37.12918 -72.63365,69.14594" id="path7375" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 515.7378,286.27032 C 519.6138,259.22032 510.165,241.202 510.2,215.4" id="path7377" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 514.05917,301.66813 c -0.634,6.678 6.32316,14.44794 9.38983,16.10687" id="path7381" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 438.613,295.601 c 0.61,6.791 10.93048,13.5302 23.30084,14.27656" id="path7383" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 507.58865,293.98112 C 500.10265,293.46612 495.491,292.993 490.646,290.207" id="path7385" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 441.52165,290.46212 c 13.09,1.606 35.75835,1.44788 49.12435,-0.25512" id="path7387" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 490.469,293.701 0.177,-3.494 c -0.83858,-24.50293 7.09082,-49.52162 19.554,-74.807" id="path7389" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none" inkscape:connector-curvature="0" d="m 437.15035,284.73606 c 2.0422,-0.3446 3.74092,2.62993 4.09824,4.66994 0.38247,2.18359 -0.24149,5.81825 -2.42659,6.192 -2.08027,0.35582 -3.79527,-2.70955 -4.13812,-4.792 -0.35479,-2.15496 0.31294,-5.70656 2.46647,-6.06994 z" class="st20" id="path7391" sodipodi:nodetypes="ccccc"/>
+	<svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999983;stroke-miterlimit:4;stroke-dasharray:none" d="m 515.2283,301.48099 c -3.28587,0.2164 -6.73211,-3.73639 -6.94851,-7.02226 -0.21427,-3.25353 2.6553,-7.58112 5.90883,-7.79539 3.28587,-0.2164 6.73212,3.73638 6.94852,7.02225 0.21427,3.25354 -2.6553,7.58113 -5.90884,7.7954 z" id="path7393" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
+	<svg:path id="path9222-3" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 521.39035,294.70259 C 534.50935,294.60359 551.681,284.278 559.686,278.986 563.61961,255.21307 514.61044,239.86827 510.2,215.4" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
   </svg:g>
 </svg>
diff --git a/resources/vector/outfit/boob 3 straps.svg b/resources/vector/outfit/boob 3 straps.svg
index 9f5880f0f337774546392996aa34625fce3d4973..5bb1096f61a2434355aaec9038543c8f1fe23c42 100644
--- a/resources/vector/outfit/boob 3 straps.svg	
+++ b/resources/vector/outfit/boob 3 straps.svg	
@@ -1,13 +1,13 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve" id="svg4356" sodipodi:docname="vector source.svg" inkscape:version="0.91 r13725">
   <metadata id="metadata4362">
-    <rdf:RDF>
-      <cc:Work rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
-        <dc:title/>
-      </cc:Work>
-    </rdf:RDF>
+	<rdf:RDF>
+	  <cc:Work rdf:about="">
+		<dc:format>image/svg+xml</dc:format>
+		<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+		<dc:title/>
+	  </cc:Work>
+	</rdf:RDF>
   </metadata>
   <defs id="defs4360"/>
   <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1280" inkscape:window-height="952" id="namedview4358" showgrid="false" inkscape:zoom="1.2020815" inkscape:cx="434.47578" inkscape:cy="639.70571" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg4356" inkscape:object-nodes="true" inkscape:object-paths="false" inkscape:snap-smooth-nodes="true"/>
@@ -34,20 +34,20 @@
 	.st19{fill:#787878;}
 	.st20{fill:#D76B93;}
 	.st21{fill:#4DB748;}
-	.st22{opacity:0.24;fill:#BF2126;enable-background:new    ;}
+	.st22{opacity:0.24;fill:#BF2126;enable-background:new	;}
 	.st23{fill:#070505;}
 	.st24{fill:#BF2126;}
 </style>
   <svg:g inkscape:groupmode="layer" id="Boob_3_straps" inkscape:label="Boob_3_straps" style="display:inline">
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 512.6,212.2 C 491.836,242.159 428.12,256.975 424.848,295.633" id="path7375" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 519.238,297.973 C 523.929,265.237 512.558,243.426 512.6,212.2" id="path7377" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 517.359,315.966 C 516.585,324.111 525.21,333.506 528.951,335.53" id="path7381" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 426.147,308.804 C 426.89,317.081 439.544,325.174 454.623,326.084" id="path7383" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 509.389,306.981 C 500.356,306.36 494.678,306.332 488.832,302.97" id="path7385" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 429.591,302.714 C 445.377,304.651 472.713,305.024 488.832,302.97" id="path7387" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 488.655,306.464 L 488.832,302.97 C 487.814,273.235 497.476,242.885 512.6,212.2" id="path7389" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
-    <svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none" inkscape:connector-curvature="0" d="M 424.35,295.836 C 426.787,295.425 428.852,298.939 429.278,301.373 C 429.737,303.994 428.978,308.352 426.356,308.801 C 423.882,309.224 421.942,305.494 421.535,303.018 C 421.117,300.481 421.815,296.264 424.35,295.836 Z" class="st20" id="path7391" sodipodi:nodetypes="ccccc"/>
-    <svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999983;stroke-miterlimit:4;stroke-dasharray:none" d="M 518.729,315.778 C 514.778,316.039 510.353,311.573 510.092,307.622 C 509.833,303.681 513.548,298.625 517.488,298.366 C 521.439,298.106 525.864,302.571 526.125,306.523 C 526.384,310.463 522.669,315.519 518.729,315.778 Z" id="path7393" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
-    <svg:path id="path9222-3" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 526.378,307.866 C 542.125,307.747 562.476,294.729 572.085,288.376 C 576.803,259.86 517.89,241.551 512.6,212.2" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 512.6,212.2 C 491.836,242.159 428.12,256.975 424.848,295.633" id="path7375" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 519.238,297.973 C 523.929,265.237 512.558,243.426 512.6,212.2" id="path7377" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 517.359,315.966 C 516.585,324.111 525.21,333.506 528.951,335.53" id="path7381" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 426.147,308.804 C 426.89,317.081 439.544,325.174 454.623,326.084" id="path7383" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 509.389,306.981 C 500.356,306.36 494.678,306.332 488.832,302.97" id="path7385" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 429.591,302.714 C 445.377,304.651 472.713,305.024 488.832,302.97" id="path7387" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 488.655,306.464 L 488.832,302.97 C 487.814,273.235 497.476,242.885 512.6,212.2" id="path7389" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none" inkscape:connector-curvature="0" d="M 424.35,295.836 C 426.787,295.425 428.852,298.939 429.278,301.373 C 429.737,303.994 428.978,308.352 426.356,308.801 C 423.882,309.224 421.942,305.494 421.535,303.018 C 421.117,300.481 421.815,296.264 424.35,295.836 Z" class="st20" id="path7391" sodipodi:nodetypes="ccccc"/>
+	<svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999983;stroke-miterlimit:4;stroke-dasharray:none" d="M 518.729,315.778 C 514.778,316.039 510.353,311.573 510.092,307.622 C 509.833,303.681 513.548,298.625 517.488,298.366 C 521.439,298.106 525.864,302.571 526.125,306.523 C 526.384,310.463 522.669,315.519 518.729,315.778 Z" id="path7393" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
+	<svg:path id="path9222-3" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 526.378,307.866 C 542.125,307.747 562.476,294.729 572.085,288.376 C 576.803,259.86 517.89,241.551 512.6,212.2" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
   </svg:g>
 </svg>
diff --git a/resources/vector/outfit/boob 4 straps.svg b/resources/vector/outfit/boob 4 straps.svg
index ffbbe0a6522abfb81ac8d3c7814e0c44093ac893..9bb6bdd270cfb851794c6aa44a7f256255504688 100644
--- a/resources/vector/outfit/boob 4 straps.svg	
+++ b/resources/vector/outfit/boob 4 straps.svg	
@@ -1,13 +1,13 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve" id="svg4356" sodipodi:docname="vector source.svg" inkscape:version="0.91 r13725">
   <metadata id="metadata4362">
-    <rdf:RDF>
-      <cc:Work rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
-        <dc:title/>
-      </cc:Work>
-    </rdf:RDF>
+	<rdf:RDF>
+	  <cc:Work rdf:about="">
+		<dc:format>image/svg+xml</dc:format>
+		<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+		<dc:title/>
+	  </cc:Work>
+	</rdf:RDF>
   </metadata>
   <defs id="defs4360"/>
   <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1280" inkscape:window-height="952" id="namedview4358" showgrid="false" inkscape:zoom="1.2020815" inkscape:cx="434.47578" inkscape:cy="639.70571" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg4356" inkscape:object-nodes="true" inkscape:object-paths="false" inkscape:snap-smooth-nodes="true"/>
@@ -34,20 +34,20 @@
 	.st19{fill:#787878;}
 	.st20{fill:#D76B93;}
 	.st21{fill:#4DB748;}
-	.st22{opacity:0.24;fill:#BF2126;enable-background:new    ;}
+	.st22{opacity:0.24;fill:#BF2126;enable-background:new	;}
 	.st23{fill:#070505;}
 	.st24{fill:#BF2126;}
 </style>
   <svg:g inkscape:groupmode="layer" id="Boob_4_straps" inkscape:label="Boob_4_straps" style="display:inline">
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 509.9,214 C 482.757,253.163 399.692,272.768 395.415,323.302" id="path7375" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 518.408,326.677 C 524.569,283.679 509.844,255.015 509.9,214" id="path7377" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 516.189,349.061 C 515.145,360.057 527.335,372.407 532.384,375.139" id="path7381" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 397.102,340.331 C 398.091,351.341 415.301,361.467 435.355,362.677" id="path7383" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 505.689,337.881 C 494.143,337.087 486.655,338.418 479.182,334.121" id="path7385" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 401.669,332.336 C 422.329,334.871 458.087,336.809 479.182,334.121" id="path7387" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 479.005,337.615 L 479.182,334.121 C 477.837,294.83 489.915,254.546 509.9,214" id="path7389" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
-    <svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none" inkscape:connector-curvature="0" d="M 394.75,323.536 C 397.89,323.006 400.699,327.4 401.248,330.536 C 401.855,334.001 400.779,339.735 397.311,340.328 C 394.122,340.874 391.74,335.969 391.214,332.777 C 390.678,329.523 391.498,324.085 394.75,323.536 Z" class="st20" id="path7391" sodipodi:nodetypes="ccccc"/>
-    <svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999983;stroke-miterlimit:4;stroke-dasharray:none" d="M 517.898,348.874 C 512.816,349.209 506.748,343.879 506.414,338.797 C 506.077,333.692 511.213,327.406 516.319,327.07 C 521.401,326.736 527.469,332.065 527.803,337.147 C 528.14,342.253 523.004,348.538 517.898,348.874 Z" id="path7393" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
-    <svg:path id="path9222-3" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 528.056,339.041 C 548.774,338.885 575.111,320.755 587.753,312.398 C 593.878,275.378 516.768,252.103 509.9,214" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 509.9,214 C 482.757,253.163 399.692,272.768 395.415,323.302" id="path7375" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 518.408,326.677 C 524.569,283.679 509.844,255.015 509.9,214" id="path7377" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 516.189,349.061 C 515.145,360.057 527.335,372.407 532.384,375.139" id="path7381" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 397.102,340.331 C 398.091,351.341 415.301,361.467 435.355,362.677" id="path7383" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 505.689,337.881 C 494.143,337.087 486.655,338.418 479.182,334.121" id="path7385" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 401.669,332.336 C 422.329,334.871 458.087,336.809 479.182,334.121" id="path7387" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 479.005,337.615 L 479.182,334.121 C 477.837,294.83 489.915,254.546 509.9,214" id="path7389" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none" inkscape:connector-curvature="0" d="M 394.75,323.536 C 397.89,323.006 400.699,327.4 401.248,330.536 C 401.855,334.001 400.779,339.735 397.311,340.328 C 394.122,340.874 391.74,335.969 391.214,332.777 C 390.678,329.523 391.498,324.085 394.75,323.536 Z" class="st20" id="path7391" sodipodi:nodetypes="ccccc"/>
+	<svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999983;stroke-miterlimit:4;stroke-dasharray:none" d="M 517.898,348.874 C 512.816,349.209 506.748,343.879 506.414,338.797 C 506.077,333.692 511.213,327.406 516.319,327.07 C 521.401,326.736 527.469,332.065 527.803,337.147 C 528.14,342.253 523.004,348.538 517.898,348.874 Z" id="path7393" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
+	<svg:path id="path9222-3" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 528.056,339.041 C 548.774,338.885 575.111,320.755 587.753,312.398 C 593.878,275.378 516.768,252.103 509.9,214" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
   </svg:g>
 </svg>
diff --git a/resources/vector/outfit/boob 5 straps.svg b/resources/vector/outfit/boob 5 straps.svg
index 9379223bccb8c5b9ee8f6273a96ce371fbaeb402..ce9103713d6ecfa61f278bd129518ad870911976 100644
--- a/resources/vector/outfit/boob 5 straps.svg	
+++ b/resources/vector/outfit/boob 5 straps.svg	
@@ -1,13 +1,13 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve" id="svg4356" sodipodi:docname="vector source.svg" inkscape:version="0.91 r13725">
   <metadata id="metadata4362">
-    <rdf:RDF>
-      <cc:Work rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
-        <dc:title/>
-      </cc:Work>
-    </rdf:RDF>
+	<rdf:RDF>
+	  <cc:Work rdf:about="">
+		<dc:format>image/svg+xml</dc:format>
+		<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+		<dc:title/>
+	  </cc:Work>
+	</rdf:RDF>
   </metadata>
   <defs id="defs4360"/>
   <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1280" inkscape:window-height="952" id="namedview4358" showgrid="false" inkscape:zoom="1.2020815" inkscape:cx="434.47578" inkscape:cy="639.70571" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg4356" inkscape:object-nodes="true" inkscape:object-paths="false" inkscape:snap-smooth-nodes="true"/>
@@ -34,20 +34,20 @@
 	.st19{fill:#787878;}
 	.st20{fill:#D76B93;}
 	.st21{fill:#4DB748;}
-	.st22{opacity:0.24;fill:#BF2126;enable-background:new    ;}
+	.st22{opacity:0.24;fill:#BF2126;enable-background:new	;}
 	.st23{fill:#070505;}
 	.st24{fill:#BF2126;}
 </style>
   <svg:g inkscape:groupmode="layer" id="Boob_5_straps" inkscape:label="Boob_5_straps" style="display:inline">
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 509.1,214.2 C 472.601,266.862 360.884,293.204 355.132,361.156" id="path7375" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 520.665,366.284 C 528.982,308.245 509.025,269.561 509.1,214.2" id="path7377" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 517.932,395.255 C 516.506,410.268 533.234,427.08 540.129,430.809" id="path7381" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 357.656,383.97 C 358.993,398.859 382.403,412.317 409.524,413.954" id="path7383" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 503.589,380.781 C 488.021,379.71 477.762,382.825 467.686,377.031" id="path7385" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 363.649,373.197 C 391.39,376.6 439.361,380.64 467.686,377.031" id="path7387" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 467.509,380.525 L 467.686,377.031 C 465.864,323.787 482.018,269.144 509.1,214.2" id="path7389" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
-    <svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none" inkscape:connector-curvature="0" d="M 354.25,361.436 C 358.444,360.729 362.352,366.45 363.086,370.638 C 363.909,375.338 362.568,383.163 357.865,383.967 C 353.588,384.699 350.473,378.058 349.768,373.777 C 349.057,369.459 349.935,362.164 354.25,361.436 Z" class="st20" id="path7391" sodipodi:nodetypes="ccccc"/>
-    <svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999983;stroke-miterlimit:4;stroke-dasharray:none" d="M 520.156,395.068 C 513.357,395.515 504.794,388.91 504.346,382.111 C 503.894,375.243 511.194,367.129 518.061,366.677 C 524.86,366.229 533.423,372.834 533.871,379.633 C 534.323,386.501 527.023,394.615 520.156,395.068 Z" id="path7393" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
-    <svg:path id="path9222-3" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 534.124,382.355 C 559.041,382.167 590.74,360.416 605.944,350.365 C 614.101,301.065 518.246,264.942 509.1,214.2" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 509.1,214.2 C 472.601,266.862 360.884,293.204 355.132,361.156" id="path7375" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 520.665,366.284 C 528.982,308.245 509.025,269.561 509.1,214.2" id="path7377" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 517.932,395.255 C 516.506,410.268 533.234,427.08 540.129,430.809" id="path7381" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 357.656,383.97 C 358.993,398.859 382.403,412.317 409.524,413.954" id="path7383" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 503.589,380.781 C 488.021,379.71 477.762,382.825 467.686,377.031" id="path7385" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 363.649,373.197 C 391.39,376.6 439.361,380.64 467.686,377.031" id="path7387" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 467.509,380.525 L 467.686,377.031 C 465.864,323.787 482.018,269.144 509.1,214.2" id="path7389" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none" inkscape:connector-curvature="0" d="M 354.25,361.436 C 358.444,360.729 362.352,366.45 363.086,370.638 C 363.909,375.338 362.568,383.163 357.865,383.967 C 353.588,384.699 350.473,378.058 349.768,373.777 C 349.057,369.459 349.935,362.164 354.25,361.436 Z" class="st20" id="path7391" sodipodi:nodetypes="ccccc"/>
+	<svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999983;stroke-miterlimit:4;stroke-dasharray:none" d="M 520.156,395.068 C 513.357,395.515 504.794,388.91 504.346,382.111 C 503.894,375.243 511.194,367.129 518.061,366.677 C 524.86,366.229 533.423,372.834 533.871,379.633 C 534.323,386.501 527.023,394.615 520.156,395.068 Z" id="path7393" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
+	<svg:path id="path9222-3" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 534.124,382.355 C 559.041,382.167 590.74,360.416 605.944,350.365 C 614.101,301.065 518.246,264.942 509.1,214.2" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
   </svg:g>
 </svg>
diff --git a/resources/vector/outfit/boob 6 straps.svg b/resources/vector/outfit/boob 6 straps.svg
index e37a399b85615334099704bf519f5d8b62aeaf1d..5c0e3b942d75fadc728fdc5a3276bc8b893b59df 100644
--- a/resources/vector/outfit/boob 6 straps.svg	
+++ b/resources/vector/outfit/boob 6 straps.svg	
@@ -1,13 +1,13 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve" id="svg4356" sodipodi:docname="vector source.svg" inkscape:version="0.91 r13725">
   <metadata id="metadata4362">
-    <rdf:RDF>
-      <cc:Work rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
-        <dc:title/>
-      </cc:Work>
-    </rdf:RDF>
+	<rdf:RDF>
+	  <cc:Work rdf:about="">
+		<dc:format>image/svg+xml</dc:format>
+		<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+		<dc:title/>
+	  </cc:Work>
+	</rdf:RDF>
   </metadata>
   <defs id="defs4360"/>
   <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1280" inkscape:window-height="952" id="namedview4358" showgrid="false" inkscape:zoom="1.2020815" inkscape:cx="434.47578" inkscape:cy="639.70571" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg4356" inkscape:object-nodes="true" inkscape:object-paths="false" inkscape:snap-smooth-nodes="true"/>
@@ -34,20 +34,20 @@
 	.st19{fill:#787878;}
 	.st20{fill:#D76B93;}
 	.st21{fill:#4DB748;}
-	.st22{opacity:0.24;fill:#BF2126;enable-background:new    ;}
+	.st22{opacity:0.24;fill:#BF2126;enable-background:new	;}
 	.st23{fill:#070505;}
 	.st24{fill:#BF2126;}
 </style>
   <svg:g inkscape:groupmode="layer" id="Boob_6_straps" inkscape:label="Boob_6_straps" style="display:inline">
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 507.1,214.2 C 459.007,283.59 311.88,318.377 304.302,407.915" id="path7375" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 522.185,414.992 C 533.165,338.371 507.001,287.286 507.1,214.2" id="path7377" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 518.811,452.147 C 516.906,472.213 539.677,494.423 548.892,499.407" id="path7381" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 307.885,437.891 C 309.656,457.61 340.886,475.044 376.806,477.211" id="path7383" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 499.689,433.581 C 479.328,432.18 465.803,437.427 452.626,429.85" id="path7385" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 315.689,423.718 C 352.214,428.199 415.33,434.602 452.626,429.85" id="path7387" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 452.449,433.344 L 452.626,429.85 C 450.213,359.364 471.248,286.937 507.1,214.2" id="path7389" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
-    <svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none" inkscape:connector-curvature="0" d="M 303.15,408.236 C 308.67,407.305 313.959,414.696 314.924,420.21 C 316.014,426.432 314.321,436.823 308.094,437.888 C 302.454,438.853 298.419,430.037 297.489,424.392 C 296.562,418.761 297.524,409.186 303.15,408.236 Z" class="st20" id="path7391" sodipodi:nodetypes="ccccc"/>
-    <svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999983;stroke-miterlimit:4;stroke-dasharray:none" d="M 521.676,451.959 C 512.736,452.548 501.075,444.365 500.486,435.425 C 499.889,426.364 509.88,415.982 518.941,415.385 C 527.881,414.796 539.542,422.98 540.131,431.919 C 540.727,440.981 530.737,451.363 521.676,451.959 Z" id="path7393" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
-    <svg:path id="path9222-3" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 540.384,435.669 C 573.257,435.421 614.637,405.748 634.696,392.488 C 645.399,327.801 519.101,280.779 507.1,214.2" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 507.1,214.2 C 459.007,283.59 311.88,318.377 304.302,407.915" id="path7375" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 522.185,414.992 C 533.165,338.371 507.001,287.286 507.1,214.2" id="path7377" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 518.811,452.147 C 516.906,472.213 539.677,494.423 548.892,499.407" id="path7381" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 307.885,437.891 C 309.656,457.61 340.886,475.044 376.806,477.211" id="path7383" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 499.689,433.581 C 479.328,432.18 465.803,437.427 452.626,429.85" id="path7385" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 315.689,423.718 C 352.214,428.199 415.33,434.602 452.626,429.85" id="path7387" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 452.449,433.344 L 452.626,429.85 C 450.213,359.364 471.248,286.937 507.1,214.2" id="path7389" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none" inkscape:connector-curvature="0" d="M 303.15,408.236 C 308.67,407.305 313.959,414.696 314.924,420.21 C 316.014,426.432 314.321,436.823 308.094,437.888 C 302.454,438.853 298.419,430.037 297.489,424.392 C 296.562,418.761 297.524,409.186 303.15,408.236 Z" class="st20" id="path7391" sodipodi:nodetypes="ccccc"/>
+	<svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999983;stroke-miterlimit:4;stroke-dasharray:none" d="M 521.676,451.959 C 512.736,452.548 501.075,444.365 500.486,435.425 C 499.889,426.364 509.88,415.982 518.941,415.385 C 527.881,414.796 539.542,422.98 540.131,431.919 C 540.727,440.981 530.737,451.363 521.676,451.959 Z" id="path7393" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
+	<svg:path id="path9222-3" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 540.384,435.669 C 573.257,435.421 614.637,405.748 634.696,392.488 C 645.399,327.801 519.101,280.779 507.1,214.2" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
   </svg:g>
 </svg>
diff --git a/resources/vector/outfit/boob 7 straps.svg b/resources/vector/outfit/boob 7 straps.svg
index 8b1251ac4dbc75637bde244ece5d05ccbed28e08..815d240b8c71887699b21ece5d3b9a6cd9d786e5 100644
--- a/resources/vector/outfit/boob 7 straps.svg	
+++ b/resources/vector/outfit/boob 7 straps.svg	
@@ -1,13 +1,13 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve" id="svg4356" sodipodi:docname="vector source.svg" inkscape:version="0.91 r13725">
   <metadata id="metadata4362">
-    <rdf:RDF>
-      <cc:Work rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
-        <dc:title/>
-      </cc:Work>
-    </rdf:RDF>
+	<rdf:RDF>
+	  <cc:Work rdf:about="">
+		<dc:format>image/svg+xml</dc:format>
+		<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+		<dc:title/>
+	  </cc:Work>
+	</rdf:RDF>
   </metadata>
   <defs id="defs4360"/>
   <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1280" inkscape:window-height="952" id="namedview4358" showgrid="false" inkscape:zoom="1.2020815" inkscape:cx="434.47578" inkscape:cy="639.70571" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="svg4356" inkscape:object-nodes="true" inkscape:object-paths="false" inkscape:snap-smooth-nodes="true"/>
@@ -34,20 +34,20 @@
 	.st19{fill:#787878;}
 	.st20{fill:#D76B93;}
 	.st21{fill:#4DB748;}
-	.st22{opacity:0.24;fill:#BF2126;enable-background:new    ;}
+	.st22{opacity:0.24;fill:#BF2126;enable-background:new	;}
 	.st23{fill:#070505;}
 	.st24{fill:#BF2126;}
 </style>
   <svg:g inkscape:groupmode="layer" id="Boob_7_straps" inkscape:label="Boob_7_straps" style="display:inline">
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 508.3,214.2 C 449.714,298.729 270.477,341.098 261.246,450.171" id="path7375" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 526.574,459.199 C 539.97,365.712 508.179,303.374 508.3,214.2" id="path7377" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 522.623,503.54 C 520.28,528.215 548.507,555.384 559.839,561.514" id="path7381" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 265.667,486.42 C 267.838,510.591 306.187,531.841 350.216,534.498" id="path7383" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 499.189,481.381 C 474.478,479.681 457.992,487.065 442,477.868" id="path7385" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 275.097,469.249 C 319.63,474.712 396.528,483.662 442,477.868" id="path7387" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 441.823,481.362 L 442,477.868 C 439.051,391.71 464.477,303.109 508.3,214.2" id="path7389" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
-    <svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none" inkscape:connector-curvature="0" d="M 259.85,450.536 C 266.525,449.41 273.01,458.259 274.177,464.926 C 275.502,472.49 273.446,485.122 265.876,486.417 C 259.054,487.584 254.245,476.862 253.121,470.032 C 252.004,463.249 253.071,451.68 259.85,450.536 Z" class="st20" id="path7391" sodipodi:nodetypes="ccccc"/>
-    <svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999983;stroke-miterlimit:4;stroke-dasharray:none" d="M 526.065,503.352 C 515.208,504.067 500.738,494.532 500.023,483.676 C 499.297,472.661 511.737,460.317 522.752,459.592 C 533.609,458.877 548.079,468.412 548.794,479.268 C 549.52,490.283 537.08,502.627 526.065,503.352 Z" id="path7393" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
-    <svg:path id="path9222-3" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 549.048,483.92 C 589.096,483.618 639.217,446.836 663.654,430.681 C 676.663,352.064 522.885,295.117 508.3,214.2" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 508.3,214.2 C 449.714,298.729 270.477,341.098 261.246,450.171" id="path7375" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 526.574,459.199 C 539.97,365.712 508.179,303.374 508.3,214.2" id="path7377" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 522.623,503.54 C 520.28,528.215 548.507,555.384 559.839,561.514" id="path7381" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 265.667,486.42 C 267.838,510.591 306.187,531.841 350.216,534.498" id="path7383" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 499.189,481.381 C 474.478,479.681 457.992,487.065 442,477.868" id="path7385" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 275.097,469.249 C 319.63,474.712 396.528,483.662 442,477.868" id="path7387" inkscape:connector-curvature="0" sodipodi:nodetypes="cc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 441.823,481.362 L 442,477.868 C 439.051,391.71 464.477,303.109 508.3,214.2" id="path7389" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999995;stroke-miterlimit:4;stroke-dasharray:none" inkscape:connector-curvature="0" d="M 259.85,450.536 C 266.525,449.41 273.01,458.259 274.177,464.926 C 275.502,472.49 273.446,485.122 265.876,486.417 C 259.054,487.584 254.245,476.862 253.121,470.032 C 252.004,463.249 253.071,451.68 259.85,450.536 Z" class="st20" id="path7391" sodipodi:nodetypes="ccccc"/>
+	<svg:path style="display:inline;fill:none;stroke:#b3b3b3;stroke-width:1.29999983;stroke-miterlimit:4;stroke-dasharray:none" d="M 526.065,503.352 C 515.208,504.067 500.738,494.532 500.023,483.676 C 499.297,472.661 511.737,460.317 522.752,459.592 C 533.609,458.877 548.079,468.412 548.794,479.268 C 549.52,490.283 537.08,502.627 526.065,503.352 Z" id="path7393" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
+	<svg:path id="path9222-3" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 549.048,483.92 C 589.096,483.618 639.217,446.836 663.654,430.681 C 676.663,352.064 522.885,295.117 508.3,214.2" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
   </svg:g>
 </svg>
diff --git a/resources/vector/outfit/dildo gag.svg b/resources/vector/outfit/dildo gag.svg
index 5efbe23cf029cb3fe7cdbacd444872b5460b262d..83369c4c4b26f710105b25fbece20a038cc16266 100644
--- a/resources/vector/outfit/dildo gag.svg	
+++ b/resources/vector/outfit/dildo gag.svg	
@@ -3,7 +3,7 @@
 <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
 	 viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
 <style type="text/css">
-	.st0{display:none;opacity:0.24;fill:#BF2126;enable-background:new    ;}
+	.st0{display:none;opacity:0.24;fill:#BF2126;enable-background:new	;}
 	.st1{fill:#070505;}
 	.st2{fill:#BF2126;}
 </style>
diff --git a/resources/vector/outfit/gag.svg b/resources/vector/outfit/gag.svg
index 5efbe23cf029cb3fe7cdbacd444872b5460b262d..83369c4c4b26f710105b25fbece20a038cc16266 100644
--- a/resources/vector/outfit/gag.svg
+++ b/resources/vector/outfit/gag.svg
@@ -3,7 +3,7 @@
 <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
 	 viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
 <style type="text/css">
-	.st0{display:none;opacity:0.24;fill:#BF2126;enable-background:new    ;}
+	.st0{display:none;opacity:0.24;fill:#BF2126;enable-background:new	;}
 	.st1{fill:#070505;}
 	.st2{fill:#BF2126;}
 </style>
diff --git a/resources/vector/outfit/tail plug.svg b/resources/vector/outfit/tail plug.svg
index e58c80684b5e567e5a6a824b73578a6e43adc18e..1e90e902f711df8cca2adf1026e13e2c475487b3 100644
--- a/resources/vector/outfit/tail plug.svg	
+++ b/resources/vector/outfit/tail plug.svg	
@@ -13,1427 +13,1427 @@
    sodipodi:docname="tail plug.svg"
    inkscape:version="0.92.2 (5c3e80d, 2017-08-06)">
   <metadata
-     id="metadata708">
-    <rdf:RDF>
-      <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>
+	 id="metadata708">
+	<rdf:RDF>
+	  <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="defs706" />
+	 id="defs706" />
   <sodipodi:namedview
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1"
-     objecttolerance="10"
-     gridtolerance="10"
-     guidetolerance="10"
-     inkscape:pageopacity="0"
-     inkscape:pageshadow="2"
-     inkscape:window-width="640"
-     inkscape:window-height="480"
-     id="namedview704"
-     showgrid="false"
-     inkscape:zoom="0.39333333"
-     inkscape:cx="21.610169"
-     inkscape:cy="300"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="0"
-     inkscape:current-layer="svg702" />
+	 pagecolor="#ffffff"
+	 bordercolor="#666666"
+	 borderopacity="1"
+	 objecttolerance="10"
+	 gridtolerance="10"
+	 guidetolerance="10"
+	 inkscape:pageopacity="0"
+	 inkscape:pageshadow="2"
+	 inkscape:window-width="640"
+	 inkscape:window-height="480"
+	 id="namedview704"
+	 showgrid="false"
+	 inkscape:zoom="0.39333333"
+	 inkscape:cx="21.610169"
+	 inkscape:cy="300"
+	 inkscape:window-x="0"
+	 inkscape:window-y="0"
+	 inkscape:window-maximized="0"
+	 inkscape:current-layer="svg702" />
   <g
-     id="g700">
-    <path
-       fill="#A0A2AC"
-       d="M367.43 287.216l1.134.332c.163.01.324-.01.48-.063 2.514 1.734 5.5 2.776 7.562 5.168.898 1.84 3.02 2.154 4.396 3.48 1.625 1.562 3.303 3.072 4.822 4.746 1.072 1.842 2.577 3.3 4.197 4.638.933.77 1.832 1.592 2.314 2.684 1.604 3.617 4.195 6.617 6.164 10.002.192.348.326.712.43 1.093.22 1.95 1.73 3.535 1.602 5.587-.286.52-.66.89-1.32.73-1.468-1.123-1.87-2.974-2.97-4.347-2.664-.894-2.35-3.748-3.513-5.606-1.612-2.576-3.398-4.895-5.61-6.932-.162-.188-.294-.4-.406-.62-.347-.724-.527-1.556-1.34-1.97-.212-.127-.395-.278-.572-.446-1.683-1.438-3.568-2.55-4.186-5.06-.336-1.373-2.016-.728-3.146-.32-.88 1.072-1.7.75-2.48-.114-.782-.87-1.537-1.77-2.278-2.678-1.23-1.395-1.853-3.338-3.925-3.986-.823-.26-.937-1.287-1.093-2.107-.413-1.154-.504-2.36-.583-3.572.03-.252.14-.464.322-.64z"
-       id="path6" />
-    <path
-       fill="#8F929C"
-       d="M366.254 285.4c.394.604.782 1.212 1.177 1.816l-.096.137c-1.13.6-2.104-.23-3.15-.33-.897-.425-1.887-.246-2.818-.435-1.815-.723-3.83-.39-5.66-1.026-.23-.017-.462-.062-.688-.117-.63-.15-1.253-.366-1.92-.297-.194.052-.393.11-.57.2-.23.27-.17.58-.122.89.108 1.19 1.387 1.966 1.146 3.273-2.246 1.833.23 2.86.73 4.223.486.776.943 1.563.922 2.524-1.124 2.34-1.985-.044-2.98-.16-.942-.438-1.627-1.188-2.316-1.935-.17-.188-.313-.395-.438-.612-1.108-2.087-2.466-3.982-4.264-5.538-1.296-1.198-2.26-2.735-3.793-3.695-.535-.482-.855-1.055-.777-1.8.338-1.183 1.328-1.255 2.303-1.37 1.3-.025 2.56.203 3.762.703.944.585 1.776-.145 2.665-.232.985.096 1.863.676 2.886.61 2.99 1.042 6.267.274 9.23 1.446 1.7.256 3.21 1.06 4.77 1.725z"
-       id="path8" />
-    <path
-       fill="#A6A9B2"
-       d="M368.354 291.063c.068 1.496.806 2.41 2.333 2.52 2.254.167 1.243 2.81 2.734 3.538-.064 1.605-.27 3.044-2.488 2.108-.756-.593-1.858-.56-2.52-1.39-.252-.175-.196-.222-.033.022.356.542.876.837 1.437 1.097.775.875 1.855 1.45 2.45 2.502.188.37.266.766.224 1.182-.096.42-.32.73-.742.87-3.078-.505-4.318-3.458-6.586-5.073-1.516-1.08-2.867-2.523-4.33-3.765-.855-.996-1.57-2.043-1.23-3.466.753-.886 1.853.092 2.668-.5 1.978.923 4.054.25 6.084.353z"
-       id="path10" />
-    <path
-       fill="#9D9FA9"
-       d="M377.098 300.132c-.104-.608-.5-1.298.128-1.774.473-.36.765.273 1.14.458.537.265 1.304 1.59 1.315-.384.006-.596.72-.182 1.064.04.61.39.5 1.08.694 1.665.466 1.417.213 3.363 2.632 3.538.736.052 1.235 1.254 1.433 2.188.344 1.408.344 1.408-.896 2.62-.006.007-.053-.026-.082-.044-.884 1.966-.884 1.966-2.793 1.567-1.227-.223-2.092-.844-2.354-2.12.12-.522.1-.98-.59-1.094-.688-.382-1.108-1.005-1.55-1.618-1.047-1.652-.738-3.345-.14-5.043z"
-       id="path12" />
-    <path
-       fill="#B0B2BA"
-       d="M377.098 300.132c.89 1.548-.29 3.415.764 4.938.563.742 1.184 1.604.287 2.38-.71.616-1.585.105-2.31-.294-1.847-1.014-3.086-2.543-3.78-4.524-.096-.354-.192-.708-.29-1.062.01-.896-1.055-1.39-.89-2.35.06-.108.118-.217.18-.324.022-.723 2.458 1.304 1.182-1.093-.485-.915.813-.364 1.185-.684 1.436.74 1.37 3.322 3.67 3.012z"
-       id="path14" />
-    <path
-       fill="#9A9DA8"
-       d="M396.873 320.51c.813 1.69 2.06 3.16 2.51 5.03 1.16.38 2.226.968 2.51 2.228.327 1.466 1.608 2.117 2.396 3.185.57 1.104 1.025 2.258 1.316 3.47-.416.75-.07 1.532-.088 2.304-2.166 1.137-3.28-.41-4.48-1.746-1.617-1.214-2.41-2.76-2.484-4.862-.097-2.77-1.543-5.176-2.604-7.672-.434-.695-.854-1.442-.213-2.176.357-.405.8-.055 1.136.24z"
-       id="path16" />
-    <path
-       fill="#999CA7"
-       d="M381.958 309.674c.157-.426.036-1.076.096-1.543.063-.546.234-1.065.654-1.446.396-.363.917-.543 1.428-.68.363-.096.89-.31 1.27-.215.35.087.695.466.915.728.25.295.71.818.817 1.188.05.18.103.354.152.533 1.05 1.62 3.286 2.593 2.773 5.068-2.19.4-4.396 1.254-6.576-.086-.495-1.187-2.154-1.876-1.53-3.548z"
-       id="path18" />
-    <path
-       fill="#9699A4"
-       d="M389.786 313.28c-.832-1.68-1.662-3.36-2.493-5.042 4.168 1.998 5.285 6.504 7.984 9.71-1.44 2.083 1.506 1.436 1.6 2.562-1.274.265-1.276.295-.103 1.74-3.666.95-5.245-.247-4.977-3.73.104-1.368-.945-2.334-1.38-3.52-.162-.19-.3-.4-.42-.62-.163-.35-.18-.726-.21-1.1z"
-       id="path20" />
-    <path
-       fill="#8D909B"
-       d="M368.354 291.063c-2.095 1.71-4.186 1.594-6.27-.025-.202-.184-.27-.41-.217-.674 1.23-1.05.413-3.35 2.405-3.933 1.183-.228 2.13.314 3.06.925 1.302.97.74 2.457 1.022 3.708z"
-       id="path22" />
-    <path
-       fill="#DEDFE2"
-       d="M404.692 334.94c-.107-.466-.244-.927-.437-1.362-.356-.805-.52-1.558-.713-2.4-.165-.713-.678-1.246-1.1-1.855-.974-1.402-1.893-2.88-2.144-4.6-.763-1.69-2.128-3.145-1.948-5.184 2.077-.214 2.06 1.77 2.95 2.803.146.222.27.453.38.692.545 1.188 1.437 2.302 2.066 3.46.438.81 1.02 1.66 1.332 2.525.262.728.39 1.48.688 2.23.285.713.604 1.506.89 2.25.866 2.245 1.603 4.325 1.86 6.75.073.68.226 1.46-.503 1.595-.688.125-1.29-.365-1.646-.904-.813-1.25-1.04-2.882-1.34-4.314-.108-.55-.203-1.124-.335-1.685z"
-       id="path24" />
-    <path
-       fill="#9699A4"
-       d="M400.303 324.72c1.194 2.144 2.955 3.987 3.444 6.503-2.447-1.133-2.597-4.03-4.368-5.684l.923-.82z"
-       id="path26" />
-    <path
-       fill="#9D9FA9"
-       d="M387.137 307.705c-.814-.375-1.314-1.03-1.637-1.842 1.89-.58 1.326 1.02 1.637 1.842z"
-       id="path28" />
-    <path
-       fill="#B9BBC3"
-       d="M361.2 294.135c4.054 2.414 6.944 6.156 10.48 9.164 2.33 1.347 2.297 1.915-.27 4.817-.264-.035-.485-.148-.674-.338-.15-.212-.253-.446-.31-.698.257-1.076-.693-1.51-1.185-2.188-.74-.64-.84-2.23-2.397-1.615.773 1.552 3.187 1.327 3.544 3.304-.525 1.185-1.432 1.416-2.58 1.033-.22-.13-.427-.3-.485-.545-.092-.383.207-1.385-.636-.34-.243.032-.48.008-.71-.064-.77-.42-1.383-1.313-2.46-.8-.25.042-.493.032-.74-.003-2.563-.7-4.338-2.473-5.942-4.537.966 1.37 1.17 2.906 1.52 4.393.916 2.675 1.884 5.34 2.288 8.14.13.916.697 2.574-1.45 2.182-1.037-1.41-1.102-3.153-1.63-4.74-.063-.307-.094-.614-.085-.928-.888-3.61-2.45-6.973-3.898-10.375-.577-1.208-.888-2.515-1.353-3.766-.034-.302.016-.587.147-.86 1.274-.722 1.144 2.115 2.568 1.017.56-.603 1.173-.437 1.797-.137.2.162.36.363.482.59.41 1.425 1.14 2.414 2.833 2.062.418-.894.124-1.782.013-2.66-.117-.984-.01-1.816 1.132-2.11z"
-       id="path30" />
-    <path
-       fill="#CFCED1"
-       d="M361.933 290.51l.15.527c-.702 2.432-1.516-.035-2.27.05-1.38.073-1.804-1.277-2.76-1.837-1.286-1.176-2.067-2.558-1.78-4.373 1.97.62 4.295-.5 6.044 1.224.277 1.46.2 2.97.616 4.41z"
-       id="path32" />
-    <path
-       fill="#C7C9CF"
-       d="M355.274 284.88c.737 1.323 1.48 2.65 2.216 3.974.568 1.49-.384 2.092-1.51 2.598-1.594.254-2.367-.684-2.89-1.99.05-1.252-1.77-1.648-1.398-3.045.33-.588-.315-1.506.63-1.887l.534-.14c.34.185.826.194.854.7.178.11.146-.166.27-.172.442-.11.865-.256 1.294-.04z"
-       id="path34" />
-    <path
-       fill="#A6A9B2"
-       d="M361.933 290.51c-2.506-1.148-1.226-2.825-.613-4.41 1.028-.268 2.067-.643 2.957.33-.267.94-.73 1.874-.753 2.818-.032 1.248-.805 1.174-1.59 1.263z"
-       id="path36" />
-    <path
-       fill="#B0B2BA"
-       d="M353.09 289.46c.932.474 1.58 1.437 2.71 1.565 2.507 1.14 2.652 1.89.785 3.97-.98.036-1.327-.747-1.772-1.387-.622-.892-.762.11-1.115.267-1.256-.256-1.396-1.623-2.107-2.387-.842-.893.662-1.54 1.5-2.027z"
-       id="path38" />
-    <path
-       fill="#C7C9CF"
-       d="M353.697 293.877c-.08-.844-.932-2.008.195-2.422 1.228-.453 1.24.93 1.563 1.723.237.585.536 1.146.812 1.72.587.41.75.935.417 1.59-.58-.032-1.156-.063-1.734-.097-.705-.697-1.042-1.575-1.253-2.513z"
-       id="path40" />
-    <path
-       fill="#9EA0AA"
-       d="M347.14 286.772c-1.043-.502-1.88-1.02-2.145-2.094-.113-.482.272-1.207.54-1.01.836.62 1.5 1.477 2.167 2.29.058.072-.352.52-.56.814z"
-       id="path42" />
-    <path
-       fill="#CFCED1"
-       d="M352.323 284.53c-.21.627-.423 1.256-.632 1.885-.083-.672-1.087-1.123-.562-1.9.283-.418.797-.255 1.195.015zM353.677 285.308c-.273-.306-.55-.612-.82-.918.864-.132 1.686-.034 2.418.487-.534.145-1.067.287-1.598.43z"
-       id="path44" />
-    <path
-       fill="#C2C4CA"
-       d="M371.226 307.992c1.058-.834-.677-3.056 1.623-3.274-.393-.472-.782-.944-1.173-1.417l.384-.667c1.7.89 2.314 3.05 4.24 3.664.562.18 1.012 1.088 1.636.555.53-.455.02-1.18-.074-1.78.5.44.997.874 1.496 1.312.177.082.276.197.306.352.03.16.025.244-.013.256.222 2.227 1.662 3.787 3.044 5.324.604.674 1.408 1.152 1.72 2.066.147.706.26 1.422.524 2.102.09.256.07.563.23.764.615.77 2.103 1.347 1.202 2.543-.815 1.093-1.933-.013-2.904-.27-.355-.187-.665-.432-.94-.723-.958-1.02-1.69-2.26-2.62-3.31-.473-.535-.977-1.05-1.52-1.513-.22-.183-.548-.545-.83-.582-.247-.03-.677.205-.864.354-.243.188-.323.47-.606.625-.414.116-.804.026-1.176-.16-.458-.28-.843-.647-1.204-1.04-.46-.63-1.017-1.193-1.362-1.906-.677-.99-1.41-1.96-1.118-3.272z"
-       id="path46" />
-    <path
-       fill="#C8C8CA"
-       d="M356.68 296.49c-.138-.532-.277-1.064-.417-1.594 1.343-1.47.92-2.728-.463-3.87.652-.652 1.53-1.13 1.688-2.172 1.314.182 1.516 1.527 2.326 2.232.46 1.017.922 2.03 1.384 3.05-.42.72-.604 1.325-.177 2.247.476 1.02.64 2.316-.662 3.12-1.553-.29-2.723-1.126-3.52-2.485-.055-.177-.105-.356-.157-.53z"
-       id="path48" />
-    <path
-       fill="#B0B2BA"
-       d="M369.454 299.338c-1.5-.324-1.678-1.928-2.71-2.754 1.32 1.047 3.488.438 4.314 2.313l-.006.01c-.41.593-1.022.445-1.598.43z"
-       id="path50" />
-    <path
-       fill="#D5D4D7"
-       d="M369.454 299.338c.34-.86 1.017-.483 1.602-.432.452.635.93 1.254 1.35 1.907.56.862-.102.77-.633.758-.91-.605-1.88-1.142-2.32-2.232z"
-       id="path52" />
-    <path
-       fill="#B0B2BA"
-       d="M383.926 314.86c-.2-.718-.427-1.437-1.232-1.696-3.156-1.02-2.532-3.965-3.195-6.252.185.076.267.18.247.313-.018.133-.052.205-.1.22.437 1.085 1.397 1.638 2.312 2.232.573 1.216 2.028 1.9 2.07 3.438.565.617 1.05 1.23-.104 1.746z"
-       id="path54" />
-    <path
-       fill="#999CA7"
-       d="M379.646 307.44c-.05-.177-.1-.353-.147-.53-.048-.176-.096-.354-.142-.53.524.233 1.302-.05 1.55.753-.422.1-.842.203-1.262.306z"
-       id="path56" />
-    <path
-       fill="#9D9FA9"
-       d="M383.926 314.86c.438-.558.256-1.152.104-1.745 1.104.332 2.563 1.23 1.738-1.645.756 1.422 1.974 1.404 3.37 1.64.906.155 1.3.854 1.846 1.54.724.91 1.45 1.813 2.12 2.762.654.93 1.336 1.84 2.072 2.69 1.258 1.458 2.075 3.19 2.977 4.87.813 1.518 1.766 3.22 1.636 5.002-.162 2.266.228 3.176 1.885 4.094-.235.535-.266 1.063.066 1.57 1.354 2.064.606 3.236-1.608 3.78-.606-.08-.946-.44-1.06-1.03.232-1.076.37-2.137-.772-2.832-1.465-.887-1.91.916-2.96 1.14-.902.175-1.667-.01-2.19-.837-.22-.54-.215-1.056.156-1.52.444-.3.67-.6-.06-.85-1.147-.395-2.17-.937-2.572-2.2.296-2.88 1.76-.854 2.635-.697-1.266-1.555-2.957-2.938-3.68-5.055-.14-.896-.398-1.822.465-2.52.368-.198.695-.198.233-.864-1.607-2.324-3.887-3.896-5.972-5.692-.758-.366-.91-.898-.43-1.6z"
-       id="path58" />
-    <path
-       fill="#BAB9BD"
-       d="M400.168 339.05c.41-.843.894-1.78 1.03-2.73.136-.893-.454-1.853.457-2.56 1.218-.943 3.575 1.326 4.27 2.203 1.055 1.332 1.746 3.193 1.372 4.896-.435 1.966-1.085 3.956.802 5.587.174.19.31.412.414.647.153 1.21 1.618 2.146 1.313 3.192-.576 1.99-.133 3.865-.146 5.802-.02 1.92-1.46 2.438-2.94 1.13-1.29-1.143-2.848-1.897-4.064-3.105-.505-2.43-3.324-3.586-3.446-6.23.075-2.39 1.166-3.155 3.376-1.745.283-1.605-.438-2.814.008-4.1.35-1.004-.43-1.438-1.3-1.676-.677-.177-1.613-.352-1.146-1.31z"
-       id="path60" />
-    <path
-       fill="#9C9FA8"
-       d="M359.784 316.244c.544-3.705-1.515-6.842-2.252-10.27.833-1 1.724-.652 2.618-.11 1.41.847 2.56 2.878 3.38 4.25.895 1.482 1.936 2.91 2.772 4.415.53.95 1.39 1.63 2.09 2.445.785.908 1.943 2.035 1.993 3.316.034.92-.51.98-1.028 1.494-.354.354-.447.916-.504 1.394-.194 1.608.672 4.826-1.68 5.162-.988.142-2.643-1.015-3.48-1.45-.748-.388-1.5-.86-2.33-1.062-.428-.103-.67-.07-1.063.03-.272.072-.882.462-1.096.064-1.06-1.984-.4-4.102-.47-6.158.564-1.112.07-2.535 1.05-3.52z"
-       id="path62" />
-    <path
-       fill="#9B9EA7"
-       d="M368.05 317.428c-1.018-1.715-3.793-2.104-3.568-4.748 1.3-1.28 2.415-.63 3.5.334.066.06.108.145.162.217-.01-.163-.146-.27-.198-.43-.134-.368-.13-.72-.02-1.075.84-.836.158-1.43-.34-2.055-.403-.807-.605-1.61.016-2.404.948 0 1.834-.238 2.654-.716.33-.054.44.27.68.384l.14.54c-.28 1.112.512 1.872.98 2.68.553.94.375 1.706-.104 2.53-.15.34-.313.672-.458 1.016-1.146 1.754-.228 3.61-.265 5.422-.673 1.74-1.495 2.326-2.475.23-.28-.61-.956-1.11-.704-1.924z"
-       id="path64" />
-    <path
-       fill="#BFC1C7"
-       d="M368.492 312.73c.193.583.386 1.173.823 2.52-1.576-1.982-2.964-2.867-4.833-2.57-.987-.46-2.19-.674-1.542-2.342.295-.756-.615-1.242-1.173-1.635-.83-.588-1.643-1.137-1.813-2.234.23-.306.854-.18.885-.378.353-2.27 1.5-.566 2.31-.484.178-.05.355-.096.53-.143 1.09-.25 1.71.68 2.563 1.02l.53-.143c.81 2.066.543 4.42 1.72 6.387z"
-       id="path66" />
-    <path
-       fill="#C1C3C9"
-       d="M363.15 305.607c-.59.91-1.023-.498-1.582-.11-.156.84 1.054 1.247.584 2.51-.792-.556-1.495-1.045-2.197-1.536-.733-.52-1.557-.618-2.423-.493-.538-1.998-1.077-3.997-1.692-6.288 2.62 1.97 4.56 4.466 7.31 5.917z"
-       id="path68" />
-    <path
-       fill="#848893"
-       d="M371.306 312.55c.298-1.028.82-2.003-.146-3.05-.46-.498-.545-1.326-.085-2.023.052.172.103.344.15.516.64.98 1.28 1.95 1.92 2.927-.306 1.038.375 1.522 1.11 1.98.27.31.546.612.816.922-1.57 1.87-2.482 1.563-3.764-1.273z"
-       id="path70" />
-    <path
-       fill="#90939E"
-       d="M368.492 312.73c-2.194-1.692-2.037-4.02-1.72-6.387l.845-.255c-.006.395-.012.785-.016 1.177l.72 2.657c.96.648.154 1.18-.11 1.748.09.35.186.705.282 1.06z"
-       id="path72" />
-    <path
-       fill="#7F838F"
-       d="M356.838 297.018c1.48.398 2.594 1.31 3.52 2.486.2.455.648 1.598.177 1.26-1.386-.994-4.1-.967-3.697-3.746z"
-       id="path74" />
-    <path
-       fill="#C9C9CB"
-       d="M370.934 306.935c-.226-.128-.45-.257-.68-.385-1.1-.577-2.047-1.396-3.278-1.782-.92-.29-1.928-.81-1.206-2.152 1.676-.205 2.677 1.056 3.914 1.804.71.69 1.048 1.57 1.25 2.515z"
-       id="path76" />
-    <path
-       fill="#737784"
-       d="M369.684 304.418c-1.48-.22-2.84-.7-3.914-1.803 2.31-1.582 2.99.373 3.914 1.803z"
-       id="path78" />
-    <path
-       fill="#B2B4BC"
-       d="M366.244 306.486c-1.074.21-1.856-.308-2.563-1.02.913-1.183 1.266-1.044 2.564 1.02z"
-       id="path80" />
-    <path
-       fill="#8F929C"
-       d="M354.07 299.492c-1.236-.888-1.04-2.383-1.52-3.592 1.24.89 1.028 2.39 1.52 3.592z"
-       id="path82" />
-    <path
-       fill="#CFCED1"
-       d="M354.617 287.275c-1.192-.282-1.73-.626-1.523-1.5.046-.19.384-.312.586-.467.25.53.504 1.06.937 1.967z"
-       id="path84" />
-    <path
-       fill="#686D7B"
-       d="M368.06 317.434c.22-.398.558-.705.974-.932.79-.426 1.666-.69 2.476-1.074.813-.39 1.71-.41 2.577-.628.552-.138 1.017-.458 1.547-.646.22-.076.438-.03.66-.095 1.11-.443 1.428.467 1.896 1.112.802 2.897 1.854 5.637 4.242 7.696 1.146.99 2.72 2.232-.2 3.152-.548.174-.703 1.018-.802 1.658-.02.98-.003 1.945.853 2.646.623.678 1.313 1.3 1.75 2.11.453.835.82 1.785 0 2.522-.848.763-1.71.24-2.438-.383-.418-.354-.878-.666-1.226-1.1-.244.287-.145-1.502-.648-.072-.378 1.064-.167 3.013-2.36 2.16-.336 0-.52.237-.714.474-.474.52-1.092.85-1.57.193-.756-1.03-1.984-.594-2.884-1.12-.23-.142-.43-.316-.604-.526-.318-.464-.477-.978-.437-1.537.04-.265.142-.51.283-.728 1.252-.73.995-1.746.47-2.762-1.332-2.566-1.092-5.44-1.638-8.164-.014-.064-.28-.2-.336-.243l-.363-.275c-.205-.157-.405-.32-.598-.493-.3-.27-.587-.557-.813-.89-.345-.513-.445-1.08-.265-1.67.042-.13.098-.263.166-.386z"
-       id="path86" />
-    <path
-       fill="#6A6E7C"
-       d="M377.78 315.373c-.5-.438-.995-.873-1.49-1.312-.355-1.615-2.174-2.843-1.298-4.794.577 1.576 1.58 2.554 3.162 3.384 2.324 1.223 3.756 3.536 5.038 5.834-.262 1.467 1.217 1.852 1.784 2.807.538.907 1.52 1.58.993 2.835-.19.197-.42.326-.68.398-2.364-.978-4.604-2.138-5.687-4.658-.633-1.484-1.1-3.04-1.824-4.492z"
-       id="path88" />
-    <path
-       fill="#979AA4"
-       d="M384.36 316.46c1.72.41 3.213 1.206 4.478 2.466 1.222 1.213 1.788 2.932 3.44 4.06l-2.037.444c-3.935.36-5.767-.95-6.376-4.557.778-.004 1.317.893 2.31.574-.158-1.29-2.703-1.174-1.814-2.986z"
-       id="path90" />
-    <path
-       fill="#6A6F7C"
-       d="M375.748 314.21c.276 1.448 1.362 2.677 1.152 4.257-3.737 1.037-6.09-1.023-5.983-5.242l.39-.676c1.303.282 1.74 3.145 3.772 1.267l.668.392z"
-       id="path92" />
-    <path
-       fill="#B9B8BC"
-       d="M383.864 318.873c1.07 2.994 3.624 3.916 6.377 4.557-.457.56.617 1.215-.104 1.76-2.582 1.203-3.713.91-4.3-1.115-.306-1.516-1.604-2.328-2.52-3.375-.736-.84-1.02-1.414-.125-2.213l.674.386z"
-       id="path94" />
-    <path
-       fill="#6A6F7C"
-       d="M374.257 312.895c-1.396-.068-1.474-.203-1.11-1.977l1.11 1.977z"
-       id="path96" />
-    <path
-       fill="#9FA1AB"
-       d="M400.16 339.047c.654 1.098 2.227-.908 2.73.826.272.938 2.41 1.3.454 2.992-.707.608.73 3.012.293 4.674-1.29.747-2.846-3.372-3.983.214l-.372.09c-.947-.098-1.82-.285-1.81-1.525.324-1.196 1.194-1.712 2.574-1.888-1.063-1.012-2.024-1.883-3.168-2.55-.354-.25-.646-.556-.89-.917-.544-1.238-1.24-2.45-.73-3.887 1.884-1.688 2.928-.104 4.082 1.055l.82.914z"
-       id="path98" />
-    <path
-       fill="#B1B3BB"
-       d="M381.26 330.455c-1.24-.63-.436-1.805-.706-2.688 1.748-3.103 4.074-1.543 6.308-.79.805.202 1.398.646 1.692 1.444.52 2.453 2.478 3.695 4.312 5.01.42.3 1.03.322.925 1.05-.084.406-.164.814-.246 1.22.016 1.438-.543 1.684-1.813 1.024-1.46-.756-2.29-2.274-3.79-2.946-1.338-.96-2.178-2.45-3.67-3.283-1.067-.59-1.99-.884-3.01-.04z"
-       id="path100" />
-    <path
-       fill="#C1C0C3"
-       d="M388.274 333.11c1.823.19 2.287 2.11 3.688 2.897.827.467 1.18.488 1.578-.31l1.878.63c.164.067.242.17.234.297-.007.13-.03.2-.074.21l1.14 4.282c.346.403.126.71-.275.692-2.227-.077-4.277-1.762-4.986-4.02-.357 1.717-.357 1.717-2.265 1.184-.196-.157-.353-.354-.48-.567-.35-.73-.468-1.604-1.314-2.013-1.607-1.6-.02-2.347.876-3.28z"
-       id="path102" />
-    <path
-       fill="#B1B3BB"
-       d="M385.835 324.074c1.05 1.85 2.94.446 4.3 1.115 1.528 1.955 2.437 4.503 5.142 5.36.482.154.57.74.4 1.17-.226.573-.742.43-1.152.22-.812-.417-1.59-.895-2.396-1.325-.61-.33-1.063-.334-.945.57-1.582-.01-2.536-.765-2.798-2.347.004-1.21-1.15-1.384-1.802-2.01-.72-.326-1.593-.484-2.085-1.1-.757-.933-.576-1.605.802-1.544.177-.032.354-.073.533-.11z"
-       id="path104" />
-    <path
-       fill="#6C707E"
-       d="M395.582 336.836c-.057-.17-.106-.34-.16-.508.51-1.006.774-2.478 2.148-2.4 1.223.066 1.756 1.395 2.518 2.29 1.084 1.278-.194 1.403-.75 1.913-1.57.49-2.304-1.444-3.756-1.294z"
-       id="path106" />
-    <path
-       fill="#D1D2D7"
-       d="M388.724 328.416c.27 1.408 1.387 2.066 2.46 2.77 1.034 1.588 3.21 1.518 4.37 2.982-.52.623-1.22.04-1.77.313-2.685-.142-3.478-3.03-5.68-3.95-.484-.203-.35-1.315.09-1.977.114-.3.286-.358.53-.137z"
-       id="path108" />
-    <path
-       fill="#9699A4"
-       d="M390.605 314.2c.146.8.654 1.622-.178 2.583-.62-1.056-.27-1.822.178-2.582z"
-       id="path110" />
-    <path
-       fill="#BBBABD"
-       d="M402.974 353.717c1.978.883 3.788 1.998 5.164 3.717.99-1.098 1.344-2.22.342-3.55-.348-.462-.137-.503.774-2.29.243-.477-.172-1.39-.464-2.02-.355-.77-1.438-1.285-.722-2.377.453-.53-.665-1.604.498-1.785.86-.133 1.317.762 1.435 1.412.4 2.27 1.662 4.215 2.254 6.403.672 1.906.286 3.98.957 5.886-.062 1.272.066 2.524.488 3.74.396 1.143.824 2.717.17 3.407-1.143 1.217-.433 2.515-.826 3.69-1.275 1.765-1.99.36-2.682-.537-1.604-2.092-2.936-4.354-3.964-6.784-.616-1.174-1.387-2.25-2.02-3.407-.285-1.73-1.56-2.955-2.323-4.44-.063-.597-.19-1.246.53-1.527.326-.125.364.215.39.46z"
-       id="path112" />
-    <path
-       fill="#9FA1AB"
-       d="M402.974 353.717c-1.01.213-.13.81-.246 1.205.534 2.174-1.4 3.205-2.2 4.762-.223.098-.454.104-.686.02-.387-.528-.86-.757-1.506-.437-1.17-.063-1.853-.84-2.482-1.688-.353-.708-.896-1.36-.64-2.24.578-.955 2.277-1.045 2.036-2.642.45-1.563 1.31-1.49 2.537-.117-.483-1.44-1.23-2.16-1.73-3.027-.33-.57-.62-1.23-.167-1.8.508-.64 1.167-.145 1.76 0 .457 2.352 3.65 3.177 3.324 5.964z"
-       id="path114" />
-    <path
-       fill="#CAC9CC"
-       d="M411.14 353.2c-.91-1.587-.898-3.485-1.993-5.032-.617-.873-1.53-1.492-2.025-2.463-.438-.854-.31-1.775-.146-2.685.08-.442.078-2.176.295-2.45.173-.218.397-.33.672-.345.713.22 1.07.822 1.506 1.353.232.354.377.752.497 1.158.12.403.213.813.258 1.235.246 2.105 1.375 3.95 1.75 6.018.173.928.9 2.823.185 3.645-.567.638-.695.103-1-.434z"
-       id="path116" />
-    <path
-       fill="#A0A2AC"
-       d="M407.396 340.53c1.546 1.93-.49 4.165.525 6.14-1.425-.186-2.468-2.477-1.917-4.366.17-.582.577-1.1.878-1.642.128-.217.303-.252.516-.13z"
-       id="path118" />
-    <path
-       fill="#A1A3AD"
-       d="M420.88 385.52c.208.305.415.61.626.916.604.44.48.924.087 1.43-.796.582-1.572.375-2.346-.057-.368-.157-.687-.388-.96-.677-.512-.648-.788-1.465-1.425-2.035-.382-.6-.896-1.08-1.435-1.543-.554-.572-.854-1.244-.813-2.05.27-.96.354-1.886-.514-2.632-.438-.496-.81-1.027-1.02-1.66-.416-1.006-.45-2.088-.524-3.145-.14-1.855.5-2.82 2.506-1.855.844.613.863 1.943 2.006 2.297.075.16.146.326.205.492 1.278 1.488.17 3.885 1.97 5.174.1.773-.732 1.56.024 2.326.59.732.56 1.777 1.23 2.47.132.182.257.366.382.548z"
-       id="path120" />
-    <path
-       fill="#BFBEC1"
-       d="M420.504 384.975c-.863-.598-1.35-1.387-1.23-2.47 1.094.48.898 1.606 1.23 2.47z"
-       id="path122" />
-    <path
-       fill="#C9C8CB"
-       d="M393.98 432.707c-.32-.484-.64-.976-.96-1.46-2.63-1.413-4.52-3.353-4.623-6.55-.007-.25.104-.53-.16-.734-2.396-1.855-2.407-1.855-2.623-3.91-.21-2.008-1.388-3.217-3.314-3.256-1.52-.03-3.372-.734-4.246-2.035-.604-.902-1.07-2.52-.875-3.596.103-.58.336-.912.954-.916.51-.004.813.354 1.235.54.534.232 1.166.317 1.744.397 2.367.336 4.744.132 7.11.396 1.763.19 3.33 1.095 5.033 1.513.69.17 1.537.063 2.112.48.723.52 1.304 1.593 1.77 2.33.1.158.21.33.266.51.038.122.03.23.106.34.116.16.304.218.396.413.073.147.107.325.107.493-.002.35-.15.633-.33.918-.23.364-.48.48-.563.92-.09.47-.18.937-.264 1.405-.17.946-.315 1.9-.385 2.862-.14 2.02-.332 4.063-.11 6.086.062.53 1.097 4.17.337 4.373-1.394.376-1.94-.78-2.72-1.52z"
-       id="path124" />
-    <path
-       fill="#676B79"
-       d="M396.705 434.227c-.23-.928-.565-1.803-1.262-2.498-.185-.09-.282-.21-.288-.363-.008-.156.015-.242.06-.26 1.485-.683 2.328.837 3.556 1.042.48 1.163 2.087 1.962 1.157 3.58-.17.036-.34.06-.515.064-.55-.615-1.28-.914-2.02-1.21-.23-.12-.458-.24-.687-.357z"
-       id="path126" />
-    <path
-       fill="#9B9EA9"
-       d="M397.39 434.582c1.085-.285 1.784.076 2.02 1.21l-1.896-.622c-.04-.197-.083-.393-.125-.588z"
-       id="path128" />
-    <path
-       fill="#676B79"
-       d="M401.693 438.066l-1.16-1.98c1.1-.893 1.958.058 2.9.36 1.02.502 1.798 1.65 3.174 1.165 1.28-.4.146-2.52 1.852-2.62.352.138.624.373.888.638 1.602 1.586 1.623.074 1.883-.97 2.625-.55 2.483 2.02 3.595 3.177.435.522 1.04.87 1.45 1.424.4.59.57 1.233.44 1.948-.073.256-.212.48-.394.676-.805.56-1.683 1.06-1.922 2.137-.237.487-.58.86-1.092 1.064-1.877.438-3.24-.714-4.718-1.52-.82-.925-2.116-1.255-2.863-2.273-.77-.32-1.33-.946-2.02-1.393-.2-.12-.387-.258-.562-.407-.4-.416-.99-.604-1.322-1.104l-.127-.32z"
-       id="path130" />
-    <path
-       fill="#BEC0C6"
-       d="M403.17 437.074c-.882-.326-1.76-.656-2.64-.984-.203-.12-.403-.238-.603-.36.317-1.388-1.907-1.642-1.396-3.118-.382-.237-.555-.592-.552-1.036.118-.595.464-.986 1.025-1.197.262-.063.522-.054.782.013 1.293.336 1.053 2.773 3.02 2.21.783.397 1.173 1.044 1.22 1.907-.288.85-.15 1.847-.856 2.564z"
-       id="path132" />
-    <path
-       fill="#7A7E8A"
-       d="M359.335 327.705c-.11-.572-.335-1.152.112-1.688 1.574-.897 1.246-2.47 1.438-3.896.15-1.163-.417-2.392.392-3.634 1.106.52 1.854 1.457 1.344 2.52-.372.78-.32-1.014-1.058-.528-.112 1.164.86 1.927 1.248 2.933 1.772 2.174.602 4.982 1.667 7.19.104-.747.058-1.757 1.188-2.103.438-.068.822.027 1.14.354.162.243.257.512.286.8-.122 2.076.642 4.138.024 6.238-.396 1.37-.883 2.59-2.31 3.168-1.08.257-2.042.634-2.632 1.71-.393.715-.96 1.452-1.943 1.027-.833-.358-1.172-1.213-1.135-2.028.06-1.405-.27-2.685-.858-3.924-.217-1.855.216-3.674.948-5.3.47-1.048.17-1.895.15-2.835z"
-       id="path134" />
-    <path
-       fill="#636876"
-       d="M366.908 328.018c.354-.096.708-.19 1.063-.287 1.154 1.583.89 3.68 1.928 5.302.12.228.206.468.276.705.2 1.262 1.406.328 1.935.873l.01.004c.898.688.5 1.484.103 2.193-.967 1.72-.86 3.45-.41 5.3.652 2.68-.766 4.43-3.62 4.733-2.96-.584-3.123-.865-2.01-3.48.172-.116.36-.213.544-.297.246-.245.197-.567.21-.88-.048-.822 1.8-.986.58-2.378-.84-.955-.736-2.425-.327-3.892.613-2.198-.594-4.432-.52-6.69.195-.375-.158-.866.238-1.205z"
-       id="path136" />
-    <path
-       fill="#898D98"
-       d="M369.55 333.588c-1.44-1.705-1.764-3.713-1.58-5.857-.043-.685-.09-1.368-.132-2.054-.035-.55-.21-1.053-.242-1.604-.066-1.107.32-2.215.872-3.158.312-.533 1.258-.947 1.807-.424.438.418.65 1.174.71 1.758.065.65.257 1.037.54 1.645.61 1.305.824 2.658.286 4.033-.144.367 1.266 2.023 1.362 3.53.12 1.878-1.03.814-1.63 1.023-1.084-.46-.855-1.732-1.553-2.474.415 1.283 1.38 2.615-.44 3.582z"
-       id="path138" />
-    <path
-       fill="#C2C4CA"
-       d="M365.98 328.836c-1.555 1.27-.276 2.78-.144 4.293-2.438-1.456-3.29-4.35-3.027-9.72 2.427-1.187 2.483 1.02 2.85 2.248.19.625.373 1.31.57 1.965.12.447.047.854-.25 1.213z"
-       id="path140" />
-    <path
-       fill="#686D7B"
-       d="M369.207 321.69c2.198 2.25-.907 2.175-1.42 3.235.295-1.723-2.48-2.19-1.686-4.12h.003c.66 1.613 2.307-.24 3.104.886z"
-       id="path142" />
-    <path
-       fill="#686D7B"
-       d="M366.104 320.807c-.354-.277-.72-.54-1.06-.838-.493-.433-1.576-.462-1.27-1.45.21-.68 1.13-.604 1.294-.172.318.832 2.82.804 1.036 2.46z"
-       id="path144" />
-    <path
-       fill="#898D98"
-       d="M365.98 328.836l.25-1.21.68.392-.247 1.207-.684-.39z"
-       id="path146" />
-    <path
-       fill="#848893"
-       d="M370.916 313.225c.737 3.182 2.747 4.91 5.983 5.242.046.176.094.354.144.53.25.444.163.694-.393.68l-.525.142c-.715.766-.032 1.518.02 2.274.048.625.223 1.31-.76 1.348-2.166-.836-2.858-3.21-4.634-4.457-1.043-1.95-1.228-3.878.166-5.76z"
-       id="path148" />
-    <path
-       fill="#BFC1C7"
-       d="M368.207 311.67c-.52-.62.51-1.14.113-1.748.65.203 1.74.102 1.75.887.018 1.176-1.31.37-1.863.86z"
-       id="path150" />
-    <path
-       fill="#979AA5"
-       d="M388.274 333.11c.095.647.097 1.2-.59 1.62-.91.555-.372.98.238 1.334.883.38.57 1.42 1.106 1.988l.15.53c.39.224.492.565.406.99-1.183.74-1.57-.204-2.037-.855.193.912.708 1.77 1.325 2.597.767 1.02 1.083 2.325.473 3.344-.717 1.188.3 2.4-.334 3.52-.575 1.022-.87 2.333-2.11 2.762-2.563-.73-2.562-3.246-3.035-5.082-.317-1.236-1.642-2.642.13-4.587 1.145-1.253-1.916-2.912-3.007-4.45-.165-.206-.298-.43-.407-.665.04-1.103-1.63-2.308.195-3.304.977.536 1.988 2.458 2.71 1.626 1.145-1.32-.794-2.176-1.63-3.125-.236-.266-.4-.596-.598-.895-.14-2.047.543-2.46 2.368-1.396 1.83 1.07 3.47 2.278 4.65 4.05z"
-       id="path152" />
-    <path
-       fill="#7D818D"
-       d="M368.45 346.453c2.52-.98 3.21-2.428 2.29-5.13-.665-1.954-.467-3.66 1-5.165.423-.435.454-.98.378-1.545 1.647-.455 2.96.36 4.288 1.12 1.325.615 1.453 2.046 2.133 3.1.245 1.145 1.116 1.847 1.85 2.667.805.908 1.56 1.926.23 3.04-2.94-.632-3.353-1.09-5.43-5.974.496 1.364.488 1.5-.158 2.88-.27.16-.57.296-.725.603-.408 2.718.674 5.353.367 8.1-.103.9 1.936.925 2.21 2.183.335.98.372 1.935-.23 2.84-1.485.66-2.457-.29-3.47-1.118-1.664-1.396-3.157-2.946-4.25-4.84-.485-.85-1.155-1.697-.485-2.762z"
-       id="path154" />
-    <path
-       fill="#595E6D"
-       d="M380.45 344.36c.746-1.48-.27-2.124-1.306-2.786-.808-.516-1.938-.897-1.19-2.252.26-1.73-1.65-3.13-.748-4.955.468-.116.86 1.834 1.51-.088.392-1.147-.225-2.33.366-3.4 1.26.205 1.4 1.15 1.696 1.976-.46.614-.13 1.23.188 1.813.183.34.255.648.35 1.016.08.31.253.646.514.836.157.115.28.152.37.332.16.32.502.54.747.793.588.606 1.23 1.213 2.08 1.403.21.047.456.86.43.877-2.733 1.563 1.293 1.77.39 3.017-.69.23-1.064-1.113-2.12-.654 1.252 2.688.91 5.938 3.004 8.385-.125.236-.305.418-.538.543-1.046.314-1.418-.402-1.818-1.146-1.047-1.946-1.64-4.25-3.995-5.205-.095-.045-.015-.338.07-.506z"
-       id="path156" />
-    <path
-       fill="#C2C4CA"
-       d="M385.3 324.19c-.763.405-.967.78-.024 1.257.633.318 1.207.75 1.81 1.133-.098.244-.063.566-.393.68-.354.14-.468 1.16-.872.605-1.777-2.48-3.507-.78-5.266-.096.295-.114.375-1.677.513-1.983.16-.36.364-.48.66-.71.87-.663.3-1.41-.26-1.978-.697-.708-1.355-1.456-1.916-2.275-1.106-1.617-1.753-3.476-1.77-5.442.923.192 1.354.744 1.454 1.703.392 3.734 3.158 5.488 6.067 7.103z"
-       id="path158" />
-    <path
-       fill="#9599A2"
-       d="M376.695 321.957c.216.932.687 1.723 1.516 2.2.796.45 1.147 1.136 1.325 1.972.175.796.6 1.81-.314 2.226-1.256.572-1.444-.635-1.76-1.47-.235-.163-.448-.38-.77-.33-.476.312-.23.995-.69 1.306-1.14-1.033-1.485-2.276-1.007-3.744 1.264-.175.55-1.9 1.702-2.16z"
-       id="path160" />
-    <path
-       fill="#100507"
-       d="M369.55 333.588c.324-1.004.874-1.975-.395-2.842-.714-.488-.875-1.363-.392-2.174.26-.437.71-.504 1.183-.308.813.34 1.305.865 1.313 1.828.01.797.18 1.592.28 2.387l.14.532c-.267 1.08-.31 2.562-1.986 1.104-.047-.17-.096-.348-.143-.528z"
-       id="path162" />
-    <path
-       fill="#100304"
-       d="M376 327.86c.312-.78-1.605-2.015.493-2.43.59.413.686.96.438 1.6.956 1.712-.24 3.512.406 5.64-1.643-1.59-.588-3.434-1.336-4.81z"
-       id="path164" />
-    <path
-       fill="#767A86"
-       d="M377.205 334.365c.332 1.643 1.566 3.145.748 4.955-.638-1.144-1.34-2.26-1.546-3.588-.02-.646-.688-1.322.065-1.904.067-.05.48.348.733.537z"
-       id="path166" />
-    <path
-       fill="#6A6F7C"
-       d="M376.695 321.957c-.43.826-.314 2.082-1.7 2.16l.395-.676c.636-1.167-.23-2.194-.29-3.3-.065-1.21.505-.775 1.03-.322.185.713.376 1.426.565 2.14z"
-       id="path168" />
-    <path
-       fill="#898D98"
-       d="M369.694 334.123c1.106.426 1.57-.297 1.985-1.107.14.53.284 1.063.428 1.594-.946.043-1.315 1.69-2.452.978-.45-.283-.295-.98.038-1.465z"
-       id="path170" />
-    <path
-       fill="#6A6F7C"
-       d="M376.653 319.676c.132-.225.26-.45.394-.678.723-.076 1.222.188 1.302.95.02.214-.12.607-.26.646-.763.193-.992-.545-1.437-.918zM376.93 327.03c-.147-.532-.29-1.066-.437-1.6 1.305-.163 1.082.68.964 1.456-.176.048-.353.094-.528.143z"
-       id="path172" />
-    <path
-       fill="#B2B4BC"
-       d="M388.67 347.297c.04-.91-.612-1.75-.022-2.766.38-.653.498-1.964-.094-2.323-2.02-1.23-1.27-3.57-3.026-5.465 2.206.627 2.6 2.373 3.94 2.897.847-.51 1.334.227 1.896.583.917.584.312 1.556.493 2.328.385-1.128 1.18-1.126 2.172-.893 1.17.277 2.293.588 3.157 1.603.254-.604-.32-1.262.21-1.762 1.832.618 3.022 1.96 4.327 3.77-1.802-.222-3.152.064-4.107 1.32-.18.34-.48.562-.845.505-2.497-.375-2.514.953-1.896 2.73-.03.565-.22 1.042-.756 1.32-2.113-.854-4.635-1.145-5.45-3.846z"
-       id="path174" />
-    <path
-       fill="#BCBBBF"
-       d="M397.4 341.504c.165 1.186 1.068 1.822 2.484 2.586-3.152.582-4.787-1.865-7.175-1.824.163.367.372.836.587 1.314-2.438.342-2.313.354-2-2.152.11-.904-1.11-1.277-1.827-1.785l-.29-1.06c2.73.855 2.035-.685 1.372-2.42 1.473 2.704 3.357 4.43 6.167 4.954.226.127.454.256.68.387z"
-       id="path176" />
-    <path
-       fill="#999CA5"
-       d="M394.463 349.73c-1.436-.645-.02-2.596-1.625-3.18 1.688.06 3.258-1.047 4.78.043.68.385 1.355.77 2.033 1.158-1.24.1-2.207.33-.71 1.616 1.582 1.362 2.013 3.06 1.642 5.13-1.157-.327-1.313-1.36-1.88-2.018-.77-.896-.733.257-1.095.396-.12-.02-.238-.044-.357-.063-1.415-.583-1.19-2.652-2.787-3.08z"
-       id="path178" />
-    <path
-       fill="#686D7B"
-       d="M386.692 327.258c.13-.227.262-.453.394-.678.54.617 1.402.945 1.642 1.836l-.262.072-.268.063c-.503-.43-1.004-.86-1.506-1.292z"
-       id="path180" />
-    <path
-       fill="#BCBBBF"
-       d="M389.033 338.053c-.836-.404-.854-1.26-1.106-1.988 1.907-.198.967 1.195 1.106 1.988z"
-       id="path182" />
-    <path
-       fill="#9D9FA9"
-       d="M389.098 326.535c1.11.615 1.813 1.396 1.278 3.072-.973-1.066-.488-2.326-1.278-3.072z"
-       id="path184" />
-    <path
-       fill="#B5B7BF"
-       d="M414.808 378.516c.99.877 1.6 1.777.182 2.81-.127.014-.253.024-.38.038-.08.408-1.863-1.38-.815.7.517 1.022-.702 1.46-1.654 1.634-.26.01-.513-.033-.757-.12-.84-.48-1.18-1.263-1.27-2.18-.067-.714-.355-1.317-.933-1.77-.824-.698-1.866-1.216-2.06-2.446-.04-1.074-.083-2.14-.853-3.01-.585-.658-.856-1.42-.315-2.19.637-.9 1.46-.144 2.19-.138 1.208-.713.085-1.375-.126-1.945-.68-1.843-1.942-3.46-2.104-5.51.114-.823.364-1.573 1.104-2.062 1.364 2.242 2.73 4.48 4.087 6.73.328.542.345 1.515 1.406.93 2.055-.29 2.497.208 2.455 2.77-1.078-.326-2.212-.813-1.628 1.207.288.998.337 2.065.493 3.103-.48.39-.808.082-1.147-.218.652.623 1.065 1.545 2.125 1.666z"
-       id="path186" />
-    <path
-       fill="#CBCBCD"
-       d="M407.998 372.354c-.57.945-1.34-.494-1.656.018-.523.84.523 1.103.88 1.646.578.894 1.434 1.897.33 3.035-1.28.688-1.9-.246-2.26-1.138-.437-1.084-1.135-1.555-2.22-1.63-.25-.083-.474-.204-.676-.363-1.063-1.695-1.146-3.354-.64-5.382.645-2.592 1.126-5.46-1.314-7.672-.336-.303-.548-.717-.438-1.213.07-2.06 1.985-3.055 2.723-4.73 1.312 1.007 2.303 2.19 2.215 3.98-.224 1.187.544 2.032 1.115 2.894.484.728.878 1.33.215 2.118-.99 1.066-.188 1.965.24 2.937.772 1.747 1.81 3.444 1.486 5.5z"
-       id="path188" />
-    <path
-       fill="#D4D4D6"
-       d="M414.97 372.756c-.532-1.178-.77-2.62-2.457-2.77-.198-1.46-.396-2.92-.596-4.382.104-.026.21-.063.313-.09.27.476.543.942.83 1.442.852-2.598-1.08-4.825-.5-7.276 1.702.106 1.732 1.576 2.196 2.69.312.752.336 1.46.136 2.226-.188.72.01 1.47.04 2.22.024.69.007 1.393.125 2.074.108.628.385 1.21.537 1.83.325 1.323.543 2.73 1.477 3.786-1.258.092-1.39-1.18-2.1-1.75z"
-       id="path190" />
-    <path
-       fill="#D3D4D9"
-       d="M414.088 362.854c-.432-1.096-.6-2.314-1.524-3.17-.887-2.086-.492-4.398-1.16-6.52.173-.055.344-.104.52-.15.444.012.78.225 1.033.584.374 1.184.562 2.416.913 3.607.306 1.117.67 2.217.903 3.35.177.87.406 1.79-.685 2.3z"
-       id="path192" />
-    <path
-       fill="#D6D5D7"
-       d="M406.23 363.684c.063-1.32-1.537-1.627-1.715-2.934-.108-.795-.15-1.326.426-1.852.828 1.063 1.69 2.102 2.08 3.43.156.758-.04 1.393-.644 1.893-.17-.08-.247-.185-.234-.32.013-.13.042-.203.087-.216z"
-       id="path194" />
-    <path
-       fill="#BCBBBF"
-       d="M400.007 359.654c.883.617 1.77 1.23 2.646 1.854.217.155.614.444.584.508-1.02 2.097.867 4.722-.176 6.144-1.548 2.11-.527 3.75-.386 5.61-.12.23-.31.392-.543.492-.714.14-1.447-.134-1.59-.735-.348-1.48-1.698-1.994-2.525-2.998-.166-.532-.034-.995.338-1.395.244-.308 1.447.276.796-.875.37-1.244-.025-2.183-.726-3.29-1.46-2.322-3.505-4.55-2.653-7.704.22-.183.452-.21.705-.086.64.677 1.142 1.53 2.176 1.703.572.05.94.453 1.357.77z"
-       id="path196" />
-    <path
-       fill="#999CA5"
-       d="M397.608 352.877c.884 2.645.865 2.666-2.234 2.314-.107-.063-.218-.135-.326-.196-.59-.736-.937-1.527-.544-2.48 1.132-.725 2.138-.38 3.1.357l.004.007z"
-       id="path198" />
-    <path
-       fill="#9598A3"
-       d="M396.478 357.18l-.267.072-.267.07c-1.602 1.073-2.22.104-2.646-1.27-.02-.487.108-.913.495-1.235.634-.328 1.146-.158 1.576.375v-.002l1.11 1.99z"
-       id="path200" />
-    <path
-       fill="#CBCBCD"
-       d="M400.006 359.654c-.45-.256-.902-.516-1.354-.77.522-.346-.562-1.323.27-1.23.87.098.818 1.26 1.084 2z"
-       id="path202" />
-    <path
-       fill="#C5C4C8"
-       d="M421.26 387.63c.083-.397.164-.794.246-1.194.89.313.82 1.256 1.24 1.88.355 1.677-.33 2.702-1.956 3.15-.72.222-1.438.438-1.77-.51.002.036.008-.142.008-.142s-.064.006-.093.028c-.146.11-.276.17-.445.205-.315.063-.615.09-.913.135-.433.158-.65.576-1.017.818-1.783.813-2.943.354-3.344-1.646-.08-.377-.09-.756-.038-1.137.623-1.517-1.067-2.062-1.353-3.2-.122-.576-.023-1.07.54-1.382 1.042-.27 1.885.138 2.65.787.836 1.598 2.314 1.21 3.68 1.185.228.13.45.26.68.39.582.353.78 1.85 1.886.634z"
-       id="path204" />
-    <path
-       fill="#D3D2D5"
-       d="M423.928 389.268l.382 1.025c-.09 1.072.89 1.96.538 3.08-1.583 1.21-2.62-.635-3.98-.71-.22-.165-.377-.38-.48-.636-.052-.27-.005-.53.136-.77.488-1.175 2.005-1.567 2.228-2.942.39.318.782.636 1.176.953z"
-       id="path206" />
-    <path
-       fill="#B5B7BF"
-       d="M418.697 386.61c-1.56 1.003-3.1 1.9-4.15-.6.175-.366.464-.59.855-.683.86.73 1.03-.59 1.658-.562.88.32 1.153 1.178 1.637 1.844z"
-       id="path208" />
-    <path
-       fill="#C5C4C8"
-       d="M414.808 378.516c-2.02-.307-2.905-1.203-3.604-3.69 1.74-.236 1.287 2.08 2.635 2.24.32.483.644.967.968 1.45z"
-       id="path210" />
-    <path
-       fill="#BFBEC1"
-       d="M417.06 384.77c-.377.486-.558 1.266-1.453.96-.688-.437-.844-1.03-.52-1.767.244-.36.597-.553 1.008-.656.56.328 1.265.564.964 1.463z"
-       id="path212" />
-    <path
-       fill="#B5B7BF"
-       d="M416.096 383.307c-.132.23-.263.455-.396.682-1.104-.083-1.834-.58-1.867-1.772-.02-.79.353-1.133 1.15-.894l.003.004 1.11 1.98z"
-       id="path214" />
-    <path
-       fill="#BFBEC1"
-       d="M421.26 387.63c.05.483-.037.878-.644.815-.85-.093-1.06-.767-1.243-1.445.625.227 1.115.85 1.888.63z"
-       id="path216" />
-    <path
-       fill="#B4B6BE"
-       d="M397.465 418.043c-.063-1.418-.914-1.828-2.185-1.703-.896-.873-.876-1.977-.792-3.098.606-1.19 1.14-2.69 2.706-.703.45-1.085.08-2.345.45-3.487.518-1.043.51-2.066.154-3.188-.33-1.03-.575-2.156.33-3.104.238-.15.505-.22.79-.21.92.2 1.135 1.116 1.71 1.668 1.067 1.9 2.19 3.774 2.675 5.94 1.1 2.596-.96 4.088-2.068 5.918-1.55.353-2.646 1.328-3.54 2.582-.177-.092-.27-.21-.28-.363-.008-.156.01-.242.05-.252z"
-       id="path218" />
-    <path
-       fill="#BBBABD"
-       d="M377.55 411.986c-.498-.434-.996-.867-1.496-1.3-2.214-4.7-3.98-9.552-5.09-14.634 2.19-.166 2.412 1.645 2.75 3.023.882 3.606 3.197 6.55 4.38 10.598.314-1.715.605-2.785 2.078-1.764.628.446 1.02 1.296 1.982 1.177.232.004.46.037.687.088.642.32 1.307.22 1.98.12.25.097.45.247.616.456.277.782.746 1.608-.53 1.968-1.83-.203-1.964 1.5-2.764 2.457-1.39.96-2.042-.66-3.095-.88-.952.084-.916-.965-1.496-1.31z"
-       id="path220" />
-    <path
-       fill="#BCBBBE"
-       d="M384.904 411.72c.533-.77.122-1.524-.05-2.28-.528-.334-.943-.758-1.06-1.404.475-2.045.78-2.14 2.513-.78.193.19.358.414.497.647.316.64.67 1.27.96 2.023.688-.64 1.41-2.033 2.19-.19.22.522.226 1.064.995.774 1.52 1.615 3.34 3.03 3.665 5.445-1.206-.37-2.55-.266-3.404-1.625-.346-.543-1.62-1.63-2.103.254-.398.672.4 2.035-1.17 2.03-.87-.83-.303-2.32-1.392-3.055.736-1.75-1.364-.984-1.64-1.84z"
-       id="path222" />
-    <path
-       fill="#A0A2AC"
-       d="M398.264 431.54l.268 1.066c-1.476.44-2-1.29-3.23-1.412-.938-.8-1.17-1.92-1.395-3.047-.554-3.694 1.787 2.732 1.087-1.293-.488-.883-1.428-2.59-2.395-4.276-.454-.79-.357-1.193.643-1.11.84.206.953 1.085 1.483 1.58.856.702 1.143 1.847 1.98 2.57.64 1.062 2.05 1.537 2.27 2.93.18 1.095-.52 1.984-.712 2.993z"
-       id="path224" />
-    <path
-       fill="#B9B8BB"
-       d="M396.136 425.826c-1.21-.334-1.104-1.648-1.773-2.388.146-.22.077-.56.396-.68.482-.588 1.294-1.104.64-2.02-.342-.476-1.2-.853-.663-1.495.532-.63 1.254.46 1.946.144.847.076 1.55.547 2.325.834.42.29.733.648.84 1.163.242 1.096-1.577 1.027-1.227 2.188.18.858.397 1.72-.304 2.465-.794.625-1.46-.047-2.18-.21z"
-       id="path226" />
-    <path
-       fill="#9699A4"
-       d="M394.618 415.955c-1.39-1.654-3.11-3.072-3.713-5.28-.81-.614-.76-1.382-.205-2.07.633-.776 1.248-.216 1.82.2.79 1.412 2.146 2.498 2.44 4.2.104 1.112.216 2.222.32 3.335-.217-.13-.44-.258-.662-.385z"
-       id="path228" />
-    <path
-       fill="#BBBABD"
-       d="M387.938 416.615l1.17-2.03c.415 3.927 2.347 7.36 3.61 11.042-.98-.752-1.522-1.867-1.993-2.98-.234-.552-.46-1.11-.736-1.644-.142-.27-.295-.53-.47-.778-.107-.156-.288-.53-.452-.607-.02.315-.015.64.018.955.035.38.014.738-.005 1.116-.354-.344-.555-.805-.6-1.29-.028-.306.05-.6.093-.9.048-.327-.006-.556-.092-.874-.18-.673-.362-1.34-.542-2.01z"
-       id="path230" />
-    <path
-       fill="#BCBBBE"
-       d="M382.142 414.176c-.593-2.53-.11-2.96 2.764-2.457-1.167.544-.477 3.173-2.764 2.456z"
-       id="path232" />
-    <path
-       fill="#A1A3AD"
-       d="M394.756 422.76c-.132.23-.267.455-.396.682-.372-.655-.745-1.313-1.117-1.973-.183-.677-.363-1.353-.637-2.358 1.537 1.072 1.796 2.386 2.15 3.648z"
-       id="path234" />
-    <path
-       fill="#5B5F6F"
-       d="M398.716 420.563c-1.018.19-1.688-.21-2.037-1.174-.15-.69-.54-1.52.785-1.347.05.174.1.348.146.52.912.37 1.534.896 1.106 2z"
-       id="path236" />
-    <path
-       fill="#9D9FA9"
-       d="M393.614 428.313c-1.896-.2-2.688-1.217-2.782-2.932l2.782 2.933z"
-       id="path238" />
-    <path
-       fill="#BBBABD"
-       d="M386.548 413.563c1.9.36 1.218 1.904 1.39 3.053-1.595-.503-1.193-1.913-1.39-3.053z"
-       id="path240" />
-    <path
-       fill="#9D9FA9"
-       d="M393.907 428.15c.87.83 1.114 1.947 1.396 3.048.05.18.097.354.143.53-1.452-.688-1.73-2.082-2.07-3.438.175-.048.353-.092.53-.14z"
-       id="path242" />
-    <path
-       fill="#868995"
-       d="M385.702 416.346c-.2-.744-.4-1.492-.69-2.564.888.937.98 1.757.69 2.564z"
-       id="path244" />
-    <path
-       fill="#CCCCCE"
-       d="M396.136 425.826c.656-1.156 1.158.09 1.74.112 1.335.71 2.572 1.728 4.21.478.623-.478 1.357.12 1.98.543.966.646 1.64 1.728 2.863 1.958.344-1.48.827-2.664 2.54-1.21.622.896 1.07 1.9 1.69 2.806.5 1.47.187 2.947.028 4.422.21.87 1.164 1.424 1.053 2.44-2.137-.925-3.696-1.827-3.895-2.256-1.52 1.562-2.49.78-3.275-.77-.474-.94-.688-2.155-2.175-1.972-1.504.162-1.73-1.922-3.203-1.816l-.254.066-.25.065c-.78-.534-.767-1.293-.598-2.098-.616-1.095-2.258-1.29-2.454-2.77z"
-       id="path246" />
-    <path
-       fill="#676B79"
-       d="M416.366 441.514c-.193-.71-.394-1.42-.59-2.13-.386-.577-.106-.98.35-1.335 1.605-.196 1.647 1.49 2.552 2.116.104.362.337-.248.05-.02-.103.08-.104-.017-.2-.19-.493-.913-.268-1.594.648-2.012.842-.38 1.646-.186 2.26.453.572.6 1.15.73 1.948.953 1.732.49 3.842 1.453 3.77 4.017-1.043 1.676-2.145 3.26-4.504 2.895-.812-.123-1.252.738-2.01.77-1.19.083-2.43.308-3.213-.965.698-1.76-1.02-2.962-1.06-4.553z"
-       id="path248" />
-    <path
-       fill="#5C6170"
-       d="M411.193 434.934c-1.64-1.264-.134-2.992-.65-4.42-.858-.754-.555-1.844-.8-2.772-.19-.722-.358-1.517.583-1.787.777-.23 1.388.254 1.85.854 1.018 1.312.6 2.964 1.018 4.417 0 .27-.05.53-.142.773-.114.23-.36.35-.533.535.294.194.562-.15.864-.043 1.233.438 1.735 1.372 1.83 2.604-.397 1.143 1.098 2.7-.772 3.52-1.457-.9-.958-3.522-3.25-3.682z"
-       id="path250" />
-    <path
-       fill="#D5D4D7"
-       d="M402.935 431.998c.733-1.398 1.545-1.02 2.153.024.446.77.55 1.734.972 2.523.233.438.784 2.045 1.185-.11.14-.728.847.19 1.104.682-.533 1.02.01 2.146-.29 3.18-.284.967-.734.352-1.126.047-1.714-.678-3.353-1.42-3.265-3.693-.367-.66-.735-1.324-1.105-1.984.025-.28.143-.503.37-.668z"
-       id="path252" />
-    <path
-       fill="#767A87"
-       d="M416.366 441.514c.977 1.262 3.35 2.146 1.15 4.262-1.698.627-3.225.603-4.32-1.104.312-.28.622-.563.937-.84.683-.638.995-1.56 1.694-2.18.18-.045.36-.09.54-.138z"
-       id="path254" />
-    <path
-       fill="#ADAFB7"
-       d="M403.67 434.65l3.265 3.693c-1.66.773-2.708-.258-3.766-1.27-.166-.875-.758-1.84.5-2.423z"
-       id="path256" />
-    <path
-       fill="#C7C9CF"
-       d="M415.828 441.654c.02 1.185.775 2.938-1.694 2.18-1.296-2.182.933-1.607 1.694-2.18zM414.44 438.614c.794-1.125-.595-2.38.208-3.502.11.043.222.086.335.127.783.68.983 1.6 1.06 2.57.006.116.007.237.01.354-.093.403-.186.813-.274 1.22l-1.34-.77z"
-       id="path258" />
-    <path
-       fill="#676B79"
-       d="M402.935 431.998c-.122.22-.246.44-.367.662-.565.317.05 1.424-.854 1.42-.538-.007-.843-.486-1.016-1.072-.248-.84-.662-1.633-1.005-2.445.095-.35-.573-1.344.358-.93 1.098.486 1.934 1.553 2.885 2.365zM398.595 428.598c.196.7.396 1.4.596 2.1-.31.28-.62.564-.926.847-.32-1.033-.307-2.024.33-2.947z"
-       id="path260" />
-    <path
-       fill="#9C9FA8"
-       d="M358.453 334.846c-.36-1.926.062-3.83.145-5.744.247-.465.495-.932.74-1.398 1.062.765 2.404 1.123.65 2.902-1.022 1.035-.94 3.162-1.355 4.797-.2-.072-.296-.178-.28-.32.013-.144.05-.224.1-.237z"
-       id="path262" />
-    <path
-       fill="#BDBFC5"
-       d="M358.453 334.846c.063.186.12.37.184.557 1.884 1.54.604 4.168 2.115 6.27.742-1.978 1.312-3.937 3.804-3.306.552.434.548 1.078.658 1.684-.204 1.105.927 1.314 1.353 1.995.26.512.258 1.012-.04 1.504-.99 2.048.343 2.562 1.927 2.905 1 2.963 3.236 4.998 5.353 7.127-.074.533-.325.914-.874 1.035-1.36.225-.366 1.643-1.1 2.188-1.564 1.192-1.82-.223-2.32-1.153-.54-1.097-.48-2.322-.754-3.478-.314-1.3-.315-2.77-2.568-2.033-1.653.54-1.733-1.122-1.917-2.292-.143-.512.078-1.012.074-1.57-.42.55-.172 1.163-.287 1.718-.07.268-.227.473-.45.63-1.162.382-1.808-.39-2.478-1.105-1.854-1.993-1.284-4.77-2.276-7.043-.33-1.864-.706-3.725-.407-5.63z"
-       id="path264" />
-    <path
-       fill="#898D98"
-       d="M364.453 340.105c.033-.578.066-1.16.103-1.74 2.27-1.233 1.87-3.48 1.896-5.45.02-1.238-.323-2.48.214-3.69.546 2.64 2.61 5.112.813 8.03-.17.27.333.953.52 1.445.556 1.438 1.35 2.918-.547 4.022.04.326-.098.545-.393.68-.177.046-.354.095-.528.144l-.433-1.598c-.836-.362-.8-1.495-1.647-1.843z"
-       id="path266" />
-    <path
-       fill="#BDBFC5"
-       d="M367.053 343.402l.393-.676c.656.44 1.295 1.13.504 1.695-.596.428-.658-.59-.897-1.018z"
-       id="path268" />
-    <path
-       fill="#A8ABB4"
-       d="M394.163 354.947l-.386.688c-.705.5-1.14-.02-1.607-.418-.232-.27-.43-.576-.638-.867-.985-1.463-1.637.75-2.528.236-.243-.07-.465-.188-.666-.345-.396-1.34-2.796-1.43-2.146-3.427.178-.05.354-.098.532-.145-.01-1.504 1.142-2.338 1.943-3.37 1.62 1.563 4.082 1.84 5.554 3.63.37.19.517.51.52.908-.702.94-.452 2.06-.577 3.11z"
-       id="path270" />
-    <path
-       fill="#B2B4BC"
-       d="M387.13 342.06c.918.374 1.145.964.856 1.417-.27.432-.604.03-.705-.357-.062-.26-.075-.528-.15-1.06z"
-       id="path272" />
-    <path
-       fill="#575C6C"
-       d="M386.192 350.814c1.27.78 2.254 1.79 2.604 3.297.397 1.17 1.092 2.1 2.21 2.675.18.187.325.394.442.617.46 1.688-.02 2.418-1.88 1.967.312.937 1.367 1.835.912 3.13-.093.257-.237.472-.43.652-.228.135-.47.205-.73.23-1.65-.003-1.883-1.79-3.04-2.424-.658-2.573-2.543-4.528-3.525-6.944-.238-.584-.32-1.313-1.413-1.327-1.583-.017-2.154-1.396-2.664-2.68-.016-.262.04-.51.144-.747.36-.403 1.02-.657.688-1.4-.255-.762-.497-1.522-1.36-1.827-1.332-.398-2.155-1.63-3.44-2.1-.49-.27-.645-.708-.61-1.232.565-.3.73-.728.418-1.312.783-.672.67-1.352.156-2.172-.53-.85-.82-1.813-.38-3.473 2.214 3.134 2.676 7.057 6.158 8.62 2.947.79 3.957 3.234 4.838 5.75.18.524.38.75.902.7z"
-       id="path274" />
-    <path
-       fill="#C6C8CE"
-       d="M372.88 354.4c.306-.27.61-.545.92-.817.896.52 1.8 1.038 2.7 1.56.25.102.46.25.625.46.355 1.347 1.15 2.552-1.053 3.44-1.133.455-.474 2.406.1 3.464 1.302 2.41.605 4.885.582 7.344-.148.19-.34.342-.563.44-.437.09-.892.077-1.332.17-.2.08-.396.155-.587.256-1.143.77-.492 2.204-1.17 3.14-1.278-.19-2.058.477-2.616 1.526-.257.077-.516.098-.78.065-1.87-1.406-2.063-5.006-.396-7.188.493-.647 1.33-.995 1.578-1.848 1.052-2.826.417-5.785.683-8.672.826-.96.59-2.338 1.31-3.34z"
-       id="path276" />
-    <path
-       fill="#757985"
-       d="M374.27 342.6l.808.932c.767.37 1.276.98 1.646 1.724.834 1.46.377 3.188 1.045 4.737.424.99-.53 1.818-1.45 2.35-.537.236-1.066-2.34-1.77-.014-.046.153-.945-1.18-.86-1.818.417-3.155-.595-6.235-.376-9.367 1.338-.192.996.732.956 1.455z"
-       id="path278" />
-    <path
-       fill="#575C6C"
-       d="M376.315 352.338c.962-2.295-.02-4.553-.118-6.83 2.228.336 2.586 2.01 2.746 3.828l-.003.006c-.418.768.21 1.13.596 1.61 1.026 1.275 1.32 2.814 1.105 4.357-.225 1.622-2.05 1.56-3.002 2.444-.814-.47-.202-1.606-.986-2.093-.048-.177-.1-.353-.148-.525l-.19-2.797z"
-       id="path280" />
-    <path
-       fill="#525767"
-       d="M374.27 342.6c-.167-.588-.312-1.19-.96-1.46-.026-.347-.072-.827.33-.864.732-.065.658.672.874 1.11.395.5.604.964-.244 1.214z"
-       id="path282" />
-    <path
-       fill="#C5C7CD"
-       d="M381.104 336.186c.127 1.125-.247 2.297.49 3.383-2.037-.995-1.578-3.038-2.277-4.69 1.047-.1 1.02 1.19 1.792 1.313-.002-.004-.006-.007-.006-.007z"
-       id="path284" />
-    <path
-       fill="#C0C2C8"
-       d="M394.51 352c-.1-.355-.193-.713-.288-1.07l.24-1.2c1.353-1.216 2.02-.17 2.23.91.165.85.667 1.47.906 2.233-.984-.1-2.016.207-2.945-.35-.206-.064-.297-.17-.27-.302.025-.13.068-.204.126-.22z"
-       id="path286" />
-    <path
-       fill="#C8C7CA"
-       d="M403.204 373.658c1.304.043 2.77-.28 2.692 1.893-.03.855.813 1.31 1.653 1.5.237 1.302 1.937 1.077 2.322 2.226.188.764.38 1.525 1.095 1.994-.262.834.336 1.434.58 2.127-.166.207-.382.328-.645.357-1.66-1.104-3.935-.648-5.452-2.13-.634-.706-1.036-1.528-1.278-2.438.082-1.913-1.026-3.62-.968-5.528z"
-       id="path288" />
-    <path
-       fill="#C2C1C4"
-       d="M406.23 363.684c.048.182.1.36.146.537 1.083 3.126 3.49 5.76 3.477 9.33-1.132.366-1.06-1.097-1.854-1.196-1.41-2.08-1.988-4.523-2.975-6.79-.52-1.207-.216-1.906 1.204-1.88z"
-       id="path290" />
-    <path
-       fill="#CFD0D5"
-       d="M414.985 381.322c-1.87 1.457.24 1.84.718 2.664-.433.56-.254 1.152-.097 1.742-.354.094-.708.188-1.063.28-.68-.386-1.356-.772-2.034-1.16-.605-.41-.714-.95-.435-1.595-.017-.588 3.614-.623.258-1.756-.535-.182-1.063-.72-.804-1.826.91 1.31 2.67.193 3.455 1.652z"
-       id="path292" />
-    <path
-       fill="#D7D9DD"
-       d="M412.08 383.254c.145.53.285 1.063.433 1.594-.08.404-.16.81-.242 1.213.603.954 1.75 1.66 1.393 3.05.1.36.192.72.288 1.078-1.676 2.195-2.348.26-3.24-.787-.407-1.09-.806-2.18-1.004-3.33-.142-1.147-.188-2.24 1.313-2.534.177-.047.353-.094.532-.14.17-.048.35-.097.527-.142z"
-       id="path294" />
-    <path
-       fill="#C5C4C8"
-       d="M411.5 378.41c-1.187-.244-1.743-.906-1.575-2.188 1.166.352 1.26 1.362 1.576 2.188z"
-       id="path296" />
-    <path
-       fill="#D4D3D5"
-       d="M410.968 381.268c-.994-.318-1.79-.746-1.095-1.994.84.406.86 1.257 1.095 1.994z"
-       id="path298" />
-    <path
-       fill="#D2D1D4"
-       d="M403.204 373.658c1.533 1.48 1.798 3.31 1.45 5.3-.77-.087-1.23-.59-1.618-1.192-.456-.98-.645-2.06-1.06-3.06-.024-.272.027-.53.168-.772.178-.055.354-.108.532-.166l.528-.11z"
-       id="path300" />
-    <path
-       fill="#BDBCC0"
-       d="M392.427 354.834c.448.266.897.53 1.35.797.27 1.15.824 1.93 2.17 1.692.577 2.756 1.632 5.27 3.447 7.473.903 1.098 1.617 2.338.102 3.568-.12-.03-.24-.063-.362-.093-.896-.916-1.847-1.512-3.06-.506-.32.16-.672.29-.803.67-.2.58-.26 1.386-1.078 1.322-.8-.063-1.236-.752-1.404-1.48-.348-1.495-1.315-2.52-2.423-3.478-.41-.576-.73-1.168-.33-1.885h-.003c1.56-1.365 2.64-.025 3.97.682.31-2.438-.57-4.588-1.608-6.672-.387-.765-1.28-1.402.033-2.09z"
-       id="path302" />
-    <path
-       fill="#AEB0B8"
-       d="M390.993 364.37c1.984.96 2.618 2.772 2.892 5.306.85-1.098-.064-3.05 1.844-2.582.863.074 1.125 1.635 2.308.94.563.2.847.538.542 1.146l-.25 1.213c-.233.62-.716.988-1.303 1.244-.41.268-.713.705-1.23.807-.38.02-.706-.11-1.01-.328-.063.27.19.324.324.438 1.41 1.17 2.825 2.33 2.494 4.474-.28.674-.737 1.096-1.507 1.084-1.69-.87-2.656-2.427-3.695-3.912-.537-.894-.826-1.89-1.187-2.854.128-1.496-.78-2.574-1.513-3.724-.153-.518-.16-1.002.28-1.396 1.214-.21-.367-.912.212-1.232.126-.39.313-.703.8-.623z"
-       id="path304" />
-    <path
-       fill="#AAADB6"
-       d="M396.2 370.967c.708-.19 1.418-.383 2.127-.574 1.35.39 2.955.45 2.654 2.602-.082.6.627.802 1.163.94.053.175.104.35.155.526 1.304 1.5-1.49 1.538-.983 2.757-.214.162-.45.26-.714.3-1.254-.153-1.67-1.196-2.235-2.083-.48-.94-.216-2.063-.72-3-.312-.313-.75-.404-1.11-.633-.246-.222-.508-.443-.336-.833z"
-       id="path306" />
-    <path
-       fill="#D9D8DA"
-       d="M398.576 369.18c-.27-.307-.55-.615-.82-.92-.584-.422-.95-1.018-.334-1.553.597-.52.885.295 1.26.598.348.285.416.803.814 1.06.034.384.413.835-.016 1.112-.166.11-.594-.186-.904-.297z"
-       id="path308" />
-    <path
-       fill="#9FA1AB"
-       d="M394.51 352c.05.176.098.35.145.523.11.926 1.006 1.64.715 2.668-.398-.08-.806-.165-1.208-.243-1.267-1.146-.855-2.093.347-2.947z"
-       id="path310" />
-    <path
-       fill="#C8C7CA"
-       d="M411.538 389.674c.625 1.008 1.546.633 2.41.512-.086 2.26 2.108.496 2.713 1.54.106-.216.277-.34.522-.353.646.178 1.357-.033 1.99.297.185.162.337.348.456.563.1.256.267.61.137.77-2.404 2.954.302 4.715 1.563 6.807 2.2 3.048 5.297 5.31 7.415 8.43.15.512.188 1.042.26 1.564.234 1.707-.472 2.123-1.972 1.36-.34-.203-.622-.475-.853-.798-.293-.43-.436-.927-.61-1.403-1.03-1.55-2.335-2.853-3.67-4.134-2.89-1.938-4.626-4.962-7.02-7.37-.976-2.467-2.586-4.424-4.768-5.926-.042-.248.02-.474.16-.683.294-.353.636-.675.97-1 .1-.06.198-.12.298-.176z"
-       id="path312" />
-    <path
-       fill="#9497A1"
-       d="M413.66 389.11c-.916-.81-.863-2.064-1.393-3.05.553.975 3.297.952 1.392 3.05z"
-       id="path314" />
-    <path
-       fill="#B4B3B7"
-       d="M418.924 391.695c-.395.326-.384 1.203-1.08 1.006-.302-.083-.443-.722-.657-1.105-.108-.444-.15-.877.25-1.22.4.085.802.167 1.2.25.435.266.496.633.287 1.07z"
-       id="path316" />
-    <path
-       fill="#C3C2C5"
-       d="M417.438 390.375l-.252 1.217c-.174.043-.353.086-.525.133-.024-.58-.646-1.15-.092-1.71.084-.085.57.23.87.36z"
-       id="path318" />
-    <path
-       fill="#C5C4C8"
-       d="M418.924 391.695c-.098-.354-.19-.715-.286-1.07l.532-.145c.067.922.943.44 1.353.777.047.178.096.354.146.533-.416.578-.947.72-1.6.432l-.146-.527z"
-       id="path320" />
-    <path
-       fill="#D3D2D5"
-       d="M419.176 390.48c-.396-.488-.73-.988-.277-1.623.86.413.563 1.018.276 1.623z"
-       id="path322" />
-    <path
-       fill="#C5C4C8"
-       d="M424.697 393.537l1.18.867c.23.088.43.23.592.416.522 1.104 1.302 2.018 2.177 2.858.397.48.963.812 1.253 1.39.154.356.187.723.048 1.084-1.275.86-.2 1.293.356 1.817.883 1.603 1.924 3.09 3.247 4.366.08.23.108.475.103.72-.533 1.12.52 2.012.47 3.066-.035.562-.243 1.033-.68 1.396-.832.502-1.57.25-2.28-.273-.68-.926-1.743-1.467-2.44-2.38-.04-.12-.075-.24-.11-.36-3.165-2.208-5.45-5.27-7.916-8.15.117-.587-.144-1.37.798-1.53.84.038 1.458.583 2.188.968-.348-1.533-2.45-1.424-2.73-2.977.185-1.107-.22-1.996-.853-2.912-.623-.896-.51-.978.725-1.586 1.647-.746 2.6.746 3.872 1.22z"
-       id="path324" />
-    <path
-       fill="#B4B3B7"
-       d="M421.47 399.002c-.262.45-.522.902-.78 1.354-1.046-1.23-1.635-2.754-2.9-3.883-.83-.74-1.76-2.2.73-2.45.892-.09.55-1.13.552-1.8.533-.145 1.065-.287 1.6-.432.05.177.1.353.145.526-.97.48-.525 1.045.042 1.35 1.53.816 1.36 1.863.568 3.063-.872.32-.204.682-.025 1.026.206.408 1.207.77.066 1.246z"
-       id="path326" />
-    <path
-       fill="#888B96"
-       d="M386.322 408.477c-.05-.176-.1-.352-.146-.53-.357-.195-.48-.558-.517-.91-.085-.89-.813-1.066-1.36-.908-.637.186-.23.98-.396 1.484-.01.248-.03.494-.063.738-.07.514-.457 1.078-.998 1.128-.327.03-.483-.067-.696-.286-.24-.246-.646-.404-.973-.5-.282-.084-.577-.113-.86-.192-.206-.062-.4-.034-.597-.136-.296-.146-.65-.4-.72.107-.097.758.27 1.574.476 2.59-2.01-.23-2.843-1.86-3.115-3.053-.78-3.387-3.253-6.068-3.686-9.574-.112-.928-.81-1.82-1.703-2.383-3.286-6.396-2.746-13.72-4.92-20.383-.237-.885-.18-1.807-.43-2.702-.127-.448-.488-1.216-.075-1.624.414-.41 1.066.2 1.29.56.31.503.448 1.073.62 1.628.082.258.155.52.228.78 1.682 4.577 1.89 9.478 3.104 14.15.147.564.268 1.14.39 1.71.05.23.06.628.184.824.1.16.49.27.667.338.507.182 1.026.238 1.553.326.944.16 1.886.313 2.833.455.366.053.75.066 1.11.14.472.09.92.233 1.402.282.604.063 1.204.09 1.808.168.662.086 1.15.565 1.708.88.362.206.636.467 1.06.495.45.03.9.05 1.353.05.368 0 .758-.04 1.103.11.51.22.933.59 1.445.812.66.282 1.304.567 1.903.974.544.368.978.834 1.275 1.416.128.248.295.457.4.713.104.256.255.5.37.754.306.665.54 1.36.932 1.983.994 1.45 1.348 2.867-.25 4.168-.83.995-1.234-.472-1.702-.333-.938.28-2.46.06-2.026 2.023.276 1.287.15 2.838-1.978 1.727z"
-       id="path328" />
-    <path
-       fill="#D6D5D7"
-       d="M407.588 430.174c-1.172-.094-1.896-.982-2.826-1.5-.968-.543-1.608-3.19-3.606-.537-.824 1.092-2.605-.71-3.275-2.197.604-.98-.02-1.883-.185-2.813.167-1.05 2.16-.05 1.844-1.642-.272-.31-.547-.615-.82-.922-.364-.664-.733-1.33-1.103-1.996.535-1.582.918-3.354 3.296-2.606.05.115.098.23.146.35.873 1.667 2.897 2.52 3.233 4.573-.054.416-.253.713-.67.832-.275-.01-.522-.12-.766-.254-.035.24.097.47.23.577.884.707 2.206.93 2.49 2.29.193 1.372 1.04 2.46 1.625 3.66.342.7 1.044 1.316.386 2.187z"
-       id="path330" />
-    <path
-       fill="#CECED0"
-       d="M402.79 410.316l-2.62-5.568c.187-.346.487-.504.867-.532.227.02.442.063.646.13.35.053.438-.19.524-.462.265-.845-.69-2.416.77-2.412 1.073.002 2.762-.267 3.366 1.396.27 1.18.06 2.433.52 3.588.06.25.07.5.06.755-.47 1.48-.765 2.94-.135 4.482.335.818.525 1.764-.31 2.508-3.083.464-2.873-2.196-3.687-3.884z"
-       id="path332" />
-    <path
-       fill="#CDCCCE"
-       d="M402.79 410.316c1.19 1.275 1.52 3.482 3.83 3.547.58-.02.94.29 1.2.77.24.59.37 1.21.456 1.84.13 2.19-1.443 1.984-2.847 2.03-.373-.445-1.113-.443-1.72.063-.52.436-1 .477-1.344-.13-.468-.83-1.66-1.23-1.464-2.452v-.02c.588-.862-.478-2.454 1.656-2.772 1.25-.194-.616-1.93.233-2.876z"
-       id="path334" />
-    <path
-       fill="#BBBABD"
-       d="M394.96 413.004c-1.697-.713-2.452-2.104-2.743-3.826.063-.11.126-.223.188-.336.62-.518 1.3-1.164 2.127-.7.73.407 1.014.466 1.73-.192.746-.686 1.41.134 1.67 1.006l.045.382c.45 1.692.984 3.403-.943 4.76-.375-.912-.392-2.762-2.073-1.094z"
-       id="path336" />
-    <path
-       fill="#B6B8C0"
-       d="M398.523 402.904c-.597 1.1.077 2.086.278 3.11.242 1.247.613 2.505-.825 3.32h-.002c-.51-1.003-1.045-1.88-2.1-2.544-1.19-.748-2.465-1.928-2.012-3.525.44-1.543 2.08-1.445 3.41-1.594.668.162 1.356.3 1.253 1.234z"
-       id="path338" />
-    <path
-       fill="#656978"
-       d="M398.523 402.904c-.45-.26-.9-.518-1.352-.776-.543-.1-1.055-.27-1.446-.687-.99-1.175-1.558-2.546-1.86-4.042.06-.434.267-.772.63-1.02 1.393-.184 2.22.94 3.33 1.425 1.072 1.485 2.78 2.82 1.23 4.957-.178.05-.355.095-.53.144z"
-       id="path340" />
-    <path
-       fill="#B6B8C0"
-       d="M399.054 402.758c.132-1.838-.75-3.28-1.823-4.645-.562-.572-1.024-1.164-.02-1.73 1.337-.752 1.635-.71 2.354.197.47.594.697 1.283.827 2.016-.138 2.014 1.114 3.838.83 5.88l-1.05.27c-.856-.39-.87-1.254-1.116-1.988z"
-       id="path342" />
-    <path
-       fill="#A4A7B0"
-       d="M380.032 408.46c-.285-1.07.414-2.7-1.972-2.435-.637.07-1.8-1.78-1.96-3.242-.183-1.646 1.205-.482 1.704-1.02.754-.813.757-.102.75.507-.015 1.19.952 1.878 1.563 3.34.47-1.854.813-3.22 1.26-4.99 2.053 3.01.342 6.114 1.206 8.855-1.61 1.572-2.204.59-2.55-1.014z"
-       id="path344" />
-    <path
-       fill="#BCBBBE"
-       d="M382.6 409.494l.768-1.36c.653.265 1.036.708.967 1.45-.684 1.953-1.16-.037-1.735-.09z"
-       id="path346" />
-    <path
-       fill="#888B96"
-       d="M384.332 409.584c-.32-.484-.645-.97-.967-1.45.274-.403.624-.513 1.064-.286.14.53.28 1.06.423 1.592-.17.05-.347.097-.52.144z"
-       id="path348" />
-    <path
-       fill="#BBBABD"
-       d="M386.322 408.477c.414-.32 1.595.488 1.235-1.04-.347-1.48-.938-3.437 1.98-3.058.977.124.312-1.036.722-1.442.918.277.022 1.863 1.35 1.83 1.792-.56 1.982.637 1.906 1.873-.063.976-.438 1.91-1.297 2.536l-.007.002c-2.085-.943-1.104.795-1.312 1.498-.56.313.06 1.553-.857 1.39-1.657-.3-.313-1.64-.766-2.687-.605.782-1.146 1.47-1.795 2.304-.406-1.13-.783-2.168-1.16-3.207zM384.432 407.848c-.354.096-.708.19-1.063.285.356-1.105-.074-2.164-.215-3.223.458-.316.623.213.914.264 1.962.352 1.966.334 2.104 2.775-1.435-1.188-1.435-1.188-1.742-.102z"
-       id="path350" />
-    <path
-       fill="#5B5F6F"
-       d="M399.536 421.484c.614 1.43.523 1.513-1.843 1.642.008-.95.008-.95 1.843-1.642z"
-       id="path352" />
-    <path
-       fill="#626675"
-       d="M412.588 431.693c-.85-1.68.132-4.05-2.343-5.694.118 1.806.205 3.16.296 4.52-.925-.6-1.395-1.417-1.264-2.534-1.085-.696-1.71-1.723-2.08-2.93-.16-.354-.275-.723-.353-1.104-.167-1.26.108-2.177 1.64-2.123.265.023.522.09.772.185 1.13.605 2.187 1.32 3.1 2.232.757.963 1.596 1.88 1.78 3.162-.02.395-.23.79-.005 1.19.23.374.443.747.526 1.184-.06 1.314.243 3.032-2.068 1.91z"
-       id="path354" />
-    <path
-       fill="#DDDDDF"
-       d="M407.93 424.924c.45 1.02.897 2.04 1.35 3.06-.354.25-2.056-1.394-1.064.772.267.586.996 1.576-.624 1.418-.057-2.25-3.12-3.076-2.64-5.58 1.06-.5 2.01.004 2.98.33z"
-       id="path356" />
-    <path
-       fill="#ACAEB6"
-       d="M412.588 431.693c1.855.275 1.026-1.518 1.675-2.174 1.497-.19 1.175 1.003 1.374 1.798.313 1.33.435 2.814 2.292 2.93 1.03-.796 1.937.363 2.933.163.49.122.897.398 1.313.665 1.937 1.39 3.658 3.02 5.31 4.727.34.805.904 1.416 1.642 1.883.584.33 1.1.73 1.38 1.363.402 2.387-1.01 2.223-2.58 1.844-.695-.3-.934-1.002-1.34-1.555-.103-2.285-2.71-2.078-3.458-3.885-.547 1.164.5 1.707.53 2.52-1.586.04-1.382-1.274-1.878-2.042-.473-.734-.97-1.64-2.08-1.5-.297.037-.772.363-.79.586-.075 1.004.934 1.215 1.508 1.797-.853.937-1.52.875-2.256-.182-.608-.89-1.398-1.65-2.11-2.467l-.017.007c-.94-.804-.454-2.252-1.39-3.06l.003-.002c-.242-1.06-.82-1.867-1.783-2.387-.152-.073-.23-.175-.228-.302.002-.127.02-.195.062-.207-.035-.167-.075-.343-.114-.517z"
-       id="path358" />
-    <path
-       fill="#D1D1D3"
-       d="M426.586 443.334c.44.262.89.52 1.334.783.36 1.483-.054 2.313-1.676 2.807-1.98.604-3.83 1.522-5.64-.27l.004-.013c.703-.743 1.174-1.577 2.615-1.116 1.693.542 2.103-1.63 3.363-2.19z"
-       id="path360" />
-    <path
-       fill="#474E62"
-       d="M412.703 432.22c.06.167.11.34.162.51.008.353-.024.942-.354.848-1.065-.304-.855-1.27-1.05-2.283.558.412.9.668 1.243.924z"
-       id="path362" />
-    <path
-       fill="#DADBDE"
-       d="M420.606 446.658c2.263 1.077 4.237-.486 6.355-.734.892-.104.45-1.287.957-1.804.98.193 2.428 1.23 1.994-1.108.14-.246.34-.402.607-.473.283-.01.52.093.725.286.513.883.546 1.79.184 2.73-1.306 1.34-3.048 1.843-4.72 2.483-1.547.9-3.087.784-4.617-.038-1.122.313-2.047.084-2.685-.957.403-.127.802-.256 1.2-.387z"
-       id="path364" />
-    <path
-       fill="#5C6170"
-       d="M414.646 435.114c1.136.715.975 2.02 1.39 3.06-1.153-.71-.98-2.017-1.39-3.06z"
-       id="path366" />
-    <path
-       fill="#E3E2E3"
-       d="M422.09 448.004c1.446-.363 3.062.303 4.405-.7.648.302 1.183.704 1.286 1.48-.168 1.564-.954 1.9-2.287 1.147-.913-1.03-3.236.43-3.403-1.926z"
-       id="path368" />
-    <path
-       fill="#C6C8CE"
-       d="M365.41 371.252c-1.73-6.45-3.402-12.914-5.227-19.338-.744-2.62-.002-5.502-1.533-7.95.625-1.13-.31-2.35.195-3.485 1.897 1.802 1.23 4.74 2.926 6.632-.433 2.572-.168 5.082.718 7.527 1.332 2.63 1.878 5.51 2.638 8.325.125.73.116 1.49.553 2.145 1.12 2.12 1.832 4.27.425 6.547-.232-.134-.463-.27-.695-.405z"
-       id="path370" />
-    <path
-       fill="#787C88"
-       d="M364.485 363.516c-1.167-2.71-1.27-5.78-2.813-8.363.014-1.158-.193-2.334 1.095-3.106 1.472-.888.103-2.662 1.037-3.767-.046-.178-.094-.354-.145-.53.276-.378.632-.476 1.062-.29.763 2.47.763 2.47 3.182.76 2.068 1.863 1.668 4.56 2.313 6.9-.007 3.29-.245 6.59.253 9.863-.035.226-.12.432-.244.617-.283.3-.02.564.083.846.302 1.664-.58 1.73-1.753 1.248-1.14-.465-1.7-1.66-2.734-2.274-.63-.51-.947-1.232-1.338-1.904z"
-       id="path372" />
-    <path
-       fill="#7B7F8B"
-       d="M370.134 365.424c-1.705-3.447-.772-6.875.08-10.305.424.52-.144 2.175 1.496 1.31.38.28.514.62.284 1.06.825 3.122.682 6.202-.362 9.245-.84-.047-1.225-.614-1.498-1.31z"
-       id="path374" />
-    <path
-       fill="#8D909B"
-       d="M363.802 348.28c.966.673-.076 1.958.985 2.803.796.63-.038 1.155-.86 1.354-1.402.335-1.96 1.43-2.258 2.718-.47-2.01-1.284-3.924-1.21-6.065.036-1.054.207-1.752 1.31-1.978.75.265.963 1.458 2.032 1.167z"
-       id="path376" />
-    <path
-       fill="#6F7481"
-       d="M371.998 357.49c-.098-.353-.188-.707-.285-1.062-.18-1.13-.89-2.18-.563-3.517 1.04.022 1.124 1.08 1.732 1.485.86 1.367.197 2.29-.884 3.095z"
-       id="path378" />
-    <path
-       fill="#8D909B"
-       d="M364.722 347.46c-.354.097-.707.19-1.063.288-1.272-1.06-.034-2.277-.11-3.414-.04-.627.938-.23 1.11.258.335.92.563 1.902.062 2.867z"
-       id="path380" />
-    <path
-       fill="#7A7E8A"
-       d="M364.453 340.105c.48-.246.966-.492 1.496-.764l.145 2.606c-1.468.206-1.975-.444-1.642-1.84z"
-       id="path382" />
-    <path
-       fill="#9497A2"
-       d="M392.427 354.834c-.5 1.52 1.135 2.05 1.538 3.227.868 2.534 1.122 5.048 1.008 7.966-1.696-1.16-2.54-3.502-4.94-3.104.03-1.935-1.687-3.29-1.592-5.308 1.1-.313 1.188 1.85 2.41 1.195.18-.095.022-.823.02-1.26 1.246-.58.797.82 1.268.94-.165-.63-.404-1.39-1.416-1.468-2.12.008-2.39-1.21-1.923-2.91h-.002c.53.375.822.916.99 1.396.475-.925.832-2.05 2.35-1.728.093.35.19.702.29 1.054z"
-       id="path384" />
-    <path
-       fill="#575C6C"
-       d="M392.134 353.78c-.418.325-.914.585-1.237.987-1.31 1.63-1.8.83-2.104-.656 2.226-.202-.203-1.446.634-2.136.95.277 1.658 1.523 2.92 1.328-.02.088-.024.18-.062.26-.034.08-.1.145-.15.217z"
-       id="path386" />
-    <path
-       fill="#999CA5"
-       d="M377.758 357.654c.185-.59.434-1.17.55-1.774.428-2.242.986.207 1.644-.354-.53-1.574.28-3.732-1.486-5.308-.06-.05.308-.572.48-.873l2.133 2.996c.145-.59.118-1.22.377-1.372.485-.29.834.25.96.646 1.04 3.293 4.445 5.515 4.243 9.362.25.138.438.336.56.595-.39 2.55-1.51.98-2.447.443-.34-.397-.493-.98-1.096-1.142-.22-.05-.426-.124-.626-.206-1.852-.377-.807 1.683-1.742 2.064-1.983.87-2.83-.23-3.298-1.928-.29-1.025-.758-2.05-.252-3.146z"
-       id="path388" />
-    <path
-       fill="#525767"
-       d="M378.943 349.336c-.917-1.275-1.832-2.553-2.747-3.828l-1.12-1.977c1.76-.45 1.945 1.847 3.396 1.937.053.1.104.2.16.3.322.45.448 1.032.922 1.384.24.224.42.51.7.694.66.32.968.86.568 1.498-.568.914-1.246-.047-1.88-.006z"
-       id="path390" />
-    <path
-       fill="#717582"
-       d="M390.72 357.02c.073-.228.147-.454.226-.683.416.348 1.104.633 1.198 1.055.27 1.146 1.817 1.734 1.35 3.14-.314.938-1.262.49-1.694-.855-.167-.517-.163-1.08-.333-1.592-.073-.222-.392-.355-.595-.53-.053-.18-.103-.356-.153-.534z"
-       id="path392" />
-    <path
-       fill="#818490"
-       d="M386.8 361.498c-.05-.174-.1-.35-.146-.523.475-.316 1.004-.557 1.173.238.205.98.914 1.412 1.667 1.85.675.598.442 1.1-.17 1.557-2.884.61-1.546-2.192-2.524-3.122z"
-       id="path394" />
-    <path
-       fill="#AFB1B9"
-       d="M380.252 347.844c-.228-.13-.45-.26-.68-.39-.688-.48-1.414-.946-1.104-1.985v-.003c1.695-.03 1.352 1.463 1.784 2.377z"
-       id="path396" />
-    <path
-       fill="#9497A2"
-       d="M389.248 364.273c.085-.402.166-.807.248-1.21.182-.048.357-.097.537-.144.32.48.642.966.96 1.45-.13.227-.263.45-.395.678-.473.475-.9.254-1.325-.08-.147-.226-.154-.458-.025-.695z"
-       id="path398" />
-    <path
-       fill="#92959F"
-       d="M377.758 357.654c.426 1.104 1.107 2.183 1.216 3.314.166 1.764 1.283 1.434 2.348 1.44.217.11.37.29.466.515.042.234.018.46-.078.682-.364.438-.938.63-1.285 1.092-.548 1.11-.19 2.396-.69 3.517-2.01 1.916-.603 4.004-.222 5.99.212 1.102 1.266 2.128-.053 3.184-1.242.563-.984 1.9-1.465 2.858-.7 1.486-1.462 1.54-2.228.06-.292-.563-.217-1.27-.6-1.813-.396-.814-.943-1.612-.882-2.55.063-.913-.564-.34-.854-.495-.674-.406-.824-.955-.47-1.646-.628-1.39-.154-2.692.39-3.938.305-.7.665-.302.886.17v.002c.583-.032 1.23-1.107 1.742.104-.545-2.2.7-4.54-.535-6.688-.808-1.4-.67-2.98-.774-4.514-.043-.568.407-1.05.688-1.01 2.382.316 1.023-1.427 1.295-2.257.84.398.86 1.254 1.105 1.984z"
-       id="path400" />
-    <path
-       fill="#606473"
-       d="M370.134 365.424c.767.133 1.265.57 1.498 1.31-1.65 1.84-2.94 3.73-2.757 6.472.07 1.033.56 1.402 1.037 1.992-.072.11-.146.22-.223.328-1.493.867-2.13-.29-2.865-1.21-.047-.18-.094-.355-.142-.53.396-.682.142-1.184-.44-1.598-.05-.176-.097-.354-.145-.53-.377-2.183.236-4.546-1.188-6.536.27-.403.72-.166 1.065-.293 1.34.17 1.832 1.395 2.72 2.13 1.276 1.054 1.304.183 1.05-.853-.17-.082-.245-.188-.23-.32.014-.13.042-.2.088-.215.178-.052.356-.1.53-.148z"
-       id="path402" />
-    <path
-       fill="#C8CAD0"
-       d="M372.963 373.797c.168.59.31 1.197.97 1.46-.485 1.22-.326 2.48-.336 3.753-.02 2.213-1.188 2.688-3.36 1.48-.258-1.826-.458-3.65.217-5.44.33-.778-.842-1.89.29-2.358.868-.364 1.524.613 2.22 1.105z"
-       id="path404" />
-    <path
-       fill="#606473"
-       d="M370.45 375.053c.77 1.828.26 3.74.365 5.613.96 1.893 2.614 3.572 1.843 5.996-.16.502-.23 1.14-.922 1.17-.604.03-1.125-.395-1.235-.906-.672-3.084-1.9-6.066-1.75-9.303.045-.965.655-1.676 1.167-2.428v.002c.176-.05.356-.097.533-.144z"
-       id="path406" />
-    <path
-       fill="#D4D3D5"
-       d="M411.016 383.535c-.804.68-.775 1.524-.498 2.426-1.855.306-3.826 2.034-5.46-.438-.282-1.46-1.362-3.086.836-4.025 1.827.378 3.874.208 5.122 2.038z"
-       id="path408" />
-    <path
-       fill="#9497A2"
-       d="M405.894 381.492c-.918 1.328-.434 2.678-.06 4.022-.828.563-1.56.11-1.836-.534-1.11-2.595-2.426-5.104-3.275-7.806.18-.05.355-.1.537-.147 1.083-1.188 1.765-.425 2.413.496.326.48.65.957.98 1.436.68.714 1.04 1.583 1.24 2.532z"
-       id="path410" />
-    <path
-       fill="#C8C7CA"
-       d="M400.724 377.176c1.634 1.576 2.616 3.47 3.15 5.697.25 1.027.466 2.396 1.96 2.643 1.452 1.27 3.216-.67 4.686.445l1.018 3.714-.01.014c-1.307.592-1.907-.568-2.755-1.096-1.345.23-2.573-.002-3.608-.957-1.064-.854-1.888-1.91-2.583-3.072-1.003-2.918-3.12-5.148-4.737-7.688-.188-1.003-.96-1.765-1.118-2.775 1.048-1.21 1.048-1.21 2.224.703.464.88.89 1.797 1.774 2.373z"
-       id="path412" />
-    <path
-       fill="#C8C7CA"
-       d="M403.674 377.525c-.703-.66-1.583-.457-2.414-.498-.276-.65-.554-1.31-.824-1.95.31-1.16 1.688.975 1.863-.615 1.117.724.97 2.018 1.374 3.063z"
-       id="path414" />
-    <path
-       fill="#BCBBBF"
-       d="M399.496 368.363c-.345-.264-.684-.537-1.033-.79-.24-.173-.45-.685-.776-.308-.154.176.035.654.07.994.076.55.185 1.212-.44 1.425-.61.21-.983-.37-1.25-.842-.3-.53.353-1.273-.338-1.75 2.078-1.767 2.383-1.665 3.766 1.27z"
-       id="path416" />
-    <path
-       fill="#575C6C"
-       d="M381.606 363.473l-.14-.53c.604-.905-.547-3.503 2.23-2.316.566.057.317 1.53 1.353.774.582.05 1.054 2.08 1.75.1 1.334.47.474 2.872 2.445 2.774.052.176.1.354.146.53.418.42 1.064.685.953 1.45l-.234 1.21c-.32.417-1.703-.437-1.17 1.09.306.87.605 1.903-.066 2.83-.52.284-1.014.167-1.495-.087-.784-.738-1.396-1.652-1.936-1.94.933.894 1.66 2.343 1.2 4.187-.702 1.01-2.142-.64-2.744.76-1.426-1.402-2.206-3.137-2.614-5.062.146-1.074-.1-2.104-.386-3.125-.282-1.03-.112-1.922.706-2.644z"
-       id="path418" />
-    <path
-       fill="#9EA0AA"
-       d="M398.315 376.674c2.51 2.06 4.11 4.697 4.956 7.81-.738.24-1.276.563-1.147 1.43.05.315.02.647.02.975-.003.187-.03.38 0 .566.04.266.124.476.124.75 0 .324-.062.608-.203.898-.116.232-.273.568-.52.68-.574.263-1.48-.112-1.952-.465-.97-1.312-1.338-2.823-1.496-4.403.644-1.198-.053-1.98-.873-2.72-.124-.214-.196-.443-.235-.687.366-1.16-.18-1.623-1.283-1.662-.22-.146-.375-.343-.48-.578-.1-.41-.01-.777.244-1.107.106-.075.22-.15.33-.227.48-.324.97-.646 1.452-.972.255-.458.715-.163 1.063-.29z"
-       id="path420" />
-    <path
-       fill="#A8ABB4"
-       d="M387.64 370.99l1.205.244c.17-.066.32-.158.436-.298.48-.573-.406-1.864.818-1.938 1.293-.08 1.396 1.084 1.554 2.05.86.84 1.118 1.948 1.388 3.056.146 1.654.62 3.287.345 4.973.17.64.276 1.27-.1 1.88-.58.383-1.016.077-1.44-.29-.33-.415-.724-.782-1.02-1.227-1.012-1.154-1.814-2.45-2.48-3.83-.118-.223-.205-.46-.27-.7-.063-.98-.19-1.947-.643-2.845-.077-.39-.043-.754.21-1.075z"
-       id="path422" />
-    <path
-       fill="#818490"
-       d="M391.65 371.047c-.437-.53-.877-1.06-1.727-2.082.36 1.344.567 2.11.884 3.273-.897-.46-1.432-.73-1.963-1.006-.685-1.656-.9-3.394-.884-5.216 1.055.01 1.258 1.254 2.147 1.445 1.32.854 2.198 1.892 1.544 3.587z"
-       id="path424" />
-    <path
-       fill="#90939D"
-       d="M392.602 378.795c1.135-1.473-1.396-3.287.438-4.693.872 1.313 2.688 1.945 2.757 3.83v.004c-.574.402-.642.95-.454 1.574.12.71 1.064 1.602-.18 2.043-.793.28-1.313-.408-1.56-1.176-.195-.617-.445-1.195-1-1.582z"
-       id="path426" />
-    <path
-       fill="#9EA1AA"
-       d="M398.315 376.674c.04 1.564-.743.076-1.066.29-.07-2.522-3.265-3.33-3.48-5.933 1.227-.187 1.38 1.04 2.178 1.15 1.04.29.638 1.38 1.1 1.985.42.84.844 1.675 1.267 2.51z"
-       id="path428" />
-    <path
-       fill="#BCBBBF"
-       d="M397.045 374.172c-.83-.406-.854-1.26-1.1-1.988l.252-1.217c.227.13.448.26.673.39.374.233.754.442 1.215.245 1.375.77.276 2.21.858 3.197-.752.155-.747-1.993-1.898-.628z"
-       id="path430" />
-    <path
-       fill="#818490"
-       d="M390.347 366.254l-.952-1.45c.4.08.804.163 1.204.245-.117.393.776 1-.253 1.204z"
-       id="path432" />
-    <path
-       fill="#AEB0B8"
-       d="M398.084 371.602c.02.35.066.832-.34.87-.736.067-.654-.675-.876-1.114.408.08.814.163 1.216.244z"
-       id="path434" />
-    <path
-       fill="#CCCBCE"
-       d="M406.35 406.51c-1.272-1-.654-2.186-.327-3.34.09.012.187.006.27.033.085.024.155.084.232.125-.07-.36.215.043.026-.256-1.454-2.313-1.012-3.904 1.704-4.697 1.063.06 1.73.686 2.227 1.55.097 1.43 2.118 2.853-.035 4.34-.352.245.31.776.633 1.02 1.052.786 1.98 1.938 3.535 1.395-.036-.776-.81-.926-1.178-1.405-.688-.753-1.444-1.464-1.496-2.582.076-.4.286-.716.65-.914 1.187-.126 1.646.908 2.386 1.495.75.59 1.448 1.48 2.496.463 1.746-.507 3.366-.168 4.9.737 1.93.772 2.698 2.672 3.96 4.097-.146.217-.34.383-.57.504-.604.158-1.2.3-1.78.59-2.782 1.38-2.792 1.354-4.308-1.715-.507 1.786-4.11 1.597-2.16 4.51.123.226.202.468.247.722-.188 1.21-.52 2.354.422 3.527.612.765.742 1.862-.462 2.51-.263.048-.52.036-.774-.046-.23-.123-.435-.285-.615-.48-2.065-1.853-2.572-4.687-4.252-6.792.384-2.77-1.958-3.218-3.627-4.23-.615-.545-1.32-.92-2.1-1.162z"
-       id="path436" />
-    <path
-       fill="#C2C1C4"
-       d="M431.452 410.602c.5.588 1.128.8 1.883.63.313.312.358.7.314 1.114-.184 1.563 1.082 3.072.19 4.662-.14.33-.478.67-.365.998.93 2.77-.72 3.115-2.93 2.994.105 1.258 1.466 2.23.664 3.545-1.07.574-2.033.617-2.748-.55.097-.672-.394-.987-.838-1.33-.727-.74-1.43-1.49-1.82-2.472-.244-1.29-1.186-2.584-.315-3.896.623-.943-.454-.54-.598-.91-.498-1.27-1.826-2.44-.204-3.82.9-.376 2.168.214 2.742-1.034.27-.205 1.353 1.235.875-.373-.212-.715-.708-1.25.296-1.656v-.002c.858.826 1.994 1.275 2.852 2.1z"
-       id="path438" />
-    <path
-       fill="#7C7F8B"
-       d="M427.432 410.533c-.277.81.396 1.467.492 2.278-1.286.157-1.964-.966-3.005-1.033-.528.16-1.097.31-1.293.9-.52 1.557-1.73 1.67-2.854 1.048-1.172-.646-2.48-.448-3.63-.973-1.53-.6-1.892-1.476-.905-2.93.813-1.197 2.58-1.47 2.86-3.27.088-.58.895.093 1.11.542.443.912 1.9 1.422.826 2.906 1.882-.232 2.903-2.27 4.76-1.316.082.646.27 1.22.96 1.464.227.127.453.256.678.385z"
-       id="path440" />
-    <path
-       fill="#CBCACD"
-       d="M410.21 391.19c3.005.917 4.79 2.855 5.07 6.052.67.906-.483 1.688-.172 2.57-.558 2.596-2.23.5-3.35.8-.725-.208-1.22-.86-.998-1.41 1.042-2.624-.9-3.097-2.573-3.804-.73-.47-1.13-1.072-.795-1.97.798-.92.16-3.666 2.82-2.237z"
-       id="path442" />
-    <path
-       fill="#B5B4B8"
-       d="M410.21 391.19c-1.06.063-2.063.134-1.48 1.683.277.736.026 1.044-.746.628-1.25.03-1.633-1.364-2.705-1.635-.35-.188-.647-.432-.91-.73-1.57-2.77-1.35-3.407 1.37-3.892.763-.185 1.853 2.146 2.44-.35.06-.255.687.626.645 1.228.69.94 1.938 1.508 1.935 2.905-.183.06-.366.114-.55.166z"
-       id="path444" />
-    <path
-       fill="#C5C4C7"
-       d="M414.79 399.678c-.983-1.043.586-1.572.49-2.436 2.962 1.824 4.44 5.104 7.096 7.23-1.628.503-3.13-.23-4.685-.46-.707.115-1.455-.236-1.456-.803.002-1.425-1.14-2.292-1.445-3.532z"
-       id="path446" />
-    <path
-       fill="#CBCACD"
-       d="M410.758 391.033c-.968-.752-1.792-1.6-1.936-2.9 1.127.125 1.77 1.096 2.7 1.557.158.68.575 1.513-.764 1.343z"
-       id="path448" />
-    <path
-       fill="#C2C1C4"
-       d="M426.758 410.146c-.474.404-.923.557-1.33-.08-.387-.6-.043-.998.37-1.38.178-.046.353-.085.533-.122.145.53.287 1.055.428 1.582z"
-       id="path450" />
-    <path
-       fill="#CECDCF"
-       d="M432.946 411.904l.39-.674c.09-.422.176-.844.264-1.268.183-.205.41-.285.682-.246.773.29 1.347.81 1.73 1.54.105.253.163.52.192.79.5 2.105 1.848 3.912 2.17 6.08.302 2-.156 2.412-2.316 2.084-.493-.27-.863-.66-1.116-1.158.476-2.698-1.063-4.84-1.996-7.148z"
-       id="path452" />
-    <path
-       fill="#D5D6DB"
-       d="M421.47 399.002c-.262-1.295-1.53-1.89-2.268-3.12 1.132-.37 1.517.7 2.224.85 1.872.927 3.894 1.737 3.56 4.628-1.536-.358-2.59-1.256-3.517-2.358z"
-       id="path454" />
-    <path
-       fill="#C8C7CA"
-       d="M431.452 410.602c-1.17-.4-2.33-.813-2.85-2.098 1.17.396 2.336.803 2.85 2.098z"
-       id="path456" />
-    <path
-       fill="#8F929C"
-       d="M381.983 369.086c.172.443.29.98.56 1.373.228.34.598.552.848.868.32.4.667.815 1.015 1.207.513.572.687 1.23.973 1.908.304.73.884 1.307 1.23 2.008.29.59.6 1.173.883 1.753.128.254.353.72.355 1.012.005.268-.223.643-.367.885-.368.596-.813 1.1-1.02 1.773-.245.813-.658 1.438-.262 2.252.473.955.722 2.018 1.02 3.04.68 2.296 1.298 4.61 1.73 6.97.437-1.193.77-2.22 2.29-1.95.484.29.752.733.91 1.26-.284 2.104.805 3.82 1.52 5.663.73 1.88.102 2.56-1.868 2.185-2.183-.08-.11-2.464-1.982-2.837-.907.73.748 2.313-.694 3.326-.47-2.17-2.02-3.846-2.01-6.174-.785 2.25-.815 4.523-.52 7.12-1.69-1.368-.995-3.214-1.882-4.563-1.246 1.146-1.995 2.37-1.373 4.14-1.554-2.03-1.22-4.578-2.202-6.703-1.27-2.243.343-4.42.27-6.687-.065-2.172-.08-4.272-.7-6.356-.12-.783.497-1.32.68-2.035.196-.27-.1-.104-.11-.056-.266 1.02-.718 1.727-1.808.698-.85-1.216-1.175-2.48-.403-3.86.156-.22.498-.52.44-.643-.938-2.094-1.398-4.202-1.602-6.555-.202-2.377-.77-2.328 1.52-2.045.568-.3 1.15-.455 1.778-.18.487.25.643.722.783 1.2z"
-       id="path458" />
-    <path
-       fill="#C6C8CE"
-       d="M369.914 375.195c-1.325 4.242.535 8.068 1.5 12.428.435-2.71.428-2.706-.53-4.88-.3-.673-.524-1.37-.066-2.076 2.456.104 2.44-1.77 1.838-3.046-.835-1.77.227-1.927 1.277-2.36.114-.417.23-.84.536-1.97.44 2.114.674 3.577 1.394 4.87-.36 3.363-.348 6.718.58 10 .788 2.783.58 5.39-1.114 7.812-.24.353-.498.783-.055 1.21 0 1.353.003 2.702.006 4.305-1.414-.656-1.71-1.933-1.785-2.79-.365-4.094-3.69-6.993-3.924-11.303-.23-4.39-1.284-8.827-2.74-13.075.95.553 1.896 1.145 3.084.875z"
-       id="path460" />
-    <path
-       fill="#A5A8B1"
-       d="M381.03 382.492c1.5 1.348 1.61 3.137 1.564 4.96-.007.25-.316.49-.33.745-.128 2.504.216 5.08-1.134 7.4-.97-.447-.83-1.556-1.44-2.536-.395 1.686-.08 3.11.18 4.63-2.266-.532-1.607-2.77-2.65-3.895-.478-.273-.663-.813-.372-1.15 1.816-2.11.925-4.44.635-6.722-.254-1.978-.704-3.946.02-5.92-.01-1.942.397-2.645 1.56-2.696.384 1.42.768 2.84 1.15 4.26.494.105.334.804.818.925z"
-       id="path462" />
-    <path
-       fill="#828692"
-       d="M377.498 380.004c.262 3.234 1.147 6.365 1.27 9.658.07 1.887-1.602 2.584-1.55 4.133-.604 1.283-.386 2.625-.183 3.908-.844.393-.446-2.53-1.766-.527-.572-1.164-.76-2.13.197-3.383 1-1.31.635-3.012.296-4.643-.765-3.65-2.166-7.354.095-10.992.914.434.358 1.29.56 1.93.478 1.51.733.12 1.08-.084z"
-       id="path464" />
-    <path
-       fill="#CACBD1"
-       d="M391.793 401.29c1.535.02 1.916-.274 1.178-1.964-.728-1.66-2.687-3.166-1.434-5.396 2.502-.842 2.453 1.23 2.99 2.62-.13.23-.26.458-.392.687.473 1.472.313 3.297 2.218 3.97.27.307.547.614.817.922-.14.113-.252.288-.407.337-3.074.953-3.104 1.022-.803 3.362.982 1 2.474 1.687 2.01 3.508-.65-.07-.75-1.313-1.484-.89-.73.426.188 1.345-.36 2.295-.832-1.993-2.2-2.32-3.906-1.565.233-.656-.173-1.36.35-2.047.918-1.198.34-1.97-.96-2.36.166-1.155 1.32-2.256.183-3.48z"
-       id="path466" />
-    <path
-       fill="#C6C8CE"
-       d="M366.248 372.188c.908.324 1.884.63.438 1.6-.145-.534-.29-1.067-.438-1.6z"
-       id="path468" />
-    <path
-       fill="#CECED0"
-       d="M400.908 415.98c.646.74 1.287 1.48 1.958 2.255 1.613-.787.648-2.047.396-3.32 1.683.656 1.634 2.173 2.23 3.255.366.157.568.448.65.834.06 1.09-.98 1.23-1.536 1.8-.21.13-.437.148-.67.07-1.02-1.045-1.975-2.165-3.083-3.103-.867-.737-.504-1.215.055-1.79z"
-       id="path470" />
-    <path
-       fill="#C5C4C7"
-       d="M407.93 424.924c-1.103.863-2.062.44-2.978-.33-.424-.418-.342-1.814-1.524-.754-.536.48-.964-.1-.94-.42.104-1.438-.86-2.447-1.15-3.857.74.66 1.483 1.316 2.228 1.976.958.03 1.777.476 2.62.857.655.322.81 1.125 1.42 1.488.104.345.214.693.325 1.04z"
-       id="path472" />
-    <path
-       fill="#CDCCCE"
-       d="M406.11 422.57c-1.356.91-1.728-.61-2.552-1.034.128-.222.254-.44.38-.663.18-.05.356-.098.538-.146.114.013.23.02.348.028.678.288 1.202.72 1.375 1.478-.03.11-.058.224-.09.337z"
-       id="path474" />
-    <path
-       fill="#B6B8C0"
-       d="M408.225 398.596c-.723.844.69 1.414.338 2.225-1.12.22-.974-1.273-2.153-1.27.02 1.724.65 3.246 1.45 4.91-1.058.073-1.27-.886-1.837-1.29-.377-.355-.633-1.085-1.228-.9-.76.23.233.956-.197 1.377-1.344.063-.438-1.675-1.65-1.914.033 1.084.08 2.104.09 3.118.012.563-.06 1.276-.68 1.288-.322.002-.652-.744-.978-1.15-.27-1.635-.646-3.255-.687-4.923.02-.482.15-.938.438-1.332.298-.318.732-.328 1.086-.51.084-1.005-1.275-1.54-.854-2.613.243-.783-.405.164-.41-.177-1.435-.604-1.72-1.762-1.54-3.144.776-.855-.94-2.228.6-2.93l1.063-.284c.352.115.58.367.777.658.283.508.7.89 1.174 1.22.197.15.368.32.53.506.778 1.002 1.325 2.143 1.478 3.377.123 1.012.52 1.65 1.473 1.957.638.54 1.76.62 1.718 1.802z"
-       id="path476" />
-    <path
-       fill="#D4D5DA"
-       d="M406.35 406.51c1.064-1.105 1.75-.346 2.42.49.772 1.43 3.194 1.176 3.336 3.258-.423 1.027-.195 1.89.54 2.72.47.532 1.073.983 1.317 1.696.19.568.746 1.16.104 1.72-.503.442-1.042.083-1.46-.23-.676-.505-1.418-.773-2.237-.888-.677-.176-1.187-.565-1.505-1.19-.234-.36-.052-.96-.546-1.164-2.11-.88-2.378-2.49-1.766-4.43.162-.517.5-.982-.06-1.452-.044-.18-.093-.354-.143-.53z"
-       id="path478" />
-    <path
-       fill="#CCCBCE"
-       d="M406.498 407.04c.974-.052 1.5.36 1.017 1.308-.998 1.95-.762 3.313 1.5 4.06.25.085.28.83.415 1.272-.438.77-.84 1.604-1.98 1.1-.272-.305-.55-.606-.827-.91-.447-2.274-2.27-4.518-.125-6.83z"
-       id="path480" />
-    <path
-       fill="#9497A1"
-       d="M401.148 399.906c.34 1.685.992 3.35.232 5.078-.058-.168-.106-.338-.16-.512-1.143-1.602-1.657-3.37-1.428-5.34.61-.02 1.334-.237 1.356.774z"
-       id="path482" />
-    <path
-       fill="#9A9DA8"
-       d="M405.807 419.22l-.314-1.054c.473-.268.396-1.555 1.27-.93 1.574 1.12.398-1.027 1.102-.845 1.408-.062 1.667 1.337 2.52 1.98.407.68.444 1.396.25 2.145-.09.223-.225.41-.397.564-.672.192-.358 1.395-1.313 1.306l-.005-.002c-.785-.395-1.734-.418-2.406-1.072-.676-.548-.215-1.478-.707-2.09z"
-       id="path484" />
-    <path
-       fill="#DBDBDC"
-       d="M410.187 418.61c-1.606.136-1.384-1.652-2.325-2.218-.427-.463-.587-.998-.41-1.617l1.978-1.098c.23.64.688.896 1.354.783.813.87 2.21 1.48 1.402 3.084-.588.493-1.63.147-2 1.067z"
-       id="path486" />
-    <path
-       fill="#9598A3"
-       d="M401.148 399.906c-.412-.328-1.284.148-1.354-.77-.222-.593-.322-1.268-.688-1.745-.28-.37-.354-1.437-1.063-.933-.336.24-1.678.592-.814 1.657-1.222.04-1.865-.928-2.7-1.56-1.34-.48-1.285-2.558-2.992-2.624-.145-.53-.287-1.063-.434-1.594-1.092-.258-1.444-.998-1.21-2.014.306-1.324.074-2.688.358-4.008.036-.365-.084.05.073-.255.375-.722-.178-1.55.095-2.273.145-.385.474-.414.72-.686.344-.372.346-.936.638-1.32.124-.165 1.393-.84 1.384-.868l-.56-2.12c1.412.126 1.367 1.696 2.465 2.622-.02-.914-.036-1.523-.05-2.13.103-.317.284-.354.53-.147.048.178.094.354.142.527.508.176 1.03.332 1.11.984-1.036 2.184-.732 3.918 1.272 5.55 1.793 1.456 1.214 4.034 2.13 5.964-.415 1.418.11 2.408 1.395 3.055.146.938.897 1.455 1.424 2.146.493.65 1.333 1.62-.28 2.107-.43-1.168-1.907-1.344-2.356-2.486-.188-.527-.27-1.104-.396-1.28.32.42.207 1.415.826 2.087.3.24.512.528.582.91-.086.404-.167.804-.248 1.206z"
-       id="path488" />
-    <path
-       fill="#B6B8C0"
-       d="M396.354 401.205c-.728.283-1.453.565-2.823 1.104 1.522-1.956-.137-3.52.606-5.073.74 1.32 1.48 2.644 2.218 3.968z"
-       id="path490" />
-    <path
-       fill="#CDCCCE"
-       d="M410.187 418.61c-.037-.58-.69-1.29-.078-1.69.602-.395 1.08.33 1.534.728.67.28 1.05.82 1.306 1.47.135.643.453 1.22.646 1.84.123.498.064 1.02.21 1.52.173.838.84 1.72.034 2.506-.88.86-1.37-.368-2.078-.504-1.02-.596-2.104-1.104-2.837-2.088.674-.854-.554-1.364-.406-2.172.858-.507 1.078.658 1.72.67.285.166.57.33.855.502-.282-.17-.568-.336-.854-.5-.272-.757-.228-1.517-.053-2.28z"
-       id="path492" />
-    <path
-       fill="#9B9EA9"
-       d="M411.758 424.477c.676-.924 1.146.277 1.77.197.312-.9-.59-1.455-.583-2.242.896-.727 1.795-.166 2.695-.022.644.303 1.02.815 1.192 1.495.154.8-.027 1.697.7 2.326.407.53.705 1.09.476 1.782-.16.213-.367.363-.61.467-.353.075-.736.106-1.042-.095-.784-.52-1.38-1.938-2.526-.47l-2.072-3.438z"
-       id="path494" />
-    <path
-       fill="#D2D3D8"
-       d="M414.852 431.646c-.302-.682.445-1.65-.59-2.127-.27-.312-.545-.624-.817-.935 1.586-.502 2.896-.96 3.88 1.27.635 1.432 2.48 2.255 3.503 3.628.168.386.188.767-.048 1.13-.414.463-.695 1.586-1.495.405-.404-.602-.742-.715-1.264-.22-1.328-.775-1.96-2.253-3.168-3.152z"
-       id="path496" />
-    <path
-       fill="#868995"
-       d="M420.46 433.53c-1.723-.328-3.042-1.818-3.6-2.92-.437-.876-1.1-1.48-2.045-1.757-.91-.264-1.783-.463-1.65-1.705.025-.256-.083-.127.105-.315.112-.11.494-.22.646-.304.308-.17.642-.595.98-.472.25.092.548.65.717.857.23.276.467.56.76.78.228.166.786.252.94.418 1.444 1.578 3.566 2.757 3.147 5.416z"
-       id="path498" />
-    <path
-       fill="#CDCCCE"
-       d="M406.892 421.215c.802.17 1.483.547 2.023 1.172-.976.03-1.858.137-1.316 1.5-.76-.143-1.255-.582-1.488-1.316v-.003c.116-.424.08-.9.473-1.217l.307-.135z"
-       id="path500" />
-    <path
-       fill="#A1A3AD"
-       d="M426.917 440.375c-1.77-1.61-3.542-3.228-5.313-4.84-.114-.978-.894-1.912-.165-2.94.212-.165.45-.266.718-.3 1.52.05 2.313 1.162 3.173 2.172.5 1.498 1.647 2.566 2.543 3.807.16.685.156 1.348-.228 1.968-.212.207-.455.252-.728.133z"
-       id="path502" />
-    <path
-       fill="#D7D6D8"
-       d="M421.957 432.576c-.734.913.388 2.05-.354 2.963-.273-.31-.55-.618-.823-.928-.104-.358-.214-.72-.316-1.084-.75-1.98-2.755-3.227-3.15-5.41.18-.047.36-.092.54-.137 2.234.756 3.8 2.112 4.103 4.596z"
-       id="path504" />
-    <path
-       fill="#D1D1D3"
-       d="M427.446 440.24c-.152-.593-.34-1.185.09-1.742.942-.99 1.602.944 2.52.235.845-.21 1.47.115 1.956.787.6 1.64-.564 2.453-1.57 3.338-.174.05-.35.103-.522.15l-1.365-.783c-.128-.797-.654-1.37-1.11-1.986z"
-       id="path506" />
-    <path
-       fill="#B8B7BB"
-       d="M414.852 431.646c1.8.306 3.083 1.13 3.168 3.156.18.3.558.646.5.887-.124.522-.565.225-.796.042-1.37-1.066-3.03-1.94-2.872-4.086z"
-       id="path508" />
-    <path
-       fill="#DADBDE"
-       d="M427.446 440.24c1.485.04 1.6.846 1.104 1.985-.816-.375-1.314-1.033-1.632-1.852.176-.04.353-.085.528-.134z"
-       id="path510" />
-    <path
-       fill="#DFE0E3"
-       d="M428.32 449.688c-.283-.293-.564-.588-.85-.88l-.974-1.505c1.66-.297 2.827-1.896 4.648-1.78.276-.808.673-1.204 1.42-.417.607 1.332-.103 2.34-.815 3.354-.182.19-.395.354-.618.49-.992.02-1.68 1.24-2.813.738z"
-       id="path512" />
-    <path
-       fill="#DBDCDF"
-       d="M432.215 445.227c-.483-.363-.735.11-1.066.297-.324-.92-.427-1.852-.17-2.807.482-.77.702-1.834 1.954-1.742.253.133.457.316.626.55.3.503.435 1.048.41 1.635-.24.98-.423 2.01-1.755 2.067z"
-       id="path514" />
-    <path
-       fill="#C7C6C9"
-       d="M432.794 441.055c-.594.564-.915 1.428-1.813 1.664-.18.046-.358.093-.54.142.47-1.075.937-2.147 1.4-3.227.124-.063.244-.12.366-.184.824.306.984.855.588 1.605z"
-       id="path516" />
-    <path
-       fill="#E9E9EA"
-       d="M430.895 447.896c.17-.074.343-.13.52-.17 1.352.195 1.89 1.486 2.897 2.146.18.174.316.37.42.602.168.605.112 1.213-.013 1.82-.32 1.555-3.025.485-3.703-.268-.525-.583-1.076-1.114-.893-1.938.127-.548.152-1.92.77-2.192z"
-       id="path518" />
-    <path
-       fill="#DEDEDF"
-       d="M430.793 448.498c.37.36-.277 1.57-.616 1.854-.583-.322-1.383.453-2.055.408-.515-.034-1.234-.255-1.22-.88.016-.53.494-1.543 1.115-1.45.466.07.826.455 1.33.385.385-.053.68-.392 1.072-.42.178-.01.297.03.373.103z"
-       id="path520" />
-    <path
-       fill="#8D909B"
-       d="M365.98 364.828c.046 1.563-.745.076-1.066.293-.858-.34-.48-1.018-.43-1.603.5.436.995.874 1.495 1.31z"
-       id="path522" />
-    <path
-       fill="#7B7F8B"
-       d="M369.604 365.566l.146.537c-.477.055-.937.043-1.147-.477-.052-.127.004-.422.09-.46.414-.18.658.143.91.4z"
-       id="path524" />
-    <path
-       fill="#A9ACB5"
-       d="M383.698 360.625c-1.95-.393-1.165 1.854-2.23 2.314-.05-.18-.1-.356-.145-.532-.47-1.23-.43-2.54.73-3.162.86-.467 1.28.664 1.645 1.38zM385.05 361.4c-.647.627.297 1.133.132 1.77-1.89-.055-1.314-1.52-1.483-2.544.22-.238.514-.722.645-.68.682.212.44.97.704 1.454z"
-       id="path526" />
-    <path
-       fill="#575C6C"
-       d="M378.47 345.47c.367.66.733 1.323 1.103 1.985-1.362.22-1.54-.1-1.104-1.986z"
-       id="path528" />
-    <path
-       fill="#A9ACB5"
-       d="M381.983 369.086l-.828-.926c-2.432-.863-1.182-2.72-1.144-4.25.392-.654 1.09-.2 1.595-.44-.696 1.93 1.14 3.686.378 5.616z"
-       id="path530" />
-    <path
-       fill="#6F7380"
-       d="M380.012 363.91c.404 1.412-.29 3.117 1.144 4.25-.59.164-1.182.338-1.737-.096-.184-1.44-.532-2.902.592-4.154z"
-       id="path532" />
-    <path
-       fill="#C6C8CE"
-       d="M374.235 370.03c.508.675.808 1.34-.157 2.09-.63-.798-.197-1.442.157-2.09zM375.94 369.992c.217.813 1.062 1.565-.272 2.135-.452-.795.036-1.38.272-2.135z"
-       id="path534" />
-    <path
-       fill="#AEB0B8"
-       d="M401.368 390.14c-.098-.354-.19-.708-.29-1.063-.31-.646-.024-4.146.505-6.176 1.045.018.817 1.395 1.688 1.585.823.92 1.647 1.84 2.467 2.76-2.028.84-2.015 2.104-.75 3.627-.192.396-.492.67-.914.812-.434.093-.828-.034-1.205-.233l-.002.003c-.246-.732-1.593-.2-1.498-1.312z"
-       id="path536" />
-    <path
-       fill="#9598A3"
-       d="M388.643 374.717c.05.176.1.354.146.53.43 1.603.267 1.74-1.81 1.51-.397-.206-.638-.538-.758-.962-.188-.686.26-1.244.377-1.87 0-.126.006-.25.01-.374-.88-.712-.71-1.784-.994-2.712-.286-.934-.935-1.754-.984-3.29.885 1.63 2.79 1.69 3.01 3.442l.286 1.06c.968.694-.055 1.92.715 2.667z"
-       id="path538" />
-    <path
-       fill="#5E6372"
-       d="M386.512 375.29c.096.355.188.712.283 1.064.29.523.52 1.06.394 1.683-.063.23-.188.43-.36.596l-1.205-.256c-.925-.89-.826-2.055-.854-3.188l-.284-1.064c.104-2.432 1.52-.02 2.128-.577l.004-.003c.875.637.162 1.178-.106 1.744z"
-       id="path540" />
-    <path
-       fill="#C8C7CA"
-       d="M400.2 392.166c-.204-.176-.562-.33-.59-.53-.432-3.015-1.786-5.36-4.516-6.92-.773-.44-.7-1.384-.04-2.147.526-.616.973-1.306 1.453-1.962.547.06.933.262.817.912.05.178.1.354.147.53.63.513 1.45.92 1.116 1.976l1.425 5.336c-.288.958 1.056 1.808.19 2.804z"
-       id="path542" />
-    <path
-       fill="#AEB0B8"
-       d="M397.328 381.52c-.27-.305-.547-.61-.817-.912l-.818-.938c.824.086.91-1.846 1.88-.86.735.75.658 1.876-.244 2.71zM398.592 384.027c-.373-.66-.744-1.317-1.115-1.977 1.248-.137 1.593.857 1.896 1.697.135.368-.473.27-.78.28zM395.547 379.14c-.18.048-.355.097-.53.145-.325-.787-1.06-1.81.776-1.353l-.246 1.207z"
-       id="path544" />
-    <path
-       fill="#6E727F"
-       d="M386.695 378.1c-.156-.59-.332-1.184.104-1.742.68-.342 2.1.646 1.992-1.11.91 1.276 1.823 2.56 2.735 3.836-.174.698.313.817.813.918.27.31.547.608.818.913-2.3 1.313.378 2.69-.052 4.025-.92.006-1.167-1.01-1.85-1.3-1.158.655 1.816 2.257-.668 2.552-.125-.053-.254-.104-.38-.15-1.18-1.145-1.208-2.75-1.604-4.187-.376-1.406-.868-2.707-1.91-3.755zM388.643 374.717c-1.27-.61-.432-1.79-.716-2.666 1.155.645.87 1.673.716 2.667z"
-       id="path546" />
-    <path
-       fill="#CCCBCE"
-       d="M392.34 380c-.405.2-.322 1.326-1.04.752-.536-.43-.15-1.146.228-1.67l.813.918z"
-       id="path548" />
-    <path
-       fill="#545969"
-       d="M417.145 412.756c1.273-.988 2.385-1.182 3.69.156.605.62 1.813.96 2.316-.586.26-.787.963-1.062 1.77-.547-.328 1.868.01 2.34 1.905 2.88.758.217 1.01 1.307.583 1.438-2.655.824-.978 2.48-.88 3.826-1.23.613-1.605-.408-2.056-1.14-.63-1.03-1.45-1.768-3.176-2.51 2.174 2.187 4.354 3.425 5.512 5.64-.05.27-.187.49-.396.676-3.435.762-5.204-1.584-7.063-3.77-1.303-1.626-2.334-3.353-2.028-5.564-.052-.168-.113-.336-.177-.5z"
-       id="path550" />
-    <path
-       fill="#ACAEB6"
-       d="M417.327 413.256c1.366.693 1.41.725.687 1.795-.422.62-.146 1.007.22 1.435.52.615 1.358.95 1.59 1.818.505 1.05.8 2.207 1.8 2.986.91.71 1.347 1.683 1.353 2.876.01 1.582.856 2.752 2.047 3.71.467.757.43 1.5-.053 2.23-1.73 1.17-2.868-1.346-4.517-.72-1.784-.218-1.6-2.866-3.554-2.878-1.67-.318-1.1-1.234-.574-2.14 1.93-2.446 2.584.263 3.653.71-.91-1.074-2.14-2.113-3.448-3.07-.992-.73-1.734-1.604-1.313-2.98.436-.715 1.033-.895 1.79-.54.05.174.1.35.146.522v.002c1.192-.604.976-1.627.252-2.192-1.6-1.257-1.574-2.34-.08-3.564z"
-       id="path552" />
-    <path
-       fill="#C2C1C5"
-       d="M417.008 418.488c-.59.162-1.19.312-1.45.965-.464.57.554 1.492-.405 1.902-.818.353-1.296-.36-1.86-.77-.36-.266-.73-.518-1.072-.807l-.57-2.13c.8-1.355-.87-2.048-.86-3.19 1.188.015 1.988.802 3.237 1.177l-3.646-4.69c.458-.23.99-.502 1.522-.77.642.374.657.93.45 1.55.45.354.585 1.244 1.462.863.265-.115.898-.5.732-.078-1.124 2.853 1.71 3.972 2.462 5.978z"
-       id="path554" />
-    <path
-       fill="#DAD9DB"
-       d="M412.177 402.637c.593.797 1.185 1.596 1.773 2.393.705.588 1.074 1.61 2.174 1.7-.23.683.042 1.638-1.414 1.327-2.044-.438-3.628-1.412-5.144-2.797-.785-.72-.87-1.484-.573-2.145.478-1.068 1.135.733 1.838.01-.314-.875-.646-1.793-.978-2.71 1.697-.222 2.49.5 2.325 2.222z"
-       id="path556" />
-    <path
-       fill="#C1C0C4"
-       d="M412.177 402.637c-.518-1.014-1.116-1.932-2.323-2.223-.225-.894-1.09-1.207-1.627-1.816-.68-.396-1.36-.79-2.04-1.188-.15-.506-.18-.992.233-1.402.49-.682 1.978.81 1.997-.912 2.59-.035 3.823 1.383 3.024 3.482-.308.813-.03 1.385.67 1.813.62.394.747.925.456 1.58-.128.223-.257.446-.39.667z"
-       id="path558" />
-    <path
-       fill="#D1D0D2"
-       d="M412.567 401.97c-.15-.524-.303-1.05-.453-1.577-.07-1.273.507-.555.85-.248.87.783 1.394.363 1.825-.47 1.286.544 2.81.897 1.948 2.915-.357.848.703.898.954 1.422.154 1.725-.733 1.973-1.894 1.098-1.19-.897-2.16-2.08-3.23-3.14z"
-       id="path560" />
-    <path
-       fill="#C4C3C6"
-       d="M412.348 411.72c-.148-.517-.3-1.034-.448-1.552-.473-1.62-2.893-1.316-3.128-3.166 1.523.695 2.97 1.38 4.055 2.85.83 1.13.013 1.34-.48 1.867z"
-       id="path562" />
-    <path
-       fill="#DADADC"
-       d="M416.125 406.73c-1.587.532-1.905-.55-2.174-1.7 1.042.163 1.54 1.015 2.175 1.7z"
-       id="path564" />
-    <path
-       fill="#C0BFC3"
-       d="M435.35 418.693l.814.91c1.75.994 1.23 2.736 1.407 4.25.1.51.154 1.02-.02 1.52-.113.247-.284.44-.52.583-.25.09-.51.12-.77.098-.776-.11-1.23-.682-1.753-1.26-.017 1.23 1.102 2.563-.433 3.54-1.354-.534-2.086-1.874-3.33-2.557-.166-.563.107-.985.422-1.4-.897-1.51-1.798-3.02-2.854-4.8 1.805.04 3.303 1.39 4.444.545 1.04-1.254-1.998-2.238.414-3.137 1.064.14 1.493 1.09 2.18 1.708z"
-       id="path566" />
-    <path
-       fill="#ACAEB6"
-       d="M431.164 424.377c-.08.403-.158.81-.24 1.215-.103 1.387-.902 2.563-1.162 3.897-.284 1.187-.504 2.436-2.154 2.383-1.88-.648-2.438-2.063-2.24-3.904.48-1.767-.458-3.817 1.07-5.374.927-.32 1.605.066 2.172.764.49 1.242 1.703.68 2.554 1.017z"
-       id="path568" />
-    <path
-       fill="#A7AAB3"
-       d="M426.58 422.19c-1.736-2.48-4.818-3.505-6.556-6.01 1.828-.858 4.037-.07 4.98 1.728.395.75.313 1.877 1.523 2.02.594.786 1.188 1.575 1.784 2.366-.622.786-1.177.363-1.73-.105z"
-       id="path570" />
-    <path
-       fill="#656978"
-       d="M435.35 418.693c-.97-.258-1.813-.676-2.177-1.707.88-1.735-1.108-3.346-.23-5.082 2.23 1.758 3.572 3.83 2.408 6.79z"
-       id="path572" />
-    <path
-       fill="#545969"
-       d="M426.58 422.19c.577.032 1.157.067 1.734.103.2.326.665.582.293 1.065-.63-.21-1.257-.422-1.887-.633-.22-.067-.314-.17-.283-.305.03-.137.076-.213.14-.23h.003z"
-       id="path574" />
-    <path
-       fill="#CBCACD"
-       d="M408.418 395.096c.55 2.545-1.23.91-1.985 1.104-2.11-.793-.576-2.625-1.11-3.87-.002-.397.137-.746.365-1.062 1.61-.12 1.374 1.648 2.296 2.232-.57.73.1 1.115.434 1.596z"
-       id="path576" />
-    <path
-       fill="#B6B8C0"
-       d="M405.687 391.27c.088.35.174.705.262 1.06-1.184.495-1.88.15-2.02-1.162.354-.1.704-.195 1.057-.296.233.13.466.265.7.398z"
-       id="path578" />
-    <path
-       fill="#D4D5DA"
-       d="M436.778 424.01c-.45-1.437.392-3.05-.614-4.406.783.133 2.02.96 1.455-.96-.49-1.663-.763-3.395-1.824-4.864-.398-.555-1.41-1.23-.217-2.03 2.08-.128 1.77 1.946 2.68 2.9.453.61.473 1.314.44 2.026l2.903 2.068c-.504 1.047-.443 1.885.375 2.89 1.38 1.704-.938 2.398-1.273 3.673-.663 1.318-1.546 1.037-2.446.305-.567-.462-.782-1.257-1.482-1.602z"
-       id="path580" />
-    <path
-       fill="#DDDCDE"
-       d="M439.88 424.875c3.5-2.656.542-3.938-1.41-5.22 1.022-1.292 2.415.39 3.134-.913.182-.047.362-.1.542-.146l.006.01c.337.467.673.932 1.01 1.402.148 1.348 1.74 2.246 1.194 3.816-.75 1.49-2.197 1.49-3.57 1.65-.41-.035-.607-.394-.905-.6z"
-       id="path582" />
-    <path
-       fill="#6E727F"
-       d="M390.592 386.19c.3 1.49.85 2.974-.035 4.474-.415.7.164 1.183.548 1.677-1.88.783-1.298 2.556-1.52 4.395-3.094-4.207-2.594-9.234-4.605-13.416-.826-1.72.03-3.24 2.146-3.618 1.368-.48 1.428.39 1.502 1.383.142 1.882.813 3.593 1.964 5.106z"
-       id="path584" />
-    <path
-       fill="#BCBDC4"
-       d="M390.59 386.19c-1.853-1.13-2.61-2.927-2.63-4.95-.01-.826.113-1.373-.832-1.545-.102-.354-.2-.71-.303-1.063-.042-.18-.087-.355-.133-.533 1.952.7 2.628 2.22 2.878 4.157.176 1.333.67 2.624 1.02 3.932z"
-       id="path586" />
-    <path
-       fill="#C3C5CB"
-       d="M382.213 376.957c-.925-1.854-1.97-3.273-1.704-5.178.062-.47.19-.938.776-.88.222.02.618.375.593.46-.62 1.794 1.394 3.39.333 5.597z"
-       id="path588" />
-    <path
-       fill="#989BA6"
-       d="M381.03 382.492c-.017.174-.034.35-.053.522-.875-.155-.46-.996-.77-1.45.49-.453.736-.998.658-1.685-.066-.61-.29-1.296.47-1.647.21-.098.616-.09.76.05.69.682-.04 1.33-.177 1.962-.16.78-.578 1.503-.887 2.247z"
-       id="path590" />
-    <path
-       fill="#6E727F"
-       d="M384.77 375.19c.283 1.062.568 2.124.853 3.187-1.485-.74-1.385-1.906-.854-3.188z"
-       id="path592" />
-    <path
-       fill="#CDCCCE"
-       d="M405.807 419.22c.82.415.847 1.263 1.085 1.995l-.007.006c-.98.685-1.69.064-2.412-.495l.002.002c-.907-1.698.932-.965 1.332-1.506z"
-       id="path594" />
-    <path
-       fill="#CECED0"
-       d="M404.473 420.725c.803.164 1.604.33 2.412.496-.26.45-.518.897-.772 1.347-.535-.626-1.414-.944-1.64-1.842z"
-       id="path596" />
-    <path
-       fill="#B5B4B8"
-       d="M403.93 391.164c.546.604 1.218.996 2.018 1.162 1.604 1.11-1 2.748.484 3.873l-.245 1.21c-1.113-.313-1.98-.71-1.912-2.188.063-1.388-.932-2.517-1.406-3.776l1.06-.282z"
-       id="path598" />
-    <path
-       fill="#C1C0C4"
-       d="M400.814 396.578c.608.99 1.914 1.516 1.925 2.897-.446-.258-.897-.514-1.35-.77l-.678-.392c-.363-.6-1.18-1.23.102-1.735z"
-       id="path600" />
-    <path
-       fill="#9598A3"
-       d="M401.695 394.48c.52-.06.76.21.905.557.097.234.204.595-.266.523-.26-.037-.59-.164-.714-.36-.1-.16.044-.483.075-.72z"
-       id="path602" />
-    <path
-       fill="#C8C7CA"
-       d="M401.368 390.14c.515.42 1.293.532 1.497 1.306-.562-.362-1.974.245-1.497-1.305z"
-       id="path604" />
-    <path
-       fill="#B6B8C0"
-       d="M400.814 396.578c-.436.56-.25 1.147-.102 1.736-.986-1.646-1.976-3.294-3.27-5.45 2.328.77 2.744 2.333 3.372 3.714z"
-       id="path606" />
-    <path
-       fill="#9B9EA9"
-       d="M412.217 419.78c.52.147 1.188.14 1.524.473 1.383 1.35 1.448-.005 1.814-.8 1.36 2.525 4.464 3.497 5.588 6.247.158.39.525.692.46 1.446-.813-.703-1.58-1.467-2.448-2.096-.82-.596-1.596-1.695-2.833-.678-.17-.584-.313-1.187-.97-1.44-.908-.34-1.737-.78-2.17-1.718l-.963-1.435z"
-       id="path608" />
-    <path
-       fill="#B6B5B8"
-       d="M410.234 420.89c1.313-.15 2.007.374 1.985 1.907-1.16-.23-1.564-1.082-1.984-1.91l-.002.002z"
-       id="path610" />
-    <path
-       fill="#555A6A"
-       d="M413.182 421.215c1.027.188 1.52 1.05 2.17 1.717-.892.256-1.604-.336-2.407-.502l.237-1.215z"
-       id="path612" />
-    <path
-       fill="#8B8E99"
-       d="M416.896 426.512c1.157-.152 2.74-1.082 2.388 1.43-.042.29.738.7 1.142 1.062.693.416 1.576.526 2.083 1.266.183.846 1.77 2.03-.537 2.293l-.013.02-4.107-4.597c-.322-.494-.64-.984-.957-1.474z"
-       id="path614" />
-    <path
-       fill="#9598A3"
-       d="M427.955 431.533c.832-.42.8-1.34 1.16-2.025 1.897-.11 1.497 1.818 2.326 2.674.677.7.63 1.813.887 2.748.034.256.03.51-.01.764-.17.586-.593 1.09-.55 1.752.106 1.658-.86 1.412-1.885 1.044-.282-.195-.544-.416-.748-.693.17.272.444.438.68.65.19.08.273.187.256.32-.02.136-.052.208-.103.225.042.623.206 1.27-.416 1.813-.663-.79-.645-2.184-2.017-2.305-1.374-.945-2.607-1.986-2.737-3.822-.354-.277-.237-.65-.202-1.004.336-.912.208-1.975.897-2.768 1.046-.662 1.328 1.647 2.465.627z"
-       id="path616" />
-    <path
-       fill="#A2A5AE"
-       d="M425.19 433.99c-.13.228-.263.454-.394.686-.942-.705-1.89-1.408-2.828-2.115 1.31-.78-.228-1.49-.063-2.24.993-.648 3.067.237 3.31 1.5.132.698.198 1.45-.024 2.17z"
-       id="path618" />
-    <path
-       fill="#C7C6C9"
-       d="M429.82 438.457c.36-.347 1.925.405 1.063-.992-.907-1.473-.08-1.69 1.045-1.88 1.084-.432 1.366.45 1.802 1.093.09.256.13.518.128.787-.056 1.274-.954 1.77-1.988 2.146 0 0-.02.024-.022.022-.626-.215-1.25-.432-1.874-.646-.05-.178-.102-.354-.146-.53h-.008z"
-       id="path620" />
-    <path
-       fill="#DEDEDF"
-       d="M434.336 450.95c-1.74-.04-2.262-1.47-3.002-2.643.293-1.027.588-2.055.883-3.084.39-.676.78-1.348 1.176-2.022 1.205-1.862 1.952-4.14 4.364-4.944.545.104.938.445 1.32.815.613.717.627 1.422-.03 2.114-.952.98-.744 2.168-.584 3.344.14 1.02.535 1.683 1.768 1.54 1.473-.17 2.715.235 3.29 1.792-.008 1.148-.497 1.78-1.73 1.62-1.782-.468-3.706-1.407-4.566 1.32-.007.255-.058.5-.13.74-.618 1.19-1.553 1.61-2.843 1.152-.823-.62.2-1.157.08-1.746l.006.005z"
-       id="path622" />
-    <path
-       fill="#DCDBDD"
-       d="M437.855 438.573c-1.503.16-1.18 1.532-1.66 2.396-.332.595.352 3.007-1.794 1.212-.41-.346-.62.7-1.01 1.02-.145-.524-.284-1.057-.426-1.585.397-1.613.338-3.398 1.672-4.688.224-.155.47-.263.73-.33 1.012-.085 1.935.16 2.646.886.33.33.79.86-.157 1.087z"
-       id="path624" />
-    <path
-       fill="#DBDCDF"
-       d="M435.135 437.04c-1.178 1.31-.824 3.347-2.17 4.574-.06-.188-.114-.375-.172-.563-.15-.583-.3-1.167-.93-1.44.59-.735 1.182-1.475 1.77-2.215.263-1.107.786-1.133 1.502-.356z"
-       id="path626" />
-    <path
-       fill="#6E727F"
-       d="M386.512 375.29c-.533-.61.504-1.134.104-1.74 1.015.64.892 1.218-.104 1.74z"
-       id="path628" />
-    <path
-       fill="#C4C6CC"
-       d="M426.577 422.193c.05.177.1.355.146.533-.65 1.73.27 3.707-.834 5.37-.428.02-.792-.265-1.22-.24-2.8.95-1.362-2.314-2.758-2.767 1.067-2.69-1.566-3.788-2.514-5.58-.478-.91.44-.778.42-1.208 1.908 1.9 3.648 4.085 6.76 3.89z"
-       id="path630" />
-    <path
-       fill="#A1A3AD"
-       d="M425.19 433.99c-.645-2.882-.832-3.09-3.28-3.675-.765-.137-1.262-.57-1.484-1.313 2.02-1.883 2.742 1.188 4.287 1.13.546.062.946.25.826.91.292 1.032.283 2.026-.35 2.947z"
-       id="path632" />
-    <path
-       fill="#8C8F9A"
-       d="M425.538 431.04c-.27-.305-.55-.606-.825-.91-.015-.76-.026-1.52-.04-2.272.606-.957.907-.348 1.216.236-.085 1.61.825 2.625 2.065 3.438-.002.44.176 1.05-.046 1.282-.398.427-.795-.063-1.1-.38-.433-.454-.847-.928-1.272-1.393z"
-       id="path634" />
-    <path
-       fill="#9B9EA9"
-       d="M417.154 419.018c.27.502 1.034.785.69 1.543-.03.07-.333.1-.438.032-.646-.422-.65-.973-.256-1.576l.004.002z"
-       id="path636" />
-    <path
-       fill="#C7C6C9"
-       d="M431.77 435.073c-.883-1.855-1.77-3.712-2.653-5.564-.987-1.593 1.866-2.75.492-4.386.625-.37.937.143 1.313.47 2.346-.68 2.42 1.25 2.986 2.605.23.142.35.345.35.61-.11 1.032-1.932 1.47-.982 2.864.417 1.543.175 2.79-1.507 3.4z"
-       id="path638" />
-    <path
-       fill="#CBCCD1"
-       d="M439.88 424.875c.226.133.447.27.676.4 1.29 1.313.05 2.19-.543 3.186-1.574.98-3.102 2.21-5.124 1.09-.22-.167-.36-.386-.446-.647.287-1.37.055-3.112 2.234-3.146v.002c.218.083.495.382.543-.15l-.44-1.6c1.125-.196 1.54.765 2.21 1.33.61.515.96.392.89-.465z"
-       id="path640" />
-    <path
-       fill="#D4D5DA"
-       d="M436.678 425.756c-1.19.813-1.825 1.945-1.95 3.37-.423.212-.71.19-.677-.39-.044-.18-.09-.36-.14-.542.645-1.823-.437-3.295-1.068-4.786 2.58-1.234 2.276 2.008 3.836 2.348zM437.22 425.61c.73.3.866.977 1.266 1.778-1.378.02-1.555-.846-1.807-1.63l.54-.15z"
-       id="path642" />
-    <path
-       fill="#E0DFE1"
-       d="M439.673 428.373c-.263-1.19 1.333-1.854.882-3.1-.234-.645 1.48-.853 1.76-.892.357-.046.74.003 1.087-.13.29-.104.628-.535.894-.568.604-.082 3.497 1.23 2.663 2.063-.72.424-1.266 1.095-2.033 1.45-1.613.317-3.15.823-4.523 1.76-.43.037-.765-.045-.73-.582z"
-       id="path644" />
-    <path
-       fill="#E4E3E5"
-       d="M449.554 426.86c.32.883.23 1.97 1.24 2.516.273.307.55.606.82.916.29.467.563.938.45 1.522-.46 1.746.768.773 1.352.836.396-.56.913-.692 1.54-.44.732 1.518.366 2.885-.565 4.174-.56.926-1.392.975-2.318.73-.228-.128-.425-.29-.597-.482-1.692-2.14-3.462-4.213-4.896-6.543-.236-.108-.456-.245-.66-.407-.486-.457-.83-1.008-1.097-1.617-.104-.4-.06-.778.18-1.127-.033-1.284.7-1.69 1.852-1.622-.026 2.12 1.38 1.755 2.7 1.54z"
-       id="path646" />
-    <path
-       fill="#E6E6E7"
-       d="M452.195 436.954c.86-1.28 2.028-2.494 3.265-2.785 1.95-.462 2.134 3.062 3.208 3.976.816.697 2.06.47 2.818 1.27 1.035 1.08 1.19 2.81 2.296 3.92.728.726 2.27 1.052 2.757 1.972.793 1.504-.94 1.324-1.81 1.383-.938.064-1.897.425-2.812.647-1.52.367-3.043.71-4.557 1.1-1.45.373-2.25 1.19-3.52-.11-1.268-.35-2.645.606-3.854-.322-.152-.217-.23-.455-.216-.726.172-.525.604-.824 1.01-1.142 1.06-1.262.288-3.438.19-4.94-.047-.687-.15-1.56.127-2.228.25-.603.63-1.318 1.098-2.016z"
-       id="path648" />
-    <path
-       fill="#D7D7D9"
-       d="M431.77 435.073c.398-1.18 1.58-2.195.74-3.628.175-1.227.487-1.29 1.875-.397 1.34 2.217.862 4.14-.957 5.836l-1.5-1.295-.157-.517z"
-       id="path650" />
-    <path
-       fill="#A1A3AD"
-       d="M429.822 438.455c-1.27-.23-1.7-1.438-2.593-2.11 1.69-.253 1.95 1.147 2.59 2.112l.002-.002z"
-       id="path652" />
-    <path
-       fill="#DCDBDD"
-       d="M433.428 436.88c.218-1.784 1.52-3.405.814-5.333.116-.033.233-.064.35-.1 1.478.56 2.93-1.624 4.42-.042.34.644.577 1.318.663 2.04.21 1.706.05 3.128-2.27 2.876-.834-.087-1.598.16-2.257.694l-.017.02c-.565-.148-1.097-.136-1.502.36-.064-.167-.133-.34-.2-.513z"
-       id="path654" />
-    <path
-       fill="#E7E7E8"
-       d="M451.52 446.885c-.533.143-1.064.287-1.596.432-.572 1.228.294 1.345 1.138 1.498 1.204.226 2.36.51 2.273 2.127-.21.59-.655.93-1.216 1.148-1.897.32-3.595 1.766-5.678 1.012-.527-.31-.706-.797-.686-1.39.14-4.065-.468-4.848-4.495-5.77-2.77-.635-3.638-2.23-2.837-5.233.842-.25.663-.706.245-1.208.137-1.31.998-1.617 2.128-1.558.656-.106-.012 1.438 1.104.863.397-.205.965.045 1.24.396 2.29 2.91 6.16 3.93 8.328 6.975.167.224.18.463.05.707z"
-       id="path656" />
-    <path
-       fill="#E2E1E3"
-       d="M438.428 440.707c.26 2.27.146 4.305 3.76 4.213 3.838-.1 5.74 4.047 3.932 7.37-.09.25-.27.394-.528.44-.67-.005-1.228-.298-1.74-.69-.296-.266-.506-.577-.545-.983.493-1.043 1.258-2.09-.048-3.106-.98-.788-1.845-1.626-3.35-.922-1.102.52-1.728-.227-2.104-1.36-.597-1.79-.384-4.248.622-4.96z"
-       id="path658" />
-    <path
-       fill="#DCDDE0"
-       d="M441.194 438.252c-.952.188-1.82.55-2.52 1.246-.275-.312-.547-.617-.818-.93-.312-1.544-1.872-.915-2.704-1.554.207-2.887 2.063-1.6 3.55-1.313.936-1.414-.547-2.856.105-4.22-.604-1.19-.077-1.84 1.054-2.2.275.074.506.226.693.438.66.914.633 2.08 1.124 3.06.28.963.56 1.922.75 2.907-.065 1.02.145 2.178-1.233 2.567z"
-       id="path660" />
-    <path
-       fill="#E1E0E2"
-       d="M436.618 450.916c-.48-1.777.927-3.177 2.987-2.91.8.1 1.62.236 2.188.93.02.113.032.226.052.338.196.67.746 1.177.89 1.875.043.24.024.48-.04.725-.26.622-.746.965-1.388 1.112-.87.135-1.738.242-2.324-.647-.116-1.596-1.587-.933-2.365-1.424z"
-       id="path662" />
-    <path
-       fill="#E1E0E2"
-       d="M443.256 447.95c1.47-.862 1.737.525 2.068 1.277.753 1.7-1.69.928-1.763 2.082.442.82-.162.88-.713.98-.285-.104-.417-.297-.375-.604l.035-.112c.136-.98-1.48-1.48-.725-2.636l.005-.006c.928.318 1.083-.502 1.47-.983z"
-       id="path664" />
-    <path
-       fill="#E0DFE1"
-       d="M436.618 450.916c1.058.188 1.364-1.916 2.702-.87 1.05.814.025 1.612-.004 2.423.218 1.085-.49.786-1.058.708-.358-.166-.615-.422-.73-.813-.263-.298-.526-.59-.792-.888l-.118-.56z"
-       id="path666" />
-    <path
-       fill="#E9E9EA"
-       d="M434.336 450.95c-.362-.437-.612-.887.052-1.27.12-.07.415-.08.445-.02.314.603-.158.93-.5 1.292h.003z"
-       id="path668" />
-    <path
-       fill="#CCCDD2"
-       d="M434.244 431.545c-.552-.48-1.093-1.18-1.732-.103-.785-1.338-.785-1.338 1.542-2.707.226.13.45.263.677.392l.01.006c.814.266 1.525.678 1.26 1.678-.237.9-1.04.782-1.748.737l-.008-.002z"
-       id="path670" />
-    <path
-       fill="#D7D7D9"
-       d="M434.245 431.547c1.23-.59 1.83-1.308.49-2.414 1.83.946 3.196-1.13 4.94-.76.215.14.433.278.645.422.244.418.146.646-.355.658-.646.524-1.02 1.215-1.157 2.026-1.53-.626-3.013 2.172-4.563.067z"
-       id="path672" />
-    <path
-       fill="#E1E1E2"
-       d="M439.965 429.455c.118-.224.236-.44.354-.66 1.062-1.98 3.173-2.818 4.676-1.863.1.357.194.71.29 1.068.166.586.435 1.104.964 1.454l.523-.133c.514 1.288.514 1.288-1.36 1.872-1.712-.643-3.35-1.613-5.306-1.217-.046-.172-.093-.346-.142-.52z"
-       id="path674" />
-    <path
-       fill="#E6E7EA"
-       d="M451.52 446.885l-.147-.533c-2.887-2.563-3.195-6.492-5.104-9.578.254-1.018-.18-2.06.087-3.078.092-.245.247-.44.46-.598 1.952-.19 2.985 1.258 4.103 2.435.377.4.688.766 1.205.926.05.167.103.333.15.5 1.065 1.118-.855 1.644-.47 2.77 1.1.024 2.18-1.286 3.51-.216-2.99 1.582-2.135 5.093-3.796 7.37z"
-       id="path676" />
-    <path
-       fill="#E1E0E2"
-       d="M452.127 436.455c-.54.045-.98 1.98-1.568.2-.65-1.946-2.287-2.535-3.833-3.336-.825-.64-1.363-1.417-1.254-2.52.044-.84 1.668-.284 1.306-1.48.5.175 1.453.395 1.44.512-.34 3.203 3.248 4.06 3.907 6.623zM446.25 429.454c-.697-.234-1.573-.354-.962-1.453.653.268.8.867.963 1.454z"
-       id="path678" />
-    <path
-       fill="#EAEAEC"
-       d="M452.123 451.307c.317-.264.638-.53.952-.793.146-1.057.327-2.074 1.814-1.7.78-.425 1.658-1.245 2.437-.767.447.27.885 1.127.977 1.633.19 1.084-.502 1.937-1.354 2.504-1.165.775-5.84 2.188-6.856.64-.65-.988.652-.563 1.262-.812.347-.143.58-.395.767-.705zM460.22 447.404c-.044-.176-.086-.354-.125-.53-.163-1.283.286-1.783 1.563-1.228.31.244.51.563.646.922.195.687.52 1.25 1.3 1.41.607.232 1.106.584 1.34 1.224.042.264-.01.506-.153.73-1.257 1.3-2.87.714-4.357.833-.266-.004-.52-.057-.773-.135-.382-.16-.684-.412-.887-.777-.566-1.433.67-1.806 1.446-2.45z"
-       id="path680" />
-    <path
-       fill="#E6E5E7"
-       d="M454.89 448.81c-.883.272-1.21 1.134-1.813 1.704-.644-.723-1.305-1.11-2.387-.772-1.04.32-1.406-.59-1.605-1.418-.157-.65-.298-1.392.843-1.005l.14.53c1.324.88 2.68-.27 4.015.062.267.3.537.6.808.9z"
-       id="path682" />
-    <path
-       fill="#F5F4F5"
-       d="M460.22 447.404c-.342.857-1.397 1.43-1.024 2.566-.27.365-.614.46-1.032.285-.277-.314-.56-.627-.837-.94-.563-.41.185-1.19-.44-1.58.842-2.794 2.26.208 3.332-.33zM461.514 445.928c-.878-.295-1.04.488-1.42.94-1.072-.516-1.624-1.292-1.262-2.522l.23-.313c2.98-.464 3.313-.27 3.165 1.848-.226.153-.465.167-.713.048z"
-       id="path684" />
-    <path
-       fill="#E7E7E8"
-       d="M454.078 447.91c-1.102.28-2.194.604-3.31.827-.667.138-.996-.174-.704-.89 1.5-.306 3.243.155 4.208-1.6.6.85-.144 1.173-.194 1.663z"
-       id="path686" />
-    <path
-       fill="#E3E2E4"
-       d="M447.213 436.563c.94 1.445 1.64 3.082 2.185 4.652.25.72 1.633 3.563.526 4.053.187-.084-2.224-1.393-2.465-1.498-1.032-.453-1.807-1.346-2.762-1.93-1.587-.972-3.49-.166-4.407-2.27-.54-1.248-.35-2.478-.105-3.76.174-.933.127-2.013.675-2.833.625-.938 1.34-.563 2.248-.146 1.745.795 3.072 2.15 4.105 3.733z"
-       id="path688" />
-    <path
-       fill="#E6E7EA"
-       d="M445.472 430.803c.893.604 1.335 1.432 1.254 2.52l-.012.017c-.94.565-1.61-.1-2.104-.656-1.08-1.225-2.114-1.115-3.257-.188-.088.37-.263.42-.525.146-.77-.742-.364-1.8-.72-2.656 2.247-2.704 3.658.02 5.364.817zM462.74 446.15c1.22-.735 2.537-.64 3.864-.48l-.896.866c-.29.47.104.91.063 1.375-.088.392-.32.65-.694.785-.647.14-1.117-.538-1.77-.4-2.216 1.478-1.028-.837-1.48-1.327.205-.386.797-.337.914-.818z"
-       id="path690" />
-    <path
-       fill="#E0E0E1"
-       d="M441.354 432.49c.774-2.09 1.73-3.022 3.458-.7.473.638 1.26 1.04 1.902 1.548.326 1.088.67 2.178.334 3.332-1.898-1.395-3.796-2.787-5.694-4.18z"
-       id="path692" />
-    <path
-       fill="#E6E6E7"
-       d="M456.882 447.734c1.813.06.09 1.11.44 1.58-.87-.322-.47-1.003-.44-1.58z"
-       id="path694" />
-    <path
-       fill="#EBEAEC"
-       d="M465.06 448.38c.403.5.66.97-.24 1.21-.505-.435-1.01-.865-1.514-1.3.644-1.163 1.17.058 1.753.09z"
-       id="path696" />
-    <path
-       fill="#130F09"
-       d="M462.74 446.15c.336.16.7.46.316.74-.28.205-.813.063-1.23.076-.103-.35-.207-.693-.312-1.04.185-.06.37-.114.557-.17.222.133.447.264.67.394z"
-       id="path698" />
+	 id="g700">
+	<path
+	   fill="#A0A2AC"
+	   d="M367.43 287.216l1.134.332c.163.01.324-.01.48-.063 2.514 1.734 5.5 2.776 7.562 5.168.898 1.84 3.02 2.154 4.396 3.48 1.625 1.562 3.303 3.072 4.822 4.746 1.072 1.842 2.577 3.3 4.197 4.638.933.77 1.832 1.592 2.314 2.684 1.604 3.617 4.195 6.617 6.164 10.002.192.348.326.712.43 1.093.22 1.95 1.73 3.535 1.602 5.587-.286.52-.66.89-1.32.73-1.468-1.123-1.87-2.974-2.97-4.347-2.664-.894-2.35-3.748-3.513-5.606-1.612-2.576-3.398-4.895-5.61-6.932-.162-.188-.294-.4-.406-.62-.347-.724-.527-1.556-1.34-1.97-.212-.127-.395-.278-.572-.446-1.683-1.438-3.568-2.55-4.186-5.06-.336-1.373-2.016-.728-3.146-.32-.88 1.072-1.7.75-2.48-.114-.782-.87-1.537-1.77-2.278-2.678-1.23-1.395-1.853-3.338-3.925-3.986-.823-.26-.937-1.287-1.093-2.107-.413-1.154-.504-2.36-.583-3.572.03-.252.14-.464.322-.64z"
+	   id="path6" />
+	<path
+	   fill="#8F929C"
+	   d="M366.254 285.4c.394.604.782 1.212 1.177 1.816l-.096.137c-1.13.6-2.104-.23-3.15-.33-.897-.425-1.887-.246-2.818-.435-1.815-.723-3.83-.39-5.66-1.026-.23-.017-.462-.062-.688-.117-.63-.15-1.253-.366-1.92-.297-.194.052-.393.11-.57.2-.23.27-.17.58-.122.89.108 1.19 1.387 1.966 1.146 3.273-2.246 1.833.23 2.86.73 4.223.486.776.943 1.563.922 2.524-1.124 2.34-1.985-.044-2.98-.16-.942-.438-1.627-1.188-2.316-1.935-.17-.188-.313-.395-.438-.612-1.108-2.087-2.466-3.982-4.264-5.538-1.296-1.198-2.26-2.735-3.793-3.695-.535-.482-.855-1.055-.777-1.8.338-1.183 1.328-1.255 2.303-1.37 1.3-.025 2.56.203 3.762.703.944.585 1.776-.145 2.665-.232.985.096 1.863.676 2.886.61 2.99 1.042 6.267.274 9.23 1.446 1.7.256 3.21 1.06 4.77 1.725z"
+	   id="path8" />
+	<path
+	   fill="#A6A9B2"
+	   d="M368.354 291.063c.068 1.496.806 2.41 2.333 2.52 2.254.167 1.243 2.81 2.734 3.538-.064 1.605-.27 3.044-2.488 2.108-.756-.593-1.858-.56-2.52-1.39-.252-.175-.196-.222-.033.022.356.542.876.837 1.437 1.097.775.875 1.855 1.45 2.45 2.502.188.37.266.766.224 1.182-.096.42-.32.73-.742.87-3.078-.505-4.318-3.458-6.586-5.073-1.516-1.08-2.867-2.523-4.33-3.765-.855-.996-1.57-2.043-1.23-3.466.753-.886 1.853.092 2.668-.5 1.978.923 4.054.25 6.084.353z"
+	   id="path10" />
+	<path
+	   fill="#9D9FA9"
+	   d="M377.098 300.132c-.104-.608-.5-1.298.128-1.774.473-.36.765.273 1.14.458.537.265 1.304 1.59 1.315-.384.006-.596.72-.182 1.064.04.61.39.5 1.08.694 1.665.466 1.417.213 3.363 2.632 3.538.736.052 1.235 1.254 1.433 2.188.344 1.408.344 1.408-.896 2.62-.006.007-.053-.026-.082-.044-.884 1.966-.884 1.966-2.793 1.567-1.227-.223-2.092-.844-2.354-2.12.12-.522.1-.98-.59-1.094-.688-.382-1.108-1.005-1.55-1.618-1.047-1.652-.738-3.345-.14-5.043z"
+	   id="path12" />
+	<path
+	   fill="#B0B2BA"
+	   d="M377.098 300.132c.89 1.548-.29 3.415.764 4.938.563.742 1.184 1.604.287 2.38-.71.616-1.585.105-2.31-.294-1.847-1.014-3.086-2.543-3.78-4.524-.096-.354-.192-.708-.29-1.062.01-.896-1.055-1.39-.89-2.35.06-.108.118-.217.18-.324.022-.723 2.458 1.304 1.182-1.093-.485-.915.813-.364 1.185-.684 1.436.74 1.37 3.322 3.67 3.012z"
+	   id="path14" />
+	<path
+	   fill="#9A9DA8"
+	   d="M396.873 320.51c.813 1.69 2.06 3.16 2.51 5.03 1.16.38 2.226.968 2.51 2.228.327 1.466 1.608 2.117 2.396 3.185.57 1.104 1.025 2.258 1.316 3.47-.416.75-.07 1.532-.088 2.304-2.166 1.137-3.28-.41-4.48-1.746-1.617-1.214-2.41-2.76-2.484-4.862-.097-2.77-1.543-5.176-2.604-7.672-.434-.695-.854-1.442-.213-2.176.357-.405.8-.055 1.136.24z"
+	   id="path16" />
+	<path
+	   fill="#999CA7"
+	   d="M381.958 309.674c.157-.426.036-1.076.096-1.543.063-.546.234-1.065.654-1.446.396-.363.917-.543 1.428-.68.363-.096.89-.31 1.27-.215.35.087.695.466.915.728.25.295.71.818.817 1.188.05.18.103.354.152.533 1.05 1.62 3.286 2.593 2.773 5.068-2.19.4-4.396 1.254-6.576-.086-.495-1.187-2.154-1.876-1.53-3.548z"
+	   id="path18" />
+	<path
+	   fill="#9699A4"
+	   d="M389.786 313.28c-.832-1.68-1.662-3.36-2.493-5.042 4.168 1.998 5.285 6.504 7.984 9.71-1.44 2.083 1.506 1.436 1.6 2.562-1.274.265-1.276.295-.103 1.74-3.666.95-5.245-.247-4.977-3.73.104-1.368-.945-2.334-1.38-3.52-.162-.19-.3-.4-.42-.62-.163-.35-.18-.726-.21-1.1z"
+	   id="path20" />
+	<path
+	   fill="#8D909B"
+	   d="M368.354 291.063c-2.095 1.71-4.186 1.594-6.27-.025-.202-.184-.27-.41-.217-.674 1.23-1.05.413-3.35 2.405-3.933 1.183-.228 2.13.314 3.06.925 1.302.97.74 2.457 1.022 3.708z"
+	   id="path22" />
+	<path
+	   fill="#DEDFE2"
+	   d="M404.692 334.94c-.107-.466-.244-.927-.437-1.362-.356-.805-.52-1.558-.713-2.4-.165-.713-.678-1.246-1.1-1.855-.974-1.402-1.893-2.88-2.144-4.6-.763-1.69-2.128-3.145-1.948-5.184 2.077-.214 2.06 1.77 2.95 2.803.146.222.27.453.38.692.545 1.188 1.437 2.302 2.066 3.46.438.81 1.02 1.66 1.332 2.525.262.728.39 1.48.688 2.23.285.713.604 1.506.89 2.25.866 2.245 1.603 4.325 1.86 6.75.073.68.226 1.46-.503 1.595-.688.125-1.29-.365-1.646-.904-.813-1.25-1.04-2.882-1.34-4.314-.108-.55-.203-1.124-.335-1.685z"
+	   id="path24" />
+	<path
+	   fill="#9699A4"
+	   d="M400.303 324.72c1.194 2.144 2.955 3.987 3.444 6.503-2.447-1.133-2.597-4.03-4.368-5.684l.923-.82z"
+	   id="path26" />
+	<path
+	   fill="#9D9FA9"
+	   d="M387.137 307.705c-.814-.375-1.314-1.03-1.637-1.842 1.89-.58 1.326 1.02 1.637 1.842z"
+	   id="path28" />
+	<path
+	   fill="#B9BBC3"
+	   d="M361.2 294.135c4.054 2.414 6.944 6.156 10.48 9.164 2.33 1.347 2.297 1.915-.27 4.817-.264-.035-.485-.148-.674-.338-.15-.212-.253-.446-.31-.698.257-1.076-.693-1.51-1.185-2.188-.74-.64-.84-2.23-2.397-1.615.773 1.552 3.187 1.327 3.544 3.304-.525 1.185-1.432 1.416-2.58 1.033-.22-.13-.427-.3-.485-.545-.092-.383.207-1.385-.636-.34-.243.032-.48.008-.71-.064-.77-.42-1.383-1.313-2.46-.8-.25.042-.493.032-.74-.003-2.563-.7-4.338-2.473-5.942-4.537.966 1.37 1.17 2.906 1.52 4.393.916 2.675 1.884 5.34 2.288 8.14.13.916.697 2.574-1.45 2.182-1.037-1.41-1.102-3.153-1.63-4.74-.063-.307-.094-.614-.085-.928-.888-3.61-2.45-6.973-3.898-10.375-.577-1.208-.888-2.515-1.353-3.766-.034-.302.016-.587.147-.86 1.274-.722 1.144 2.115 2.568 1.017.56-.603 1.173-.437 1.797-.137.2.162.36.363.482.59.41 1.425 1.14 2.414 2.833 2.062.418-.894.124-1.782.013-2.66-.117-.984-.01-1.816 1.132-2.11z"
+	   id="path30" />
+	<path
+	   fill="#CFCED1"
+	   d="M361.933 290.51l.15.527c-.702 2.432-1.516-.035-2.27.05-1.38.073-1.804-1.277-2.76-1.837-1.286-1.176-2.067-2.558-1.78-4.373 1.97.62 4.295-.5 6.044 1.224.277 1.46.2 2.97.616 4.41z"
+	   id="path32" />
+	<path
+	   fill="#C7C9CF"
+	   d="M355.274 284.88c.737 1.323 1.48 2.65 2.216 3.974.568 1.49-.384 2.092-1.51 2.598-1.594.254-2.367-.684-2.89-1.99.05-1.252-1.77-1.648-1.398-3.045.33-.588-.315-1.506.63-1.887l.534-.14c.34.185.826.194.854.7.178.11.146-.166.27-.172.442-.11.865-.256 1.294-.04z"
+	   id="path34" />
+	<path
+	   fill="#A6A9B2"
+	   d="M361.933 290.51c-2.506-1.148-1.226-2.825-.613-4.41 1.028-.268 2.067-.643 2.957.33-.267.94-.73 1.874-.753 2.818-.032 1.248-.805 1.174-1.59 1.263z"
+	   id="path36" />
+	<path
+	   fill="#B0B2BA"
+	   d="M353.09 289.46c.932.474 1.58 1.437 2.71 1.565 2.507 1.14 2.652 1.89.785 3.97-.98.036-1.327-.747-1.772-1.387-.622-.892-.762.11-1.115.267-1.256-.256-1.396-1.623-2.107-2.387-.842-.893.662-1.54 1.5-2.027z"
+	   id="path38" />
+	<path
+	   fill="#C7C9CF"
+	   d="M353.697 293.877c-.08-.844-.932-2.008.195-2.422 1.228-.453 1.24.93 1.563 1.723.237.585.536 1.146.812 1.72.587.41.75.935.417 1.59-.58-.032-1.156-.063-1.734-.097-.705-.697-1.042-1.575-1.253-2.513z"
+	   id="path40" />
+	<path
+	   fill="#9EA0AA"
+	   d="M347.14 286.772c-1.043-.502-1.88-1.02-2.145-2.094-.113-.482.272-1.207.54-1.01.836.62 1.5 1.477 2.167 2.29.058.072-.352.52-.56.814z"
+	   id="path42" />
+	<path
+	   fill="#CFCED1"
+	   d="M352.323 284.53c-.21.627-.423 1.256-.632 1.885-.083-.672-1.087-1.123-.562-1.9.283-.418.797-.255 1.195.015zM353.677 285.308c-.273-.306-.55-.612-.82-.918.864-.132 1.686-.034 2.418.487-.534.145-1.067.287-1.598.43z"
+	   id="path44" />
+	<path
+	   fill="#C2C4CA"
+	   d="M371.226 307.992c1.058-.834-.677-3.056 1.623-3.274-.393-.472-.782-.944-1.173-1.417l.384-.667c1.7.89 2.314 3.05 4.24 3.664.562.18 1.012 1.088 1.636.555.53-.455.02-1.18-.074-1.78.5.44.997.874 1.496 1.312.177.082.276.197.306.352.03.16.025.244-.013.256.222 2.227 1.662 3.787 3.044 5.324.604.674 1.408 1.152 1.72 2.066.147.706.26 1.422.524 2.102.09.256.07.563.23.764.615.77 2.103 1.347 1.202 2.543-.815 1.093-1.933-.013-2.904-.27-.355-.187-.665-.432-.94-.723-.958-1.02-1.69-2.26-2.62-3.31-.473-.535-.977-1.05-1.52-1.513-.22-.183-.548-.545-.83-.582-.247-.03-.677.205-.864.354-.243.188-.323.47-.606.625-.414.116-.804.026-1.176-.16-.458-.28-.843-.647-1.204-1.04-.46-.63-1.017-1.193-1.362-1.906-.677-.99-1.41-1.96-1.118-3.272z"
+	   id="path46" />
+	<path
+	   fill="#C8C8CA"
+	   d="M356.68 296.49c-.138-.532-.277-1.064-.417-1.594 1.343-1.47.92-2.728-.463-3.87.652-.652 1.53-1.13 1.688-2.172 1.314.182 1.516 1.527 2.326 2.232.46 1.017.922 2.03 1.384 3.05-.42.72-.604 1.325-.177 2.247.476 1.02.64 2.316-.662 3.12-1.553-.29-2.723-1.126-3.52-2.485-.055-.177-.105-.356-.157-.53z"
+	   id="path48" />
+	<path
+	   fill="#B0B2BA"
+	   d="M369.454 299.338c-1.5-.324-1.678-1.928-2.71-2.754 1.32 1.047 3.488.438 4.314 2.313l-.006.01c-.41.593-1.022.445-1.598.43z"
+	   id="path50" />
+	<path
+	   fill="#D5D4D7"
+	   d="M369.454 299.338c.34-.86 1.017-.483 1.602-.432.452.635.93 1.254 1.35 1.907.56.862-.102.77-.633.758-.91-.605-1.88-1.142-2.32-2.232z"
+	   id="path52" />
+	<path
+	   fill="#B0B2BA"
+	   d="M383.926 314.86c-.2-.718-.427-1.437-1.232-1.696-3.156-1.02-2.532-3.965-3.195-6.252.185.076.267.18.247.313-.018.133-.052.205-.1.22.437 1.085 1.397 1.638 2.312 2.232.573 1.216 2.028 1.9 2.07 3.438.565.617 1.05 1.23-.104 1.746z"
+	   id="path54" />
+	<path
+	   fill="#999CA7"
+	   d="M379.646 307.44c-.05-.177-.1-.353-.147-.53-.048-.176-.096-.354-.142-.53.524.233 1.302-.05 1.55.753-.422.1-.842.203-1.262.306z"
+	   id="path56" />
+	<path
+	   fill="#9D9FA9"
+	   d="M383.926 314.86c.438-.558.256-1.152.104-1.745 1.104.332 2.563 1.23 1.738-1.645.756 1.422 1.974 1.404 3.37 1.64.906.155 1.3.854 1.846 1.54.724.91 1.45 1.813 2.12 2.762.654.93 1.336 1.84 2.072 2.69 1.258 1.458 2.075 3.19 2.977 4.87.813 1.518 1.766 3.22 1.636 5.002-.162 2.266.228 3.176 1.885 4.094-.235.535-.266 1.063.066 1.57 1.354 2.064.606 3.236-1.608 3.78-.606-.08-.946-.44-1.06-1.03.232-1.076.37-2.137-.772-2.832-1.465-.887-1.91.916-2.96 1.14-.902.175-1.667-.01-2.19-.837-.22-.54-.215-1.056.156-1.52.444-.3.67-.6-.06-.85-1.147-.395-2.17-.937-2.572-2.2.296-2.88 1.76-.854 2.635-.697-1.266-1.555-2.957-2.938-3.68-5.055-.14-.896-.398-1.822.465-2.52.368-.198.695-.198.233-.864-1.607-2.324-3.887-3.896-5.972-5.692-.758-.366-.91-.898-.43-1.6z"
+	   id="path58" />
+	<path
+	   fill="#BAB9BD"
+	   d="M400.168 339.05c.41-.843.894-1.78 1.03-2.73.136-.893-.454-1.853.457-2.56 1.218-.943 3.575 1.326 4.27 2.203 1.055 1.332 1.746 3.193 1.372 4.896-.435 1.966-1.085 3.956.802 5.587.174.19.31.412.414.647.153 1.21 1.618 2.146 1.313 3.192-.576 1.99-.133 3.865-.146 5.802-.02 1.92-1.46 2.438-2.94 1.13-1.29-1.143-2.848-1.897-4.064-3.105-.505-2.43-3.324-3.586-3.446-6.23.075-2.39 1.166-3.155 3.376-1.745.283-1.605-.438-2.814.008-4.1.35-1.004-.43-1.438-1.3-1.676-.677-.177-1.613-.352-1.146-1.31z"
+	   id="path60" />
+	<path
+	   fill="#9C9FA8"
+	   d="M359.784 316.244c.544-3.705-1.515-6.842-2.252-10.27.833-1 1.724-.652 2.618-.11 1.41.847 2.56 2.878 3.38 4.25.895 1.482 1.936 2.91 2.772 4.415.53.95 1.39 1.63 2.09 2.445.785.908 1.943 2.035 1.993 3.316.034.92-.51.98-1.028 1.494-.354.354-.447.916-.504 1.394-.194 1.608.672 4.826-1.68 5.162-.988.142-2.643-1.015-3.48-1.45-.748-.388-1.5-.86-2.33-1.062-.428-.103-.67-.07-1.063.03-.272.072-.882.462-1.096.064-1.06-1.984-.4-4.102-.47-6.158.564-1.112.07-2.535 1.05-3.52z"
+	   id="path62" />
+	<path
+	   fill="#9B9EA7"
+	   d="M368.05 317.428c-1.018-1.715-3.793-2.104-3.568-4.748 1.3-1.28 2.415-.63 3.5.334.066.06.108.145.162.217-.01-.163-.146-.27-.198-.43-.134-.368-.13-.72-.02-1.075.84-.836.158-1.43-.34-2.055-.403-.807-.605-1.61.016-2.404.948 0 1.834-.238 2.654-.716.33-.054.44.27.68.384l.14.54c-.28 1.112.512 1.872.98 2.68.553.94.375 1.706-.104 2.53-.15.34-.313.672-.458 1.016-1.146 1.754-.228 3.61-.265 5.422-.673 1.74-1.495 2.326-2.475.23-.28-.61-.956-1.11-.704-1.924z"
+	   id="path64" />
+	<path
+	   fill="#BFC1C7"
+	   d="M368.492 312.73c.193.583.386 1.173.823 2.52-1.576-1.982-2.964-2.867-4.833-2.57-.987-.46-2.19-.674-1.542-2.342.295-.756-.615-1.242-1.173-1.635-.83-.588-1.643-1.137-1.813-2.234.23-.306.854-.18.885-.378.353-2.27 1.5-.566 2.31-.484.178-.05.355-.096.53-.143 1.09-.25 1.71.68 2.563 1.02l.53-.143c.81 2.066.543 4.42 1.72 6.387z"
+	   id="path66" />
+	<path
+	   fill="#C1C3C9"
+	   d="M363.15 305.607c-.59.91-1.023-.498-1.582-.11-.156.84 1.054 1.247.584 2.51-.792-.556-1.495-1.045-2.197-1.536-.733-.52-1.557-.618-2.423-.493-.538-1.998-1.077-3.997-1.692-6.288 2.62 1.97 4.56 4.466 7.31 5.917z"
+	   id="path68" />
+	<path
+	   fill="#848893"
+	   d="M371.306 312.55c.298-1.028.82-2.003-.146-3.05-.46-.498-.545-1.326-.085-2.023.052.172.103.344.15.516.64.98 1.28 1.95 1.92 2.927-.306 1.038.375 1.522 1.11 1.98.27.31.546.612.816.922-1.57 1.87-2.482 1.563-3.764-1.273z"
+	   id="path70" />
+	<path
+	   fill="#90939E"
+	   d="M368.492 312.73c-2.194-1.692-2.037-4.02-1.72-6.387l.845-.255c-.006.395-.012.785-.016 1.177l.72 2.657c.96.648.154 1.18-.11 1.748.09.35.186.705.282 1.06z"
+	   id="path72" />
+	<path
+	   fill="#7F838F"
+	   d="M356.838 297.018c1.48.398 2.594 1.31 3.52 2.486.2.455.648 1.598.177 1.26-1.386-.994-4.1-.967-3.697-3.746z"
+	   id="path74" />
+	<path
+	   fill="#C9C9CB"
+	   d="M370.934 306.935c-.226-.128-.45-.257-.68-.385-1.1-.577-2.047-1.396-3.278-1.782-.92-.29-1.928-.81-1.206-2.152 1.676-.205 2.677 1.056 3.914 1.804.71.69 1.048 1.57 1.25 2.515z"
+	   id="path76" />
+	<path
+	   fill="#737784"
+	   d="M369.684 304.418c-1.48-.22-2.84-.7-3.914-1.803 2.31-1.582 2.99.373 3.914 1.803z"
+	   id="path78" />
+	<path
+	   fill="#B2B4BC"
+	   d="M366.244 306.486c-1.074.21-1.856-.308-2.563-1.02.913-1.183 1.266-1.044 2.564 1.02z"
+	   id="path80" />
+	<path
+	   fill="#8F929C"
+	   d="M354.07 299.492c-1.236-.888-1.04-2.383-1.52-3.592 1.24.89 1.028 2.39 1.52 3.592z"
+	   id="path82" />
+	<path
+	   fill="#CFCED1"
+	   d="M354.617 287.275c-1.192-.282-1.73-.626-1.523-1.5.046-.19.384-.312.586-.467.25.53.504 1.06.937 1.967z"
+	   id="path84" />
+	<path
+	   fill="#686D7B"
+	   d="M368.06 317.434c.22-.398.558-.705.974-.932.79-.426 1.666-.69 2.476-1.074.813-.39 1.71-.41 2.577-.628.552-.138 1.017-.458 1.547-.646.22-.076.438-.03.66-.095 1.11-.443 1.428.467 1.896 1.112.802 2.897 1.854 5.637 4.242 7.696 1.146.99 2.72 2.232-.2 3.152-.548.174-.703 1.018-.802 1.658-.02.98-.003 1.945.853 2.646.623.678 1.313 1.3 1.75 2.11.453.835.82 1.785 0 2.522-.848.763-1.71.24-2.438-.383-.418-.354-.878-.666-1.226-1.1-.244.287-.145-1.502-.648-.072-.378 1.064-.167 3.013-2.36 2.16-.336 0-.52.237-.714.474-.474.52-1.092.85-1.57.193-.756-1.03-1.984-.594-2.884-1.12-.23-.142-.43-.316-.604-.526-.318-.464-.477-.978-.437-1.537.04-.265.142-.51.283-.728 1.252-.73.995-1.746.47-2.762-1.332-2.566-1.092-5.44-1.638-8.164-.014-.064-.28-.2-.336-.243l-.363-.275c-.205-.157-.405-.32-.598-.493-.3-.27-.587-.557-.813-.89-.345-.513-.445-1.08-.265-1.67.042-.13.098-.263.166-.386z"
+	   id="path86" />
+	<path
+	   fill="#6A6E7C"
+	   d="M377.78 315.373c-.5-.438-.995-.873-1.49-1.312-.355-1.615-2.174-2.843-1.298-4.794.577 1.576 1.58 2.554 3.162 3.384 2.324 1.223 3.756 3.536 5.038 5.834-.262 1.467 1.217 1.852 1.784 2.807.538.907 1.52 1.58.993 2.835-.19.197-.42.326-.68.398-2.364-.978-4.604-2.138-5.687-4.658-.633-1.484-1.1-3.04-1.824-4.492z"
+	   id="path88" />
+	<path
+	   fill="#979AA4"
+	   d="M384.36 316.46c1.72.41 3.213 1.206 4.478 2.466 1.222 1.213 1.788 2.932 3.44 4.06l-2.037.444c-3.935.36-5.767-.95-6.376-4.557.778-.004 1.317.893 2.31.574-.158-1.29-2.703-1.174-1.814-2.986z"
+	   id="path90" />
+	<path
+	   fill="#6A6F7C"
+	   d="M375.748 314.21c.276 1.448 1.362 2.677 1.152 4.257-3.737 1.037-6.09-1.023-5.983-5.242l.39-.676c1.303.282 1.74 3.145 3.772 1.267l.668.392z"
+	   id="path92" />
+	<path
+	   fill="#B9B8BC"
+	   d="M383.864 318.873c1.07 2.994 3.624 3.916 6.377 4.557-.457.56.617 1.215-.104 1.76-2.582 1.203-3.713.91-4.3-1.115-.306-1.516-1.604-2.328-2.52-3.375-.736-.84-1.02-1.414-.125-2.213l.674.386z"
+	   id="path94" />
+	<path
+	   fill="#6A6F7C"
+	   d="M374.257 312.895c-1.396-.068-1.474-.203-1.11-1.977l1.11 1.977z"
+	   id="path96" />
+	<path
+	   fill="#9FA1AB"
+	   d="M400.16 339.047c.654 1.098 2.227-.908 2.73.826.272.938 2.41 1.3.454 2.992-.707.608.73 3.012.293 4.674-1.29.747-2.846-3.372-3.983.214l-.372.09c-.947-.098-1.82-.285-1.81-1.525.324-1.196 1.194-1.712 2.574-1.888-1.063-1.012-2.024-1.883-3.168-2.55-.354-.25-.646-.556-.89-.917-.544-1.238-1.24-2.45-.73-3.887 1.884-1.688 2.928-.104 4.082 1.055l.82.914z"
+	   id="path98" />
+	<path
+	   fill="#B1B3BB"
+	   d="M381.26 330.455c-1.24-.63-.436-1.805-.706-2.688 1.748-3.103 4.074-1.543 6.308-.79.805.202 1.398.646 1.692 1.444.52 2.453 2.478 3.695 4.312 5.01.42.3 1.03.322.925 1.05-.084.406-.164.814-.246 1.22.016 1.438-.543 1.684-1.813 1.024-1.46-.756-2.29-2.274-3.79-2.946-1.338-.96-2.178-2.45-3.67-3.283-1.067-.59-1.99-.884-3.01-.04z"
+	   id="path100" />
+	<path
+	   fill="#C1C0C3"
+	   d="M388.274 333.11c1.823.19 2.287 2.11 3.688 2.897.827.467 1.18.488 1.578-.31l1.878.63c.164.067.242.17.234.297-.007.13-.03.2-.074.21l1.14 4.282c.346.403.126.71-.275.692-2.227-.077-4.277-1.762-4.986-4.02-.357 1.717-.357 1.717-2.265 1.184-.196-.157-.353-.354-.48-.567-.35-.73-.468-1.604-1.314-2.013-1.607-1.6-.02-2.347.876-3.28z"
+	   id="path102" />
+	<path
+	   fill="#B1B3BB"
+	   d="M385.835 324.074c1.05 1.85 2.94.446 4.3 1.115 1.528 1.955 2.437 4.503 5.142 5.36.482.154.57.74.4 1.17-.226.573-.742.43-1.152.22-.812-.417-1.59-.895-2.396-1.325-.61-.33-1.063-.334-.945.57-1.582-.01-2.536-.765-2.798-2.347.004-1.21-1.15-1.384-1.802-2.01-.72-.326-1.593-.484-2.085-1.1-.757-.933-.576-1.605.802-1.544.177-.032.354-.073.533-.11z"
+	   id="path104" />
+	<path
+	   fill="#6C707E"
+	   d="M395.582 336.836c-.057-.17-.106-.34-.16-.508.51-1.006.774-2.478 2.148-2.4 1.223.066 1.756 1.395 2.518 2.29 1.084 1.278-.194 1.403-.75 1.913-1.57.49-2.304-1.444-3.756-1.294z"
+	   id="path106" />
+	<path
+	   fill="#D1D2D7"
+	   d="M388.724 328.416c.27 1.408 1.387 2.066 2.46 2.77 1.034 1.588 3.21 1.518 4.37 2.982-.52.623-1.22.04-1.77.313-2.685-.142-3.478-3.03-5.68-3.95-.484-.203-.35-1.315.09-1.977.114-.3.286-.358.53-.137z"
+	   id="path108" />
+	<path
+	   fill="#9699A4"
+	   d="M390.605 314.2c.146.8.654 1.622-.178 2.583-.62-1.056-.27-1.822.178-2.582z"
+	   id="path110" />
+	<path
+	   fill="#BBBABD"
+	   d="M402.974 353.717c1.978.883 3.788 1.998 5.164 3.717.99-1.098 1.344-2.22.342-3.55-.348-.462-.137-.503.774-2.29.243-.477-.172-1.39-.464-2.02-.355-.77-1.438-1.285-.722-2.377.453-.53-.665-1.604.498-1.785.86-.133 1.317.762 1.435 1.412.4 2.27 1.662 4.215 2.254 6.403.672 1.906.286 3.98.957 5.886-.062 1.272.066 2.524.488 3.74.396 1.143.824 2.717.17 3.407-1.143 1.217-.433 2.515-.826 3.69-1.275 1.765-1.99.36-2.682-.537-1.604-2.092-2.936-4.354-3.964-6.784-.616-1.174-1.387-2.25-2.02-3.407-.285-1.73-1.56-2.955-2.323-4.44-.063-.597-.19-1.246.53-1.527.326-.125.364.215.39.46z"
+	   id="path112" />
+	<path
+	   fill="#9FA1AB"
+	   d="M402.974 353.717c-1.01.213-.13.81-.246 1.205.534 2.174-1.4 3.205-2.2 4.762-.223.098-.454.104-.686.02-.387-.528-.86-.757-1.506-.437-1.17-.063-1.853-.84-2.482-1.688-.353-.708-.896-1.36-.64-2.24.578-.955 2.277-1.045 2.036-2.642.45-1.563 1.31-1.49 2.537-.117-.483-1.44-1.23-2.16-1.73-3.027-.33-.57-.62-1.23-.167-1.8.508-.64 1.167-.145 1.76 0 .457 2.352 3.65 3.177 3.324 5.964z"
+	   id="path114" />
+	<path
+	   fill="#CAC9CC"
+	   d="M411.14 353.2c-.91-1.587-.898-3.485-1.993-5.032-.617-.873-1.53-1.492-2.025-2.463-.438-.854-.31-1.775-.146-2.685.08-.442.078-2.176.295-2.45.173-.218.397-.33.672-.345.713.22 1.07.822 1.506 1.353.232.354.377.752.497 1.158.12.403.213.813.258 1.235.246 2.105 1.375 3.95 1.75 6.018.173.928.9 2.823.185 3.645-.567.638-.695.103-1-.434z"
+	   id="path116" />
+	<path
+	   fill="#A0A2AC"
+	   d="M407.396 340.53c1.546 1.93-.49 4.165.525 6.14-1.425-.186-2.468-2.477-1.917-4.366.17-.582.577-1.1.878-1.642.128-.217.303-.252.516-.13z"
+	   id="path118" />
+	<path
+	   fill="#A1A3AD"
+	   d="M420.88 385.52c.208.305.415.61.626.916.604.44.48.924.087 1.43-.796.582-1.572.375-2.346-.057-.368-.157-.687-.388-.96-.677-.512-.648-.788-1.465-1.425-2.035-.382-.6-.896-1.08-1.435-1.543-.554-.572-.854-1.244-.813-2.05.27-.96.354-1.886-.514-2.632-.438-.496-.81-1.027-1.02-1.66-.416-1.006-.45-2.088-.524-3.145-.14-1.855.5-2.82 2.506-1.855.844.613.863 1.943 2.006 2.297.075.16.146.326.205.492 1.278 1.488.17 3.885 1.97 5.174.1.773-.732 1.56.024 2.326.59.732.56 1.777 1.23 2.47.132.182.257.366.382.548z"
+	   id="path120" />
+	<path
+	   fill="#BFBEC1"
+	   d="M420.504 384.975c-.863-.598-1.35-1.387-1.23-2.47 1.094.48.898 1.606 1.23 2.47z"
+	   id="path122" />
+	<path
+	   fill="#C9C8CB"
+	   d="M393.98 432.707c-.32-.484-.64-.976-.96-1.46-2.63-1.413-4.52-3.353-4.623-6.55-.007-.25.104-.53-.16-.734-2.396-1.855-2.407-1.855-2.623-3.91-.21-2.008-1.388-3.217-3.314-3.256-1.52-.03-3.372-.734-4.246-2.035-.604-.902-1.07-2.52-.875-3.596.103-.58.336-.912.954-.916.51-.004.813.354 1.235.54.534.232 1.166.317 1.744.397 2.367.336 4.744.132 7.11.396 1.763.19 3.33 1.095 5.033 1.513.69.17 1.537.063 2.112.48.723.52 1.304 1.593 1.77 2.33.1.158.21.33.266.51.038.122.03.23.106.34.116.16.304.218.396.413.073.147.107.325.107.493-.002.35-.15.633-.33.918-.23.364-.48.48-.563.92-.09.47-.18.937-.264 1.405-.17.946-.315 1.9-.385 2.862-.14 2.02-.332 4.063-.11 6.086.062.53 1.097 4.17.337 4.373-1.394.376-1.94-.78-2.72-1.52z"
+	   id="path124" />
+	<path
+	   fill="#676B79"
+	   d="M396.705 434.227c-.23-.928-.565-1.803-1.262-2.498-.185-.09-.282-.21-.288-.363-.008-.156.015-.242.06-.26 1.485-.683 2.328.837 3.556 1.042.48 1.163 2.087 1.962 1.157 3.58-.17.036-.34.06-.515.064-.55-.615-1.28-.914-2.02-1.21-.23-.12-.458-.24-.687-.357z"
+	   id="path126" />
+	<path
+	   fill="#9B9EA9"
+	   d="M397.39 434.582c1.085-.285 1.784.076 2.02 1.21l-1.896-.622c-.04-.197-.083-.393-.125-.588z"
+	   id="path128" />
+	<path
+	   fill="#676B79"
+	   d="M401.693 438.066l-1.16-1.98c1.1-.893 1.958.058 2.9.36 1.02.502 1.798 1.65 3.174 1.165 1.28-.4.146-2.52 1.852-2.62.352.138.624.373.888.638 1.602 1.586 1.623.074 1.883-.97 2.625-.55 2.483 2.02 3.595 3.177.435.522 1.04.87 1.45 1.424.4.59.57 1.233.44 1.948-.073.256-.212.48-.394.676-.805.56-1.683 1.06-1.922 2.137-.237.487-.58.86-1.092 1.064-1.877.438-3.24-.714-4.718-1.52-.82-.925-2.116-1.255-2.863-2.273-.77-.32-1.33-.946-2.02-1.393-.2-.12-.387-.258-.562-.407-.4-.416-.99-.604-1.322-1.104l-.127-.32z"
+	   id="path130" />
+	<path
+	   fill="#BEC0C6"
+	   d="M403.17 437.074c-.882-.326-1.76-.656-2.64-.984-.203-.12-.403-.238-.603-.36.317-1.388-1.907-1.642-1.396-3.118-.382-.237-.555-.592-.552-1.036.118-.595.464-.986 1.025-1.197.262-.063.522-.054.782.013 1.293.336 1.053 2.773 3.02 2.21.783.397 1.173 1.044 1.22 1.907-.288.85-.15 1.847-.856 2.564z"
+	   id="path132" />
+	<path
+	   fill="#7A7E8A"
+	   d="M359.335 327.705c-.11-.572-.335-1.152.112-1.688 1.574-.897 1.246-2.47 1.438-3.896.15-1.163-.417-2.392.392-3.634 1.106.52 1.854 1.457 1.344 2.52-.372.78-.32-1.014-1.058-.528-.112 1.164.86 1.927 1.248 2.933 1.772 2.174.602 4.982 1.667 7.19.104-.747.058-1.757 1.188-2.103.438-.068.822.027 1.14.354.162.243.257.512.286.8-.122 2.076.642 4.138.024 6.238-.396 1.37-.883 2.59-2.31 3.168-1.08.257-2.042.634-2.632 1.71-.393.715-.96 1.452-1.943 1.027-.833-.358-1.172-1.213-1.135-2.028.06-1.405-.27-2.685-.858-3.924-.217-1.855.216-3.674.948-5.3.47-1.048.17-1.895.15-2.835z"
+	   id="path134" />
+	<path
+	   fill="#636876"
+	   d="M366.908 328.018c.354-.096.708-.19 1.063-.287 1.154 1.583.89 3.68 1.928 5.302.12.228.206.468.276.705.2 1.262 1.406.328 1.935.873l.01.004c.898.688.5 1.484.103 2.193-.967 1.72-.86 3.45-.41 5.3.652 2.68-.766 4.43-3.62 4.733-2.96-.584-3.123-.865-2.01-3.48.172-.116.36-.213.544-.297.246-.245.197-.567.21-.88-.048-.822 1.8-.986.58-2.378-.84-.955-.736-2.425-.327-3.892.613-2.198-.594-4.432-.52-6.69.195-.375-.158-.866.238-1.205z"
+	   id="path136" />
+	<path
+	   fill="#898D98"
+	   d="M369.55 333.588c-1.44-1.705-1.764-3.713-1.58-5.857-.043-.685-.09-1.368-.132-2.054-.035-.55-.21-1.053-.242-1.604-.066-1.107.32-2.215.872-3.158.312-.533 1.258-.947 1.807-.424.438.418.65 1.174.71 1.758.065.65.257 1.037.54 1.645.61 1.305.824 2.658.286 4.033-.144.367 1.266 2.023 1.362 3.53.12 1.878-1.03.814-1.63 1.023-1.084-.46-.855-1.732-1.553-2.474.415 1.283 1.38 2.615-.44 3.582z"
+	   id="path138" />
+	<path
+	   fill="#C2C4CA"
+	   d="M365.98 328.836c-1.555 1.27-.276 2.78-.144 4.293-2.438-1.456-3.29-4.35-3.027-9.72 2.427-1.187 2.483 1.02 2.85 2.248.19.625.373 1.31.57 1.965.12.447.047.854-.25 1.213z"
+	   id="path140" />
+	<path
+	   fill="#686D7B"
+	   d="M369.207 321.69c2.198 2.25-.907 2.175-1.42 3.235.295-1.723-2.48-2.19-1.686-4.12h.003c.66 1.613 2.307-.24 3.104.886z"
+	   id="path142" />
+	<path
+	   fill="#686D7B"
+	   d="M366.104 320.807c-.354-.277-.72-.54-1.06-.838-.493-.433-1.576-.462-1.27-1.45.21-.68 1.13-.604 1.294-.172.318.832 2.82.804 1.036 2.46z"
+	   id="path144" />
+	<path
+	   fill="#898D98"
+	   d="M365.98 328.836l.25-1.21.68.392-.247 1.207-.684-.39z"
+	   id="path146" />
+	<path
+	   fill="#848893"
+	   d="M370.916 313.225c.737 3.182 2.747 4.91 5.983 5.242.046.176.094.354.144.53.25.444.163.694-.393.68l-.525.142c-.715.766-.032 1.518.02 2.274.048.625.223 1.31-.76 1.348-2.166-.836-2.858-3.21-4.634-4.457-1.043-1.95-1.228-3.878.166-5.76z"
+	   id="path148" />
+	<path
+	   fill="#BFC1C7"
+	   d="M368.207 311.67c-.52-.62.51-1.14.113-1.748.65.203 1.74.102 1.75.887.018 1.176-1.31.37-1.863.86z"
+	   id="path150" />
+	<path
+	   fill="#979AA5"
+	   d="M388.274 333.11c.095.647.097 1.2-.59 1.62-.91.555-.372.98.238 1.334.883.38.57 1.42 1.106 1.988l.15.53c.39.224.492.565.406.99-1.183.74-1.57-.204-2.037-.855.193.912.708 1.77 1.325 2.597.767 1.02 1.083 2.325.473 3.344-.717 1.188.3 2.4-.334 3.52-.575 1.022-.87 2.333-2.11 2.762-2.563-.73-2.562-3.246-3.035-5.082-.317-1.236-1.642-2.642.13-4.587 1.145-1.253-1.916-2.912-3.007-4.45-.165-.206-.298-.43-.407-.665.04-1.103-1.63-2.308.195-3.304.977.536 1.988 2.458 2.71 1.626 1.145-1.32-.794-2.176-1.63-3.125-.236-.266-.4-.596-.598-.895-.14-2.047.543-2.46 2.368-1.396 1.83 1.07 3.47 2.278 4.65 4.05z"
+	   id="path152" />
+	<path
+	   fill="#7D818D"
+	   d="M368.45 346.453c2.52-.98 3.21-2.428 2.29-5.13-.665-1.954-.467-3.66 1-5.165.423-.435.454-.98.378-1.545 1.647-.455 2.96.36 4.288 1.12 1.325.615 1.453 2.046 2.133 3.1.245 1.145 1.116 1.847 1.85 2.667.805.908 1.56 1.926.23 3.04-2.94-.632-3.353-1.09-5.43-5.974.496 1.364.488 1.5-.158 2.88-.27.16-.57.296-.725.603-.408 2.718.674 5.353.367 8.1-.103.9 1.936.925 2.21 2.183.335.98.372 1.935-.23 2.84-1.485.66-2.457-.29-3.47-1.118-1.664-1.396-3.157-2.946-4.25-4.84-.485-.85-1.155-1.697-.485-2.762z"
+	   id="path154" />
+	<path
+	   fill="#595E6D"
+	   d="M380.45 344.36c.746-1.48-.27-2.124-1.306-2.786-.808-.516-1.938-.897-1.19-2.252.26-1.73-1.65-3.13-.748-4.955.468-.116.86 1.834 1.51-.088.392-1.147-.225-2.33.366-3.4 1.26.205 1.4 1.15 1.696 1.976-.46.614-.13 1.23.188 1.813.183.34.255.648.35 1.016.08.31.253.646.514.836.157.115.28.152.37.332.16.32.502.54.747.793.588.606 1.23 1.213 2.08 1.403.21.047.456.86.43.877-2.733 1.563 1.293 1.77.39 3.017-.69.23-1.064-1.113-2.12-.654 1.252 2.688.91 5.938 3.004 8.385-.125.236-.305.418-.538.543-1.046.314-1.418-.402-1.818-1.146-1.047-1.946-1.64-4.25-3.995-5.205-.095-.045-.015-.338.07-.506z"
+	   id="path156" />
+	<path
+	   fill="#C2C4CA"
+	   d="M385.3 324.19c-.763.405-.967.78-.024 1.257.633.318 1.207.75 1.81 1.133-.098.244-.063.566-.393.68-.354.14-.468 1.16-.872.605-1.777-2.48-3.507-.78-5.266-.096.295-.114.375-1.677.513-1.983.16-.36.364-.48.66-.71.87-.663.3-1.41-.26-1.978-.697-.708-1.355-1.456-1.916-2.275-1.106-1.617-1.753-3.476-1.77-5.442.923.192 1.354.744 1.454 1.703.392 3.734 3.158 5.488 6.067 7.103z"
+	   id="path158" />
+	<path
+	   fill="#9599A2"
+	   d="M376.695 321.957c.216.932.687 1.723 1.516 2.2.796.45 1.147 1.136 1.325 1.972.175.796.6 1.81-.314 2.226-1.256.572-1.444-.635-1.76-1.47-.235-.163-.448-.38-.77-.33-.476.312-.23.995-.69 1.306-1.14-1.033-1.485-2.276-1.007-3.744 1.264-.175.55-1.9 1.702-2.16z"
+	   id="path160" />
+	<path
+	   fill="#100507"
+	   d="M369.55 333.588c.324-1.004.874-1.975-.395-2.842-.714-.488-.875-1.363-.392-2.174.26-.437.71-.504 1.183-.308.813.34 1.305.865 1.313 1.828.01.797.18 1.592.28 2.387l.14.532c-.267 1.08-.31 2.562-1.986 1.104-.047-.17-.096-.348-.143-.528z"
+	   id="path162" />
+	<path
+	   fill="#100304"
+	   d="M376 327.86c.312-.78-1.605-2.015.493-2.43.59.413.686.96.438 1.6.956 1.712-.24 3.512.406 5.64-1.643-1.59-.588-3.434-1.336-4.81z"
+	   id="path164" />
+	<path
+	   fill="#767A86"
+	   d="M377.205 334.365c.332 1.643 1.566 3.145.748 4.955-.638-1.144-1.34-2.26-1.546-3.588-.02-.646-.688-1.322.065-1.904.067-.05.48.348.733.537z"
+	   id="path166" />
+	<path
+	   fill="#6A6F7C"
+	   d="M376.695 321.957c-.43.826-.314 2.082-1.7 2.16l.395-.676c.636-1.167-.23-2.194-.29-3.3-.065-1.21.505-.775 1.03-.322.185.713.376 1.426.565 2.14z"
+	   id="path168" />
+	<path
+	   fill="#898D98"
+	   d="M369.694 334.123c1.106.426 1.57-.297 1.985-1.107.14.53.284 1.063.428 1.594-.946.043-1.315 1.69-2.452.978-.45-.283-.295-.98.038-1.465z"
+	   id="path170" />
+	<path
+	   fill="#6A6F7C"
+	   d="M376.653 319.676c.132-.225.26-.45.394-.678.723-.076 1.222.188 1.302.95.02.214-.12.607-.26.646-.763.193-.992-.545-1.437-.918zM376.93 327.03c-.147-.532-.29-1.066-.437-1.6 1.305-.163 1.082.68.964 1.456-.176.048-.353.094-.528.143z"
+	   id="path172" />
+	<path
+	   fill="#B2B4BC"
+	   d="M388.67 347.297c.04-.91-.612-1.75-.022-2.766.38-.653.498-1.964-.094-2.323-2.02-1.23-1.27-3.57-3.026-5.465 2.206.627 2.6 2.373 3.94 2.897.847-.51 1.334.227 1.896.583.917.584.312 1.556.493 2.328.385-1.128 1.18-1.126 2.172-.893 1.17.277 2.293.588 3.157 1.603.254-.604-.32-1.262.21-1.762 1.832.618 3.022 1.96 4.327 3.77-1.802-.222-3.152.064-4.107 1.32-.18.34-.48.562-.845.505-2.497-.375-2.514.953-1.896 2.73-.03.565-.22 1.042-.756 1.32-2.113-.854-4.635-1.145-5.45-3.846z"
+	   id="path174" />
+	<path
+	   fill="#BCBBBF"
+	   d="M397.4 341.504c.165 1.186 1.068 1.822 2.484 2.586-3.152.582-4.787-1.865-7.175-1.824.163.367.372.836.587 1.314-2.438.342-2.313.354-2-2.152.11-.904-1.11-1.277-1.827-1.785l-.29-1.06c2.73.855 2.035-.685 1.372-2.42 1.473 2.704 3.357 4.43 6.167 4.954.226.127.454.256.68.387z"
+	   id="path176" />
+	<path
+	   fill="#999CA5"
+	   d="M394.463 349.73c-1.436-.645-.02-2.596-1.625-3.18 1.688.06 3.258-1.047 4.78.043.68.385 1.355.77 2.033 1.158-1.24.1-2.207.33-.71 1.616 1.582 1.362 2.013 3.06 1.642 5.13-1.157-.327-1.313-1.36-1.88-2.018-.77-.896-.733.257-1.095.396-.12-.02-.238-.044-.357-.063-1.415-.583-1.19-2.652-2.787-3.08z"
+	   id="path178" />
+	<path
+	   fill="#686D7B"
+	   d="M386.692 327.258c.13-.227.262-.453.394-.678.54.617 1.402.945 1.642 1.836l-.262.072-.268.063c-.503-.43-1.004-.86-1.506-1.292z"
+	   id="path180" />
+	<path
+	   fill="#BCBBBF"
+	   d="M389.033 338.053c-.836-.404-.854-1.26-1.106-1.988 1.907-.198.967 1.195 1.106 1.988z"
+	   id="path182" />
+	<path
+	   fill="#9D9FA9"
+	   d="M389.098 326.535c1.11.615 1.813 1.396 1.278 3.072-.973-1.066-.488-2.326-1.278-3.072z"
+	   id="path184" />
+	<path
+	   fill="#B5B7BF"
+	   d="M414.808 378.516c.99.877 1.6 1.777.182 2.81-.127.014-.253.024-.38.038-.08.408-1.863-1.38-.815.7.517 1.022-.702 1.46-1.654 1.634-.26.01-.513-.033-.757-.12-.84-.48-1.18-1.263-1.27-2.18-.067-.714-.355-1.317-.933-1.77-.824-.698-1.866-1.216-2.06-2.446-.04-1.074-.083-2.14-.853-3.01-.585-.658-.856-1.42-.315-2.19.637-.9 1.46-.144 2.19-.138 1.208-.713.085-1.375-.126-1.945-.68-1.843-1.942-3.46-2.104-5.51.114-.823.364-1.573 1.104-2.062 1.364 2.242 2.73 4.48 4.087 6.73.328.542.345 1.515 1.406.93 2.055-.29 2.497.208 2.455 2.77-1.078-.326-2.212-.813-1.628 1.207.288.998.337 2.065.493 3.103-.48.39-.808.082-1.147-.218.652.623 1.065 1.545 2.125 1.666z"
+	   id="path186" />
+	<path
+	   fill="#CBCBCD"
+	   d="M407.998 372.354c-.57.945-1.34-.494-1.656.018-.523.84.523 1.103.88 1.646.578.894 1.434 1.897.33 3.035-1.28.688-1.9-.246-2.26-1.138-.437-1.084-1.135-1.555-2.22-1.63-.25-.083-.474-.204-.676-.363-1.063-1.695-1.146-3.354-.64-5.382.645-2.592 1.126-5.46-1.314-7.672-.336-.303-.548-.717-.438-1.213.07-2.06 1.985-3.055 2.723-4.73 1.312 1.007 2.303 2.19 2.215 3.98-.224 1.187.544 2.032 1.115 2.894.484.728.878 1.33.215 2.118-.99 1.066-.188 1.965.24 2.937.772 1.747 1.81 3.444 1.486 5.5z"
+	   id="path188" />
+	<path
+	   fill="#D4D4D6"
+	   d="M414.97 372.756c-.532-1.178-.77-2.62-2.457-2.77-.198-1.46-.396-2.92-.596-4.382.104-.026.21-.063.313-.09.27.476.543.942.83 1.442.852-2.598-1.08-4.825-.5-7.276 1.702.106 1.732 1.576 2.196 2.69.312.752.336 1.46.136 2.226-.188.72.01 1.47.04 2.22.024.69.007 1.393.125 2.074.108.628.385 1.21.537 1.83.325 1.323.543 2.73 1.477 3.786-1.258.092-1.39-1.18-2.1-1.75z"
+	   id="path190" />
+	<path
+	   fill="#D3D4D9"
+	   d="M414.088 362.854c-.432-1.096-.6-2.314-1.524-3.17-.887-2.086-.492-4.398-1.16-6.52.173-.055.344-.104.52-.15.444.012.78.225 1.033.584.374 1.184.562 2.416.913 3.607.306 1.117.67 2.217.903 3.35.177.87.406 1.79-.685 2.3z"
+	   id="path192" />
+	<path
+	   fill="#D6D5D7"
+	   d="M406.23 363.684c.063-1.32-1.537-1.627-1.715-2.934-.108-.795-.15-1.326.426-1.852.828 1.063 1.69 2.102 2.08 3.43.156.758-.04 1.393-.644 1.893-.17-.08-.247-.185-.234-.32.013-.13.042-.203.087-.216z"
+	   id="path194" />
+	<path
+	   fill="#BCBBBF"
+	   d="M400.007 359.654c.883.617 1.77 1.23 2.646 1.854.217.155.614.444.584.508-1.02 2.097.867 4.722-.176 6.144-1.548 2.11-.527 3.75-.386 5.61-.12.23-.31.392-.543.492-.714.14-1.447-.134-1.59-.735-.348-1.48-1.698-1.994-2.525-2.998-.166-.532-.034-.995.338-1.395.244-.308 1.447.276.796-.875.37-1.244-.025-2.183-.726-3.29-1.46-2.322-3.505-4.55-2.653-7.704.22-.183.452-.21.705-.086.64.677 1.142 1.53 2.176 1.703.572.05.94.453 1.357.77z"
+	   id="path196" />
+	<path
+	   fill="#999CA5"
+	   d="M397.608 352.877c.884 2.645.865 2.666-2.234 2.314-.107-.063-.218-.135-.326-.196-.59-.736-.937-1.527-.544-2.48 1.132-.725 2.138-.38 3.1.357l.004.007z"
+	   id="path198" />
+	<path
+	   fill="#9598A3"
+	   d="M396.478 357.18l-.267.072-.267.07c-1.602 1.073-2.22.104-2.646-1.27-.02-.487.108-.913.495-1.235.634-.328 1.146-.158 1.576.375v-.002l1.11 1.99z"
+	   id="path200" />
+	<path
+	   fill="#CBCBCD"
+	   d="M400.006 359.654c-.45-.256-.902-.516-1.354-.77.522-.346-.562-1.323.27-1.23.87.098.818 1.26 1.084 2z"
+	   id="path202" />
+	<path
+	   fill="#C5C4C8"
+	   d="M421.26 387.63c.083-.397.164-.794.246-1.194.89.313.82 1.256 1.24 1.88.355 1.677-.33 2.702-1.956 3.15-.72.222-1.438.438-1.77-.51.002.036.008-.142.008-.142s-.064.006-.093.028c-.146.11-.276.17-.445.205-.315.063-.615.09-.913.135-.433.158-.65.576-1.017.818-1.783.813-2.943.354-3.344-1.646-.08-.377-.09-.756-.038-1.137.623-1.517-1.067-2.062-1.353-3.2-.122-.576-.023-1.07.54-1.382 1.042-.27 1.885.138 2.65.787.836 1.598 2.314 1.21 3.68 1.185.228.13.45.26.68.39.582.353.78 1.85 1.886.634z"
+	   id="path204" />
+	<path
+	   fill="#D3D2D5"
+	   d="M423.928 389.268l.382 1.025c-.09 1.072.89 1.96.538 3.08-1.583 1.21-2.62-.635-3.98-.71-.22-.165-.377-.38-.48-.636-.052-.27-.005-.53.136-.77.488-1.175 2.005-1.567 2.228-2.942.39.318.782.636 1.176.953z"
+	   id="path206" />
+	<path
+	   fill="#B5B7BF"
+	   d="M418.697 386.61c-1.56 1.003-3.1 1.9-4.15-.6.175-.366.464-.59.855-.683.86.73 1.03-.59 1.658-.562.88.32 1.153 1.178 1.637 1.844z"
+	   id="path208" />
+	<path
+	   fill="#C5C4C8"
+	   d="M414.808 378.516c-2.02-.307-2.905-1.203-3.604-3.69 1.74-.236 1.287 2.08 2.635 2.24.32.483.644.967.968 1.45z"
+	   id="path210" />
+	<path
+	   fill="#BFBEC1"
+	   d="M417.06 384.77c-.377.486-.558 1.266-1.453.96-.688-.437-.844-1.03-.52-1.767.244-.36.597-.553 1.008-.656.56.328 1.265.564.964 1.463z"
+	   id="path212" />
+	<path
+	   fill="#B5B7BF"
+	   d="M416.096 383.307c-.132.23-.263.455-.396.682-1.104-.083-1.834-.58-1.867-1.772-.02-.79.353-1.133 1.15-.894l.003.004 1.11 1.98z"
+	   id="path214" />
+	<path
+	   fill="#BFBEC1"
+	   d="M421.26 387.63c.05.483-.037.878-.644.815-.85-.093-1.06-.767-1.243-1.445.625.227 1.115.85 1.888.63z"
+	   id="path216" />
+	<path
+	   fill="#B4B6BE"
+	   d="M397.465 418.043c-.063-1.418-.914-1.828-2.185-1.703-.896-.873-.876-1.977-.792-3.098.606-1.19 1.14-2.69 2.706-.703.45-1.085.08-2.345.45-3.487.518-1.043.51-2.066.154-3.188-.33-1.03-.575-2.156.33-3.104.238-.15.505-.22.79-.21.92.2 1.135 1.116 1.71 1.668 1.067 1.9 2.19 3.774 2.675 5.94 1.1 2.596-.96 4.088-2.068 5.918-1.55.353-2.646 1.328-3.54 2.582-.177-.092-.27-.21-.28-.363-.008-.156.01-.242.05-.252z"
+	   id="path218" />
+	<path
+	   fill="#BBBABD"
+	   d="M377.55 411.986c-.498-.434-.996-.867-1.496-1.3-2.214-4.7-3.98-9.552-5.09-14.634 2.19-.166 2.412 1.645 2.75 3.023.882 3.606 3.197 6.55 4.38 10.598.314-1.715.605-2.785 2.078-1.764.628.446 1.02 1.296 1.982 1.177.232.004.46.037.687.088.642.32 1.307.22 1.98.12.25.097.45.247.616.456.277.782.746 1.608-.53 1.968-1.83-.203-1.964 1.5-2.764 2.457-1.39.96-2.042-.66-3.095-.88-.952.084-.916-.965-1.496-1.31z"
+	   id="path220" />
+	<path
+	   fill="#BCBBBE"
+	   d="M384.904 411.72c.533-.77.122-1.524-.05-2.28-.528-.334-.943-.758-1.06-1.404.475-2.045.78-2.14 2.513-.78.193.19.358.414.497.647.316.64.67 1.27.96 2.023.688-.64 1.41-2.033 2.19-.19.22.522.226 1.064.995.774 1.52 1.615 3.34 3.03 3.665 5.445-1.206-.37-2.55-.266-3.404-1.625-.346-.543-1.62-1.63-2.103.254-.398.672.4 2.035-1.17 2.03-.87-.83-.303-2.32-1.392-3.055.736-1.75-1.364-.984-1.64-1.84z"
+	   id="path222" />
+	<path
+	   fill="#A0A2AC"
+	   d="M398.264 431.54l.268 1.066c-1.476.44-2-1.29-3.23-1.412-.938-.8-1.17-1.92-1.395-3.047-.554-3.694 1.787 2.732 1.087-1.293-.488-.883-1.428-2.59-2.395-4.276-.454-.79-.357-1.193.643-1.11.84.206.953 1.085 1.483 1.58.856.702 1.143 1.847 1.98 2.57.64 1.062 2.05 1.537 2.27 2.93.18 1.095-.52 1.984-.712 2.993z"
+	   id="path224" />
+	<path
+	   fill="#B9B8BB"
+	   d="M396.136 425.826c-1.21-.334-1.104-1.648-1.773-2.388.146-.22.077-.56.396-.68.482-.588 1.294-1.104.64-2.02-.342-.476-1.2-.853-.663-1.495.532-.63 1.254.46 1.946.144.847.076 1.55.547 2.325.834.42.29.733.648.84 1.163.242 1.096-1.577 1.027-1.227 2.188.18.858.397 1.72-.304 2.465-.794.625-1.46-.047-2.18-.21z"
+	   id="path226" />
+	<path
+	   fill="#9699A4"
+	   d="M394.618 415.955c-1.39-1.654-3.11-3.072-3.713-5.28-.81-.614-.76-1.382-.205-2.07.633-.776 1.248-.216 1.82.2.79 1.412 2.146 2.498 2.44 4.2.104 1.112.216 2.222.32 3.335-.217-.13-.44-.258-.662-.385z"
+	   id="path228" />
+	<path
+	   fill="#BBBABD"
+	   d="M387.938 416.615l1.17-2.03c.415 3.927 2.347 7.36 3.61 11.042-.98-.752-1.522-1.867-1.993-2.98-.234-.552-.46-1.11-.736-1.644-.142-.27-.295-.53-.47-.778-.107-.156-.288-.53-.452-.607-.02.315-.015.64.018.955.035.38.014.738-.005 1.116-.354-.344-.555-.805-.6-1.29-.028-.306.05-.6.093-.9.048-.327-.006-.556-.092-.874-.18-.673-.362-1.34-.542-2.01z"
+	   id="path230" />
+	<path
+	   fill="#BCBBBE"
+	   d="M382.142 414.176c-.593-2.53-.11-2.96 2.764-2.457-1.167.544-.477 3.173-2.764 2.456z"
+	   id="path232" />
+	<path
+	   fill="#A1A3AD"
+	   d="M394.756 422.76c-.132.23-.267.455-.396.682-.372-.655-.745-1.313-1.117-1.973-.183-.677-.363-1.353-.637-2.358 1.537 1.072 1.796 2.386 2.15 3.648z"
+	   id="path234" />
+	<path
+	   fill="#5B5F6F"
+	   d="M398.716 420.563c-1.018.19-1.688-.21-2.037-1.174-.15-.69-.54-1.52.785-1.347.05.174.1.348.146.52.912.37 1.534.896 1.106 2z"
+	   id="path236" />
+	<path
+	   fill="#9D9FA9"
+	   d="M393.614 428.313c-1.896-.2-2.688-1.217-2.782-2.932l2.782 2.933z"
+	   id="path238" />
+	<path
+	   fill="#BBBABD"
+	   d="M386.548 413.563c1.9.36 1.218 1.904 1.39 3.053-1.595-.503-1.193-1.913-1.39-3.053z"
+	   id="path240" />
+	<path
+	   fill="#9D9FA9"
+	   d="M393.907 428.15c.87.83 1.114 1.947 1.396 3.048.05.18.097.354.143.53-1.452-.688-1.73-2.082-2.07-3.438.175-.048.353-.092.53-.14z"
+	   id="path242" />
+	<path
+	   fill="#868995"
+	   d="M385.702 416.346c-.2-.744-.4-1.492-.69-2.564.888.937.98 1.757.69 2.564z"
+	   id="path244" />
+	<path
+	   fill="#CCCCCE"
+	   d="M396.136 425.826c.656-1.156 1.158.09 1.74.112 1.335.71 2.572 1.728 4.21.478.623-.478 1.357.12 1.98.543.966.646 1.64 1.728 2.863 1.958.344-1.48.827-2.664 2.54-1.21.622.896 1.07 1.9 1.69 2.806.5 1.47.187 2.947.028 4.422.21.87 1.164 1.424 1.053 2.44-2.137-.925-3.696-1.827-3.895-2.256-1.52 1.562-2.49.78-3.275-.77-.474-.94-.688-2.155-2.175-1.972-1.504.162-1.73-1.922-3.203-1.816l-.254.066-.25.065c-.78-.534-.767-1.293-.598-2.098-.616-1.095-2.258-1.29-2.454-2.77z"
+	   id="path246" />
+	<path
+	   fill="#676B79"
+	   d="M416.366 441.514c-.193-.71-.394-1.42-.59-2.13-.386-.577-.106-.98.35-1.335 1.605-.196 1.647 1.49 2.552 2.116.104.362.337-.248.05-.02-.103.08-.104-.017-.2-.19-.493-.913-.268-1.594.648-2.012.842-.38 1.646-.186 2.26.453.572.6 1.15.73 1.948.953 1.732.49 3.842 1.453 3.77 4.017-1.043 1.676-2.145 3.26-4.504 2.895-.812-.123-1.252.738-2.01.77-1.19.083-2.43.308-3.213-.965.698-1.76-1.02-2.962-1.06-4.553z"
+	   id="path248" />
+	<path
+	   fill="#5C6170"
+	   d="M411.193 434.934c-1.64-1.264-.134-2.992-.65-4.42-.858-.754-.555-1.844-.8-2.772-.19-.722-.358-1.517.583-1.787.777-.23 1.388.254 1.85.854 1.018 1.312.6 2.964 1.018 4.417 0 .27-.05.53-.142.773-.114.23-.36.35-.533.535.294.194.562-.15.864-.043 1.233.438 1.735 1.372 1.83 2.604-.397 1.143 1.098 2.7-.772 3.52-1.457-.9-.958-3.522-3.25-3.682z"
+	   id="path250" />
+	<path
+	   fill="#D5D4D7"
+	   d="M402.935 431.998c.733-1.398 1.545-1.02 2.153.024.446.77.55 1.734.972 2.523.233.438.784 2.045 1.185-.11.14-.728.847.19 1.104.682-.533 1.02.01 2.146-.29 3.18-.284.967-.734.352-1.126.047-1.714-.678-3.353-1.42-3.265-3.693-.367-.66-.735-1.324-1.105-1.984.025-.28.143-.503.37-.668z"
+	   id="path252" />
+	<path
+	   fill="#767A87"
+	   d="M416.366 441.514c.977 1.262 3.35 2.146 1.15 4.262-1.698.627-3.225.603-4.32-1.104.312-.28.622-.563.937-.84.683-.638.995-1.56 1.694-2.18.18-.045.36-.09.54-.138z"
+	   id="path254" />
+	<path
+	   fill="#ADAFB7"
+	   d="M403.67 434.65l3.265 3.693c-1.66.773-2.708-.258-3.766-1.27-.166-.875-.758-1.84.5-2.423z"
+	   id="path256" />
+	<path
+	   fill="#C7C9CF"
+	   d="M415.828 441.654c.02 1.185.775 2.938-1.694 2.18-1.296-2.182.933-1.607 1.694-2.18zM414.44 438.614c.794-1.125-.595-2.38.208-3.502.11.043.222.086.335.127.783.68.983 1.6 1.06 2.57.006.116.007.237.01.354-.093.403-.186.813-.274 1.22l-1.34-.77z"
+	   id="path258" />
+	<path
+	   fill="#676B79"
+	   d="M402.935 431.998c-.122.22-.246.44-.367.662-.565.317.05 1.424-.854 1.42-.538-.007-.843-.486-1.016-1.072-.248-.84-.662-1.633-1.005-2.445.095-.35-.573-1.344.358-.93 1.098.486 1.934 1.553 2.885 2.365zM398.595 428.598c.196.7.396 1.4.596 2.1-.31.28-.62.564-.926.847-.32-1.033-.307-2.024.33-2.947z"
+	   id="path260" />
+	<path
+	   fill="#9C9FA8"
+	   d="M358.453 334.846c-.36-1.926.062-3.83.145-5.744.247-.465.495-.932.74-1.398 1.062.765 2.404 1.123.65 2.902-1.022 1.035-.94 3.162-1.355 4.797-.2-.072-.296-.178-.28-.32.013-.144.05-.224.1-.237z"
+	   id="path262" />
+	<path
+	   fill="#BDBFC5"
+	   d="M358.453 334.846c.063.186.12.37.184.557 1.884 1.54.604 4.168 2.115 6.27.742-1.978 1.312-3.937 3.804-3.306.552.434.548 1.078.658 1.684-.204 1.105.927 1.314 1.353 1.995.26.512.258 1.012-.04 1.504-.99 2.048.343 2.562 1.927 2.905 1 2.963 3.236 4.998 5.353 7.127-.074.533-.325.914-.874 1.035-1.36.225-.366 1.643-1.1 2.188-1.564 1.192-1.82-.223-2.32-1.153-.54-1.097-.48-2.322-.754-3.478-.314-1.3-.315-2.77-2.568-2.033-1.653.54-1.733-1.122-1.917-2.292-.143-.512.078-1.012.074-1.57-.42.55-.172 1.163-.287 1.718-.07.268-.227.473-.45.63-1.162.382-1.808-.39-2.478-1.105-1.854-1.993-1.284-4.77-2.276-7.043-.33-1.864-.706-3.725-.407-5.63z"
+	   id="path264" />
+	<path
+	   fill="#898D98"
+	   d="M364.453 340.105c.033-.578.066-1.16.103-1.74 2.27-1.233 1.87-3.48 1.896-5.45.02-1.238-.323-2.48.214-3.69.546 2.64 2.61 5.112.813 8.03-.17.27.333.953.52 1.445.556 1.438 1.35 2.918-.547 4.022.04.326-.098.545-.393.68-.177.046-.354.095-.528.144l-.433-1.598c-.836-.362-.8-1.495-1.647-1.843z"
+	   id="path266" />
+	<path
+	   fill="#BDBFC5"
+	   d="M367.053 343.402l.393-.676c.656.44 1.295 1.13.504 1.695-.596.428-.658-.59-.897-1.018z"
+	   id="path268" />
+	<path
+	   fill="#A8ABB4"
+	   d="M394.163 354.947l-.386.688c-.705.5-1.14-.02-1.607-.418-.232-.27-.43-.576-.638-.867-.985-1.463-1.637.75-2.528.236-.243-.07-.465-.188-.666-.345-.396-1.34-2.796-1.43-2.146-3.427.178-.05.354-.098.532-.145-.01-1.504 1.142-2.338 1.943-3.37 1.62 1.563 4.082 1.84 5.554 3.63.37.19.517.51.52.908-.702.94-.452 2.06-.577 3.11z"
+	   id="path270" />
+	<path
+	   fill="#B2B4BC"
+	   d="M387.13 342.06c.918.374 1.145.964.856 1.417-.27.432-.604.03-.705-.357-.062-.26-.075-.528-.15-1.06z"
+	   id="path272" />
+	<path
+	   fill="#575C6C"
+	   d="M386.192 350.814c1.27.78 2.254 1.79 2.604 3.297.397 1.17 1.092 2.1 2.21 2.675.18.187.325.394.442.617.46 1.688-.02 2.418-1.88 1.967.312.937 1.367 1.835.912 3.13-.093.257-.237.472-.43.652-.228.135-.47.205-.73.23-1.65-.003-1.883-1.79-3.04-2.424-.658-2.573-2.543-4.528-3.525-6.944-.238-.584-.32-1.313-1.413-1.327-1.583-.017-2.154-1.396-2.664-2.68-.016-.262.04-.51.144-.747.36-.403 1.02-.657.688-1.4-.255-.762-.497-1.522-1.36-1.827-1.332-.398-2.155-1.63-3.44-2.1-.49-.27-.645-.708-.61-1.232.565-.3.73-.728.418-1.312.783-.672.67-1.352.156-2.172-.53-.85-.82-1.813-.38-3.473 2.214 3.134 2.676 7.057 6.158 8.62 2.947.79 3.957 3.234 4.838 5.75.18.524.38.75.902.7z"
+	   id="path274" />
+	<path
+	   fill="#C6C8CE"
+	   d="M372.88 354.4c.306-.27.61-.545.92-.817.896.52 1.8 1.038 2.7 1.56.25.102.46.25.625.46.355 1.347 1.15 2.552-1.053 3.44-1.133.455-.474 2.406.1 3.464 1.302 2.41.605 4.885.582 7.344-.148.19-.34.342-.563.44-.437.09-.892.077-1.332.17-.2.08-.396.155-.587.256-1.143.77-.492 2.204-1.17 3.14-1.278-.19-2.058.477-2.616 1.526-.257.077-.516.098-.78.065-1.87-1.406-2.063-5.006-.396-7.188.493-.647 1.33-.995 1.578-1.848 1.052-2.826.417-5.785.683-8.672.826-.96.59-2.338 1.31-3.34z"
+	   id="path276" />
+	<path
+	   fill="#757985"
+	   d="M374.27 342.6l.808.932c.767.37 1.276.98 1.646 1.724.834 1.46.377 3.188 1.045 4.737.424.99-.53 1.818-1.45 2.35-.537.236-1.066-2.34-1.77-.014-.046.153-.945-1.18-.86-1.818.417-3.155-.595-6.235-.376-9.367 1.338-.192.996.732.956 1.455z"
+	   id="path278" />
+	<path
+	   fill="#575C6C"
+	   d="M376.315 352.338c.962-2.295-.02-4.553-.118-6.83 2.228.336 2.586 2.01 2.746 3.828l-.003.006c-.418.768.21 1.13.596 1.61 1.026 1.275 1.32 2.814 1.105 4.357-.225 1.622-2.05 1.56-3.002 2.444-.814-.47-.202-1.606-.986-2.093-.048-.177-.1-.353-.148-.525l-.19-2.797z"
+	   id="path280" />
+	<path
+	   fill="#525767"
+	   d="M374.27 342.6c-.167-.588-.312-1.19-.96-1.46-.026-.347-.072-.827.33-.864.732-.065.658.672.874 1.11.395.5.604.964-.244 1.214z"
+	   id="path282" />
+	<path
+	   fill="#C5C7CD"
+	   d="M381.104 336.186c.127 1.125-.247 2.297.49 3.383-2.037-.995-1.578-3.038-2.277-4.69 1.047-.1 1.02 1.19 1.792 1.313-.002-.004-.006-.007-.006-.007z"
+	   id="path284" />
+	<path
+	   fill="#C0C2C8"
+	   d="M394.51 352c-.1-.355-.193-.713-.288-1.07l.24-1.2c1.353-1.216 2.02-.17 2.23.91.165.85.667 1.47.906 2.233-.984-.1-2.016.207-2.945-.35-.206-.064-.297-.17-.27-.302.025-.13.068-.204.126-.22z"
+	   id="path286" />
+	<path
+	   fill="#C8C7CA"
+	   d="M403.204 373.658c1.304.043 2.77-.28 2.692 1.893-.03.855.813 1.31 1.653 1.5.237 1.302 1.937 1.077 2.322 2.226.188.764.38 1.525 1.095 1.994-.262.834.336 1.434.58 2.127-.166.207-.382.328-.645.357-1.66-1.104-3.935-.648-5.452-2.13-.634-.706-1.036-1.528-1.278-2.438.082-1.913-1.026-3.62-.968-5.528z"
+	   id="path288" />
+	<path
+	   fill="#C2C1C4"
+	   d="M406.23 363.684c.048.182.1.36.146.537 1.083 3.126 3.49 5.76 3.477 9.33-1.132.366-1.06-1.097-1.854-1.196-1.41-2.08-1.988-4.523-2.975-6.79-.52-1.207-.216-1.906 1.204-1.88z"
+	   id="path290" />
+	<path
+	   fill="#CFD0D5"
+	   d="M414.985 381.322c-1.87 1.457.24 1.84.718 2.664-.433.56-.254 1.152-.097 1.742-.354.094-.708.188-1.063.28-.68-.386-1.356-.772-2.034-1.16-.605-.41-.714-.95-.435-1.595-.017-.588 3.614-.623.258-1.756-.535-.182-1.063-.72-.804-1.826.91 1.31 2.67.193 3.455 1.652z"
+	   id="path292" />
+	<path
+	   fill="#D7D9DD"
+	   d="M412.08 383.254c.145.53.285 1.063.433 1.594-.08.404-.16.81-.242 1.213.603.954 1.75 1.66 1.393 3.05.1.36.192.72.288 1.078-1.676 2.195-2.348.26-3.24-.787-.407-1.09-.806-2.18-1.004-3.33-.142-1.147-.188-2.24 1.313-2.534.177-.047.353-.094.532-.14.17-.048.35-.097.527-.142z"
+	   id="path294" />
+	<path
+	   fill="#C5C4C8"
+	   d="M411.5 378.41c-1.187-.244-1.743-.906-1.575-2.188 1.166.352 1.26 1.362 1.576 2.188z"
+	   id="path296" />
+	<path
+	   fill="#D4D3D5"
+	   d="M410.968 381.268c-.994-.318-1.79-.746-1.095-1.994.84.406.86 1.257 1.095 1.994z"
+	   id="path298" />
+	<path
+	   fill="#D2D1D4"
+	   d="M403.204 373.658c1.533 1.48 1.798 3.31 1.45 5.3-.77-.087-1.23-.59-1.618-1.192-.456-.98-.645-2.06-1.06-3.06-.024-.272.027-.53.168-.772.178-.055.354-.108.532-.166l.528-.11z"
+	   id="path300" />
+	<path
+	   fill="#BDBCC0"
+	   d="M392.427 354.834c.448.266.897.53 1.35.797.27 1.15.824 1.93 2.17 1.692.577 2.756 1.632 5.27 3.447 7.473.903 1.098 1.617 2.338.102 3.568-.12-.03-.24-.063-.362-.093-.896-.916-1.847-1.512-3.06-.506-.32.16-.672.29-.803.67-.2.58-.26 1.386-1.078 1.322-.8-.063-1.236-.752-1.404-1.48-.348-1.495-1.315-2.52-2.423-3.478-.41-.576-.73-1.168-.33-1.885h-.003c1.56-1.365 2.64-.025 3.97.682.31-2.438-.57-4.588-1.608-6.672-.387-.765-1.28-1.402.033-2.09z"
+	   id="path302" />
+	<path
+	   fill="#AEB0B8"
+	   d="M390.993 364.37c1.984.96 2.618 2.772 2.892 5.306.85-1.098-.064-3.05 1.844-2.582.863.074 1.125 1.635 2.308.94.563.2.847.538.542 1.146l-.25 1.213c-.233.62-.716.988-1.303 1.244-.41.268-.713.705-1.23.807-.38.02-.706-.11-1.01-.328-.063.27.19.324.324.438 1.41 1.17 2.825 2.33 2.494 4.474-.28.674-.737 1.096-1.507 1.084-1.69-.87-2.656-2.427-3.695-3.912-.537-.894-.826-1.89-1.187-2.854.128-1.496-.78-2.574-1.513-3.724-.153-.518-.16-1.002.28-1.396 1.214-.21-.367-.912.212-1.232.126-.39.313-.703.8-.623z"
+	   id="path304" />
+	<path
+	   fill="#AAADB6"
+	   d="M396.2 370.967c.708-.19 1.418-.383 2.127-.574 1.35.39 2.955.45 2.654 2.602-.082.6.627.802 1.163.94.053.175.104.35.155.526 1.304 1.5-1.49 1.538-.983 2.757-.214.162-.45.26-.714.3-1.254-.153-1.67-1.196-2.235-2.083-.48-.94-.216-2.063-.72-3-.312-.313-.75-.404-1.11-.633-.246-.222-.508-.443-.336-.833z"
+	   id="path306" />
+	<path
+	   fill="#D9D8DA"
+	   d="M398.576 369.18c-.27-.307-.55-.615-.82-.92-.584-.422-.95-1.018-.334-1.553.597-.52.885.295 1.26.598.348.285.416.803.814 1.06.034.384.413.835-.016 1.112-.166.11-.594-.186-.904-.297z"
+	   id="path308" />
+	<path
+	   fill="#9FA1AB"
+	   d="M394.51 352c.05.176.098.35.145.523.11.926 1.006 1.64.715 2.668-.398-.08-.806-.165-1.208-.243-1.267-1.146-.855-2.093.347-2.947z"
+	   id="path310" />
+	<path
+	   fill="#C8C7CA"
+	   d="M411.538 389.674c.625 1.008 1.546.633 2.41.512-.086 2.26 2.108.496 2.713 1.54.106-.216.277-.34.522-.353.646.178 1.357-.033 1.99.297.185.162.337.348.456.563.1.256.267.61.137.77-2.404 2.954.302 4.715 1.563 6.807 2.2 3.048 5.297 5.31 7.415 8.43.15.512.188 1.042.26 1.564.234 1.707-.472 2.123-1.972 1.36-.34-.203-.622-.475-.853-.798-.293-.43-.436-.927-.61-1.403-1.03-1.55-2.335-2.853-3.67-4.134-2.89-1.938-4.626-4.962-7.02-7.37-.976-2.467-2.586-4.424-4.768-5.926-.042-.248.02-.474.16-.683.294-.353.636-.675.97-1 .1-.06.198-.12.298-.176z"
+	   id="path312" />
+	<path
+	   fill="#9497A1"
+	   d="M413.66 389.11c-.916-.81-.863-2.064-1.393-3.05.553.975 3.297.952 1.392 3.05z"
+	   id="path314" />
+	<path
+	   fill="#B4B3B7"
+	   d="M418.924 391.695c-.395.326-.384 1.203-1.08 1.006-.302-.083-.443-.722-.657-1.105-.108-.444-.15-.877.25-1.22.4.085.802.167 1.2.25.435.266.496.633.287 1.07z"
+	   id="path316" />
+	<path
+	   fill="#C3C2C5"
+	   d="M417.438 390.375l-.252 1.217c-.174.043-.353.086-.525.133-.024-.58-.646-1.15-.092-1.71.084-.085.57.23.87.36z"
+	   id="path318" />
+	<path
+	   fill="#C5C4C8"
+	   d="M418.924 391.695c-.098-.354-.19-.715-.286-1.07l.532-.145c.067.922.943.44 1.353.777.047.178.096.354.146.533-.416.578-.947.72-1.6.432l-.146-.527z"
+	   id="path320" />
+	<path
+	   fill="#D3D2D5"
+	   d="M419.176 390.48c-.396-.488-.73-.988-.277-1.623.86.413.563 1.018.276 1.623z"
+	   id="path322" />
+	<path
+	   fill="#C5C4C8"
+	   d="M424.697 393.537l1.18.867c.23.088.43.23.592.416.522 1.104 1.302 2.018 2.177 2.858.397.48.963.812 1.253 1.39.154.356.187.723.048 1.084-1.275.86-.2 1.293.356 1.817.883 1.603 1.924 3.09 3.247 4.366.08.23.108.475.103.72-.533 1.12.52 2.012.47 3.066-.035.562-.243 1.033-.68 1.396-.832.502-1.57.25-2.28-.273-.68-.926-1.743-1.467-2.44-2.38-.04-.12-.075-.24-.11-.36-3.165-2.208-5.45-5.27-7.916-8.15.117-.587-.144-1.37.798-1.53.84.038 1.458.583 2.188.968-.348-1.533-2.45-1.424-2.73-2.977.185-1.107-.22-1.996-.853-2.912-.623-.896-.51-.978.725-1.586 1.647-.746 2.6.746 3.872 1.22z"
+	   id="path324" />
+	<path
+	   fill="#B4B3B7"
+	   d="M421.47 399.002c-.262.45-.522.902-.78 1.354-1.046-1.23-1.635-2.754-2.9-3.883-.83-.74-1.76-2.2.73-2.45.892-.09.55-1.13.552-1.8.533-.145 1.065-.287 1.6-.432.05.177.1.353.145.526-.97.48-.525 1.045.042 1.35 1.53.816 1.36 1.863.568 3.063-.872.32-.204.682-.025 1.026.206.408 1.207.77.066 1.246z"
+	   id="path326" />
+	<path
+	   fill="#888B96"
+	   d="M386.322 408.477c-.05-.176-.1-.352-.146-.53-.357-.195-.48-.558-.517-.91-.085-.89-.813-1.066-1.36-.908-.637.186-.23.98-.396 1.484-.01.248-.03.494-.063.738-.07.514-.457 1.078-.998 1.128-.327.03-.483-.067-.696-.286-.24-.246-.646-.404-.973-.5-.282-.084-.577-.113-.86-.192-.206-.062-.4-.034-.597-.136-.296-.146-.65-.4-.72.107-.097.758.27 1.574.476 2.59-2.01-.23-2.843-1.86-3.115-3.053-.78-3.387-3.253-6.068-3.686-9.574-.112-.928-.81-1.82-1.703-2.383-3.286-6.396-2.746-13.72-4.92-20.383-.237-.885-.18-1.807-.43-2.702-.127-.448-.488-1.216-.075-1.624.414-.41 1.066.2 1.29.56.31.503.448 1.073.62 1.628.082.258.155.52.228.78 1.682 4.577 1.89 9.478 3.104 14.15.147.564.268 1.14.39 1.71.05.23.06.628.184.824.1.16.49.27.667.338.507.182 1.026.238 1.553.326.944.16 1.886.313 2.833.455.366.053.75.066 1.11.14.472.09.92.233 1.402.282.604.063 1.204.09 1.808.168.662.086 1.15.565 1.708.88.362.206.636.467 1.06.495.45.03.9.05 1.353.05.368 0 .758-.04 1.103.11.51.22.933.59 1.445.812.66.282 1.304.567 1.903.974.544.368.978.834 1.275 1.416.128.248.295.457.4.713.104.256.255.5.37.754.306.665.54 1.36.932 1.983.994 1.45 1.348 2.867-.25 4.168-.83.995-1.234-.472-1.702-.333-.938.28-2.46.06-2.026 2.023.276 1.287.15 2.838-1.978 1.727z"
+	   id="path328" />
+	<path
+	   fill="#D6D5D7"
+	   d="M407.588 430.174c-1.172-.094-1.896-.982-2.826-1.5-.968-.543-1.608-3.19-3.606-.537-.824 1.092-2.605-.71-3.275-2.197.604-.98-.02-1.883-.185-2.813.167-1.05 2.16-.05 1.844-1.642-.272-.31-.547-.615-.82-.922-.364-.664-.733-1.33-1.103-1.996.535-1.582.918-3.354 3.296-2.606.05.115.098.23.146.35.873 1.667 2.897 2.52 3.233 4.573-.054.416-.253.713-.67.832-.275-.01-.522-.12-.766-.254-.035.24.097.47.23.577.884.707 2.206.93 2.49 2.29.193 1.372 1.04 2.46 1.625 3.66.342.7 1.044 1.316.386 2.187z"
+	   id="path330" />
+	<path
+	   fill="#CECED0"
+	   d="M402.79 410.316l-2.62-5.568c.187-.346.487-.504.867-.532.227.02.442.063.646.13.35.053.438-.19.524-.462.265-.845-.69-2.416.77-2.412 1.073.002 2.762-.267 3.366 1.396.27 1.18.06 2.433.52 3.588.06.25.07.5.06.755-.47 1.48-.765 2.94-.135 4.482.335.818.525 1.764-.31 2.508-3.083.464-2.873-2.196-3.687-3.884z"
+	   id="path332" />
+	<path
+	   fill="#CDCCCE"
+	   d="M402.79 410.316c1.19 1.275 1.52 3.482 3.83 3.547.58-.02.94.29 1.2.77.24.59.37 1.21.456 1.84.13 2.19-1.443 1.984-2.847 2.03-.373-.445-1.113-.443-1.72.063-.52.436-1 .477-1.344-.13-.468-.83-1.66-1.23-1.464-2.452v-.02c.588-.862-.478-2.454 1.656-2.772 1.25-.194-.616-1.93.233-2.876z"
+	   id="path334" />
+	<path
+	   fill="#BBBABD"
+	   d="M394.96 413.004c-1.697-.713-2.452-2.104-2.743-3.826.063-.11.126-.223.188-.336.62-.518 1.3-1.164 2.127-.7.73.407 1.014.466 1.73-.192.746-.686 1.41.134 1.67 1.006l.045.382c.45 1.692.984 3.403-.943 4.76-.375-.912-.392-2.762-2.073-1.094z"
+	   id="path336" />
+	<path
+	   fill="#B6B8C0"
+	   d="M398.523 402.904c-.597 1.1.077 2.086.278 3.11.242 1.247.613 2.505-.825 3.32h-.002c-.51-1.003-1.045-1.88-2.1-2.544-1.19-.748-2.465-1.928-2.012-3.525.44-1.543 2.08-1.445 3.41-1.594.668.162 1.356.3 1.253 1.234z"
+	   id="path338" />
+	<path
+	   fill="#656978"
+	   d="M398.523 402.904c-.45-.26-.9-.518-1.352-.776-.543-.1-1.055-.27-1.446-.687-.99-1.175-1.558-2.546-1.86-4.042.06-.434.267-.772.63-1.02 1.393-.184 2.22.94 3.33 1.425 1.072 1.485 2.78 2.82 1.23 4.957-.178.05-.355.095-.53.144z"
+	   id="path340" />
+	<path
+	   fill="#B6B8C0"
+	   d="M399.054 402.758c.132-1.838-.75-3.28-1.823-4.645-.562-.572-1.024-1.164-.02-1.73 1.337-.752 1.635-.71 2.354.197.47.594.697 1.283.827 2.016-.138 2.014 1.114 3.838.83 5.88l-1.05.27c-.856-.39-.87-1.254-1.116-1.988z"
+	   id="path342" />
+	<path
+	   fill="#A4A7B0"
+	   d="M380.032 408.46c-.285-1.07.414-2.7-1.972-2.435-.637.07-1.8-1.78-1.96-3.242-.183-1.646 1.205-.482 1.704-1.02.754-.813.757-.102.75.507-.015 1.19.952 1.878 1.563 3.34.47-1.854.813-3.22 1.26-4.99 2.053 3.01.342 6.114 1.206 8.855-1.61 1.572-2.204.59-2.55-1.014z"
+	   id="path344" />
+	<path
+	   fill="#BCBBBE"
+	   d="M382.6 409.494l.768-1.36c.653.265 1.036.708.967 1.45-.684 1.953-1.16-.037-1.735-.09z"
+	   id="path346" />
+	<path
+	   fill="#888B96"
+	   d="M384.332 409.584c-.32-.484-.645-.97-.967-1.45.274-.403.624-.513 1.064-.286.14.53.28 1.06.423 1.592-.17.05-.347.097-.52.144z"
+	   id="path348" />
+	<path
+	   fill="#BBBABD"
+	   d="M386.322 408.477c.414-.32 1.595.488 1.235-1.04-.347-1.48-.938-3.437 1.98-3.058.977.124.312-1.036.722-1.442.918.277.022 1.863 1.35 1.83 1.792-.56 1.982.637 1.906 1.873-.063.976-.438 1.91-1.297 2.536l-.007.002c-2.085-.943-1.104.795-1.312 1.498-.56.313.06 1.553-.857 1.39-1.657-.3-.313-1.64-.766-2.687-.605.782-1.146 1.47-1.795 2.304-.406-1.13-.783-2.168-1.16-3.207zM384.432 407.848c-.354.096-.708.19-1.063.285.356-1.105-.074-2.164-.215-3.223.458-.316.623.213.914.264 1.962.352 1.966.334 2.104 2.775-1.435-1.188-1.435-1.188-1.742-.102z"
+	   id="path350" />
+	<path
+	   fill="#5B5F6F"
+	   d="M399.536 421.484c.614 1.43.523 1.513-1.843 1.642.008-.95.008-.95 1.843-1.642z"
+	   id="path352" />
+	<path
+	   fill="#626675"
+	   d="M412.588 431.693c-.85-1.68.132-4.05-2.343-5.694.118 1.806.205 3.16.296 4.52-.925-.6-1.395-1.417-1.264-2.534-1.085-.696-1.71-1.723-2.08-2.93-.16-.354-.275-.723-.353-1.104-.167-1.26.108-2.177 1.64-2.123.265.023.522.09.772.185 1.13.605 2.187 1.32 3.1 2.232.757.963 1.596 1.88 1.78 3.162-.02.395-.23.79-.005 1.19.23.374.443.747.526 1.184-.06 1.314.243 3.032-2.068 1.91z"
+	   id="path354" />
+	<path
+	   fill="#DDDDDF"
+	   d="M407.93 424.924c.45 1.02.897 2.04 1.35 3.06-.354.25-2.056-1.394-1.064.772.267.586.996 1.576-.624 1.418-.057-2.25-3.12-3.076-2.64-5.58 1.06-.5 2.01.004 2.98.33z"
+	   id="path356" />
+	<path
+	   fill="#ACAEB6"
+	   d="M412.588 431.693c1.855.275 1.026-1.518 1.675-2.174 1.497-.19 1.175 1.003 1.374 1.798.313 1.33.435 2.814 2.292 2.93 1.03-.796 1.937.363 2.933.163.49.122.897.398 1.313.665 1.937 1.39 3.658 3.02 5.31 4.727.34.805.904 1.416 1.642 1.883.584.33 1.1.73 1.38 1.363.402 2.387-1.01 2.223-2.58 1.844-.695-.3-.934-1.002-1.34-1.555-.103-2.285-2.71-2.078-3.458-3.885-.547 1.164.5 1.707.53 2.52-1.586.04-1.382-1.274-1.878-2.042-.473-.734-.97-1.64-2.08-1.5-.297.037-.772.363-.79.586-.075 1.004.934 1.215 1.508 1.797-.853.937-1.52.875-2.256-.182-.608-.89-1.398-1.65-2.11-2.467l-.017.007c-.94-.804-.454-2.252-1.39-3.06l.003-.002c-.242-1.06-.82-1.867-1.783-2.387-.152-.073-.23-.175-.228-.302.002-.127.02-.195.062-.207-.035-.167-.075-.343-.114-.517z"
+	   id="path358" />
+	<path
+	   fill="#D1D1D3"
+	   d="M426.586 443.334c.44.262.89.52 1.334.783.36 1.483-.054 2.313-1.676 2.807-1.98.604-3.83 1.522-5.64-.27l.004-.013c.703-.743 1.174-1.577 2.615-1.116 1.693.542 2.103-1.63 3.363-2.19z"
+	   id="path360" />
+	<path
+	   fill="#474E62"
+	   d="M412.703 432.22c.06.167.11.34.162.51.008.353-.024.942-.354.848-1.065-.304-.855-1.27-1.05-2.283.558.412.9.668 1.243.924z"
+	   id="path362" />
+	<path
+	   fill="#DADBDE"
+	   d="M420.606 446.658c2.263 1.077 4.237-.486 6.355-.734.892-.104.45-1.287.957-1.804.98.193 2.428 1.23 1.994-1.108.14-.246.34-.402.607-.473.283-.01.52.093.725.286.513.883.546 1.79.184 2.73-1.306 1.34-3.048 1.843-4.72 2.483-1.547.9-3.087.784-4.617-.038-1.122.313-2.047.084-2.685-.957.403-.127.802-.256 1.2-.387z"
+	   id="path364" />
+	<path
+	   fill="#5C6170"
+	   d="M414.646 435.114c1.136.715.975 2.02 1.39 3.06-1.153-.71-.98-2.017-1.39-3.06z"
+	   id="path366" />
+	<path
+	   fill="#E3E2E3"
+	   d="M422.09 448.004c1.446-.363 3.062.303 4.405-.7.648.302 1.183.704 1.286 1.48-.168 1.564-.954 1.9-2.287 1.147-.913-1.03-3.236.43-3.403-1.926z"
+	   id="path368" />
+	<path
+	   fill="#C6C8CE"
+	   d="M365.41 371.252c-1.73-6.45-3.402-12.914-5.227-19.338-.744-2.62-.002-5.502-1.533-7.95.625-1.13-.31-2.35.195-3.485 1.897 1.802 1.23 4.74 2.926 6.632-.433 2.572-.168 5.082.718 7.527 1.332 2.63 1.878 5.51 2.638 8.325.125.73.116 1.49.553 2.145 1.12 2.12 1.832 4.27.425 6.547-.232-.134-.463-.27-.695-.405z"
+	   id="path370" />
+	<path
+	   fill="#787C88"
+	   d="M364.485 363.516c-1.167-2.71-1.27-5.78-2.813-8.363.014-1.158-.193-2.334 1.095-3.106 1.472-.888.103-2.662 1.037-3.767-.046-.178-.094-.354-.145-.53.276-.378.632-.476 1.062-.29.763 2.47.763 2.47 3.182.76 2.068 1.863 1.668 4.56 2.313 6.9-.007 3.29-.245 6.59.253 9.863-.035.226-.12.432-.244.617-.283.3-.02.564.083.846.302 1.664-.58 1.73-1.753 1.248-1.14-.465-1.7-1.66-2.734-2.274-.63-.51-.947-1.232-1.338-1.904z"
+	   id="path372" />
+	<path
+	   fill="#7B7F8B"
+	   d="M370.134 365.424c-1.705-3.447-.772-6.875.08-10.305.424.52-.144 2.175 1.496 1.31.38.28.514.62.284 1.06.825 3.122.682 6.202-.362 9.245-.84-.047-1.225-.614-1.498-1.31z"
+	   id="path374" />
+	<path
+	   fill="#8D909B"
+	   d="M363.802 348.28c.966.673-.076 1.958.985 2.803.796.63-.038 1.155-.86 1.354-1.402.335-1.96 1.43-2.258 2.718-.47-2.01-1.284-3.924-1.21-6.065.036-1.054.207-1.752 1.31-1.978.75.265.963 1.458 2.032 1.167z"
+	   id="path376" />
+	<path
+	   fill="#6F7481"
+	   d="M371.998 357.49c-.098-.353-.188-.707-.285-1.062-.18-1.13-.89-2.18-.563-3.517 1.04.022 1.124 1.08 1.732 1.485.86 1.367.197 2.29-.884 3.095z"
+	   id="path378" />
+	<path
+	   fill="#8D909B"
+	   d="M364.722 347.46c-.354.097-.707.19-1.063.288-1.272-1.06-.034-2.277-.11-3.414-.04-.627.938-.23 1.11.258.335.92.563 1.902.062 2.867z"
+	   id="path380" />
+	<path
+	   fill="#7A7E8A"
+	   d="M364.453 340.105c.48-.246.966-.492 1.496-.764l.145 2.606c-1.468.206-1.975-.444-1.642-1.84z"
+	   id="path382" />
+	<path
+	   fill="#9497A2"
+	   d="M392.427 354.834c-.5 1.52 1.135 2.05 1.538 3.227.868 2.534 1.122 5.048 1.008 7.966-1.696-1.16-2.54-3.502-4.94-3.104.03-1.935-1.687-3.29-1.592-5.308 1.1-.313 1.188 1.85 2.41 1.195.18-.095.022-.823.02-1.26 1.246-.58.797.82 1.268.94-.165-.63-.404-1.39-1.416-1.468-2.12.008-2.39-1.21-1.923-2.91h-.002c.53.375.822.916.99 1.396.475-.925.832-2.05 2.35-1.728.093.35.19.702.29 1.054z"
+	   id="path384" />
+	<path
+	   fill="#575C6C"
+	   d="M392.134 353.78c-.418.325-.914.585-1.237.987-1.31 1.63-1.8.83-2.104-.656 2.226-.202-.203-1.446.634-2.136.95.277 1.658 1.523 2.92 1.328-.02.088-.024.18-.062.26-.034.08-.1.145-.15.217z"
+	   id="path386" />
+	<path
+	   fill="#999CA5"
+	   d="M377.758 357.654c.185-.59.434-1.17.55-1.774.428-2.242.986.207 1.644-.354-.53-1.574.28-3.732-1.486-5.308-.06-.05.308-.572.48-.873l2.133 2.996c.145-.59.118-1.22.377-1.372.485-.29.834.25.96.646 1.04 3.293 4.445 5.515 4.243 9.362.25.138.438.336.56.595-.39 2.55-1.51.98-2.447.443-.34-.397-.493-.98-1.096-1.142-.22-.05-.426-.124-.626-.206-1.852-.377-.807 1.683-1.742 2.064-1.983.87-2.83-.23-3.298-1.928-.29-1.025-.758-2.05-.252-3.146z"
+	   id="path388" />
+	<path
+	   fill="#525767"
+	   d="M378.943 349.336c-.917-1.275-1.832-2.553-2.747-3.828l-1.12-1.977c1.76-.45 1.945 1.847 3.396 1.937.053.1.104.2.16.3.322.45.448 1.032.922 1.384.24.224.42.51.7.694.66.32.968.86.568 1.498-.568.914-1.246-.047-1.88-.006z"
+	   id="path390" />
+	<path
+	   fill="#717582"
+	   d="M390.72 357.02c.073-.228.147-.454.226-.683.416.348 1.104.633 1.198 1.055.27 1.146 1.817 1.734 1.35 3.14-.314.938-1.262.49-1.694-.855-.167-.517-.163-1.08-.333-1.592-.073-.222-.392-.355-.595-.53-.053-.18-.103-.356-.153-.534z"
+	   id="path392" />
+	<path
+	   fill="#818490"
+	   d="M386.8 361.498c-.05-.174-.1-.35-.146-.523.475-.316 1.004-.557 1.173.238.205.98.914 1.412 1.667 1.85.675.598.442 1.1-.17 1.557-2.884.61-1.546-2.192-2.524-3.122z"
+	   id="path394" />
+	<path
+	   fill="#AFB1B9"
+	   d="M380.252 347.844c-.228-.13-.45-.26-.68-.39-.688-.48-1.414-.946-1.104-1.985v-.003c1.695-.03 1.352 1.463 1.784 2.377z"
+	   id="path396" />
+	<path
+	   fill="#9497A2"
+	   d="M389.248 364.273c.085-.402.166-.807.248-1.21.182-.048.357-.097.537-.144.32.48.642.966.96 1.45-.13.227-.263.45-.395.678-.473.475-.9.254-1.325-.08-.147-.226-.154-.458-.025-.695z"
+	   id="path398" />
+	<path
+	   fill="#92959F"
+	   d="M377.758 357.654c.426 1.104 1.107 2.183 1.216 3.314.166 1.764 1.283 1.434 2.348 1.44.217.11.37.29.466.515.042.234.018.46-.078.682-.364.438-.938.63-1.285 1.092-.548 1.11-.19 2.396-.69 3.517-2.01 1.916-.603 4.004-.222 5.99.212 1.102 1.266 2.128-.053 3.184-1.242.563-.984 1.9-1.465 2.858-.7 1.486-1.462 1.54-2.228.06-.292-.563-.217-1.27-.6-1.813-.396-.814-.943-1.612-.882-2.55.063-.913-.564-.34-.854-.495-.674-.406-.824-.955-.47-1.646-.628-1.39-.154-2.692.39-3.938.305-.7.665-.302.886.17v.002c.583-.032 1.23-1.107 1.742.104-.545-2.2.7-4.54-.535-6.688-.808-1.4-.67-2.98-.774-4.514-.043-.568.407-1.05.688-1.01 2.382.316 1.023-1.427 1.295-2.257.84.398.86 1.254 1.105 1.984z"
+	   id="path400" />
+	<path
+	   fill="#606473"
+	   d="M370.134 365.424c.767.133 1.265.57 1.498 1.31-1.65 1.84-2.94 3.73-2.757 6.472.07 1.033.56 1.402 1.037 1.992-.072.11-.146.22-.223.328-1.493.867-2.13-.29-2.865-1.21-.047-.18-.094-.355-.142-.53.396-.682.142-1.184-.44-1.598-.05-.176-.097-.354-.145-.53-.377-2.183.236-4.546-1.188-6.536.27-.403.72-.166 1.065-.293 1.34.17 1.832 1.395 2.72 2.13 1.276 1.054 1.304.183 1.05-.853-.17-.082-.245-.188-.23-.32.014-.13.042-.2.088-.215.178-.052.356-.1.53-.148z"
+	   id="path402" />
+	<path
+	   fill="#C8CAD0"
+	   d="M372.963 373.797c.168.59.31 1.197.97 1.46-.485 1.22-.326 2.48-.336 3.753-.02 2.213-1.188 2.688-3.36 1.48-.258-1.826-.458-3.65.217-5.44.33-.778-.842-1.89.29-2.358.868-.364 1.524.613 2.22 1.105z"
+	   id="path404" />
+	<path
+	   fill="#606473"
+	   d="M370.45 375.053c.77 1.828.26 3.74.365 5.613.96 1.893 2.614 3.572 1.843 5.996-.16.502-.23 1.14-.922 1.17-.604.03-1.125-.395-1.235-.906-.672-3.084-1.9-6.066-1.75-9.303.045-.965.655-1.676 1.167-2.428v.002c.176-.05.356-.097.533-.144z"
+	   id="path406" />
+	<path
+	   fill="#D4D3D5"
+	   d="M411.016 383.535c-.804.68-.775 1.524-.498 2.426-1.855.306-3.826 2.034-5.46-.438-.282-1.46-1.362-3.086.836-4.025 1.827.378 3.874.208 5.122 2.038z"
+	   id="path408" />
+	<path
+	   fill="#9497A2"
+	   d="M405.894 381.492c-.918 1.328-.434 2.678-.06 4.022-.828.563-1.56.11-1.836-.534-1.11-2.595-2.426-5.104-3.275-7.806.18-.05.355-.1.537-.147 1.083-1.188 1.765-.425 2.413.496.326.48.65.957.98 1.436.68.714 1.04 1.583 1.24 2.532z"
+	   id="path410" />
+	<path
+	   fill="#C8C7CA"
+	   d="M400.724 377.176c1.634 1.576 2.616 3.47 3.15 5.697.25 1.027.466 2.396 1.96 2.643 1.452 1.27 3.216-.67 4.686.445l1.018 3.714-.01.014c-1.307.592-1.907-.568-2.755-1.096-1.345.23-2.573-.002-3.608-.957-1.064-.854-1.888-1.91-2.583-3.072-1.003-2.918-3.12-5.148-4.737-7.688-.188-1.003-.96-1.765-1.118-2.775 1.048-1.21 1.048-1.21 2.224.703.464.88.89 1.797 1.774 2.373z"
+	   id="path412" />
+	<path
+	   fill="#C8C7CA"
+	   d="M403.674 377.525c-.703-.66-1.583-.457-2.414-.498-.276-.65-.554-1.31-.824-1.95.31-1.16 1.688.975 1.863-.615 1.117.724.97 2.018 1.374 3.063z"
+	   id="path414" />
+	<path
+	   fill="#BCBBBF"
+	   d="M399.496 368.363c-.345-.264-.684-.537-1.033-.79-.24-.173-.45-.685-.776-.308-.154.176.035.654.07.994.076.55.185 1.212-.44 1.425-.61.21-.983-.37-1.25-.842-.3-.53.353-1.273-.338-1.75 2.078-1.767 2.383-1.665 3.766 1.27z"
+	   id="path416" />
+	<path
+	   fill="#575C6C"
+	   d="M381.606 363.473l-.14-.53c.604-.905-.547-3.503 2.23-2.316.566.057.317 1.53 1.353.774.582.05 1.054 2.08 1.75.1 1.334.47.474 2.872 2.445 2.774.052.176.1.354.146.53.418.42 1.064.685.953 1.45l-.234 1.21c-.32.417-1.703-.437-1.17 1.09.306.87.605 1.903-.066 2.83-.52.284-1.014.167-1.495-.087-.784-.738-1.396-1.652-1.936-1.94.933.894 1.66 2.343 1.2 4.187-.702 1.01-2.142-.64-2.744.76-1.426-1.402-2.206-3.137-2.614-5.062.146-1.074-.1-2.104-.386-3.125-.282-1.03-.112-1.922.706-2.644z"
+	   id="path418" />
+	<path
+	   fill="#9EA0AA"
+	   d="M398.315 376.674c2.51 2.06 4.11 4.697 4.956 7.81-.738.24-1.276.563-1.147 1.43.05.315.02.647.02.975-.003.187-.03.38 0 .566.04.266.124.476.124.75 0 .324-.062.608-.203.898-.116.232-.273.568-.52.68-.574.263-1.48-.112-1.952-.465-.97-1.312-1.338-2.823-1.496-4.403.644-1.198-.053-1.98-.873-2.72-.124-.214-.196-.443-.235-.687.366-1.16-.18-1.623-1.283-1.662-.22-.146-.375-.343-.48-.578-.1-.41-.01-.777.244-1.107.106-.075.22-.15.33-.227.48-.324.97-.646 1.452-.972.255-.458.715-.163 1.063-.29z"
+	   id="path420" />
+	<path
+	   fill="#A8ABB4"
+	   d="M387.64 370.99l1.205.244c.17-.066.32-.158.436-.298.48-.573-.406-1.864.818-1.938 1.293-.08 1.396 1.084 1.554 2.05.86.84 1.118 1.948 1.388 3.056.146 1.654.62 3.287.345 4.973.17.64.276 1.27-.1 1.88-.58.383-1.016.077-1.44-.29-.33-.415-.724-.782-1.02-1.227-1.012-1.154-1.814-2.45-2.48-3.83-.118-.223-.205-.46-.27-.7-.063-.98-.19-1.947-.643-2.845-.077-.39-.043-.754.21-1.075z"
+	   id="path422" />
+	<path
+	   fill="#818490"
+	   d="M391.65 371.047c-.437-.53-.877-1.06-1.727-2.082.36 1.344.567 2.11.884 3.273-.897-.46-1.432-.73-1.963-1.006-.685-1.656-.9-3.394-.884-5.216 1.055.01 1.258 1.254 2.147 1.445 1.32.854 2.198 1.892 1.544 3.587z"
+	   id="path424" />
+	<path
+	   fill="#90939D"
+	   d="M392.602 378.795c1.135-1.473-1.396-3.287.438-4.693.872 1.313 2.688 1.945 2.757 3.83v.004c-.574.402-.642.95-.454 1.574.12.71 1.064 1.602-.18 2.043-.793.28-1.313-.408-1.56-1.176-.195-.617-.445-1.195-1-1.582z"
+	   id="path426" />
+	<path
+	   fill="#9EA1AA"
+	   d="M398.315 376.674c.04 1.564-.743.076-1.066.29-.07-2.522-3.265-3.33-3.48-5.933 1.227-.187 1.38 1.04 2.178 1.15 1.04.29.638 1.38 1.1 1.985.42.84.844 1.675 1.267 2.51z"
+	   id="path428" />
+	<path
+	   fill="#BCBBBF"
+	   d="M397.045 374.172c-.83-.406-.854-1.26-1.1-1.988l.252-1.217c.227.13.448.26.673.39.374.233.754.442 1.215.245 1.375.77.276 2.21.858 3.197-.752.155-.747-1.993-1.898-.628z"
+	   id="path430" />
+	<path
+	   fill="#818490"
+	   d="M390.347 366.254l-.952-1.45c.4.08.804.163 1.204.245-.117.393.776 1-.253 1.204z"
+	   id="path432" />
+	<path
+	   fill="#AEB0B8"
+	   d="M398.084 371.602c.02.35.066.832-.34.87-.736.067-.654-.675-.876-1.114.408.08.814.163 1.216.244z"
+	   id="path434" />
+	<path
+	   fill="#CCCBCE"
+	   d="M406.35 406.51c-1.272-1-.654-2.186-.327-3.34.09.012.187.006.27.033.085.024.155.084.232.125-.07-.36.215.043.026-.256-1.454-2.313-1.012-3.904 1.704-4.697 1.063.06 1.73.686 2.227 1.55.097 1.43 2.118 2.853-.035 4.34-.352.245.31.776.633 1.02 1.052.786 1.98 1.938 3.535 1.395-.036-.776-.81-.926-1.178-1.405-.688-.753-1.444-1.464-1.496-2.582.076-.4.286-.716.65-.914 1.187-.126 1.646.908 2.386 1.495.75.59 1.448 1.48 2.496.463 1.746-.507 3.366-.168 4.9.737 1.93.772 2.698 2.672 3.96 4.097-.146.217-.34.383-.57.504-.604.158-1.2.3-1.78.59-2.782 1.38-2.792 1.354-4.308-1.715-.507 1.786-4.11 1.597-2.16 4.51.123.226.202.468.247.722-.188 1.21-.52 2.354.422 3.527.612.765.742 1.862-.462 2.51-.263.048-.52.036-.774-.046-.23-.123-.435-.285-.615-.48-2.065-1.853-2.572-4.687-4.252-6.792.384-2.77-1.958-3.218-3.627-4.23-.615-.545-1.32-.92-2.1-1.162z"
+	   id="path436" />
+	<path
+	   fill="#C2C1C4"
+	   d="M431.452 410.602c.5.588 1.128.8 1.883.63.313.312.358.7.314 1.114-.184 1.563 1.082 3.072.19 4.662-.14.33-.478.67-.365.998.93 2.77-.72 3.115-2.93 2.994.105 1.258 1.466 2.23.664 3.545-1.07.574-2.033.617-2.748-.55.097-.672-.394-.987-.838-1.33-.727-.74-1.43-1.49-1.82-2.472-.244-1.29-1.186-2.584-.315-3.896.623-.943-.454-.54-.598-.91-.498-1.27-1.826-2.44-.204-3.82.9-.376 2.168.214 2.742-1.034.27-.205 1.353 1.235.875-.373-.212-.715-.708-1.25.296-1.656v-.002c.858.826 1.994 1.275 2.852 2.1z"
+	   id="path438" />
+	<path
+	   fill="#7C7F8B"
+	   d="M427.432 410.533c-.277.81.396 1.467.492 2.278-1.286.157-1.964-.966-3.005-1.033-.528.16-1.097.31-1.293.9-.52 1.557-1.73 1.67-2.854 1.048-1.172-.646-2.48-.448-3.63-.973-1.53-.6-1.892-1.476-.905-2.93.813-1.197 2.58-1.47 2.86-3.27.088-.58.895.093 1.11.542.443.912 1.9 1.422.826 2.906 1.882-.232 2.903-2.27 4.76-1.316.082.646.27 1.22.96 1.464.227.127.453.256.678.385z"
+	   id="path440" />
+	<path
+	   fill="#CBCACD"
+	   d="M410.21 391.19c3.005.917 4.79 2.855 5.07 6.052.67.906-.483 1.688-.172 2.57-.558 2.596-2.23.5-3.35.8-.725-.208-1.22-.86-.998-1.41 1.042-2.624-.9-3.097-2.573-3.804-.73-.47-1.13-1.072-.795-1.97.798-.92.16-3.666 2.82-2.237z"
+	   id="path442" />
+	<path
+	   fill="#B5B4B8"
+	   d="M410.21 391.19c-1.06.063-2.063.134-1.48 1.683.277.736.026 1.044-.746.628-1.25.03-1.633-1.364-2.705-1.635-.35-.188-.647-.432-.91-.73-1.57-2.77-1.35-3.407 1.37-3.892.763-.185 1.853 2.146 2.44-.35.06-.255.687.626.645 1.228.69.94 1.938 1.508 1.935 2.905-.183.06-.366.114-.55.166z"
+	   id="path444" />
+	<path
+	   fill="#C5C4C7"
+	   d="M414.79 399.678c-.983-1.043.586-1.572.49-2.436 2.962 1.824 4.44 5.104 7.096 7.23-1.628.503-3.13-.23-4.685-.46-.707.115-1.455-.236-1.456-.803.002-1.425-1.14-2.292-1.445-3.532z"
+	   id="path446" />
+	<path
+	   fill="#CBCACD"
+	   d="M410.758 391.033c-.968-.752-1.792-1.6-1.936-2.9 1.127.125 1.77 1.096 2.7 1.557.158.68.575 1.513-.764 1.343z"
+	   id="path448" />
+	<path
+	   fill="#C2C1C4"
+	   d="M426.758 410.146c-.474.404-.923.557-1.33-.08-.387-.6-.043-.998.37-1.38.178-.046.353-.085.533-.122.145.53.287 1.055.428 1.582z"
+	   id="path450" />
+	<path
+	   fill="#CECDCF"
+	   d="M432.946 411.904l.39-.674c.09-.422.176-.844.264-1.268.183-.205.41-.285.682-.246.773.29 1.347.81 1.73 1.54.105.253.163.52.192.79.5 2.105 1.848 3.912 2.17 6.08.302 2-.156 2.412-2.316 2.084-.493-.27-.863-.66-1.116-1.158.476-2.698-1.063-4.84-1.996-7.148z"
+	   id="path452" />
+	<path
+	   fill="#D5D6DB"
+	   d="M421.47 399.002c-.262-1.295-1.53-1.89-2.268-3.12 1.132-.37 1.517.7 2.224.85 1.872.927 3.894 1.737 3.56 4.628-1.536-.358-2.59-1.256-3.517-2.358z"
+	   id="path454" />
+	<path
+	   fill="#C8C7CA"
+	   d="M431.452 410.602c-1.17-.4-2.33-.813-2.85-2.098 1.17.396 2.336.803 2.85 2.098z"
+	   id="path456" />
+	<path
+	   fill="#8F929C"
+	   d="M381.983 369.086c.172.443.29.98.56 1.373.228.34.598.552.848.868.32.4.667.815 1.015 1.207.513.572.687 1.23.973 1.908.304.73.884 1.307 1.23 2.008.29.59.6 1.173.883 1.753.128.254.353.72.355 1.012.005.268-.223.643-.367.885-.368.596-.813 1.1-1.02 1.773-.245.813-.658 1.438-.262 2.252.473.955.722 2.018 1.02 3.04.68 2.296 1.298 4.61 1.73 6.97.437-1.193.77-2.22 2.29-1.95.484.29.752.733.91 1.26-.284 2.104.805 3.82 1.52 5.663.73 1.88.102 2.56-1.868 2.185-2.183-.08-.11-2.464-1.982-2.837-.907.73.748 2.313-.694 3.326-.47-2.17-2.02-3.846-2.01-6.174-.785 2.25-.815 4.523-.52 7.12-1.69-1.368-.995-3.214-1.882-4.563-1.246 1.146-1.995 2.37-1.373 4.14-1.554-2.03-1.22-4.578-2.202-6.703-1.27-2.243.343-4.42.27-6.687-.065-2.172-.08-4.272-.7-6.356-.12-.783.497-1.32.68-2.035.196-.27-.1-.104-.11-.056-.266 1.02-.718 1.727-1.808.698-.85-1.216-1.175-2.48-.403-3.86.156-.22.498-.52.44-.643-.938-2.094-1.398-4.202-1.602-6.555-.202-2.377-.77-2.328 1.52-2.045.568-.3 1.15-.455 1.778-.18.487.25.643.722.783 1.2z"
+	   id="path458" />
+	<path
+	   fill="#C6C8CE"
+	   d="M369.914 375.195c-1.325 4.242.535 8.068 1.5 12.428.435-2.71.428-2.706-.53-4.88-.3-.673-.524-1.37-.066-2.076 2.456.104 2.44-1.77 1.838-3.046-.835-1.77.227-1.927 1.277-2.36.114-.417.23-.84.536-1.97.44 2.114.674 3.577 1.394 4.87-.36 3.363-.348 6.718.58 10 .788 2.783.58 5.39-1.114 7.812-.24.353-.498.783-.055 1.21 0 1.353.003 2.702.006 4.305-1.414-.656-1.71-1.933-1.785-2.79-.365-4.094-3.69-6.993-3.924-11.303-.23-4.39-1.284-8.827-2.74-13.075.95.553 1.896 1.145 3.084.875z"
+	   id="path460" />
+	<path
+	   fill="#A5A8B1"
+	   d="M381.03 382.492c1.5 1.348 1.61 3.137 1.564 4.96-.007.25-.316.49-.33.745-.128 2.504.216 5.08-1.134 7.4-.97-.447-.83-1.556-1.44-2.536-.395 1.686-.08 3.11.18 4.63-2.266-.532-1.607-2.77-2.65-3.895-.478-.273-.663-.813-.372-1.15 1.816-2.11.925-4.44.635-6.722-.254-1.978-.704-3.946.02-5.92-.01-1.942.397-2.645 1.56-2.696.384 1.42.768 2.84 1.15 4.26.494.105.334.804.818.925z"
+	   id="path462" />
+	<path
+	   fill="#828692"
+	   d="M377.498 380.004c.262 3.234 1.147 6.365 1.27 9.658.07 1.887-1.602 2.584-1.55 4.133-.604 1.283-.386 2.625-.183 3.908-.844.393-.446-2.53-1.766-.527-.572-1.164-.76-2.13.197-3.383 1-1.31.635-3.012.296-4.643-.765-3.65-2.166-7.354.095-10.992.914.434.358 1.29.56 1.93.478 1.51.733.12 1.08-.084z"
+	   id="path464" />
+	<path
+	   fill="#CACBD1"
+	   d="M391.793 401.29c1.535.02 1.916-.274 1.178-1.964-.728-1.66-2.687-3.166-1.434-5.396 2.502-.842 2.453 1.23 2.99 2.62-.13.23-.26.458-.392.687.473 1.472.313 3.297 2.218 3.97.27.307.547.614.817.922-.14.113-.252.288-.407.337-3.074.953-3.104 1.022-.803 3.362.982 1 2.474 1.687 2.01 3.508-.65-.07-.75-1.313-1.484-.89-.73.426.188 1.345-.36 2.295-.832-1.993-2.2-2.32-3.906-1.565.233-.656-.173-1.36.35-2.047.918-1.198.34-1.97-.96-2.36.166-1.155 1.32-2.256.183-3.48z"
+	   id="path466" />
+	<path
+	   fill="#C6C8CE"
+	   d="M366.248 372.188c.908.324 1.884.63.438 1.6-.145-.534-.29-1.067-.438-1.6z"
+	   id="path468" />
+	<path
+	   fill="#CECED0"
+	   d="M400.908 415.98c.646.74 1.287 1.48 1.958 2.255 1.613-.787.648-2.047.396-3.32 1.683.656 1.634 2.173 2.23 3.255.366.157.568.448.65.834.06 1.09-.98 1.23-1.536 1.8-.21.13-.437.148-.67.07-1.02-1.045-1.975-2.165-3.083-3.103-.867-.737-.504-1.215.055-1.79z"
+	   id="path470" />
+	<path
+	   fill="#C5C4C7"
+	   d="M407.93 424.924c-1.103.863-2.062.44-2.978-.33-.424-.418-.342-1.814-1.524-.754-.536.48-.964-.1-.94-.42.104-1.438-.86-2.447-1.15-3.857.74.66 1.483 1.316 2.228 1.976.958.03 1.777.476 2.62.857.655.322.81 1.125 1.42 1.488.104.345.214.693.325 1.04z"
+	   id="path472" />
+	<path
+	   fill="#CDCCCE"
+	   d="M406.11 422.57c-1.356.91-1.728-.61-2.552-1.034.128-.222.254-.44.38-.663.18-.05.356-.098.538-.146.114.013.23.02.348.028.678.288 1.202.72 1.375 1.478-.03.11-.058.224-.09.337z"
+	   id="path474" />
+	<path
+	   fill="#B6B8C0"
+	   d="M408.225 398.596c-.723.844.69 1.414.338 2.225-1.12.22-.974-1.273-2.153-1.27.02 1.724.65 3.246 1.45 4.91-1.058.073-1.27-.886-1.837-1.29-.377-.355-.633-1.085-1.228-.9-.76.23.233.956-.197 1.377-1.344.063-.438-1.675-1.65-1.914.033 1.084.08 2.104.09 3.118.012.563-.06 1.276-.68 1.288-.322.002-.652-.744-.978-1.15-.27-1.635-.646-3.255-.687-4.923.02-.482.15-.938.438-1.332.298-.318.732-.328 1.086-.51.084-1.005-1.275-1.54-.854-2.613.243-.783-.405.164-.41-.177-1.435-.604-1.72-1.762-1.54-3.144.776-.855-.94-2.228.6-2.93l1.063-.284c.352.115.58.367.777.658.283.508.7.89 1.174 1.22.197.15.368.32.53.506.778 1.002 1.325 2.143 1.478 3.377.123 1.012.52 1.65 1.473 1.957.638.54 1.76.62 1.718 1.802z"
+	   id="path476" />
+	<path
+	   fill="#D4D5DA"
+	   d="M406.35 406.51c1.064-1.105 1.75-.346 2.42.49.772 1.43 3.194 1.176 3.336 3.258-.423 1.027-.195 1.89.54 2.72.47.532 1.073.983 1.317 1.696.19.568.746 1.16.104 1.72-.503.442-1.042.083-1.46-.23-.676-.505-1.418-.773-2.237-.888-.677-.176-1.187-.565-1.505-1.19-.234-.36-.052-.96-.546-1.164-2.11-.88-2.378-2.49-1.766-4.43.162-.517.5-.982-.06-1.452-.044-.18-.093-.354-.143-.53z"
+	   id="path478" />
+	<path
+	   fill="#CCCBCE"
+	   d="M406.498 407.04c.974-.052 1.5.36 1.017 1.308-.998 1.95-.762 3.313 1.5 4.06.25.085.28.83.415 1.272-.438.77-.84 1.604-1.98 1.1-.272-.305-.55-.606-.827-.91-.447-2.274-2.27-4.518-.125-6.83z"
+	   id="path480" />
+	<path
+	   fill="#9497A1"
+	   d="M401.148 399.906c.34 1.685.992 3.35.232 5.078-.058-.168-.106-.338-.16-.512-1.143-1.602-1.657-3.37-1.428-5.34.61-.02 1.334-.237 1.356.774z"
+	   id="path482" />
+	<path
+	   fill="#9A9DA8"
+	   d="M405.807 419.22l-.314-1.054c.473-.268.396-1.555 1.27-.93 1.574 1.12.398-1.027 1.102-.845 1.408-.062 1.667 1.337 2.52 1.98.407.68.444 1.396.25 2.145-.09.223-.225.41-.397.564-.672.192-.358 1.395-1.313 1.306l-.005-.002c-.785-.395-1.734-.418-2.406-1.072-.676-.548-.215-1.478-.707-2.09z"
+	   id="path484" />
+	<path
+	   fill="#DBDBDC"
+	   d="M410.187 418.61c-1.606.136-1.384-1.652-2.325-2.218-.427-.463-.587-.998-.41-1.617l1.978-1.098c.23.64.688.896 1.354.783.813.87 2.21 1.48 1.402 3.084-.588.493-1.63.147-2 1.067z"
+	   id="path486" />
+	<path
+	   fill="#9598A3"
+	   d="M401.148 399.906c-.412-.328-1.284.148-1.354-.77-.222-.593-.322-1.268-.688-1.745-.28-.37-.354-1.437-1.063-.933-.336.24-1.678.592-.814 1.657-1.222.04-1.865-.928-2.7-1.56-1.34-.48-1.285-2.558-2.992-2.624-.145-.53-.287-1.063-.434-1.594-1.092-.258-1.444-.998-1.21-2.014.306-1.324.074-2.688.358-4.008.036-.365-.084.05.073-.255.375-.722-.178-1.55.095-2.273.145-.385.474-.414.72-.686.344-.372.346-.936.638-1.32.124-.165 1.393-.84 1.384-.868l-.56-2.12c1.412.126 1.367 1.696 2.465 2.622-.02-.914-.036-1.523-.05-2.13.103-.317.284-.354.53-.147.048.178.094.354.142.527.508.176 1.03.332 1.11.984-1.036 2.184-.732 3.918 1.272 5.55 1.793 1.456 1.214 4.034 2.13 5.964-.415 1.418.11 2.408 1.395 3.055.146.938.897 1.455 1.424 2.146.493.65 1.333 1.62-.28 2.107-.43-1.168-1.907-1.344-2.356-2.486-.188-.527-.27-1.104-.396-1.28.32.42.207 1.415.826 2.087.3.24.512.528.582.91-.086.404-.167.804-.248 1.206z"
+	   id="path488" />
+	<path
+	   fill="#B6B8C0"
+	   d="M396.354 401.205c-.728.283-1.453.565-2.823 1.104 1.522-1.956-.137-3.52.606-5.073.74 1.32 1.48 2.644 2.218 3.968z"
+	   id="path490" />
+	<path
+	   fill="#CDCCCE"
+	   d="M410.187 418.61c-.037-.58-.69-1.29-.078-1.69.602-.395 1.08.33 1.534.728.67.28 1.05.82 1.306 1.47.135.643.453 1.22.646 1.84.123.498.064 1.02.21 1.52.173.838.84 1.72.034 2.506-.88.86-1.37-.368-2.078-.504-1.02-.596-2.104-1.104-2.837-2.088.674-.854-.554-1.364-.406-2.172.858-.507 1.078.658 1.72.67.285.166.57.33.855.502-.282-.17-.568-.336-.854-.5-.272-.757-.228-1.517-.053-2.28z"
+	   id="path492" />
+	<path
+	   fill="#9B9EA9"
+	   d="M411.758 424.477c.676-.924 1.146.277 1.77.197.312-.9-.59-1.455-.583-2.242.896-.727 1.795-.166 2.695-.022.644.303 1.02.815 1.192 1.495.154.8-.027 1.697.7 2.326.407.53.705 1.09.476 1.782-.16.213-.367.363-.61.467-.353.075-.736.106-1.042-.095-.784-.52-1.38-1.938-2.526-.47l-2.072-3.438z"
+	   id="path494" />
+	<path
+	   fill="#D2D3D8"
+	   d="M414.852 431.646c-.302-.682.445-1.65-.59-2.127-.27-.312-.545-.624-.817-.935 1.586-.502 2.896-.96 3.88 1.27.635 1.432 2.48 2.255 3.503 3.628.168.386.188.767-.048 1.13-.414.463-.695 1.586-1.495.405-.404-.602-.742-.715-1.264-.22-1.328-.775-1.96-2.253-3.168-3.152z"
+	   id="path496" />
+	<path
+	   fill="#868995"
+	   d="M420.46 433.53c-1.723-.328-3.042-1.818-3.6-2.92-.437-.876-1.1-1.48-2.045-1.757-.91-.264-1.783-.463-1.65-1.705.025-.256-.083-.127.105-.315.112-.11.494-.22.646-.304.308-.17.642-.595.98-.472.25.092.548.65.717.857.23.276.467.56.76.78.228.166.786.252.94.418 1.444 1.578 3.566 2.757 3.147 5.416z"
+	   id="path498" />
+	<path
+	   fill="#CDCCCE"
+	   d="M406.892 421.215c.802.17 1.483.547 2.023 1.172-.976.03-1.858.137-1.316 1.5-.76-.143-1.255-.582-1.488-1.316v-.003c.116-.424.08-.9.473-1.217l.307-.135z"
+	   id="path500" />
+	<path
+	   fill="#A1A3AD"
+	   d="M426.917 440.375c-1.77-1.61-3.542-3.228-5.313-4.84-.114-.978-.894-1.912-.165-2.94.212-.165.45-.266.718-.3 1.52.05 2.313 1.162 3.173 2.172.5 1.498 1.647 2.566 2.543 3.807.16.685.156 1.348-.228 1.968-.212.207-.455.252-.728.133z"
+	   id="path502" />
+	<path
+	   fill="#D7D6D8"
+	   d="M421.957 432.576c-.734.913.388 2.05-.354 2.963-.273-.31-.55-.618-.823-.928-.104-.358-.214-.72-.316-1.084-.75-1.98-2.755-3.227-3.15-5.41.18-.047.36-.092.54-.137 2.234.756 3.8 2.112 4.103 4.596z"
+	   id="path504" />
+	<path
+	   fill="#D1D1D3"
+	   d="M427.446 440.24c-.152-.593-.34-1.185.09-1.742.942-.99 1.602.944 2.52.235.845-.21 1.47.115 1.956.787.6 1.64-.564 2.453-1.57 3.338-.174.05-.35.103-.522.15l-1.365-.783c-.128-.797-.654-1.37-1.11-1.986z"
+	   id="path506" />
+	<path
+	   fill="#B8B7BB"
+	   d="M414.852 431.646c1.8.306 3.083 1.13 3.168 3.156.18.3.558.646.5.887-.124.522-.565.225-.796.042-1.37-1.066-3.03-1.94-2.872-4.086z"
+	   id="path508" />
+	<path
+	   fill="#DADBDE"
+	   d="M427.446 440.24c1.485.04 1.6.846 1.104 1.985-.816-.375-1.314-1.033-1.632-1.852.176-.04.353-.085.528-.134z"
+	   id="path510" />
+	<path
+	   fill="#DFE0E3"
+	   d="M428.32 449.688c-.283-.293-.564-.588-.85-.88l-.974-1.505c1.66-.297 2.827-1.896 4.648-1.78.276-.808.673-1.204 1.42-.417.607 1.332-.103 2.34-.815 3.354-.182.19-.395.354-.618.49-.992.02-1.68 1.24-2.813.738z"
+	   id="path512" />
+	<path
+	   fill="#DBDCDF"
+	   d="M432.215 445.227c-.483-.363-.735.11-1.066.297-.324-.92-.427-1.852-.17-2.807.482-.77.702-1.834 1.954-1.742.253.133.457.316.626.55.3.503.435 1.048.41 1.635-.24.98-.423 2.01-1.755 2.067z"
+	   id="path514" />
+	<path
+	   fill="#C7C6C9"
+	   d="M432.794 441.055c-.594.564-.915 1.428-1.813 1.664-.18.046-.358.093-.54.142.47-1.075.937-2.147 1.4-3.227.124-.063.244-.12.366-.184.824.306.984.855.588 1.605z"
+	   id="path516" />
+	<path
+	   fill="#E9E9EA"
+	   d="M430.895 447.896c.17-.074.343-.13.52-.17 1.352.195 1.89 1.486 2.897 2.146.18.174.316.37.42.602.168.605.112 1.213-.013 1.82-.32 1.555-3.025.485-3.703-.268-.525-.583-1.076-1.114-.893-1.938.127-.548.152-1.92.77-2.192z"
+	   id="path518" />
+	<path
+	   fill="#DEDEDF"
+	   d="M430.793 448.498c.37.36-.277 1.57-.616 1.854-.583-.322-1.383.453-2.055.408-.515-.034-1.234-.255-1.22-.88.016-.53.494-1.543 1.115-1.45.466.07.826.455 1.33.385.385-.053.68-.392 1.072-.42.178-.01.297.03.373.103z"
+	   id="path520" />
+	<path
+	   fill="#8D909B"
+	   d="M365.98 364.828c.046 1.563-.745.076-1.066.293-.858-.34-.48-1.018-.43-1.603.5.436.995.874 1.495 1.31z"
+	   id="path522" />
+	<path
+	   fill="#7B7F8B"
+	   d="M369.604 365.566l.146.537c-.477.055-.937.043-1.147-.477-.052-.127.004-.422.09-.46.414-.18.658.143.91.4z"
+	   id="path524" />
+	<path
+	   fill="#A9ACB5"
+	   d="M383.698 360.625c-1.95-.393-1.165 1.854-2.23 2.314-.05-.18-.1-.356-.145-.532-.47-1.23-.43-2.54.73-3.162.86-.467 1.28.664 1.645 1.38zM385.05 361.4c-.647.627.297 1.133.132 1.77-1.89-.055-1.314-1.52-1.483-2.544.22-.238.514-.722.645-.68.682.212.44.97.704 1.454z"
+	   id="path526" />
+	<path
+	   fill="#575C6C"
+	   d="M378.47 345.47c.367.66.733 1.323 1.103 1.985-1.362.22-1.54-.1-1.104-1.986z"
+	   id="path528" />
+	<path
+	   fill="#A9ACB5"
+	   d="M381.983 369.086l-.828-.926c-2.432-.863-1.182-2.72-1.144-4.25.392-.654 1.09-.2 1.595-.44-.696 1.93 1.14 3.686.378 5.616z"
+	   id="path530" />
+	<path
+	   fill="#6F7380"
+	   d="M380.012 363.91c.404 1.412-.29 3.117 1.144 4.25-.59.164-1.182.338-1.737-.096-.184-1.44-.532-2.902.592-4.154z"
+	   id="path532" />
+	<path
+	   fill="#C6C8CE"
+	   d="M374.235 370.03c.508.675.808 1.34-.157 2.09-.63-.798-.197-1.442.157-2.09zM375.94 369.992c.217.813 1.062 1.565-.272 2.135-.452-.795.036-1.38.272-2.135z"
+	   id="path534" />
+	<path
+	   fill="#AEB0B8"
+	   d="M401.368 390.14c-.098-.354-.19-.708-.29-1.063-.31-.646-.024-4.146.505-6.176 1.045.018.817 1.395 1.688 1.585.823.92 1.647 1.84 2.467 2.76-2.028.84-2.015 2.104-.75 3.627-.192.396-.492.67-.914.812-.434.093-.828-.034-1.205-.233l-.002.003c-.246-.732-1.593-.2-1.498-1.312z"
+	   id="path536" />
+	<path
+	   fill="#9598A3"
+	   d="M388.643 374.717c.05.176.1.354.146.53.43 1.603.267 1.74-1.81 1.51-.397-.206-.638-.538-.758-.962-.188-.686.26-1.244.377-1.87 0-.126.006-.25.01-.374-.88-.712-.71-1.784-.994-2.712-.286-.934-.935-1.754-.984-3.29.885 1.63 2.79 1.69 3.01 3.442l.286 1.06c.968.694-.055 1.92.715 2.667z"
+	   id="path538" />
+	<path
+	   fill="#5E6372"
+	   d="M386.512 375.29c.096.355.188.712.283 1.064.29.523.52 1.06.394 1.683-.063.23-.188.43-.36.596l-1.205-.256c-.925-.89-.826-2.055-.854-3.188l-.284-1.064c.104-2.432 1.52-.02 2.128-.577l.004-.003c.875.637.162 1.178-.106 1.744z"
+	   id="path540" />
+	<path
+	   fill="#C8C7CA"
+	   d="M400.2 392.166c-.204-.176-.562-.33-.59-.53-.432-3.015-1.786-5.36-4.516-6.92-.773-.44-.7-1.384-.04-2.147.526-.616.973-1.306 1.453-1.962.547.06.933.262.817.912.05.178.1.354.147.53.63.513 1.45.92 1.116 1.976l1.425 5.336c-.288.958 1.056 1.808.19 2.804z"
+	   id="path542" />
+	<path
+	   fill="#AEB0B8"
+	   d="M397.328 381.52c-.27-.305-.547-.61-.817-.912l-.818-.938c.824.086.91-1.846 1.88-.86.735.75.658 1.876-.244 2.71zM398.592 384.027c-.373-.66-.744-1.317-1.115-1.977 1.248-.137 1.593.857 1.896 1.697.135.368-.473.27-.78.28zM395.547 379.14c-.18.048-.355.097-.53.145-.325-.787-1.06-1.81.776-1.353l-.246 1.207z"
+	   id="path544" />
+	<path
+	   fill="#6E727F"
+	   d="M386.695 378.1c-.156-.59-.332-1.184.104-1.742.68-.342 2.1.646 1.992-1.11.91 1.276 1.823 2.56 2.735 3.836-.174.698.313.817.813.918.27.31.547.608.818.913-2.3 1.313.378 2.69-.052 4.025-.92.006-1.167-1.01-1.85-1.3-1.158.655 1.816 2.257-.668 2.552-.125-.053-.254-.104-.38-.15-1.18-1.145-1.208-2.75-1.604-4.187-.376-1.406-.868-2.707-1.91-3.755zM388.643 374.717c-1.27-.61-.432-1.79-.716-2.666 1.155.645.87 1.673.716 2.667z"
+	   id="path546" />
+	<path
+	   fill="#CCCBCE"
+	   d="M392.34 380c-.405.2-.322 1.326-1.04.752-.536-.43-.15-1.146.228-1.67l.813.918z"
+	   id="path548" />
+	<path
+	   fill="#545969"
+	   d="M417.145 412.756c1.273-.988 2.385-1.182 3.69.156.605.62 1.813.96 2.316-.586.26-.787.963-1.062 1.77-.547-.328 1.868.01 2.34 1.905 2.88.758.217 1.01 1.307.583 1.438-2.655.824-.978 2.48-.88 3.826-1.23.613-1.605-.408-2.056-1.14-.63-1.03-1.45-1.768-3.176-2.51 2.174 2.187 4.354 3.425 5.512 5.64-.05.27-.187.49-.396.676-3.435.762-5.204-1.584-7.063-3.77-1.303-1.626-2.334-3.353-2.028-5.564-.052-.168-.113-.336-.177-.5z"
+	   id="path550" />
+	<path
+	   fill="#ACAEB6"
+	   d="M417.327 413.256c1.366.693 1.41.725.687 1.795-.422.62-.146 1.007.22 1.435.52.615 1.358.95 1.59 1.818.505 1.05.8 2.207 1.8 2.986.91.71 1.347 1.683 1.353 2.876.01 1.582.856 2.752 2.047 3.71.467.757.43 1.5-.053 2.23-1.73 1.17-2.868-1.346-4.517-.72-1.784-.218-1.6-2.866-3.554-2.878-1.67-.318-1.1-1.234-.574-2.14 1.93-2.446 2.584.263 3.653.71-.91-1.074-2.14-2.113-3.448-3.07-.992-.73-1.734-1.604-1.313-2.98.436-.715 1.033-.895 1.79-.54.05.174.1.35.146.522v.002c1.192-.604.976-1.627.252-2.192-1.6-1.257-1.574-2.34-.08-3.564z"
+	   id="path552" />
+	<path
+	   fill="#C2C1C5"
+	   d="M417.008 418.488c-.59.162-1.19.312-1.45.965-.464.57.554 1.492-.405 1.902-.818.353-1.296-.36-1.86-.77-.36-.266-.73-.518-1.072-.807l-.57-2.13c.8-1.355-.87-2.048-.86-3.19 1.188.015 1.988.802 3.237 1.177l-3.646-4.69c.458-.23.99-.502 1.522-.77.642.374.657.93.45 1.55.45.354.585 1.244 1.462.863.265-.115.898-.5.732-.078-1.124 2.853 1.71 3.972 2.462 5.978z"
+	   id="path554" />
+	<path
+	   fill="#DAD9DB"
+	   d="M412.177 402.637c.593.797 1.185 1.596 1.773 2.393.705.588 1.074 1.61 2.174 1.7-.23.683.042 1.638-1.414 1.327-2.044-.438-3.628-1.412-5.144-2.797-.785-.72-.87-1.484-.573-2.145.478-1.068 1.135.733 1.838.01-.314-.875-.646-1.793-.978-2.71 1.697-.222 2.49.5 2.325 2.222z"
+	   id="path556" />
+	<path
+	   fill="#C1C0C4"
+	   d="M412.177 402.637c-.518-1.014-1.116-1.932-2.323-2.223-.225-.894-1.09-1.207-1.627-1.816-.68-.396-1.36-.79-2.04-1.188-.15-.506-.18-.992.233-1.402.49-.682 1.978.81 1.997-.912 2.59-.035 3.823 1.383 3.024 3.482-.308.813-.03 1.385.67 1.813.62.394.747.925.456 1.58-.128.223-.257.446-.39.667z"
+	   id="path558" />
+	<path
+	   fill="#D1D0D2"
+	   d="M412.567 401.97c-.15-.524-.303-1.05-.453-1.577-.07-1.273.507-.555.85-.248.87.783 1.394.363 1.825-.47 1.286.544 2.81.897 1.948 2.915-.357.848.703.898.954 1.422.154 1.725-.733 1.973-1.894 1.098-1.19-.897-2.16-2.08-3.23-3.14z"
+	   id="path560" />
+	<path
+	   fill="#C4C3C6"
+	   d="M412.348 411.72c-.148-.517-.3-1.034-.448-1.552-.473-1.62-2.893-1.316-3.128-3.166 1.523.695 2.97 1.38 4.055 2.85.83 1.13.013 1.34-.48 1.867z"
+	   id="path562" />
+	<path
+	   fill="#DADADC"
+	   d="M416.125 406.73c-1.587.532-1.905-.55-2.174-1.7 1.042.163 1.54 1.015 2.175 1.7z"
+	   id="path564" />
+	<path
+	   fill="#C0BFC3"
+	   d="M435.35 418.693l.814.91c1.75.994 1.23 2.736 1.407 4.25.1.51.154 1.02-.02 1.52-.113.247-.284.44-.52.583-.25.09-.51.12-.77.098-.776-.11-1.23-.682-1.753-1.26-.017 1.23 1.102 2.563-.433 3.54-1.354-.534-2.086-1.874-3.33-2.557-.166-.563.107-.985.422-1.4-.897-1.51-1.798-3.02-2.854-4.8 1.805.04 3.303 1.39 4.444.545 1.04-1.254-1.998-2.238.414-3.137 1.064.14 1.493 1.09 2.18 1.708z"
+	   id="path566" />
+	<path
+	   fill="#ACAEB6"
+	   d="M431.164 424.377c-.08.403-.158.81-.24 1.215-.103 1.387-.902 2.563-1.162 3.897-.284 1.187-.504 2.436-2.154 2.383-1.88-.648-2.438-2.063-2.24-3.904.48-1.767-.458-3.817 1.07-5.374.927-.32 1.605.066 2.172.764.49 1.242 1.703.68 2.554 1.017z"
+	   id="path568" />
+	<path
+	   fill="#A7AAB3"
+	   d="M426.58 422.19c-1.736-2.48-4.818-3.505-6.556-6.01 1.828-.858 4.037-.07 4.98 1.728.395.75.313 1.877 1.523 2.02.594.786 1.188 1.575 1.784 2.366-.622.786-1.177.363-1.73-.105z"
+	   id="path570" />
+	<path
+	   fill="#656978"
+	   d="M435.35 418.693c-.97-.258-1.813-.676-2.177-1.707.88-1.735-1.108-3.346-.23-5.082 2.23 1.758 3.572 3.83 2.408 6.79z"
+	   id="path572" />
+	<path
+	   fill="#545969"
+	   d="M426.58 422.19c.577.032 1.157.067 1.734.103.2.326.665.582.293 1.065-.63-.21-1.257-.422-1.887-.633-.22-.067-.314-.17-.283-.305.03-.137.076-.213.14-.23h.003z"
+	   id="path574" />
+	<path
+	   fill="#CBCACD"
+	   d="M408.418 395.096c.55 2.545-1.23.91-1.985 1.104-2.11-.793-.576-2.625-1.11-3.87-.002-.397.137-.746.365-1.062 1.61-.12 1.374 1.648 2.296 2.232-.57.73.1 1.115.434 1.596z"
+	   id="path576" />
+	<path
+	   fill="#B6B8C0"
+	   d="M405.687 391.27c.088.35.174.705.262 1.06-1.184.495-1.88.15-2.02-1.162.354-.1.704-.195 1.057-.296.233.13.466.265.7.398z"
+	   id="path578" />
+	<path
+	   fill="#D4D5DA"
+	   d="M436.778 424.01c-.45-1.437.392-3.05-.614-4.406.783.133 2.02.96 1.455-.96-.49-1.663-.763-3.395-1.824-4.864-.398-.555-1.41-1.23-.217-2.03 2.08-.128 1.77 1.946 2.68 2.9.453.61.473 1.314.44 2.026l2.903 2.068c-.504 1.047-.443 1.885.375 2.89 1.38 1.704-.938 2.398-1.273 3.673-.663 1.318-1.546 1.037-2.446.305-.567-.462-.782-1.257-1.482-1.602z"
+	   id="path580" />
+	<path
+	   fill="#DDDCDE"
+	   d="M439.88 424.875c3.5-2.656.542-3.938-1.41-5.22 1.022-1.292 2.415.39 3.134-.913.182-.047.362-.1.542-.146l.006.01c.337.467.673.932 1.01 1.402.148 1.348 1.74 2.246 1.194 3.816-.75 1.49-2.197 1.49-3.57 1.65-.41-.035-.607-.394-.905-.6z"
+	   id="path582" />
+	<path
+	   fill="#6E727F"
+	   d="M390.592 386.19c.3 1.49.85 2.974-.035 4.474-.415.7.164 1.183.548 1.677-1.88.783-1.298 2.556-1.52 4.395-3.094-4.207-2.594-9.234-4.605-13.416-.826-1.72.03-3.24 2.146-3.618 1.368-.48 1.428.39 1.502 1.383.142 1.882.813 3.593 1.964 5.106z"
+	   id="path584" />
+	<path
+	   fill="#BCBDC4"
+	   d="M390.59 386.19c-1.853-1.13-2.61-2.927-2.63-4.95-.01-.826.113-1.373-.832-1.545-.102-.354-.2-.71-.303-1.063-.042-.18-.087-.355-.133-.533 1.952.7 2.628 2.22 2.878 4.157.176 1.333.67 2.624 1.02 3.932z"
+	   id="path586" />
+	<path
+	   fill="#C3C5CB"
+	   d="M382.213 376.957c-.925-1.854-1.97-3.273-1.704-5.178.062-.47.19-.938.776-.88.222.02.618.375.593.46-.62 1.794 1.394 3.39.333 5.597z"
+	   id="path588" />
+	<path
+	   fill="#989BA6"
+	   d="M381.03 382.492c-.017.174-.034.35-.053.522-.875-.155-.46-.996-.77-1.45.49-.453.736-.998.658-1.685-.066-.61-.29-1.296.47-1.647.21-.098.616-.09.76.05.69.682-.04 1.33-.177 1.962-.16.78-.578 1.503-.887 2.247z"
+	   id="path590" />
+	<path
+	   fill="#6E727F"
+	   d="M384.77 375.19c.283 1.062.568 2.124.853 3.187-1.485-.74-1.385-1.906-.854-3.188z"
+	   id="path592" />
+	<path
+	   fill="#CDCCCE"
+	   d="M405.807 419.22c.82.415.847 1.263 1.085 1.995l-.007.006c-.98.685-1.69.064-2.412-.495l.002.002c-.907-1.698.932-.965 1.332-1.506z"
+	   id="path594" />
+	<path
+	   fill="#CECED0"
+	   d="M404.473 420.725c.803.164 1.604.33 2.412.496-.26.45-.518.897-.772 1.347-.535-.626-1.414-.944-1.64-1.842z"
+	   id="path596" />
+	<path
+	   fill="#B5B4B8"
+	   d="M403.93 391.164c.546.604 1.218.996 2.018 1.162 1.604 1.11-1 2.748.484 3.873l-.245 1.21c-1.113-.313-1.98-.71-1.912-2.188.063-1.388-.932-2.517-1.406-3.776l1.06-.282z"
+	   id="path598" />
+	<path
+	   fill="#C1C0C4"
+	   d="M400.814 396.578c.608.99 1.914 1.516 1.925 2.897-.446-.258-.897-.514-1.35-.77l-.678-.392c-.363-.6-1.18-1.23.102-1.735z"
+	   id="path600" />
+	<path
+	   fill="#9598A3"
+	   d="M401.695 394.48c.52-.06.76.21.905.557.097.234.204.595-.266.523-.26-.037-.59-.164-.714-.36-.1-.16.044-.483.075-.72z"
+	   id="path602" />
+	<path
+	   fill="#C8C7CA"
+	   d="M401.368 390.14c.515.42 1.293.532 1.497 1.306-.562-.362-1.974.245-1.497-1.305z"
+	   id="path604" />
+	<path
+	   fill="#B6B8C0"
+	   d="M400.814 396.578c-.436.56-.25 1.147-.102 1.736-.986-1.646-1.976-3.294-3.27-5.45 2.328.77 2.744 2.333 3.372 3.714z"
+	   id="path606" />
+	<path
+	   fill="#9B9EA9"
+	   d="M412.217 419.78c.52.147 1.188.14 1.524.473 1.383 1.35 1.448-.005 1.814-.8 1.36 2.525 4.464 3.497 5.588 6.247.158.39.525.692.46 1.446-.813-.703-1.58-1.467-2.448-2.096-.82-.596-1.596-1.695-2.833-.678-.17-.584-.313-1.187-.97-1.44-.908-.34-1.737-.78-2.17-1.718l-.963-1.435z"
+	   id="path608" />
+	<path
+	   fill="#B6B5B8"
+	   d="M410.234 420.89c1.313-.15 2.007.374 1.985 1.907-1.16-.23-1.564-1.082-1.984-1.91l-.002.002z"
+	   id="path610" />
+	<path
+	   fill="#555A6A"
+	   d="M413.182 421.215c1.027.188 1.52 1.05 2.17 1.717-.892.256-1.604-.336-2.407-.502l.237-1.215z"
+	   id="path612" />
+	<path
+	   fill="#8B8E99"
+	   d="M416.896 426.512c1.157-.152 2.74-1.082 2.388 1.43-.042.29.738.7 1.142 1.062.693.416 1.576.526 2.083 1.266.183.846 1.77 2.03-.537 2.293l-.013.02-4.107-4.597c-.322-.494-.64-.984-.957-1.474z"
+	   id="path614" />
+	<path
+	   fill="#9598A3"
+	   d="M427.955 431.533c.832-.42.8-1.34 1.16-2.025 1.897-.11 1.497 1.818 2.326 2.674.677.7.63 1.813.887 2.748.034.256.03.51-.01.764-.17.586-.593 1.09-.55 1.752.106 1.658-.86 1.412-1.885 1.044-.282-.195-.544-.416-.748-.693.17.272.444.438.68.65.19.08.273.187.256.32-.02.136-.052.208-.103.225.042.623.206 1.27-.416 1.813-.663-.79-.645-2.184-2.017-2.305-1.374-.945-2.607-1.986-2.737-3.822-.354-.277-.237-.65-.202-1.004.336-.912.208-1.975.897-2.768 1.046-.662 1.328 1.647 2.465.627z"
+	   id="path616" />
+	<path
+	   fill="#A2A5AE"
+	   d="M425.19 433.99c-.13.228-.263.454-.394.686-.942-.705-1.89-1.408-2.828-2.115 1.31-.78-.228-1.49-.063-2.24.993-.648 3.067.237 3.31 1.5.132.698.198 1.45-.024 2.17z"
+	   id="path618" />
+	<path
+	   fill="#C7C6C9"
+	   d="M429.82 438.457c.36-.347 1.925.405 1.063-.992-.907-1.473-.08-1.69 1.045-1.88 1.084-.432 1.366.45 1.802 1.093.09.256.13.518.128.787-.056 1.274-.954 1.77-1.988 2.146 0 0-.02.024-.022.022-.626-.215-1.25-.432-1.874-.646-.05-.178-.102-.354-.146-.53h-.008z"
+	   id="path620" />
+	<path
+	   fill="#DEDEDF"
+	   d="M434.336 450.95c-1.74-.04-2.262-1.47-3.002-2.643.293-1.027.588-2.055.883-3.084.39-.676.78-1.348 1.176-2.022 1.205-1.862 1.952-4.14 4.364-4.944.545.104.938.445 1.32.815.613.717.627 1.422-.03 2.114-.952.98-.744 2.168-.584 3.344.14 1.02.535 1.683 1.768 1.54 1.473-.17 2.715.235 3.29 1.792-.008 1.148-.497 1.78-1.73 1.62-1.782-.468-3.706-1.407-4.566 1.32-.007.255-.058.5-.13.74-.618 1.19-1.553 1.61-2.843 1.152-.823-.62.2-1.157.08-1.746l.006.005z"
+	   id="path622" />
+	<path
+	   fill="#DCDBDD"
+	   d="M437.855 438.573c-1.503.16-1.18 1.532-1.66 2.396-.332.595.352 3.007-1.794 1.212-.41-.346-.62.7-1.01 1.02-.145-.524-.284-1.057-.426-1.585.397-1.613.338-3.398 1.672-4.688.224-.155.47-.263.73-.33 1.012-.085 1.935.16 2.646.886.33.33.79.86-.157 1.087z"
+	   id="path624" />
+	<path
+	   fill="#DBDCDF"
+	   d="M435.135 437.04c-1.178 1.31-.824 3.347-2.17 4.574-.06-.188-.114-.375-.172-.563-.15-.583-.3-1.167-.93-1.44.59-.735 1.182-1.475 1.77-2.215.263-1.107.786-1.133 1.502-.356z"
+	   id="path626" />
+	<path
+	   fill="#6E727F"
+	   d="M386.512 375.29c-.533-.61.504-1.134.104-1.74 1.015.64.892 1.218-.104 1.74z"
+	   id="path628" />
+	<path
+	   fill="#C4C6CC"
+	   d="M426.577 422.193c.05.177.1.355.146.533-.65 1.73.27 3.707-.834 5.37-.428.02-.792-.265-1.22-.24-2.8.95-1.362-2.314-2.758-2.767 1.067-2.69-1.566-3.788-2.514-5.58-.478-.91.44-.778.42-1.208 1.908 1.9 3.648 4.085 6.76 3.89z"
+	   id="path630" />
+	<path
+	   fill="#A1A3AD"
+	   d="M425.19 433.99c-.645-2.882-.832-3.09-3.28-3.675-.765-.137-1.262-.57-1.484-1.313 2.02-1.883 2.742 1.188 4.287 1.13.546.062.946.25.826.91.292 1.032.283 2.026-.35 2.947z"
+	   id="path632" />
+	<path
+	   fill="#8C8F9A"
+	   d="M425.538 431.04c-.27-.305-.55-.606-.825-.91-.015-.76-.026-1.52-.04-2.272.606-.957.907-.348 1.216.236-.085 1.61.825 2.625 2.065 3.438-.002.44.176 1.05-.046 1.282-.398.427-.795-.063-1.1-.38-.433-.454-.847-.928-1.272-1.393z"
+	   id="path634" />
+	<path
+	   fill="#9B9EA9"
+	   d="M417.154 419.018c.27.502 1.034.785.69 1.543-.03.07-.333.1-.438.032-.646-.422-.65-.973-.256-1.576l.004.002z"
+	   id="path636" />
+	<path
+	   fill="#C7C6C9"
+	   d="M431.77 435.073c-.883-1.855-1.77-3.712-2.653-5.564-.987-1.593 1.866-2.75.492-4.386.625-.37.937.143 1.313.47 2.346-.68 2.42 1.25 2.986 2.605.23.142.35.345.35.61-.11 1.032-1.932 1.47-.982 2.864.417 1.543.175 2.79-1.507 3.4z"
+	   id="path638" />
+	<path
+	   fill="#CBCCD1"
+	   d="M439.88 424.875c.226.133.447.27.676.4 1.29 1.313.05 2.19-.543 3.186-1.574.98-3.102 2.21-5.124 1.09-.22-.167-.36-.386-.446-.647.287-1.37.055-3.112 2.234-3.146v.002c.218.083.495.382.543-.15l-.44-1.6c1.125-.196 1.54.765 2.21 1.33.61.515.96.392.89-.465z"
+	   id="path640" />
+	<path
+	   fill="#D4D5DA"
+	   d="M436.678 425.756c-1.19.813-1.825 1.945-1.95 3.37-.423.212-.71.19-.677-.39-.044-.18-.09-.36-.14-.542.645-1.823-.437-3.295-1.068-4.786 2.58-1.234 2.276 2.008 3.836 2.348zM437.22 425.61c.73.3.866.977 1.266 1.778-1.378.02-1.555-.846-1.807-1.63l.54-.15z"
+	   id="path642" />
+	<path
+	   fill="#E0DFE1"
+	   d="M439.673 428.373c-.263-1.19 1.333-1.854.882-3.1-.234-.645 1.48-.853 1.76-.892.357-.046.74.003 1.087-.13.29-.104.628-.535.894-.568.604-.082 3.497 1.23 2.663 2.063-.72.424-1.266 1.095-2.033 1.45-1.613.317-3.15.823-4.523 1.76-.43.037-.765-.045-.73-.582z"
+	   id="path644" />
+	<path
+	   fill="#E4E3E5"
+	   d="M449.554 426.86c.32.883.23 1.97 1.24 2.516.273.307.55.606.82.916.29.467.563.938.45 1.522-.46 1.746.768.773 1.352.836.396-.56.913-.692 1.54-.44.732 1.518.366 2.885-.565 4.174-.56.926-1.392.975-2.318.73-.228-.128-.425-.29-.597-.482-1.692-2.14-3.462-4.213-4.896-6.543-.236-.108-.456-.245-.66-.407-.486-.457-.83-1.008-1.097-1.617-.104-.4-.06-.778.18-1.127-.033-1.284.7-1.69 1.852-1.622-.026 2.12 1.38 1.755 2.7 1.54z"
+	   id="path646" />
+	<path
+	   fill="#E6E6E7"
+	   d="M452.195 436.954c.86-1.28 2.028-2.494 3.265-2.785 1.95-.462 2.134 3.062 3.208 3.976.816.697 2.06.47 2.818 1.27 1.035 1.08 1.19 2.81 2.296 3.92.728.726 2.27 1.052 2.757 1.972.793 1.504-.94 1.324-1.81 1.383-.938.064-1.897.425-2.812.647-1.52.367-3.043.71-4.557 1.1-1.45.373-2.25 1.19-3.52-.11-1.268-.35-2.645.606-3.854-.322-.152-.217-.23-.455-.216-.726.172-.525.604-.824 1.01-1.142 1.06-1.262.288-3.438.19-4.94-.047-.687-.15-1.56.127-2.228.25-.603.63-1.318 1.098-2.016z"
+	   id="path648" />
+	<path
+	   fill="#D7D7D9"
+	   d="M431.77 435.073c.398-1.18 1.58-2.195.74-3.628.175-1.227.487-1.29 1.875-.397 1.34 2.217.862 4.14-.957 5.836l-1.5-1.295-.157-.517z"
+	   id="path650" />
+	<path
+	   fill="#A1A3AD"
+	   d="M429.822 438.455c-1.27-.23-1.7-1.438-2.593-2.11 1.69-.253 1.95 1.147 2.59 2.112l.002-.002z"
+	   id="path652" />
+	<path
+	   fill="#DCDBDD"
+	   d="M433.428 436.88c.218-1.784 1.52-3.405.814-5.333.116-.033.233-.064.35-.1 1.478.56 2.93-1.624 4.42-.042.34.644.577 1.318.663 2.04.21 1.706.05 3.128-2.27 2.876-.834-.087-1.598.16-2.257.694l-.017.02c-.565-.148-1.097-.136-1.502.36-.064-.167-.133-.34-.2-.513z"
+	   id="path654" />
+	<path
+	   fill="#E7E7E8"
+	   d="M451.52 446.885c-.533.143-1.064.287-1.596.432-.572 1.228.294 1.345 1.138 1.498 1.204.226 2.36.51 2.273 2.127-.21.59-.655.93-1.216 1.148-1.897.32-3.595 1.766-5.678 1.012-.527-.31-.706-.797-.686-1.39.14-4.065-.468-4.848-4.495-5.77-2.77-.635-3.638-2.23-2.837-5.233.842-.25.663-.706.245-1.208.137-1.31.998-1.617 2.128-1.558.656-.106-.012 1.438 1.104.863.397-.205.965.045 1.24.396 2.29 2.91 6.16 3.93 8.328 6.975.167.224.18.463.05.707z"
+	   id="path656" />
+	<path
+	   fill="#E2E1E3"
+	   d="M438.428 440.707c.26 2.27.146 4.305 3.76 4.213 3.838-.1 5.74 4.047 3.932 7.37-.09.25-.27.394-.528.44-.67-.005-1.228-.298-1.74-.69-.296-.266-.506-.577-.545-.983.493-1.043 1.258-2.09-.048-3.106-.98-.788-1.845-1.626-3.35-.922-1.102.52-1.728-.227-2.104-1.36-.597-1.79-.384-4.248.622-4.96z"
+	   id="path658" />
+	<path
+	   fill="#DCDDE0"
+	   d="M441.194 438.252c-.952.188-1.82.55-2.52 1.246-.275-.312-.547-.617-.818-.93-.312-1.544-1.872-.915-2.704-1.554.207-2.887 2.063-1.6 3.55-1.313.936-1.414-.547-2.856.105-4.22-.604-1.19-.077-1.84 1.054-2.2.275.074.506.226.693.438.66.914.633 2.08 1.124 3.06.28.963.56 1.922.75 2.907-.065 1.02.145 2.178-1.233 2.567z"
+	   id="path660" />
+	<path
+	   fill="#E1E0E2"
+	   d="M436.618 450.916c-.48-1.777.927-3.177 2.987-2.91.8.1 1.62.236 2.188.93.02.113.032.226.052.338.196.67.746 1.177.89 1.875.043.24.024.48-.04.725-.26.622-.746.965-1.388 1.112-.87.135-1.738.242-2.324-.647-.116-1.596-1.587-.933-2.365-1.424z"
+	   id="path662" />
+	<path
+	   fill="#E1E0E2"
+	   d="M443.256 447.95c1.47-.862 1.737.525 2.068 1.277.753 1.7-1.69.928-1.763 2.082.442.82-.162.88-.713.98-.285-.104-.417-.297-.375-.604l.035-.112c.136-.98-1.48-1.48-.725-2.636l.005-.006c.928.318 1.083-.502 1.47-.983z"
+	   id="path664" />
+	<path
+	   fill="#E0DFE1"
+	   d="M436.618 450.916c1.058.188 1.364-1.916 2.702-.87 1.05.814.025 1.612-.004 2.423.218 1.085-.49.786-1.058.708-.358-.166-.615-.422-.73-.813-.263-.298-.526-.59-.792-.888l-.118-.56z"
+	   id="path666" />
+	<path
+	   fill="#E9E9EA"
+	   d="M434.336 450.95c-.362-.437-.612-.887.052-1.27.12-.07.415-.08.445-.02.314.603-.158.93-.5 1.292h.003z"
+	   id="path668" />
+	<path
+	   fill="#CCCDD2"
+	   d="M434.244 431.545c-.552-.48-1.093-1.18-1.732-.103-.785-1.338-.785-1.338 1.542-2.707.226.13.45.263.677.392l.01.006c.814.266 1.525.678 1.26 1.678-.237.9-1.04.782-1.748.737l-.008-.002z"
+	   id="path670" />
+	<path
+	   fill="#D7D7D9"
+	   d="M434.245 431.547c1.23-.59 1.83-1.308.49-2.414 1.83.946 3.196-1.13 4.94-.76.215.14.433.278.645.422.244.418.146.646-.355.658-.646.524-1.02 1.215-1.157 2.026-1.53-.626-3.013 2.172-4.563.067z"
+	   id="path672" />
+	<path
+	   fill="#E1E1E2"
+	   d="M439.965 429.455c.118-.224.236-.44.354-.66 1.062-1.98 3.173-2.818 4.676-1.863.1.357.194.71.29 1.068.166.586.435 1.104.964 1.454l.523-.133c.514 1.288.514 1.288-1.36 1.872-1.712-.643-3.35-1.613-5.306-1.217-.046-.172-.093-.346-.142-.52z"
+	   id="path674" />
+	<path
+	   fill="#E6E7EA"
+	   d="M451.52 446.885l-.147-.533c-2.887-2.563-3.195-6.492-5.104-9.578.254-1.018-.18-2.06.087-3.078.092-.245.247-.44.46-.598 1.952-.19 2.985 1.258 4.103 2.435.377.4.688.766 1.205.926.05.167.103.333.15.5 1.065 1.118-.855 1.644-.47 2.77 1.1.024 2.18-1.286 3.51-.216-2.99 1.582-2.135 5.093-3.796 7.37z"
+	   id="path676" />
+	<path
+	   fill="#E1E0E2"
+	   d="M452.127 436.455c-.54.045-.98 1.98-1.568.2-.65-1.946-2.287-2.535-3.833-3.336-.825-.64-1.363-1.417-1.254-2.52.044-.84 1.668-.284 1.306-1.48.5.175 1.453.395 1.44.512-.34 3.203 3.248 4.06 3.907 6.623zM446.25 429.454c-.697-.234-1.573-.354-.962-1.453.653.268.8.867.963 1.454z"
+	   id="path678" />
+	<path
+	   fill="#EAEAEC"
+	   d="M452.123 451.307c.317-.264.638-.53.952-.793.146-1.057.327-2.074 1.814-1.7.78-.425 1.658-1.245 2.437-.767.447.27.885 1.127.977 1.633.19 1.084-.502 1.937-1.354 2.504-1.165.775-5.84 2.188-6.856.64-.65-.988.652-.563 1.262-.812.347-.143.58-.395.767-.705zM460.22 447.404c-.044-.176-.086-.354-.125-.53-.163-1.283.286-1.783 1.563-1.228.31.244.51.563.646.922.195.687.52 1.25 1.3 1.41.607.232 1.106.584 1.34 1.224.042.264-.01.506-.153.73-1.257 1.3-2.87.714-4.357.833-.266-.004-.52-.057-.773-.135-.382-.16-.684-.412-.887-.777-.566-1.433.67-1.806 1.446-2.45z"
+	   id="path680" />
+	<path
+	   fill="#E6E5E7"
+	   d="M454.89 448.81c-.883.272-1.21 1.134-1.813 1.704-.644-.723-1.305-1.11-2.387-.772-1.04.32-1.406-.59-1.605-1.418-.157-.65-.298-1.392.843-1.005l.14.53c1.324.88 2.68-.27 4.015.062.267.3.537.6.808.9z"
+	   id="path682" />
+	<path
+	   fill="#F5F4F5"
+	   d="M460.22 447.404c-.342.857-1.397 1.43-1.024 2.566-.27.365-.614.46-1.032.285-.277-.314-.56-.627-.837-.94-.563-.41.185-1.19-.44-1.58.842-2.794 2.26.208 3.332-.33zM461.514 445.928c-.878-.295-1.04.488-1.42.94-1.072-.516-1.624-1.292-1.262-2.522l.23-.313c2.98-.464 3.313-.27 3.165 1.848-.226.153-.465.167-.713.048z"
+	   id="path684" />
+	<path
+	   fill="#E7E7E8"
+	   d="M454.078 447.91c-1.102.28-2.194.604-3.31.827-.667.138-.996-.174-.704-.89 1.5-.306 3.243.155 4.208-1.6.6.85-.144 1.173-.194 1.663z"
+	   id="path686" />
+	<path
+	   fill="#E3E2E4"
+	   d="M447.213 436.563c.94 1.445 1.64 3.082 2.185 4.652.25.72 1.633 3.563.526 4.053.187-.084-2.224-1.393-2.465-1.498-1.032-.453-1.807-1.346-2.762-1.93-1.587-.972-3.49-.166-4.407-2.27-.54-1.248-.35-2.478-.105-3.76.174-.933.127-2.013.675-2.833.625-.938 1.34-.563 2.248-.146 1.745.795 3.072 2.15 4.105 3.733z"
+	   id="path688" />
+	<path
+	   fill="#E6E7EA"
+	   d="M445.472 430.803c.893.604 1.335 1.432 1.254 2.52l-.012.017c-.94.565-1.61-.1-2.104-.656-1.08-1.225-2.114-1.115-3.257-.188-.088.37-.263.42-.525.146-.77-.742-.364-1.8-.72-2.656 2.247-2.704 3.658.02 5.364.817zM462.74 446.15c1.22-.735 2.537-.64 3.864-.48l-.896.866c-.29.47.104.91.063 1.375-.088.392-.32.65-.694.785-.647.14-1.117-.538-1.77-.4-2.216 1.478-1.028-.837-1.48-1.327.205-.386.797-.337.914-.818z"
+	   id="path690" />
+	<path
+	   fill="#E0E0E1"
+	   d="M441.354 432.49c.774-2.09 1.73-3.022 3.458-.7.473.638 1.26 1.04 1.902 1.548.326 1.088.67 2.178.334 3.332-1.898-1.395-3.796-2.787-5.694-4.18z"
+	   id="path692" />
+	<path
+	   fill="#E6E6E7"
+	   d="M456.882 447.734c1.813.06.09 1.11.44 1.58-.87-.322-.47-1.003-.44-1.58z"
+	   id="path694" />
+	<path
+	   fill="#EBEAEC"
+	   d="M465.06 448.38c.403.5.66.97-.24 1.21-.505-.435-1.01-.865-1.514-1.3.644-1.163 1.17.058 1.753.09z"
+	   id="path696" />
+	<path
+	   fill="#130F09"
+	   d="M462.74 446.15c.336.16.7.46.316.74-.28.205-.813.063-1.23.076-.103-.35-.207-.693-.312-1.04.185-.06.37-.114.557-.17.222.133.447.264.67.394z"
+	   id="path698" />
   </g>
 </svg>
diff --git a/resources/vector/outfit/torso hourglass straps.svg b/resources/vector/outfit/torso hourglass straps.svg
index 2f026824a0033b95e73a57483c90b7508de19dc5..1b8bc9831b35514bcd9d48fbff0e723a226fb871 100644
--- a/resources/vector/outfit/torso hourglass straps.svg	
+++ b/resources/vector/outfit/torso hourglass straps.svg	
@@ -1,13 +1,13 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve" id="svg4356" sodipodi:docname="vector source.svg" inkscape:version="0.91 r13725">
   <metadata id="metadata4362">
-    <rdf:RDF>
-      <cc:Work rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
-        <dc:title/>
-      </cc:Work>
-    </rdf:RDF>
+	<rdf:RDF>
+	  <cc:Work rdf:about="">
+		<dc:format>image/svg+xml</dc:format>
+		<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+		<dc:title/>
+	  </cc:Work>
+	</rdf:RDF>
   </metadata>
   <defs id="defs4360"/>
   <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1280" inkscape:window-height="952" id="namedview4358" showgrid="false" inkscape:zoom="4.808326" inkscape:cx="531.76051" inkscape:cy="751.71421" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="Boob_Large_3_" inkscape:object-nodes="true" inkscape:object-paths="false" inkscape:snap-smooth-nodes="true" inkscape:snap-object-midpoints="true"/>
@@ -34,15 +34,15 @@
 	.st19{fill:#787878;}
 	.st20{fill:#D76B93;}
 	.st21{fill:#4DB748;}
-	.st22{opacity:0.24;fill:#BF2126;enable-background:new    ;}
+	.st22{opacity:0.24;fill:#BF2126;enable-background:new	;}
 	.st23{fill:#070505;}
 	.st24{fill:#BF2126;}
 </style>
   <svg:g inkscape:groupmode="layer" id="Torso_Hourglass_straps" inkscape:label="Torso_Hourglass_straps" style="display:inline">
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 500.97796,204.16551 c -0.71264,4.69149 3.72511,8.09539 9.22204,11.23449 12.56584,-0.1687 25.13169,-3.25605 37.69753,-9.69857" id="path9218" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
-    <svg:path id="path9222" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 495.8,467.5 -14.5431,-61.0527 4.91522,-55.28426 5.08461,-71.0825 L 510.2,215.4 530.35082,279.04329 523.449,317.775 508.76009,353.35994 481.2569,406.4473 471.9861,352.02373 461.91384,309.87756 468.81988,275.6 510.2,215.4" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 463.2324,352.85095 8.7537,-0.82722 14.18602,-0.86069 22.58797,2.1969 37.46362,7.77538" id="path9224" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 460.59329,375.71105 c 8.26177,10.3193 15.11821,15.52324 20.66361,30.73625 14.56337,-16.56115 48.05529,-16.49869 68.44366,-26.50672" id="path9226" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
-    <svg:path id="path4809" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 587.45053,268.9835 -27.76453,10.0025 -29.33518,0.0573 -39.09409,1.03724 -22.43685,-4.48053 -8.85992,-2.64861" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 500.97796,204.16551 c -0.71264,4.69149 3.72511,8.09539 9.22204,11.23449 12.56584,-0.1687 25.13169,-3.25605 37.69753,-9.69857" id="path9218" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path id="path9222" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="m 495.8,467.5 -14.5431,-61.0527 4.91522,-55.28426 5.08461,-71.0825 L 510.2,215.4 530.35082,279.04329 523.449,317.775 508.76009,353.35994 481.2569,406.4473 471.9861,352.02373 461.91384,309.87756 468.81988,275.6 510.2,215.4" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 463.2324,352.85095 8.7537,-0.82722 14.18602,-0.86069 22.58797,2.1969 37.46362,7.77538" id="path9224" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 460.59329,375.71105 c 8.26177,10.3193 15.11821,15.52324 20.66361,30.73625 14.56337,-16.56115 48.05529,-16.49869 68.44366,-26.50672" id="path9226" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path id="path4809" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="m 587.45053,268.9835 -27.76453,10.0025 -29.33518,0.0573 -39.09409,1.03724 -22.43685,-4.48053 -8.85992,-2.64861" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccc"/>
   </svg:g>
 </svg>
diff --git a/resources/vector/outfit/torso normal straps.svg b/resources/vector/outfit/torso normal straps.svg
index 1ee9b3cf15c2cf7f63bee2090dd710de854b37ac..d4086d6caa8b6aee734cf4f7b69b5c91e57a7488 100644
--- a/resources/vector/outfit/torso normal straps.svg	
+++ b/resources/vector/outfit/torso normal straps.svg	
@@ -1,13 +1,13 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve" id="svg4356" sodipodi:docname="vector source.svg" inkscape:version="0.91 r13725">
   <metadata id="metadata4362">
-    <rdf:RDF>
-      <cc:Work rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
-        <dc:title/>
-      </cc:Work>
-    </rdf:RDF>
+	<rdf:RDF>
+	  <cc:Work rdf:about="">
+		<dc:format>image/svg+xml</dc:format>
+		<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+		<dc:title/>
+	  </cc:Work>
+	</rdf:RDF>
   </metadata>
   <defs id="defs4360"/>
   <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1280" inkscape:window-height="952" id="namedview4358" showgrid="false" inkscape:zoom="4.808326" inkscape:cx="531.76051" inkscape:cy="751.71421" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="Boob_Large_3_" inkscape:object-nodes="true" inkscape:object-paths="false" inkscape:snap-smooth-nodes="true" inkscape:snap-object-midpoints="true"/>
@@ -34,15 +34,15 @@
 	.st19{fill:#787878;}
 	.st20{fill:#D76B93;}
 	.st21{fill:#4DB748;}
-	.st22{opacity:0.24;fill:#BF2126;enable-background:new    ;}
+	.st22{opacity:0.24;fill:#BF2126;enable-background:new	;}
 	.st23{fill:#070505;}
 	.st24{fill:#BF2126;}
 </style>
   <svg:g inkscape:groupmode="layer" id="Torso_Normal_straps" inkscape:label="Torso_Normal_straps" style="display:inline">
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 500.903,204.256 C 500.191,208.948 504.628,212.352 510.125,215.491 C 522.07,215.33 533.649,211.074 545.594,204.95" id="path9218" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
-    <svg:path id="path9222" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="M 492.779,466.2 L 479.154,404.326 L 481.969,348.317 L 491.442,278.56 L 510.125,215.491 L 531.396,274.432 L 535.475,313.426 L 525.004,352.471 L 479.154,404.326 L 467.783,349.178 L 461.718,308.021 L 469.006,274.079 L 510.125,215.491" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 459.029,350.005 L 467.783,349.178 L 481.969,348.317 L 525.004,352.471 L 562.468,360.247" id="path9224" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 458.065,372.805 C 466.525,383.372 473.476,388.748 479.154,404.326 C 495.782,385.418 536.776,393.898 560.054,382.472" id="path9226" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
-    <svg:path id="path4809" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 587.622,264.803 L 560.344,274.43 L 531.396,274.432 L 491.442,278.56 L 469.006,274.079 L 460.146,271.43" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 500.903,204.256 C 500.191,208.948 504.628,212.352 510.125,215.491 C 522.07,215.33 533.649,211.074 545.594,204.95" id="path9218" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path id="path9222" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="M 492.779,466.2 L 479.154,404.326 L 481.969,348.317 L 491.442,278.56 L 510.125,215.491 L 531.396,274.432 L 535.475,313.426 L 525.004,352.471 L 479.154,404.326 L 467.783,349.178 L 461.718,308.021 L 469.006,274.079 L 510.125,215.491" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 459.029,350.005 L 467.783,349.178 L 481.969,348.317 L 525.004,352.471 L 562.468,360.247" id="path9224" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 458.065,372.805 C 466.525,383.372 473.476,388.748 479.154,404.326 C 495.782,385.418 536.776,393.898 560.054,382.472" id="path9226" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path id="path4809" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 587.622,264.803 L 560.344,274.43 L 531.396,274.432 L 491.442,278.56 L 469.006,274.079 L 460.146,271.43" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccc"/>
   </svg:g>
 </svg>
diff --git a/resources/vector/outfit/torso unnatural straps.svg b/resources/vector/outfit/torso unnatural straps.svg
index 6f6a4a3778b78d464abb659a5a8a7a24fbb311dc..ebd7b2aa3e7e52ca738c75107d7812e2f9096070 100644
--- a/resources/vector/outfit/torso unnatural straps.svg	
+++ b/resources/vector/outfit/torso unnatural straps.svg	
@@ -1,13 +1,13 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve" id="svg4356" sodipodi:docname="vector source.svg" inkscape:version="0.91 r13725">
   <metadata id="metadata4362">
-    <rdf:RDF>
-      <cc:Work rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
-        <dc:title/>
-      </cc:Work>
-    </rdf:RDF>
+	<rdf:RDF>
+	  <cc:Work rdf:about="">
+		<dc:format>image/svg+xml</dc:format>
+		<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+		<dc:title/>
+	  </cc:Work>
+	</rdf:RDF>
   </metadata>
   <defs id="defs4360"/>
   <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1280" inkscape:window-height="952" id="namedview4358" showgrid="false" inkscape:zoom="4.808326" inkscape:cx="531.76051" inkscape:cy="751.71421" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="Boob_Large_3_" inkscape:object-nodes="true" inkscape:object-paths="false" inkscape:snap-smooth-nodes="true" inkscape:snap-object-midpoints="true"/>
@@ -34,15 +34,15 @@
 	.st19{fill:#787878;}
 	.st20{fill:#D76B93;}
 	.st21{fill:#4DB748;}
-	.st22{opacity:0.24;fill:#BF2126;enable-background:new    ;}
+	.st22{opacity:0.24;fill:#BF2126;enable-background:new	;}
 	.st23{fill:#070505;}
 	.st24{fill:#BF2126;}
 </style>
   <svg:g inkscape:groupmode="layer" id="Torso_Unnatural_straps" inkscape:label="Torso_Unnatural_straps" style="display:inline">
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 501.152,204.07 C 500.44,208.762 504.877,212.166 510.374,215.305 C 523.664,215.126 537.25,213.091 550.54,206.278" id="path9218" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
-    <svg:path id="path9222" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="M 496.678,465.98 L 482.188,407.3 L 491.521,353.918 L 491.181,281.745 L 510.374,215.305 L 528.877,283.779 L 512.809,320.263 L 498.229,354.208 L 482.188,407.3 L 477.335,354.779 L 462.265,311.869 L 468.744,277.264 L 510.374,215.305" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 468.581,355.606 L 477.335,354.779 L 491.521,353.918 L 498.229,354.208 L 535.693,361.984" id="path9224" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
-    <svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 465.026,377.931 C 472.614,387.409 477.095,393.328 482.188,407.3 C 495.417,392.256 523.809,387.614 542.329,378.524" id="path9226" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
-    <svg:path id="path4809" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 586.895,273.468 L 558.608,283.791 L 528.877,283.779 L 491.181,281.745 L 468.744,277.264 L 459.884,274.615" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 501.152,204.07 C 500.44,208.762 504.877,212.166 510.374,215.305 C 523.664,215.126 537.25,213.091 550.54,206.278" id="path9218" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path id="path9222" style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:3;stroke-dasharray:none;stroke-opacity:1" d="M 496.678,465.98 L 482.188,407.3 L 491.521,353.918 L 491.181,281.745 L 510.374,215.305 L 528.877,283.779 L 512.809,320.263 L 498.229,354.208 L 482.188,407.3 L 477.335,354.779 L 462.265,311.869 L 468.744,277.264 L 510.374,215.305" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 468.581,355.606 L 477.335,354.779 L 491.521,353.918 L 498.229,354.208 L 535.693,361.984" id="path9224" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc"/>
+	<svg:path style="display:inline;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 465.026,377.931 C 472.614,387.409 477.095,393.328 482.188,407.3 C 495.417,392.256 523.809,387.614 542.329,378.524" id="path9226" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc"/>
+	<svg:path id="path4809" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 586.895,273.468 L 558.608,283.791 L 528.877,283.779 L 491.181,281.745 L 468.744,277.264 L 459.884,274.615" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccc"/>
   </svg:g>
 </svg>
diff --git a/src/art/artJS.js b/src/art/artJS.js
index e75f00d513a80155f525d0e4dcd960864cb375fc..1a98c4b8e8e99159fca14c9a666a54d788982ef3 100644
--- a/src/art/artJS.js
+++ b/src/art/artJS.js
@@ -191,37 +191,37 @@ window.skinColorCatcher = function (artSlave) {
 		labiaColor: "#d76b93",
 		lipsColor: "#ff69b4"
 	};
-	if (artSlave.skin == "camouflage patterned") {
+	if (artSlave.skin === "camouflage patterned") {
 		colorSlave.skinColor = "#78875a";
 		colorSlave.areolaColor = "#939F7A";
 		colorSlave.labiaColor = "#F977A3";
 		colorSlave.lipsColor = "#708050";
-	} else if (artSlave.skin == "dyed red") {
+	} else if (artSlave.skin === "dyed red") {
 		colorSlave.skinColor = "#bc4949";
 		colorSlave.areolaColor = "#C96D6D";
 		colorSlave.labiaColor = "#F977A3";
 		colorSlave.lipsColor = "#b04040";
-	} else if (artSlave.skin == "dyed green") {
+	} else if (artSlave.skin === "dyed green") {
 		colorSlave.skinColor = "#A6C373";
 		colorSlave.areolaColor = "#B7CF8F";
 		colorSlave.labiaColor = "#F977A3";
 		colorSlave.lipsColor = "#A0C070";
-	} else if (artSlave.skin == "dyed blue") {
+	} else if (artSlave.skin === "dyed blue") {
 		colorSlave.skinColor = "#5b8eb7";
 		colorSlave.areolaColor = "#7BA4C5";
 		colorSlave.labiaColor = "#F977A3";
 		colorSlave.lipsColor = "#5080b0";
-	} else if (artSlave.skin == "dyed pink") {
+	} else if (artSlave.skin === "dyed pink") {
 		colorSlave.skinColor = "#fe62b0";
 		colorSlave.areolaColor = "#fc45a1";
 		colorSlave.labiaColor = "#fba2c0";
 		colorSlave.lipsColor = "#ff4291";
-	} else if (artSlave.skin == "dyed gray") {
+	} else if (artSlave.skin === "dyed gray") {
 		colorSlave.skinColor = "#bdbdbd";
 		colorSlave.areolaColor = "#666666";
 		colorSlave.labiaColor = "#8C8C8C";
 		colorSlave.lipsColor = "#171717";
-	} else if (artSlave.skin == "tiger striped") {
+	} else if (artSlave.skin === "tiger striped") {
 		colorSlave.skinColor = "#e2d75d";
 		colorSlave.areolaColor = "#E7DF7D";
 		colorSlave.labiaColor = "#F977A3";
diff --git a/src/art/artWidgets.tw b/src/art/artWidgets.tw
index 75e19191888febb9f4a6408aa4eadd7bc156cb15..32e8856a21efc921dfcbeb2967d1a08ba79dbe29 100644
--- a/src/art/artWidgets.tw
+++ b/src/art/artWidgets.tw
@@ -31,25 +31,12 @@ $args[2]: icon UI Display for vector art, 1 for on.
 
 <<elseif $imageChoice == 1>> /* VECTOR ART BY NOX*/
 
-<<if ndef $seeVectorArtHighlights>>
-	<<set $seeVectorArtHighlights = 1>>
-<</if>>
 <<set _artSlave = $args[0] >>
-<<silently>>
 /* prepare HTML color codes for slave display */
 /* note: latex clothing is mostly emulated by rubber color for skin (and shoes) */
 /* TODO: consistently use American "color" instead of "colour" for all identifiers */
-<<include Art_Vector_Set_Colour_Outfit_>>
-<<include Art_Vector_Set_Colour_Skin_>>
-<<include Art_Vector_Set_Colour_Hair_>>
-<<include Art_Vector_Set_Colour_Shoe_>>
-<</silently>>
+<<run ArtVectorColor(_artSlave)>>
 <<include Art_Vector_Generate_Stylesheet_>>
-/*
-each passage adds one layer of vector art
-vector art added later is drawn over previously added art
-(what is listed on the bottom in the code appears on the top of the image)
-*/
 <<= VectorArt(_artSlave)>>
 
 <<elseif $imageChoice == 2>> /* VECTOR ART BY NOX — Pregmod Legacy Version */
diff --git a/src/art/vector/ArtVectorColor.js b/src/art/vector/ArtVectorColor.js
new file mode 100644
index 0000000000000000000000000000000000000000..f7613a449ef38fa1d2cff96cc6c26ed98244da16
--- /dev/null
+++ b/src/art/vector/ArtVectorColor.js
@@ -0,0 +1,387 @@
+window.ArtVectorColor = function(slave) {
+	const T = State.temporary;
+	let outfitBaseColour;
+	
+	/* 
+		WARNING: Some of these temporary variables are used in wardrobeUse.tw or salon.tw 
+	 	Known examples are _outfitBaseColour, _glassesColor, and _shoeColour
+	*/
+	setOutfitColor();	
+	setSkinColor();
+	setHairColor();
+	setShoeColor();
+
+	function setOutfitColor() {
+		/* TODO: rewrite all textual descriptions not to explicitly mention the latex being of black color. */
+		if (slave.clothes === "a Fuckdoll suit" || slave.clothes === "restrictive latex" || slave.clothes === "a latex catsuit" || slave.clothes === "a cybersuit")
+			outfitBaseColour = slave.clothingBaseColor || "#515351"; /* use custom color, or use default latex color */
+		else if (slave.clothes == "a comfortable bodysuit")
+			outfitBaseColour = slave.clothingBaseColor || "#464646"; /* use custom color, or use default bodysuit color */
+
+		/* head addons */
+		if (slave.collar === "porcelain mask")
+			T.glassesColor = slave.glassesColor || "#FFFFFF"; /* use custom color or white */
+		else
+			T.glassesColor = slave.glassesColor || "#010101"; /* use custom color or default */
+
+		T.eyeColor = extractColor(slave.eyeColor, 1);
+		T.outfitBaseColour = outfitBaseColour;
+	}
+
+	function setSkinColor() {
+		let colorSlave = skinColorCatcher(slave);
+
+		/* setting default values */
+		T.areolaStyle = colorSlave.areolaColor;
+		T.bellybuttonStyle = colorSlave.areolaColor;
+		T.labiaStyle = colorSlave.labiaColor;
+		T.skinColour = colorSlave.skinColor;
+		/* todo: introduce fleshStyle */
+		/* these need to be declared so they can be set conditionally */
+		T.headSkinStyle = undefined;
+		T.torsoSkinStyle = undefined;
+		T.boobSkinStyle = undefined;
+		T.penisSkinStyle = undefined;
+		T.scrotumSkinStyle = undefined;
+		T.bellySkinStyle = undefined;
+
+		/* BEGIN SKIN COLOR OVERRIDES FOR LATEX CLOTHING EMULATION */
+		if (slave.clothes === "a Fuckdoll suit") {
+			/* slave is a fuckdoll - display all skin as if it was black rubber */
+			T.skinColour = outfitBaseColour;
+			T.areolaStyle = "fill:rgba(81,83,81,1);";
+			T.labiaStyle = T.areolaStyle;
+			T.bellybuttonStyle = T.areolaStyle;
+		} else if (slave.clothes === "restrictive latex") { /* slave wears restrictive latex - display most skin as if it was rubber */
+			/* nice latex does not cover any privates. */
+			T.boobSkinStyle = "fill:"+T.skinColour+";";
+			T.penisSkinStyle = "fill:"+T.skinColour+";";
+			T.scrotumSkinStyle = "fill:"+T.skinColour+";";
+			T.torsoSkinStyle = "fill:"+T.skinColour+";";
+			/* rest of body is covered in latex */
+			T.skinColour = outfitBaseColour;
+			T.bellybuttonStyle = outfitBaseColour;
+		} else if (slave.clothes === "a latex catsuit") {
+			/* nice latex does not cover head. */
+			T.headSkinStyle = "fill:"+T.skinColour+";";
+			/* rest of body is covered in latex */
+			T.skinColour = outfitBaseColour;
+			/* catsuit covers areolae and crotch, too */
+			T.bellybuttonStyle = outfitBaseColour;
+		} else if (slave.clothes === "a cybersuit") {
+			/* rest of body is covered in latex */
+			T.skinColour = outfitBaseColour;
+			T.bellybuttonStyle = outfitBaseColour;
+		} else if (slave.clothes === "a comfortable bodysuit") {
+			/* nice bodysuit does not cover head. */
+			T.headSkinStyle = "fill:"+T.skinColour+";";
+			/* rest of body is covered in bodysuit */
+			T.skinColour = outfitBaseColour;
+			T.bellySkinStyle = outfitBaseColour;
+			T.bellybuttonStyle = outfitBaseColour;
+		}
+		/* END SKIN COLOR OVERRIDES FOR LATEX CLOTHING EMULATION */
+
+		/* outfit dick coloring to match outfit rgba in svg */
+		switch (slave.clothes) {
+			case "a cheerleader outfit":
+				T.scrotumSkinStyle = "fill:rgba(250,186,0,1);";
+				T.bellySkinStyle = "fill:rgba(95,110,160,1);";
+				break;
+			case "cutoffs and a t-shirt":
+				T.scrotumSkinStyle = "fill:rgba(81,124,211,1);";
+				break;
+			case "a halter top dress":
+				T.scrotumSkinStyle = "fill:rgba(94,51,124,1);";
+				T.bellySkinStyle = "fill:rgba(94,51,124,1);";
+				break;
+			case "a burqa":
+			case "a hijab and abaya":
+			case "a niqab and abaya":
+				T.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
+				T.bellySkinStyle = "fill:rgba(51,51,51,1);";
+				break;
+			case "a hijab and blouse":
+				T.scrotumSkinStyle = "fill:rgba(85,0,34,1);";
+				T.bellySkinStyle = "fill:rgba(85,0,34,1);";
+				break;
+			case "a burkini":
+				T.scrotumSkinStyle = "fill:rgba(0,97,158,1);";
+				T.bellySkinStyle = "fill:rgba(0,97,158,1);";
+				break;
+			case "a klan robe":
+				T.scrotumSkinStyle = "fill:rgba(236,236,236,1);";
+				T.bellySkinStyle = "fill:rgba(236,236,236,1);";
+				break;
+			case "a nice maid outfit":
+			case "a slutty maid outfit":
+				T.scrotumSkinStyle = "fill:rgba(225,225,225,1);";
+				T.bellySkinStyle = "fill:rgba(225,225,225,1);";
+				break;
+			case "a leotard":
+				T.scrotumSkinStyle = "fill:rgba(120,15,55,1);";
+				T.bellySkinStyle = "fill:rgba(120,15,55,1);";
+				break;
+			case "a military uniform":
+				T.scrotumSkinStyle = "fill:rgba(34,42,18,1);";
+				T.bellySkinStyle = "fill:rgba(34,42,18,1);";
+				break;
+			case "a mini dress":
+				T.scrotumSkinStyle = "fill:rgba(26,26,26,1);";
+				T.bellySkinStyle = "fill:rgba(26,26,26,1);";
+				break;
+			case "a nice nurse outfit":
+				T.scrotumSkinStyle = "fill:rgba(0,128,128,1);";
+				T.bellySkinStyle = "fill:rgba(0,128,128,1);";
+				break;
+			case "a slutty nurse outfit":
+				T.scrotumSkinStyle = "fill:rgba(255,255,255,1);";
+				break;
+			case "a scalemail bikini":
+				T.scrotumSkinStyle = "fill:rgba(133,146,158,1);";
+				break;
+			case "striped panties":
+				T.scrotumSkinStyle = "fill:rgba(255,255,255,1);";
+				break;
+			case "a schoolgirl outfit":
+				T.scrotumSkinStyle = "fill:rgba(28,31,36,1);";
+				T.bellySkinStyle = "fill:rgba(28,31,36,1);";
+				break;
+			case "a ball gown":
+				T.scrotumSkinStyle = "fill:rgba(128,0,0,1);";
+				T.bellySkinStyle = "fill:rgba(128,0,0,1);";
+				break;
+			case "battledress":
+				T.scrotumSkinStyle = "fill:rgba(34,42,18,1);";
+				T.bellySkinStyle = "fill:rgba(34,42,18,1);";
+				break;
+			case "a slave gown":
+				T.scrotumSkinStyle = "fill:rgba(200,200,200,1);";
+				T.bellySkinStyle = "fill:rgba(200,200,200,1);";
+				break;
+			case "a slutty outfit":
+				T.scrotumSkinStyle = "fill:rgba(63,126,181,1);";
+				break;
+			case "spats and a tank top":
+				T.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
+				break;
+			case "a succubus outfit":
+				T.scrotumSkinStyle = "fill:rgba(128,0,0,1);";
+				T.bellySkinStyle = "fill:rgba(128,0,0,1);";
+				break;
+			case "nice business attire":
+				T.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
+				T.bellySkinStyle = "fill:rgba(51,51,51,1);";
+				break;
+			case "slutty business attire":
+				T.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
+				break;
+			case "attractive lingerie for a pregnant woman":
+				T.scrotumSkinStyle = "fill:rgba(153,153,153,1);";
+				break;
+			case "a bunny outfit":
+				T.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
+				T.bellySkinStyle = "fill:rgba(51,51,51,1);";
+				break;
+			case "conservative clothing":
+				T.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
+				T.bellySkinStyle = "fill:rgba(51,51,51,1);";
+				break;
+			case "harem gauze":
+				T.scrotumSkinStyle = "fill:rgba(0,168,131,1);";
+				break;
+			case "a huipil":
+				T.scrotumSkinStyle = "fill:rgba(200,200,200,1);";
+				T.bellySkinStyle = "fill:rgba(200,200,200,1);";
+				break;
+			case "a kimono":
+				T.scrotumSkinStyle = "fill:rgba(0,91,150,1);";
+				T.bellySkinStyle = "fill:rgba(0,91,150,1);";
+				break;
+			case "a maternity dress":
+				T.scrotumSkinStyle = "fill:rgba(48,54,72,1);";
+				T.bellySkinStyle = "fill:rgba(48,54,72,1);";
+				break;
+			case "a slutty qipao":
+				T.scrotumSkinStyle = "fill:rgba(204,177,68,1);";
+				T.bellySkinStyle = "fill:rgba(204,177,68,1);";
+				break;
+			case "stretch pants and a crop-top":
+				T.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
+				break;
+			case "a toga":
+				T.scrotumSkinStyle = "fill:rgba(200,200,200,1);";
+				T.bellySkinStyle = "fill:rgba(200,200,200,1);";
+				break;
+			case "a penitent nuns habit":
+				T.scrotumSkinStyle = "fill:rgba(114,93,73,1);";
+				break;
+			case "a fallen nuns habit":
+				T.bellySkinStyle = "fill:rgba(51,51,51,1);";
+				break;
+			case "a chattel habit":
+				T.scrotumSkinStyle = "fill:rgba(200,200,200,1);";
+				break;
+			case "a monokini":
+				T.scrotumSkinStyle = "fill:rgba(33,47,61,1);";
+				break;
+			case "a schutzstaffel uniform":
+			case "a slutty schutzstaffel uniform":
+				T.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
+				T.bellySkinStyle = "fill:rgba(51,51,51,1);";
+				break;
+			case "a red army uniform":
+				T.scrotumSkinStyle = "fill:rgba(114,93,73,1);";
+				T.bellySkinStyle = "fill:rgba(114,93,73,1);";
+				break;
+			case "an apron":
+				T.scrotumSkinStyle = "fill:rgba(255,105,180,1);";
+				T.bellySkinStyle = "fill:rgba(255,105,180,1);";
+				break;
+			case "a dirndl":
+				T.scrotumSkinStyle = "fill:rgba(128,0,51,1);";
+				T.bellySkinStyle = "fill:rgba(128,0,51,1);";
+				break;
+			case "lederhosen":
+				T.scrotumSkinStyle = "fill:rgba(93,83,108,1);";
+				break;
+			case "a long qipao":
+				T.scrotumSkinStyle = "fill:rgba(0,128,0,1);";
+				break;
+			case "a mounty outfit":
+				T.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
+				T.bellySkinStyle = "fill:rgba(128,0,0,1);";
+				break;
+			case "battlearmor":
+				T.scrotumSkinStyle = "fill:rgba(200,200,200,1);";
+				break;
+			case "striped underwear":
+				T.scrotumSkinStyle = "fill:rgba(255,255,255,1);";
+				break;
+			case "panties":
+				T.scrotumSkinStyle = "fill:rgba(255,170,238,1);";
+				break;
+			case "a thong":
+				T.scrotumSkinStyle = "fill:rgba(34,28,36,1);";
+				break;
+			case "a button-up shirt and panties":
+			case "a t-shirt and panties":
+				T.scrotumSkinStyle = "fill:rgba(255,255,255,1);";
+				T.bellySkinStyle = "fill:rgba(255,255,255,1);";
+				break;
+			case "a slutty klan robe":
+				T.scrotumSkinStyle = "fill:rgba(128,0,0,1);";
+				break;
+			case "cutoffs":
+				T.scrotumSkinStyle = "fill:rgba(81,124,211,1);";
+				break;
+			case "sport shorts":
+			case "sport shorts and a sports bra":
+				T.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
+				break;
+			case "a t-shirt and thong":
+				T.scrotumSkinStyle = "fill:rgba(200,55,171,1);";
+				T.bellySkinStyle = "fill:rgba(200,55,171,1);";
+				break;
+			case "jeans":
+				T.scrotumSkinStyle = "fill:rgba(81,124,211,1);";
+				break;
+			case "leather pants":
+			case "leather pants and a tube top":
+				T.scrotumSkinStyle = "fill:rgba(26,26,26,1);";
+				break;
+			case "leather pants and pasties":
+				T.scrotumSkinStyle = "fill:rgba(85,0,0,1);";
+				break;
+			case "a t-shirt and jeans":
+				T.scrotumSkinStyle = "fill:rgba(81,124,211,1);";
+				T.bellySkinStyle = "fill:rgba(255,255,255,1);";
+				break;
+			case "a tank-top and panties":
+				T.scrotumSkinStyle = "fill:rgba(26,26,26,1);";
+				T.bellySkinStyle = "fill:rgba(26,26,26,1);";
+				break;
+			case "a tank-top":
+				T.bellySkinStyle = "fill:rgba(255,255,255,1);";
+				break;
+			case "a tube top and thong":
+				T.scrotumSkinStyle = "fill:rgba(34,28,36,1);";
+				break;
+			case "boyshorts":
+				T.scrotumSkinStyle = "fill:rgba(26,26,26,1);";
+				break;
+			case "an oversized t-shirt and boyshorts":
+				T.bellySkinStyle = "fill:rgba(255,255,255,1);";
+				break;
+			case "a sweater and panties":
+				T.scrotumSkinStyle = "fill:rgba(26,26,26,1);";
+				T.bellySkinStyle = "fill:rgba(212,170,0,1);";
+				break;
+			case "a sweater and cutoffs":
+				T.scrotumSkinStyle = "fill:rgba(77,77,77,1);";
+				T.bellySkinStyle = "fill:rgba(85,0,0,1);";
+				break;
+			case "a police uniform":
+				T.scrotumSkinStyle = "fill:rgba(11,23,40,1);";
+				T.bellySkinStyle = "fill:rgba(11,23,40,1);";
+				break;
+			case "a one-piece swimsuit":
+				T.scrotumSkinStyle = "fill:rgba(22,45,80,1);";
+				T.bellySkinStyle = "fill:rgba(22,45,80,1);";
+				break;
+			case "a skimpy loincloth":
+				T.scrotumSkinStyle = "fill:rgba(145,124,111,1);";
+				break;
+			case "kitty lingerie":
+				T.scrotumSkinStyle = "fill:rgba(255,170,238,1);";
+				break;
+			case "an oversized t-shirt":
+				T.bellySkinStyle = "fill:rgba(255,255,255,1);";
+				break;
+			case "a hanbok":
+				T.bellySkinStyle = "fill:rgba(255,109,182,1);";
+				break;
+			case "a gothic lolita dress":
+				T.bellySkinStyle = "fill:rgba(26,26,26,1);";
+				break;
+			case "a sweater":
+				T.bellySkinStyle = "fill:rgba(85,0,0,1);";
+				break;
+			case "sport shorts and a t-shirt":
+				T.scrotumSkinStyle = "fill:rgba(200,55,171,1);";
+				T.bellySkinStyle = "fill:rgba(200,55,171,1);";
+				break;
+			case "a biyelgee costume":
+				T.scrotumSkinStyle = "fill:rgba(33,68,120,1);";
+		}
+	}
+
+	function setHairColor() {
+		T.hairColour = extractColor(slave.hColor);
+		T.pubicHairColour = extractColor(slave.pubicHColor);
+		T.underarmHairColour = extractColor(slave.underArmHColor);
+		T.eyebrowHairColour = extractColor(slave.eyebrowHColor);
+		T.sclerae = extractColor(slave.sclerae);
+	}
+
+	function setShoeColor() {
+		/* BEWARE: _shoeColour is read by Wardrobe Use */
+
+		/* note: only heels use this shadow */
+		T.shoeShadowColour = "#616a6b";
+
+		if (slave.shoes === "none")
+			T.shoeColour = "#595959";
+		else
+			T.shoeColour = "#80808080";
+
+		/* override color in case of full body latex outfit, or custom color*/
+		if (slave.clothes === "a Fuckdoll suit" || slave.clothes === "restrictive latex") {
+			T.shoeColour = T.skinColour;
+			T.shoeShadowColour = T.shoeColour+";opacity: 0.5"; /* TODO: do not abuse "color" variable for style definitions. do not rely on dark background for shadow effect either. */
+		} else if (slave.shoeColor !== undefined) {
+			T.shoeColour = slave.shoeColor+";opacity: 0.4"; /* shoe color selected by user */
+			T.shoeShadowColour = T.shoeColour+";opacity: 0.5"; /* TODO: do not abuse "color" variable for style definitions. do not rely on dark background for shadow effect either. */
+		}
+	}
+};
diff --git a/src/art/vector/Set_Colour_Hair.tw b/src/art/vector/Set_Colour_Hair.tw
deleted file mode 100644
index 3e7470c2836db883493a87b5cb8d3aa53d03a506..0000000000000000000000000000000000000000
--- a/src/art/vector/Set_Colour_Hair.tw
+++ /dev/null
@@ -1,13 +0,0 @@
-:: Art_Vector_Set_Colour_Hair_ [nobr]
-
-/*
-"Free-Cities Dyes (taken from Cosmetic Rules Assistant Settings)"-
-to-"HTML Color"-Map
-courtesy of Nov-X
-*/
-
-<<set _hairColour = extractColor(_artSlave.hColor) >>
-<<set _pubicHairColour = extractColor(_artSlave.pubicHColor) >>
-<<set _underarmHairColour = extractColor(_artSlave.underArmHColor) >>
-<<set _eyebrowHairColour = extractColor(_artSlave.eyebrowHColor) >>
-<<set _sclerae = extractColor(_artSlave.sclerae) >>
\ No newline at end of file
diff --git a/src/art/vector/Set_Colour_Outfit.js b/src/art/vector/Set_Colour_Outfit.js
deleted file mode 100644
index b48d35a8078bce83a423d3ed7f5671209b02cdd3..0000000000000000000000000000000000000000
--- a/src/art/vector/Set_Colour_Outfit.js
+++ /dev/null
@@ -1,53 +0,0 @@
-window.Art_Vector_Set_Colour_Outfit = function(artSlave) {
-
-var s = {
-	outfitBaseColour : undefined,
-	glassesColor : undefined
-	}
-
-if (artSlave.fuckdoll != 0 || artSlave.clothes == "restrictive latex" || artSlave.clothes == "a latex catsuit" || artSlave.clothes == "a cybersuit") {
-	s.outfitBaseColour = "#515351" ; /* standard "black rubber" latex color */
-	if (artSlave.clothingBaseColor) {
-		s.outfitBaseColour = artSlave.clothingBaseColor ; /* latex color selected by user */
-		/* TODO: rewrite all textual descriptions not to explicitly mention the latex being of black color. */
-	}
-}
-
-if (artSlave.fuckdoll != 0 || artSlave.clothes == "a comfortable bodysuit") {
-	s.outfitBaseColour = "#464646" ; /* bodysuit */
-	if (artSlave.clothingBaseColor) {
-		s.outfitBaseColour = artSlave.clothingBaseColor ; /* bodysuit color selected by user */
-	}
-}
-
-/* head addons */
-switch (artSlave.eyewear) {
-	case "corrective glasses":
-	case "glasses":
-	case "blurring glasses":
-		s.glassesColor = "#010101";
-		break;
-	default:
-		/* use color for "glasses" by default */
-		s.glassesColor = "#010101";
-	}
-
-switch (artSlave.collar) {
-	case "porcelain mask":
-		s.glassesColor = "#FFFFFF";
-		break;
-	default:
-		/* use color for "mask" by default */
-		s.glassesColor = "#010101";
-	}
-
-if (artSlave.glassesColor) {
-	s.glassesColor = artSlave.glassesColor; /* glasses color selected by user */
-}
-
-if (artSlave.eyeColor) {
-	s.eyeColor = extractColor(artSlave.eyeColor, 1);
-}
-
-return s;
-}
diff --git a/src/art/vector/Set_Colour_Outfit.tw b/src/art/vector/Set_Colour_Outfit.tw
deleted file mode 100644
index 08c35b6c1e0c0a5123f1b1a160a4ded6da620c7e..0000000000000000000000000000000000000000
--- a/src/art/vector/Set_Colour_Outfit.tw
+++ /dev/null
@@ -1,10 +0,0 @@
-:: Art_Vector_Set_Colour_Outfit_
-
-/* BEWARE: _outfitBaseColour is used by Art_Vector_Set_Colour_Skin_ */
-/* BEWARE: _outfitBaseColour is read by Wardrobe Use */
-/* BEWARE: _glassesColor is read by Wardrobe Use */
-
-<<set _s = Art_Vector_Set_Colour_Outfit(_artSlave) >>
-<<set _outfitBaseColour = _s.outfitBaseColour>>
-<<set _glassesColor = _s.glassesColor>>
-<<set _eyeColor = _s.eyeColor>>
\ No newline at end of file
diff --git a/src/art/vector/Set_Colour_Shoe.tw b/src/art/vector/Set_Colour_Shoe.tw
deleted file mode 100644
index c33f5997f3ceb5d52b7b12e81488da820f7eea4a..0000000000000000000000000000000000000000
--- a/src/art/vector/Set_Colour_Shoe.tw
+++ /dev/null
@@ -1,33 +0,0 @@
-:: Art_Vector_Set_Colour_Shoe_ [nobr]
-
-/* courtesy of Nov-X */
-
-/* BEWARE: _shoeColour is read by Wardrobe Use */
-
-/* note: only heels use this shadow */
-<<set _shoeShadowColour = "#616a6b">>
-
-<<switch _artSlave.shoes>>
-<<case "extreme heels" "heels">>
-	<<set _shoeColour = "#80808080">>
-<<case "boots">>
-	<<set _shoeColour = "#80808080">>
-<<case "flats">>
-	<<set _shoeColour = "#80808080">>
-<<case "pumps">>
-	<<set _shoeColour = "#80808080">>
-<<default>>
-	/* use color for "heels" by default */
-	<<set _shoeColour = "#595959">>
-<</switch>>
-
-<<if def _artSlave.shoeColor>>
-	<<set _shoeColour = _artSlave.shoeColor+";opacity: 0.4">> /* shoe color selected by user */
-	<<set _shoeShadowColour = _shoeColour+";opacity: 0.5">> /* TODO: do not abuse "color" variable for style definitions. do not rely on dark background for shadow effect either. */
-<</if>>
-
-/* override color in case of full body latex outfit */
-<<if _artSlave.fuckdoll != 0 || _artSlave.clothes == "restrictive latex" >>
-	<<set _shoeColour = _skinColour>>
-	<<set _shoeShadowColour = _shoeColour+";opacity: 0.5">> /* TODO: do not abuse "color" variable for style definitions. do not rely on dark background for shadow effect either. */
-<</if>>
diff --git a/src/art/vector/Set_Colour_Skin.js b/src/art/vector/Set_Colour_Skin.js
deleted file mode 100644
index 790667177f9c73853427d39531648686a2aafd2a..0000000000000000000000000000000000000000
--- a/src/art/vector/Set_Colour_Skin.js
+++ /dev/null
@@ -1,370 +0,0 @@
-window.Art_Vector_Set_Colour_Skin = function(artSlave, outfitBaseColour) {
-
-/* create an aggregator object yielding all computed styles */
-var s = {
-	areolaStyle: "#d76b93", /* this is the default and can be customized later */
-	labiaStyle: "#d76b93", /* this is the default and can be customized later */
-	bellybuttonStyle: "#d76b93",
-	/* todo: introduce fleshStyle */
-	/* these need to be declared so they can be set conditionally */
-	headSkinStyle: undefined,
-	torsoSkinStyle: undefined,
-	boobSkinStyle: undefined,
-	penisSkinStyle: undefined,
-	scrotumSkinStyle: undefined,
-	bellySkinStyle: undefined,
-	skinColour: undefined,
-	eyeColor: undefined,
-}
-
-	var colorSlave = skinColorCatcher(artSlave);
-	s.areolaStyle = colorSlave.areolaColor;
-	s.bellybuttonStyle = colorSlave.areolaColor;
-	s.labiaStyle = colorSlave.labiaColor;
-	s.skinColour = colorSlave.skinColor;
-
-/* BEGIN SKIN COLOR OVERRIDES FOR LATEX CLOTHING EMULATION */
-
-if (artSlave.fuckdoll != 0) {
-	/* slave is a fuckdoll - display all skin as if it was black rubber */
-	s.skinColour = outfitBaseColour;
-	s.areolaStyle = "fill:rgba(81,83,81,1);";
-	s.labiaStyle = s.areolaStyle;
-	s.bellybuttonStyle = s.areolaStyle;
-}
-
-/* slave wears restrictive latex - display most skin as if it was rubber */
-if (artSlave.clothes == "restrictive latex") {
-	/* nice latex does not cover any privates. */
-	s.boobSkinStyle = "fill:"+s.skinColour+";";
-	s.penisSkinStyle = "fill:"+s.skinColour+";";
-	s.scrotumSkinStyle = "fill:"+s.skinColour+";";
-	s.torsoSkinStyle = "fill:"+s.skinColour+";";
-	/* rest of body is covered in latex */
-	s.skinColour = outfitBaseColour;
-	s.bellybuttonStyle = outfitBaseColour;
-}
-
-if (artSlave.clothes == "a latex catsuit") {
-	/* nice latex does not cover head. */
-	s.headSkinStyle = "fill:"+s.skinColour+";";
-	/* rest of body is covered in latex */
-	s.skinColour = outfitBaseColour;
-	/* catsuit covers areolae and crotch, too */
-	s.bellybuttonStyle = outfitBaseColour;
-}
-
-if (artSlave.clothes == "a cybersuit") {
-	/* rest of body is covered in latex */
-	s.skinColour = outfitBaseColour;
-	s.bellybuttonStyle = outfitBaseColour;
-}
-
-/* END SKIN COLOR OVERRIDES FOR LATEX CLOTHING EMULATION */
-
-if (artSlave.clothes == "a comfortable bodysuit") {
-	/* nice bodysuit does not cover head. */
-	s.headSkinStyle = "fill:"+s.skinColour+";";
-	/* rest of body is covered in bodysuit */
-	s.skinColour = outfitBaseColour;
-	s.bellySkinStyle = outfitBaseColour;
-	s.bellybuttonStyle = outfitBaseColour;
-}
-
-/* outfit dick coloring to match outfit rgba in svg */
-switch (artSlave.clothes) {
-case "a cheerleader outfit":
-	s.scrotumSkinStyle = "fill:rgba(250,186,0,1);";
-	s.bellySkinStyle = "fill:rgba(95,110,160,1);";
-	break;
-case "cutoffs and a t-shirt":
-	s.scrotumSkinStyle = "fill:rgba(81,124,211,1);";
-	break;
-case "a halter top dress":
-	s.scrotumSkinStyle = "fill:rgba(94,51,124,1);";
-	s.bellySkinStyle = "fill:rgba(94,51,124,1);";
-	break;
-case "a hijab and abaya":
-	s.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
-	s.bellySkinStyle = "fill:rgba(51,51,51,1);";
-	break;
-case "a niqab and abaya":
-	s.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
-	s.bellySkinStyle = "fill:rgba(51,51,51,1);";
-	break;
-case "a burqa":
-	s.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
-	s.bellySkinStyle = "fill:rgba(51,51,51,1);";
-	break;
-case "a hijab and blouse":
-	s.scrotumSkinStyle = "fill:rgba(85,0,34,1);";
-	s.bellySkinStyle = "fill:rgba(85,0,34,1);";
-	break;
-case "a burkini":
-	s.scrotumSkinStyle = "fill:rgba(0,97,158,1);";
-	s.bellySkinStyle = "fill:rgba(0,97,158,1);";
-	break;
-case "a klan robe":
-	s.scrotumSkinStyle = "fill:rgba(236,236,236,1);";
-	s.bellySkinStyle = "fill:rgba(236,236,236,1);";
-	break;
-case "a nice maid outfit":
-	s.scrotumSkinStyle = "fill:rgba(225,225,225,1);";
-	s.bellySkinStyle = "fill:rgba(225,225,225,1);";
-	break;
-case "a slutty maid outfit":
-	s.scrotumSkinStyle = "fill:rgba(225,225,225,1);";
-	s.bellySkinStyle = "fill:rgba(225,225,225,1);";
-	break;
-case "a leotard":
-	s.scrotumSkinStyle = "fill:rgba(120,15,55,1);";
-	s.bellySkinStyle = "fill:rgba(120,15,55,1);";
-	break;
-case "a military uniform":
-	s.scrotumSkinStyle = "fill:rgba(34,42,18,1);";
-	s.bellySkinStyle = "fill:rgba(34,42,18,1);";
-	break;
-case "a mini dress":
-	s.scrotumSkinStyle = "fill:rgba(26,26,26,1);";
-	s.bellySkinStyle = "fill:rgba(26,26,26,1);";
-	break;
-case "a nice nurse outfit":
-	s.scrotumSkinStyle = "fill:rgba(0,128,128,1);";
-	s.bellySkinStyle = "fill:rgba(0,128,128,1);";
-	break;
-case "a slutty nurse outfit":
-	s.scrotumSkinStyle = "fill:rgba(255,255,255,1);";
-	break;
-case "a scalemail bikini":
-	s.scrotumSkinStyle = "fill:rgba(133,146,158,1);";
-	break;
-case "striped panties":
-	s.scrotumSkinStyle = "fill:rgba(255,255,255,1);";
-	break;
-case "a schoolgirl outfit":
-	s.scrotumSkinStyle = "fill:rgba(28,31,36,1);";
-	s.bellySkinStyle = "fill:rgba(28,31,36,1);";
-	break;
-case "a ball gown":
-	s.scrotumSkinStyle = "fill:rgba(128,0,0,1);";
-	s.bellySkinStyle = "fill:rgba(128,0,0,1);";
-	break;
-case "battledress":
-	s.scrotumSkinStyle = "fill:rgba(34,42,18,1);";
-	s.bellySkinStyle = "fill:rgba(34,42,18,1);";
-	break;
-case "a slave gown":
-	s.scrotumSkinStyle = "fill:rgba(200,200,200,1);";
-	s.bellySkinStyle = "fill:rgba(200,200,200,1);";
-	break;
-case "a slutty outfit":
-	s.scrotumSkinStyle = "fill:rgba(63,126,181,1);";
-	break;
-case "spats and a tank top":
-	s.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
-	break;
-case "a succubus outfit":
-	s.scrotumSkinStyle = "fill:rgba(128,0,0,1);";
-	s.bellySkinStyle = "fill:rgba(128,0,0,1);";
-	break;
-case "nice business attire":
-	s.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
-	s.bellySkinStyle = "fill:rgba(51,51,51,1);";
-	break;
-case "slutty business attire":
-	s.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
-	break;
-case "attractive lingerie for a pregnant woman":
-	s.scrotumSkinStyle = "fill:rgba(153,153,153,1);";
-	break;
-case "a bunny outfit":
-	s.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
-	s.bellySkinStyle = "fill:rgba(51,51,51,1);";
-	break;
-case "conservative clothing":
-	s.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
-	s.bellySkinStyle = "fill:rgba(51,51,51,1);";
-	break;
-case "harem gauze":
-	s.scrotumSkinStyle = "fill:rgba(0,168,131,1);";
-	break;
-case "a huipil":
-	s.scrotumSkinStyle = "fill:rgba(200,200,200,1);";
-	s.bellySkinStyle = "fill:rgba(200,200,200,1);";
-	break;
-case "a kimono":
-	s.scrotumSkinStyle = "fill:rgba(0,91,150,1);";
-	s.bellySkinStyle = "fill:rgba(0,91,150,1);";
-	break;
-case "a maternity dress":
-	s.scrotumSkinStyle = "fill:rgba(48,54,72,1);";
-	s.bellySkinStyle = "fill:rgba(48,54,72,1);";
-	break;
-case "a slutty qipao":
-	s.scrotumSkinStyle = "fill:rgba(204,177,68,1);";
-	s.bellySkinStyle = "fill:rgba(204,177,68,1);";
-	break;
-case "stretch pants and a crop-top":
-	s.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
-	break;
-case "a toga":
-	s.scrotumSkinStyle = "fill:rgba(200,200,200,1);";
-	s.bellySkinStyle = "fill:rgba(200,200,200,1);";
-	break;
-case "a penitent nuns habit":
-	s.scrotumSkinStyle = "fill:rgba(114,93,73,1);";
-	break;
-case "a chattel habit":
-	s.scrotumSkinStyle = "fill:rgba(200,200,200,1);";
-	break;
-case "a monokini":
-	s.scrotumSkinStyle = "fill:rgba(33,47,61,1);";
-	break;
-case "a schutzstaffel uniform":
-	s.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
-	s.bellySkinStyle = "fill:rgba(51,51,51,1);";
-	break;
-case "a slutty schutzstaffel uniform":
-	s.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
-	s.bellySkinStyle = "fill:rgba(51,51,51,1);";
-	break;
-case "a red army uniform":
-	s.scrotumSkinStyle = "fill:rgba(114,93,73,1);";
-	s.bellySkinStyle = "fill:rgba(114,93,73,1);";
-	break;
-case "an apron":
-	s.scrotumSkinStyle = "fill:rgba(255,105,180,1);";
-	s.bellySkinStyle = "fill:rgba(255,105,180,1);";
-	break;
-case "a fallen nuns habit":
-	s.bellySkinStyle = "fill:rgba(51,51,51,1);";
-	break;
-case "a dirndl":
-	s.scrotumSkinStyle = "fill:rgba(128,0,51,1);";
-	s.bellySkinStyle = "fill:rgba(128,0,51,1);";
-	break;
-case "lederhosen":
-	s.scrotumSkinStyle = "fill:rgba(93,83,108,1);";
-	break;
-case "a long qipao":
-	s.scrotumSkinStyle = "fill:rgba(0,128,0,1);";
-	break;
-case "a mounty outfit":
-	s.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
-	s.bellySkinStyle = "fill:rgba(128,0,0,1);";
-	break;
-case "battlearmor":
-	s.scrotumSkinStyle = "fill:rgba(200,200,200,1);";
-	break;
-case "striped underwear":
-	s.scrotumSkinStyle = "fill:rgba(255,255,255,1);";
-	break;
-case "panties":
-	s.scrotumSkinStyle = "fill:rgba(255,170,238,1);";
-	break;
-case "a thong":
-	s.scrotumSkinStyle = "fill:rgba(34,28,36,1);";
-	break;
-case "a button-up shirt and panties":
-	s.scrotumSkinStyle = "fill:rgba(255,255,255,1);";
-	s.bellySkinStyle = "fill:rgba(255,255,255,1);";
-	break;
-case "a slutty klan robe":
-	s.scrotumSkinStyle = "fill:rgba(128,0,0,1);";
-	break;
-case "cutoffs":
-	s.scrotumSkinStyle = "fill:rgba(81,124,211,1);";
-	break;
-case "sport shorts":
-	s.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
-	break;
-case "sport shorts":
-	s.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
-	break;
-case "sport shorts and a sports bra":
-	s.scrotumSkinStyle = "fill:rgba(51,51,51,1);";
-	break;
-case "a t-shirt and thong":
-	s.scrotumSkinStyle = "fill:rgba(200,55,171,1);";
-	s.bellySkinStyle = "fill:rgba(200,55,171,1);";
-	break;
-case "a t-shirt and panties":
-	s.scrotumSkinStyle = "fill:rgba(255,255,255,1);";
-	s.bellySkinStyle = "fill:rgba(255,255,255,1);";
-	break;
-case "jeans":
-	s.scrotumSkinStyle = "fill:rgba(81,124,211,1);";
-	break;
-case "leather pants":
-	s.scrotumSkinStyle = "fill:rgba(26,26,26,1);";
-	break;
-case "leather pants and pasties":
-	s.scrotumSkinStyle = "fill:rgba(85,0,0,1);";
-	break;
-case "leather pants and a tube top":
-	s.scrotumSkinStyle = "fill:rgba(26,26,26,1);";
-	break;
-case "a t-shirt and jeans":
-	s.scrotumSkinStyle = "fill:rgba(81,124,211,1);";
-	s.bellySkinStyle = "fill:rgba(255,255,255,1);";
-	break;
-case "a tank-top and panties":
-	s.scrotumSkinStyle = "fill:rgba(26,26,26,1);";
-	s.bellySkinStyle = "fill:rgba(26,26,26,1);";
-	break;
-case "a tank-top":
-	s.bellySkinStyle = "fill:rgba(255,255,255,1);";
-	break;
-case "a tube top and thong":
-	s.scrotumSkinStyle = "fill:rgba(34,28,36,1);";
-	break;
-case "boyshorts":
-	s.scrotumSkinStyle = "fill:rgba(26,26,26,1);";
-	break;
-case "an oversized t-shirt and boyshorts":
-	s.bellySkinStyle = "fill:rgba(255,255,255,1);";
-	break;
-case "a sweater and panties":
-	s.scrotumSkinStyle = "fill:rgba(26,26,26,1);";
-	s.bellySkinStyle = "fill:rgba(212,170,0,1);";
-	break;
-case "a sweater and cutoffs":
-	s.scrotumSkinStyle = "fill:rgba(77,77,77,1);";
-	s.bellySkinStyle = "fill:rgba(85,0,0,1);";
-	break;
-case "a police uniform":
-	s.scrotumSkinStyle = "fill:rgba(11,23,40,1);";
-	s.bellySkinStyle = "fill:rgba(11,23,40,1);";
-	break;
-case "a one-piece swimsuit":
-	s.scrotumSkinStyle = "fill:rgba(22,45,80,1);";
-	s.bellySkinStyle = "fill:rgba(22,45,80,1);";
-	break;
-case "a skimpy loincloth":
-	s.scrotumSkinStyle = "fill:rgba(145,124,111,1);";
-	break;
-case "kitty lingerie":
-	s.scrotumSkinStyle = "fill:rgba(255,170,238,1);";
-	break;
-case "an oversized t-shirt":
-	s.bellySkinStyle = "fill:rgba(255,255,255,1);";
-	break;
-case "a hanbok":
-	s.bellySkinStyle = "fill:rgba(255,109,182,1);";
-	break;
-case "a gothic lolita dress":
-	s.bellySkinStyle = "fill:rgba(26,26,26,1);";
-	break;
-case "a sweater":
-	s.bellySkinStyle = "fill:rgba(85,0,0,1);";
-	break;
-case "sport shorts and a t-shirt":
-	s.scrotumSkinStyle = "fill:rgba(200,55,171,1);";
-	s.bellySkinStyle = "fill:rgba(200,55,171,1);";
-	break;
-case "a biyelgee costume":
-	s.scrotumSkinStyle = "fill:rgba(33,68,120,1);";
-}
-
-return s;
-}
diff --git a/src/art/vector/Set_Colour_Skin.tw b/src/art/vector/Set_Colour_Skin.tw
deleted file mode 100644
index 2e2fba0e1480ab2f77e6c59d5d7436135affb79e..0000000000000000000000000000000000000000
--- a/src/art/vector/Set_Colour_Skin.tw
+++ /dev/null
@@ -1,15 +0,0 @@
-:: Art_Vector_Set_Colour_Skin_
-
-/* BEWARE: _outfitBaseColour is set by Art_Vector_Set_Colour_Outfit_ */
-
-<<set _s = Art_Vector_Set_Colour_Skin(_artSlave, _outfitBaseColour) >>
-<<set _areolaStyle = _s.areolaStyle>>
-<<set _bellySkinStyle = _s.bellySkinStyle>>
-<<set _boobSkinStyle = _s.boobSkinStyle>>
-<<set _headSkinStyle = _s.headSkinStyle>>
-<<set _labiaStyle = _s.labiaStyle>>
-<<set _penisSkinStyle = _s.penisSkinStyle>>
-<<set _scrotumSkinStyle = _s.scrotumSkinStyle>>
-<<set _skinColour = _s.skinColour>>
-<<set _torsoSkinStyle = _s.torsoSkinStyle>>
-<<set _bellybuttonStyle = _s.bellybuttonStyle>>
diff --git a/src/facilities/farmyard/food/pFoodCrisis.tw b/src/facilities/farmyard/food/pFoodCrisis.tw
index 9c3817d955547d35e38536ba9ba2eb731fa8b94d..83caafcd75faf2aed7a6f76e8ab363c721c62166 100644
--- a/src/facilities/farmyard/food/pFoodCrisis.tw
+++ b/src/facilities/farmyard/food/pFoodCrisis.tw
@@ -35,7 +35,7 @@
 	<br><<link "Give them enough to survive on">>
 		<<replace "#result">>
 		You have your own problems to deal with, but that doesn't mean you don't look out for your own. You have a number of rationing stations set up throughout $arcologies[0].name and announce that each citizen is entitled to two full meals a day, just enough for your citizens not to starve. Your citizens are @@.green;happy@@ to hear that their leader is looking out for them.
-        <<run repX(2500, "event")>>
+		<<run repX(2500, "event")>>
 		<<set cashX(forceNeg(_price), "farmyard")>>
 		<<set $rations = 1>>
 		<</replace>> <<if ($PC.trading >= 50) || ($PC.career == "capitalist")>>//This will cost <<print cashFormat(_price)>> and some upkeep, @@.springgreen;reduced by your knowledge of trading@@//<<else>>//This will cost <<print cashFormat(_price)>> and incur significant upkeep costs//<</if>>
@@ -43,7 +43,7 @@
 	<br><<link "They can figure their problem out on their own">>
 		<<replace "#result">>
 		You have your own problems to deal with, and you simply can't afford to drop everything and solve theirs at the moment. That you can't take care of your arcology's citizen @@.red;reflects poorly on you.@@
-        <<run repX(-500, "event")>>
+		<<run repX(-500, "event")>>
 		<</replace>>
 	<</link>>
 	</span>
@@ -66,7 +66,7 @@
 	<br><<link "Provide them with enough sustenance to survive on too">>
 		<<replace "#result">>
 		As much as you'd like to provide them with all of the food in the world, it simply is not feasible in your current situation. Therefore, you announce to the leaders that you will provide them only enough rations to live off of. The leaders understand, and are @@.green;pleased@@ to hear that you would provide for them at all.
-        <<run repX(2500, "event")>>
+		<<run repX(2500, "event")>>
 		<<set cashX(forceNeg(_price), "farmyard")>>
 		<<set $rations = 3>>
 		<</replace>>
@@ -74,7 +74,7 @@
 	<br><<link "Change your mind about giving out any rations at all">>
 		<<replace "#result">>
 		Having given the people rations at all was a mistake, you think to yourself. You have a great number of your own problems to deal with, and providing rations to everyone that can't afford food is putting an unnecessary strain on your own situation. With this is mind, you tell the leaders that you simply can't help them at this time, and have decided that you can't help anyone with food at all. The citizens are understandably @@.red;angry@@ that you would go back on your word.
-        <<run repX(-1000, "event")>>
+		<<run repX(-1000, "event")>>
 		<<set $rations = 0>>
 		<</replace>>
 	<</link>>
@@ -101,7 +101,7 @@
 	<br><<link "Politely decline their offer, but continue giving them rations">>
 		<<replace "#result">>
 		Things have been going fairly well for you, but not //that// well — setting up an entirely new place to buy, sell, and store food would no doubt be an expensive undertaking. You tell the citizens that while you can't spare the resources to create a new market at the moment, you will honor your past agreement and continue giving them free rations. The people initially seem a bit disappointed that you don't seem to want to expand $arcologies[0].name, but are ultimately @@.green;glad@@ to hear that you'll continue taking care of them.
-        <<run repX(2500, "event")>>
+		<<run repX(2500, "event")>>
 		<<set cashX(forceNeg(_price), "farmyard")>>
 		<<set $rations = 5>>
 		<</replace>>
@@ -109,7 +109,7 @@
 	<br><<link "Turn down their offer and end rationing completely">>
 		<<replace "#result">>
 		While a new place to buy, sell, and store food in $arcologies[0].name would most likely come in quite handy in the future, you ultimately decide that you simply cannot spare the resources required. In fact, giving rations at all was a costly venture, and after not having seen any sort of return-on-investment, you decide that you are unable to continue giving out rations anymore. Your citizens are @@.red;angry@@ at the fact that you seem not to care about them at all, but that's their problem.
-        <<run repX(-1000, "event")>>
+		<<run repX(-1000, "event")>>
 		<<unset $rations>>
 		<</replace>>
 	<</link>>
diff --git a/src/interaction/cyberConfig.tw b/src/interaction/cyberConfig.tw
index 4b1b172374d4c49afa4b1b16d992c97ea30c7bb8..afa7d742e44f7a13d1ba75e169397cd3da8255c4 100644
--- a/src/interaction/cyberConfig.tw
+++ b/src/interaction/cyberConfig.tw
@@ -142,10 +142,10 @@
 
 	<<if $activeSlave.PTail == 1>><br><br>
 		$He has a neural tail interface installed. You can assign and adjust $his tail here.
-	    <<if $activeSlave.tail != "none">><br>&nbsp;
+		<<if $activeSlave.tail != "none">><br>&nbsp;
 			$He currently has a tail attached, if you wish to change it you will first need to detach it.<br>
 			[[Detach|cyberConfig][$temp = 7,$nextButton = "Continue", $nextLink = "cyberConfig"]]
-	    <<else>><br>&nbsp;
+		<<else>><br>&nbsp;
 			<<if $stockpile.modPTail > 0>>Attach a modular tail designed to look like a:<br>
 			[[Cat's Tail|cyberConfig][$temp = 8, $activeSlave.tail = "mod", $activeSlave.tailShape = "neko", $activeSlave.tailColor = $activeSlave.hColor, $stockpile.modPTail -= 1]]
 			| [[Dog's Tail|cyberConfig][$temp = 8, $activeSlave.tail = "mod", $activeSlave.tailShape = "inu", $activeSlave.tailColor = $activeSlave.hColor, $stockpile.modPTail -= 1]]
@@ -155,7 +155,7 @@
 			| [[Cow's Tail|cyberConfig][$temp = 8, $activeSlave.tail = "mod", $activeSlave.tailColor = "ushi", $activeSlave.tailColor = $activeSlave.hColor, $stockpile.modPTail -= 1]]<br><</if>>
 			<<if $stockpile.warPTail > 0>>[[Attach Combat Tail|cyberConfig][$temp = 8, $activeSlave.tail = "combat", $activeSlave.tailColor = "jet black", $stockpile.warPTail -= 1]]<</if>>
 			<<if $stockpile.sexPTail > 0>>| [[Attach Pleasure Tail|cyberConfig][$temp = 8, $activeSlave.tail = "sex", $activeSlave.tailColor = "pink", $stockpile.sexPTail -= 1]]<</if>>
-        <</if>>
+		<</if>>
 	<<else>>
 		$He does not have a neural tail interface installed so you can not attach a tail.
 	<</if>>
diff --git a/src/js/DefaultRules.js b/src/js/DefaultRules.js
index 3213b126b16ce7cdfc0104c227ba6086337892ff..0ad933d11573b586f80008f639eb3e6bd51fd79f 100644
--- a/src/js/DefaultRules.js
+++ b/src/js/DefaultRules.js
@@ -2231,8 +2231,13 @@ window.DefaultRules = (function() {
 		}
 
 		if (rule.skinColor !== undefined && rule.skinColor !== "no default setting" && rule.skinColor !== slave.skin) {
-			slave.skin = rule.skinColor;
-			r += `<br>${slave.slaveName}'s skin color has been set to ${rule.skinColor}.`;
+			if (rule.skinColor === "natural") {
+				slave.skin = slave.origSkin;
+				r += `<br>${slave.slaveName}'s skin color has been returned to ${slave.origSkin}.`;
+			} else {
+				slave.skin = rule.skinColor;
+				r += `<br>${slave.slaveName}'s skin color has been set to ${rule.skinColor}.`;
+			}
 		}
 
 
diff --git a/src/js/PenthouseNaming.js b/src/js/PenthouseNaming.js
index bd4a1f0d02694a431adf00a01d0e50f997389647..398e0f58178544e9f062686672c76e67fe155647 100644
--- a/src/js/PenthouseNaming.js
+++ b/src/js/PenthouseNaming.js
@@ -1,77 +1,105 @@
+/**
+ * @return {string}
+ */
 window.MasterSuiteUIName = function () {
 	const V = State.variables;
-	var name = "";
+	let name = "";
 	if (V.masterSuiteNameCaps === "The Master Suite")
 		name = "Master Suite";
 	else
 		name = V.masterSuiteNameCaps;
 	return `<<link "${name}""Master Suite">><</link>> `;
 };
+/**
+ * @return {string}
+ */
 window.HeadGirlSuiteUIName = function () {
 	const V = State.variables;
-	var name = "";
+	let name = "";
 	if (V.HGSuiteNameCaps === "The Head Girl Suite")
 		name = "Head Girl Suite";
 	else
 		name = V.HGSuiteNameCaps;
 	return `<<link "${name}""Head Girl Suite">><</link>> `;
 };
+/**
+ * @return {string}
+ */
 window.ServantQuartersUIName = function () {
 	const V = State.variables;
-	var name = "";
+	let name = "";
 	if (V.servantsQuartersNameCaps === "The Servants' Quarters")
 		name = "Servants' Quarters";
 	else
 		name = V.servantsQuartersNameCaps;
 	return `<<link "${name}""Servants' Quarters">><</link>> `;
 };
+/**
+ * @return {string}
+ */
 window.SpaUIName = function() {
 	const V = State.variables;
-	var name = "";
+	let name = "";
 	if (V.spaNameCaps === "The Spa")
-		name = "Spa"
+		name = "Spa";
 	else
 		name = V.spaNameCaps;
-	return `<<link "${name}""Spa">><</link>> `}
+	return `<<link "${name}""Spa">><</link>> `;
+};
+/**
+ * @return {string}
+ */
 window.NurseryUIName = function () {
 	const V = State.variables;
-	var name = "";
+	let name = "";
 	if (V.nurseryNameCaps === "The Nursery")
 		name = "Nursery";
 	else
 		name = V.nurseryNameCaps;
 	return `<<link "${name}""Nursery">><</link>> `;
 };
+/**
+ * @return {string}
+ */
 window.ClinicUIName = function () {
 	const V = State.variables;
-	var name = "";
+	let name = "";
 	if (V.clinicNameCaps === "The Clinic")
 		name = "Clinic";
 	else
 		name = V.clinicNameCaps;
 	return `<<link "${name}""Clinic">><</link>> `;
 };
+/**
+ * @return {string}
+ */
 window.SchoolRoomUIName = function () {
 	const V = State.variables;
-	var name = "";
+	let name = "";
 	if (V.schoolroomNameCaps === "The Schoolroom")
 		name = "Schoolroom";
 	else
 		name = V.schoolroomNameCaps;
 	return `<<link "${name}""Schoolroom">><</link>> `;
 };
+/**
+ * @return {string}
+ */
 window.CellblockUIName = function () {
 	const V = State.variables;
-	var name = "";
+	let name = "";
 	if (V.cellblockNameCaps === "The Cellblock")
 		name = "Cellblock";
 	else
 		name = V.cellblockNameCaps;
 	return `<<link "${name}""Cellblock">><</link>> `;
 };
+/**
+ * @return {string}
+ */
 window.IncubatorUIName = function () {
 	const V = State.variables;
-	var name = "";
+	let name = "";
 	if (V.incubatorNameCaps === "The Incubator")
 		name = "Incubator";
 	else
diff --git a/src/js/extendedFamilyModeJS.js b/src/js/extendedFamilyModeJS.js
index e3cce5ea9c61362a12e117d3831da200faa358fa..eab6e9b9c524535197b8280c3867120966e58c91 100644
--- a/src/js/extendedFamilyModeJS.js
+++ b/src/js/extendedFamilyModeJS.js
@@ -30,9 +30,9 @@ window.sameMom = function(slave1, slave2){
 
 window.isAunt = /** @param {App.Entity.SlaveState} niece, @param {App.Entity.SlaveState} aunt */ function(niece, aunt) {
 
-    if (!State.variables.showDistantRelatives) {
-        return false;
-    }
+	if (!State.variables.showDistantRelatives) {
+		return false;
+	}
 
 	if (!niece || !aunt || (niece.ID === aunt.ID)) {
 		return false;
@@ -136,9 +136,9 @@ window.areSisters = function(c1, c2) {
 */
 window.areCousins = /** @param {App.Entity.SlaveState} slave1, @param {App.Entity.SlaveState} slave2 */ function(slave1, slave2) {
 
-    if (!State.variables.showDistantRelatives) {
-        return false;
-    }
+	if (!State.variables.showDistantRelatives) {
+		return false;
+	}
 
 	if (!slave1 || !slave2 || (slave1.ID === slave2.ID) || areSisters(slave1, slave2) ) {
 		return false;
diff --git a/src/js/heroCreator.js b/src/js/heroCreator.js
index 95f8d0ca54d067122cbbc1819603701b11f4fcc1..faa919b75ca7ed098f3cf6ed21d43c1d73f821ad 100644
--- a/src/js/heroCreator.js
+++ b/src/js/heroCreator.js
@@ -1,6 +1,11 @@
+/**
+ * @param {App.Entity.SlaveState} heroSlave
+ * @param {App.Entity.SlaveState} baseHeroSlave
+ * @return {App.Entity.SlaveState}
+ */
 window.getHeroSlave = function (heroSlave, baseHeroSlave) {
-	var newSlave = clone(baseHeroSlave);
-	for (var attrname in heroSlave) {
+	const newSlave = clone(baseHeroSlave);
+	for (let attrname in heroSlave) {
 		newSlave[attrname] = heroSlave[attrname];
 	}
 	generatePuberty(newSlave);
diff --git a/src/js/rulesAssistantOptions.js b/src/js/rulesAssistantOptions.js
index e93119c962c5bcab798e6d82efb42772f944e17f..9cc82b0159556831bd83224bcc09f3d2d4a35c5f 100644
--- a/src/js/rulesAssistantOptions.js
+++ b/src/js/rulesAssistantOptions.js
@@ -3513,6 +3513,7 @@ window.rulesAssistantOptions = (function() {
 		constructor() {
 			const items = [
 				["no default setting"],
+				["natural"],
 				["pale"],
 				["lightened"],
 				["tanned"],
diff --git a/src/js/slaveCostJS.js b/src/js/slaveCostJS.js
index 6a7c8581b9bef42941acc9c75a4d96ef730cf8e5..87c0ba6d7ef69b451cc706876d8286267b0c3eee 100644
--- a/src/js/slaveCostJS.js
+++ b/src/js/slaveCostJS.js
@@ -1054,6 +1054,9 @@ window.Beauty = (function() {
 			if (slave.hips === 3) {
 				beauty += 10;
 			}
+			if (slave.horns !== "none" || slave.tail !== "none" || (slave.earShape !== "normal" && slave.earShape !== "damaged") || slave.earT !== "none") {
+				beauty += 10;
+			}
 		}
 		if ((arcology.FSGenderRadicalist > 20 && arcology.FSGenderRadicalistLawFuta !== 3) || arcology.FSSlimnessEnthusiast > 20) {
 			if (slave.hips < 0) {
@@ -1077,6 +1080,18 @@ window.Beauty = (function() {
 				beauty += 2*V.nicaeaPower;
 			}
 		}
+		if (arcology.FSChattelReligionist > 40 && arcology.FSBodyPurist === "unset") {
+			let tats = ["shouldersTat", "lipsTat", "boobsTat", "armsTat", "backTat", "stampTat", "buttTat", "vaginaTat", "dickTat", "anusTat", "legsTat"];
+			let sacrilegeCount = 0;
+			for (var index in tats) {
+				if (slave[index] === "sacrilege") {
+					sacrilegeCount++;
+				}
+			}
+			if (sacrilegeCount > 0) {
+				beauty += (1.5 * sacrilegeCount);
+			}
+		}
 	}
 
 	/** @param {App.Entity.SlaveState} slave */
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index 7874f75d50099bf49cd4fe7f602b8220c0493aa9..1849665649998113409471c968c25a5354a43a17 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -2484,6 +2484,9 @@ Setting missing global variables:
 	<<set $PCSlutContacts = 1>>
 <</if>>
 
+<<if ndef $seeVectorArtHighlights>>
+	<<set $seeVectorArtHighlights = 1>>
+<</if>>
 <<if ndef $seeFaces>>
 	<<set $seeFaces = 1>>
 <</if>>
diff --git a/src/uncategorized/brothel.tw b/src/uncategorized/brothel.tw
index 52d7ed3e93413a8f7ca53a3609b03d3ac3b9e751..04ddba28941a644e3383964207fe74baeaaca2cd 100644
--- a/src/uncategorized/brothel.tw
+++ b/src/uncategorized/brothel.tw
@@ -88,12 +88,14 @@ $brothelNameCaps
 	<<else>>
 		some are augmented by implants.
 	<</if>>
-	<<if $brothelAdsPreg == 1>>
-		Most of slaves have firm, rounded bellies.
-	<<elseif $brothelAdsPreg == -1>>
-		Most of the slaves have firm, flat bellies.
-	<<else>>
-		Some of the slaves are pregnant.
+	<<if $seePreg == 1>>
+		<<if $brothelAdsPreg == 1>>
+			Most of slaves have firm, rounded bellies.
+		<<elseif $brothelAdsPreg == -1>>
+			Most of the slaves have firm, flat bellies.
+		<<else>>
+			Some of the slaves are pregnant.
+		<</if>>
 	<</if>>
 	<<if $brothelAdsModded == 1>>
 		Everything is heavily pierced and tattooed.
diff --git a/src/uncategorized/brothelAdvertisement.tw b/src/uncategorized/brothelAdvertisement.tw
index db1f0fde3657d724dfa746745537c312f32b74b2..50a46ebc4d0cfc0ad2b29058284ae7ea1a184914 100644
--- a/src/uncategorized/brothelAdvertisement.tw
+++ b/src/uncategorized/brothelAdvertisement.tw
@@ -79,12 +79,14 @@
 	<<else>>
 		some are augmented by implants.
 	<</if>>
-	<<if $brothelAdsPreg == 1>>
-		Most of slaves have firm, rounded bellies.
-	<<elseif $brothelAdsPreg == -1>>
-		Most of the slaves have firm, flat bellies.
-	<<else>>
-		Some of the slaves are pregnant.
+	<<if $seePreg == 1>>
+		<<if $brothelAdsPreg == 1>>
+			Most of slaves have firm, rounded bellies.
+		<<elseif $brothelAdsPreg == -1>>
+			Most of the slaves have firm, flat bellies.
+		<<else>>
+			Some of the slaves are pregnant.
+		<</if>>
 	<</if>>
 	<<if $brothelAdsModded == 1>>
 		Everything is heavily pierced and tattooed.
diff --git a/src/uncategorized/club.tw b/src/uncategorized/club.tw
index 3f933486c697f58939d8734e5c8b06fecf70722e..800d64244bcd6806feb89387d8c310f2fa16754b 100644
--- a/src/uncategorized/club.tw
+++ b/src/uncategorized/club.tw
@@ -88,12 +88,14 @@ $clubNameCaps
 	<<else>>
 		some are augmented by implants.
 	<</if>>
-	<<if $clubAdsPreg == 1>>
-		Most of strippers have firm, rounded bellies.
-	<<elseif $clubAdsPreg == -1>>
-		Most of the strippers have firm, flat bellies.
-	<<else>>
-		Some of the strippers are pregnant.
+	<<if $seePreg == 1>>
+		<<if $clubAdsPreg == 1>>
+			Most of strippers have firm, rounded bellies.
+		<<elseif $clubAdsPreg == -1>>
+			Most of the strippers have firm, flat bellies.
+		<<else>>
+			Some of the strippers are pregnant.
+		<</if>>
 	<</if>>
 	<<if $clubAdsModded == 1>>
 		Everything is heavily pierced and tattooed.
diff --git a/src/uncategorized/clubAdvertisement.tw b/src/uncategorized/clubAdvertisement.tw
index 208f3f115dd596d78555b46a3aebc8ce94559668..9717169b31dc75ef528ad4346aae492d402d2feb 100644
--- a/src/uncategorized/clubAdvertisement.tw
+++ b/src/uncategorized/clubAdvertisement.tw
@@ -79,12 +79,14 @@
 	<<else>>
 		some are augmented by implants.
 	<</if>>
-	<<if $clubAdsPreg == 1>>
-		Most of strippers have firm, rounded bellies.
-	<<elseif $clubAdsPreg == -1>>
-		Most of the strippers have firm, flat bellies.
-	<<else>>
-		Some of the strippers are pregnant.
+	<<if $seePreg == 1>>
+		<<if $clubAdsPreg == 1>>
+			Most of strippers have firm, rounded bellies.
+		<<elseif $clubAdsPreg == -1>>
+			Most of the strippers have firm, flat bellies.
+		<<else>>
+			Some of the strippers are pregnant.
+		<</if>>
 	<</if>>
 	<<if $clubAdsModded == 1>>
 		Everything is heavily pierced and tattooed.
diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw
index fe9ff534247d9763307fe9c819668bd861cd851f..298988b81b1be1f57680c540c183ddc75641b93a 100644
--- a/src/uncategorized/longSlaveDescription.tw
+++ b/src/uncategorized/longSlaveDescription.tw
@@ -1171,9 +1171,9 @@ is
 				$He is in an @@.lightgreen;incestuous relationship with $his daughter, <<= SlaveFullName(_lover)>>.@@
 			<<elseif def $showDistantRelatives && $showDistantRelatives == 1>>
     			<<if isAunt($activeSlave, _lover)>>
-    				$He is in an @@.lightgreen;incestuous relationship with $his aunt, <<= SlaveFullName(_lover)>>.@@	
+    				$He is in an @@.lightgreen;incestuous relationship with $his aunt, <<= SlaveFullName(_lover)>>.@@
     			<<elseif isAunt(_lover, $activeSlave)>>
-    				$He is in an @@.lightgreen;incestuous relationship with $his niece, <<= SlaveFullName(_lover)>>.@@	
+    				$He is in an @@.lightgreen;incestuous relationship with $his niece, <<= SlaveFullName(_lover)>>.@@
     			<<elseif areCousins($activeSlave, _lover)>>
     				$He is in an @@.lightgreen;incestuous relationship with $his cousin, <<= SlaveFullName(_lover)>>.@
     			<</if>>
@@ -1206,18 +1206,18 @@ is
 		<<elseif def $showDistantRelatives && $showDistantRelatives == 1>>
     		<<if isAunt($activeSlave, $PC)>>
     			<<if $PC.title == 1>>
-    				$He is in an @@.lightgreen;incestuous relationship with $his uncle, you.@@	
+    				$He is in an @@.lightgreen;incestuous relationship with $his uncle, you.@@
     			<<elseif $PC.title == 0>>
-    				$He is in an @@.lightgreen;incestuous relationship with $his aunt, you.@@	
+    				$He is in an @@.lightgreen;incestuous relationship with $his aunt, you.@@
     			<</if>>
     		<<elseif isAunt($PC, $activeSlave) && $PC.title == 0>>
     			<<if $PC.title == 1>>
-    				$He is in an @@.lightgreen;incestuous relationship with $his nephew, you.@@	
+    				$He is in an @@.lightgreen;incestuous relationship with $his nephew, you.@@
     			<<elseif $PC.title == 0>>
-    				$He is in an @@.lightgreen;incestuous relationship with $his niece, you.@@	
+    				$He is in an @@.lightgreen;incestuous relationship with $his niece, you.@@
     			<</if>>
     		<<elseif areCousins($PC, $activeSlave)>>
-    			$He is in an @@.lightgreen;incestuous relationship with $his cousin, you.@@	
+    			$He is in an @@.lightgreen;incestuous relationship with $his cousin, you.@@
     		<</if>>
 		<<elseif areSisters($PC, $activeSlave) == 1>>
 			<<if $PC.title == 1>>
diff --git a/src/uncategorized/options.tw b/src/uncategorized/options.tw
index b1fd975e3ede73851212a1fe3d28dc57407ba332..97d7c37360dfb7c454aee983719e9f93a7b28d11 100644
--- a/src/uncategorized/options.tw
+++ b/src/uncategorized/options.tw
@@ -348,7 +348,7 @@ Assignment performance vignettes on the end week report are
 <</if>>
 
 <br>
-	
+
 <<if $familyTesting == 1>>
 	<<if def $showDistantRelatives && $showDistantRelatives == 1>>
 		Distant relatives such as aunts, nieces and cousins ''are'' shown
diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw
index fcf841e9648dbb12211401b92e20539c31cb5be0..6efe1df4aac5f5e95958ab3152e930f0929e9474 100644
--- a/src/uncategorized/remoteSurgery.tw
+++ b/src/uncategorized/remoteSurgery.tw
@@ -1335,7 +1335,7 @@ $He has
 		<</if>>
 		<<if $activeSlave.geneticQuirks.wellHung == 2>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;
-			[[Corret genetic predisposition for large geneitals|Surgery Degradation][$activeSlave.geneticQuirks.wellHung = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
+			[[Corret genetic predisposition for large genitals|Surgery Degradation][$activeSlave.geneticQuirks.wellHung = 0,cashX(forceNeg($surgeryCost*4), "slaveSurgery", $activeSlave), $activeSlave.health -= 40, $activeSlave.chem += 100,$surgeryType = "gene treatment"]]
 		<</if>>
 	<</if>>
 	<br><br>
diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw
index b67747d90bf68d32ddb9943310aebd1c4253fb5c..838867872a4122157ff75697d71c311939549c78 100644
--- a/src/uncategorized/saLongTermEffects.tw
+++ b/src/uncategorized/saLongTermEffects.tw
@@ -4728,6 +4728,14 @@
 			Society @@.green;approves@@ of $his unmarked, unblemished skin, advancing the fashion for unspoiled slaves.
 			<<= FSChangePorn("BodyPurist", 1)>>
 		<</if>>
+		<<if ($slaves[$i].earShape != "normal" && $slaves[$i].earShape != "damaged") || $slaves[$i].earT != "none">>
+			Society finds $his inhuman ears @@.red;appalling.@@
+			<<= FSChangePorn("BodyPurist", -1)>>
+		<</if>>
+		<<if $slaves[$i].horns != "none" || $slaves[$i].tail != "none">>
+			Society @@.red;is disgusted@@ by $his inhuman attributes.
+			<<= FSChangePorn("BodyPurist", -1)>>
+		<</if>>
 		<<if $slaves[$i].faceImplant <= 5 && $slaves[$i].race == $slaves[$i].origRace>>
 			Society @@.green;approves@@ of $his natural, untouched appearance, advancing the fashion for unaltered slaves.
 			<<= FSChangePorn("BodyPurist", 1)>>
@@ -4747,6 +4755,7 @@
 				<<= FSChangePorn("BodyPurist", 1)>>
 			<</if>>
 		<</if>>
+		
 	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
 		<<set _transformed = 0>>
 		<<if ($slaves[$i].boobsImplant > 0) && ($slaves[$i].buttImplant > 0) && ($slaves[$i].lipsImplant > 0)>>
@@ -4778,7 +4787,7 @@
 			<<= FSChangePorn("TransformationFetishist", 1)>>
 			<<set _transformed = 1>>
 		<</if>>
-		<<if ($slaves[$i].amp < 0)>>
+		<<if ($slaves[$i].amp < 0) || $slaves[$i].earT != "none" || $slaves[$i].horns != "none" || $slaves[$i].tail != "none">>
 			Society @@.green;strongly approves@@ of $his transhuman body.
 			<<= FSChangePorn("TransformationFetishist", 1)>>
 			<<set _transformed = 1>>
@@ -4959,6 +4968,10 @@
 			Society @@.green;strongly approves@@ of $his eagerness to transgress against the old world religious mores $he once held dear.
 			<<= FSChangePorn("ChattelReligionist", 2)>>
 		<</if>>
+		<<if [$slaves[$i].shouldersTat == "sacrilege" && $slaves[$i].lipsTat == "sacrilege" && $slaves[$i].boobsTat == "sacrilege" && $slaves[$i].armsTat == "sacrilege" && $slaves[$i].backTat == "sacrilege" && $slaves[$i].stampTat == "sacrilege" && $slaves[$i].buttTat == "sacrilege" && $slaves[$i].vaginaTat == "sacrilege" && $slaves[$i].dickTat == "sacrilege" && $slaves[$i].anusTat == "sacrilege" && $slaves[$i].legsTat == "sacrilege" && $slaves[$i].fuckdoll == 0>>
+			Society @@.green;enjoys the sight@@ of the religious sacrilege scrawled across $his skin.
+			<<= FSChangePorn("ChattelReligionist", 1)>>
+		<</if>>
 	<</if>>
 
 <</if>> /* closes FSAnnounced */
diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw
index 28d151d58116c4923b275e81988b0e9fe17a78a4..d3de9ad078fd07ff49f36a890c223e221831d1c0 100644
--- a/src/utility/descriptionWidgetsFlesh.tw
+++ b/src/utility/descriptionWidgetsFlesh.tw
@@ -5193,7 +5193,7 @@ $He's got a
 <<widget "eyeDescription">>
 <<if $activeSlave.eyes == -2>>
 	<<if $activeSlave.eyeColor != "empty">>
-		$His eyes are dull and unfocused,
+		$His eyes are dull<<if $saleDescription == 1 && ($PC.medicine >= 50 || $PC.slaving >= 50)>>, unfocused and clearly nonfunctional<<else>> and unfocused<</if>>,
 	<<else>>
 		$His gaze is empty,
 	<</if>>
@@ -16719,7 +16719,7 @@ $He has
 
 		$He appears to be $activeSlave.visualAge years old
 		<<if $activeSlave.visualAge <= 8>>
-			and $he has induced @@.orange;NCS@@ and will alway have a <<= _bodyNCS>> body, no matter how long $he lives.
+			and $he has induced @@.orange;NCS@@ and will always have a <<= _bodyNCS>> body, no matter how long $he lives.
 		<<elseif ($activeSlave.visualAge < 13)>>
 			and $he has induced @@.orange;NCS@@ and will have a <<= _bodyNCS>> body for the rest of $his life.
 		<<elseif ($activeSlave.visualAge < 20)>>
diff --git a/src/utility/extendedFamilyWidgets.tw b/src/utility/extendedFamilyWidgets.tw
index 2f323eb0d85ec5b7484ccf6360a94bf66e2a1ef0..52f496e8732c14147079248eeb7f268bb5562b7c 100644
--- a/src/utility/extendedFamilyWidgets.tw
+++ b/src/utility/extendedFamilyWidgets.tw
@@ -77,6 +77,7 @@
 <</if>>
 
 <<if def $showDistantRelatives && $showDistantRelatives == 1>>
+<<<<<<< HEAD
     /*testtest maternal grandma passage - determines if the current slave has a maternal grandmother*/
     <<set _mi = $slaveIndices[$activeSlave.mother]>>
     <<set _fi = $slaveIndices[$activeSlave.father]>>
@@ -515,6 +516,446 @@
     	<</if>>
     <</if>>
     <<set $children = []>>
+=======
+	/*testtest maternal grandma passage - determines if the current slave has a maternal grandmother*/
+	<<set _mi = $slaveIndices[$activeSlave.mother]>>
+	<<set _fi = $slaveIndices[$activeSlave.father]>>
+	<<if def _mi>>
+		<<set _mmi = $slaveIndices[$slaves[_mi].mother]>>
+		<<set _fmi = $slaveIndices[$slaves[_mi].father]>>
+	<<elseif $PC.ID == $activeSlave.mother>>
+		<<set _mmi = $slaveIndices[$PC.mother]>>
+		<<set _fmi = $slaveIndices[$PC.father]>>
+	<</if>>
+	<<if def _fi>>
+		<<set _mfi = $slaveIndices[$slaves[_fi].mother]>>
+		<<set _ffi = $slaveIndices[$slaves[_fi].father]>>
+	<<elseif $PC.ID == $activeSlave.father>>
+		<<set _mfi = $slaveIndices[$PC.mother]>>
+		<<set _ffi = $slaveIndices[$PC.father]>>
+	<</if>>
+	<<if (def _mi || def _fi) && ndef _mmi && ndef _fmi && ndef _mfi && ndef _ffi>>
+		<<if def _mi>>
+			<<if def _fi && _mi == _fi>>
+				<<if $PC.ID == $slaves[_mi].mother && $PC.ID == $slaves[_fi].father>>
+					$He is @@.lightgreen;your grandchild.@@ You impregnated yourself with $his sole biological parent.
+				<<elseif $PC.ID == $slaves[_mi].mother>>
+					$He is @@.lightgreen;your grandchild.@@ You gave birth to $his sole biological parent.
+				<<elseif $PC.ID == $slaves[_fi].father>>
+					$He is @@.lightgreen;your grandchild.@@ You fathered $his sole biological parent.
+				<</if>>
+			<<elseif def _fi && $PC.ID == $slaves[_mi].mother && $PC.ID == $slaves[_fi].mother>>
+				$He is @@.lightgreen;your grandchild.@@ You gave birth to both of $his parents.
+			<<elseif def _fi && $PC.ID == $slaves[_mi].father && $PC.ID == $slaves[_fi].father>>
+				$He is @@.lightgreen;your grandchild.@@ You fathered both of $his parents.
+			<<elseif $PC.ID == $slaves[_mi].mother>>
+				$He is @@.lightgreen;your grandchild.@@ You gave birth to $his mother.
+			<<elseif $PC.ID == $slaves[_mi].father>>
+				$He is @@.lightgreen;your grandchild.@@ You fathered $his mother.
+			<</if>>
+		<<elseif def _fi>>
+			<<if $PC.ID == $slaves[_fi].mother>>
+				$He is @@.lightgreen;your grandchild.@@ You gave birth to $his father.
+			<<elseif $PC.ID == $slaves[_fi].father>>
+				$He is @@.lightgreen;your grandchild.@@ You fathered $his father.
+			<</if>>
+		<</if>>
+	<<else>>
+		<<if def _mmi && def _ffi && _mmi == _ffi>>
+			$His sole @@.lightgreen;grandparent is $slaves[_mmi].slaveName.@@
+		<<else>>
+			<<if def _mmi && def _mfi && _mmi == _mfi>>
+				$His sole @@.lightgreen;grandmother is $slaves[_mmi].slaveName.@@
+			<<else>>
+				<<if def _mmi>>
+					$His maternal @@.lightgreen;grandmother is $slaves[_mmi].slaveName.@@
+				<</if>>
+				<<if def _mfi>>
+					$His paternal @@.lightgreen;grandmother is $slaves[_mfi].slaveName.@@
+				<</if>>
+			<</if>>
+			<<if def _fmi && def _ffi && _fmi == _ffi>>
+				$His sole @@.lightgreen;grandfather is $slaves[_ffi].slaveName.@@
+			<<else>>
+				<<if def _fmi>>
+					$His maternal @@.lightgreen;grandfather is $slaves[_fmi].slaveName.@@
+				<</if>>
+				<<if _ffi>>
+					$His paternal @@.lightgreen;grandfather is $slaves[_ffi].slaveName.@@
+				<</if>>
+			<</if>>
+		<</if>>
+	<</if>>
+
+
+	/*testtest PC grandparents passage - determines if the current slave is your grandparent*/
+	<<set _pcMother = $slaveIndices[$PC.mother]>>
+	<<set _pcFather = $slaveIndices[$PC.father]>>
+	<<if def _pcMother>>
+		<<if def _pcFather && _pcMother == _pcFather>>
+			<<if $activeSlave.ID == $slaves[_pcMother].mother && $activeSlave.ID == $slaves[_pcFather].father>>
+				$He is @@.lightgreen;your sole grandparent.@@ $He impregnated $himself with your mother/father who in turn impregnated themselves with you.
+			<<elseif $activeSlave.ID == $slaves[_pcMother].mother>>
+				$He is @@.lightgreen;your sole grandmother.@@ $He gave birth to $slaves[_pcMother].slaveName who in turn impregnated themselves with you.
+			<<elseif $activeSlave.ID == $slaves[_pcFather].father>>
+				$He is @@.lightgreen;your sole grandfather.@@ $He fathered $slaves[_pcFather].slaveName who in turn impregnated themselves with you.
+			<</if>>
+		<<elseif def _pcFather && $activeSlave.ID == $slaves[_pcMother].mother && $activeSlave.ID == $slaves[_pcFather].mother>>
+			$He is @@.lightgreen;your sole grandmother.@@ $He gave birth to both of your parents, $slaves[_pcMother].slaveName and $slaves[_pcFather].slaveName.
+		<<elseif def _pcFather && $activeSlave.ID == $slaves[_pcMother].father && $activeSlave.ID == $slaves[_pcFather].father>>
+			$He is @@.lightgreen;your sole grandfather.@@ $He fathered both of your parents, $slaves[_pcFather].slaveName and $slaves[_pcMother].slaveName.
+		<<elseif $activeSlave.ID == $slaves[_pcMother].mother>>
+			$He is @@.lightgreen;your maternal grandmother.@@
+		<<elseif $activeSlave.ID == $slaves[_pcMother].father>>
+			$He is @@.lightgreen;your maternal grandfather.@@
+		<</if>>
+	<<elseif def _pcFather>>
+		<<if $activeSlave.ID == $slaves[_pcFather].mother>>
+			$He is @@.lightgreen;your paternal grandmother.@@
+		<<elseif $activeSlave.ID == $slaves[_pcFather].father>>
+			$He is @@.lightgreen;your paternal grandfather.@@
+		<</if>>
+	<</if>>
+
+	/*testtest grandchild passage - determines how many grandchildren the current slave has*/
+	<<for $i = 0; $i < $slaves.length; $i++>>
+		<<if $slaves[$i].ID != $activeSlave.ID>>
+		<<if $activeSlave.ID == $slaves[$i].mother || $activeSlave.ID == $slaves[$i].father>>
+			<<for $j = 0; $j < $slaves.length; $j++>>
+				<<if $slaves[$i].ID != $slaves[$j].ID>>
+				<<if $slaves[$i].ID == $slaves[$j].mother || $slaves[$i].ID == $slaves[$j].father>>
+					<<set $children.push($slaves[$j])>>
+				<</if>>
+				<</if>>
+			<</for>>
+		<</if>>
+		<</if>>
+	<</for>>
+	<<if $children.length > 0>>
+		$He
+	<<if $children.length > 2>>
+		has @@.lightgreen;many grandchildren,
+		<<for $j = 0; $j < $children.length; $j++>>
+			<<if $j < $children.length-1>>
+				$children[$j].slaveName,
+			<<else>>
+				and $children[$j].slaveName amongst your slaves.@@
+			<</if>>
+		<</for>>
+	<<elseif $children.length > 1>>
+		has @@.lightgreen;two grandchildren, $children[0].slaveName, and $children[1].slaveName as your slaves.@@
+	<<elseif $children.length > 0>>
+		has a @@.lightgreen;grandchild, $children[0].slaveName as your slave.@@
+	<</if>>
+	<</if>>
+	<<set $children = []>>
+
+	/*testtest PC aunt passage - determines how many aunts you have*/
+	<<for $i = 0; $i < $slaves.length; $i++>>
+		<<if $slaves[$i].ID != $activeSlave.ID>>
+		<<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>>
+		<<if $slaves[$i].ID == $PC.mother || $slaves[$i].ID == $PC.father>>
+			<<for $j = 0; $j < $slaves.length; $j++>>
+				<<if $slaves[$i].ID != $slaves[$j].ID>>
+				<<if $slaves[$j].genes == "XX">>
+				<<if areSisters($slaves[$j], $activeSlave) == 1 || areSisters($slaves[$j], $activeSlave) == 2>>
+					<<set $children.push($slaves[$j])>>
+				<</if>>
+				<</if>>
+				<</if>>
+			<</for>>
+		<</if>>
+		<</if>>
+		<</if>>
+	<</for>>
+	<<if $activeSlave.genes == "XX" && $children.length > 0>>
+		$He
+		<<if $children.length > 2>>
+			is @@.lightgreen;your aunt along with
+			<<for $j = 0; $j < $children.length; $j++>>
+				<<if $j < $children.length-1>>
+					$children[$j].slaveName,
+				<<else>>
+					and $children[$j].slaveName.@@
+				<</if>>
+			<</for>>
+		<<elseif $children.length > 1>>
+			is @@.lightgreen;your aunt along with $children[0].slaveName.@@
+		<<elseif $children.length > 0>>
+			<<for $i = 0; $i < $slaves.length; $i++>>
+				<<if $slaves[$i].ID != $activeSlave.ID && $activeSlave.genes == "XX">>
+				<<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>>
+				<<if $slaves[$i].ID == $PC.mother || $slaves[$i].ID == $PC.father>>
+					$He is @@.lightgreen;your aunt.@@
+				<</if>>
+				<</if>>
+				<</if>>
+			<</for>>
+		<</if>>
+	<</if>>
+	<<set $children = []>>
+
+	/*testtest PC uncle passage - determines how many uncles you have*/
+	<<for $i = 0; $i < $slaves.length; $i++>>
+		<<if $slaves[$i].ID != $activeSlave.ID>>
+			<<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>>
+				<<if $slaves[$i].ID == $PC.mother || $slaves[$i].ID == $PC.father>>
+					<<for $j = 0; $j < $slaves.length; $j++>>
+						<<if $slaves[$i].ID != $slaves[$j].ID && $slaves[$j].dick > 0 && $slaves[$j].genes == "XY">>
+							<<if areSisters($slaves[$j], $activeSlave) == 1 || areSisters($slaves[$j], $activeSlave) == 2>>
+								<<set $children.push($slaves[$j])>>
+							<</if>>
+						<</if>>
+					<</for>>
+				<</if>>
+			<</if>>
+		<</if>>
+	<</for>>
+	<<if $activeSlave.genes == "XY" && $children.length > 0>>
+		$He
+		<<if $children.length > 2>>
+			is @@.lightgreen;your uncle along with
+			<<for $j = 0; $j < $children.length; $j++>>
+				<<if $j < $children.length-1>>
+					$children[$j].slaveName,
+				<<else>>
+					and $children[$j].slaveName.@@
+				<</if>>
+			<</for>>
+		<<elseif $children.length > 1>>
+			is @@.lightgreen;your uncle along with $children[0].slaveName.@@
+		<<elseif $children.length > 0>>
+			<<for $i = 0; $i < $slaves.length; $i++>>
+				<<if $slaves[$i].ID != $activeSlave.ID && $activeSlave.genes == "XY">>
+					<<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>>
+						<<if $slaves[$i].ID == $PC.mother || $slaves[$i].ID == $PC.father>>
+							$He is @@.lightgreen;your uncle.@@
+						<</if>>
+					<</if>>
+				<</if>>
+			<</for>>
+		<</if>>
+	<</if>>
+	<<set $children = []>>
+
+	/*testtest aunt passage - determines how many aunts a slave has*/
+	<<for $i = 0; $i < $slaves.length; $i++>>
+		<<if $slaves[$i].ID != $activeSlave.ID>>
+			<<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>>
+				<<for $j = 0; $j < $slaves.length; $j++>>
+					<<if $slaves[$j].genes == "XX">>
+						<<if areSisters($slaves[$j], $slaves[$i]) == 1 || areSisters($slaves[$j], $slaves[$i]) == 2>>
+							<<set $children.push($slaves[$j])>>
+						<</if>>
+					<</if>>
+				<</for>>
+			<</if>>
+		<</if>>
+	<</for>>
+	<<if $children.length > 0>>
+		$He
+		<<if $children.length > 2>>
+			has @@.lightgreen;many aunts,
+			<<for $j = 0; $j < $children.length; $j++>>
+				<<if $j < $children.length-1>>
+					$children[$j].slaveName,
+				<<else>>
+					and $children[$j].slaveName.@@
+				<</if>>
+			<</for>>
+		<<elseif $children.length > 1>>
+			has @@.lightgreen;two aunts, $children[0].slaveName, and $children[1].slaveName.@@
+		<<elseif $children.length > 0>>
+			has @@.lightgreen;an aunt, $children[0].slaveName.@@
+		<</if>>
+	<</if>>
+	<<set $children = []>>
+
+	/*testtest uncle passage - determines how many uncles a slave has*/
+	<<for $i = 0; $i < $slaves.length; $i++>>
+		<<if $slaves[$i].ID != $activeSlave.ID>>
+			<<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>>
+				<<for $j = 0; $j < $slaves.length; $j++>>
+					<<if $slaves[$j].genes == "XY">>
+						<<if areSisters($slaves[$j], $slaves[$i]) == 1 || areSisters($slaves[$j], $slaves[$i]) == 2>>
+							<<set $children.push($slaves[$j])>>
+						<</if>>
+					<</if>>
+				<</for>>
+			<</if>>
+		<</if>>
+	<</for>>
+	<<if $children.length > 0>>
+		$He
+		<<if $children.length > 2>>
+			has @@.lightgreen;many uncles,
+			<<for $j = 0; $j < $children.length; $j++>>
+				<<if $j < $children.length-1>>
+					$children[$j].slaveName,
+				<<else>>
+					and $children[$j].slaveName.@@
+				<</if>>
+			<</for>>
+		<<elseif $children.length > 1>>
+			has @@.lightgreen;two uncles, $children[0].slaveName, and $children[1].slaveName.@@
+		<<elseif $children.length > 0>>
+			has @@.lightgreen;an uncle, $children[0].slaveName.@@
+		<</if>>
+	<</if>>
+	<<set $children = []>>
+
+	/*testtest PC niece passage - determines how many nieces you have*/
+	<<for $i = 0; $i < $slaves.length; $i++>>
+		<<if $slaves[$i].ID != $activeSlave.ID>>
+			<<if areSisters($slaves[$i], $PC) == 1 || areSisters($slaves[$i], $PC) == 2>>
+				<<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>>
+					<<for $j = 0; $j < $slaves.length; $j++>>
+						<<if $slaves[$i].ID != $slaves[$j].ID && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].genes == "XX">>
+							<<if $slaves[$i].ID == $slaves[$j].mother || $slaves[$i].ID == $slaves[$j].father>>
+								<<set $children.push($slaves[$j])>>
+							<</if>>
+						<</if>>
+					<</for>>
+				<</if>>
+			<</if>>
+		<</if>>
+	<</for>>
+	<<if $activeSlave.genes == "XX" && $children.length > 0>>
+		$He
+		<<if $children.length > 2>>
+			is @@.lightgreen;your niece along with
+			<<for $j = 0; $j < $children.length; $j++>>
+				<<if $j < $children.length-1>>
+					$children[$j].slaveName,
+				<<else>>
+					and $children[$j].slaveName.@@
+				<</if>>
+			<</for>>
+		<<elseif $children.length > 1>>
+			is @@.lightgreen;your niece along with $children[0].slaveName.@@
+		<<elseif $children.length > 0>>
+			<<for $i = 0; $i < $slaves.length; $i++>>
+				<<if $slaves[$i].ID != $activeSlave.ID && $activeSlave.genes == "XX">>
+					<<if areSisters($slaves[$i], $PC) == 1 || areSisters($slaves[$i], $PC) == 2>>
+						<<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>>
+							is @@.lightgreen;your niece.@@
+						<</if>>
+					<</if>>
+				<</if>>
+			<</for>>
+		<</if>>
+	<</if>>
+	<<set $children = []>>
+
+	/* testtest niece passage - determines how many nieces a slave has*/
+	<<for $i = 0; $i < $slaves.length; $i++>>
+		<<if $slaves[$i].ID != $activeSlave.ID>>
+			<<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>>
+				<<for $j = 0; $j < $slaves.length; $j++>>
+					<<if $slaves[$i].ID != $slaves[$j].ID && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].genes == "XX">>
+						<<if $slaves[$i].ID == $slaves[$j].mother || $slaves[$i].ID == $slaves[$j].father>>
+							<<set $children.push($slaves[$j])>>
+						<</if>>
+					<</if>>
+				<</for>>
+			<</if>>
+		<</if>>
+	<</for>>
+	<<if $children.length > 0>>
+		$He
+		<<if $children.length > 2>>
+			has @@.lightgreen;many nieces,
+			<<for $j = 0; $j < $children.length; $j++>>
+				<<if $j < $children.length-1>>
+					$children[$j].slaveName,
+				<<else>>
+					and $children[$j].slaveName, who are your slaves.@@
+				<</if>>
+			<</for>>
+		<<elseif $children.length > 1>>
+			has @@.lightgreen;two nieces, $children[0].slaveName, and $children[1].slaveName, who are your slaves.@@
+		<<elseif $children.length > 0>>
+			has @@.lightgreen;a niece, $children[0].slaveName, who is your slave.@@
+		<</if>>
+	<</if>>
+	<<set $children = []>>
+
+	/*testtest PC nephew passage - determines how many nephews you have*/
+	<<for $i = 0; $i < $slaves.length; $i++>>
+		<<if $slaves[$i].ID != $activeSlave.ID>>
+			<<if areSisters($slaves[$i], $PC) == 1 || areSisters($slaves[$i], $PC) == 2>>
+				<<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>>
+					<<for $j = 0; $j < $slaves.length; $j++>>
+						<<if $slaves[$i].ID != $slaves[$j].ID && $slaves[$j].ID != $activeSlave.ID && $slaves[$i].genes == "XY">>
+							<<if $slaves[$i].ID == $slaves[$j].mother || $slaves[$i].ID == $slaves[$j].father>>
+								<<set $children.push($slaves[$j])>>
+							<</if>>
+						<</if>>
+					<</for>>
+				<</if>>
+			<</if>>
+		<</if>>
+	<</for>>
+	<<if $activeSlave.genes == "XY" && $children.length > 0>>
+		$He
+		<<if $children.length > 2>>
+			is @@.lightgreen;your nephew along with
+			<<for $j = 0; $j < $children.length; $j++>>
+				<<if $j < $children.length-1>>
+					$children[$j].slaveName,
+				<<else>>
+					and $children[$j].slaveName.@@
+				<</if>>
+			<</for>>
+		<<elseif $children.length > 1>>
+			is @@.lightgreen;your nephew along with $children[0].slaveName.@@
+		<<elseif $children.length > 0>>
+			<<for $i = 0; $i < $slaves.length; $i++>>
+				<<if $slaves[$i].ID != $activeSlave.ID && $activeSlave.genes == "XY">>
+					<<if areSisters($slaves[$i], $PC) == 1 || areSisters($slaves[$i], $PC) == 2>>
+						<<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>>
+							is @@.lightgreen;your nephew.@@
+						<</if>>
+					<</if>>
+				<</if>>
+			<</for>>
+		<</if>>
+	<</if>>
+	<<set $children = []>>
+
+	/* testtest nephew passage - determines how many nephews a slave has*/
+	<<for $i = 0; $i < $slaves.length; $i++>>
+		<<if $slaves[$i].ID != $activeSlave.ID>>
+			<<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>>
+				<<for $j = 0; $j < $slaves.length; $j++>>
+					<<if $slaves[$i].ID != $slaves[$j].ID && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].genes == "XY">>
+						<<if $slaves[$i].ID == $slaves[$j].mother || $slaves[$i].ID == $slaves[$j].father>>
+							<<set $children.push($slaves[$j])>>
+						<</if>>
+					<</if>>
+				<</for>>
+			<</if>>
+		<</if>>
+	<</for>>
+	<<if $children.length > 0>>
+		$He
+		<<if $children.length > 2>>
+			has @@.lightgreen;many nephews,
+			<<for $j = 0; $j < $children.length; $j++>>
+				<<if $j < $children.length-1>>
+					$children[$j].slaveName,
+				<<else>>
+					and $children[$j].slaveName, who are your slaves.@@
+				<</if>>
+			<</for>>
+		<<elseif $children.length > 1>>
+			has @@.lightgreen;two nephews, $children[0].slaveName, and $children[1].slaveName, who are your slaves.@@
+		<<elseif $children.length > 0>>
+			has @@.lightgreen;a nephew, $children[0].slaveName, who is your slave.@@
+		<</if>>
+	<</if>>
+	<<set $children = []>>
+>>>>>>> 14b240a283262b8791485ed8f234dfbe31a62dc7
 <</if>> /* end distant relatives toggle check */
 
 /*testtest PC sibling passages - determines how many siblings you have
@@ -573,11 +1014,11 @@
 		<<run ($slaves[_efw].genes == 'XX' ? _halfsisters : _halfbrothers).push($slaves[_efw])>>
 	<</if>>
 	<<if def $showDistantRelatives && $showDistantRelatives == 1>>
-	    <<set _cousinCheck = areCousins($slaves[_efw], $activeSlave)>>
-    	<<if _cousinCheck == true>>
-    		<<run _cousins.push($slaves[_efw])>>
-    	<</if>>
-    <</if>>
+		<<set _cousinCheck = areCousins($slaves[_efw], $activeSlave)>>
+		<<if _cousinCheck == true>>
+			<<run _cousins.push($slaves[_efw])>>
+		<</if>>
+	<</if>>
 <</for>>
 
 /*testtest PC twin passages - determines how many twins you have but not implemented yet*/
@@ -707,6 +1148,7 @@
 <</if>>
 
 <<if def $showDistantRelatives && $showDistantRelatives == 1>>
+<<<<<<< HEAD
     /*testtest PC cousin passage - determines how many cousins you have*/
     <<if areCousins($activeSlave, $PC)>>
     	$He
@@ -736,6 +1178,37 @@
     <<elseif _children.length > 0>>
     	@@.lightgreen;_children[0].slaveName is a cousin to $him.@@
     <</if>>
+=======
+	/*testtest PC cousin passage - determines how many cousins you have*/
+	<<if areCousins($activeSlave, $PC)>>
+		$He
+		<<if _cousins.length > 1>>
+			@@.lightgreen;is your cousin along with <<print _cousins.reduce(function(res, ch, i, arr) { return (res.slaveName || res) + (i == arr.length - 1 ? ' and ' : ', ') + ch.slaveName; })>>.@@
+		<<elseif _cousins.length > 0>>
+			is @@.lightgreen;your cousin along with _sisters[0].slaveName.@@
+		<<else>>
+			is @@.lightgreen;your cousin.@@
+		<</if>>
+	<</if>>
+
+	/*testtest cousin - determines how many cousins a slave has*/
+	<<set _children = $slaves.filter(function(s) { return s.ID != $activeSlave.ID && areCousins($activeSlave, s)})>>
+	<<if _children.length > 2>>
+		@@.lightgreen;
+		<<for _efw = 0; _efw < _children.length; _efw++>>
+			<<if _efw < _children.length-1>>
+				_children[_efw].slaveName,
+			<<else>>
+				and _children[_efw].slaveName
+			<</if>>
+		<</for>>
+		are cousins to $him.@@
+	<<elseif _children.length > 1>>
+		@@.lightgreen;_children[0].slaveName and _children[1].slaveName are cousins to $him.@@
+	<<elseif _children.length > 0>>
+		@@.lightgreen;_children[0].slaveName is a cousin to $him.@@
+	<</if>>
+>>>>>>> 14b240a283262b8791485ed8f234dfbe31a62dc7
 <</if>> /* end distant relatives toggle check */
 
 <<if $activeSlave.clone != 0>>