/tags/v5.12-baouque/services/.htaccess |
---|
New file |
0,0 → 1,9 |
<files *.ini> |
order deny,allow |
deny from all |
</files> |
RewriteEngine On |
RewriteCond %{REQUEST_FILENAME} !-d |
RewriteCond %{REQUEST_FILENAME} !-f |
RewriteRule ^.*$ index.php |
/tags/v5.12-baouque/services/bibliotheque/JSON.php |
---|
New file |
0,0 → 1,806 |
<?php |
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */ |
/** |
* Converts to and from JSON format. |
* |
* JSON (JavaScript Object Notation) is a lightweight data-interchange |
* format. It is easy for humans to read and write. It is easy for machines |
* to parse and generate. It is based on a subset of the JavaScript |
* Programming Language, Standard ECMA-262 3rd Edition - December 1999. |
* This feature can also be found in Python. JSON is a text format that is |
* completely language independent but uses conventions that are familiar |
* to programmers of the C-family of languages, including C, C++, C#, Java, |
* JavaScript, Perl, TCL, and many others. These properties make JSON an |
* ideal data-interchange language. |
* |
* This package provides a simple encoder and decoder for JSON notation. It |
* is intended for use with client-side Javascript applications that make |
* use of HTTPRequest to perform server communication functions - data can |
* be encoded into JSON notation for use in a client-side javascript, or |
* decoded from incoming Javascript requests. JSON format is native to |
* Javascript, and can be directly eval()'ed with no further parsing |
* overhead |
* |
* All strings should be in ASCII or UTF-8 format! |
* |
* LICENSE: Redistribution and use in source and binary forms, with or |
* without modification, are permitted provided that the following |
* conditions are met: Redistributions of source code must retain the |
* above copyright notice, this list of conditions and the following |
* disclaimer. Redistributions in binary form must reproduce the above |
* copyright notice, this list of conditions and the following disclaimer |
* in the documentation and/or other materials provided with the |
* distribution. |
* |
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN |
* NO EVENT SHALL CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR |
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
* DAMAGE. |
* |
* @category |
* @package Services_JSON |
* @author Michal Migurski <mike-json@teczno.com> |
* @author Matt Knapp <mdknapp[at]gmail[dot]com> |
* @author Brett Stimmerman <brettstimmerman[at]gmail[dot]com> |
* @copyright 2005 Michal Migurski |
* @version CVS: $Id$ |
* @license http://www.opensource.org/licenses/bsd-license.php |
* @link http://pear.php.net/pepr/pepr-proposal-show.php?id=198 |
*/ |
/** |
* Marker constant for Services_JSON::decode(), used to flag stack state |
*/ |
define('SERVICES_JSON_SLICE', 1); |
/** |
* Marker constant for Services_JSON::decode(), used to flag stack state |
*/ |
define('SERVICES_JSON_IN_STR', 2); |
/** |
* Marker constant for Services_JSON::decode(), used to flag stack state |
*/ |
define('SERVICES_JSON_IN_ARR', 3); |
/** |
* Marker constant for Services_JSON::decode(), used to flag stack state |
*/ |
define('SERVICES_JSON_IN_OBJ', 4); |
/** |
* Marker constant for Services_JSON::decode(), used to flag stack state |
*/ |
define('SERVICES_JSON_IN_CMT', 5); |
/** |
* Behavior switch for Services_JSON::decode() |
*/ |
define('SERVICES_JSON_LOOSE_TYPE', 16); |
/** |
* Behavior switch for Services_JSON::decode() |
*/ |
define('SERVICES_JSON_SUPPRESS_ERRORS', 32); |
/** |
* Converts to and from JSON format. |
* |
* Brief example of use: |
* |
* <code> |
* // create a new instance of Services_JSON |
* $json = new Services_JSON(); |
* |
* // convert a complexe value to JSON notation, and send it to the browser |
* $value = array('foo', 'bar', array(1, 2, 'baz'), array(3, array(4))); |
* $output = $json->encode($value); |
* |
* print($output); |
* // prints: ["foo","bar",[1,2,"baz"],[3,[4]]] |
* |
* // accept incoming POST data, assumed to be in JSON notation |
* $input = file_get_contents('php://input', 1000000); |
* $value = $json->decode($input); |
* </code> |
*/ |
class Services_JSON |
{ |
/** |
* constructs a new JSON instance |
* |
* @param int $use object behavior flags; combine with boolean-OR |
* |
* possible values: |
* - SERVICES_JSON_LOOSE_TYPE: loose typing. |
* "{...}" syntax creates associative arrays |
* instead of objects in decode(). |
* - SERVICES_JSON_SUPPRESS_ERRORS: error suppression. |
* Values which can't be encoded (e.g. resources) |
* appear as NULL instead of throwing errors. |
* By default, a deeply-nested resource will |
* bubble up with an error, so all return values |
* from encode() should be checked with isError() |
*/ |
function Services_JSON($use = 0) |
{ |
$this->use = $use; |
} |
/** |
* convert a string from one UTF-16 char to one UTF-8 char |
* |
* Normally should be handled by mb_convert_encoding, but |
* provides a slower PHP-only method for installations |
* that lack the multibye string extension. |
* |
* @param string $utf16 UTF-16 character |
* @return string UTF-8 character |
* @access private |
*/ |
function utf162utf8($utf16) |
{ |
// oh please oh please oh please oh please oh please |
if(function_exists('mb_convert_encoding')) { |
return mb_convert_encoding($utf16, 'UTF-8', 'UTF-16'); |
} |
$bytes = (ord($utf16{0}) << 8) | ord($utf16{1}); |
switch(true) { |
case ((0x7F & $bytes) == $bytes): |
// this case should never be reached, because we are in ASCII range |
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
return chr(0x7F & $bytes); |
case (0x07FF & $bytes) == $bytes: |
// return a 2-byte UTF-8 character |
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
return chr(0xC0 | (($bytes >> 6) & 0x1F)) |
. chr(0x80 | ($bytes & 0x3F)); |
case (0xFFFF & $bytes) == $bytes: |
// return a 3-byte UTF-8 character |
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
return chr(0xE0 | (($bytes >> 12) & 0x0F)) |
. chr(0x80 | (($bytes >> 6) & 0x3F)) |
. chr(0x80 | ($bytes & 0x3F)); |
} |
// ignoring UTF-32 for now, sorry |
return ''; |
} |
/** |
* convert a string from one UTF-8 char to one UTF-16 char |
* |
* Normally should be handled by mb_convert_encoding, but |
* provides a slower PHP-only method for installations |
* that lack the multibye string extension. |
* |
* @param string $utf8 UTF-8 character |
* @return string UTF-16 character |
* @access private |
*/ |
function utf82utf16($utf8) |
{ |
// oh please oh please oh please oh please oh please |
if(function_exists('mb_convert_encoding')) { |
return mb_convert_encoding($utf8, 'UTF-16', 'UTF-8'); |
} |
switch(strlen($utf8)) { |
case 1: |
// this case should never be reached, because we are in ASCII range |
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
return $utf8; |
case 2: |
// return a UTF-16 character from a 2-byte UTF-8 char |
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
return chr(0x07 & (ord($utf8{0}) >> 2)) |
. chr((0xC0 & (ord($utf8{0}) << 6)) |
| (0x3F & ord($utf8{1}))); |
case 3: |
// return a UTF-16 character from a 3-byte UTF-8 char |
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
return chr((0xF0 & (ord($utf8{0}) << 4)) |
| (0x0F & (ord($utf8{1}) >> 2))) |
. chr((0xC0 & (ord($utf8{1}) << 6)) |
| (0x7F & ord($utf8{2}))); |
} |
// ignoring UTF-32 for now, sorry |
return ''; |
} |
/** |
* encodes an arbitrary variable into JSON format |
* |
* @param mixed $var any number, boolean, string, array, or object to be encoded. |
* see argument 1 to Services_JSON() above for array-parsing behavior. |
* if var is a strng, note that encode() always expects it |
* to be in ASCII or UTF-8 format! |
* |
* @return mixed JSON string representation of input var or an error if a problem occurs |
* @access public |
*/ |
function encode($var) |
{ |
switch (gettype($var)) { |
case 'boolean': |
return $var ? 'true' : 'false'; |
case 'NULL': |
return 'null'; |
case 'integer': |
return (int) $var; |
case 'double': |
case 'float': |
return (float) $var; |
case 'string': |
// STRINGS ARE EXPECTED TO BE IN ASCII OR UTF-8 FORMAT |
$ascii = ''; |
$strlen_var = strlen($var); |
/* |
* Iterate over every character in the string, |
* escaping with a slash or encoding to UTF-8 where necessary |
*/ |
for ($c = 0; $c < $strlen_var; ++$c) { |
$ord_var_c = ord($var{$c}); |
switch (true) { |
case $ord_var_c == 0x08: |
$ascii .= '\b'; |
break; |
case $ord_var_c == 0x09: |
$ascii .= '\t'; |
break; |
case $ord_var_c == 0x0A: |
$ascii .= '\n'; |
break; |
case $ord_var_c == 0x0C: |
$ascii .= '\f'; |
break; |
case $ord_var_c == 0x0D: |
$ascii .= '\r'; |
break; |
case $ord_var_c == 0x22: |
case $ord_var_c == 0x2F: |
case $ord_var_c == 0x5C: |
// double quote, slash, slosh |
$ascii .= '\\'.$var{$c}; |
break; |
case (($ord_var_c >= 0x20) && ($ord_var_c <= 0x7F)): |
// characters U-00000000 - U-0000007F (same as ASCII) |
$ascii .= $var{$c}; |
break; |
case (($ord_var_c & 0xE0) == 0xC0): |
// characters U-00000080 - U-000007FF, mask 110XXXXX |
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
$char = pack('C*', $ord_var_c, ord($var{$c + 1})); |
$c += 1; |
$utf16 = $this->utf82utf16($char); |
$ascii .= sprintf('\u%04s', bin2hex($utf16)); |
break; |
case (($ord_var_c & 0xF0) == 0xE0): |
// characters U-00000800 - U-0000FFFF, mask 1110XXXX |
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
$char = pack('C*', $ord_var_c, |
ord($var{$c + 1}), |
ord($var{$c + 2})); |
$c += 2; |
$utf16 = $this->utf82utf16($char); |
$ascii .= sprintf('\u%04s', bin2hex($utf16)); |
break; |
case (($ord_var_c & 0xF8) == 0xF0): |
// characters U-00010000 - U-001FFFFF, mask 11110XXX |
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
$char = pack('C*', $ord_var_c, |
ord($var{$c + 1}), |
ord($var{$c + 2}), |
ord($var{$c + 3})); |
$c += 3; |
$utf16 = $this->utf82utf16($char); |
$ascii .= sprintf('\u%04s', bin2hex($utf16)); |
break; |
case (($ord_var_c & 0xFC) == 0xF8): |
// characters U-00200000 - U-03FFFFFF, mask 111110XX |
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
$char = pack('C*', $ord_var_c, |
ord($var{$c + 1}), |
ord($var{$c + 2}), |
ord($var{$c + 3}), |
ord($var{$c + 4})); |
$c += 4; |
$utf16 = $this->utf82utf16($char); |
$ascii .= sprintf('\u%04s', bin2hex($utf16)); |
break; |
case (($ord_var_c & 0xFE) == 0xFC): |
// characters U-04000000 - U-7FFFFFFF, mask 1111110X |
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
$char = pack('C*', $ord_var_c, |
ord($var{$c + 1}), |
ord($var{$c + 2}), |
ord($var{$c + 3}), |
ord($var{$c + 4}), |
ord($var{$c + 5})); |
$c += 5; |
$utf16 = $this->utf82utf16($char); |
$ascii .= sprintf('\u%04s', bin2hex($utf16)); |
break; |
} |
} |
return '"'.$ascii.'"'; |
case 'array': |
/* |
* As per JSON spec if any array key is not an integer |
* we must treat the the whole array as an object. We |
* also try to catch a sparsely populated associative |
* array with numeric keys here because some JS engines |
* will create an array with empty indexes up to |
* max_index which can cause memory issues and because |
* the keys, which may be relevant, will be remapped |
* otherwise. |
* |
* As per the ECMA and JSON specification an object may |
* have any string as a property. Unfortunately due to |
* a hole in the ECMA specification if the key is a |
* ECMA reserved word or starts with a digit the |
* parameter is only accessible using ECMAScript's |
* bracket notation. |
*/ |
// treat as a JSON object |
if (is_array($var) && count($var) && (array_keys($var) !== range(0, sizeof($var) - 1))) { |
$properties = array_map(array($this, 'name_value'), |
array_keys($var), |
array_values($var)); |
foreach($properties as $property) { |
if(Services_JSON::isError($property)) { |
return $property; |
} |
} |
return '{' . join(',', $properties) . '}'; |
} |
// treat it like a regular array |
$elements = array_map(array($this, 'encode'), $var); |
foreach($elements as $element) { |
if(Services_JSON::isError($element)) { |
return $element; |
} |
} |
return '[' . join(',', $elements) . ']'; |
case 'object': |
$vars = get_object_vars($var); |
$properties = array_map(array($this, 'name_value'), |
array_keys($vars), |
array_values($vars)); |
foreach($properties as $property) { |
if(Services_JSON::isError($property)) { |
return $property; |
} |
} |
return '{' . join(',', $properties) . '}'; |
default: |
return ($this->use & SERVICES_JSON_SUPPRESS_ERRORS) |
? 'null' |
: new Services_JSON_Error(gettype($var)." can not be encoded as JSON string"); |
} |
} |
/** |
* array-walking function for use in generating JSON-formatted name-value pairs |
* |
* @param string $name name of key to use |
* @param mixed $value reference to an array element to be encoded |
* |
* @return string JSON-formatted name-value pair, like '"name":value' |
* @access private |
*/ |
function name_value($name, $value) |
{ |
$encoded_value = $this->encode($value); |
if(Services_JSON::isError($encoded_value)) { |
return $encoded_value; |
} |
return $this->encode(strval($name)) . ':' . $encoded_value; |
} |
/** |
* reduce a string by removing leading and trailing comments and whitespace |
* |
* @param $str string string value to strip of comments and whitespace |
* |
* @return string string value stripped of comments and whitespace |
* @access private |
*/ |
function reduce_string($str) |
{ |
$str = preg_replace(array( |
// eliminate single line comments in '// ...' form |
'#^\s*//(.+)$#m', |
// eliminate multi-line comments in '/* ... */' form, at start of string |
'#^\s*/\*(.+)\*/#Us', |
// eliminate multi-line comments in '/* ... */' form, at end of string |
'#/\*(.+)\*/\s*$#Us' |
), '', $str); |
// eliminate extraneous space |
return trim($str); |
} |
/** |
* decodes a JSON string into appropriate variable |
* |
* @param string $str JSON-formatted string |
* |
* @return mixed number, boolean, string, array, or object |
* corresponding to given JSON input string. |
* See argument 1 to Services_JSON() above for object-output behavior. |
* Note that decode() always returns strings |
* in ASCII or UTF-8 format! |
* @access public |
*/ |
function decode($str) |
{ |
$str = $this->reduce_string($str); |
switch (strtolower($str)) { |
case 'true': |
return true; |
case 'false': |
return false; |
case 'null': |
return null; |
default: |
$m = array(); |
if (is_numeric($str)) { |
// Lookie-loo, it's a number |
// This would work on its own, but I'm trying to be |
// good about returning integers where appropriate: |
// return (float)$str; |
// Return float or int, as appropriate |
return ((float)$str == (integer)$str) |
? (integer)$str |
: (float)$str; |
} elseif (preg_match('/^("|\').*(\1)$/s', $str, $m) && $m[1] == $m[2]) { |
// STRINGS RETURNED IN UTF-8 FORMAT |
$delim = substr($str, 0, 1); |
$chrs = substr($str, 1, -1); |
$utf8 = ''; |
$strlen_chrs = strlen($chrs); |
for ($c = 0; $c < $strlen_chrs; ++$c) { |
$substr_chrs_c_2 = substr($chrs, $c, 2); |
$ord_chrs_c = ord($chrs{$c}); |
switch (true) { |
case $substr_chrs_c_2 == '\b': |
$utf8 .= chr(0x08); |
++$c; |
break; |
case $substr_chrs_c_2 == '\t': |
$utf8 .= chr(0x09); |
++$c; |
break; |
case $substr_chrs_c_2 == '\n': |
$utf8 .= chr(0x0A); |
++$c; |
break; |
case $substr_chrs_c_2 == '\f': |
$utf8 .= chr(0x0C); |
++$c; |
break; |
case $substr_chrs_c_2 == '\r': |
$utf8 .= chr(0x0D); |
++$c; |
break; |
case $substr_chrs_c_2 == '\\"': |
case $substr_chrs_c_2 == '\\\'': |
case $substr_chrs_c_2 == '\\\\': |
case $substr_chrs_c_2 == '\\/': |
if (($delim == '"' && $substr_chrs_c_2 != '\\\'') || |
($delim == "'" && $substr_chrs_c_2 != '\\"')) { |
$utf8 .= $chrs{++$c}; |
} |
break; |
case preg_match('/\\\u[0-9A-F]{4}/i', substr($chrs, $c, 6)): |
// single, escaped unicode character |
$utf16 = chr(hexdec(substr($chrs, ($c + 2), 2))) |
. chr(hexdec(substr($chrs, ($c + 4), 2))); |
$utf8 .= $this->utf162utf8($utf16); |
$c += 5; |
break; |
case ($ord_chrs_c >= 0x20) && ($ord_chrs_c <= 0x7F): |
$utf8 .= $chrs{$c}; |
break; |
case ($ord_chrs_c & 0xE0) == 0xC0: |
// characters U-00000080 - U-000007FF, mask 110XXXXX |
//see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
$utf8 .= substr($chrs, $c, 2); |
++$c; |
break; |
case ($ord_chrs_c & 0xF0) == 0xE0: |
// characters U-00000800 - U-0000FFFF, mask 1110XXXX |
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
$utf8 .= substr($chrs, $c, 3); |
$c += 2; |
break; |
case ($ord_chrs_c & 0xF8) == 0xF0: |
// characters U-00010000 - U-001FFFFF, mask 11110XXX |
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
$utf8 .= substr($chrs, $c, 4); |
$c += 3; |
break; |
case ($ord_chrs_c & 0xFC) == 0xF8: |
// characters U-00200000 - U-03FFFFFF, mask 111110XX |
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
$utf8 .= substr($chrs, $c, 5); |
$c += 4; |
break; |
case ($ord_chrs_c & 0xFE) == 0xFC: |
// characters U-04000000 - U-7FFFFFFF, mask 1111110X |
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8 |
$utf8 .= substr($chrs, $c, 6); |
$c += 5; |
break; |
} |
} |
return $utf8; |
} elseif (preg_match('/^\[.*\]$/s', $str) || preg_match('/^\{.*\}$/s', $str)) { |
// array, or object notation |
if ($str{0} == '[') { |
$stk = array(SERVICES_JSON_IN_ARR); |
$arr = array(); |
} else { |
if ($this->use & SERVICES_JSON_LOOSE_TYPE) { |
$stk = array(SERVICES_JSON_IN_OBJ); |
$obj = array(); |
} else { |
$stk = array(SERVICES_JSON_IN_OBJ); |
$obj = new stdClass(); |
} |
} |
array_push($stk, array('what' => SERVICES_JSON_SLICE, |
'where' => 0, |
'delim' => false)); |
$chrs = substr($str, 1, -1); |
$chrs = $this->reduce_string($chrs); |
if ($chrs == '') { |
if (reset($stk) == SERVICES_JSON_IN_ARR) { |
return $arr; |
} else { |
return $obj; |
} |
} |
//print("\nparsing {$chrs}\n"); |
$strlen_chrs = strlen($chrs); |
for ($c = 0; $c <= $strlen_chrs; ++$c) { |
$top = end($stk); |
$substr_chrs_c_2 = substr($chrs, $c, 2); |
if (($c == $strlen_chrs) || (($chrs{$c} == ',') && ($top['what'] == SERVICES_JSON_SLICE))) { |
// found a comma that is not inside a string, array, etc., |
// OR we've reached the end of the character list |
$slice = substr($chrs, $top['where'], ($c - $top['where'])); |
array_push($stk, array('what' => SERVICES_JSON_SLICE, 'where' => ($c + 1), 'delim' => false)); |
//print("Found split at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n"); |
if (reset($stk) == SERVICES_JSON_IN_ARR) { |
// we are in an array, so just push an element onto the stack |
array_push($arr, $this->decode($slice)); |
} elseif (reset($stk) == SERVICES_JSON_IN_OBJ) { |
// we are in an object, so figure |
// out the property name and set an |
// element in an associative array, |
// for now |
$parts = array(); |
if (preg_match('/^\s*(["\'].*[^\\\]["\'])\s*:\s*(\S.*),?$/Uis', $slice, $parts)) { |
// "name":value pair |
$key = $this->decode($parts[1]); |
$val = $this->decode($parts[2]); |
if ($this->use & SERVICES_JSON_LOOSE_TYPE) { |
$obj[$key] = $val; |
} else { |
$obj->$key = $val; |
} |
} elseif (preg_match('/^\s*(\w+)\s*:\s*(\S.*),?$/Uis', $slice, $parts)) { |
// name:value pair, where name is unquoted |
$key = $parts[1]; |
$val = $this->decode($parts[2]); |
if ($this->use & SERVICES_JSON_LOOSE_TYPE) { |
$obj[$key] = $val; |
} else { |
$obj->$key = $val; |
} |
} |
} |
} elseif ((($chrs{$c} == '"') || ($chrs{$c} == "'")) && ($top['what'] != SERVICES_JSON_IN_STR)) { |
// found a quote, and we are not inside a string |
array_push($stk, array('what' => SERVICES_JSON_IN_STR, 'where' => $c, 'delim' => $chrs{$c})); |
//print("Found start of string at {$c}\n"); |
} elseif (($chrs{$c} == $top['delim']) && |
($top['what'] == SERVICES_JSON_IN_STR) && |
((strlen(substr($chrs, 0, $c)) - strlen(rtrim(substr($chrs, 0, $c), '\\'))) % 2 != 1)) { |
// found a quote, we're in a string, and it's not escaped |
// we know that it's not escaped becase there is _not_ an |
// odd number of backslashes at the end of the string so far |
array_pop($stk); |
//print("Found end of string at {$c}: ".substr($chrs, $top['where'], (1 + 1 + $c - $top['where']))."\n"); |
} elseif (($chrs{$c} == '[') && |
in_array($top['what'], array(SERVICES_JSON_SLICE, SERVICES_JSON_IN_ARR, SERVICES_JSON_IN_OBJ))) { |
// found a left-bracket, and we are in an array, object, or slice |
array_push($stk, array('what' => SERVICES_JSON_IN_ARR, 'where' => $c, 'delim' => false)); |
//print("Found start of array at {$c}\n"); |
} elseif (($chrs{$c} == ']') && ($top['what'] == SERVICES_JSON_IN_ARR)) { |
// found a right-bracket, and we're in an array |
array_pop($stk); |
//print("Found end of array at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n"); |
} elseif (($chrs{$c} == '{') && |
in_array($top['what'], array(SERVICES_JSON_SLICE, SERVICES_JSON_IN_ARR, SERVICES_JSON_IN_OBJ))) { |
// found a left-brace, and we are in an array, object, or slice |
array_push($stk, array('what' => SERVICES_JSON_IN_OBJ, 'where' => $c, 'delim' => false)); |
//print("Found start of object at {$c}\n"); |
} elseif (($chrs{$c} == '}') && ($top['what'] == SERVICES_JSON_IN_OBJ)) { |
// found a right-brace, and we're in an object |
array_pop($stk); |
//print("Found end of object at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n"); |
} elseif (($substr_chrs_c_2 == '/*') && |
in_array($top['what'], array(SERVICES_JSON_SLICE, SERVICES_JSON_IN_ARR, SERVICES_JSON_IN_OBJ))) { |
// found a comment start, and we are in an array, object, or slice |
array_push($stk, array('what' => SERVICES_JSON_IN_CMT, 'where' => $c, 'delim' => false)); |
$c++; |
//print("Found start of comment at {$c}\n"); |
} elseif (($substr_chrs_c_2 == '*/') && ($top['what'] == SERVICES_JSON_IN_CMT)) { |
// found a comment end, and we're in one now |
array_pop($stk); |
$c++; |
for ($i = $top['where']; $i <= $c; ++$i) |
$chrs = substr_replace($chrs, ' ', $i, 1); |
//print("Found end of comment at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n"); |
} |
} |
if (reset($stk) == SERVICES_JSON_IN_ARR) { |
return $arr; |
} elseif (reset($stk) == SERVICES_JSON_IN_OBJ) { |
return $obj; |
} |
} |
} |
} |
/** |
* @todo Ultimately, this should just call PEAR::isError() |
*/ |
function isError($data, $code = null) |
{ |
if (class_exists('pear')) { |
return PEAR::isError($data, $code); |
} elseif (is_object($data) && (get_class($data) == 'services_json_error' || |
is_subclass_of($data, 'services_json_error'))) { |
return true; |
} |
return false; |
} |
} |
if (class_exists('PEAR_Error')) { |
class Services_JSON_Error extends PEAR_Error |
{ |
function Services_JSON_Error($message = 'unknown error', $code = null, |
$mode = null, $options = null, $userinfo = null) |
{ |
parent::PEAR_Error($message, $code, $mode, $options, $userinfo); |
} |
} |
} else { |
/** |
* @todo Ultimately, this class shall be descended from PEAR_Error |
*/ |
class Services_JSON_Error |
{ |
function Services_JSON_Error($message = 'unknown error', $code = null, |
$mode = null, $options = null, $userinfo = null) |
{ |
} |
} |
} |
?> |
/tags/v5.12-baouque/services/bibliotheque/ReponseHttp.php |
---|
New file |
0,0 → 1,85 |
<?php |
class ReponseHttp { |
private $resultatService = null; |
private $erreurs = array(); |
public function __construct() { |
$this->resultatService = new ResultatService(); |
if (function_exists('json_decode') == false){ |
require_once (dirname(__FILE__).'/JSON.php'); |
function json_decode($content, $assoc = false){ |
if ($assoc) { |
$json = new Services_JSON(SERVICES_JSON_LOOSE_TYPE); |
} else { |
$json = new Services_JSON; |
} |
return $json->decode($content); |
} |
} |
if ( !function_exists('json_encode') ){ |
function json_encode($content){ |
$json = new Services_JSON; |
return $json->encode($content); |
} |
} |
} |
public function setResultatService($resultat) { |
if (!($resultat instanceof ResultatService)) { |
$this->resultatService->corps = $resultat; |
} else { |
$this->resultatService = $resultat; |
} |
} |
public function getCorps() { |
if ($this->etreEnErreur()) { |
$this->resultatService->corps = $this->erreurs[0]['message']; |
} else { |
$this->transformerReponseCorpsSuivantMime(); |
} |
return $this->resultatService->corps; |
} |
public function ajouterErreur(Exception $e) { |
$this->erreurs[] = array('entete' => $e->getCode(), 'message' => $e->getMessage()); |
} |
public function emettreLesEntetes() { |
$enteteHttp = new EnteteHttp(); |
if ($this->etreEnErreur()) { |
$enteteHttp->code = $this->erreurs[0]['entete']; |
$enteteHttp->mime = 'text/html'; |
} else { |
$enteteHttp->encodage = $this->resultatService->encodage; |
$enteteHttp->mime = $this->resultatService->mime; |
} |
header("Content-Type: $enteteHttp->mime; charset=$enteteHttp->encodage"); |
RestServeur::envoyerEnteteStatutHttp($enteteHttp->code); |
} |
private function etreEnErreur() { |
$enErreur = false; |
if (count($this->erreurs) > 0) { |
$enErreur = true; |
} |
return $enErreur; |
} |
private function transformerReponseCorpsSuivantMime() { |
switch ($this->resultatService->mime) { |
case 'application/json' : |
if (isset($_GET['callback'])) { |
$contenu = $_GET['callback'].'('.json_encode($this->resultatService->corps).');'; |
} else { |
$contenu = json_encode($this->resultatService->corps); |
} |
$this->resultatService->corps = $contenu; |
break; |
} |
} |
} |
?> |
/tags/v5.12-baouque/services/bibliotheque/Utilisateurs.php |
---|
New file |
0,0 → 1,113 |
<?php |
class Utilisateurs { |
const TPL_URL_WS_ANNUAIRE = 'http://www.tela-botanica.org/service:annuaire:utilisateur/identite-par-courriel/%s'; |
private $courriels = array(); |
private $identites = array(); |
private $clientRest = null; |
/** |
* Prend en paramêtre un tableau de courriels. |
* |
* @param array $courriels un tableau de courriels pour lesquels il faut rechercher les infos d'identité |
*/ |
public function __construct(Array $courriels = array(), RestClient $clientRest = null) { |
$this->courriels = $courriels; |
$this->clientRest = is_null($clientRest) ? new RestClient() : $clientRest; |
} |
public function setCourriels($courriels) { |
$this->courriels = $courriels; |
} |
/** |
* Lance l'interrogation du service de l'annuaire. |
* |
* @return null. |
*/ |
public function chargerIdentites() { |
$this->identites = $this->getIdentites($this->courriels); |
} |
/** |
* Retourne après avoir interrogé un service de l'annuaire, les intitulés correspondant aux |
* courriels des utilisateurs. |
* |
* @return mixed tableau avec en clé le courriel et en valeur l'intitulé de la personne à |
* afficher, false en cas d'erreur ou de résultat vide. |
*/ |
public function getIntitules() { |
$this->chargerIdentites(); |
if (! $this->identites) return false; |
$intitules = array(); |
foreach ($this->identites as $courriel => $infos) { |
$intitules[$courriel] = $infos['intitule']; |
} |
return $intitules; |
} |
/** |
* Retourne un intitulé en fonction d'un courriel. |
* |
* @return String l'intitulé de l'utilisateur ou une chaine vide en cas de problème. |
*/ |
public function getIntitule($courriel) { |
if ($this->contenirCourriel($courriel)) { |
return $this->identites[$courriel]['intitule']; |
} |
return ''; |
} |
/** |
* Retourne l'identifiant de l'utilisateur en fonction d'un courriel. |
* |
* @return String l'id de l'utilisateur ou une chaine vide en cas de problème. |
*/ |
public function getId($courriel) { |
if ($this->contenirCourriel($courriel)) { |
return $this->identites[$courriel]['id']; |
} |
return ''; |
} |
private function contenirCourriel($courriel) { |
return ($this->identites && isset($this->identites[$courriel])) ? true : false; |
} |
private function getIdentites($courriels) { |
// consulterServiceAnnuaire |
$courriels = array_unique($courriels); |
// Trop de courriels dans l'url fait planter la requete |
// Ã cause des limites de taille d'url |
// (150 semble être un bon compromis) |
$courriels_spl = array_chunk($courriels, 150); |
$utilisateursInfos = array(); |
foreach($courriels_spl as $courriels_st) { |
$utilisateursInfosSt = json_decode($this->clientRest->consulter(sprintf(self::TPL_URL_WS_ANNUAIRE, |
implode(',', $courriels_st))), true); |
$utilisateursInfos = array_merge($utilisateursInfos, $utilisateursInfosSt); |
} |
return self::extraireIdentites($utilisateursInfos, $this->courriels); |
} |
static function extraireIdentites($utilisateursInfos, $courriels) { |
$identites = array(); |
foreach ($courriels as $courriel) { |
$info = array('id' => null, 'intitule' => ''); |
if (isset($utilisateursInfos[$courriel])) { |
$info['intitule'] = $utilisateursInfos[$courriel]['intitule']; |
$info['id'] = $utilisateursInfos[$courriel]['id']; |
} else { |
$info['intitule'] = self::tronquerCourriel($courriel); |
} |
$identites[$courriel] = $info; |
} |
return $identites; |
} |
static function tronquerCourriel($courriel) { |
return str_replace(substr($courriel, strpos($courriel, '@')), '@...', $courriel); |
} |
} |
?> |
/tags/v5.12-baouque/services/bibliotheque/Outils.php |
---|
New file |
0,0 → 1,21 |
<?php |
class Outils { |
public static function recupererTableauConfig($parametres) { |
$tableau = array(); |
$tableauPartiel = explode(',', Config::get($parametres)); |
$tableauPartiel = array_map('trim', $tableauPartiel); |
foreach ($tableauPartiel as $champ) { |
if (strpos($champ, '=') === false) { |
$tableau[] = $champ; |
} else { |
list($cle, $val) = explode('=', $champ); |
$clePropre = trim($cle); |
$valeurPropre = trim($val); |
$tableau[$clePropre] = $valeurPropre; |
} |
} |
return $tableau; |
} |
} |
?> |
/tags/v5.12-baouque/services/bibliotheque/Conteneur.php |
---|
New file |
0,0 → 1,59 |
<?php |
class Conteneur { |
protected $parametres = array(); |
protected $partages = array(); |
public function __construct(array $parametres = null) { |
$this->parametres = is_null($parametres) ? array() : $parametres; |
} |
public function getParametre($cle) { |
$valeur = isset($this->parametres[$cle]) ? $this->parametres[$cle] : Config::get($cle); |
return $valeur; |
} |
public function getParametreTableau($cle) { |
$tableau = array(); |
$parametre = $this->getParametre($cle); |
if (empty($parametre) === false) { |
$tableauPartiel = explode(',', $parametre); |
$tableauPartiel = array_map('trim', $tableauPartiel); |
foreach ($tableauPartiel as $champ) { |
if (strpos($champ, '=') === false) { |
$tableau[] = trim($champ); |
} else { |
list($cle, $val) = explode('=', $champ); |
$tableau[trim($cle)] = trim($val); |
} |
} |
} |
return $tableau; |
} |
public function setParametre($cle, $valeur) { |
$this->parametres[$cle] = $valeur; |
} |
public function getBdd() { |
if (!isset($this->partages['Bdd'])){ |
$this->partages['Bdd'] = new Bdd(); |
} |
return $this->partages['Bdd']; |
} |
public function getCacheSimple($options = array()) { |
$cache = new CacheSimple($options); |
return $cache; |
} |
public function getWikipediaBot($options = array()) { |
$wpBot = new WikipediaBot($options); |
return $wpBot; |
} |
public function getUrl($url) { |
$url = new Url($url); |
return $url; |
} |
} |
?> |
/tags/v5.12-baouque/services/bibliotheque/robots/WikipediaBot.php |
---|
New file |
0,0 → 1,158 |
<?php |
class WikipediaBot { |
const HTTP_URL_REQUETE_SEPARATEUR = '&'; |
private $langue = 'fr'; |
private $url = ''; |
private $parametres = array(); |
private $titre = ''; |
private $txt = ''; |
private $userAgent = 'eFloreBot v0.1'; |
private $reponse_entetes = null; |
public function __construct($options = array()) { |
if (array_key_exists('langue', $options)) { |
$this->langue = strtolower($options['langue']); |
} |
} |
public function chargerPage($article) { |
$this->initialiserRequete(); |
$this->url = $this->getBaseApiURL(); |
$this->parametres = array( |
'action' => 'query', |
'prop' => 'revisions', |
'titles' => $article, |
'rvprop' => 'content', |
'redirects' => 1 |
); |
$this->resultats = $this->consulterAPI(); |
$sxGetAID = $this->resultats['query']['pages']; |
$sxGetAID = array_shift($sxGetAID); |
$this->titre = $sxGetAID['title']; |
$this->txt = $sxGetAID['revisions'][0]['*']; |
} |
public function getPageTitre() { |
return $this->titre; |
} |
public function getPageTxt() { |
return $this->txt; |
} |
public function getTaxobox() { |
$taxobox = ''; |
if (preg_match('/([{]{2}Taxobox début.+[{]{2}Taxobox fin[}]{2})/s', $this->txt, $match)) { |
$taxobox = $match[1]; |
} |
return $taxobox; |
} |
public function extraireTaxobox() { |
$taxobox = $this->getTaxobox(); |
$this->txt = str_replace($taxobox, '', $this->txt); |
return $taxobox; |
} |
public function getSectionParNumero($num) { |
$sections = preg_split('/[=]{2}[^=]+[=]{2}/U', $this->txt); |
//Debug::printr($sections); |
$sectionTxt = isset($sections[$num]) ? $sections[$num] : ''; |
return $sectionTxt; |
} |
public function getSectionParTitre($titre) { |
$section = ''; |
if (preg_match('/[=]{2} '.$titre.' [=]{2}(.*)\n\n/sU', $this->txt, $match)) { |
$section = $match[1]; |
} |
return $section; |
} |
public function rendre($wikitxt) { |
$wikitxt .= '<references />'; |
$this->initialiserRequete(); |
$this->url = $this->getBaseApiURL(); |
$this->parametres = array( |
'action' => 'parse', |
'prop' => 'text', |
'text' => $wikitxt |
); |
$this->resultats = $this->consulterAPI(); |
$txt = $this->resultats['parse']['text']['*']; |
$txt = $this->remplacerUrls($txt); |
return $txt; |
} |
private function initialiserRequete() { |
$this->url = ''; |
$this->parametres = array(); |
$this->resultats = array(); |
} |
private function getBaseWpURL() { |
$baseURL = "http://{$this->langue}.wikipedia.org"; |
return $baseURL; |
} |
private function getBaseApiURL() { |
$baseURL = $this->getBaseWpURL().'/w/api.php'; |
return $baseURL; |
} |
private function consulterAPI() { |
$this->parametres['format'] = 'php'; |
$resultat = $this->consulterEnPost(); |
$resultat = unserialize($resultat); |
if (isset($resultat['error'])) { |
throw new Exception($resultat['error']['info'], $resultat['error']['info']); |
} |
return $resultat; |
} |
private function consulterEnPost() { |
return $this->consulter('POST'); |
} |
private function consulter($mode) { |
$entetes = array( |
'Content-type' => 'application/x-www-form-urlencoded', |
'User-Agent' => $this->userAgent); |
$contexte = array('http' => array( |
'method' => $mode, |
'header' => $this->getEnteteChaine($entetes), |
'content' => http_build_query($this->parametres, null, self::HTTP_URL_REQUETE_SEPARATEUR))); |
$contexteFlux = stream_context_create($contexte); |
$flux = fopen($this->url, 'r', false, $contexteFlux); |
if (!$flux) { |
$this->reponse_entetes = $http_response_header; |
$e = "L'ouverture de l'url '{$this->url}' par la méthode HTTP '$mode' a échoué!"; |
throw new Exception($e); |
} |
// Informations sur les en-têtes et métadonnées du flux |
$this->reponse_entetes = stream_get_meta_data($flux); |
// Contenu actuel de $url |
$contenu = stream_get_contents($flux); |
fclose($flux); |
return $contenu; |
} |
private function getEnteteChaine(Array $entetes) { |
$entetesCleVal = array(); |
foreach ($entetes as $cle => $valeur) { |
$entetesCleVal[] = $cle.': '.$valeur; |
} |
return implode("\r\n", $entetesCleVal); |
} |
private function remplacerUrls($txt) { |
$remplacements = array( |
'href="/wiki/' => 'href="'.$this->getBaseWpURL().'/wiki/', |
'href="/w/' => 'href="'.$this->getBaseWpURL().'/w/'); |
$txt = strtr($txt, $remplacements); |
return $txt; |
} |
} |
?> |
/tags/v5.12-baouque/services/bibliotheque/EnteteHttp.php |
---|
New file |
0,0 → 1,7 |
<?php |
class EnteteHttp { |
public $code = RestServeur::HTTP_CODE_OK; |
public $encodage = 'utf-8'; |
public $mime = 'application/json'; |
} |
?> |
/tags/v5.12-baouque/services/bibliotheque/ResultatService.php |
---|
New file |
0,0 → 1,7 |
<?php |
class ResultatService { |
public $mime = 'application/json'; |
public $encodage = 'utf-8'; |
public $corps = ''; |
} |
?> |
/tags/v5.12-baouque/services/apidoc.txt |
---|
New file |
0,0 → 1,8 |
# [ApiDoc](http://apidocjs.com/) permet de docummenter les web services et de générer une documentation. |
La documentation générée doit être placé dans : (http://tela-botanica.net/doc/services/eflore) |
Pour générer cette documentation, placez vous dans le dossier où se trouve le fichier apidoc.json. |
Lancer la commande : ```apidoc -f ".*\\.php$" -i ./modules/0.1/ -o apidoc/``` |
La documentation sera générée dans le dossier "apidoc/" qui ne doit pas être mis dans le gestionnaire de version. |
Property changes: |
Added: svn:eol-style |
+native |
\ No newline at end of property |
/tags/v5.12-baouque/services/index.php |
---|
New file |
0,0 → 1,43 |
<?php |
// Encodage : UTF-8 |
// Permet d'afficher le temps d'execution du service |
$temps_debut = (isset($_GET['chrono']) && $_GET['chrono'] == 1) ? microtime(true) : ''; |
// +-------------------------------------------------------------------------------------------------------------------+ |
/** |
* Serveur |
* |
* Description : initialise le chargement et l'exécution des services web. |
* |
//Auteur original : |
* @author auteur <aut@tela-botanica.org> |
* @copyright Tela-Botanica 1999-2008 |
* @licence GPL v3 & CeCILL v2 |
* @version $Id$ |
*/ |
// +-------------------------------------------------------------------------------------------------------------------+ |
// Le fichier autoload.inc.php du Framework de Tela Botanica doit être appelée avant tout autre chose dans l'application. |
// Sinon, rien ne sera chargé. |
// Chemin du fichier chargeant le framework requis |
$framework = dirname(__FILE__).DIRECTORY_SEPARATOR.'framework.php'; |
if (!file_exists($framework)) { |
$e = "Veuillez paramétrer l'emplacement et la version du Framework dans le fichier $framework"; |
trigger_error($e, E_USER_ERROR); |
} else { |
// Inclusion du Framework |
require_once $framework; |
// Ajout d'information concernant cette application |
Framework::setCheminAppli(__FILE__);// Obligatoire |
Framework::setInfoAppli(Config::get('info')); |
// Initialisation et lancement du serveur |
$Serveur = new RestServeur(); |
$Serveur->executer(); |
// Affiche le temps d'execution du service |
if (isset($_GET['chrono']) && $_GET['chrono'] == 1) { |
$temps_fin = microtime(true); |
echo 'Temps d\'execution : '.round($temps_fin - $temps_debut, 4); |
} |
} |
?> |
/tags/v5.12-baouque/services/composer.lock |
---|
New file |
0,0 → 1,81 |
{ |
"_readme": [ |
"This file locks the dependencies of your project to a known state", |
"Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", |
"This file is @generated automatically" |
], |
"hash": "6169c068e0d2d9a1af5618bcd904f161", |
"packages": [ |
{ |
"name": "jsor/proj4php", |
"version": "dev-master", |
"source": { |
"type": "git", |
"url": "https://github.com/jsor/proj4php.git", |
"reference": "4a991ef681d3f5266ddf07697218ec4f2f976dcf" |
}, |
"dist": { |
"type": "zip", |
"url": "https://api.github.com/repos/jsor/proj4php/zipball/4a991ef681d3f5266ddf07697218ec4f2f976dcf", |
"reference": "4a991ef681d3f5266ddf07697218ec4f2f976dcf", |
"shasum": "" |
}, |
"require": { |
"php": ">=5.1.0" |
}, |
"type": "library", |
"autoload": { |
"classmap": [ |
"src/" |
] |
}, |
"notification-url": "https://packagist.org/downloads/", |
"license": [ |
"LGPL-3.0" |
], |
"authors": [ |
{ |
"name": "Jan Sorgalla", |
"email": "jsorgalla@googlemail.com", |
"homepage": "http://sorgalla.com", |
"role": "maintainer" |
}, |
{ |
"name": "Rodrigue VILLETARD", |
"homepage": "http://sourceforge.net/users/gorghoa", |
"role": "developer" |
}, |
{ |
"name": "Moquet", |
"homepage": "http://sourceforge.net/users/julien2512", |
"role": "developer" |
} |
], |
"description": "LGPL public translation of proj4js for PHP", |
"homepage": "http://sourceforge.net/projects/proj4php/", |
"keywords": [ |
"geo", |
"proj4", |
"projection" |
], |
"time": "2014-06-01 18:04:04" |
} |
], |
"packages-dev": [ |
], |
"aliases": [ |
], |
"minimum-stability": "stable", |
"stability-flags": { |
"jsor/proj4php": 20 |
}, |
"prefer-stable": false, |
"platform": [ |
], |
"platform-dev": [ |
] |
} |
/tags/v5.12-baouque/services/presentations/images/graphiques/climat.svg |
---|
New file |
0,0 → 1,114 |
<?xml version="1.0" encoding="utf-8"?> |
<svg version="1.1" id="graphique_sol" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" |
y="0px" width="500px" height="180px" viewBox="0 0 500 180" enable-background="new 0 0 500 180" xml:space="preserve"> |
<style id="cssGraphique" type="text/css"> |
@CHARSET "UTF-8"; |
.fond { |
fill:#F8F8F8; |
stroke:#F8F8F8; |
stroke-width:3; |
} |
.cartouche { |
stroke:#000; |
fill:#F8F8F8; |
stroke-width:1.5; |
} |
.graduation { |
stroke:#000; |
stroke-width:1.5; |
stroke-dasharray:1,1; |
fill:none; |
} |
.median { |
stroke:#000; |
stroke-width:1.5; |
fill:none; |
} |
.ligne_grad { |
stroke:#000; |
stroke-width:1.5; |
stroke-dasharray:1,1; |
fill:none; |
} |
.cache { |
fill:#F8F8F8; |
} |
.titre { |
fill:#000; |
font-family:Arial; |
font-size:13px; |
} |
.min_max { |
fill:#000; |
font-family:Arial; |
font-size:11px; |
} |
/* pour faire apparaitre un curseur*/ |
.curseur { |
fill:#EA6624; |
stroke:#FFFFFF; |
stroke-width:3; |
} |
/* pour faire disparaitre un curseur*/ |
.disparu { |
fill:none; |
stroke:none; |
stroke-width:0; |
} |
</style> |
<rect id="fond" x="0px" y="0px" class="fond" width="510" height="180"/> |
<line class="ligne_grad" x1="172.517" y1="31.48" x2="425.655" y2="31.48"/> |
<line class="ligne_grad" x1="172.517" y1="65.363" x2="425.655" y2="65.363"/> |
<line class="ligne_grad" x1="172.517" y1="102.063" x2="425.655" y2="102.063"/> |
<line class="ligne_grad" x1="172.517" y1="140.738" x2="425.655" y2="140.738"/> |
<line id="un" class="graduation" x1="172.897" y1="26.943" x2="172.897" y2="144.396"/> |
<line id="deux" class="graduation" x1="204.095" y1="26.943" x2="204.095" y2="144.396"/> |
<line id="trois" class="graduation" x1="234.902" y1="26.943" x2="234.902" y2="144.396"/> |
<line id="quatre" class="graduation" x1="267.824" y1="26.943" x2="267.824" y2="144.396"/> |
<line id="six" class="graduation" x1="333.273" y1="28.943" x2="333.273" y2="146.396"/> |
<line id="sept" class="graduation" x1="363.273" y1="26.943" x2="363.273" y2="144.396"/> |
<line id="huit" class="graduation" x1="394.395" y1="26.943" x2="394.395" y2="144.396"/> |
<line id="neuf" class="graduation" x1="426.036" y1="26.943" x2="426.036" y2="144.396"/> |
<rect x="145.794" y="36.552" class="cache" width="295.217" height="23.063"/> |
<rect x="146.448" y="69.725" class="cache" width="285.583" height="26.316"/> |
<rect x="142.52" y="107.477" class="cache" width="286.718" height="28.485"/> |
<line id="cinq" class="median" x1="299.883" y1="133.699" x2="299.883" y2="148.777"/> |
<line class="median" x1="299.883" y1="95.023" x2="299.883" y2="110.102"/> |
<line class="median" x1="299.883" y1="58.323" x2="299.883" y2="73.402"/> |
<line class="median" x1="299.883" y1="24.441" x2="299.883" y2="39.521"/> |
<circle id="ve_lumiere" class="disparu" cx="174.27" cy="32.431" r="11.505"/> |
<circle id="ve_humidite_atmos" class="disparu" cx="175.562" cy="67.112" r="11.504"/> |
<circle id="ve_temperature" class="disparu" cx="177.369" cy="103.3" r="11.505"/> |
<circle id="ve_continentalite" class="disparu" cx="177.88" cy="140.243" r="11.504"/> |
<text transform="matrix(1 0 0 1 171.6033 53.9297)" class="min_max">sec </text> |
<text transform="matrix(1 0 0 1 171.6033 90.8027)" class="min_max">froid</text> |
<text transform="matrix(1 0 0 1 398.8201 90.8027)" class="min_max"> chaud</text> |
<text transform="matrix(1 0 0 1 171.6033 126.4297)" class="min_max">marin</text> |
<text transform="matrix(1 0 0 1 378.4207 129.0361)" class="min_max">continental</text> |
<text transform="matrix(1 0 0 1 396.3406 55.5947)" class="min_max">humide</text> |
<text transform="matrix(1 0 0 1 170.8499 21.5605)" class="min_max">ombre</text> |
<text transform="matrix(1 0 0 1 396.3484 20.0527)" class="min_max">lumière</text> |
<path class="cartouche" d="M160.403,30.955c0,6.582-5.337,11.918-11.919,11.918H21.352 |
c-6.582,0-11.919-5.336-11.919-11.918v-0.993c0-6.582,5.337-11.919,11.919-11.919h127.132c6.582,0,11.919,5.337,11.919,11.919 |
V30.955L160.403,30.955z"/> |
<path class="cartouche" d="M160.403,66.71c0,6.582-5.337,11.919-11.919,11.919H21.352 |
c-6.582,0-11.919-5.337-11.919-11.919v-0.993c0-6.582,5.337-11.918,11.919-11.918h127.132c6.582,0,11.919,5.336,11.919,11.918V66.71 |
L160.403,66.71z"/> |
<path class="cartouche" d="M160.403,103.459c0,6.583-5.337,11.92-11.919,11.92H21.352 |
c-6.582,0-11.919-5.337-11.919-11.92v-0.992c0-6.582,5.337-11.919,11.919-11.919h127.132c6.582,0,11.919,5.337,11.919,11.919 |
V103.459L160.403,103.459z"/> |
<path class="cartouche" d="M160.403,140.209c0,6.582-5.337,11.918-11.919,11.918H21.352 |
c-6.582,0-11.919-5.336-11.919-11.918v-0.993c0-6.582,5.337-11.919,11.919-11.919h127.132c6.582,0,11.919,5.337,11.919,11.919 |
V140.209L160.403,140.209z"/> |
<text transform="matrix(1 0 0 1 44.2634 144.0039)" class="titre">Continentalité</text> |
<text transform="matrix(1 0 0 1 47.7502 106.7275)" class="titre">Temperature</text> |
<text transform="matrix(1 0 0 1 18.3655 71.374)" font-family="Arial" font-size="11px">Humidité Atmosphérique </text> |
<text transform="matrix(1 0 0 1 61.6628 35.0635)" class="titre">Lumière</text> |
</svg> |
/tags/v5.12-baouque/services/presentations/images/graphiques/sol.svg |
---|
New file |
0,0 → 1,135 |
<?xml version="1.0" encoding="utf-8"?> |
<svg version="1.1" id="graphique_sol" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" |
y="0px" width="500px" height="250px" viewBox="0 0 500 250" enable-background="new 0 0 500 250" xml:space="preserve"> |
<style id="cssGraphique" type="text/css"> |
@CHARSET "UTF-8"; |
.fond { |
fill:#F8F8F8; |
stroke:#F8F8F8; |
stroke-width:3; |
} |
.cartouche { |
stroke:#000; |
fill:#F8F8F8; |
stroke-width:1.5; |
} |
.graduation { |
stroke:#000; |
stroke-width:1.5; |
stroke-dasharray:1,1; |
} |
.median { |
stroke:#000; |
stroke-width:1.5; |
} |
.ligne_grad { |
stroke:#000; |
stroke-width:1.5; |
stroke-dasharray:1,1; |
} |
.cache { |
fill:#F8F8F8; |
} |
.titre { |
fill:#000; |
font-family:Arial; |
font-size:13px; |
} |
.min_max { |
fill:#000; |
font-family:Arial; |
font-size:11px; |
} |
/* pour faire apparaitre un curseur*/ |
.curseur { |
fill:#EA6624; |
stroke:#FFFFFF; |
stroke-width:3; |
} |
/* pour faire disparaitre un curseur*/ |
.disparu { |
fill:none; |
stroke:none; |
stroke-width:0; |
} |
</style> |
<rect id="fond" x="0px" y="0px" class="fond" width="500px" height="250px"/> |
<line class="ligne_grad" x1="173.634" y1="39.048" x2="426.921" y2="39.048"/> |
<line class="ligne_grad" x1="173.634" y1="72.931" x2="426.921" y2="72.931"/> |
<line class="ligne_grad" x1="173.634" y1="109.631" x2="426.921" y2="109.631"/> |
<line class="ligne_grad" x1="173.634" y1="148.306" x2="426.921" y2="148.306"/> |
<line class="ligne_grad" x1="174.24" y1="187.569" x2="427.527" y2="187.569"/> |
<line class="ligne_grad" x1="174.24" y1="225.509" x2="427.527" y2="225.509"/> |
<line id="un" class="graduation" x1="174.014" y1="35.51" x2="174.014" y2="231.756"/> |
<line id="deux" class="graduation" x1="205.213" y1="34.51" x2="205.213" y2="230.756"/> |
<line id="trois" class="graduation" x1="240.018" y1="34.51" x2="240.018" y2="230.756"/> |
<line id="quatre" class="graduation" x1="268.941" y1="34.51" x2="268.941" y2="230.756"/> |
<line id="six" class="graduation" x1="333.587" y1="33.51" x2="333.587" y2="229.756"/> |
<line id="sept" class="graduation" x1="364.39" y1="34.51" x2="364.39" y2="230.756"/> |
<line id="huit" class="graduation" x1="395.513" y1="34.51" x2="395.513" y2="230.756"/> |
<line id="neuf" class="graduation" x1="427.156" y1="35.51" x2="427.156" y2="231.756"/> |
<rect x="164.926" y="44.12" class="cache" width="283.204" height="23.061"/> |
<rect x="165.562" y="77.292" class="cache" width="273.464" height="26.314"/> |
<rect x="167.582" y="115.044" class="cache" width="268.614" height="28.484"/> |
<rect x="167.589" y="194.397" class="cache" width="274.854" height="25.322"/> |
<rect x="167.226" y="153.677" class="cache" width="272.464" height="29.293"/> |
<line id="cinq" class="median" x1="301.5" y1="218.481" x2="301.5" y2="233.049"/> |
<line class="median" x1="301.5" y1="180.033" x2="301.5" y2="195.11"/> |
<line class="median" x1="301.5" y1="140.767" x2="301.5" y2="155.845"/> |
<line class="median" x1="301.5" y1="102.091" x2="301.5" y2="117.17"/> |
<line class="median" x1="301.5" y1="65.391" x2="301.5" y2="80.469"/> |
<line class="median" x1="301.5" y1="31.509" x2="301.5" y2="46.588"/> |
<circle id="ve_reaction_sol" class="disparu" cx="423.388" cy="40" r="11.504"/> |
<circle id="ve_humidite_edaph" class="disparu" cx="176.68" cy="74.68" r="11.504"/> |
<circle id="ve_texture_sol" class="disparu" cx="424.487" cy="110.868" r="11.504"/> |
<circle id="ve_salinite" class="disparu" cx="425.141" cy="188.521" r="11.506"/> |
<circle id="ve_mat_org_sol" class="disparu" cx="176.438" cy="225.271" r="11.504"/> |
<circle id="ve_nutriments_sol" class="disparu" cx="176.997" cy="147.809" r="11.505"/> |
<text transform="matrix(1 0 0 1 172.72 61.4976)" class="min_max">sec</text> |
<text transform="matrix(1 0 0 1 172.72 98.3706)" class="min_max">argile</text> |
<text transform="matrix(1 0 0 1 389.4495 98.3706)" class="min_max"> rochers</text> |
<text transform="matrix(1 0 0 1 172.72 133.9976)" class="min_max">pauvre</text> |
<text transform="matrix(1 0 0 1 405.5208 136.604)" class="min_max">riche</text> |
<text transform="matrix(1 0 0 1 392.4573 63.1626)" class="min_max">humide</text> |
<text transform="matrix(1 0 0 1 171.9666 29.1284)" class="min_max">acide</text> |
<text transform="matrix(1 0 0 1 390.4397 27.6206)" class="min_max">basique</text> |
<text transform="matrix(1 0 0 1 172.72 177.8887)" class="min_max">non-tolérant</text> |
<text transform="matrix(1 0 0 1 372.3596 176.3809)" class="min_max">très tolérant</text> |
<text transform="matrix(1 0 0 1 173.4744 211.0957)" class="min_max">pauvre</text> |
<text transform="matrix(1 0 0 1 400.5208 212.7617)" class="min_max">riche</text> |
<path class="cartouche" d="M161.519,39.522c0,6.582-5.336,11.919-11.918,11.919H22.469 |
c-6.582,0-11.919-5.337-11.919-11.919v-0.993c0-6.581,5.337-11.918,11.919-11.918h127.133c6.582,0,11.918,5.336,11.918,11.918 |
L161.519,39.522L161.519,39.522z"/> |
<path class="cartouche" d="M161.519,75.279c0,6.581-5.336,11.919-11.918,11.919H22.469 |
c-6.582,0-11.919-5.337-11.919-11.919v-0.993c0-6.582,5.337-11.918,11.919-11.918h127.133c6.582,0,11.918,5.336,11.918,11.918 |
L161.519,75.279L161.519,75.279z"/> |
<path class="cartouche" d="M161.519,112.026c0,6.582-5.336,11.918-11.918,11.918H22.469 |
c-6.582,0-11.919-5.336-11.919-11.918v-0.993c0-6.582,5.337-11.918,11.919-11.918h127.133c6.582,0,11.918,5.337,11.918,11.918 |
L161.519,112.026L161.519,112.026z"/> |
<path class="cartouche" d="M161.519,148.774c0,6.582-5.336,11.92-11.918,11.92H22.469 |
c-6.582,0-11.919-5.338-11.919-11.92v-0.991c0-6.582,5.337-11.919,11.919-11.919h127.133c6.582,0,11.918,5.337,11.918,11.919 |
L161.519,148.774L161.519,148.774z"/> |
<path class="cartouche" d="M161.519,185.524c0,6.582-5.336,11.918-11.918,11.918H22.469 |
c-6.582,0-11.919-5.336-11.919-11.918v-0.992c0-6.584,5.337-11.92,11.919-11.92h127.133c6.582,0,11.918,5.336,11.918,11.92 |
L161.519,185.524L161.519,185.524z"/> |
<path class="cartouche" d="M161.519,223.267c0,6.582-5.336,11.918-11.918,11.918H22.469 |
c-6.582,0-11.919-5.336-11.919-11.918v-0.992c0-6.582,5.337-11.92,11.919-11.92h127.133c6.582,0,11.918,5.338,11.918,11.92 |
L161.519,223.267L161.519,223.267z"/> |
<text transform="matrix(1 0 0 1 47.4924 152.5718)" class="titre" >Nutriments </text> |
<text transform="matrix(1 0 0 1 59.2161 117.2817)" class="titre" >Texture </text> |
<text transform="matrix(1 0 0 1 54.1917 80.3804)" class="titre" >Humidité </text> |
<text transform="matrix(1 0 0 1 39.5261 43.6313)" class="titre" >Réaction (pH)</text> |
<text transform="matrix(1 0 0 1 61.3074 188.9844)" class="titre" >Salinité</text> |
<text transform="matrix(1 0 0 1 23.5935 226.4434)" class="titre" >Matière Organique</text> |
</svg> |
/tags/v5.12-baouque/services/presentations/images/graphiques/climat_min_max.svg |
---|
New file |
0,0 → 1,133 |
<?xml version="1.0" encoding="utf-8"?> |
<svg version="1.1" id="graphique_climat" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" |
y="0px" width="500px" height="180px" viewBox="0 0 500 180" enable-background="new 0 0 500 180" xml:space="preserve"> |
<style id="cssGraphique" type="text/css"> |
@CHARSET "UTF-8"; |
.fond { |
fill:#F8F8F8; |
} |
.graduation, .lignes_grad { |
fill:none; |
stroke:#000000; |
stroke-width:1.5; |
stroke-dasharray:1,1; |
} |
.median { |
fill:none; |
stroke:#000000; |
stroke-width:1.5; |
} |
.cartouche { |
fill:#F8F8F8; |
stroke:#000000; |
stroke-width:1.5; |
} |
.cache { |
fill:#F8F8F8; |
} |
.titre { |
font-family:Arial; |
font-size:13px; |
} |
.min_max { |
font-family:Arial; |
font-size:11px; |
} |
</style> |
<rect x="0px" y="0px" id="fond" class="fond" width="500px" height="180px"/> |
<line class="graduation" x1="183.897" y1="44.5" x2="183.897" y2="169.207"/> |
<line class="graduation" x1="215.095" y1="46.081" x2="215.095" y2="169.207"/> |
<line class="graduation" x1="245.902" y1="45.596" x2="245.902" y2="169.207"/> |
<line class="graduation" x1="278.824" y1="45.596" x2="278.824" y2="169.207"/> |
<line class="graduation" stroke="#000000" stroke-width="1.5" x1="310.939" y1="45.708" x2="310.939" y2="168.834"/> |
<line class="graduation" stroke="#000000" stroke-width="1.5" x1="344.273" y1="45.375" x2="344.273" y2="168.5"/> |
<line class="graduation" x1="374.273" y1="44.5" x2="374.273" y2="169.207"/> |
<line class="graduation" x1="405.395" y1="44.5" x2="405.395" y2="169.207"/> |
<line class="graduation" x1="437.033" y1="45.596" x2="437.033" y2="169.207"/> |
<line class="graduation" x1="467.783" y1="45.596" x2="467.783" y2="169.207"/> |
<rect x="181.794" y="53.104" class="cache" width="287.592" height="27.688"/> |
<rect x="181.794" y="89.62" class="cache" width="290.717" height="30.47"/> |
<rect x="181.794" y="128.62" class="cache" width="291.342" height="31.804"/> |
<line class="lignes_grad" x1="183.517" y1="46.48" x2="468.617" y2="46.48"/> |
<line class="lignes_grad" x1="183.517" y1="82.738" x2="469" y2="82.738"/> |
<line class="lignes_grad" x1="183.517" y1="122.063" x2="468.5" y2="122.063"/> |
<line class="lignes_grad" x1="183.517" y1="161.738" x2="469" y2="161.738"/> |
<text transform="matrix(1 0 0 1 182.6033 71.9297)" class="min_max">sec </text> |
<text transform="matrix(0.9133 0 0 1 182.6033 109.7148)" class="min_max"> froid</text> |
<text transform="matrix(0.9133 0 0 1 429.8201 109.7148)" class="min_max"> chaud</text> |
<text transform="matrix(1 0 0 1 182.6033 150.0361)" class="min_max">marin</text> |
<text transform="matrix(1 0 0 1 409.4207 150.0361)" class="min_max">continental</text> |
<text transform="matrix(1 0 0 1 427.3406 72.5947)" class="min_max">humide</text> |
<text transform="matrix(1 0 0 1 183.8499 37.5605)" class="min_max">ombre</text> |
<text transform="matrix(1 0 0 1 427.3484 36.0527)" class="min_max">lumière</text> |
<path class="cartouche" d="M171.403,44.955c0,6.582-5.337,11.918-11.919,11.918H32.352 |
c-6.582,0-11.919-5.336-11.919-11.918v-0.993c0-6.582,5.337-11.919,11.919-11.919h127.132c6.582,0,11.919,5.337,11.919,11.919 |
V44.955L171.403,44.955z"/> |
<path class="cartouche" d="M171.403,80.71c0,6.582-5.337,11.919-11.919,11.919H32.352 |
c-6.582,0-11.919-5.337-11.919-11.919v-0.993c0-6.582,5.337-11.918,11.919-11.918h127.132c6.582,0,11.919,5.336,11.919,11.918V80.71 |
L171.403,80.71z"/> |
<path class="cartouche" d="M171.403,117.459c0,6.583-5.337,11.92-11.919,11.92H32.352 |
c-6.582,0-11.919-5.337-11.919-11.92v-0.992c0-6.582,5.337-11.919,11.919-11.919h127.132c6.582,0,11.919,5.337,11.919,11.919 |
V117.459L171.403,117.459z"/> |
<path class="cartouche" d="M171.403,154.209c0,6.582-5.337,11.918-11.919,11.918H32.352 |
c-6.582,0-11.919-5.336-11.919-11.918v-0.993c0-6.582,5.337-11.919,11.919-11.919h127.132c6.582,0,11.919,5.337,11.919,11.919 |
V154.209L171.403,154.209z"/> |
<text transform="matrix(1 0 0 1 55.2629 158.0039)" class="titre"> Continentalité </text> |
<text transform="matrix(1 0 0 1 58.7502 120.7275)" class="titre"> Temperature </text> |
<text transform="matrix(1 0 0 1 29.3655 84.374)" font-family="Arial" font-size="11px"> Humidité Atmosphérique </text> |
<text transform="matrix(1 0 0 1 72.6628 49.0635)" class="titre"> Lumière </text> |
<!-- ne pas separer le style pour les rectangles --> |
<rect id="un_ve_humidite_atmos" x="183.573" y="76.5" fill="none" width="31.198" height="5"/> |
<rect id="deux_ve_humidite_atmos" x="214.771" y="76.5" fill="none" width="30.812" height="5"/> |
<rect id="trois_ve_humidite_atmos" x="245.577" y="76.5" fill="none" width="32.923" height="5"/> |
<rect id="quatre_ve_humidite_atmos" x="278.5" y="76.5" fill="none" width="32.443" height="5"/> |
<rect id="cinq_ve_humidite_atmos" x="310.948" y="76.5" fill="none" width="33" height="5"/> |
<rect id="six_ve_humidite_atmos" x="343.948" y="76.5" fill="none" width="30" height="5"/> |
<rect id="sept_ve_humidite_atmos" x="373.948" y="76.5" fill="none" width="31.122" height="5"/> |
<rect id="huit_ve_humidite_atmos" x="405.071" y="76.5" fill="none" width="31.646" height="5"/> |
<rect id="neuf_ve_humidite_atmos" x="436.52" y="76.5" fill="none" width="31.644" height="5"/> |
<rect id="un_ve_lumiere" x="183.897" y="40" fill="none" width="31.198" height="5"/> |
<rect id="deux_ve_lumiere" x="215.095" y="40" fill="none" width="30.807" height="5"/> |
<rect id="trois_ve_lumiere" x="245.902" y="40" fill="none" width="32.928" height="5"/> |
<rect id="quatre_ve_lumiere" x="278.824" y="40" fill="none" width="32.443" height="5"/> |
<rect id="cinq_ve_lumiere" x="311.273" y="40" fill="none" width="33" height="5"/> |
<rect id="six_ve_lumiere" x="344.273" y="40" fill="none" width="30" height="5"/> |
<rect id="sept_ve_lumiere" x="374.273" y="40" fill="none" width="31.122" height="5"/> |
<rect id="huit_ve_lumiere" x="405.395" y="40" fill="none" width="31.644" height="5"/> |
<rect id="neuf_ve_lumiere" x="437.02" y="40" fill="none" width="31.644" height="5"/> |
<rect id="un_ve_temperature" x="184.124" y="115.5" fill="none" width="31.193" height="5"/> |
<rect id="deux_ve_temperature" x="215.323" y="115.5" fill="none" width="30.811" height="5"/> |
<rect id="trois_ve_temperature" x="246.129" y="115.5" fill="none" width="32.924" height="5"/> |
<rect id="quatre_ve_temperature" x="279.052" y="115.5" fill="none" width="32.447" height="5"/> |
<rect id="cinq_ve_temperature" x="311.5" y="115.5" fill="none" width="33" height="5"/> |
<rect id="six_ve_temperature" x="344.5" y="115.5" fill="none" width="30" height="5"/> |
<rect id="sept_ve_temperature" x="374.5" y="115.5" fill="none" width="31.118" height="5"/> |
<rect id="huit_ve_temperature" x="405.618" y="115.5" fill="none" width="31.646" height="5"/> |
<rect id="neuf_ve_temperature" x="437.52" y="115.5" fill="none" width="31.644" height="5"/> |
<rect id="un_ve_continentalite" x="184.124" y="155.5" fill="none" width="31.193" height="5"/> |
<rect id="deux_ve_continentalite" x="215.323" y="155.5" fill="none" width="30.811" height="5"/> |
<rect id="trois_ve_continentalite" x="246.129" y="155.5" fill="none" width="32.924" height="5"/> |
<rect id="quatre_ve_continentalite" x="279.052" y="155.5" fill="none" width="32.447" height="5"/> |
<rect id="cinq_ve_continentalite" x="311.5" y="155.5" fill="none" width="33" height="5"/> |
<rect id="six_ve_continentalite" x="344.5" y="155.5" fill="none" width="30" height="5"/> |
<rect id="sept_ve_continentalite" x="374.5" y="155.5" fill="none" width="31.118" height="5"/> |
<rect id="huit_ve_continentalite" x="405.618" y="155.5" fill="none" width="31.646" height="5"/> |
<rect id="neuf_ve_continentalite" x="437.52" y="155.5" fill="none" width="31.644" height="5"/> |
</svg> |
/tags/v5.12-baouque/services/presentations/images/graphiques/sol_min_max.svg |
---|
New file |
0,0 → 1,172 |
<?xml version="1.0" encoding="utf-8"?> |
<svg version="1.1" id="graphique_sol" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" |
y="0px" width="500px" height="250px" viewBox="0 0 500 250" enable-background="new 0 0 500 250" xml:space="preserve"> |
<style id="cssGraphique" type="text/css"> |
@CHARSET "UTF-8"; |
.fond { |
fill:#F8F8F8; |
} |
.graduation { |
fill:none; |
stroke:#000000; |
stroke-width:1.5; |
stroke-dasharray:1.5,1.5; |
} |
.ligne_grad { |
fill:none; |
stroke:#000000; |
stroke-width:1.5; |
stroke-dasharray:1.5,1.5; |
} |
.median { |
fill:none; |
stroke:#000000; |
stroke-width:1.5; |
stroke-dasharray:1.5,1.5; |
} |
.cartouche { |
fill:#F8F8F8; |
stroke:#000000; |
stroke-width:1.5; |
} |
.cache { |
fill:#F8F8F8; |
} |
.titre { |
font-family:Arial; |
font-size:13px; |
} |
.min_max { |
font-family:Arial; |
font-size:11px; |
} |
</style> |
<rect id="fond" x="0px" y="0px" class="fond" width="510px" height="250px"/> |
<line class="graduation" x1="181.897" y1="41.463" x2="181.897" y2="237.463"/> |
<line class="graduation" x1="213.095" y1="43.044" x2="213.095" y2="237.463"/> |
<line class="graduation" x1="243.902" y1="42.559" x2="243.902" y2="237.463"/> |
<line class="graduation" x1="276.824" y1="42.559" x2="276.824" y2="237.463"/> |
<line class="median" x1="308.939" y1="42.671" x2="308.939" y2="237.463"/> |
<line class="median" x1="342.273" y1="42.338" x2="342.273" y2="237.463"/> |
<line class="graduation" x1="372.273" y1="41.463" x2="372.273" y2="236.463"/> |
<line class="graduation" x1="403.395" y1="41.463" x2="403.395" y2="236.463"/> |
<line class="graduation" x1="435.031" y1="42.559" x2="435.031" y2="235.463"/> |
<line class="graduation" x1="465.781" y1="42.559" x2="465.781" y2="237.463"/> |
<rect x="179.794" y="50.066" class="cache" width="292.092" height="28.688"/> |
<rect x="179.794" y="86.583" class="cache" width="290.717" height="31.47"/> |
<rect x="179.794" y="163.583" class="cache" width="290.717" height="30.47"/> |
<rect x="177.794" y="200.583" class="cache" width="294.717" height="30.47"/> |
<rect x="179.794" y="125.583" class="cache" width="291.342" height="31.804"/> |
<line class="ligne_grad" x1="181.517" y1="43.443" x2="466.615" y2="43.443"/> |
<line class="ligne_grad" x1="181.517" y1="79.701" x2="467" y2="79.701"/> |
<line class="ligne_grad" x1="181.517" y1="119.025" x2="466.5" y2="119.025"/> |
<line class="ligne_grad" x1="181.517" y1="158.701" x2="467" y2="158.701"/> |
<line class="ligne_grad" x1="182.517" y1="193.701" x2="468" y2="193.701"/> |
<line class="ligne_grad" x1="181.517" y1="230.701" x2="467" y2="230.701"/> |
<path class="cartouche" d="M169.403,41.918c0,6.582-5.337,11.918-11.919,11.918H30.352 |
c-6.582,0-11.919-5.336-11.919-11.918v-0.993c0-6.582,5.337-11.919,11.919-11.919h127.132c6.582,0,11.919,5.337,11.919,11.919 |
V41.918L169.403,41.918z"/> |
<path class="cartouche" d="M169.403,77.673c0,6.582-5.337,11.919-11.919,11.919H30.352 |
c-6.582,0-11.919-5.337-11.919-11.919V76.68c0-6.582,5.337-11.918,11.919-11.918h127.132c6.582,0,11.919,5.336,11.919,11.918V77.673 |
L169.403,77.673z"/> |
<path class="cartouche" d="M169.403,114.422c0,6.583-5.337,11.92-11.919,11.92H30.352 |
c-6.582,0-11.919-5.337-11.919-11.92v-0.992c0-6.582,5.337-11.919,11.919-11.919h127.132c6.582,0,11.919,5.337,11.919,11.919 |
V114.422L169.403,114.422z"/> |
<path class="cartouche" d="M169.403,151.172c0,6.582-5.337,11.918-11.919,11.918H30.352 |
c-6.582,0-11.919-5.336-11.919-11.918v-0.992c0-6.582,5.337-11.92,11.919-11.92h127.132c6.582,0,11.919,5.338,11.919,11.92V151.172 |
L169.403,151.172z"/> |
<path class="cartouche" d="M168.519,186.486c0,6.582-5.336,11.918-11.918,11.918H29.469 |
c-6.582,0-11.919-5.336-11.919-11.918v-0.991c0-6.584,5.337-11.921,11.919-11.921h127.133c6.582,0,11.918,5.337,11.918,11.921 |
L168.519,186.486L168.519,186.486z"/> |
<path class="cartouche" d="M168.519,223.23c0,6.582-5.336,11.918-11.918,11.918H29.469 |
c-6.582,0-11.919-5.336-11.919-11.918v-0.991c0-6.582,5.337-11.921,11.919-11.921h127.133c6.582,0,11.918,5.339,11.918,11.921 |
L168.519,223.23L168.519,223.23z"/> |
<rect id="un_ve_reaction_sol" x="181.897" y="36.963" fill="none" width="31.198" height="5"/> |
<rect id="deux_ve_reaction_sol" x="213.095" y="36.963" fill="none" width="30.807" height="5"/> |
<rect id="trois_ve_reaction_sol" x="243.902" y="36.963" fill="none" width="32.93" height="5"/> |
<rect id="quatre_ve_reaction_sol" x="276.824" y="36.963" fill="none" width="32.441" height="5"/> |
<rect id="cinq_ve_reaction_sol" x="309.273" y="36.963" fill="none" width="33" height="5"/> |
<rect id="six_ve_reaction_sol" x="342.273" y="36.963" fill="none" width="30" height="5"/> |
<rect id="sept_ve_reaction_sol" x="372.273" y="36.963" fill="none" width="31.122" height="5"/> |
<rect id="huit_ve_reaction_sol" x="403.395" y="36.963" fill="none" width="31.644" height="5"/> |
<rect id="neuf_ve_reaction_sol" x="435.02" y="36.963" fill="none" width="31.644" height="5"/> |
<rect id="un_ve_humidite_edaph" x="181.573" y="73.463" fill="none" width="31.198" height="5"/> |
<rect id="deux_ve_humidite_edaph" x="212.771" y="73.463" fill="none" width="30.813" height="5"/> |
<rect id="trois_ve_humidite_edaph" x="243.577" y="73.463" fill="none" width="32.923" height="5"/> |
<rect id="quatre_ve_humidite_edaph" x="276.5" y="73.463" fill="none" width="32.441" height="5"/> |
<rect id="cinq_ve_humidite_edaph" x="308.948" y="73.463" fill="none" width="33" height="5"/> |
<rect id="six_ve_humidite_edaph" x="341.948" y="73.463" fill="none" width="30" height="5"/> |
<rect id="sept_ve_humidite_edaph" x="371.948" y="73.463" fill="none" width="31.122" height="5"/> |
<rect id="huit_ve_humidite_edaph" x="403.071" y="73.463" fill="none" width="31.646" height="5"/> |
<rect id="neuf_ve_humidite_edaph" x="434.52" y="73.463" fill="none" width="31.644" height="5"/> |
<rect id="un_ve_texture_sol" x="182.124" y="112.463" fill="none" width="31.191" height="5"/> |
<rect id="deux_ve_texture_sol" x="213.323" y="112.463" fill="none" width="30.813" height="5"/> |
<rect id="trois_ve_texture_sol" x="244.129" y="112.463" fill="none" width="32.923" height="5"/> |
<rect id="quatre_ve_texture_sol" x="277.052" y="112.463" fill="none" width="32.448" height="5"/> |
<rect id="cinq_ve_texture_sol" x="309.5" y="112.463" fill="none" width="33" height="5"/> |
<rect id="six_ve_texture_sol" x="342.5" y="112.463" fill="none" width="30" height="5"/> |
<rect id="sept_ve_texture_sol" x="372.5" y="112.463" fill="none" width="31.116" height="5"/> |
<rect id="huit_ve_texture_sol" x="403.616" y="112.463" fill="none" width="31.646" height="5"/> |
<rect id="neuf_ve_texture_sol" x="435.52" y="112.463" fill="none" width="31.644" height="5"/> |
<rect id="un_ve_nutriments_sol" x="182.124" y="152.463" fill="none" width="31.191" height="5"/> |
<rect id="deux_ve_nutriments_sol" x="213.323" y="152.463" fill="none" width="30.813" height="5"/> |
<rect id="trois_ve_nutriments_sol" x="244.129" y="152.463" fill="none" width="32.923" height="5"/> |
<rect id="quatre_ve_nutriments_sol" x="277.052" y="152.463" fill="none" width="32.448" height="5"/> |
<rect id="cinq_ve_nutriments_sol" x="309.5" y="152.463" fill="none" width="33" height="5"/> |
<rect id="six_ve_nutriments_sol" x="342.5" y="152.463" fill="none" width="30" height="5"/> |
<rect id="sept_ve_nutriments_sol" x="372.5" y="152.463" fill="none" width="31.116" height="5"/> |
<rect id="huit_ve_nutriments_sol" x="403.616" y="152.463" fill="none" width="31.646" height="5"/> |
<rect id="neuf_ve_nutriments_sol" x="435.52" y="152.463" fill="none" width="31.644" height="5"/> |
<rect id="un_ve_salinite" x="182.124" y="187.463" fill="none" width="31.191" height="5"/> |
<rect id="deux_ve_salinite" x="213.323" y="187.463" fill="none" width="30.813" height="5"/> |
<rect id="trois_ve_salinite" x="244.129" y="187.463" fill="none" width="32.923" height="5"/> |
<rect id="quatre_ve_salinite" x="277.052" y="187.463" fill="none" width="32.448" height="5"/> |
<rect id="cinq_ve_salinite" x="309.5" y="187.463" fill="none" width="33" height="5"/> |
<rect id="six_ve_salinite" x="342.5" y="187.463" fill="none" width="30" height="5"/> |
<rect id="sept_ve_salinite" x="372.5" y="187.463" fill="none" width="31.116" height="5"/> |
<rect id="huit_ve_salinite" x="403.616" y="187.463" fill="none" width="31.646" height="5"/> |
<rect id="neuf_ve_salinite" x="435.52" y="187.463" fill="none" width="31.644" height="5"/> |
<rect id="un_ve_mat_org_sol" x="182.124" y="224.463" fill="none" width="31.191" height="5"/> |
<rect id="deux_ve_mat_org_sol" x="213.323" y="224.463" fill="none" width="30.813" height="5"/> |
<rect id="trois_ve_mat_org_sol" x="244.129" y="224.463" fill="none" width="32.923" height="5"/> |
<rect id="quatre_ve_mat_org_sol" x="277.052" y="224.463" fill="none" width="32.448" height="5"/> |
<rect id="cinq_ve_mat_org_sol" x="309.5" y="224.463" fill="none" width="33" height="5"/> |
<rect id="six_ve_mat_org_sol" x="342.5" y="224.463" fill="none" width="30" height="5"/> |
<rect id="sept_ve_mat_org_sol" x="372.5" y="224.463" fill="none" width="31.116" height="5"/> |
<rect id="huit_ve_mat_org_sol" x="403.616" y="224.463" fill="none" width="31.646" height="5"/> |
<rect id="neuf_ve_mat_org_sol" x="435.52" y="224.463" fill="none" width="31.644" height="5"/> |
<text transform="matrix(1 0 0 1 58.4915 155.5352)" class="titre">Nutriments </text> |
<text transform="matrix(1 0 0 1 70.2161 120.2441)" class="titre">Texture </text> |
<text transform="matrix(1 0 0 1 65.1917 83.3438)" class="titre">Humidité </text> |
<text transform="matrix(1 0 0 1 50.5247 46.5938)" class="titre">Réaction (pH)</text> |
<text transform="matrix(1 0 0 1 72.3074 191.9473)" class="titre">Salinité</text> |
<text transform="matrix(1 0 0 1 34.592 228.4063)" class="titre">Matière Organique</text> |
<text transform="matrix(1 0 0 1 182.7234 68.9629)" class="min_max">sec</text> |
<text transform="matrix(1 0 0 1 182.7234 106.8359)" class="min_max">argile</text> |
<text transform="matrix(1 0 0 1 182.7234 145.4629)" class="min_max">pauvre</text> |
<text transform="matrix(1 0 0 1 181.97 33.5938)" class="min_max">acide</text> |
<text transform="matrix(1 0 0 1 182.7234 182.3535)" class="min_max">non-tolérant</text> |
<text transform="matrix(1 0 0 1 183.4778 219.5605)" class="min_max">pauvre</text> |
<text transform="matrix(1 0 0 1 424.4417 106.8359)" class="min_max"> rochers</text> |
<text transform="matrix(1 0 0 1 440.512 145.4629)" class="min_max">riche</text> |
<text transform="matrix(1 0 0 1 427.4495 68.9629)" class="min_max">humide</text> |
<text transform="matrix(1 0 0 1 425.4319 33.5938)" class="min_max">basique</text> |
<text transform="matrix(1 0 0 1 407.3518 182.3535)" class="min_max">très tolérant</text> |
<text transform="matrix(1 0 0 1 435.512 219.5605)" class="min_max">riche</text> |
</svg> |
/tags/v5.12-baouque/services/presentations/images/cartes/antilles.svg |
---|
New file |
0,0 → 1,289 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
<!-- Created with Inkscape (http://www.inkscape.org/) --> |
<svg |
xmlns:dc="http://purl.org/dc/elements/1.1/" |
xmlns:cc="http://creativecommons.org/ns#" |
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
xmlns:svg="http://www.w3.org/2000/svg" |
xmlns="http://www.w3.org/2000/svg" |
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" |
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" |
id="svg3473" |
version="1.1" |
width="550" |
viewBox="0 0 550 550" |
preserveAspectRatio="xMinYMin" |
height="100%" |
inkscape:version="0.48.1 r9760" |
sodipodi:docname="antilles.svg"> |
<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="1022" |
id="namedview44" |
showgrid="false" |
inkscape:zoom="2.1527273" |
inkscape:cx="227.73736" |
inkscape:cy="393.77348" |
inkscape:window-x="-3" |
inkscape:window-y="-3" |
inkscape:window-maximized="1" |
inkscape:current-layer="layer1" /> |
<title |
id="title3"> Carte des Antilles françaises </title> |
<defs |
id="defs3475" /> |
<metadata |
id="metadata3478"> |
<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> |
<style |
id="cssCarte" |
type="text/css"> |
@CHARSET "UTF-8"; |
/* Pour cacher, une zone de la carte passer son opacity à zéro. |
* |
*/ |
.bordure { |
fill-opacity: 1; |
fill:white; |
stroke:black; |
stroke-opacity: 1; |
stroke-width:1; |
stroke-miterlimit: 3.97446823; |
stroke-dasharray: none; |
} |
.cadre { |
fill: none; |
fill-rule: evenodd; |
stroke: rgb(51, 51, 51); |
stroke-width: 0.918924px; |
stroke-linecap: butt; |
stroke-linejoin: miter; |
stroke-opacity: 1; |
} |
.txt { |
font-size:9px; |
font-style:normal; |
font-variant:normal; |
font-weight:normal; |
font-stretch:normal; |
fill:black; |
fill-opacity:1; |
stroke:none; |
stroke-width:1px; |
stroke-linecap:butt; |
stroke-linejoin:miter; |
stroke-opacity:1; |
font-family:Sans; |
} |
.terre { |
fill:#e0e3e5;fill-opacity:1;fill-rule:evenodd;stroke:#18242d;stroke-width:1.46300000000000008;stroke-linejoin:round;stroke-miterlimit:3.86369990999999979;stroke-opacity:1;stroke-dasharray:none; |
} |
.titre{ |
width:50px; |
} |
.idfbig { |
opacity:1; |
} |
.idfsmall { |
opacity:0; |
} |
</style> |
<g |
id="layer1" |
transform="translate(0,-973.27109)"> |
<path |
clip-rule="evenodd" |
stroke-miterlimit="3.8637" |
d="m 38.741718,1094.0083 c -0.35456,-0.058 -1.01146,-0.3935 -1.3876,-0.5265 l -0.49494,-0.7438 0.92327,-2.5424 1.23283,-0.3372 1.82314,0.7232 c 1.07985,-0.022 2.72482,-0.7775 3.65168,-1.2759 l 0.46074,2.3138 0.7037,0.4871 c 1.22743,0.12 2.858,-0.064 3.99545,-0.5845 l 1.58017,-2.2127 -0.41395,-2.0497 c 0.30056,-1.1915 2.40807,-3.8688 3.51671,-4.2079 l 1.67917,0.2491 1.51358,-1.4275 0.44454,-1.6113 0.6749,-0.4553 1.72776,0.356 0.21417,-0.4665 -0.34014,-0.74 0.73789,-0.9762 c 0.86927,0.2979 2.1543,0.4741 3.05957,0.2305 l 0.10798,1.9916 0.89448,1.1203 -0.42294,0.6183 -1.07445,0.079 c -0.79909,1.8193 1.3552,4.6351 2.94259,5.3584 l 0.0343,0.7325 -0.87829,0.4497 -0.47693,0.8243 1.4038,4.5564 -1.05104,0.1631 c -0.002,1.2496 -0.59572,2.874 -1.26163,3.8932 l 0.36894,1.6842 -0.88547,0.8169 -0.56512,2.4449 c -0.89988,0.9069 -1.4236,1.765 -2.65102,2.0815 l -0.55612,-0.2753 c -0.17098,-0.9387 -0.35815,-3.1495 -1.03846,-3.7396 l -1.53158,0.015 -0.83508,0.8168 0.38154,1.1616 -0.36534,0.3578 -1.31203,-0.7119 c -4.73512,1.7012 -6.69505,-4.7681 -8.88355,-4.504 -0.73609,0.5172 -2.13809,0.9125 -3.02897,0.7664 -1.31021,-1.7949 -3.72548,-2.9284 -4.61816,-4.9031 z" |
id="saint_martin" |
class="terre saint_martin"> |
<title |
id="title3430">Saint-Martin</title> |
</path> |
<path |
clip-rule="evenodd" |
stroke-miterlimit="3.8637" |
d="m 285.41175,1363.6168 c 1.45959,1.9429 2.58623,4.341 4.01343,6.162 0.66771,0.8507 1.91493,1.4558 2.53944,2.327 0.67131,0.9369 2.98399,7.0051 3.09377,8.0375 l 0.75409,-0.1498 c 1.57659,-3.601 5.20308,-7.7302 9.52787,-6.4001 0.7325,-1.1971 4.05123,-2.8422 5.24447,-3.3517 l 1.95272,0.176 1.4326,2.5781 -0.009,1.0472 -0.86387,1.2985 -0.65331,0.2566 -0.7379,-1.7349 -0.95207,-0.1143 c -0.59931,0.163 -1.28861,1.111 -1.51719,1.66 l 0.0972,0.4721 0.8999,0.2697 0.39592,0.6315 -1.06183,1.2459 0.045,0.6801 0.74151,1.053 -0.25557,0.6257 -0.95925,0.7232 -1.69718,-0.8544 -0.96107,0.9837 -1.25262,-0.2735 -0.23037,-2.357 -2.0463,-1.1709 c -1.83935,-0.064 -2.81301,0.4983 -3.72909,2.162 l 0.19798,0.4216 0.95026,0.2716 0.7451,0.948 -0.50573,0.4665 -1.65396,0.038 -0.40855,0.6763 0.39594,0.7887 1.04927,0.3767 1.81233,-0.8713 0.89268,1.1073 c -0.0432,0.68 -1.08884,1.7274 -1.57119,2.0778 l 0.39775,0.4233 1.05106,0.1144 2.21727,-1.3921 0.68392,2.1509 1.94553,1.3264 -1.12126,2.2408 c -0.69469,0.5208 -2.30187,0.755 -3.11536,0.8075 l -0.60651,0.622 -0.46612,1.9316 -1.25263,-0.1686 -0.40315,0.3634 c -0.79189,1.452 0.28437,4.3617 1.81415,4.8844 l 2.01032,-0.609 0.86748,-1.8247 0.55432,-0.3617 c 1.19684,0.7064 3.61028,1.0791 4.90971,0.4684 l 0.34016,1.2066 -0.91428,1.5607 -1.61257,0.8731 c 0.85487,1.9147 0.39053,3.9869 -0.34916,5.8079 l 0.59571,0.8955 c 1.24183,0.3822 3.31514,-0.01 4.46518,-0.532 l 0.44815,0.3709 -0.56513,1.7744 c 1.4362,2.8365 1.89514,3.7058 5.0231,4.6051 l 0.98086,2.4693 -0.66591,1.7723 0.24477,0.7363 1.20042,0.2736 0.7433,0.9499 0.65151,-0.098 1.16444,-1.5081 0.40314,-0.099 0.34196,0.9986 c -3.71469,5.9823 0.0252,4.7627 0.52552,8.8525 -0.28616,1.3489 -0.60472,1.4951 -1.4722,2.3419 l -0.10617,0.5753 1.64316,1.1147 0.59032,1.4201 -0.16019,1.1504 c 2.05352,1.4652 2.22269,5.2983 1.63958,7.556 l 0.7379,1.6824 c -3.5599,2.2258 -3.81547,7.8183 -7.127,7.5222 l -0.25917,0.8881 0.19618,0.4721 1.14643,0.6913 0.34375,0.7364 -0.25736,0.7308 c -4.08003,-0.1632 -2.65822,2.3606 -5.03029,2.7239 l -3.00018,-0.5001 c -1.4236,-1.482 -2.16509,-3.0295 -3.06496,-4.8469 0.95206,-1.8529 2.1111,-4.1386 1.15363,-6.2182 l 0.35635,-0.7289 0.50213,-0.047 0.7469,0.5828 0.95026,0.062 1.3696,-2.1339 -0.0827,-1.9373 c -4.06743,-1.4258 -3.86945,3.1288 -5.94636,4.1818 l -0.95206,0.043 -2.22269,-3.7921 c -1.34802,-0.6538 -3.19096,0.1517 -4.50658,0.5078 -0.0665,0.019 -8.07906,-1.1373 -8.36161,-1.2572 l -0.53814,-1.7331 -1.09604,-0.6388 -0.75229,0.097 c -0.63712,1.0885 -1.35161,1.8117 -2.37387,2.4393 -1.04566,0.2792 -3.47892,-1.0585 -4.296,-1.6112 -5.07168,0.1967 -5.08429,0.8975 -7.64893,4.5359 -0.56871,0.3915 -2.71221,-0.4497 -3.25213,-0.7102 l -1.28863,-1.7385 c -1.26343,-0.049 -2.1111,-0.2699 -2.39186,-1.645 l 0.26455,-1.8829 -1.43438,-2.4206 -0.036,-1.9372 -0.39595,-0.579 -1.80154,-0.3298 -0.24657,-0.5265 c -0.31855,-1.4689 2.02112,-3.0369 1.78895,-4.6426 l 1.56578,-1.5569 c 0.29696,-0.296 0.27537,-1.1242 0.86209,-1.4051 l 2.65642,0.024 c 0.34915,-0.8469 1.51718,-1.8698 2.27308,-2.2838 l 0.51652,-1.9842 0.55613,-0.517 c 0.54533,1.0379 2.51964,2.0477 3.5401,2.3344 l -0.75769,1.0418 0.0432,0.7325 c 1.08345,0.6688 3.90545,2.0721 5.24626,1.8809 l 0.50575,-0.6238 2.25867,-0.3973 c 0.42654,-0.976 0.98626,-1.9915 1.27602,-3.0238 l -0.19078,-1.0491 c -0.93406,-0.1556 -1.86274,-0.4872 -2.75,-0.8113 l -0.69291,-1.0529 0.52013,-2.4038 -3.03798,-2.3831 -0.0415,-0.9948 c 0.94126,-0.328 1.10683,-0.742 1.61437,-1.5046 l -0.94487,-0.8449 -0.0396,-1.2572 c -0.27176,-0.4309 -0.95926,-0.8111 -1.44699,-0.8525 -0.89987,0.9669 -1.32282,1.5289 -2.76982,1.7031 l -0.30414,0.3634 0.34553,0.7364 c 0.53633,-0.071 1.38042,0.2997 1.74936,0.697 l -0.50573,0.519 c -1.11583,0.5077 -4.22039,-0.6952 -4.89891,-1.72 l -3.01277,0.7063 -1.4956,-1.1128 -2.36307,1.0249 -0.84947,-0.2699 -0.34555,-0.7363 c 0.099,-0.2136 0.59211,-1.1765 0.52732,-1.2253 -2.58984,-1.9561 -5.28586,-4.4572 -8.29324,-5.7012 -0.81169,-2.4188 -11.72175,-13.5944 -11.23942,-19.0989 1.02586,-1.8098 2.52144,-6.4899 0.96467,-8.3653 -0.62092,-0.7476 -7.44916,-8.0506 -7.66153,-8.4928 -2.9228,-6.0741 -2.43505,-14.0553 3.79026,-17.8679 1.89875,-1.1616 3.84427,-0.963 5.8312,-1.572 1.90233,-0.5845 3.86044,-2.5948 6.13713,-2.1452 2.99478,0.5921 5.32365,2.7954 7.99628,4.1518 2.31268,1.1729 4.59656,1.2085 6.19112,3.7715 l 1.5028,0.2753 c 0.85848,0.8056 2.94619,3.1213 3.93785,3.1233 l 1.76015,-0.5602 c 0.81529,0.3522 1.64857,0.7194 2.50165,0.9648 1.03485,1.244 3.94324,5.3565 5.42084,5.3939 z" |
id="martinique" |
class="terre martinique"> |
<title |
id="title3441">Martinique</title> |
</path> |
<path |
clip-rule="evenodd" |
stroke-miterlimit="3.8637" |
d="m 344.73722,1168.2992 -0.43554,-0.6408 1.64138,-2.4036 0.52911,0.8543 0.80989,-0.079 c 0.37975,0.1124 0.66772,0.6651 0.7775,1.0192 l -0.32216,0.6164 -3.00018,0.6332 z" |
id="path211" |
class="terre" /> |
<path |
clip-rule="evenodd" |
stroke-miterlimit="3.8637" |
d="m 451.75334,1112.3229 v 1.6394 c -0.7091,0.6838 -1.77994,0.5189 -2.46565,1.0453 -1.90053,1.4595 -4.36799,3.8577 -6.43229,4.9386 -0.16559,0.086 -11.16204,3.7659 -11.28983,3.7171 l -0.37795,-0.7456 0.71451,-1.7517 -0.17817,-0.7382 1.87713,-1.7611 1.81954,-0.037 0.40135,-1.3977 c 2.89579,0.092 4.2798,-0.7156 6.16592,-3.067 l 1.20765,0.15 1.46678,-1.5663 c 1.92754,0.3429 3.35654,-3.082 5.0465,-2.7935 l 0.59391,0.3878 0.30777,1.3696 0.80449,0.082 0.33834,0.5284 z" |
id="la_desirade" |
class="terre la_desirade"> |
<title |
id="title3439">La désirade</title> |
</path> |
<path |
class="terre guadeloupe" |
d="m 359.74515,1072.8087 c -4.10703,1.9222 -3.39073,5.8191 -8.54879,6.7915 -1.14644,1.6225 -3.95629,3.2871 -4.33066,4.5668 l -1.29355,0.5268 c -0.91608,0.8188 -1.88434,3.5449 -2.24969,4.6839 3.70388,3.7584 -0.91967,7.0474 6.29913,12.5294 0.93405,0.7119 2.85258,0.4037 3.14954,2.2248 l -0.50617,2.6932 0.44993,0.9953 -0.50619,1.3467 0.33747,0.5269 -0.3937,0.761 c -1.33541,0.6034 -1.69805,0.8357 -2.1372,0.9369 -0.45535,0.1049 -0.98177,0.074 -2.58714,0.1171 l -1.74351,1.4051 c 0.0486,0.5583 -0.36399,1.3686 -0.73114,1.7565 -0.12239,2.8553 0.70235,4.6945 -1.96848,6.0304 l -0.0562,0.7026 0.3937,0.5855 c -0.17818,0.5452 -0.69336,1.2318 -1.18109,1.5222 0.0576,0.5976 0.34421,8.9635 0.50618,9.192 0.22317,0.3148 1.10235,0.9467 1.23734,1.2296 1.63237,3.4174 1.0164,3.7658 3.54325,6.7916 l 1.12484,0.2927 1.29356,-0.4098 1.18109,1.8735 c 2.1579,-0.2098 8.92675,2.2047 9.89861,1.815 3.71287,-1.4838 6.64827,-2.851 10.57351,-2.9859 0.34375,-0.011 4.41433,-1.3284 5.34301,-2.342 1.375,0.2267 4.1808,-0.4763 4.04943,-2.4005 0.83868,-0.384 8.18255,-2.1869 8.43632,-2.1663 0.82248,0.067 1.50052,0.8122 2.41841,0.5855 1.71156,-0.4215 3.2256,-0.8537 5.00554,-1.1124 0.13858,-0.02 0.26592,-0.1193 0.3937,-0.1755 1.94012,-0.8619 2.74642,-0.7124 4.72433,-0.9953 1.68997,-0.2436 3.37183,-0.8666 5.0618,-1.0539 3.46811,-0.3804 7.04871,1.6941 10.68601,1.2295 0.66769,0.5021 2.7302,1.9378 3.59948,1.9322 l 0.84363,-1.4052 c -1.44159,-0.7139 -3.1356,-1.8595 -4.78058,-1.7565 l -0.78738,-0.8197 c -2.1093,1.0942 -3.13067,-0.466 -4.83682,-1.3466 -0.70912,-0.3653 -1.68367,-0.4169 -2.36217,-0.8197 -5.14548,-3.0538 -5.91263,-12.3377 -13.10442,-12.4707 l -0.56242,-1.6979 -1.856,0.644 -1.3498,-0.8782 c -0.77569,0.099 -2.47645,0 -3.14956,-0.5269 l -2.58713,0.4098 -1.01235,-0.5854 c -4.74954,1.5793 -9.29616,-4.5729 -11.52963,-8.1382 -5.36686,-8.5659 0.0562,-7.0534 0.0562,-12.1195 0,-3.4886 -2.15339,-6.2633 -2.8121,-9.602 l -0.0562,-0.3512 c -1.06005,-1.1709 -3.80647,-2.8407 -4.27439,-3.8056 l -1.57479,-0.4099 c -0.80269,-0.6501 -1.59008,-2.3176 -1.91223,-3.2787 l -3.26204,0.1171 -0.56242,-1.1124 0.67491,-1.1709 -0.67491,-0.8782 z m -58.21058,33.8408 c -0.80088,-0.1124 -2.09895,1.0604 -2.5309,1.6393 l -2.36216,0 c -2.13631,0.875 -4.2186,4.0454 -5.17428,4.2741 l -0.3937,0.9367 c 0.55073,1.7649 -0.84498,3.6708 -2.58712,3.8057 l -0.22498,0.644 0.89988,0.9953 0.11248,0.644 -1.18107,1.815 c 0.37974,1.8361 -0.68302,4.8693 -1.68728,6.3232 0.59392,5.4876 4.7113,8.8998 5.343,14.1101 0.0576,0.4834 -0.53317,1.9667 -0.50616,2.5175 0.0792,1.6244 1.24181,3.364 0.44992,5.0352 3.5869,2.505 0.23081,6.3846 1.18109,7.904 0.57951,0.9274 1.90864,1.742 1.91222,2.986 l -0.78738,1.5808 c -0.018,1.8116 0.19932,7.2932 1.29357,8.8408 l -0.67491,5.1522 c 0.10259,0.2323 0.19707,0.5532 0.33745,0.7611 1.447,2.1433 3.01773,4.2455 3.76822,6.7916 0.20698,0.7063 0.0475,1.6562 0.28121,2.3419 0.59392,1.7387 1.87624,2.5812 1.4623,4.8595 1.09604,1.0249 3.31738,1.8473 4.78058,1.8735 2.79321,2.1996 4.13717,4.6226 3.31829,8.2553 l 0.39368,0.8197 c 2.98399,2.7598 6.54344,-0.614 8.49257,-2.986 l 1.96847,0.8197 2.08096,-1.6979 c 0.59572,0.3223 2.30053,1.0168 2.98084,0.644 l 1.68725,-1.4636 1.96848,0.2927 0.28121,-0.5855 -0.33745,-1.2296 1.68726,-2.5175 5.343,-2.2248 c 1.21303,-4.8394 3.69039,-8.0525 5.7367,-12.4122 -2.08771,-2.3326 -0.79505,-9.0057 -1.51855,-11.8853 -0.27895,-1.1092 -2.10074,-2.8206 -1.63101,-4.0984 l 1.34981,-1.2295 0.0562,-1.4637 c -0.24836,-0.5826 -1.94553,-1.2023 -2.47466,-1.3465 -0.57592,-0.386 -1.41279,-4.8511 -2.24968,-6.1476 l 0.89987,-3.4543 -0.16864,-0.7027 -1.29356,-0.3512 -0.44994,-0.8198 c -0.0936,-0.6088 0.55657,-1.5667 0.95612,-1.932 0.43915,-1.7368 -0.85488,-8.0858 0.44994,-8.8407 l 2.75587,0 1.29356,0.8782 c 0.65511,-0.3316 1.91358,-0.1599 2.53089,0.1755 0.67491,-0.9387 0.0369,-9.2168 -0.11248,-10.6558 l -0.61866,0.058 -0.50619,0.8197 -0.44993,-0.5855 -0.0562,-0.7026 0.89988,-1.1124 -0.50619,-0.7611 c -0.53812,0.2098 -1.53697,0.1897 -2.02472,-0.1756 l -0.89987,0.9368 -0.84363,-0.3513 -0.67491,0.1756 -0.89987,2.5761 -1.91222,1.1125 -1.29359,-0.2343 0.0562,-2.5176 -0.6749,-0.2927 -1.0686,3.0446 -1.18108,0.1755 -0.33746,-2.4005 -2.53089,0.1171 c -0.0648,-0.7851 0.40629,-2.022 0.84362,-2.6347 l 0.67491,0.2343 -0.16863,1.2879 1.46229,-0.9953 c 0.45174,-1.006 0.96242,-2.3283 1.0686,-3.4543 l -0.28121,-0.2928 c -2.49265,1.0437 -5.22061,-0.3615 -7.36771,-1.6393 l -0.22497,-1.4052 c -1.4164,-1.096 -3.69758,0.2783 -4.83683,-1.0538 l -1.51854,0.4684 -0.56241,-1.4052 -0.89988,-0.058 -0.61866,0.5854 c -1.98691,-3.9738 -7.50223,-0.7648 -7.98636,-6.3817 l -3.76821,-2.8103 z" |
id="guadeloupe"> |
<title |
id="title3444">Guadeloupe</title> |
</path> |
<path |
clip-rule="evenodd" |
stroke-miterlimit="3.8637" |
d="m 391.5212,1188.8233 1.25443,0.1498 0.97726,-0.592 0.70189,0.1293 0.93048,0.8169 1.71516,-0.043 0.12238,1.5363 c 1.73314,1.0624 3.82086,2.031 5.37764,3.29 2.0607,1.6693 2.71942,4.9574 4.68654,6.4694 0.99166,0.7605 2.03011,1.0304 3.02177,1.9446 1.12125,3.2 0.72711,5.6675 0.17639,8.6427 -3.47891,1.6338 -5.60802,6.9209 -9.88602,9.0118 -2.52505,0.037 -4.84851,0.354 -7.30877,0.828 -2.72123,-2.0384 -8.32023,-1.4987 -10.87948,-6.8309 -0.55072,-1.1447 0.21957,-2.5611 0.0252,-3.659 l -1.06548,-6.0197 c 1.00067,-2.43 5.779,-3.1269 4.13222,-7.7021 1.5046,-1.675 4.72794,-4.8019 4.93311,-7.2206 l 1.08525,-0.7513 z" |
id="marie_galante" |
class="terre marie_galante"> |
<title |
id="title3435">Marie-Galante</title> |
</path> |
<path |
class="terre les_saintes" |
d="m 332.16579,1217.2373 -0.44993,0.1171 -0.95612,1.0539 -1.29357,-0.5855 -0.84362,0.9369 0.11247,1.288 -0.33745,0.7025 c -1.28502,-0.022 -3.32909,0.4758 -3.54325,2.1078 l 0.33745,0.7026 1.74351,0.761 c 0.86927,-0.8356 2.97858,-1.0022 4.04943,-0.7025 l 0.3937,-2.9274 1.51853,-0.9368 0.11248,-0.8782 -0.84363,-1.6394 z m -13.66683,2.7518 c -0.56151,0.7288 -2.06161,1.9775 -3.03707,1.9907 l -0.50619,0.6439 -0.0562,1.3466 -1.01235,1.2296 0.0562,0.644 c 0.86748,0.7757 3.21706,0.5855 4.61186,1.5222 1.56937,0.038 2.512,-1.7428 2.86836,-3.103 l 1.12483,-0.4099 0.0562,-0.5269 -1.85599,-0.9953 -0.84363,-1.6979 -1.40605,-0.644 z m 9.22371,6.8502 -0.73115,0.2927 -0.44994,1.0539 0.28121,0.644 0.73115,-0.2928 1.23732,0.8198 0.67491,-0.2928 c -0.47333,-0.7981 -1.0398,-1.6235 -1.7435,-2.2248 z" |
id="les_saintes"> |
<title |
id="title3433">Les Saintes</title> |
</path> |
<polygon |
clip-rule="evenodd" |
stroke-miterlimit="3.8637" |
points="889.015,130.373 888.668,130.616 888.604,130.894 886.951,131.218 886.757,131.018 887.108,130.579 888.936,130.091 " |
id="polygon313" |
transform="matrix(1.7997476,0,0,1.8735411,-1524.8843,834.16877)" |
style="fill:#fefee9;fill-rule:evenodd;stroke:#200f0f;stroke-width:0.79672219000000000;stroke-linejoin:round;stroke-miterlimit:3.86369990999999979;stroke-opacity:1;stroke-dasharray:none" /> |
<path |
clip-rule="evenodd" |
stroke-miterlimit="3.8637" |
d="m 106.31255,1136.0188 -0.71269,-0.071 c -1.411,-1.0173 -2.71943,-3.3649 -2.88681,-5.1504 -0.81528,-0.5227 -4.288795,-2.3906 -4.409375,-3.4079 l 0.58672,-1.0829 -0.12238,-1.259 0.7163,-0.1386 0.26277,1.7854 3.327715,-0.4909 c 1.25084,0.8749 1.27242,3.1513 2.10751,3.6103 0.63711,0.1837 1.71696,-0.3428 2.16149,-0.7812 l 2.39187,0.2697 0.62271,-0.5076 0.0936,-1.7762 1.37501,0.1387 0.53092,1.2178 0.51833,-0.2998 0.34915,0.3241 1.32821,-0.071 0.38695,0.8992 0.96826,0.024 0.24117,0.5826 -0.77389,2.4919 -2.09671,0.2079 c -0.66411,0.3841 -1.49019,2.1508 -1.75116,2.8346 l -1.05105,-0.7587 -1.07264,0.077 -0.63712,1.0829 c -0.50933,-0.1105 -2.04451,-0.2173 -2.45485,0.2492 z" |
id="saint_barthelemy" |
class="terre saint_barthelemy"> |
<title |
id="title3437">Saint barthelemy</title> |
</path> |
<text |
xml:space="preserve" |
class="txt titre" |
x="73.448875" |
y="1127.3062" |
id="text3636" |
transform="scale(1.0318393,0.96914316)"><tspan |
class="txt titre" |
id="tspan3638" |
x="73.448875" |
y="1127.3062">St. Martin</tspan></text> |
<text |
xml:space="preserve" |
class="txt titre" |
x="115.54964" |
y="1158.7065" |
id="text3640" |
transform="scale(1.0318393,0.96914316)"><tspan |
id="tspan3642" |
x="115.54964" |
y="1158.7065">St. Barthélémy</tspan></text> |
<text |
xml:space="preserve" |
class="txt titre" |
x="220.06392" |
y="1216.734" |
id="text3644" |
transform="scale(1.0318393,0.96914316)"><tspan |
id="tspan3646" |
x="220.06392" |
y="1216.734">Guadeloupe</tspan></text> |
<text |
xml:space="preserve" |
class="txt titre" |
x="274.06107" |
y="1282.5052" |
id="text3648" |
transform="scale(1.0318393,0.96914316)"><tspan |
id="tspan3650" |
x="274.06107" |
y="1282.5052">Les saintes</tspan></text> |
<text |
xml:space="preserve" |
x="380.56442" |
y="1235.8828" |
id="text3652" |
class="txt titre" |
><tspan |
id="tspan3654" |
x="380.56442" |
y="1235.8828">Marie-Galante</tspan></text> |
<text |
xml:space="preserve" |
class="txt titre" |
x="444.44934" |
y="1161.1943" |
id="text3656" |
transform="scale(1.0318393,0.96914316)"><tspan |
id="tspan3658" |
x="444.44934" |
y="1161.1943">La désirade</tspan></text> |
<text |
xml:space="preserve" |
x="331.36627" |
y="1449.5333" |
id="text3660" |
class="txt titre" |
><tspan |
id="tspan3662" |
x="331.36627" |
y="1449.5333">Martinique</tspan></text> |
<text |
id="titre-texte" |
x="27.238632" |
y="1499.0187" |
class="txt titre" |
xml:space="preserve" |
transform="scale(1.0318393,0.96914316)"> |
<tspan |
id="titre-taxon" |
x="27.238632" |
y="1538.5977" /> |
<tspan |
id="titre-msg" |
x="27.238632" |
y="1548.4923">Carte en cours d'élaboration.</tspan> |
</text> |
<rect |
style="fill:#e0e3e5;fill-opacity:0;stroke:#000000;stroke-width:1.87360287;stroke-miterlimit:3.97446823;stroke-opacity:1;stroke-dasharray:none" |
id="rect3793" |
width="543.1264" |
height="542.86865" |
x="4.3394413" |
y="978.42133" /> |
<path |
class="cadre" |
d="M 546.4335,397.35258 4.4245628,290.42565" |
id="path3022" |
transform="translate(0,973.27109)" /> |
<path |
class="cadre" |
d="M 156.33455,319.92274 283.90944,5.041351" |
id="path3024" |
transform="translate(0,973.27109)" /> |
</g> |
</svg> |
/tags/v5.12-baouque/services/presentations/images/cartes/frac.svg |
---|
New file |
0,0 → 1,309 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" |
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> |
<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> |
<svg |
xmlns="http://www.w3.org/2000/svg" |
xmlns:xlink="http://www.w3.org/1999/xlink" |
version="1.0" |
x="0" |
y="0" |
width="744.094482" |
height="1052.36218" |
viewBox="-130372.3 -5686867.2 1200851.3 1118189.4" |
id="svg602"> |
<defs |
id="defs701" /> |
<g |
style="font-size:12;fill:none;stroke:#000000;stroke-width:600.4;stroke-linecap:round;stroke-linejoin:round;" |
id="fra"> |
<path |
d="M 505115.8 -5440680 L 505491.8 -5441181 L 506226.1 -5441310 L 506660.4 -5441953 L 506726.2 -5443411 L 507554.9 -5442682 L 508149.1 -5442763 L 508402.6 -5443031 L 508157.1 -5443302 L 507689.1 -5443859 L 509145.1 -5443744 L 509124.8 -5444127 L 510256.9 -5445118 L 509897.8 -5445601 L 509132.8 -5445648 L 508159.8 -5446242 L 508235.8 -5448822 L 507352.1 -5449548 L 506201.8 -5446843 L 506754.5 -5445085 L 505985.6 -5445711 L 505820.2 -5446056 L 506115.6 -5448310 L 505857.9 -5449027 L 505188.5 -5449365 L 504493.8 -5449040 L 504264.3 -5449315 L 504344.2 -5450297 L 503686.7 -5450578 L 503051.2 -5450848 L 502425.4 -5450484 L 502133.8 -5451196 L 501093.6 -5451654 L 500336.3 -5451511 L 499998.9 -5451322 L 499786.3 -5450999 L 499919.3 -5449477 L 500334.2 -5448405 L 501737 -5448753 L 502053.7 -5448051 L 502438.7 -5448020 L 502488.1 -5447695 L 502642.7 -5446420 L 501855.8 -5446510 L 501463.9 -5446570 L 501046.9 -5447618 L 499277.3 -5448949 L 498779.2 -5448391 L 498523.6 -5448114 L 498169.9 -5448274 L 497827.2 -5448454 L 497656.8 -5448790 L 497664 -5450946 L 497279.7 -5451819 L 496884.6 -5452799 L 497294.8 -5453388 L 499616.7 -5453765 L 500010.8 -5453804 L 500814.4 -5453065 L 500560.1 -5452388 L 501564.4 -5451985 L 502736.3 -5452887 L 502320.7 -5454659 L 502320.6 -5454709 L 502291.4 -5455099 L 501846.3 -5456575 L 502143.7 -5457270 L 501908.7 -5457791 L 501905.4 -5458167 L 502464.4 -5458668 L 502421.8 -5459389 L 502099.2 -5459579 L 501304.8 -5458892 L 500936.9 -5458935 L 501235.3 -5459635 L 500568.9 -5459972 L 499480.2 -5459652 L 499098 -5460586 L 497729.2 -5461247 L 497977.7 -5461465 L 498349.8 -5462002 L 497526.9 -5463063 L 497312.4 -5463334 L 499789.1 -5465122 L 500045.7 -5465420 L 500559.2 -5465164 L 500838.1 -5465093 L 502445.4 -5464179 L 502554.7 -5463819 L 503409.2 -5465048 L 504906.6 -5466216 L 505203.7 -5466282 L 505506.4 -5467126 L 505814.6 -5469223 L 506778.6 -5469691 L 506524 -5471882 L 506873 -5471853 L 506900.4 -5474068 L 506851.1 -5474438 L 506834.5 -5474637 L 506811.9 -5474838 L 506789 -5475886 L 507214.1 -5476443 L 507955.9 -5476356 L 508759.4 -5475608 L 511584.1 -5476460 L 511918.4 -5476627 L 511683.8 -5476819 L 511995.8 -5477301 L 511756.4 -5477599 L 511199.4 -5478107 L 510877.6 -5478227 L 509352.1 -5478978 L 509003.3 -5479059 L 507709.5 -5479663 L 507649.9 -5480360 L 508886.3 -5481061 L 508740.2 -5482492 L 508393.5 -5482663 L 507721.4 -5483601 L 507377.7 -5483765 L 506933.6 -5485183 L 508827.4 -5485606 L 509221.6 -5486685 L 509079 -5487843 L 509481.3 -5488018 L 509500.1 -5489890 L 509106.4 -5490540 L 509156 -5491300 L 510025.6 -5491628 L 509958.2 -5491933 L 509743.8 -5492242 L 508955.2 -5493897 L 508836.5 -5494537 L 508591.1 -5494811 L 507352.8 -5496066 L 507153.3 -5496318 L 506744.4 -5496816 L 506961.6 -5496919 L 507875.8 -5497522 L 508132.3 -5497794 L 507967 -5498116 L 508126.4 -5498780 L 507640.5 -5499748 L 506955 -5499938 L 507167.3 -5500597 L 507760.7 -5500826 L 507812.1 -5501499 L 508139.3 -5501615 L 508920.2 -5501112 L 509169.1 -5502042 L 509018.9 -5502398 L 508389.9 -5503327 L 509086.4 -5505039 L 508562.6 -5506076 L 508688.6 -5506066 L 508203.3 -5508260 L 507267.7 -5509342 L 507173.5 -5509695 L 506987.8 -5510770 L 506837 -5511791 L 507255 -5512756 L 506870.1 -5512779 L 505334.4 -5512807 L 504724.5 -5513259 L 504872.2 -5513581 L 504437.2 -5514472 L 505883.1 -5515489 L 506211.3 -5515625 L 506090.1 -5515974 L 506227.3 -5517041 L 505807.7 -5517643 L 505953.9 -5518237 L 506147.4 -5518505 L 505974.8 -5518681 L 505719.3 -5518901 L 504399.3 -5518776 L 504312.9 -5519506 L 504159.3 -5520160 L 505040.2 -5520674 L 505333.6 -5520866 L 505618.7 -5520953 L 505915.1 -5521143 L 506107.2 -5521684 L 506011 -5522032 L 505754.9 -5523815 L 505140 -5524703 L 505358.6 -5524990 L 505982.1 -5525269 L 506151.4 -5524965 L 506023.2 -5523943 L 506356.9 -5523846 L 508609.5 -5525775 L 508608.9 -5526058 L 508517 -5526580 L 508859.1 -5527598 L 508681 -5528910 L 508501.7 -5529215 L 508936.6 -5529666 L 509107.2 -5530411 L 509958.6 -5531650 L 511572.7 -5532842 L 511899.9 -5532952 L 512018.5 -5533251 L 511663.8 -5533349 L 511701.6 -5533710 L 511809.7 -5534711 L 512295.7 -5535228 L 513895.5 -5536291 L 514614.2 -5537175 L 514313.2 -5537122 L 513882.2 -5537551 L 513534.1 -5537439 L 512819 -5537298 L 511910.4 -5537855 L 511238.6 -5537867 L 511489.1 -5538109 L 512366.7 -5539896 L 512460.2 -5540119 L 514672 -5540777 L 516520.4 -5542149 L 516852.9 -5541951 L 517577.3 -5542231 L 517632.2 -5542201 L 517767.5 -5541876 L 518421.8 -5541627 L 518632.2 -5542292 L 518972.9 -5542207 L 519232.7 -5542150 L 519487.5 -5542078 L 520006.5 -5541190 L 519690.3 -5541057 L 520556.9 -5540491 L 521624.2 -5540763 L 521940.3 -5540862 L 522256.4 -5540963 L 523574.2 -5540579 L 524250.4 -5540753 L 524715.3 -5541741 L 525292 -5542127 L 525186.7 -5542474 L 525393.3 -5542794 L 526906 -5542876 L 527836.5 -5542286 L 528217.4 -5542297 L 528646.1 -5542682 L 529861 -5541817 L 530544.9 -5541878 L 530800.3 -5541602 L 530752.7 -5541303 L 534849.2 -5541050 L 535223 -5540980 L 536302.3 -5542274 L 536431.9 -5542588 L 536509.4 -5542827 L 538065.8 -5543213 L 538909.5 -5544673 L 539590.7 -5544878 L 539960.6 -5544895 L 540775.2 -5544796 L 541336.2 -5544387 L 541598.7 -5544149 L 542674.8 -5543802 L 543650.3 -5542649 L 543724.5 -5542275 L 543875.9 -5541967 L 544113.4 -5541717 L 544639.1 -5542140 L 544896.5 -5542358 L 545256.7 -5542501 L 546191.6 -5543061 L 547239.5 -5542590 L 547543.8 -5543264 L 547216.1 -5543405 L 547255.9 -5544335 L 547792.2 -5545041 L 548090.2 -5545087 L 550640 -5546281 L 550982.1 -5546379 L 551325.6 -5546691 L 551761.4 -5546123 L 553303.4 -5545245 L 553528.8 -5544966 L 555338 -5544701 L 555645.5 -5544487 L 555841.8 -5544144 L 556962.1 -5544412 L 558217.3 -5543573 L 558564.9 -5543400 L 559733.3 -5544273 L 560078.5 -5544389 L 560878.9 -5543590 L 562362.1 -5543281 L 563338.9 -5542708 L 563414.2 -5542337 L 563057 -5542208 L 563662 -5541729 L 563722.9 -5540580 L 563719.2 -5540193 L 566034.8 -5541766 L 566253.3 -5542063 L 567693.9 -5542458 L 568073.8 -5542450 L 568186.2 -5542155 L 570494.5 -5544117 L 571016.9 -5543798 L 571147.3 -5543448 L 571440.3 -5542368 L 570387.4 -5539591 L 570446.4 -5538482 L 570786.6 -5538617 L 572233.6 -5538685 L 572651.8 -5537673 L 573380.8 -5537689 L 573803.2 -5537347 L 574072 -5537249 L 575048.7 -5537681 L 577220.7 -5537173 L 577578.5 -5537061 L 577914.7 -5536032 L 579016 -5536233 L 579384.8 -5536155 L 581634 -5536847 L 581956.7 -5536991 L 582182 -5537298 L 582348.8 -5536875 L 582795.2 -5536611 L 583929.3 -5536960 L 584439.9 -5536843 L 584606.6 -5536420 L 585257.1 -5536382 L 585779.2 -5536050 L 585693.2 -5534965 L 585999.8 -5534621 L 586634.8 -5534872 L 587568.7 -5534922 L 588355 -5535036 L 588774 -5535225 L 588613.5 -5534765 L 588541.1 -5534556 L 588367.2 -5533411 L 587771.5 -5532443 L 587570.6 -5530128 L 587893.5 -5529487 L 588722.3 -5529354 L 588967.3 -5528765 L 589645.1 -5528607 L 590318.5 -5528809 L 590266.8 -5528428 L 589976.8 -5524276 L 589943.2 -5523927 L 589908.6 -5523577 L 589699.1 -5523273 L 588823.9 -5522634 L 588585.5 -5521237 L 588113.6 -5520761 L 587522.7 -5517889 L 587866.5 -5517770 L 588426.3 -5516467 L 588277.7 -5516134 L 587211 -5515209 L 586954.5 -5514936 L 587371.6 -5514343 L 587539.1 -5514007 L 588274.5 -5514215 L 589550.3 -5513405 L 589914.5 -5512330 L 588749.7 -5511344 L 588451.3 -5509918 L 588563.7 -5509568 L 588410 -5509143 L 588053.7 -5508990 L 586956.9 -5508613 L 586752.4 -5508365 L 585972.3 -5507812 L 586054.7 -5507469 L 585488.5 -5506203 L 585556.1 -5505943 L 585170.9 -5505846 L 584087.9 -5505367 L 583748.7 -5505268 L 583098.1 -5504991 L 582793.8 -5504833 L 582801.6 -5503566 L 581340.4 -5503583 L 581330.7 -5503195 L 581263.1 -5500516 L 580724.2 -5499499 L 580623.6 -5498579 L 580243.4 -5498504 L 579204.5 -5498104 L 577423.5 -5498832 L 575912 -5498698 L 575689.5 -5499015 L 575315.4 -5499021 L 575061.9 -5497612 L 574179.7 -5497005 L 574563.7 -5496366 L 575740.3 -5494887 L 576688.7 -5494424 L 576970.3 -5494181 L 576685 -5493491 L 576867.5 -5492007 L 577893 -5491591 L 576677.6 -5489770 L 576011.9 -5489439 L 576126.7 -5488716 L 577261.6 -5488516 L 577853.9 -5488060 L 577836.6 -5486159 L 577771 -5485795 L 576761.2 -5486078 L 576477.7 -5484693 L 575373.4 -5484628 L 575345.7 -5484271 L 575382.9 -5483199 L 575398.4 -5482880 L 575452.8 -5481925 L 575448.2 -5481560 L 575450.5 -5481186 L 575512.2 -5480446 L 577288.9 -5477662 L 576943 -5477799 L 576610.7 -5477684 L 575912.4 -5477612 L 575224.8 -5476815 L 575360.3 -5476523 L 575654.3 -5475322 L 576100.4 -5473597 L 576020.8 -5473221 L 575468 -5472275 L 575258.4 -5470820 L 575305.7 -5470438 L 575172.7 -5468127 L 574151.4 -5468145 L 573519.8 -5467927 L 573454.4 -5468277 L 573180.5 -5468935 L 571599.3 -5470193 L 571226.3 -5470224 L 569760.5 -5469995 L 569514 -5470286 L 567805.1 -5472311 L 567689.6 -5472611 L 567075.7 -5473336 L 566824.2 -5473071 L 566037 -5471940 L 564980.2 -5471652 L 564639.9 -5471511 L 563450.1 -5470657 L 562383.4 -5470371 L 562184.9 -5470115 L 562364.8 -5469494 L 562122.7 -5468904 L 561944.3 -5468686 L 561502.8 -5468479 L 561606.2 -5468125 L 562134.4 -5467617 L 562198.2 -5466912 L 561801 -5466300 L 560448.7 -5466875 L 560127.9 -5467053 L 559786.8 -5467615 L 559404.7 -5467614 L 558282.8 -5467804 L 557565.3 -5467581 L 557288.8 -5467336 L 556595.3 -5467123 L 556427.9 -5467450 L 556138.5 -5467266 L 555001.9 -5466524 L 554176.8 -5466577 L 553785.6 -5466510 L 553800 -5466189 L 553860.9 -5465550 L 553440.1 -5465169 L 553092.9 -5465097 L 551707.4 -5464987 L 551322.2 -5464903 L 550309 -5464368 L 549892.5 -5464166 L 548573.8 -5463924 L 548380.2 -5463585 L 547011.8 -5462932 L 546819.2 -5462614 L 546653.2 -5461516 L 546348.8 -5461304 L 546499.2 -5460984 L 547636.9 -5460174 L 547862.1 -5459697 L 547335.3 -5458787 L 547989.9 -5457923 L 548320.7 -5457774 L 547981.4 -5457653 L 547607.2 -5457036 L 548716 -5454588 L 549065 -5454520 L 549211.4 -5454187 L 548419.4 -5452627 L 547361.8 -5452446 L 547608.4 -5452189 L 547611.2 -5451488 L 548176.5 -5451055 L 549208.4 -5450873 L 549598.8 -5449931 L 550725.7 -5450817 L 550955.7 -5450244 L 551253.6 -5450158 L 551203.9 -5449782 L 550741.7 -5449182 L 551403.6 -5447898 L 552817.9 -5447324 L 553894.9 -5447737 L 554662.9 -5447640 L 554509.8 -5445870 L 554499.2 -5445507 L 554190.8 -5445332 L 553835.7 -5445319 L 553492.3 -5445120 L 552198.3 -5444209 L 551847 -5444111 L 551200.2 -5443773 L 550809.2 -5444381 L 550632.6 -5444650 L 549771 -5445014 L 549437.6 -5444846 L 547654.3 -5444362 L 545440.2 -5444628 L 545196.8 -5444450 L 545104.3 -5444201 L 545105 -5443479 L 544544 -5443026 L 544433.1 -5441970 L 543675.6 -5441206 L 543790 -5440867 L 544657.9 -5440682 L 545150.4 -5439733 L 545332.9 -5439418 L 546053.5 -5437379 L 546554.7 -5436853 L 546522 -5436469 L 546053.8 -5435860 L 544247.2 -5435784 L 544001.6 -5435480 L 543755.2 -5434747 L 543037.5 -5434470 L 542816.3 -5434383 L 542801.6 -5434002 L 542646.2 -5432105 L 542755.6 -5431769 L 544805.8 -5431532 L 544883.4 -5431852 L 547381.1 -5432429 L 547999.6 -5432027 L 548376.6 -5431981 L 549426.8 -5429624 L 548786 -5428725 L 548518.5 -5428462 L 548172.1 -5428311 L 546665.6 -5428264 L 546522.9 -5427912 L 545545 -5425864 L 545328.8 -5424034 L 544997.5 -5423934 L 543990.2 -5423958 L 543154.9 -5423372 L 543348.5 -5423082 L 543879.6 -5421872 L 543304 -5421641 L 542936.7 -5421535 L 541920.5 -5421004 L 541929.8 -5420621 L 541785.5 -5418736 L 541367.4 -5418164 L 539954.2 -5418323 L 538574.2 -5417993 L 538015.8 -5417261 L 537141.7 -5415647 L 536719.8 -5413463 L 536065.1 -5413193 L 535741.8 -5413044 L 535131.3 -5412893 L 535369.2 -5412203 L 535537.7 -5411878 L 535457.2 -5411582 L 535422.7 -5411277 L 535053.5 -5411240 L 534323.1 -5411119 L 533723.6 -5409772 L 533524 -5410059 L 532503.1 -5410293 L 532532.7 -5410613 L 533001.8 -5411749 L 532725.2 -5412017 L 531599.1 -5412154 L 530856.3 -5412989 L 529790.2 -5412553 L 529083.5 -5412851 L 529239 -5413108 L 529590.5 -5413905 L 529207.4 -5413919 L 528279.1 -5413351 L 527935.3 -5413519 L 527871.9 -5415012 L 526939.6 -5416142 L 527361.3 -5417597 L 526754 -5419771 L 526339.1 -5418742 L 524031.2 -5417441 L 523061.1 -5418646 L 522772.5 -5418908 L 522751.2 -5419303 L 522706.3 -5420486 L 522155.8 -5421967 L 521879.3 -5421731 L 520620.7 -5421004 L 519573.9 -5420700 L 519257.2 -5420877 L 518865.3 -5421554 L 518967.7 -5421769 L 519090.1 -5421973 L 518808.5 -5422231 L 518547.5 -5423347 L 518503.1 -5423716 L 517846.3 -5424984 L 516765.2 -5425056 L 516663.8 -5425382 L 516614.6 -5426352 L 516297.3 -5426230 L 516183.9 -5426577 L 515160.4 -5426944 L 515133 -5427269 L 514403.7 -5428275 L 512397.7 -5429016 L 511770.1 -5429842 L 511800.4 -5430543 L 512759.6 -5431118 L 513093.3 -5432550 L 513787.9 -5432823 L 513791.6 -5433185 L 513073.7 -5433868 L 513136 -5434538 L 513015.7 -5434907 L 512124.9 -5436173 L 511452.5 -5436562 L 511930.6 -5438701 L 511565.5 -5438660 L 510506.9 -5438933 L 509985.8 -5439446 L 508928.8 -5439537 L 508745.2 -5439742 L 508282.7 -5439497 L 505692.6 -5440163 L 505114.5 -5440679 L 505115.8 -5440680 z M 499175.1 -5451027 L 499285.2 -5451056 L 499331.5 -5451186 L 499487.6 -5451214 L 499546.4 -5451099 L 499577.7 -5451239 L 499665 -5451398 L 499734 -5451392 L 499866.3 -5451551 L 499727.6 -5451708 L 499755.1 -5451948 L 499765.1 -5451962 L 500090.1 -5451934 L 500076.3 -5452029 L 499919.9 -5452360 L 499725.1 -5452462 L 499434.8 -5452344 L 499339.9 -5452420 L 499047.6 -5452298 L 499120 -5452007 L 498773.7 -5451860 L 498612.4 -5451717 L 498606.3 -5451652 L 498801.3 -5451646 L 498890.1 -5451520 L 498827.7 -5451295 L 498946.5 -5451204 L 499002.6 -5451234 L 499056.6 -5451218 L 498970.3 -5451054 L 499050.4 -5451103 L 499175.3 -5451027 L 499175.1 -5451027 z " |
id="path604" /> |
<path |
d="M 465916 -5110241 L 465456.9 -5113727 L 465104.9 -5113754 L 464122 -5113941 L 463099.3 -5114907 L 462916.4 -5115227 L 463090.6 -5115934 L 462591.9 -5116889 L 462112.1 -5120864 L 462198.1 -5120964 L 461828.1 -5120974 L 461099.4 -5121806 L 460095.5 -5122147 L 460022.6 -5122519 L 459251.2 -5124239 L 459395.4 -5124970 L 459453.5 -5125351 L 458682.8 -5126190 L 456597.1 -5127163 L 456243.1 -5127016 L 455609 -5126695 L 455277.8 -5126007 L 454921.8 -5126096 L 454490.3 -5127500 L 454887.7 -5128853 L 454522.8 -5128990 L 452406.6 -5131248 L 452246.6 -5131294 L 452067.5 -5130979 L 451038.9 -5129163 L 450699.8 -5128994 L 450073.3 -5130351 L 448253.4 -5130564 L 446749.7 -5131626 L 446527.9 -5132330 L 445797 -5132491 L 446243.2 -5133077 L 446388.5 -5134067 L 447447.9 -5135081 L 448514.9 -5135069 L 448466 -5135436 L 448393.1 -5135801 L 448086.3 -5136480 L 446629.2 -5136229 L 445748.4 -5136879 L 444673.5 -5137047 L 444511.6 -5137382 L 444498.7 -5137750 L 444045.5 -5139868 L 444325.6 -5140106 L 444132.7 -5140443 L 444260 -5141171 L 444066.3 -5141929 L 444571.4 -5144607 L 446191.6 -5147270 L 446772.4 -5146748 L 447069.3 -5146494 L 447408.3 -5146537 L 448139.8 -5147637 L 448051.9 -5147966 L 447700.2 -5148627 L 448428.8 -5149935 L 450698.8 -5151883 L 451052.9 -5152014 L 452264 -5151991 L 454541.2 -5152203 L 455859.6 -5152859 L 457152.4 -5152222 L 459533.1 -5153337 L 459852.2 -5153548 L 460893.2 -5153371 L 461170.7 -5152370 L 461901.8 -5152511 L 462713.2 -5153226 L 463411.2 -5152987 L 463657.9 -5152308 L 463960.8 -5152085 L 464250 -5152330 L 465127.4 -5153047 L 466536.8 -5153597 L 467032.2 -5154163 L 469855.4 -5155939 L 469278.9 -5156905 L 469489.5 -5157978 L 468711.8 -5160482 L 467586.6 -5160361 L 467161.4 -5161770 L 466453.5 -5162036 L 466801.6 -5162154 L 468010.2 -5162871 L 467802.4 -5163184 L 467705.8 -5163918 L 468609.6 -5165065 L 468369.2 -5166161 L 468056.3 -5166330 L 466376.4 -5166824 L 466652.9 -5167577 L 469381.9 -5168681 L 469445.4 -5167941 L 470732.2 -5167269 L 471324.1 -5168619 L 471347.3 -5168997 L 470571.7 -5169785 L 470718.4 -5170900 L 471081.5 -5171009 L 472598.6 -5170854 L 473222.3 -5171785 L 474606.9 -5172329 L 474878.1 -5172587 L 474757.5 -5173279 L 475712.4 -5174426 L 476824.7 -5174537 L 476990.7 -5176026 L 476961 -5176405 L 478936 -5177397 L 479231.9 -5177200 L 479932.8 -5175458 L 480794.4 -5174718 L 481052 -5174024 L 482035.5 -5174423 L 482292.4 -5174165 L 482904.8 -5174555 L 483722.8 -5175786 L 485950.4 -5175990 L 486326.5 -5175981 L 487369.1 -5175089 L 487717.1 -5175012 L 487575.1 -5176413 L 487638.4 -5176761 L 489988.3 -5178791 L 490377.2 -5179833 L 491441.8 -5180293 L 491795 -5180460 L 492708.7 -5181091 L 492555.9 -5181438 L 492864.4 -5182073 L 494632.2 -5182652 L 494920.1 -5182407 L 495263.2 -5182385 L 495883.3 -5182352 L 496450.4 -5183596 L 497974.7 -5183547 L 499248.5 -5182831 L 500739.1 -5183152 L 501611.7 -5182436 L 501953.9 -5182608 L 502273.4 -5180504 L 502371.2 -5180156 L 503287.1 -5178480 L 505582.2 -5176513 L 505878.1 -5176270 L 507181.1 -5175887 L 507497.1 -5175763 L 509360.1 -5175138 L 510452.1 -5173503 L 510732 -5173223 L 510904.9 -5173002 L 512295.8 -5171091 L 514740.5 -5169827 L 515127.5 -5169745 L 516845.9 -5171002 L 517400.7 -5171823 L 519351.1 -5172974 L 520019 -5173896 L 520773.2 -5173944 L 521122.2 -5173795 L 521152.2 -5173815 L 522273.6 -5173902 L 522770.6 -5172457 L 523811.7 -5170862 L 525326.9 -5170517 L 526448.3 -5170672 L 526782.6 -5170877 L 527508 -5171132 L 528940.4 -5173704 L 529303.6 -5173833 L 531181.9 -5173425 L 532679.5 -5173559 L 532344.5 -5172453 L 532519 -5171716 L 533585.1 -5171347 L 534120.9 -5170804 L 533716.8 -5168261 L 533412.5 -5168023 L 534230.1 -5167197 L 534355.8 -5166822 L 535768.5 -5167063 L 536453.6 -5166862 L 536722.9 -5167101 L 536731.5 -5167851 L 539288.5 -5170611 L 539973 -5170946 L 540349.1 -5170874 L 541000.6 -5169984 L 541579.1 -5170315 L 541872.4 -5170562 L 542296 -5171164 L 541448.1 -5172886 L 541363.3 -5174374 L 541346.6 -5174757 L 542600.5 -5174067 L 543277.9 -5174248 L 543581.5 -5174832 L 543862.1 -5174175 L 545019.3 -5175109 L 543647 -5177759 L 544741.7 -5179272 L 545034 -5179518 L 545458 -5178092 L 547334.8 -5178126 L 547567.6 -5177816 L 547528.3 -5177446 L 547068.6 -5176861 L 548218.5 -5175016 L 548229 -5173161 L 549263.1 -5172809 L 549542 -5171349 L 549607.7 -5170982 L 550874.7 -5170345 L 550776.8 -5169255 L 552444.7 -5168328 L 552911.4 -5167740 L 552993.1 -5167366 L 553014.8 -5167036 L 553308.5 -5166563 L 553403.3 -5166293 L 554033.5 -5164982 L 554302.4 -5164724 L 554848.9 -5163819 L 554110.5 -5162473 L 554586.3 -5161892 L 555733.6 -5161719 L 556001.3 -5159889 L 556094 -5159511 L 556194.6 -5158927 L 556210.4 -5158631 L 556363.4 -5157232 L 556269.1 -5156887 L 555758.4 -5156230 L 555642.8 -5155495 L 556353.4 -5154592 L 557424.5 -5154226 L 558531.2 -5154549 L 559126.8 -5153701 L 559340.6 -5153382 L 560397 -5153281 L 561401.8 -5152409 L 561732 -5152546 L 563657.7 -5153793 L 564377.4 -5152958 L 563910.7 -5152335 L 564293.4 -5151744 L 564353.4 -5151728 L 565065.9 -5152001 L 565735 -5151715 L 565492.5 -5149812 L 565871.2 -5149161 L 567622.4 -5148373 L 568341.7 -5148348 L 568449 -5148722 L 568760.7 -5149428 L 569410.3 -5149853 L 569794.5 -5149926 L 571155.7 -5149372 L 572637.5 -5149486 L 572983.5 -5149344 L 572562.3 -5148034 L 573198.5 -5147924 L 573549.7 -5147966 L 574254.2 -5148150 L 576320.7 -5146228 L 576369.4 -5145868 L 576068.7 -5145178 L 576492.9 -5143846 L 575462.1 -5143433 L 575940.6 -5142501 L 575935.3 -5142124 L 575661 -5141896 L 575082.4 -5141509 L 575126.2 -5141156 L 575294 -5140848 L 575395.6 -5140179 L 574607.5 -5139081 L 574872.9 -5138028 L 574954.7 -5137675 L 575717.9 -5136048 L 575490.6 -5134224 L 575424.3 -5133860 L 575445.1 -5133500 L 575319.6 -5131408 L 575990.8 -5131303 L 576830.2 -5131287 L 575334.8 -5130166 L 574259.6 -5130509 L 572406.7 -5130295 L 572439.7 -5128805 L 572442.6 -5128590 L 571202.6 -5127746 L 568922.5 -5127377 L 568211.6 -5126446 L 568755.2 -5125459 L 567788.7 -5125212 L 567433.6 -5125308 L 566898.2 -5125062 L 566411.4 -5124070 L 564997.8 -5123878 L 564623.6 -5123842 L 561693.3 -5123317 L 561335.9 -5121215 L 561033.9 -5121367 L 559445.6 -5121698 L 559067.4 -5121628 L 558758.2 -5121399 L 559085.5 -5119932 L 559993.4 -5119193 L 560664.8 -5117784 L 560295.1 -5116708 L 560394.5 -5115538 L 561467.7 -5113458 L 561959.5 -5112848 L 561696.3 -5112650 L 560568.7 -5112108 L 560450.5 -5111752 L 561338.5 -5109323 L 560759.2 -5107182 L 561483.3 -5106960 L 562701.7 -5105072 L 562931.6 -5104768 L 562574.2 -5104133 L 562706.9 -5103410 L 561759.3 -5100625 L 561912.2 -5100262 L 562590.8 -5096862 L 563287.4 -5095483 L 563499.1 -5094777 L 563865.2 -5094720 L 563840.2 -5094695 L 563569 -5094429 L 563193.5 -5093434 L 562152 -5093034 L 561799.8 -5092877 L 559995.8 -5091690 L 558307.8 -5092548 L 557935.7 -5092447 L 557592.2 -5091357 L 556931.9 -5090979 L 554410.7 -5091779 L 553814.2 -5090839 L 554032.8 -5089710 L 553238.3 -5088882 L 553233.6 -5086972 L 553018.7 -5087247 L 552343.9 -5088027 L 552197 -5088362 L 551980.5 -5089735 L 551094.6 -5090304 L 550724.5 -5090285 L 548962.3 -5090758 L 548411 -5090268 L 548272.1 -5090612 L 547917.9 -5092778 L 546948.3 -5094300 L 546911.4 -5094671 L 545767.9 -5096537 L 544980 -5097246 L 544646.9 -5097088 L 544167.6 -5096534 L 542372.3 -5096580 L 542253.1 -5096231 L 541919.1 -5096293 L 541628 -5096089 L 541113.2 -5096896 L 539749.9 -5096777 L 539732.6 -5096118 L 537120.2 -5096086 L 536077.9 -5095679 L 535730.8 -5095529 L 535380.7 -5095390 L 535620.6 -5097579 L 535284 -5098642 L 535592.1 -5098852 L 535951.2 -5098952 L 535077.5 -5100085 L 535079.8 -5100816 L 534820.9 -5101073 L 534531.1 -5101560 L 533851.8 -5101166 L 533090.7 -5101220 L 532100 -5102376 L 531908.1 -5102717 L 530593.6 -5101868 L 529065.3 -5101609 L 528005.7 -5100482 L 525468 -5099530 L 525142.9 -5099312 L 525109 -5099664 L 525196.3 -5100361 L 523973.4 -5100974 L 523767.5 -5101248 L 523082.4 -5101198 L 522840.6 -5101706 L 522495.5 -5101546 L 521446.4 -5101720 L 520783.2 -5101380 L 519298.2 -5101690 L 519037.1 -5101529 L 518150.9 -5101314 L 517807.9 -5101401 L 517280 -5101801 L 517438.1 -5102119 L 517108.1 -5102202 L 516614.9 -5101856 L 516044.1 -5102692 L 513334.8 -5102516 L 513327.5 -5101752 L 512959.5 -5101682 L 509345.4 -5102284 L 508879.5 -5102830 L 508608.6 -5103068 L 508434.6 -5103265 L 508201.6 -5103386 L 507881.6 -5103385 L 507257.6 -5103477 L 507057.7 -5103809 L 507181.1 -5104955 L 506500.7 -5106741 L 503353.1 -5105507 L 502486.3 -5106262 L 502181.2 -5106039 L 501482.1 -5105754 L 501136 -5105616 L 500568.1 -5106014 L 500157.4 -5107039 L 499022.7 -5108002 L 497930.7 -5108147 L 497283.6 -5107832 L 497047.7 -5108069 L 496716.9 -5108650 L 496502 -5108958 L 495773.5 -5113342 L 495480.4 -5113103 L 492963.5 -5113652 L 492781.6 -5113908 L 492583.7 -5114153 L 493223.9 -5114570 L 493291.2 -5115354 L 492693.7 -5116805 L 492979.1 -5117944 L 493600.3 -5118423 L 494284.4 -5118599 L 494563.5 -5118846 L 494776.6 -5119163 L 494249.9 -5120113 L 495307.4 -5121155 L 494943.4 -5121198 L 493761.6 -5122009 L 492205.4 -5121935 L 490712.5 -5122423 L 489148.3 -5122196 L 488667.5 -5122808 L 488323.4 -5122652 L 485535.7 -5121166 L 485528.6 -5120798 L 485418.3 -5120091 L 485848.8 -5118740 L 485514.7 -5118570 L 485382.2 -5117082 L 484846.8 -5116105 L 484475.8 -5116128 L 483025.9 -5116377 L 482807 -5116688 L 481710.3 -5117722 L 480952.3 -5117641 L 479921.6 -5118739 L 478857.7 -5119133 L 478677.6 -5118799 L 478050.3 -5117861 L 478653.7 -5116121 L 478071.4 -5115212 L 478108.2 -5114482 L 477827.2 -5114309 L 476534.2 -5114427 L 476264.1 -5114150 L 475170 -5113842 L 474525.9 -5113439 L 474381.5 -5111935 L 473895.3 -5111352 L 473536.9 -5109932 L 473364.8 -5109633 L 472777.5 -5108246 L 472192.4 -5107747 L 471448.4 -5107597 L 470408.5 -5107980 L 470077.6 -5108183 L 468727.8 -5108885 L 468459.8 -5108715 L 467913.7 -5108431 L 467633.8 -5108705 L 465916.2 -5110242 L 465916 -5110241 z " |
id="path605" /> |
<path |
d="M 640581.8 -5018086 L 641260 -5017356 L 641313.9 -5017027 L 641373.5 -5015346 L 641369.4 -5015009 L 641406.3 -5014674 L 641412.2 -5014101 L 641336.1 -5013823 L 640800.5 -5012355 L 640901.1 -5010401 L 641007.1 -5010024 L 641580 -5008196 L 641736 -5007847 L 641344.5 -5006265 L 641740.4 -5004875 L 641657.3 -5004509 L 641631.1 -5003758 L 642421.3 -5003005 L 642790.4 -5002919 L 643013.5 -5002718 L 643156.5 -5002456 L 643150.5 -5002247 L 641390.3 -4999996 L 641286.2 -4999650 L 641269.1 -4999410 L 641302 -4998673 L 641978.2 -4997786 L 642175.2 -4997470 L 642702.4 -4996911 L 642999.5 -4996660 L 643235.5 -4996360 L 643374.5 -4996005 L 643562.4 -4994840 L 643478.3 -4994454 L 643284.2 -4993841 L 643404.2 -4993211 L 643926.3 -4992722 L 645306.9 -4992278 L 645782 -4991747 L 645856 -4991392 L 645612.8 -4990736 L 645418.7 -4990444 L 644699.3 -4989653 L 644501.2 -4989356 L 644512 -4988032 L 644709.1 -4987746 L 644695 -4986996 L 644236.7 -4986358 L 644330.7 -4985614 L 644636.8 -4985368 L 645397 -4984468 L 645449.9 -4983286 L 645488.9 -4982895 L 645533.9 -4982714 L 646150.1 -4981357 L 646983.4 -4980612 L 647261.5 -4980364 L 647674.6 -4979381 L 647851.6 -4979071 L 648220.7 -4978523 L 648284.7 -4978198 L 647206.2 -4976313 L 647134.2 -4975957 L 646960.1 -4975197 L 645894.7 -4974070 L 645843.7 -4973681 L 646440.9 -4971662 L 646331.9 -4970968 L 646106.8 -4970691 L 645583.6 -4970150 L 645400.5 -4969820 L 645170.4 -4967993 L 644630.2 -4967518 L 644263.1 -4967460 L 643541.9 -4967290 L 643325.9 -4966252 L 643454 -4964832 L 642774.8 -4964610 L 642424.7 -4964519 L 641841.5 -4964198 L 641862.5 -4963528 L 641570.4 -4963298 L 641461.4 -4962193 L 640546.2 -4961064 L 639527.9 -4960630 L 639205.8 -4960443 L 638841.8 -4959860 L 638789.8 -4959595 L 638902.9 -4959239 L 639474.2 -4958319 L 638725.1 -4957067 L 639134.4 -4955251 L 639131.4 -4954916 L 639181.6 -4953362 L 639818.9 -4952373 L 640609.5 -4949767 L 640648.6 -4949376 L 640410.9 -4947029 L 640509 -4946691 L 640051.1 -4945340 L 639108.1 -4944288 L 638906.1 -4943992 L 638621.2 -4942996 L 638486.2 -4942671 L 637573.4 -4940812 L 637878.5 -4940654 L 637656.7 -4939647 L 637667.8 -4939303 L 637378.8 -4939063 L 637015.8 -4938968 L 636681.8 -4938826 L 635279.6 -4938497 L 634937.7 -4937858 L 634872.8 -4937503 L 634815 -4936443 L 634123.9 -4936369 L 633907.4 -4934493 L 634799.9 -4933344 L 635162 -4933208 L 634909.2 -4932478 L 634803.3 -4932106 L 634025.5 -4931215 L 633644.9 -4929678 L 633792.3 -4928505 L 634626.8 -4927161 L 634689.1 -4926370 L 634722.2 -4925974 L 634372.1 -4923346 L 633907.3 -4922750 L 633194.4 -4922485 L 632857.4 -4922303 L 632286.5 -4921881 L 631899.6 -4918986 L 631928.7 -4918686 L 632023.9 -4918091 L 631961.1 -4917702 L 630866.1 -4915192 L 630747.3 -4912436 L 631000 -4910881 L 631092.2 -4910391 L 631174.4 -4910005 L 631380.1 -4906509 L 631323.3 -4906116 L 631298.5 -4905726 L 631122.5 -4903788 L 630516.3 -4904202 L 630116.8 -4905246 L 629767.7 -4905384 L 628806 -4904803 L 628503.1 -4904581 L 627878.5 -4905817 L 627582.4 -4906011 L 627330.3 -4906104 L 627063.3 -4906079 L 625071.9 -4907038 L 624734 -4906875 L 623699.8 -4907389 L 622745.9 -4909097 L 622906.7 -4909451 L 623011.6 -4909635 L 621580.7 -4909561 L 621013.5 -4910069 L 620260.5 -4910091 L 620030.2 -4910786 L 619548 -4911315 L 617704.3 -4911051 L 616250.2 -4911410 L 615860.2 -4911392 L 615174.7 -4910547 L 615159.9 -4910169 L 615069 -4906393 L 615421.9 -4906528 L 615175.1 -4906230 L 614432 -4904906 L 614048.1 -4904888 L 613745.7 -4905587 L 611482.1 -4905378 L 610650.8 -4906076 L 610493.2 -4907201 L 611127.8 -4909442 L 611231.6 -4909816 L 611289.2 -4910576 L 610430.6 -4911845 L 610044.6 -4911892 L 609792.8 -4911587 L 608714.2 -4911098 L 605178.9 -4910835 L 605468.2 -4910180 L 604599.1 -4908985 L 603671.6 -4908360 L 602242 -4908197 L 602375.3 -4906022 L 602334.5 -4905658 L 602127.7 -4905348 L 601158.2 -4903374 L 599985 -4902540 L 598879 -4902927 L 598315.8 -4903476 L 597982.8 -4903688 L 597717.7 -4903919 L 596548.1 -4905216 L 596270 -4905480 L 594152 -4906367 L 593934.9 -4906651 L 593435.9 -4908355 L 593058 -4908331 L 592146.6 -4907714 L 590642.9 -4907824 L 590554.7 -4908168 L 590459 -4909214 L 589316.5 -4910512 L 588293.4 -4909531 L 587947.4 -4909726 L 587722.3 -4909891 L 587499.3 -4910060 L 585114.4 -4909483 L 584035.4 -4908483 L 583677.6 -4908351 L 583347.8 -4908158 L 583074.8 -4908335 L 582315.3 -4909317 L 582073.2 -4909530 L 583039.5 -4910055 L 583440 -4910650 L 583491.8 -4912399 L 583459.6 -4912764 L 583699.4 -4913016 L 583374.2 -4914973 L 582869.1 -4915385 L 582630 -4915614 L 582507.3 -4916669 L 583864.9 -4916670 L 584563.9 -4917918 L 583462.5 -4918982 L 582101.5 -4919643 L 582687.5 -4921048 L 582006.8 -4922423 L 580953.1 -4922447 L 580373 -4922890 L 580243.8 -4923233 L 579243.8 -4923779 L 578888.8 -4923917 L 577989.1 -4925578 L 577922.3 -4928637 L 577386.6 -4930073 L 577027.6 -4930215 L 577275.2 -4930775 L 576355.6 -4932217 L 576195.5 -4932529 L 576132.3 -4932897 L 575792.6 -4934315 L 575595.5 -4934653 L 574802.8 -4936420 L 574457.8 -4936501 L 572803.3 -4936283 L 572645.2 -4936622 L 572256 -4937256 L 572377.6 -4937997 L 571424.6 -4938540 L 571324.4 -4938881 L 571526.6 -4940244 L 571409.4 -4940604 L 570410.4 -4941072 L 570400.1 -4943707 L 570503.9 -4944072 L 570432.7 -4944614 L 570415.5 -4944922 L 569661.3 -4945747 L 568544.4 -4948160 L 569330.6 -4949419 L 569549.4 -4949738 L 569463.2 -4950102 L 568363.4 -4950116 L 568327.2 -4950497 L 568378.9 -4951253 L 567825.8 -4951781 L 567865.3 -4952926 L 568903.4 -4954456 L 567740.3 -4955316 L 568514.6 -4956596 L 570355.3 -4956348 L 570689.8 -4957454 L 571388.5 -4957759 L 571756.4 -4957884 L 572398.2 -4958018 L 572643.1 -4958237 L 572595.1 -4958387 L 572084.9 -4959255 L 573545.9 -4961409 L 574120 -4963963 L 574199.9 -4964334 L 575240.6 -4964796 L 575586.5 -4964952 L 575926.8 -4963894 L 576807.9 -4963209 L 577089.9 -4962965 L 577494.7 -4963505 L 577030.4 -4964587 L 577346.2 -4965194 L 578428.3 -4964321 L 579227.8 -4965552 L 579777.9 -4965093 L 580514.8 -4965247 L 580747.7 -4965563 L 580355.4 -4966583 L 580056.4 -4966802 L 580712.7 -4969066 L 581506.4 -4969810 L 584196.3 -4969516 L 584563.3 -4969526 L 585110.3 -4969465 L 585379.3 -4969596 L 587361 -4970540 L 587739 -4970495 L 589242.1 -4970068 L 590801.1 -4970082 L 591539.9 -4970980 L 592583.8 -4971504 L 592929.3 -4973931 L 593504.2 -4974364 L 593371.1 -4974590 L 595158.9 -4976509 L 595430.9 -4976775 L 595434.9 -4977153 L 595849.8 -4978197 L 595954.5 -4980039 L 596577.5 -4980367 L 596842.5 -4980601 L 598540.7 -4979748 L 600328.8 -4980537 L 601495.9 -4980568 L 601762.9 -4980811 L 603072 -4981301 L 602970.9 -4982012 L 602711.9 -4982159 L 602492.8 -4982705 L 601282.6 -4983575 L 601639.4 -4986147 L 601828.4 -4986486 L 603259.5 -4987610 L 605898.9 -4987404 L 606067.9 -4987731 L 606954 -4988300 L 608049.2 -4988390 L 608186.2 -4988749 L 607991.2 -4990241 L 607317.1 -4990579 L 606568 -4990496 L 605527.8 -4991572 L 605401.8 -4992659 L 606071.9 -4992918 L 606343.9 -4993920 L 606673 -4994067 L 606367 -4995400 L 606730 -4995501 L 607321.1 -4995951 L 608358.3 -4995603 L 608609.4 -4995891 L 609544.6 -4996406 L 609345.6 -4997510 L 607361.2 -4998583 L 607643.3 -5000398 L 607990.4 -5000315 L 609324.7 -4999886 L 610369.9 -5000055 L 611832.2 -4998925 L 611728.1 -4997492 L 612418.2 -4996611 L 612680.3 -4996664 L 612854.4 -4996867 L 612594.4 -4997824 L 613676.7 -4997708 L 614040.8 -4997689 L 613913.8 -4998406 L 613321.7 -4998849 L 612914.7 -5000254 L 612890.7 -5000632 L 613231.9 -5002457 L 614007.2 -5003239 L 614168.3 -5003965 L 615117.6 -5004486 L 615711.9 -5006227 L 615548.9 -5006541 L 615396 -5007910 L 615730.2 -5008499 L 616112.3 -5008574 L 616341.5 -5009316 L 615736.5 -5010743 L 616373.6 -5010322 L 617897.1 -5010470 L 618369.4 -5011460 L 619757.8 -5010833 L 620517.2 -5011587 L 621956.8 -5012121 L 623459.3 -5011987 L 623790.4 -5011791 L 624060.6 -5012071 L 625373.2 -5012862 L 625356.4 -5014000 L 625167.4 -5014191 L 624810.4 -5014578 L 624429.3 -5014658 L 624316.4 -5015382 L 624772.9 -5016856 L 625093 -5017031 L 625809.3 -5017160 L 626564.6 -5017121 L 626657.7 -5017490 L 626180.6 -5018065 L 626086.8 -5019185 L 627478.5 -5019741 L 627985.8 -5020002 L 628201 -5020197 L 627957 -5020727 L 627822 -5020998 L 630658.8 -5023071 L 631003 -5023261 L 632437.7 -5023187 L 632841 -5023705 L 634045.7 -5024243 L 634379.9 -5024299 L 634540.2 -5025061 L 636571.4 -5025605 L 636928.6 -5025587 L 638030.9 -5024645 L 638252.9 -5024354 L 638190.6 -5023373 L 637557.2 -5023234 L 637390.9 -5022567 L 637378.8 -5022346 L 637518.5 -5020921 L 638764.8 -5019639 L 639066.9 -5019439 L 640359.2 -5018347 L 640581.2 -5018085 L 640581.8 -5018086 z " |
id="path606" /> |
<path |
d="M 626780.3 -5320236 L 626524.4 -5320522 L 624458.3 -5319605 L 622544 -5320637 L 620632.2 -5320557 L 620441.3 -5320783 L 620233.9 -5321328 L 619890.4 -5321174 L 617356.9 -5320956 L 616278.9 -5319471 L 615641.9 -5319110 L 615493.3 -5318763 L 614976.2 -5318287 L 614239.8 -5318446 L 614227.3 -5318065 L 614808.8 -5316665 L 615751.8 -5316057 L 616117.1 -5314582 L 615867.5 -5314333 L 615557 -5314166 L 613990 -5314368 L 612877.5 -5313951 L 611308.4 -5314109 L 607707.6 -5312721 L 607040.5 -5313061 L 606725.5 -5313286 L 605407.5 -5314019 L 603615.1 -5313299 L 602076.7 -5313183 L 600267.5 -5312596 L 597676.4 -5313234 L 597156.7 -5312299 L 596690.5 -5311674 L 596780 -5311296 L 596917 -5310531 L 596290.6 -5309119 L 595932.5 -5309243 L 594865.2 -5308854 L 593755.7 -5309064 L 592763.7 -5309586 L 591059.2 -5311565 L 591033.7 -5311949 L 591310.5 -5313070 L 591174.9 -5314171 L 590818.5 -5314084 L 589382.7 -5314211 L 588895.6 -5313669 L 588903.1 -5313286 L 589596.1 -5312939 L 589728.1 -5311417 L 589313.9 -5310795 L 588199.9 -5310592 L 588089.9 -5312111 L 586816.9 -5312775 L 586475.4 -5312608 L 584932.1 -5310958 L 584946.1 -5310202 L 584604 -5310271 L 583480.3 -5309572 L 582857.4 -5309175 L 581430.4 -5309173 L 581270.3 -5310608 L 581048.5 -5310904 L 578890.3 -5311064 L 578459.6 -5309317 L 577792.7 -5308960 L 576836.9 -5309551 L 576231 -5309131 L 575845.7 -5309131 L 574756.1 -5310636 L 574485.6 -5310434 L 573283.3 -5309298 L 572952 -5309256 L 572602.9 -5309373 L 571594.9 -5309825 L 570575.7 -5309433 L 568857 -5309691 L 568654.6 -5309451 L 568269.7 -5308955 L 567934.7 -5309129 L 567276.8 -5308772 L 566565.7 -5308993 L 566440.7 -5309074 L 567055.5 -5310082 L 567275.8 -5312399 L 567892.7 -5314235 L 567094.7 -5316007 L 566983.1 -5316362 L 566489.6 -5316911 L 565749.2 -5316951 L 565473.7 -5316691 L 565369.1 -5314854 L 563982.5 -5314282 L 564094.1 -5314634 L 563832.6 -5315120 L 563096.1 -5315073 L 563045.5 -5315419 L 562312.8 -5317311 L 562667 -5317284 L 564028.2 -5317596 L 564627 -5317223 L 564609.5 -5317599 L 564570.1 -5318718 L 562897.2 -5320150 L 562547.9 -5320811 L 562264.9 -5320885 L 561708.6 -5320897 L 561480.9 -5321204 L 560942.4 -5321742 L 561281.8 -5321877 L 561248.7 -5323922 L 560980.9 -5324176 L 559760.8 -5326002 L 559159.1 -5326415 L 559181.6 -5326770 L 559669.7 -5328014 L 559532.1 -5328364 L 559366.5 -5328702 L 559109.7 -5328963 L 558585.8 -5329899 L 557898.8 -5330151 L 557472 -5331117 L 556905.4 -5331577 L 556537.1 -5331491 L 555722.7 -5330798 L 554801.2 -5331458 L 554732.2 -5332203 L 554901.8 -5332538 L 555817 -5333701 L 555129.1 -5335411 L 554798.2 -5335608 L 552971 -5336127 L 553375.6 -5334353 L 552190.9 -5332900 L 551625.2 -5333282 L 551341.1 -5333985 L 551285.5 -5333618 L 551100.4 -5332913 L 549378.5 -5332207 L 549286 -5332587 L 548750.5 -5334464 L 548075.6 -5335414 L 547936 -5335717 L 547308.9 -5337232 L 547009.1 -5337465 L 546042.5 -5338042 L 543852.2 -5336544 L 543555.4 -5336752 L 542449.2 -5337648 L 542776.7 -5337866 L 544963.1 -5340104 L 545874 -5341773 L 545703.3 -5342052 L 544859.5 -5342455 L 544614.1 -5342238 L 544378.4 -5342514 L 544261.9 -5342859 L 546064.1 -5345058 L 546054.7 -5345423 L 545943.1 -5345748 L 545364.7 -5346981 L 545048.9 -5347209 L 542933.3 -5348107 L 543295.1 -5349847 L 541480.4 -5351203 L 541540.2 -5352343 L 541166.9 -5352260 L 540045.3 -5352180 L 540047.9 -5352569 L 540075.7 -5353736 L 537103.9 -5357243 L 536454.3 -5357671 L 534901.6 -5357648 L 534760 -5357940 L 534597.4 -5358220 L 534573.4 -5358246 L 534188.2 -5358226 L 533064.4 -5358033 L 531695.7 -5356689 L 531328.7 -5356782 L 530389.9 -5358425 L 530441.3 -5359952 L 530883.8 -5362037 L 530961.4 -5362396 L 530567.9 -5362794 L 529505.4 -5362740 L 530176.1 -5363035 L 530209.7 -5363400 L 529871.8 -5363544 L 528817.8 -5363832 L 529086.6 -5364902 L 529375.1 -5365161 L 529681.6 -5365401 L 529744.1 -5366950 L 529088.3 -5367856 L 529116.5 -5368599 L 528135.9 -5369690 L 528400.4 -5369928 L 529585.9 -5370583 L 530202.4 -5370728 L 531105.5 -5371209 L 531778.6 -5371085 L 531797.2 -5371461 L 531130.3 -5373534 L 529691.6 -5375253 L 529918 -5375467 L 530371.9 -5375899 L 532685.9 -5375357 L 533038 -5375346 L 534872 -5376760 L 535263.2 -5376779 L 535471.3 -5377405 L 534112 -5380000 L 534369.6 -5380287 L 535226 -5380968 L 535567.4 -5381118 L 536399.4 -5382175 L 537769.1 -5382303 L 537029 -5383630 L 537274.6 -5383923 L 540802.1 -5385250 L 540741.7 -5385624 L 541286.5 -5384746 L 541457.9 -5383723 L 542173.4 -5383833 L 542531.6 -5383881 L 542688.7 -5382087 L 542743.1 -5381727 L 543471.7 -5381904 L 544232 -5380652 L 544349.5 -5380295 L 544602.9 -5380488 L 544902.4 -5380706 L 545157.9 -5380974 L 545791.3 -5381046 L 546176.6 -5380500 L 546354.2 -5380214 L 546463.6 -5377321 L 547283.3 -5376300 L 548381.7 -5376240 L 548589.6 -5376134 L 548801.8 -5376232 L 550572.2 -5376627 L 551542.8 -5376119 L 551913 -5376156 L 553405.2 -5376460 L 553790.5 -5376504 L 555826.5 -5375894 L 556369 -5375409 L 556952.7 -5375676 L 557538.6 -5375422 L 557825 -5375567 L 558572.3 -5375506 L 560448.3 -5374297 L 560765.1 -5374094 L 561046.6 -5374315 L 561398.9 -5374377 L 562718.8 -5375188 L 563570.3 -5376507 L 563715.6 -5377279 L 563485.5 -5377282 L 563255.4 -5377274 L 563155.7 -5378749 L 563503.1 -5380175 L 562865.3 -5380519 L 562866.4 -5381238 L 564610.2 -5381232 L 564937.1 -5381072 L 564987.2 -5381096 L 565998.4 -5380884 L 566766.4 -5383784 L 566986.5 -5383797 L 567543.5 -5384262 L 569775.2 -5384008 L 570840.9 -5386655 L 571026.5 -5386966 L 571911.4 -5386630 L 572052.9 -5386931 L 571808.2 -5387219 L 572297 -5389430 L 573348.2 -5390468 L 573570.8 -5390773 L 575675.2 -5390333 L 576359 -5390568 L 576713.1 -5390492 L 578066.7 -5391721 L 578408.9 -5392393 L 578276.5 -5393430 L 579274.5 -5394991 L 579584.5 -5394875 L 579891.5 -5394751 L 582730.1 -5393560 L 583073 -5393385 L 584709.8 -5395246 L 585011.3 -5395436 L 585333.8 -5395642 L 586446.8 -5395891 L 590556.3 -5395299 L 591275.2 -5396906 L 591671.6 -5396347 L 592708.5 -5395872 L 595280.2 -5396583 L 596338.4 -5396313 L 597373.3 -5395181 L 597484.8 -5394814 L 597232.4 -5393390 L 597980.1 -5392243 L 597326.7 -5390934 L 597496.4 -5390619 L 597620 -5390283 L 597019 -5389894 L 597294.7 -5388926 L 597381.4 -5388676 L 597538 -5388358 L 597739.7 -5388068 L 597889.7 -5387345 L 596729.7 -5385839 L 596980.4 -5385531 L 597928.1 -5384261 L 598957.3 -5383896 L 599323.4 -5383853 L 602534.5 -5380523 L 604473.9 -5379231 L 604837.9 -5379090 L 605177 -5378989 L 607420.8 -5378440 L 607811 -5378416 L 609848.3 -5377634 L 610182.3 -5377482 L 611080.1 -5378217 L 611328.7 -5378515 L 611765.5 -5378150 L 612055.8 -5378210 L 612677.8 -5376496 L 613420 -5376289 L 613798.4 -5376368 L 614813.6 -5377988 L 616117.8 -5378767 L 616498 -5378705 L 616867.2 -5378666 L 617370.3 -5379142 L 620569.2 -5379362 L 620938.5 -5379391 L 620568.5 -5378917 L 620490.6 -5378335 L 621606.8 -5377844 L 621687.4 -5377532 L 623116.8 -5376995 L 623268.4 -5376663 L 623598.2 -5375632 L 623120.4 -5374652 L 622875.2 -5374628 L 622331 -5374161 L 622386.9 -5372684 L 621853.8 -5370892 L 622014.9 -5370156 L 621663.6 -5370167 L 620746.2 -5369758 L 620049.7 -5369838 L 620297.5 -5369560 L 620736.4 -5368579 L 623582.9 -5367256 L 623738.6 -5366954 L 623827.7 -5366320 L 623910.3 -5365963 L 624673.9 -5365200 L 624119.1 -5364260 L 624485.4 -5364242 L 625153.7 -5364018 L 626230.5 -5362543 L 625763.6 -5362186 L 625894.9 -5361643 L 626201.8 -5361422 L 627228.3 -5361812 L 629085.7 -5361623 L 630100.9 -5361126 L 629884.8 -5359087 L 629734.2 -5358777 L 631395.3 -5357794 L 632939.5 -5357598 L 634168.3 -5356634 L 636028.5 -5356251 L 636240.2 -5355923 L 635934.6 -5355675 L 634258.7 -5354048 L 634499.5 -5353768 L 635105.8 -5352856 L 635202.3 -5351763 L 635541.8 -5351865 L 637041.2 -5351141 L 636485.6 -5349714 L 637750.1 -5347802 L 636817.6 -5346644 L 636691.4 -5345892 L 636784.2 -5345671 L 636615.1 -5344967 L 637255 -5343722 L 636365.3 -5343121 L 636087.7 -5342875 L 636169.2 -5342497 L 638116.6 -5341432 L 638136 -5340274 L 637700.7 -5339642 L 637685.7 -5339627 L 637046.1 -5338219 L 637183.7 -5337862 L 636460.7 -5336976 L 636308.5 -5336233 L 636467.1 -5335120 L 637364.4 -5333967 L 637006.9 -5333861 L 636709.7 -5333180 L 635794.9 -5332540 L 635973.7 -5332251 L 636176.5 -5331265 L 636279.1 -5330930 L 636283.7 -5329895 L 635919.3 -5329847 L 634842 -5329683 L 632735.8 -5330266 L 632373.6 -5330427 L 630870.8 -5330871 L 629295.3 -5330895 L 628615.2 -5331300 L 628278.4 -5330229 L 626593.9 -5328846 L 626812.7 -5328542 L 626771.2 -5328180 L 625637.3 -5327512 L 625302.7 -5327311 L 623819.1 -5327103 L 623168 -5326711 L 623410.9 -5326485 L 623800.2 -5326445 L 625689.3 -5325958 L 627148.5 -5323677 L 628133.6 -5323104 L 628037 -5322726 L 627040.4 -5321546 L 627130.9 -5320408 L 626780.3 -5320237 L 626780.3 -5320236 z " |
id="path607" /> |
<path |
d="M 501018.6 -4754698 L 503483.8 -4753480 L 504401.4 -4752701 L 504728.7 -4752222 L 504401.1 -4751399 L 504083.7 -4749426 L 503641.3 -4748742 L 503210.2 -4743747 L 503130 -4743521 L 503066.4 -4743563 L 500838.3 -4745020 L 500519.3 -4745234 L 498912.2 -4746287 L 498575.2 -4746497 L 493049 -4748531 L 492822.6 -4748818 L 492221.3 -4749731 L 491847.7 -4749808 L 490059.2 -4750362 L 488813.5 -4752247 L 488512.5 -4752032 L 486406.3 -4751502 L 484313.5 -4750041 L 483928.3 -4749982 L 482439.8 -4749599 L 480376.4 -4747264 L 479758.8 -4744867 L 479561 -4744537 L 478628.8 -4743336 L 477558.7 -4742952 L 473847.2 -4742553 L 472469.8 -4743216 L 472404.9 -4743226 L 470407.9 -4743400 L 470030.7 -4743366 L 467412.9 -4743175 L 464895.2 -4743988 L 464511.8 -4744026 L 463768.6 -4744230 L 463405 -4744316 L 460495.2 -4743983 L 460226 -4744241 L 459968.8 -4744490 L 459020.7 -4744798 L 458708.9 -4744573 L 455890 -4743497 L 455451.1 -4743381 L 455069 -4743324 L 450923.4 -4744116 L 450624.6 -4744259 L 449357.9 -4744637 L 448433.3 -4744408 L 448075.2 -4744323 L 445591.3 -4743802 L 444684.7 -4743197 L 444462.2 -4742117 L 445246 -4741323 L 445257.3 -4739829 L 445831.3 -4739454 L 446206.7 -4739417 L 446203.2 -4737509 L 446219.3 -4737126 L 446141.5 -4736411 L 446634 -4735897 L 446892.5 -4734856 L 446718.8 -4734541 L 446821.2 -4733977 L 446874.9 -4733696 L 446964.1 -4733571 L 447249.8 -4732443 L 447097.5 -4731294 L 446075.2 -4730730 L 444396.4 -4729101 L 444072.6 -4728921 L 441616.4 -4728297 L 440536.8 -4728556 L 439667.5 -4729240 L 439642.9 -4728473 L 439002.5 -4728051 L 437699.1 -4725762 L 435870.5 -4725211 L 433689.5 -4723747 L 433614.5 -4723478 L 433700 -4722938 L 433347.6 -4722971 L 432374.7 -4722632 L 432371.4 -4723042 L 432366.3 -4723088 L 432130.9 -4723380 L 431554.2 -4724305 L 431616.7 -4725067 L 432241.5 -4726013 L 432206.3 -4726747 L 431482.6 -4728094 L 430846.7 -4728499 L 430074.4 -4728459 L 429506 -4728972 L 429524.9 -4729333 L 427329.1 -4731064 L 427105.7 -4731326 L 426249.8 -4731875 L 425934.9 -4732037 L 425215.2 -4732758 L 425109.2 -4734144 L 424993.6 -4734100 L 424627.1 -4734167 L 422802.7 -4734547 L 421632.8 -4733662 L 420897.5 -4733606 L 420552 -4733018 L 419667.3 -4732864 L 419285.3 -4732786 L 418335.2 -4732159 L 418164.9 -4732365 L 417906.2 -4732432 L 417611.9 -4732394 L 417326.8 -4732311 L 416950.4 -4732362 L 413960.7 -4732667 L 413427.8 -4733621 L 412446.2 -4734157 L 412451.4 -4734416 L 412309 -4734632 L 411938.8 -4734634 L 410938.4 -4735103 L 410618 -4735766 L 410667.8 -4736121 L 412022.7 -4736518 L 412261.4 -4736783 L 411936.5 -4736970 L 410045 -4739698 L 409795.8 -4739930 L 409759.7 -4740302 L 409241.2 -4740796 L 406815.6 -4741653 L 406631 -4741979 L 406704.6 -4742712 L 407976.9 -4744035 L 407939.8 -4744749 L 407943.7 -4745107 L 408376.6 -4745491 L 409093.2 -4745486 L 409489.3 -4745505 L 413840.4 -4745870 L 414916.7 -4746378 L 415258.5 -4746546 L 416951.6 -4747407 L 416704 -4748113 L 416681 -4748476 L 417068.9 -4750947 L 417488.6 -4751464 L 417344.9 -4751798 L 416673.1 -4753539 L 416652 -4753924 L 413225.8 -4754922 L 412843.2 -4755029 L 413061.7 -4756440 L 414337 -4756874 L 414299 -4757224 L 415146.5 -4757538 L 416589.2 -4757355 L 417332.1 -4756555 L 417680.3 -4756590 L 418670.9 -4757450 L 417586.3 -4757674 L 417118.6 -4758234 L 416936.6 -4760449 L 417258.1 -4761119 L 417259.2 -4761792 L 416510.6 -4762514 L 415817.6 -4762626 L 416033.4 -4762916 L 417155.3 -4764334 L 417186.2 -4765052 L 417091.4 -4765384 L 416681.6 -4765939 L 416398.8 -4766430 L 415199.8 -4767248 L 414626.7 -4766946 L 413961.1 -4767245 L 413530.1 -4768602 L 413847.9 -4769194 L 415227.4 -4769150 L 415385.2 -4769468 L 414611.4 -4770622 L 414317.4 -4770823 L 414517.3 -4771083 L 414809.3 -4771234 L 414780.3 -4771621 L 414410.9 -4773118 L 414491.1 -4774106 L 414250.8 -4775107 L 412949.1 -4775516 L 412596.6 -4775558 L 412555.1 -4776146 L 411654.5 -4776594 L 410688.9 -4776354 L 409716.9 -4774809 L 409515.3 -4775514 L 408751.5 -4776310 L 408777.3 -4778194 L 408555.5 -4777897 L 406839.7 -4777895 L 406462.5 -4779672 L 406304.7 -4779341 L 405955.7 -4779226 L 406154.1 -4778206 L 404349.9 -4778045 L 403968.6 -4778417 L 403621.9 -4778558 L 402351.1 -4779327 L 400918.5 -4779065 L 400574.3 -4779723 L 400206.6 -4779859 L 398004.3 -4781445 L 397370.8 -4782422 L 396262.8 -4782813 L 395116.1 -4782737 L 394946.4 -4783090 L 394989.3 -4784181 L 396165.3 -4785565 L 395902.9 -4786625 L 396156.7 -4786892 L 395526.6 -4787337 L 394270.7 -4789257 L 394353.5 -4790755 L 393610.2 -4792094 L 393352.9 -4792382 L 394177.8 -4792985 L 394407.6 -4793269 L 394849.5 -4793745 L 395485.1 -4794960 L 394949.9 -4795404 L 394661.9 -4795610 L 394938.7 -4795883 L 396581.4 -4796774 L 397269.5 -4797037 L 396355.1 -4798563 L 396518.9 -4798896 L 396484.2 -4799582 L 396250.8 -4799882 L 397258.2 -4799443 L 398169 -4800070 L 398393.9 -4800731 L 399955.1 -4799592 L 400242.3 -4799321 L 400595.1 -4799935 L 401279.2 -4800214 L 401955.8 -4799918 L 402247.9 -4799692 L 402560 -4799845 L 403586.4 -4799778 L 403630.3 -4800163 L 403608.5 -4800885 L 402933.3 -4801812 L 402971.6 -4805223 L 403580.6 -4805609 L 404681.6 -4805662 L 404324.1 -4806123 L 403971.3 -4807082 L 403988.4 -4807445 L 404766.2 -4808222 L 405866.7 -4808096 L 406208.5 -4808743 L 406339.1 -4809642 L 406096 -4809846 L 407095.2 -4810718 L 407202.2 -4811043 L 408526.8 -4810306 L 408602.5 -4809562 L 410493.8 -4807765 L 410305.9 -4805803 L 410950.5 -4805513 L 411530.6 -4805880 L 411852.2 -4806248 L 411603.9 -4806546 L 412596.4 -4808548 L 413348.7 -4808740 L 414461.6 -4808421 L 415404.8 -4808965 L 415611.9 -4808780 L 415852.8 -4808643 L 415791.6 -4808328 L 416017.6 -4807777 L 416595.6 -4808213 L 418049.8 -4807131 L 419802.5 -4807742 L 420477.3 -4808641 L 421110.3 -4808239 L 421800.5 -4808515 L 421894.5 -4808881 L 421292.3 -4809803 L 421156.7 -4810155 L 421492.4 -4810057 L 423085.4 -4809403 L 424420.2 -4806867 L 424458.5 -4805862 L 424644.9 -4805547 L 425010.3 -4805535 L 425690.6 -4805801 L 426170.9 -4805332 L 426450.8 -4805585 L 427201.8 -4805512 L 427555.5 -4805382 L 427741.8 -4805571 L 429319 -4806116 L 429569 -4806373 L 429953.4 -4806386 L 431420.2 -4807613 L 432557.2 -4807712 L 433650.2 -4805695 L 435827.2 -4804211 L 436143.2 -4803992 L 437321.8 -4806831 L 436846.1 -4807889 L 436787.5 -4809056 L 437852.5 -4810074 L 438159.5 -4810314 L 438322.5 -4810638 L 438523.5 -4810942 L 439571.9 -4811844 L 439707.1 -4812561 L 440158.5 -4812092 L 440277.1 -4811758 L 440540.3 -4811501 L 441593 -4810477 L 441843.2 -4810680 L 443044.5 -4811061 L 443401.7 -4811182 L 444191.2 -4810414 L 446972.1 -4809476 L 448156.4 -4808558 L 448498.2 -4808401 L 448814.8 -4808388 L 449132.3 -4808377 L 451034.9 -4807706 L 451692.4 -4807946 L 451530.9 -4808300 L 451769.9 -4808606 L 453379.3 -4809627 L 455279.1 -4809365 L 456773.2 -4809704 L 457109.4 -4809831 L 457456.9 -4809820 L 458782.9 -4809870 L 459020.2 -4809575 L 460767.2 -4808393 L 463118.6 -4808486 L 464203.9 -4808073 L 464533 -4808288 L 464552.9 -4808293 L 464875.9 -4808100 L 466009.3 -4807145 L 466754.5 -4807036 L 466692.1 -4806306 L 466252 -4805699 L 465166.6 -4805687 L 464806.9 -4805771 L 464585.8 -4805476 L 463833.8 -4804615 L 463450.6 -4803134 L 463677.7 -4802017 L 462916.7 -4800699 L 462441.7 -4799678 L 463363.6 -4798631 L 463690.7 -4798810 L 465958.2 -4798406 L 466557.4 -4797017 L 466639.1 -4796637 L 466997.4 -4796255 L 467262.2 -4796174 L 467357.1 -4794797 L 467375.8 -4794446 L 468723.4 -4793268 L 468650.3 -4792909 L 469273.6 -4793259 L 469808.8 -4794180 L 470502.8 -4794135 L 470839.6 -4794017 L 471154.2 -4793981 L 472083.1 -4793843 L 472124.2 -4794216 L 473350.6 -4795031 L 473543.9 -4796130 L 474220.2 -4796457 L 474401.4 -4797169 L 475449.7 -4795858 L 475320.6 -4795539 L 475833.8 -4793755 L 475409.7 -4792708 L 475623.9 -4792041 L 475804.2 -4791781 L 476107 -4791689 L 476822.5 -4791898 L 478457.2 -4790973 L 478689.5 -4790677 L 479443.2 -4789877 L 479641.6 -4789567 L 480939.1 -4789859 L 481262.4 -4789945 L 481327.5 -4790301 L 481871.7 -4790745 L 482130 -4790899 L 482446.8 -4791720 L 482437.7 -4791764 L 482424.9 -4792133 L 482460.4 -4793234 L 483643.7 -4794633 L 483960.8 -4794860 L 484280.9 -4795083 L 484842.1 -4795557 L 483991.8 -4796730 L 484968.3 -4797256 L 486894.7 -4797223 L 487222.8 -4797438 L 489051.2 -4797930 L 489472.4 -4798992 L 489134 -4800858 L 488003.6 -4802748 L 488096.8 -4803060 L 489100.8 -4803875 L 489213.2 -4803583 L 489352.8 -4802687 L 490602.6 -4801984 L 490708.8 -4801309 L 490780.4 -4800957 L 490626.2 -4800654 L 490747.7 -4800338 L 490884.8 -4799232 L 490394.4 -4798283 L 490862 -4797693 L 491190 -4797507 L 492491.6 -4796818 L 493090 -4797202 L 493323.1 -4797488 L 495011.7 -4796110 L 495337.7 -4795921 L 496266.3 -4795979 L 496611.7 -4796042 L 498955.1 -4796728 L 499324.5 -4796766 L 500065.5 -4796785 L 500220.8 -4794613 L 500102.7 -4794239 L 500180 -4793070 L 500697.5 -4792482 L 500618.4 -4792115 L 502640.7 -4792594 L 504124.1 -4792388 L 505965.6 -4790493 L 506713.4 -4790594 L 507317.5 -4790156 L 507628.5 -4789942 L 507951.5 -4789747 L 509026.4 -4789592 L 509367.6 -4790257 L 511212.5 -4790126 L 511652.1 -4789533 L 511613.7 -4788782 L 512644.3 -4788323 L 513775.7 -4788394 L 514656.1 -4789095 L 515404.1 -4789128 L 516078.8 -4788838 L 518323.4 -4785670 L 519134.8 -4785068 L 519074 -4785010 L 518319.9 -4784375 L 516066.2 -4781858 L 515484.5 -4781546 L 513781.2 -4779292 L 513338.9 -4778706 L 512562.1 -4778043 L 511538 -4777560 L 510874.5 -4776781 L 510280.7 -4775548 L 509147 -4774621 L 508958.7 -4773938 L 509120.4 -4772804 L 508636.8 -4772272 L 506691.2 -4768429 L 506410.9 -4768209 L 506110 -4767768 L 506191.7 -4767539 L 505893.8 -4766411 L 505316 -4765537 L 504822.6 -4763985 L 503833.4 -4760872 L 503637.9 -4759218 L 502906.4 -4757308 L 502861.9 -4755413 L 502706.7 -4754913 L 502370.3 -4754701 L 501699.7 -4755300 L 501194.2 -4756299 L 500324.5 -4757109 L 500330.5 -4757569 L 500554.6 -4758034 L 500347.5 -4758439 L 500000.2 -4758296 L 499466.6 -4756963 L 499306.3 -4756621 L 499855.6 -4756236 L 500000.2 -4756426 L 500088 -4756395 L 500419.3 -4755355 L 501018.9 -4754698 L 501018.6 -4754698 z " |
id="path608" /> |
<path |
d="M 529409.1 -4891346 L 528011.6 -4890895 L 526240.3 -4889620 L 526120.6 -4888493 L 525956.1 -4888152 L 525170.5 -4887457 L 525248.2 -4886763 L 525434.4 -4886467 L 525470.3 -4884795 L 525465.7 -4884459 L 525085.1 -4884396 L 524416 -4884012 L 522885.2 -4883992 L 520636.5 -4882637 L 521548.5 -4882066 L 523253.5 -4880077 L 524014 -4880042 L 525048.9 -4881139 L 525419.5 -4881231 L 525888.2 -4881144 L 526023.4 -4880887 L 526179.6 -4880643 L 526587.4 -4878895 L 527155.5 -4878442 L 527422.6 -4878197 L 527732.6 -4877960 L 529001.6 -4878850 L 529419 -4878228 L 530514.8 -4878501 L 531582.3 -4877382 L 533041.8 -4876848 L 534883.1 -4875398 L 535202.1 -4875171 L 535600 -4875013 L 535701 -4874933 L 535121.1 -4872687 L 533123 -4871559 L 532163.4 -4869429 L 532102.9 -4869042 L 529857.1 -4868725 L 529728.6 -4867590 L 528395.6 -4866865 L 528057.8 -4866181 L 527802.9 -4865469 L 527843.4 -4865090 L 528374.8 -4862897 L 528089.3 -4862671 L 527037.5 -4861689 L 527095.9 -4860633 L 525178 -4860284 L 523287.1 -4860701 L 522541 -4860511 L 521866.1 -4860893 L 521600.1 -4861087 L 520678.1 -4860247 L 520622.7 -4859870 L 520172.5 -4858836 L 519116 -4858458 L 518504.5 -4857095 L 518651.9 -4855992 L 519712.4 -4854908 L 519619.6 -4853425 L 519273.1 -4853338 L 518598 -4853183 L 518235.6 -4853029 L 517507.6 -4852106 L 516112.7 -4851566 L 514269.5 -4851545 L 512067 -4852008 L 511783.7 -4851755 L 511722.9 -4851641 L 509814.1 -4852068 L 508652.7 -4853108 L 506491.5 -4854044 L 505323.8 -4853961 L 504933.1 -4854010 L 504325.9 -4853198 L 504321.6 -4852092 L 504738.1 -4851497 L 503642.6 -4850605 L 503515.3 -4850257 L 504308.1 -4848552 L 504201.8 -4848185 L 504343.2 -4847839 L 505530.1 -4846499 L 504881.9 -4845179 L 504146.8 -4845094 L 504063.5 -4844717 L 503898.9 -4843963 L 504218.7 -4843261 L 503931.2 -4842546 L 504264.9 -4841852 L 504051.9 -4840768 L 505197.3 -4839756 L 504650.7 -4839262 L 504612.9 -4838553 L 504517.6 -4838198 L 503513.9 -4838656 L 502158.2 -4838152 L 501454.6 -4838366 L 501132.7 -4838546 L 500702.2 -4839150 L 499305.8 -4839708 L 498184.8 -4839877 L 497531.2 -4839498 L 497159.7 -4839432 L 496213.6 -4838923 L 496002.4 -4838600 L 494976.5 -4838071 L 494391.6 -4838396 L 493645.4 -4839617 L 493118 -4842573 L 493336.2 -4842884 L 492104.5 -4843527 L 491782.6 -4843673 L 489195.1 -4843328 L 488573.2 -4844261 L 488238.3 -4844437 L 488215.3 -4844447 L 487839.9 -4844374 L 486403.1 -4844656 L 485446.3 -4845777 L 484695.1 -4845820 L 482653.1 -4844820 L 482035.8 -4843089 L 481650.3 -4843054 L 478738.2 -4842208 L 476590.2 -4843656 L 475478.4 -4843724 L 475107.7 -4843791 L 474007.9 -4843834 L 472049.2 -4845587 L 472003.6 -4845969 L 470081.9 -4847688 L 469793.8 -4847922 L 469399.4 -4848985 L 468552 -4849781 L 468189.5 -4850875 L 467374.2 -4851636 L 467437.5 -4852019 L 467148.5 -4852211 L 466694.2 -4852153 L 464400.6 -4855235 L 464610.4 -4855789 L 464571.7 -4856802 L 464553.1 -4857148 L 464855.7 -4857734 L 465759.8 -4858250 L 465872.1 -4858582 L 465577.4 -4859202 L 463633.8 -4860298 L 463515.7 -4861036 L 463558 -4861410 L 463707.7 -4862098 L 463794.2 -4863573 L 462446 -4864612 L 462467.4 -4864992 L 460168.9 -4866273 L 459413.8 -4866257 L 459800.6 -4867338 L 461083.2 -4867905 L 461170.5 -4868248 L 461352.5 -4869370 L 461369.2 -4870138 L 459652.9 -4870866 L 459385.1 -4871580 L 459112 -4871852 L 459085.5 -4872163 L 458857.8 -4872744 L 459133.2 -4872931 L 459153.1 -4873595 L 458881 -4873823 L 458318.6 -4875095 L 457123.9 -4875726 L 456873.8 -4875973 L 456410.2 -4877949 L 456040.5 -4878035 L 452358.7 -4878585 L 452425.3 -4880076 L 451536.7 -4881717 L 450702.4 -4882507 L 450704.8 -4882892 L 450322.3 -4882826 L 448192.3 -4883682 L 448012 -4883992 L 447736 -4884219 L 447438 -4884427 L 446808.1 -4884783 L 446185.8 -4886077 L 445458.3 -4886242 L 444171.7 -4885594 L 442844.3 -4886162 L 443408.6 -4887525 L 442680.2 -4888320 L 442402.1 -4888581 L 440560.2 -4888522 L 438609.1 -4887386 L 437602.4 -4887875 L 434971.1 -4888018 L 434688.8 -4887757 L 434317.1 -4887860 L 434286.5 -4888243 L 434873.1 -4888744 L 436349.5 -4888728 L 438636.9 -4890084 L 437545.6 -4891024 L 436093.5 -4891434 L 435624.9 -4890846 L 434920 -4890651 L 434207.4 -4891550 L 434116.3 -4892302 L 433411.7 -4892558 L 432309.1 -4892424 L 432038 -4892655 L 432366.7 -4893282 L 431882.4 -4893783 L 431617.1 -4894795 L 431243.5 -4894791 L 430499.3 -4894790 L 429922.7 -4894317 L 428806 -4894294 L 428463.5 -4894208 L 427928.7 -4893824 L 428291.8 -4892864 L 428043.5 -4892574 L 427389.4 -4892450 L 427113.6 -4893131 L 425712.7 -4892797 L 425086 -4893699 L 424735.5 -4893605 L 423775 -4893350 L 424343 -4891726 L 422151.1 -4891357 L 421827.8 -4891158 L 422069.2 -4890118 L 420287.1 -4889598 L 419946.8 -4889427 L 419577.3 -4889390 L 418857.4 -4889250 L 419418.2 -4890217 L 417723.9 -4890962 L 417562.9 -4891695 L 418084.4 -4892252 L 417921 -4892597 L 416539.7 -4893125 L 415410.2 -4892992 L 414932.1 -4891548 L 414430.8 -4892095 L 414213.7 -4893526 L 413543.1 -4893721 L 412959.4 -4893322 L 412587.8 -4893317 L 412743.1 -4893643 L 412174 -4894064 L 411962.1 -4895383 L 410961.6 -4895790 L 411311.3 -4896368 L 412405.1 -4896315 L 414345.6 -4899644 L 414988.5 -4899874 L 415221.8 -4900182 L 416381.6 -4899523 L 416727.1 -4899583 L 416705.5 -4899947 L 416930 -4902047 L 417457.4 -4903349 L 417108.6 -4903491 L 415292.1 -4903781 L 415044.9 -4904065 L 414732.5 -4903883 L 412618.7 -4903967 L 411940.8 -4903720 L 409709.1 -4905046 L 409359.3 -4905185 L 410282.4 -4906403 L 408740.8 -4908511 L 409706.9 -4909686 L 410378.8 -4909941 L 410762.3 -4909966 L 410623 -4910234 L 410486.7 -4910502 L 410699 -4910826 L 411262.9 -4911792 L 412398.9 -4911677 L 412797.5 -4912325 L 412741 -4912708 L 412601.6 -4913069 L 411664.6 -4913748 L 411285.4 -4914829 L 409947.7 -4916210 L 409516.2 -4916856 L 409959.2 -4917923 L 409709.2 -4919456 L 409907.5 -4919791 L 409897.4 -4919841 L 408145 -4921331 L 407968.1 -4922090 L 408259.1 -4923982 L 407930.4 -4924680 L 407800 -4925048 L 407297.7 -4925640 L 407337.1 -4926030 L 409065.2 -4926865 L 409991.8 -4926520 L 410321.5 -4926492 L 410677.2 -4926471 L 411181.5 -4928778 L 411551 -4928861 L 412539.7 -4928371 L 412763.5 -4926916 L 413423.2 -4926702 L 413689.6 -4926959 L 413034.1 -4928542 L 413643.3 -4928702 L 414387.5 -4928772 L 415605.6 -4930093 L 415985.2 -4930111 L 416760.2 -4930295 L 417789.8 -4931408 L 417876.2 -4931782 L 418045.6 -4932119 L 418506.4 -4932716 L 418886.2 -4933403 L 420483.4 -4934464 L 422027.1 -4934378 L 422374.6 -4934559 L 422440.5 -4934584 L 422978.4 -4935909 L 424919.2 -4937092 L 425277.6 -4936521 L 425023.7 -4935797 L 425289.7 -4935613 L 426516.3 -4937517 L 427739.2 -4936727 L 427972.3 -4936482 L 428419.5 -4935995 L 429394.5 -4936166 L 430246.1 -4936731 L 430822.7 -4935851 L 431913.7 -4935872 L 432269.3 -4935972 L 433406.1 -4937863 L 433638.6 -4938152 L 433658.6 -4938162 L 434926.6 -4938074 L 435519.5 -4937740 L 435923.4 -4938380 L 435880.6 -4939132 L 436801.2 -4939725 L 436670.1 -4940814 L 437400.8 -4941443 L 437714.4 -4941526 L 437483.2 -4941836 L 436772.4 -4943956 L 438264 -4945075 L 440117.8 -4944840 L 441287.8 -4945807 L 441671.5 -4945776 L 442021.1 -4945844 L 443040.7 -4946428 L 444538.9 -4946068 L 445962.1 -4946698 L 446410.1 -4946404 L 446599.2 -4946187 L 446941.6 -4945538 L 446809.9 -4944437 L 448066.8 -4943584 L 449200.9 -4943646 L 450442.1 -4944506 L 451371.9 -4943975 L 451727.5 -4944112 L 452055.3 -4944024 L 452332.9 -4944219 L 454774.9 -4943379 L 455926.1 -4944299 L 457343.6 -4943715 L 457660.4 -4944728 L 458003.3 -4944539 L 458668.6 -4944786 L 459055.6 -4945464 L 459034.5 -4946635 L 459942.8 -4948801 L 461224.2 -4949580 L 461404.8 -4949928 L 461505.4 -4950263 L 462798.5 -4951358 L 464372.4 -4952492 L 463835.1 -4953207 L 464053.7 -4953517 L 464214.4 -4953799 L 464224.9 -4954371 L 464107.7 -4954702 L 464190.2 -4956398 L 464745.5 -4956799 L 464972 -4958316 L 465055.6 -4958691 L 466147.2 -4959559 L 466804 -4959339 L 467087.6 -4959593 L 467880.4 -4960409 L 467759 -4963418 L 468783.5 -4964507 L 468222.8 -4965895 L 469323.3 -4966988 L 470007.5 -4968790 L 470203.1 -4969127 L 472094.2 -4968845 L 472345.8 -4969139 L 472539.6 -4970624 L 474185.2 -4972686 L 474382.9 -4973011 L 474980.8 -4972612 L 476014.1 -4972781 L 476315.8 -4972978 L 477142.7 -4975390 L 477757.5 -4975224 L 478498.3 -4976449 L 478795 -4976668 L 478840.9 -4976763 L 479140.4 -4975736 L 480230.8 -4975753 L 481816.6 -4973253 L 481509.5 -4972186 L 481796.1 -4971102 L 482008.2 -4970794 L 481323.5 -4969489 L 481144.3 -4968401 L 481502.8 -4967343 L 482242.3 -4967405 L 482488.7 -4968099 L 483915.1 -4969275 L 484293.9 -4969304 L 484849 -4968788 L 487762.3 -4969057 L 488031 -4969326 L 488405.8 -4969344 L 488393.1 -4968960 L 488073.7 -4966769 L 488707.7 -4966340 L 488549.5 -4965291 L 489205.8 -4964360 L 489959.4 -4961421 L 490764.1 -4959782 L 491414 -4959425 L 492129.6 -4959463 L 492905.6 -4960195 L 493179.3 -4960446 L 494097.6 -4959272 L 494252.8 -4958931 L 494407 -4958581 L 494305.9 -4957455 L 493713.5 -4957069 L 492986.7 -4957299 L 492697 -4957050 L 492711.3 -4956668 L 492927.4 -4956353 L 493963.1 -4955925 L 494231.5 -4955218 L 494057.4 -4954108 L 493420.5 -4953157 L 493903.3 -4951776 L 494023.5 -4951425 L 494284.8 -4949559 L 494857.2 -4948561 L 494693.1 -4947489 L 495332 -4947138 L 495962.7 -4945791 L 496529.8 -4945299 L 496478.1 -4944925 L 496935.2 -4944485 L 497142.3 -4944237 L 497694.3 -4943843 L 498048.1 -4943840 L 498346.9 -4943789 L 498535.1 -4943454 L 500554.7 -4941199 L 500961.3 -4940134 L 501939.7 -4938969 L 502033.8 -4938717 L 502449.8 -4938392 L 502763.7 -4938244 L 503896.7 -4937456 L 504237 -4936852 L 504413.1 -4936561 L 505553 -4935848 L 505586.3 -4935509 L 505778.5 -4935174 L 506132.9 -4934492 L 505458.9 -4931489 L 505566.2 -4929954 L 505075.8 -4928475 L 505382.6 -4927419 L 507428.9 -4925627 L 507741.8 -4925528 L 508842.7 -4924893 L 509445.6 -4923509 L 510291.6 -4922870 L 510349.3 -4922123 L 510364.6 -4921746 L 510263 -4921371 L 510826.1 -4920841 L 510742.2 -4919683 L 509860.5 -4918963 L 509606.3 -4918255 L 509897.3 -4918041 L 510445.3 -4917624 L 510435.1 -4915778 L 509058.6 -4915186 L 509351.1 -4914508 L 509282.3 -4913375 L 509123.8 -4913020 L 509372.3 -4912350 L 510041.2 -4911952 L 509861.7 -4911616 L 509719.6 -4910874 L 510224.7 -4909439 L 511560.3 -4908933 L 511177 -4907511 L 511832.4 -4906636 L 509551.9 -4903980 L 509264.6 -4901666 L 509479.8 -4901340 L 510224.1 -4901432 L 510573.7 -4901607 L 510721.2 -4901949 L 511197.8 -4902949 L 511844.7 -4902619 L 512353.5 -4899650 L 513461.8 -4899540 L 514530.6 -4899950 L 515161.1 -4899036 L 517947.3 -4897902 L 517445.8 -4896879 L 517403.1 -4895728 L 517054.1 -4895031 L 516782.6 -4894763 L 516487.6 -4894060 L 515811.4 -4893800 L 517627.4 -4893489 L 517969.2 -4893409 L 518661.6 -4893501 L 518978.1 -4893714 L 520661.9 -4894581 L 522540.6 -4894502 L 522835.6 -4895187 L 523588 -4895278 L 524971.7 -4894611 L 526068.6 -4894963 L 527948.6 -4894678 L 528333.3 -4894716 L 528175.2 -4893972 L 529276.1 -4892453 L 529409.2 -4891346 L 529409.1 -4891346 z " |
id="path609" /> |
<path |
d="M 527953.6 -4980222 L 527478.4 -4978758 L 527425.6 -4978377 L 527097.7 -4978398 L 526118 -4978490 L 525814.2 -4978258 L 524570 -4977382 L 524264.4 -4976689 L 523203.8 -4976637 L 521987.9 -4975175 L 520546.2 -4975538 L 520183 -4976164 L 520428.6 -4976878 L 519676.9 -4976868 L 519362.1 -4976775 L 519066.3 -4976632 L 519208.4 -4976308 L 518765.8 -4975766 L 519176.5 -4974049 L 517716.3 -4973475 L 517343.5 -4973346 L 517490.6 -4973009 L 517454.2 -4971913 L 518022.5 -4970973 L 517294.2 -4970249 L 516440 -4969459 L 514952.8 -4969128 L 514506.6 -4968065 L 513822.8 -4968303 L 513684.7 -4968649 L 512481.7 -4969463 L 512131.3 -4970493 L 511916.3 -4970734 L 511435.1 -4971542 L 511155.1 -4971808 L 510751.9 -4972466 L 509610.3 -4972606 L 508913.3 -4971268 L 507621.3 -4970497 L 507790.4 -4970186 L 507771.4 -4968458 L 507630.6 -4968119 L 506973.4 -4967259 L 507397 -4965977 L 507200.3 -4965714 L 507318.8 -4964755 L 506899 -4964776 L 506543.2 -4964737 L 505186.6 -4965121 L 505568.2 -4963791 L 505230.5 -4963621 L 504546 -4963340 L 503274.8 -4961524 L 503143.4 -4960790 L 503338.5 -4960492 L 503440.4 -4959080 L 503401.7 -4958718 L 502973.3 -4958151 L 503305.8 -4957130 L 502832.4 -4956581 L 501971.6 -4955497 L 501767 -4953670 L 501654.3 -4953341 L 502255.2 -4952990 L 502592 -4951652 L 502209.2 -4951713 L 500763.2 -4951375 L 499626 -4948521 L 499476 -4947378 L 498360.2 -4945344 L 498048.6 -4943839 L 497694.8 -4943842 L 497142.8 -4944236 L 496935.7 -4944484 L 496478.6 -4944924 L 496530.3 -4945298 L 495963.2 -4945790 L 495332.5 -4947137 L 494693.6 -4947488 L 494857.7 -4948559 L 494285.3 -4949558 L 494024 -4951423 L 493903.8 -4951775 L 493421 -4953155 L 494057.9 -4954107 L 494232 -4955216 L 493963.6 -4955923 L 492927.9 -4956352 L 492711.8 -4956667 L 492697.5 -4957049 L 492987.2 -4957298 L 493714 -4957067 L 494306.4 -4957453 L 494407.5 -4958579 L 494253.3 -4958929 L 494098.1 -4959271 L 493179.8 -4960445 L 492906.1 -4960193 L 492130.1 -4959461 L 491414.5 -4959423 L 490764.6 -4959780 L 489959.9 -4961420 L 489206.3 -4964359 L 488550 -4965290 L 488708.2 -4966339 L 488074.2 -4966768 L 488393.6 -4968959 L 488406.3 -4969342 L 488031.5 -4969325 L 487762.8 -4969055 L 484849.5 -4968787 L 484294.4 -4969302 L 483915.6 -4969274 L 482489.2 -4968097 L 482242.8 -4967404 L 481503.3 -4967342 L 481144.8 -4968400 L 481324 -4969487 L 482008.7 -4970793 L 481796.6 -4971100 L 481510 -4972184 L 481817.1 -4973251 L 480231.3 -4975751 L 479140.9 -4975734 L 478841.4 -4976761 L 478795.5 -4976667 L 478498.8 -4976448 L 477758 -4975223 L 477143.2 -4975388 L 476316.3 -4972977 L 476014.6 -4972780 L 474981.3 -4972611 L 474383.4 -4973010 L 474185.7 -4972685 L 472540.1 -4970623 L 472346.3 -4969137 L 472094.7 -4968844 L 470203.6 -4969125 L 470008 -4968788 L 469323.8 -4966987 L 468223.3 -4965894 L 468784 -4964505 L 467759.5 -4963417 L 467880.9 -4960407 L 467088.1 -4959591 L 466804.5 -4959338 L 466147.7 -4959558 L 465056.1 -4958689 L 464972.5 -4958314 L 464746 -4956798 L 464190.7 -4956397 L 464108.2 -4954701 L 464225.4 -4954370 L 464214.9 -4953798 L 464054.2 -4953516 L 463835.6 -4953206 L 464372.9 -4952491 L 462799 -4951357 L 461505.9 -4950262 L 461405.3 -4949927 L 461224.7 -4949579 L 459943.3 -4948799 L 459035 -4946633 L 459056.1 -4945463 L 458669.1 -4944785 L 458003.8 -4944538 L 457660.9 -4944727 L 457344.1 -4943714 L 455926.6 -4944297 L 454775.4 -4943378 L 452333.4 -4944218 L 452055.8 -4944022 L 451728 -4944111 L 451372.4 -4943974 L 450442.6 -4944505 L 449201.4 -4943644 L 448067.3 -4943583 L 446810.4 -4944435 L 446942.1 -4945537 L 446599.7 -4946185 L 446410.6 -4946402 L 445962.6 -4946696 L 444539.4 -4946067 L 443041.2 -4946427 L 442021.6 -4945842 L 441672 -4945775 L 441288.3 -4945806 L 440118.3 -4944838 L 438264.5 -4945074 L 436772.9 -4943955 L 437483.7 -4941834 L 437714.9 -4941525 L 437401.3 -4941442 L 436670.6 -4940813 L 436466.4 -4941132 L 434240.1 -4943046 L 433905.3 -4943083 L 433677.2 -4943329 L 433697 -4944408 L 434035 -4945022 L 433667.6 -4945643 L 433431.5 -4945919 L 434253.5 -4947081 L 434486 -4947371 L 432878.5 -4949926 L 432573.5 -4950153 L 431639.9 -4949533 L 431270.3 -4949445 L 430846.1 -4949927 L 430626 -4950163 L 430891.6 -4951276 L 432078.1 -4952764 L 432475 -4955391 L 432538.2 -4956119 L 432190 -4957586 L 432212.6 -4957965 L 432357.5 -4957998 L 432697.1 -4958166 L 433442.4 -4958275 L 433756.1 -4959308 L 433867.7 -4959610 L 434012 -4960230 L 433815.8 -4960530 L 433580.3 -4961207 L 433612.9 -4962656 L 431895.9 -4963942 L 431533.1 -4963978 L 431297 -4964249 L 430594 -4965853 L 430555.7 -4966181 L 429776.7 -4966707 L 428239.4 -4969198 L 427933.4 -4969402 L 427242.2 -4971184 L 427327.1 -4972338 L 429129.7 -4973633 L 428896.6 -4973938 L 428685.1 -4974672 L 426654 -4976343 L 427017.1 -4978204 L 426651.7 -4978886 L 425645.5 -4980985 L 427371.8 -4981687 L 427719.4 -4981845 L 428070.1 -4981983 L 429061.9 -4981507 L 431200.2 -4981957 L 431738.4 -4983757 L 431821 -4984135 L 431582.9 -4984439 L 429953.7 -4985990 L 429447.5 -4987842 L 428279.7 -4989788 L 428536.3 -4990162 L 428684 -4990449 L 428833.9 -4990464 L 431310.8 -4992622 L 431686.6 -4992578 L 432108 -4993114 L 433492.3 -4992973 L 434049.3 -4992516 L 434413.1 -4992535 L 434945.7 -4993984 L 434916.9 -4995138 L 435642.6 -4996459 L 435123.6 -4998295 L 434945.5 -4998640 L 436067.9 -4998560 L 436725.3 -4998942 L 437441.3 -4999825 L 437529.3 -5001302 L 438661.7 -5001343 L 439027.4 -5001450 L 439103.2 -5001759 L 439235.9 -5002049 L 436818.1 -5003710 L 436561 -5005588 L 435993 -5006093 L 436109.8 -5007895 L 436009.6 -5008263 L 436613.4 -5008123 L 436943.1 -5008268 L 436886.9 -5008647 L 438375.5 -5009854 L 438710.9 -5010538 L 439752.2 -5010914 L 439800.4 -5012388 L 440212.8 -5013035 L 440948.4 -5013229 L 441458.9 -5013759 L 441604.2 -5014899 L 442093.8 -5015336 L 442234.6 -5015635 L 442513.5 -5015609 L 442737.5 -5015441 L 443850 -5015467 L 445038.5 -5017464 L 445109.3 -5017848 L 445963.3 -5019110 L 447386.4 -5019656 L 447764.3 -5019585 L 448828.7 -5020021 L 449256.2 -5020654 L 449239 -5021039 L 448694.8 -5022004 L 449714.9 -5023120 L 449744.1 -5024999 L 449659.9 -5025624 L 450080.5 -5026255 L 449701.2 -5027335 L 448920.2 -5028162 L 448719.9 -5029263 L 449036.7 -5029484 L 449550.5 -5029475 L 450743.1 -5029394 L 451057 -5029306 L 452037.8 -5028742 L 452256 -5028035 L 452852.9 -5027572 L 453961.5 -5027492 L 454338.4 -5027446 L 455281.3 -5026688 L 455483.3 -5026425 L 455648.3 -5026259 L 455770.3 -5026058 L 457868.6 -5025857 L 458484.8 -5024605 L 458783.8 -5024396 L 459210.3 -5025404 L 460999.6 -5025545 L 461959.1 -5026006 L 462169.1 -5025697 L 462182 -5026057 L 462478.7 -5026717 L 462092.4 -5028034 L 461719.5 -5027976 L 459390.7 -5029775 L 459765.4 -5030423 L 460073.6 -5032621 L 460140.5 -5032991 L 460450.3 -5033136 L 460369.9 -5034464 L 460682.8 -5034601 L 461062.1 -5036466 L 462075.7 -5036894 L 463472.4 -5036540 L 463839.3 -5036509 L 463252 -5034474 L 463186.1 -5034126 L 465173.2 -5034920 L 465544.1 -5034934 L 466200.2 -5034018 L 467529 -5033347 L 468294.8 -5033376 L 469484.1 -5034842 L 469983.9 -5034861 L 470189.3 -5032966 L 470114.4 -5032592 L 471185 -5032795 L 471860.9 -5032554 L 472210.8 -5032457 L 472915.8 -5031572 L 473990.4 -5031940 L 475108.1 -5031888 L 475228.2 -5031240 L 474698.6 -5030435 L 474434.7 -5030225 L 474571.1 -5028716 L 475958 -5027531 L 476348.2 -5026481 L 477124.2 -5025642 L 478203.6 -5026562 L 479578.1 -5026876 L 479905 -5026728 L 480846.9 -5026195 L 481948.6 -5026232 L 482291.5 -5026097 L 482650.4 -5025980 L 483010.1 -5026639 L 485017.3 -5027734 L 486010.3 -5026663 L 487522.8 -5026811 L 487910.7 -5026839 L 488348.8 -5025809 L 489188.8 -5025037 L 489563.7 -5024954 L 490119.3 -5025813 L 490770.2 -5025575 L 491085.2 -5025384 L 492036.2 -5024308 L 493065 -5024019 L 493412.9 -5024149 L 493270 -5023785 L 493530.3 -5022261 L 493551.4 -5021741 L 494141.7 -5019910 L 495387.9 -5017984 L 495437 -5017602 L 496953.6 -5017354 L 499399.4 -5015564 L 500529.2 -5015294 L 500897.1 -5015161 L 501331.7 -5016101 L 501988.4 -5016353 L 502340.3 -5016400 L 503815.7 -5017191 L 504115.6 -5017362 L 503918.6 -5017694 L 504611.2 -5018575 L 504408.9 -5020086 L 504945.7 -5020628 L 506382.3 -5021020 L 506808 -5022060 L 507010.9 -5022389 L 507323.8 -5022440 L 507562.7 -5022649 L 508176.6 -5022203 L 508390 -5020000 L 508344.1 -5019622 L 507227.3 -5019731 L 506640.5 -5019304 L 507348.5 -5018403 L 508350.4 -5017882 L 508107.6 -5017151 L 507512.8 -5016679 L 507126.9 -5016708 L 506154.3 -5016243 L 506257.4 -5015517 L 507385.1 -5015610 L 508272 -5014935 L 509776.6 -5015078 L 510843.3 -5015273 L 511675.9 -5016046 L 512052.8 -5016118 L 512107.9 -5015425 L 512711 -5014576 L 512339.4 -5013198 L 513967.8 -5014005 L 514011.7 -5014367 L 515868.2 -5014556 L 516871.2 -5013553 L 517247.1 -5013532 L 517384.2 -5012781 L 516935.8 -5010607 L 517724.8 -5009825 L 517950.2 -5007923 L 518467.2 -5007379 L 518842.1 -5007284 L 519209 -5007340 L 520829.8 -5006611 L 520809.9 -5006228 L 520738.3 -5004701 L 520112.7 -5003758 L 519988.1 -5002614 L 520518.6 -5000460 L 521590.4 -5000193 L 521153.8 -4999200 L 522109.3 -4996733 L 522443.1 -4996929 L 523168.9 -4997135 L 524129.8 -4996491 L 524149.8 -4996490 L 525439.7 -4995725 L 526944.3 -4995761 L 527134.5 -4995031 L 527889.3 -4994963 L 525309.3 -4993910 L 524955.3 -4994041 L 523585.5 -4994622 L 523116.4 -4995199 L 522757.5 -4995184 L 521771.9 -4994770 L 522008.1 -4994106 L 521939.3 -4993754 L 522433.3 -4993274 L 523770 -4992933 L 524014.1 -4992351 L 523064.4 -4989488 L 523334.7 -4988380 L 522949.2 -4987326 L 523536.4 -4986349 L 523680.5 -4985993 L 523993.5 -4985790 L 525688.8 -4986370 L 526020.8 -4986198 L 525231.7 -4984498 L 526661.2 -4984813 L 527420.4 -4983639 L 528492 -4983930 L 528734 -4983644 L 528091.7 -4982304 L 526728.3 -4981752 L 526904.7 -4980625 L 527582.6 -4980306 L 527953.5 -4980222 L 527953.6 -4980222 z " |
id="path610" /> |
<path |
d="M 315139.8 -5065048 L 314957.4 -5064325 L 313789.9 -5062807 L 313150.1 -5062841 L 312885.2 -5061466 L 312438.7 -5060934 L 312717 -5060355 L 311698.6 -5059963 L 311690.2 -5059224 L 310060.4 -5058378 L 310546.1 -5057348 L 310674.4 -5056990 L 309803.2 -5056289 L 308705.6 -5056287 L 307753.4 -5055719 L 307656.2 -5056030 L 307565.2 -5057295 L 306815.5 -5057196 L 305754.8 -5056080 L 305390.9 -5054973 L 304760.3 -5054788 L 304826.7 -5054318 L 305003.9 -5054002 L 305717.4 -5053189 L 305916.9 -5052496 L 305590.5 -5051906 L 305893 -5051253 L 304430.8 -5048708 L 304711.9 -5048480 L 305016.7 -5047530 L 304403.8 -5046616 L 303145 -5045871 L 302402.3 -5045838 L 302088.3 -5045895 L 301784.3 -5045992 L 301652 -5045325 L 301115 -5044449 L 300448.4 -5044286 L 300553.9 -5043697 L 300166.5 -5043264 L 299965.9 -5042963 L 299080.3 -5041853 L 298944.2 -5040073 L 298565.3 -5040105 L 298249.6 -5039892 L 297971.5 -5040142 L 297140.1 -5040814 L 294774.8 -5040038 L 294799.2 -5039654 L 294320.9 -5039133 L 293553.3 -5039075 L 293017.5 -5038103 L 291275.9 -5037481 L 291250.9 -5037447 L 291109.2 -5036343 L 290786.1 -5035680 L 289404.8 -5037388 L 288769 -5037422 L 288766.6 -5035945 L 289748.4 -5034845 L 288742.3 -5034428 L 288377.4 -5034479 L 287683.6 -5034536 L 286760.6 -5033960 L 286140.9 -5033066 L 286184.2 -5032747 L 285847.4 -5031858 L 285653.8 -5031581 L 285435 -5030636 L 284639.4 -5028892 L 284259.9 -5026976 L 284310.3 -5026644 L 284810.1 -5025789 L 284921.5 -5025450 L 285338.4 -5023736 L 285362.4 -5023711 L 285738 -5021484 L 285570.5 -5020357 L 285358.5 -5019623 L 285047.9 -5019424 L 284233.2 -5018732 L 283992.4 -5018649 L 283784.3 -5018794 L 283499.1 -5019017 L 281753.1 -5018905 L 281677.6 -5018573 L 280884.9 -5017152 L 280850.4 -5016827 L 280360.8 -5015991 L 280068.2 -5015804 L 278037.2 -5015829 L 278048.6 -5015512 L 278076.4 -5014909 L 277798.8 -5014756 L 277711.4 -5014383 L 277675.5 -5013635 L 277942.7 -5013361 L 276568.3 -5011989 L 275807 -5011805 L 275554.7 -5010694 L 275203.8 -5010734 L 274501.1 -5010119 L 273227 -5010671 L 273107.9 -5010792 L 272893.6 -5011062 L 272036.6 -5012102 L 271412.7 -5012284 L 271121.2 -5012043 L 270134.5 -5011522 L 269380.8 -5011588 L 268556.1 -5012344 L 268207.5 -5012157 L 267004.4 -5010641 L 266778 -5010317 L 264909.8 -5009757 L 264394.9 -5008541 L 264131.8 -5008707 L 263904.6 -5008920 L 263904 -5009312 L 264637.7 -5011898 L 264624.1 -5012273 L 261667.9 -5013392 L 261141.1 -5014760 L 260812 -5014939 L 260605 -5015012 L 260389.1 -5015043 L 258461.4 -5014778 L 256905.9 -5014938 L 256513.1 -5014951 L 255134.4 -5015186 L 254858.2 -5015403 L 255216.8 -5015533 L 255481.3 -5015808 L 255549.7 -5016166 L 255932.2 -5019748 L 255604.1 -5019886 L 254282 -5020348 L 253070.5 -5019685 L 253149 -5020004 L 252936.7 -5020939 L 252683.4 -5021202 L 252376.3 -5021356 L 251859.9 -5021774 L 250577.1 -5022001 L 249168 -5021792 L 248765.3 -5022398 L 246681.3 -5023655 L 246524.5 -5022909 L 244702.7 -5022571 L 244264.8 -5021963 L 244328.9 -5021204 L 242641.3 -5022054 L 242355 -5022313 L 242191 -5024300 L 241863 -5024400 L 242796.2 -5025371 L 242622.8 -5025660 L 242538.7 -5025735 L 242932.6 -5026358 L 242946 -5026727 L 244001 -5025755 L 245306.8 -5026240 L 245426.2 -5026588 L 245425.8 -5027714 L 243527.4 -5027799 L 242851.1 -5027487 L 242714.6 -5028537 L 242046.4 -5028793 L 241696.7 -5029328 L 240993.7 -5029461 L 240518.1 -5030003 L 240506 -5030766 L 240600.4 -5031137 L 241206.3 -5031051 L 241340.8 -5031327 L 242470.5 -5031273 L 243101.7 -5031701 L 243410.6 -5032396 L 245258.6 -5032665 L 245497.5 -5033398 L 246648.1 -5033389 L 246485.7 -5034443 L 245728 -5034400 L 245214.6 -5034845 L 245442.1 -5036628 L 245199.8 -5036922 L 245196.4 -5037202 L 244339.6 -5037939 L 244176.7 -5038676 L 243152.7 -5038878 L 242784.9 -5038785 L 242853.4 -5039121 L 243278.1 -5040751 L 244342.3 -5040405 L 245011.9 -5041301 L 245153.9 -5042034 L 246032.9 -5042607 L 246346.1 -5042403 L 246518.4 -5042882 L 246095.3 -5043821 L 245346.3 -5043944 L 244768.8 -5044439 L 245474.1 -5045614 L 244655.4 -5046352 L 243619.2 -5045969 L 243277.5 -5045791 L 243442.6 -5046490 L 242852.2 -5046940 L 241748.6 -5046835 L 240498.9 -5047607 L 240368.9 -5047607 L 240413.9 -5048377 L 241331.1 -5048889 L 242449.4 -5050814 L 242115.3 -5050973 L 241353.9 -5052227 L 240718.6 -5052600 L 240433.5 -5052719 L 240038 -5053178 L 239822.7 -5053486 L 239075.9 -5053415 L 239075.5 -5053769 L 238668.9 -5054348 L 237676.6 -5054727 L 237313.9 -5055382 L 236448.2 -5056089 L 236170.9 -5057171 L 236151.5 -5057508 L 235677 -5057990 L 234540 -5057306 L 234208.1 -5057248 L 233467.5 -5057039 L 232500.9 -5057675 L 232194.6 -5057910 L 233960.5 -5061034 L 234132.1 -5061358 L 235134.5 -5060917 L 235822.1 -5061182 L 236194 -5061190 L 236231.5 -5061579 L 234354.8 -5064063 L 234133.4 -5064384 L 233181.2 -5064669 L 233822.6 -5065975 L 233413.4 -5067006 L 233495 -5067367 L 233648.2 -5068905 L 234847.1 -5069841 L 234930.7 -5070219 L 233994 -5070874 L 230551.4 -5070750 L 230488.2 -5071805 L 230371.8 -5072137 L 231435.5 -5073296 L 231507.1 -5073684 L 233332.3 -5073465 L 233934.8 -5073912 L 234978.6 -5074027 L 235278.7 -5075811 L 237436.1 -5075282 L 237746.3 -5075075 L 238040.3 -5075049 L 239810.7 -5075546 L 240157.5 -5075670 L 241648.7 -5075356 L 242249.5 -5075502 L 243406.4 -5076473 L 243325.7 -5077215 L 243919.3 -5077590 L 244947.5 -5077373 L 245222.2 -5077603 L 247314.2 -5077435 L 247931.4 -5077188 L 247711 -5076549 L 247804.3 -5076222 L 248156.3 -5076204 L 248420.9 -5075594 L 248542.2 -5075263 L 249051.1 -5074313 L 249242.4 -5074008 L 249271.4 -5073993 L 250653 -5074226 L 251929.7 -5075468 L 252270.5 -5075614 L 252530.7 -5075362 L 254254.5 -5075334 L 253867.1 -5074727 L 254338.5 -5074276 L 254817.7 -5075059 L 254980.5 -5075318 L 254801.5 -5076449 L 256065.2 -5078785 L 256002.9 -5079154 L 255752.6 -5080615 L 255379.6 -5080649 L 255985.7 -5081569 L 256670.4 -5081809 L 257036.3 -5081854 L 257810.5 -5083869 L 258076.3 -5084124 L 256926.8 -5084792 L 256767.3 -5086585 L 256060.4 -5086513 L 255664 -5087053 L 255568.7 -5087403 L 255853.4 -5087786 L 256137.3 -5087949 L 256618.5 -5088841 L 255694.1 -5089331 L 255618.3 -5090348 L 255358.1 -5090600 L 255981.9 -5090841 L 256205.7 -5091094 L 257175.1 -5090542 L 258639.9 -5090718 L 258944 -5090501 L 259176.8 -5090701 L 259661.6 -5090912 L 259623.1 -5091601 L 260336.2 -5092769 L 260472 -5093086 L 260118 -5093137 L 259866.2 -5094174 L 259153.2 -5094172 L 259274.4 -5095239 L 262123.5 -5096379 L 262483.6 -5096239 L 263072 -5097126 L 263425.9 -5097242 L 264088.4 -5098006 L 263376.9 -5098675 L 263916 -5100005 L 263931.5 -5100734 L 265044.4 -5100831 L 265735.8 -5101704 L 264703.8 -5103227 L 264622.3 -5103963 L 264533.1 -5104326 L 265207.9 -5104616 L 267715.9 -5104669 L 267989.8 -5104913 L 268825.1 -5104368 L 269063.2 -5104132 L 270569.2 -5105824 L 271714.1 -5105929 L 272394 -5106208 L 271764.5 -5107088 L 273069.8 -5108358 L 273388.7 -5108543 L 274912 -5108058 L 275217.1 -5107922 L 275432 -5108207 L 275097.5 -5109204 L 274974.3 -5109538 L 275268.2 -5109754 L 275930.6 -5108909 L 276626.7 -5108705 L 276967.6 -5108830 L 277967.4 -5109306 L 278281.3 -5109502 L 280447.3 -5107565 L 280652.4 -5107251 L 281118.5 -5106964 L 281420.4 -5107076 L 282636.8 -5108318 L 282983.8 -5108376 L 285017 -5107990 L 285242.1 -5107712 L 285719.2 -5107411 L 285862.3 -5107167 L 286405.5 -5106645 L 287495.6 -5106371 L 288774.2 -5105055 L 289009.5 -5104363 L 290119.6 -5104156 L 291640.4 -5104440 L 291922.2 -5104713 L 292540.3 -5104395 L 293221.1 -5104666 L 294283.1 -5104488 L 294607.1 -5104493 L 294909 -5104615 L 297122 -5104358 L 297758.8 -5104754 L 298413.9 -5104460 L 298742 -5104279 L 299437.5 -5103051 L 299504.7 -5102695 L 302067.4 -5102854 L 303627.8 -5103889 L 304033.5 -5104522 L 304767.5 -5104350 L 304574.4 -5104679 L 304294.1 -5105362 L 304429.6 -5106492 L 303765.5 -5106846 L 302266.6 -5106846 L 302168.3 -5107567 L 302426.2 -5107848 L 302007 -5108452 L 302260.9 -5108677 L 302636.7 -5109149 L 302986.7 -5109016 L 303891.2 -5110167 L 304349.7 -5111557 L 305418.7 -5111297 L 306136.4 -5112076 L 306817.5 -5111799 L 307163.5 -5111674 L 306784 -5110282 L 308048.2 -5109499 L 309218.8 -5107575 L 309346.1 -5106824 L 309419.2 -5106450 L 310465.9 -5106917 L 311225.9 -5106796 L 312029.3 -5105548 L 313334.1 -5105848 L 313623.3 -5105235 L 313678.4 -5104893 L 314597.1 -5105436 L 314516.9 -5106081 L 314761.6 -5106760 L 315115.6 -5106619 L 315668.4 -5107116 L 317171.3 -5106908 L 317854.1 -5107220 L 320464.8 -5107431 L 320845.8 -5107425 L 320046.3 -5109146 L 320779 -5110037 L 322736.5 -5111188 L 322865.3 -5111945 L 322901.3 -5112006 L 323879.3 -5111684 L 324191.3 -5111538 L 325643.1 -5111904 L 328498.1 -5110977 L 330296.8 -5111569 L 331203.9 -5110931 L 331442 -5110625 L 331081.1 -5110477 L 330534.3 -5110026 L 332053.7 -5107915 L 332018 -5106755 L 331605.2 -5106141 L 331598.3 -5105891 L 330957.7 -5104948 L 331456.1 -5103564 L 330701.5 -5102751 L 330770.8 -5101672 L 331081.8 -5101496 L 332847.9 -5100354 L 333156.9 -5100123 L 333681 -5099579 L 333820.4 -5098453 L 334434.4 -5098089 L 336000.6 -5099745 L 336611.7 -5099051 L 336581.8 -5098726 L 337462.8 -5098204 L 337794.8 -5098123 L 338839 -5097066 L 338520.3 -5096404 L 338629.5 -5095726 L 339635.5 -5095262 L 339544.6 -5094917 L 339587.1 -5093508 L 340254.1 -5093120 L 340021.7 -5091584 L 338744.3 -5090727 L 338561.5 -5090146 L 338397.6 -5089881 L 338418.8 -5089257 L 338038.9 -5089185 L 337282 -5089287 L 335564 -5087763 L 333731.5 -5087361 L 332724.5 -5087858 L 331953.7 -5087803 L 330732.5 -5088746 L 329968.7 -5088732 L 329793.9 -5088408 L 329700.2 -5087680 L 330226.3 -5087171 L 330198.5 -5086786 L 329975.4 -5084911 L 331004.9 -5083313 L 330718.1 -5083102 L 329425.9 -5081939 L 329667 -5081735 L 330268.8 -5081821 L 330461.9 -5081572 L 330076.5 -5080509 L 328410.5 -5077499 L 327306.3 -5076480 L 327194.5 -5076115 L 327339.1 -5075010 L 326851.5 -5074473 L 327352.9 -5073486 L 327224.1 -5073156 L 326285.5 -5072958 L 326126.3 -5073304 L 325674.1 -5073916 L 324927.3 -5073954 L 324190 -5074781 L 322340.4 -5074965 L 321692.8 -5074606 L 321382.5 -5071953 L 321919 -5070934 L 321659.5 -5070234 L 321342.7 -5070116 L 320390.9 -5070187 L 320058.1 -5070060 L 318082.5 -5068702 L 318095.7 -5068374 L 317980.2 -5067728 L 317625.3 -5067740 L 317015.5 -5067752 L 316579.3 -5066792 L 316787.4 -5066496 L 316380.2 -5065496 L 315450.3 -5065694 L 315137.9 -5065048 L 315139.8 -5065048 z " |
id="path611" /> |
<path |
d="M 435566 -5141649 L 434617.4 -5142826 L 434349.4 -5145396 L 437572 -5146806 L 437963.3 -5147495 L 438118.5 -5147859 L 438118.5 -5147909 L 438348.6 -5148182 L 438406.9 -5148892 L 437939.1 -5149421 L 437729.6 -5150760 L 437365.6 -5150670 L 436841.8 -5151176 L 436822 -5151551 L 436738.7 -5153071 L 435140 -5156093 L 435032.2 -5156460 L 436189.7 -5157396 L 435777.7 -5159598 L 435717.9 -5159968 L 436409.6 -5161209 L 436772.6 -5161215 L 437071.7 -5161465 L 437133.3 -5162608 L 437297.5 -5162961 L 436844 -5164048 L 437489 -5165859 L 436766 -5165949 L 436464.3 -5166612 L 435759.2 -5166449 L 434622.8 -5167792 L 433714.1 -5168497 L 433536.5 -5169246 L 434838.6 -5171068 L 434949.8 -5171438 L 433862.9 -5171823 L 432929.5 -5173042 L 432248.7 -5173399 L 431508.7 -5173580 L 430799.5 -5173293 L 430133.7 -5173675 L 429754.7 -5173742 L 430084.3 -5174794 L 429999.7 -5175500 L 428802 -5176195 L 428165.4 -5177097 L 428512.1 -5178171 L 430363.5 -5178572 L 432057.2 -5181062 L 431285.9 -5182371 L 431169.1 -5182739 L 430912.2 -5183029 L 428701.9 -5184575 L 426936.3 -5187091 L 427155.6 -5187518 L 428563.7 -5187423 L 428835.9 -5187662 L 429217 -5187699 L 430349.2 -5189334 L 430207.4 -5191083 L 432563.6 -5192351 L 432959.6 -5192312 L 434028.5 -5193411 L 435047.1 -5195469 L 435190.4 -5195825 L 434965.6 -5196121 L 434335.8 -5196460 L 431794.1 -5196024 L 431472.2 -5196228 L 428806.4 -5198371 L 428798.1 -5200638 L 429650.4 -5200876 L 429896.6 -5201094 L 430315.1 -5201636 L 430103.8 -5202634 L 430474.3 -5203240 L 430688.6 -5203523 L 430717.3 -5204513 L 431511.9 -5205157 L 431795.1 -5205360 L 431605.3 -5205698 L 430906.2 -5207060 L 430709.4 -5207339 L 429862.6 -5207762 L 429737.9 -5208109 L 428476.2 -5208810 L 427645 -5209962 L 425975.1 -5210438 L 425825.4 -5210793 L 426535.6 -5212154 L 426772.2 -5212866 L 427676.9 -5213507 L 427866.8 -5214615 L 427346.2 -5216392 L 427743.8 -5216994 L 427528 -5217311 L 426049.8 -5217387 L 425659.9 -5216457 L 424167.5 -5216333 L 424017.1 -5217045 L 424420.1 -5218114 L 423714.2 -5218417 L 423695.5 -5218795 L 423463.4 -5219873 L 423125.2 -5219726 L 421802.5 -5219229 L 420917.6 -5219590 L 419705.7 -5218769 L 419421.5 -5218592 L 418930 -5218140 L 417634.1 -5217390 L 416588.3 -5217856 L 415545.7 -5217386 L 415180.7 -5217502 L 414807.3 -5217034 L 414487.4 -5217236 L 412064.8 -5218233 L 411836 -5218514 L 410699.5 -5219399 L 409263.3 -5219498 L 408952.1 -5219296 L 408225 -5219379 L 407116.6 -5220298 L 406882.7 -5220431 L 406623.7 -5220507 L 409349.6 -5223296 L 409455.3 -5224081 L 409678.7 -5224445 L 410423.5 -5225257 L 411485 -5225554 L 411843.1 -5225639 L 411516.1 -5227953 L 411655.9 -5229884 L 411676.3 -5230278 L 412738.6 -5230400 L 414399.6 -5228883 L 416728.1 -5230054 L 416919.4 -5230386 L 417494.9 -5231855 L 417248.5 -5232589 L 417047.8 -5232929 L 416037.9 -5233271 L 415849.4 -5233843 L 416004.7 -5234165 L 418076.1 -5235146 L 418116.1 -5236228 L 419531.1 -5238041 L 421784.2 -5236635 L 422113.1 -5236437 L 422123.1 -5236422 L 423669.3 -5235289 L 424720.8 -5235574 L 425458.8 -5235410 L 425779.7 -5235196 L 428402.9 -5236863 L 430680.9 -5237407 L 431077 -5237392 L 431813.2 -5237420 L 432351.9 -5236973 L 432584.7 -5236687 L 433653 -5236787 L 433996.2 -5236897 L 434542.7 -5238252 L 435570.4 -5238735 L 435854.7 -5238993 L 435183.4 -5240793 L 434210.8 -5241400 L 433731.7 -5242447 L 433045.8 -5242710 L 433614.3 -5244037 L 432734.6 -5246446 L 432489.8 -5246728 L 431770.4 -5246526 L 431407.2 -5246436 L 431868.2 -5249189 L 432964.7 -5251310 L 432876.5 -5252103 L 432833.9 -5252499 L 434449.5 -5250798 L 438374.9 -5254026 L 439589.6 -5250723 L 441125.1 -5250870 L 441518.2 -5250866 L 442279 -5251467 L 442530.3 -5251669 L 442789.7 -5254731 L 442192.6 -5255688 L 442681.8 -5256681 L 442181.8 -5257685 L 442567 -5259533 L 442926.9 -5260213 L 442576.9 -5260329 L 441972.2 -5260734 L 440799.8 -5260643 L 439426.5 -5259848 L 439029.4 -5259821 L 440457.9 -5263422 L 439215.9 -5266288 L 438935.2 -5266564 L 434243.3 -5266845 L 433784.9 -5267479 L 433992.7 -5268986 L 433536.9 -5270070 L 433399.3 -5270439 L 434799.4 -5271076 L 436183.4 -5272422 L 439270 -5273105 L 442044.5 -5274550 L 442439.6 -5274580 L 445874.5 -5275406 L 446236.6 -5275447 L 446527.8 -5274730 L 447235.6 -5274381 L 447543.4 -5274133 L 448757.5 -5273149 L 450246.3 -5272685 L 451494.8 -5271184 L 452431.3 -5270554 L 452960.1 -5271123 L 454062.7 -5271374 L 454523.6 -5271999 L 457020.6 -5273056 L 457369.9 -5273226 L 458069.7 -5272867 L 458733.2 -5271447 L 461261.9 -5268981 L 461338.5 -5268595 L 462480.8 -5268565 L 463521.7 -5269036 L 465375.5 -5269283 L 466829.4 -5268885 L 467071.1 -5268588 L 467541 -5267600 L 468974.2 -5267430 L 469724.5 -5266632 L 470028.4 -5266428 L 470747.2 -5265249 L 470484.9 -5264232 L 470384.5 -5263896 L 473675.3 -5262108 L 473696.1 -5260214 L 474318.3 -5259369 L 474677.3 -5259248 L 475631.4 -5259098 L 475955.5 -5259079 L 478083.9 -5259746 L 478903 -5260466 L 479055.5 -5260815 L 478633.1 -5261430 L 478916.9 -5262079 L 478781.6 -5263535 L 479055.4 -5264963 L 479407.8 -5265170 L 480220.5 -5263882 L 481714.7 -5263705 L 483288.9 -5262618 L 484116.2 -5260954 L 484334.9 -5260634 L 484717.9 -5260570 L 485008.7 -5260313 L 486499.6 -5260711 L 487630.8 -5262238 L 489841.3 -5262955 L 490148.7 -5263193 L 491096.7 -5262103 L 491270.4 -5261786 L 491423.7 -5261139 L 491480.3 -5260811 L 491823.1 -5259671 L 491835.6 -5259274 L 493383.4 -5256901 L 493489 -5256549 L 493536.8 -5256337 L 494440.3 -5253903 L 494414.8 -5253528 L 493609.2 -5252387 L 493510 -5251331 L 493520.6 -5250976 L 491491.8 -5246379 L 491304.4 -5246036 L 490662.2 -5245102 L 490486.8 -5244763 L 490285.4 -5244432 L 489764.1 -5243408 L 490020.6 -5241938 L 490420.7 -5240957 L 491622.3 -5240234 L 491962.3 -5240120 L 492692.3 -5239880 L 492982.1 -5239627 L 493220.9 -5239331 L 493764.5 -5238797 L 494024.3 -5238533 L 495139.1 -5237055 L 497555.1 -5235368 L 498167.4 -5234543 L 498249.7 -5233882 L 498177.3 -5233545 L 497963.4 -5230826 L 498876.5 -5228676 L 499082.2 -5228342 L 499238.9 -5228023 L 499376.6 -5227695 L 500695.7 -5223428 L 500751.4 -5223058 L 501003.2 -5222747 L 501102.9 -5222380 L 500843.4 -5220913 L 501432.6 -5219951 L 501684.4 -5219654 L 501766.6 -5217790 L 501813.3 -5217419 L 501832.2 -5217280 L 501820.8 -5216885 L 501915.7 -5215706 L 501244.2 -5214290 L 501054.7 -5212804 L 501221.4 -5212457 L 503367.7 -5211019 L 503629.5 -5210751 L 504095.4 -5210486 L 504362.5 -5210521 L 505050.4 -5209090 L 505210.1 -5208726 L 505208.7 -5207156 L 505126.3 -5206768 L 504612.3 -5205801 L 504490.6 -5205079 L 504295.9 -5203199 L 505236.4 -5201181 L 505557.3 -5200979 L 505476.6 -5200222 L 504544.9 -5198554 L 504432.6 -5198254 L 503341.8 -5195300 L 503939.1 -5194315 L 504172.9 -5193994 L 504263.5 -5193435 L 504360.3 -5193168 L 504802 -5188983 L 503829.8 -5187839 L 503672.5 -5187482 L 503852.1 -5186944 L 503969.9 -5186686 L 503906.3 -5185968 L 502647.9 -5184582 L 502488.6 -5184243 L 501958.5 -5182958 L 501954.2 -5182608 L 501612 -5182436 L 500739.4 -5183152 L 499248.8 -5182831 L 497975 -5183547 L 496450.7 -5183596 L 495883.6 -5182352 L 495263.5 -5182385 L 494920.4 -5182407 L 494632.5 -5182652 L 492864.7 -5182073 L 492556.2 -5181438 L 492709 -5181091 L 491795.3 -5180460 L 491442.1 -5180293 L 490377.5 -5179833 L 489988.6 -5178791 L 487638.7 -5176761 L 487575.4 -5176413 L 487717.4 -5175012 L 487369.4 -5175089 L 486326.8 -5175981 L 485950.7 -5175990 L 483723.1 -5175786 L 482905.1 -5174555 L 482292.7 -5174165 L 482035.8 -5174422 L 481052.3 -5174024 L 480794.7 -5174718 L 479933.1 -5175457 L 479232.2 -5177199 L 478936.3 -5177397 L 476961.3 -5176405 L 476991 -5176026 L 476825 -5174536 L 475712.7 -5174426 L 474757.8 -5173279 L 474878.4 -5172587 L 474607.2 -5172329 L 473222.6 -5171785 L 472598.9 -5170854 L 471081.8 -5171009 L 470718.7 -5170900 L 470572 -5169785 L 471347.6 -5168997 L 471324.4 -5168619 L 470732.5 -5167269 L 469445.7 -5167941 L 469382.2 -5168681 L 466653.2 -5167577 L 466376.7 -5166824 L 468056.6 -5166330 L 468369.5 -5166161 L 468609.9 -5165065 L 467706.1 -5163918 L 467802.7 -5163184 L 468010.5 -5162871 L 466801.9 -5162154 L 466453.8 -5162036 L 467161.7 -5161770 L 467586.9 -5160361 L 468712.1 -5160482 L 469489.8 -5157978 L 469279.2 -5156905 L 469855.7 -5155939 L 467032.5 -5154163 L 466537.1 -5153597 L 465127.7 -5153047 L 464250.3 -5152330 L 463961.1 -5152085 L 463658.2 -5152307 L 463411.5 -5152987 L 462713.5 -5153226 L 461902.1 -5152511 L 461171 -5152369 L 460893.5 -5153371 L 459852.5 -5153548 L 459533.4 -5153337 L 457152.7 -5152222 L 455859.9 -5152859 L 454541.5 -5152203 L 452264.3 -5151991 L 451053.2 -5152013 L 450699.1 -5151883 L 448429.1 -5149935 L 447700.5 -5148626 L 448052.2 -5147966 L 448140.1 -5147637 L 447408.6 -5146536 L 447069.6 -5146494 L 446772.7 -5146748 L 446191.9 -5147270 L 444571.7 -5144607 L 444066.6 -5141929 L 444260.3 -5141171 L 443895.3 -5141271 L 442413.4 -5141489 L 442161.5 -5141770 L 441796.5 -5141840 L 439625.3 -5141561 L 437878.5 -5142099 L 437587.4 -5141844 L 436879.3 -5141536 L 436540.3 -5141546 L 435566.3 -5141649 L 435566 -5141649 z " |
id="path612" /> |
<path |
d="M 377317.8 -4986400 L 376992.9 -4986489 L 376268.2 -4987617 L 376013.1 -4987910 L 374502.8 -4990150 L 374317.1 -4990905 L 373574.4 -4991117 L 373752.9 -4991448 L 374099 -4992110 L 373736.6 -4992769 L 373528.4 -4993075 L 373015.7 -4994059 L 373156.5 -4995141 L 372852.5 -4995320 L 372384.3 -4995783 L 372125.7 -4995542 L 371995.2 -4996132 L 372364 -4996071 L 373110.5 -4996087 L 374418.9 -4996802 L 374793 -4997432 L 374773.3 -4998172 L 374503.3 -4998354 L 373892.5 -4998577 L 373628.5 -4998729 L 373283.5 -4998915 L 372238.7 -4999417 L 371119.8 -4999065 L 369993.3 -4999273 L 369992 -4999555 L 370009.4 -5000117 L 369626.6 -5000103 L 368567.7 -4999710 L 367577.8 -5000254 L 366604 -4999668 L 365179.3 -5000236 L 364390 -5001072 L 362388.2 -5002137 L 362450.5 -5002833 L 363485.8 -5002845 L 364262.6 -5003608 L 364551.2 -5003840 L 364883.8 -5004036 L 365352.5 -5005094 L 365218.2 -5005454 L 364943.1 -5005726 L 363877.7 -5006843 L 360835.8 -5006602 L 360450.4 -5007270 L 360703.2 -5008398 L 360881.6 -5008951 L 360904.3 -5009241 L 361272 -5009358 L 363067.3 -5010031 L 364406.3 -5011380 L 364428.9 -5011763 L 364328.9 -5012894 L 363986.9 -5013079 L 362846.8 -5012844 L 361448 -5013478 L 361519.6 -5013813 L 361386.2 -5014330 L 360509.3 -5014763 L 360940.5 -5016531 L 361487.8 -5016951 L 361718.7 -5018012 L 361470.7 -5018149 L 361672.3 -5018469 L 361313.9 -5020323 L 361693.7 -5020341 L 363197.1 -5020131 L 364329.6 -5021133 L 364971.1 -5022481 L 365247.1 -5023578 L 366637.9 -5024219 L 367026.7 -5024200 L 367354.4 -5024368 L 367997.4 -5025207 L 368296.9 -5026969 L 367947 -5027104 L 366477.8 -5028246 L 365052.3 -5027251 L 364470.9 -5028127 L 364789.2 -5028828 L 363708.8 -5028730 L 363409.7 -5028968 L 363324.6 -5030473 L 363875 -5030908 L 364980.7 -5030589 L 365714.2 -5030817 L 365736.9 -5031190 L 365679.9 -5032619 L 364448.2 -5033062 L 364241.1 -5033358 L 362961.3 -5033861 L 363157.7 -5034538 L 363780.1 -5034919 L 363852 -5036406 L 364287.1 -5037404 L 364794.8 -5037571 L 365045.8 -5037469 L 365644.3 -5037865 L 365719.8 -5038584 L 365581.6 -5038925 L 370262.2 -5036441 L 370584.2 -5036230 L 372103.9 -5038720 L 372635.3 -5039240 L 373366.9 -5039364 L 373734.7 -5039423 L 373903.8 -5040656 L 374247.6 -5040803 L 375309.9 -5042745 L 375972.4 -5043095 L 376696.1 -5043104 L 377350.4 -5042213 L 377684.4 -5042045 L 378741 -5043652 L 378833.9 -5045558 L 380373.2 -5045665 L 380826.7 -5046285 L 380969.2 -5047045 L 381556.2 -5046626 L 381878.2 -5046465 L 381804.8 -5045516 L 381873 -5045191 L 383351.2 -5045471 L 383800.7 -5046065 L 383847.3 -5046811 L 385747.1 -5045750 L 386122 -5045683 L 387047.9 -5045276 L 388025.3 -5045744 L 389093.8 -5045814 L 389754.5 -5047908 L 390348 -5048386 L 392278.3 -5048277 L 394182 -5049564 L 394392.8 -5049849 L 394942.4 -5050260 L 395031.9 -5051306 L 395423.5 -5051893 L 395701.3 -5052162 L 397919.6 -5054295 L 399056.9 -5055133 L 400097.7 -5054842 L 402137.7 -5055575 L 402358.4 -5056279 L 402408.2 -5056654 L 403211 -5056545 L 403343.8 -5056884 L 404068.5 -5056947 L 404743.7 -5058602 L 404973.3 -5059640 L 405668.1 -5059436 L 406167.2 -5058550 L 406238.1 -5058908 L 407260.6 -5059288 L 407602.7 -5058646 L 407879.7 -5058407 L 407948.9 -5057867 L 408103.9 -5057642 L 409551.5 -5057438 L 410260 -5058229 L 411868.7 -5057552 L 412198.5 -5057739 L 412465.9 -5059228 L 413960.5 -5059072 L 414598.2 -5059422 L 414437.9 -5060530 L 413774 -5060883 L 413780.9 -5061261 L 414717.4 -5061862 L 415352 -5062774 L 416079.8 -5062689 L 416585.8 -5062119 L 417316.6 -5062171 L 417302.4 -5062926 L 418287.8 -5064034 L 420160.3 -5063877 L 420326.3 -5063532 L 421018 -5063867 L 421522.6 -5064899 L 421846.1 -5066780 L 422833.7 -5067401 L 424759.1 -5067534 L 425237.9 -5068148 L 425537.8 -5068399 L 425919.7 -5068321 L 426451.8 -5067288 L 428166.5 -5066400 L 428239.6 -5065676 L 428276.7 -5065288 L 428283.9 -5064410 L 429274.5 -5064987 L 430568.3 -5064258 L 431806.8 -5065092 L 432862.7 -5064037 L 433547.6 -5063785 L 433886.5 -5063608 L 434219.1 -5065219 L 435251.9 -5064788 L 436041.9 -5063506 L 437501.6 -5063113 L 436742.1 -5061373 L 437793.8 -5061226 L 438150.5 -5062248 L 438218.4 -5062626 L 438977.5 -5060958 L 439707.3 -5060996 L 440157.3 -5060406 L 440841.1 -5060551 L 441696 -5059894 L 442387.8 -5060123 L 442738.7 -5060243 L 442755.3 -5057198 L 443909 -5057286 L 444812.6 -5057992 L 445506.3 -5058328 L 446533.1 -5057872 L 448196.4 -5059380 L 448790.1 -5060369 L 448699 -5061133 L 448519.9 -5061872 L 448781.8 -5062152 L 449896.5 -5062513 L 450283.4 -5062577 L 450526.3 -5062555 L 450768.3 -5062529 L 451366.2 -5062071 L 453608.7 -5062100 L 455240.4 -5061201 L 455565.3 -5061008 L 456245 -5061925 L 456983.8 -5062108 L 457985.4 -5063224 L 458342.3 -5063265 L 458557.2 -5064293 L 459622.9 -5065160 L 459969.8 -5065250 L 462244.6 -5062109 L 462208.8 -5060593 L 462561.7 -5060427 L 462593.8 -5059390 L 462775.8 -5059077 L 462452.9 -5058968 L 461667.2 -5057965 L 461660.3 -5057262 L 462550.2 -5056133 L 461994.5 -5055181 L 462003.5 -5054869 L 461910.6 -5054385 L 461602.7 -5054334 L 459447.2 -5054498 L 459111.4 -5053876 L 459111.5 -5053491 L 458812 -5050846 L 458518.1 -5050696 L 457797.4 -5050089 L 457636.6 -5049383 L 458467.7 -5047639 L 459547.6 -5046524 L 460168.7 -5045168 L 461048.5 -5044777 L 461694.3 -5044833 L 461754.3 -5044530 L 461864.5 -5043688 L 461615.6 -5043403 L 461837.8 -5042300 L 461597 -5041615 L 461865.1 -5040950 L 461170.6 -5039609 L 461121.8 -5038879 L 461242.8 -5038602 L 461498.9 -5038057 L 461061.5 -5036466 L 460682.2 -5034601 L 460369.3 -5034463 L 460449.7 -5033135 L 460139.9 -5032991 L 460073 -5032621 L 459764.8 -5030423 L 459390.1 -5029774 L 461718.9 -5027976 L 462091.8 -5028034 L 462478.1 -5026716 L 462181.4 -5026057 L 462168.5 -5025696 L 461958.5 -5026006 L 460999 -5025544 L 459209.7 -5025404 L 458783.2 -5024395 L 458484.2 -5024605 L 457868 -5025856 L 455769.7 -5026057 L 455647.7 -5026258 L 455482.7 -5026424 L 455280.7 -5026687 L 454337.8 -5027445 L 453960.9 -5027492 L 452852.3 -5027572 L 452255.4 -5028035 L 452037.2 -5028741 L 451056.4 -5029305 L 450742.5 -5029394 L 449549.9 -5029474 L 449036.1 -5029484 L 448719.3 -5029263 L 448919.6 -5028161 L 449700.6 -5027334 L 450079.9 -5026254 L 449659.3 -5025624 L 449743.5 -5024999 L 449714.3 -5023119 L 448694.2 -5022003 L 449238.4 -5021039 L 449255.6 -5020654 L 448828.1 -5020020 L 447763.7 -5019584 L 447385.8 -5019656 L 445962.7 -5019109 L 445108.7 -5017848 L 445037.9 -5017464 L 443849.4 -5015466 L 442736.9 -5015441 L 442512.9 -5015609 L 442234 -5015634 L 442093.2 -5015336 L 441603.6 -5014899 L 441458.3 -5013758 L 440947.8 -5013228 L 440212.2 -5013035 L 439799.8 -5012387 L 439751.6 -5010914 L 438710.3 -5010537 L 438374.9 -5009853 L 436886.3 -5008647 L 436942.5 -5008267 L 436612.8 -5008122 L 436009 -5008262 L 436109.2 -5007894 L 435992.4 -5006093 L 436560.4 -5005587 L 436817.5 -5003709 L 439235.3 -5002048 L 439102.6 -5001759 L 439026.8 -5001450 L 438661.1 -5001342 L 437528.7 -5001301 L 437440.7 -4999825 L 436724.7 -4998942 L 436067.3 -4998559 L 434944.9 -4998639 L 435123 -4998294 L 435642 -4996458 L 434916.3 -4995137 L 434945.1 -4993984 L 434412.5 -4992534 L 434048.7 -4992516 L 433491.7 -4992972 L 432107.4 -4993114 L 431686 -4992577 L 431310.2 -4992621 L 428833.3 -4990463 L 428683.4 -4990449 L 428535.7 -4990161 L 428279.1 -4989788 L 429446.9 -4987841 L 429953.1 -4985989 L 431582.3 -4984438 L 431820.4 -4984135 L 431737.8 -4983757 L 431199.6 -4981956 L 429061.3 -4981507 L 428069.5 -4981982 L 427718.8 -4981845 L 427371.2 -4981686 L 425644.9 -4980984 L 425302.2 -4980865 L 424252.1 -4981793 L 423913.5 -4981610 L 421339.7 -4980997 L 419451.2 -4980739 L 417246.1 -4979129 L 416796 -4978485 L 416418.2 -4978526 L 416042 -4979054 L 415967.7 -4980568 L 415683.7 -4980719 L 414955.6 -4981354 L 413426.7 -4981310 L 411875.3 -4979627 L 411765.1 -4978897 L 408910.1 -4977812 L 408243.6 -4976804 L 407910.7 -4976930 L 407712.2 -4977614 L 407258 -4977179 L 407181.8 -4976470 L 407040.2 -4976113 L 406413 -4975732 L 405650.4 -4975821 L 404908.8 -4974992 L 404858.8 -4974983 L 404971 -4975660 L 403969.8 -4976584 L 403744.7 -4976842 L 403643.5 -4976135 L 403077.4 -4975663 L 402848.9 -4975370 L 402804.8 -4975480 L 402605.6 -4975787 L 402265.2 -4976433 L 400977.5 -4977088 L 401251.1 -4977314 L 401363.7 -4977677 L 400868.6 -4979093 L 400239.6 -4979519 L 399880.9 -4979519 L 399109.7 -4980250 L 398063.4 -4980298 L 397898.5 -4980275 L 397736.3 -4980560 L 397642 -4980881 L 397340.7 -4982446 L 397108.6 -4982737 L 396476.7 -4983126 L 396243.6 -4983353 L 395872 -4984254 L 395535.2 -4984333 L 394854.5 -4984451 L 393446.8 -4986100 L 393355.2 -4986804 L 393000.4 -4986869 L 391832.5 -4987609 L 391469.6 -4987725 L 390036.7 -4987634 L 389983.1 -4987255 L 389921.6 -4987771 L 389594.6 -4987978 L 387013.8 -4988487 L 385503 -4987280 L 384871.1 -4987599 L 384611.8 -4989092 L 383544.6 -4989068 L 383219 -4988892 L 381886.2 -4988564 L 379825 -4987184 L 379605.1 -4987205 L 379602.9 -4986448 L 378257.5 -4985791 L 377317.5 -4986401 L 377317.8 -4986400 z " |
id="path613" /> |
<path |
d="M 591249.7 -5223472 L 591263.1 -5223828 L 591203.2 -5224876 L 591397.9 -5226331 L 592778.9 -5228122 L 592616.6 -5228867 L 591856 -5230592 L 589791.5 -5232334 L 589360.4 -5233407 L 588665.9 -5234240 L 585466.8 -5232480 L 585321.1 -5232839 L 584707.8 -5233818 L 583830.7 -5238592 L 585079 -5239912 L 585166.5 -5240266 L 584508.6 -5239895 L 584153.5 -5240022 L 584027.1 -5240614 L 584866.5 -5241357 L 584986 -5241716 L 584471.8 -5242708 L 584558.7 -5243386 L 585446.6 -5244567 L 585912 -5245476 L 585647.1 -5245739 L 584975.3 -5245459 L 584121.8 -5243823 L 583198.7 -5243398 L 583121.1 -5243763 L 583182.5 -5244883 L 582496.1 -5245779 L 583051.6 -5246734 L 583121 -5247874 L 582440.2 -5247542 L 581086.8 -5247950 L 580956.6 -5248672 L 581608.1 -5249595 L 579993.6 -5250895 L 579939 -5251268 L 580517.2 -5251987 L 581342.6 -5252727 L 581234 -5253097 L 581262.3 -5254207 L 581053.5 -5254504 L 581417.3 -5254915 L 582181.9 -5254150 L 582428.7 -5253883 L 583048.2 -5254746 L 582801.8 -5255413 L 583122.2 -5255576 L 583692 -5255144 L 583978.5 -5255361 L 584648.6 -5258360 L 584395.3 -5259091 L 584015.1 -5259167 L 583826.1 -5259274 L 583627.3 -5259557 L 584024.7 -5260487 L 583867.4 -5261118 L 583651.6 -5261389 L 583492.9 -5261692 L 583363.2 -5262010 L 583637.7 -5262244 L 583514.9 -5263262 L 583884.2 -5263262 L 585230.8 -5263810 L 585417.8 -5264517 L 585647.3 -5264802 L 586204.3 -5265276 L 586103.6 -5265579 L 585833.1 -5266153 L 586394 -5266584 L 586836.5 -5267536 L 587187.8 -5267632 L 587485.8 -5267421 L 587998.4 -5267582 L 588891.5 -5269537 L 588971.9 -5269838 L 588797.9 -5270737 L 589613.1 -5272794 L 589886.6 -5273052 L 590627 -5272993 L 590999.2 -5272944 L 590828.5 -5273293 L 590917.3 -5276271 L 591565.1 -5276566 L 592140.3 -5277968 L 592514.7 -5278053 L 593220.4 -5279746 L 591652.6 -5280796 L 591688.6 -5281551 L 593503.9 -5281567 L 593827.9 -5282175 L 595645 -5281992 L 595994.4 -5282119 L 595745.6 -5282396 L 594306.8 -5283375 L 594595.4 -5284460 L 593954.5 -5284883 L 593652.2 -5285589 L 592581.9 -5285960 L 592718.9 -5286683 L 593822.1 -5287010 L 594139.3 -5288509 L 595256 -5288449 L 596214.9 -5287816 L 596584 -5287704 L 597785.8 -5289893 L 598426 -5289713 L 599393.6 -5290336 L 599258.4 -5291827 L 599325 -5292209 L 599694.4 -5292326 L 599613.8 -5292690 L 599057.6 -5293615 L 599850.9 -5294847 L 600012.5 -5295177 L 598748 -5296273 L 598470 -5296467 L 598822.7 -5297506 L 598651 -5299318 L 598988.5 -5299476 L 598774.6 -5300445 L 596523.8 -5300347 L 594785.5 -5299614 L 594125.5 -5300010 L 594212.7 -5303065 L 592927.4 -5303559 L 594374.2 -5304807 L 594643.4 -5305525 L 594878 -5305833 L 595786.3 -5306320 L 596828.2 -5306398 L 597470.1 -5306662 L 597767.6 -5306846 L 597315.1 -5307437 L 597211.6 -5308550 L 596526.5 -5308831 L 596290.7 -5309119 L 596917.1 -5310532 L 596780.1 -5311296 L 596690.6 -5311674 L 597156.8 -5312299 L 597676.5 -5313234 L 600267.6 -5312597 L 602076.8 -5313183 L 603615.2 -5313299 L 605407.6 -5314019 L 606725.6 -5313286 L 607040.6 -5313061 L 607707.7 -5312721 L 611308.5 -5314109 L 612877.6 -5313951 L 613990.1 -5314369 L 615557.1 -5314167 L 615867.6 -5314333 L 616117.2 -5314582 L 615751.9 -5316057 L 614808.9 -5316665 L 614227.4 -5318065 L 614239.9 -5318446 L 614976.3 -5318287 L 615493.4 -5318763 L 615642 -5319110 L 616279 -5319471 L 617357 -5320956 L 619890.5 -5321174 L 620234 -5321328 L 620441.4 -5320783 L 620632.3 -5320557 L 622544.1 -5320637 L 624458.4 -5319605 L 626524.5 -5320522 L 626780.4 -5320236 L 627762 -5319274 L 627977.8 -5319004 L 630196.3 -5318546 L 632808.2 -5318876 L 633164.7 -5319011 L 633701.4 -5317639 L 634568.3 -5316931 L 633658.6 -5316309 L 632974.1 -5314962 L 633143.3 -5314277 L 633817.6 -5313995 L 634185 -5313999 L 634887.3 -5313719 L 635533.4 -5314025 L 637431 -5313844 L 638276.8 -5313071 L 638824.1 -5312117 L 638984.8 -5311787 L 637583.5 -5309679 L 636413.2 -5308838 L 636385.7 -5308469 L 636739.2 -5307868 L 638183.3 -5306876 L 638468.3 -5306672 L 639740.2 -5309356 L 641233.2 -5309735 L 641909.5 -5309414 L 642093.2 -5309077 L 642903.2 -5306932 L 643165.1 -5306642 L 643457.1 -5306437 L 643826.7 -5305843 L 643815.4 -5304130 L 645107 -5303590 L 645820.9 -5303651 L 646455.7 -5302278 L 646445.7 -5300778 L 647348.3 -5299739 L 648208.7 -5299356 L 648191.3 -5299028 L 648237.5 -5299103 L 648645.3 -5298653 L 648941.4 -5298508 L 648487.7 -5296813 L 646116.9 -5295097 L 645516.8 -5294773 L 645207.3 -5294629 L 644916.7 -5294420 L 643346 -5293625 L 643645.2 -5293504 L 643583.9 -5292602 L 643285.4 -5292481 L 643634.6 -5292386 L 643899.1 -5291809 L 644970.5 -5291994 L 645502.7 -5292443 L 646118.9 -5292099 L 646461.2 -5292014 L 646968.9 -5289844 L 646649.2 -5288790 L 646940.8 -5289022 L 647482.8 -5288620 L 647436.3 -5288257 L 646974.1 -5287686 L 646979.8 -5286645 L 646443.6 -5286145 L 646213.9 -5285835 L 646452.2 -5285111 L 647578.1 -5284084 L 647375.5 -5283756 L 649273.9 -5284023 L 649875.2 -5284512 L 650001.4 -5285275 L 650373.9 -5285349 L 651862.9 -5286385 L 652165.9 -5286147 L 652061.9 -5284636 L 653938.1 -5284763 L 653281.6 -5282607 L 653730.3 -5281983 L 654447.7 -5281705 L 654831.2 -5281737 L 656378.7 -5280751 L 657507 -5280697 L 657900.6 -5280040 L 658609.6 -5280137 L 658657.4 -5279977 L 659397 -5279764 L 660065.3 -5280170 L 661478.4 -5282036 L 661790.2 -5283130 L 662776.8 -5283454 L 663144.3 -5283480 L 662926.6 -5280806 L 662854 -5280426 L 663071 -5280193 L 663990.9 -5280022 L 665740.9 -5279189 L 667762.4 -5276875 L 667737.9 -5276484 L 667989.2 -5276490 L 668179.6 -5276655 L 668433.2 -5276877 L 669349.7 -5277135 L 669164 -5276797 L 668128 -5274731 L 668150.1 -5274011 L 669310 -5272061 L 670579.2 -5272543 L 670925.8 -5272643 L 670922.8 -5273409 L 672986.2 -5275585 L 673713.2 -5275600 L 674245.6 -5276148 L 675001.4 -5276019 L 675346.6 -5275852 L 675810.4 -5275256 L 675724.3 -5274493 L 676748 -5273969 L 676964.7 -5274262 L 677469.6 -5275224 L 678087.7 -5275438 L 678399 -5275336 L 679249 -5274440 L 679783.8 -5274538 L 680046.4 -5274678 L 681308.5 -5277298 L 681872 -5278617 L 682975.2 -5278396 L 685168.6 -5276395 L 685368.4 -5276078 L 685942.8 -5275781 L 686629 -5272829 L 686363.7 -5271358 L 687041.4 -5271151 L 687489.2 -5269743 L 687498.7 -5269359 L 686892.3 -5267427 L 686795.8 -5267096 L 685690.3 -5267114 L 685296.4 -5266024 L 684401.6 -5264767 L 683964.5 -5263586 L 683640.9 -5263435 L 683152.6 -5262917 L 682816.3 -5263058 L 682480.5 -5263574 L 680318.8 -5263783 L 680187.2 -5263471 L 679746.4 -5262558 L 679536.5 -5262047 L 679479.1 -5261776 L 680701.2 -5261388 L 681025.6 -5261380 L 680766 -5261140 L 678942.2 -5260086 L 678283.1 -5259882 L 679116.5 -5259324 L 679087.7 -5258695 L 678995.1 -5258357 L 681219.7 -5259639 L 681558 -5259482 L 681905.2 -5258464 L 682943.3 -5258227 L 683224 -5258461 L 683643.1 -5258060 L 683457.5 -5257794 L 683035.1 -5257159 L 682926.5 -5255237 L 683732.1 -5254015 L 683759.3 -5253328 L 683450.6 -5253123 L 683235 -5252042 L 684449.9 -5251440 L 684632.7 -5251138 L 686607 -5252342 L 688055.3 -5251756 L 687794 -5251056 L 687940.3 -5250318 L 687728.6 -5250005 L 687536.9 -5249665 L 687554 -5248108 L 687652.9 -5247943 L 688069.7 -5246522 L 687878.1 -5245431 L 686765.8 -5244848 L 686519.1 -5244570 L 686384.1 -5243877 L 686962.5 -5243544 L 688425.5 -5243509 L 689248.8 -5242856 L 689550.3 -5242873 L 689975.4 -5242446 L 689260.9 -5241219 L 689047.3 -5240179 L 688717 -5240287 L 688101.5 -5240606 L 687772.6 -5240244 L 687759.3 -5239974 L 687747 -5239705 L 687739.5 -5239325 L 687444.9 -5237499 L 687278.2 -5237164 L 687611 -5235019 L 687294.4 -5234897 L 686949.1 -5234248 L 687282.9 -5232838 L 686927.7 -5232222 L 686635 -5231994 L 685070.7 -5231067 L 684899.2 -5230789 L 685350.9 -5230032 L 685637 -5229798 L 685873 -5228728 L 685420.3 -5226973 L 685168.1 -5226231 L 684902.6 -5226085 L 684409 -5225357 L 684480.7 -5225023 L 684490.9 -5224356 L 683747.1 -5223664 L 683441.7 -5223655 L 682672.1 -5223162 L 682649.7 -5222827 L 682289.6 -5222290 L 682528.2 -5221724 L 682469.7 -5221388 L 681693.4 -5220332 L 681518.8 -5220001 L 681524.5 -5218891 L 681049.2 -5218333 L 680997.8 -5218001 L 680041.5 -5217142 L 678959.9 -5217000 L 678687.9 -5217301 L 678546.4 -5217015 L 677632 -5216770 L 677280.6 -5216818 L 676625.7 -5216732 L 675987.5 -5216400 L 674990.5 -5214913 L 674347.7 -5214920 L 674140.2 -5214662 L 673810 -5214008 L 672994.1 -5213259 L 672423.9 -5211114 L 672433.9 -5211089 L 672776.1 -5210921 L 675651.5 -5209949 L 675741.2 -5209579 L 675395.6 -5209441 L 674662.5 -5209323 L 674253.9 -5208349 L 672809.7 -5208013 L 672503.2 -5207879 L 672293.8 -5206908 L 671977.3 -5206791 L 671050.1 -5205820 L 670040.1 -5205974 L 668500.1 -5206742 L 668397.6 -5206441 L 667775.1 -5205752 L 667521.1 -5205978 L 666953.5 -5206068 L 666739.9 -5205752 L 666330.3 -5204734 L 666058.2 -5204890 L 665467.7 -5205095 L 664202.9 -5203882 L 663117.9 -5204088 L 662776.3 -5203963 L 662205.3 -5203624 L 660822.8 -5203671 L 660685.3 -5203354 L 659761.8 -5202966 L 659571.6 -5202036 L 659151.6 -5201589 L 659136 -5201965 L 659399.1 -5202668 L 659192.2 -5202955 L 657376.6 -5203339 L 657059 -5204016 L 656684.5 -5203981 L 656662.8 -5204288 L 655982.7 -5204895 L 655784.7 -5205121 L 655378.8 -5205564 L 655006.2 -5205455 L 653853.8 -5205307 L 653062 -5204470 L 651931.7 -5204390 L 651413.2 -5203515 L 651782.1 -5203040 L 652118.4 -5202990 L 652027.2 -5202866 L 651669.9 -5202940 L 649197.6 -5203220 L 648970.7 -5203503 L 648270.8 -5203333 L 648027.8 -5203525 L 647338.1 -5203509 L 645179.2 -5203760 L 644829.8 -5203701 L 643788.6 -5203544 L 643397.1 -5202575 L 643630.5 -5201854 L 643272.1 -5201774 L 641881.4 -5201502 L 641558.9 -5201320 L 637786.9 -5200028 L 637762.5 -5199714 L 637200.6 -5199438 L 635681.3 -5199578 L 635807 -5199216 L 635851.6 -5198834 L 634992 -5198079 L 634684.6 -5197950 L 634351.3 -5197945 L 633963 -5198008 L 633193.1 -5197868 L 632312.1 -5198634 L 632058.6 -5198363 L 631091.4 -5198044 L 630901.5 -5198282 L 630376.8 -5198084 L 630466.5 -5197735 L 629946.8 -5196588 L 629628.3 -5196401 L 627865.3 -5195924 L 627652.4 -5196184 L 626392.3 -5197154 L 626337.6 -5197488 L 627357.9 -5198820 L 627282.2 -5199185 L 625275.4 -5200070 L 625082.5 -5200350 L 624699.1 -5200281 L 622377.2 -5200325 L 622615.7 -5200593 L 622262 -5201159 L 621206.2 -5201264 L 620897.2 -5201484 L 620468.5 -5202081 L 620611.8 -5203187 L 619215.3 -5203781 L 619005.4 -5203998 L 618725 -5204818 L 618754 -5205742 L 618460.9 -5205854 L 617739.1 -5205667 L 617194.2 -5206175 L 617860.2 -5207483 L 617684.6 -5208933 L 615948.2 -5208056 L 614042.7 -5208131 L 613901 -5208495 L 613678 -5208707 L 613419.6 -5209458 L 613138.6 -5209667 L 612707.8 -5210158 L 611339.5 -5209963 L 610244.8 -5211013 L 607953 -5210998 L 606339.9 -5212032 L 606098.5 -5212735 L 606360.3 -5214194 L 607038.8 -5215069 L 606701.7 -5215259 L 605633.3 -5215653 L 604120 -5215488 L 603555 -5214981 L 602964.1 -5213554 L 602606.7 -5213404 L 601588 -5214434 L 601682.5 -5214817 L 601934.2 -5217164 L 601743.4 -5217478 L 601093.3 -5217773 L 598915.8 -5217855 L 598324.8 -5218240 L 598214 -5218513 L 598069.2 -5218770 L 596756.7 -5218280 L 595402.2 -5218734 L 595101.2 -5218937 L 594516.5 -5220521 L 594459.8 -5220870 L 593799.5 -5221030 L 593692.3 -5222714 L 593378.9 -5222520 L 591985.8 -5222401 L 591592.6 -5223334 L 591250.5 -5223471 L 591249.7 -5223472 z M 584180 -5219796 L 583610.5 -5220638 L 584194.3 -5221056 L 583893.2 -5222037 L 584128.6 -5222314 L 584497.8 -5222265 L 585932.5 -5222039 L 589138.5 -5222892 L 589630.2 -5222296 L 589517.8 -5221119 L 588617.8 -5219832 L 588721.1 -5219085 L 588444.8 -5218980 L 588108.8 -5219183 L 587536.9 -5219639 L 586776.5 -5218803 L 585820.6 -5219423 L 585298.3 -5220404 L 584958.2 -5220576 L 584332.4 -5220145 L 584179.9 -5219796 L 584180 -5219796 z " |
id="path614" /> |
<path |
d="M 465916 -5110241 L 465807.9 -5109995 L 465437.9 -5109765 L 465230.7 -5108797 L 465203.5 -5108079 L 464754.4 -5107571 L 464634.3 -5106888 L 464776 -5105423 L 464899.9 -5104733 L 464743.8 -5103961 L 465047.5 -5102814 L 466483.8 -5099574 L 468465.5 -5098288 L 468733.4 -5097997 L 468532.4 -5097712 L 468654.2 -5096685 L 468382.1 -5096042 L 468440 -5095677 L 467972.8 -5093912 L 468249.6 -5092865 L 468502.5 -5092575 L 469325.3 -5091315 L 469015.2 -5090617 L 468652.2 -5090517 L 465834.4 -5089566 L 466061.3 -5088485 L 464725.4 -5087839 L 464732.3 -5087101 L 464133.3 -5086620 L 464109.2 -5085103 L 465188 -5084692 L 464827 -5084521 L 464555 -5084245 L 461605.3 -5081838 L 460850.4 -5081727 L 460801.4 -5080583 L 460067.5 -5079281 L 459706.6 -5079304 L 458680.8 -5080080 L 457981.9 -5080105 L 457984.9 -5079755 L 456284.2 -5079602 L 456225.2 -5079243 L 456275.2 -5078519 L 456757.1 -5077985 L 456609.1 -5077277 L 455920.2 -5077354 L 455429.3 -5076525 L 454931.4 -5076006 L 453054.7 -5076330 L 451951.9 -5075254 L 452051.9 -5074881 L 455247.5 -5070931 L 455436.6 -5069199 L 455484.6 -5068847 L 456114.5 -5067905 L 456751.4 -5067682 L 457082.3 -5067872 L 458029.2 -5067269 L 458357.2 -5066571 L 459440 -5066273 L 459970 -5065250 L 459623.1 -5065160 L 458557.4 -5064293 L 458342.5 -5063265 L 457985.6 -5063224 L 456984 -5062108 L 456245.2 -5061925 L 455565.5 -5061008 L 455240.6 -5061201 L 453608.9 -5062100 L 451366.4 -5062071 L 450768.5 -5062529 L 450526.5 -5062555 L 450283.6 -5062577 L 449896.7 -5062513 L 448782 -5062152 L 448520.1 -5061872 L 448699.2 -5061133 L 448790.3 -5060369 L 448196.6 -5059380 L 446533.3 -5057873 L 445506.5 -5058329 L 444812.8 -5057992 L 443909.2 -5057286 L 442755.5 -5057199 L 442738.9 -5060243 L 442388 -5060124 L 441696.2 -5059894 L 440841.3 -5060551 L 440157.5 -5060406 L 439707.5 -5060996 L 438977.7 -5060958 L 438218.6 -5062626 L 438150.7 -5062248 L 437794 -5061226 L 436742.3 -5061373 L 437501.8 -5063113 L 436042.1 -5063506 L 435252.1 -5064788 L 434219.3 -5065219 L 433886.7 -5063608 L 433547.8 -5063785 L 432862.9 -5064037 L 431807 -5065092 L 430568.5 -5064258 L 429274.7 -5064988 L 428284.1 -5064410 L 428276.9 -5065289 L 428239.8 -5065676 L 428166.7 -5066400 L 426452 -5067288 L 425919.9 -5068321 L 425538 -5068399 L 425238.1 -5068148 L 424759.3 -5067534 L 422833.9 -5067401 L 421846.3 -5066780 L 421522.8 -5064899 L 421018.2 -5063867 L 420326.5 -5063532 L 420160.5 -5063878 L 418288 -5064034 L 417302.6 -5062926 L 417316.8 -5062171 L 416586 -5062119 L 416080 -5062689 L 415352.2 -5062774 L 414717.6 -5061862 L 413781.1 -5061262 L 413620 -5061611 L 412432.1 -5062479 L 412408 -5062851 L 413015.7 -5063280 L 413324.5 -5063488 L 412640.5 -5064357 L 411960.7 -5064498 L 412894.9 -5066483 L 412664.9 -5066780 L 411959.9 -5067643 L 412206.8 -5067939 L 413690.3 -5068126 L 414154.9 -5069173 L 413815 -5068999 L 413330 -5069417 L 412768.6 -5071984 L 411033.7 -5073382 L 410652.8 -5073367 L 410618.7 -5073720 L 409736.9 -5073948 L 408971.8 -5075446 L 408688.9 -5075182 L 408539.2 -5074046 L 408212.3 -5073840 L 406023.4 -5075936 L 405276.6 -5075950 L 404632.7 -5076366 L 404263.6 -5077449 L 404756.3 -5078488 L 404117.1 -5080279 L 403733.2 -5080352 L 403044.4 -5080049 L 402936.7 -5078883 L 402612.8 -5078796 L 401679.1 -5078426 L 401400.2 -5078171 L 400940.4 -5077576 L 400211.6 -5077369 L 397994.1 -5077621 L 397044.5 -5077003 L 396005.8 -5077081 L 395456.1 -5076563 L 395370 -5076920 L 394927.9 -5077886 L 394545 -5077817 L 393042.3 -5078133 L 392748.3 -5078386 L 391038.5 -5079259 L 391412.2 -5080256 L 391180.9 -5081683 L 390207 -5082118 L 391076.6 -5082838 L 391838.4 -5082894 L 392328.4 -5082503 L 392659.1 -5083545 L 393435.1 -5082839 L 394135.9 -5083092 L 394025.9 -5083308 L 394149.8 -5083517 L 392973.6 -5085699 L 393861.2 -5086826 L 393156.4 -5086885 L 392994.3 -5087575 L 392373.5 -5087309 L 391381.6 -5087652 L 391036.7 -5087490 L 389528 -5087416 L 389198.4 -5085972 L 388879.5 -5085766 L 387550.7 -5086204 L 386881.9 -5085922 L 386644.9 -5086209 L 385756.9 -5087387 L 384302.2 -5087539 L 383962.1 -5088580 L 384659.9 -5088685 L 384586.8 -5089375 L 384734.7 -5089698 L 386117.3 -5090075 L 387685.8 -5091155 L 388445.7 -5091102 L 389132.3 -5092433 L 389330.2 -5092682 L 389067.1 -5093593 L 388854.1 -5093841 L 388678 -5094781 L 388358.1 -5094851 L 386320.5 -5094875 L 386224.5 -5095241 L 385961.4 -5096328 L 386253.2 -5097806 L 386829 -5098777 L 387193.9 -5098875 L 386244.8 -5100807 L 386341.8 -5101061 L 386035.8 -5101707 L 386775.5 -5103464 L 385625.6 -5104276 L 385566.5 -5105044 L 384555.6 -5105595 L 384186.7 -5105122 L 383648.7 -5105846 L 383566.7 -5106218 L 383387.7 -5106908 L 382731.8 -5107247 L 383136.7 -5108298 L 384026.6 -5108897 L 383831.6 -5109605 L 383235.7 -5110049 L 383350.7 -5110801 L 382277.8 -5110652 L 381408.9 -5111877 L 379961.1 -5112242 L 381038.9 -5113313 L 380579.9 -5114314 L 380751.9 -5115002 L 380117 -5115404 L 379803 -5115198 L 378780.1 -5114875 L 378234.1 -5115230 L 377499.2 -5115077 L 376588.3 -5115697 L 376201.3 -5115709 L 375715.3 -5117114 L 375127.4 -5117552 L 374182.5 -5119627 L 374545.5 -5119733 L 375839.4 -5121908 L 376535.3 -5122187 L 377264.2 -5122033 L 377591.2 -5122222 L 377710.2 -5122954 L 376816.3 -5123610 L 376740.3 -5124334 L 377431.3 -5125229 L 378144.2 -5124996 L 379098.2 -5125571 L 378633.3 -5126132 L 377607.4 -5126391 L 378282.5 -5128425 L 378619.5 -5128584 L 379586.5 -5129040 L 379358.7 -5131196 L 379916.8 -5132018 L 379833.9 -5132386 L 378750.9 -5132388 L 377170.1 -5133321 L 377350.1 -5133640 L 377605.1 -5133903 L 379269.2 -5134863 L 379324.3 -5135638 L 379963.4 -5136606 L 381398.4 -5137064 L 382660.7 -5139007 L 383739.7 -5139353 L 383992.6 -5139058 L 384078.7 -5139363 L 384257.9 -5140261 L 384981 -5141057 L 385080.1 -5141769 L 385906.2 -5142442 L 386241.2 -5142576 L 386955.1 -5142303 L 387623.9 -5141416 L 387782.4 -5139135 L 388469.4 -5139122 L 389597.6 -5140149 L 389962.6 -5140262 L 390208.7 -5140560 L 391322.6 -5140375 L 392344.9 -5141864 L 392660.9 -5142084 L 393588.8 -5141651 L 393033.4 -5139879 L 393999 -5138313 L 395047.9 -5137871 L 395849 -5138679 L 396151 -5138912 L 396662.2 -5139936 L 398044.5 -5141250 L 398375.5 -5141441 L 400310.8 -5138653 L 401719.6 -5138145 L 401762.7 -5138526 L 403134 -5139830 L 403494 -5139967 L 403369.2 -5140717 L 404238.6 -5142389 L 403913.9 -5143474 L 404150 -5143772 L 403727.2 -5144399 L 403534.3 -5144650 L 403346.4 -5144906 L 406191.5 -5145427 L 406891.5 -5145282 L 407242.5 -5145394 L 407527.3 -5144655 L 408653 -5143552 L 408753.8 -5142765 L 410597.6 -5142228 L 411465.8 -5142956 L 413397.7 -5142810 L 413784.7 -5142837 L 414084 -5143759 L 414666.9 -5143446 L 415012.9 -5143478 L 415919.1 -5143970 L 416528 -5143615 L 417020.7 -5142715 L 420865.9 -5143513 L 421254.9 -5143596 L 421669.7 -5143091 L 421989.7 -5143026 L 422160.5 -5142545 L 424708.3 -5142106 L 424941.2 -5141811 L 427169.1 -5141376 L 427551.1 -5141424 L 428240.1 -5141280 L 429143.8 -5140291 L 429478.8 -5140182 L 429467.8 -5140152 L 430606.8 -5140218 L 431584.2 -5141405 L 433475.2 -5141339 L 434139.3 -5141644 L 435566.3 -5141650 L 436540.3 -5141546 L 436879.3 -5141536 L 437587.4 -5141844 L 437878.5 -5142100 L 439625.3 -5141561 L 441796.5 -5141840 L 442161.5 -5141770 L 442413.4 -5141489 L 443895.3 -5141271 L 444260.3 -5141172 L 444133 -5140443 L 444325.9 -5140106 L 444045.8 -5139868 L 444499 -5137751 L 444511.9 -5137382 L 444673.8 -5137047 L 445748.7 -5136879 L 446629.5 -5136229 L 448086.6 -5136480 L 448393.4 -5135802 L 448466.3 -5135436 L 448515.2 -5135070 L 447448.2 -5135081 L 446388.8 -5134068 L 446243.5 -5133077 L 445797.3 -5132491 L 446528.2 -5132331 L 446750 -5131626 L 448253.7 -5130564 L 450073.6 -5130351 L 450700.1 -5128994 L 451039.2 -5129163 L 452067.8 -5130980 L 452246.9 -5131294 L 452406.9 -5131248 L 454523.1 -5128990 L 454888 -5128853 L 454490.6 -5127500 L 454922.1 -5126096 L 455278.1 -5126007 L 455609.3 -5126695 L 456243.4 -5127016 L 456597.4 -5127163 L 458683.1 -5126190 L 459453.8 -5125351 L 459395.7 -5124970 L 459251.5 -5124240 L 460022.9 -5122519 L 460095.8 -5122147 L 461099.7 -5121806 L 461828.4 -5120974 L 462198.4 -5120964 L 462112.4 -5120864 L 462592.2 -5116889 L 463090.9 -5115934 L 462916.7 -5115227 L 463099.6 -5114907 L 464122.3 -5113942 L 465105.2 -5113754 L 465457.2 -5113727 L 465916.3 -5110241 L 465916 -5110241 z " |
id="path615" /> |
<path |
d="M 285823.2 -4960109 L 285544 -4960373 L 284515.8 -4961497 L 284059.3 -4962535 L 283882.9 -4962844 L 284128.8 -4963874 L 284166.2 -4964216 L 283528.9 -4965772 L 283408.9 -4966920 L 283401.2 -4967311 L 283762.9 -4967292 L 285128.5 -4966880 L 285688.4 -4967811 L 286334.4 -4967527 L 286264.2 -4968224 L 287520.3 -4969286 L 287280 -4969561 L 285454.4 -4971329 L 285146.3 -4971541 L 281620.5 -4972432 L 281946.7 -4971040 L 281779.3 -4970750 L 281500.9 -4970540 L 280181.9 -4969423 L 279835.3 -4969375 L 279195.3 -4969109 L 278924 -4968843 L 277785.5 -4966871 L 277503.9 -4966797 L 277103.5 -4967191 L 276960.3 -4967356 L 276598.3 -4967504 L 275048.4 -4967574 L 274342.4 -4967907 L 272398.1 -4967850 L 271621.4 -4966974 L 271558.5 -4966930 L 271186.6 -4967015 L 271175.5 -4968152 L 270166.7 -4968464 L 269815 -4968455 L 269127.8 -4968298 L 268532.7 -4967036 L 268152.1 -4967013 L 267700.3 -4967628 L 266590.2 -4967644 L 266351.4 -4967662 L 266002.4 -4967819 L 265557.7 -4968401 L 265710.2 -4969145 L 264432.6 -4970506 L 263364.1 -4970155 L 262976.5 -4970130 L 259989.2 -4970965 L 260132.4 -4971312 L 261927.2 -4971749 L 262375 -4972711 L 262641.4 -4972934 L 262880.1 -4973522 L 262871.1 -4973546 L 263816.6 -4974504 L 264025.2 -4975167 L 264114.5 -4975506 L 264214.3 -4975556 L 264479.6 -4975821 L 265612.3 -4977749 L 264719.8 -4978930 L 264427.5 -4979243 L 264282 -4979599 L 263468.5 -4981300 L 263859 -4983124 L 264312.9 -4984141 L 264275.6 -4984891 L 264598 -4985083 L 265513.2 -4984588 L 266130.9 -4986234 L 266412.3 -4986453 L 266143.5 -4988774 L 266458.4 -4989871 L 266571.7 -4989625 L 266743.3 -4990371 L 266948.9 -4991112 L 267849.2 -4991797 L 269325.2 -4994862 L 269268.4 -4995372 L 269139.2 -4995533 L 268910.8 -4995852 L 268530 -4997748 L 267335.5 -4999749 L 266254.4 -5000193 L 264304.3 -5000336 L 263958.3 -5000484 L 261773.2 -5000086 L 260536.1 -4998759 L 260474.3 -4999906 L 261470.1 -5001548 L 261062.6 -5002615 L 260965.1 -5002988 L 264124.5 -5004170 L 263949.5 -5004866 L 262820.8 -5005073 L 262451.1 -5005670 L 263851.7 -5007396 L 264153.2 -5007632 L 264394.7 -5008540 L 264909.6 -5009756 L 266777.8 -5010317 L 267004.2 -5010640 L 268207.3 -5012156 L 268555.9 -5012343 L 269380.6 -5011587 L 270134.3 -5011522 L 271121 -5012042 L 271412.5 -5012283 L 272036.4 -5012101 L 272893.4 -5011061 L 273107.7 -5010791 L 273226.8 -5010670 L 274500.9 -5010118 L 275203.6 -5010733 L 275554.5 -5010693 L 275806.8 -5011804 L 276568.1 -5011989 L 277942.5 -5013360 L 277675.3 -5013635 L 277711.2 -5014382 L 277798.6 -5014755 L 278076.2 -5014909 L 278048.4 -5015511 L 278037 -5015828 L 280068 -5015803 L 280360.6 -5015990 L 280850.2 -5016826 L 280884.7 -5017152 L 281677.4 -5018573 L 281752.9 -5018904 L 283498.9 -5019016 L 283784.1 -5018793 L 283992.2 -5018648 L 284233 -5018731 L 285047.7 -5019423 L 285358.3 -5019622 L 285570.3 -5020356 L 285737.8 -5021483 L 285362.2 -5023710 L 285338.2 -5023735 L 284921.3 -5025449 L 284809.9 -5025788 L 284310.1 -5026643 L 284259.7 -5026975 L 284639.2 -5028891 L 285434.8 -5030635 L 285653.6 -5031581 L 285847.2 -5031857 L 286184 -5032747 L 286140.7 -5033065 L 286760.4 -5033960 L 287683.4 -5034535 L 288377.2 -5034478 L 288742.1 -5034428 L 289748.2 -5034844 L 288766.4 -5035944 L 288768.8 -5037421 L 289404.6 -5037387 L 290785.9 -5035679 L 291109 -5036343 L 291250.7 -5037446 L 291275.7 -5037480 L 293017.3 -5038102 L 293553.1 -5039074 L 294320.7 -5039132 L 294799 -5039654 L 294774.6 -5040037 L 297139.9 -5040814 L 297971.3 -5040142 L 298249.4 -5039891 L 298565.1 -5040105 L 298944 -5040073 L 299080.1 -5041852 L 299965.7 -5042962 L 300166.3 -5043263 L 300553.7 -5043696 L 300448.2 -5044285 L 301114.8 -5044448 L 301651.8 -5045324 L 301784.1 -5045991 L 302088.1 -5045895 L 302402.1 -5045838 L 303144.8 -5045870 L 304403.6 -5046615 L 305016.5 -5047529 L 304711.7 -5048479 L 304430.6 -5048707 L 305892.8 -5051252 L 305590.3 -5051905 L 305916.7 -5052495 L 305717.2 -5053188 L 305003.7 -5054001 L 304826.5 -5054317 L 304760.1 -5054787 L 305390.7 -5054973 L 305754.6 -5056080 L 306815.3 -5057195 L 307565 -5057294 L 307656 -5056030 L 307753.2 -5055719 L 308705.4 -5056287 L 309803 -5056288 L 310674.2 -5056989 L 310545.9 -5057347 L 310060.2 -5058377 L 311690 -5059223 L 311698.4 -5059962 L 312716.8 -5060354 L 312438.5 -5060933 L 312885 -5061465 L 313149.9 -5062840 L 313789.7 -5062806 L 314957.2 -5064324 L 315139.6 -5065047 L 315723.4 -5063630 L 316682.5 -5063115 L 316919 -5062381 L 317567.1 -5061969 L 318693.7 -5062041 L 319060.7 -5061924 L 320076.2 -5062235 L 320719.2 -5061923 L 321557.5 -5062589 L 322253.3 -5062633 L 323951.3 -5061882 L 325169.3 -5059926 L 326209.2 -5059550 L 326339.2 -5059540 L 325318.4 -5055537 L 324486.7 -5054237 L 324235 -5053941 L 325506.6 -5052521 L 326231.4 -5051147 L 328126.4 -5051513 L 328471.4 -5051397 L 328790.7 -5049624 L 328854 -5049265 L 331090.7 -5049811 L 331750.7 -5050745 L 331863.4 -5051120 L 332584.8 -5052940 L 332719.5 -5053313 L 333301.7 -5054163 L 333501.4 -5054443 L 334083.5 -5054019 L 334388.1 -5052984 L 335077.4 -5052151 L 335335.5 -5051898 L 335712.4 -5051810 L 336186.8 -5052420 L 337302.5 -5052312 L 339465.1 -5053123 L 341524.8 -5052457 L 341729 -5052128 L 342819.4 -5052421 L 343319.8 -5053004 L 345467.4 -5052344 L 346175.8 -5051420 L 346636.6 -5049942 L 346259.2 -5049264 L 346347.7 -5048491 L 346486.9 -5048125 L 347295.6 -5046698 L 347922.5 -5046416 L 348271.4 -5046401 L 348297.3 -5046466 L 349247.7 -5045414 L 349755.5 -5044064 L 350024.6 -5043823 L 350140.3 -5044187 L 351580.4 -5044638 L 352014.8 -5045247 L 352766.4 -5045375 L 353459.3 -5045056 L 353772.3 -5044838 L 356308.4 -5043123 L 356214.7 -5042745 L 354885.8 -5041937 L 353840.1 -5040788 L 352900.8 -5039097 L 352549.1 -5038930 L 352615.9 -5037806 L 353491 -5037171 L 354967.3 -5037251 L 355623.7 -5037616 L 355960.4 -5037795 L 356943.8 -5036712 L 357050.6 -5035591 L 357673.6 -5035177 L 359800 -5035939 L 361487.9 -5035088 L 361721.1 -5033288 L 362076 -5033143 L 362719.4 -5033561 L 362961.1 -5033860 L 364240.9 -5033357 L 364448 -5033061 L 365679.7 -5032618 L 365736.7 -5031189 L 365714 -5030816 L 364980.5 -5030588 L 363874.8 -5030907 L 363324.4 -5030472 L 363409.5 -5028967 L 363708.6 -5028729 L 364789 -5028827 L 364470.7 -5028126 L 365052.1 -5027251 L 366477.6 -5028245 L 367946.8 -5027104 L 368296.7 -5026968 L 367997.2 -5025207 L 367354.2 -5024367 L 367026.5 -5024200 L 366637.7 -5024218 L 365246.9 -5023577 L 364970.9 -5022480 L 364329.4 -5021132 L 363196.9 -5020130 L 361693.5 -5020341 L 361313.7 -5020322 L 361672.1 -5018468 L 361470.5 -5018148 L 361718.5 -5018011 L 361487.6 -5016950 L 360940.3 -5016531 L 360509.1 -5014763 L 361386 -5014330 L 361519.4 -5013812 L 361447.8 -5013477 L 362846.6 -5012843 L 363986.7 -5013078 L 364328.7 -5012893 L 364428.7 -5011763 L 364406.1 -5011379 L 363067.1 -5010030 L 361271.8 -5009357 L 360904.1 -5009241 L 360881.4 -5008951 L 360703 -5008397 L 360450.2 -5007269 L 360835.6 -5006601 L 363877.5 -5006842 L 364942.9 -5005725 L 365218 -5005454 L 365352.3 -5005093 L 364883.6 -5004035 L 364551 -5003839 L 364262.4 -5003608 L 363485.6 -5002844 L 362450.3 -5002832 L 362388 -5002136 L 364389.8 -5001072 L 365179.1 -5000235 L 366603.8 -4999667 L 367577.6 -5000253 L 368567.5 -4999709 L 369626.4 -5000102 L 370009.2 -5000116 L 369991.8 -4999554 L 369993.1 -4999272 L 371119.6 -4999064 L 372238.5 -4999417 L 373283.3 -4998914 L 373628.3 -4998728 L 373892.3 -4998576 L 374503.1 -4998353 L 374773.1 -4998171 L 374792.8 -4997431 L 374418.7 -4996801 L 373110.3 -4996087 L 372363.8 -4996070 L 371995 -4996131 L 372125.5 -4995542 L 372384.1 -4995782 L 372852.3 -4995319 L 373156.3 -4995140 L 373015.5 -4994058 L 373528.2 -4993074 L 373736.4 -4992768 L 374098.8 -4992109 L 373752.7 -4991447 L 373574.2 -4991116 L 374316.9 -4990905 L 374502.6 -4990149 L 376012.9 -4987909 L 376268 -4987616 L 376992.7 -4986488 L 377317.6 -4986400 L 376100.4 -4985473 L 374211.2 -4985056 L 374644.5 -4983588 L 374546 -4981407 L 374952.4 -4980787 L 374885.7 -4979665 L 375618.7 -4978323 L 376000.5 -4978287 L 375953.7 -4977307 L 376582.6 -4975249 L 375167.7 -4975218 L 374114.7 -4974183 L 374722.4 -4974023 L 374815.4 -4973085 L 374980.6 -4972794 L 376062.7 -4972026 L 376386.5 -4971941 L 376579.4 -4971061 L 376547.8 -4970760 L 376358.4 -4970420 L 375686.4 -4970046 L 374528.4 -4969970 L 374312.5 -4970057 L 374111.5 -4970177 L 373924.7 -4969295 L 373619.2 -4969124 L 373388.1 -4967759 L 373356.4 -4967564 L 372260.1 -4967688 L 371436.7 -4966965 L 370423.3 -4967165 L 370042.5 -4966495 L 370244.2 -4963459 L 369938.5 -4963420 L 369644.9 -4963323 L 369321.4 -4963144 L 367183.5 -4962900 L 366890 -4962695 L 365241.3 -4962019 L 364604 -4961154 L 365337.5 -4961042 L 365423.9 -4960678 L 364878.7 -4959720 L 365405.9 -4959213 L 365732.9 -4959029 L 366770.5 -4957920 L 366291.1 -4955629 L 365984.2 -4955758 L 365045.6 -4956086 L 364884.2 -4955757 L 364878.2 -4954330 L 363937.2 -4952798 L 363598.4 -4952875 L 362611.2 -4953670 L 362388.4 -4952952 L 361912.7 -4952360 L 360816.1 -4952067 L 360403.5 -4950666 L 359372 -4950300 L 358940.3 -4949704 L 358924.5 -4949545 L 358546 -4949447 L 355438.9 -4949441 L 354353.6 -4949008 L 353872 -4948393 L 352732.4 -4948177 L 352737.9 -4947820 L 352938.9 -4946422 L 352671.5 -4946184 L 353109 -4944324 L 352969.7 -4943960 L 352629.3 -4943800 L 351060.3 -4942214 L 350764.9 -4942005 L 349452.1 -4940826 L 348533.9 -4939642 L 349083.6 -4938281 L 348767.1 -4938186 L 349040.3 -4937257 L 348675.6 -4937282 L 347602.6 -4937313 L 346926.8 -4937574 L 346828.3 -4937927 L 347052.9 -4938645 L 346548.1 -4940019 L 345431.9 -4940221 L 344650.3 -4941043 L 343598.7 -4941446 L 343254.8 -4941596 L 341961.9 -4942310 L 340809.5 -4943855 L 340693 -4944227 L 339244.5 -4945390 L 338383.5 -4944655 L 336614.4 -4945159 L 336233.8 -4945108 L 335211.6 -4944598 L 334235.4 -4943481 L 333952 -4943314 L 333654.5 -4943176 L 332695.5 -4942540 L 331164.3 -4942359 L 330618 -4940524 L 330301.2 -4940610 L 329647.8 -4940635 L 329307.9 -4940797 L 327869.7 -4941135 L 328127 -4942541 L 327436.1 -4942329 L 327218.9 -4942591 L 327121.8 -4943265 L 326503.3 -4943923 L 328009 -4944981 L 328007.9 -4946805 L 328650.8 -4947121 L 328693.6 -4947835 L 329124.4 -4948324 L 329429.8 -4948512 L 329113.9 -4948652 L 328087.8 -4948704 L 327343.5 -4949332 L 327635.4 -4949850 L 327778.8 -4950129 L 327602.7 -4950866 L 326773.2 -4951658 L 325328.7 -4952145 L 324435.5 -4951553 L 324320.4 -4950452 L 323993.9 -4950330 L 322422.2 -4951014 L 322149.2 -4949953 L 321050.9 -4950143 L 319689.2 -4949540 L 319327.3 -4949666 L 317074.3 -4949722 L 316786.6 -4949687 L 316219.3 -4949583 L 315847.5 -4949673 L 314019.8 -4949898 L 314025 -4950915 L 313914.5 -4951248 L 313355.7 -4952616 L 311967.1 -4953144 L 311723.8 -4952890 L 311267.1 -4952362 L 311391.2 -4951670 L 311100.8 -4951472 L 310849.6 -4951716 L 308853.7 -4952161 L 308550.6 -4952365 L 307660.5 -4951765 L 306855.5 -4949393 L 306484.7 -4949492 L 305203.3 -4948734 L 304598.2 -4949117 L 304272.2 -4949810 L 303989 -4950055 L 303276.3 -4950281 L 302885.7 -4950240 L 301186.9 -4949367 L 300577 -4949063 L 299199.7 -4949401 L 298986.5 -4949099 L 297685 -4947892 L 297330.6 -4947735 L 295871.6 -4947407 L 294875.7 -4946822 L 292855.5 -4947919 L 291722.6 -4947888 L 290945.8 -4948718 L 290045.9 -4948054 L 289754 -4948137 L 289597 -4948722 L 289713.9 -4950287 L 290490.8 -4952078 L 290278.4 -4952401 L 289100.7 -4953350 L 289283.1 -4954096 L 289634.6 -4954224 L 289628.5 -4955345 L 289455 -4955678 L 289147.8 -4955921 L 288846 -4957035 L 286573.2 -4959620 L 286289.3 -4959727 L 285823 -4960109 L 285823.2 -4960109 z " |
id="path616" /> |
<path |
d="M 698021.6 -4913254 L 698230.8 -4912974 L 699018.1 -4913781 L 700388.8 -4914418 L 700923.2 -4913878 L 701660.7 -4913721 L 702089.2 -4912422 L 702827.6 -4912412 L 703448.9 -4912807 L 704131.4 -4912685 L 704492.6 -4912765 L 705427.2 -4912665 L 705743.4 -4912646 L 705843.5 -4912666 L 708407.1 -4912835 L 708671.3 -4913095 L 709032.6 -4912965 L 709210.8 -4912294 L 707900.1 -4910908 L 707545 -4909824 L 708150.3 -4910206 L 709239.2 -4909327 L 709597.5 -4909309 L 710090.9 -4908839 L 709786.8 -4908288 L 709544.7 -4908030 L 709589.9 -4907302 L 710714.9 -4905956 L 710760 -4905591 L 712721.1 -4906449 L 713028.3 -4906644 L 713763.9 -4905884 L 713947.1 -4905582 L 713437.8 -4905042 L 712995.6 -4904415 L 712905.7 -4903280 L 712979.9 -4902671 L 713700.5 -4901973 L 713640.5 -4901640 L 713354.7 -4899711 L 714148.6 -4897933 L 713382.2 -4897266 L 711434 -4896995 L 711503.1 -4896627 L 710891.2 -4894859 L 711057.4 -4894522 L 714023.3 -4894181 L 713935.3 -4893860 L 713759.6 -4892238 L 713391.4 -4892362 L 711089 -4892382 L 710712.7 -4892486 L 709945.2 -4892611 L 710003.2 -4892987 L 710498.1 -4894375 L 709748.5 -4895217 L 708706.8 -4895688 L 708052.1 -4897009 L 707467.7 -4897078 L 707237.6 -4896793 L 705469.6 -4896641 L 704530.6 -4894695 L 704836.8 -4894462 L 705932.9 -4892988 L 705095.6 -4892235 L 703564.8 -4892301 L 703564.8 -4892256 L 702889 -4890458 L 700437.2 -4889346 L 700181.3 -4888648 L 699482 -4888401 L 699086.8 -4888357 L 695942.2 -4888681 L 695651 -4888884 L 695309.2 -4890609 L 694942 -4890730 L 694420.6 -4891173 L 694310.2 -4892301 L 693937.1 -4892208 L 693290.9 -4892025 L 692708.5 -4892519 L 691206 -4892218 L 690099.4 -4892512 L 690084.3 -4892902 L 690290.6 -4895184 L 689816.9 -4896627 L 689945.7 -4897373 L 690046.6 -4897612 L 689707.4 -4897794 L 689405.2 -4898031 L 689058 -4898193 L 687702.2 -4898903 L 686139.9 -4897805 L 684731.2 -4898345 L 683592.8 -4898266 L 683540.9 -4897888 L 683226.7 -4898048 L 682592.2 -4898889 L 681685.7 -4899435 L 681331.5 -4899558 L 679722.6 -4900519 L 679411.5 -4900630 L 679082.4 -4900618 L 678762.3 -4900563 L 678437.2 -4900568 L 678411.3 -4900176 L 678309.8 -4898610 L 675958 -4898676 L 673289 -4899318 L 672660.6 -4899794 L 672305.5 -4899901 L 671199.8 -4900858 L 671334.7 -4901203 L 671873.7 -4901723 L 672089.6 -4902032 L 672122.5 -4902405 L 671946.8 -4904253 L 670892.4 -4904619 L 671108 -4906038 L 672495 -4907228 L 672608.8 -4907952 L 672569.7 -4908316 L 672796.6 -4909009 L 672460.3 -4909658 L 672266.2 -4909734 L 671915.1 -4909561 L 671230 -4909182 L 670959.2 -4908121 L 667840.1 -4905782 L 665980.5 -4906129 L 665185.3 -4906125 L 664970.1 -4906437 L 663818 -4908703 L 663527 -4908449 L 661393.8 -4907560 L 661019.8 -4907427 L 660424.9 -4906907 L 660102.9 -4906769 L 659294 -4906114 L 658244.8 -4906132 L 657915.7 -4906096 L 656833.8 -4905392 L 656508.8 -4905195 L 654454.8 -4904220 L 653716 -4903429 L 653334 -4903380 L 651445.9 -4903043 L 651256.6 -4903572 L 650911.6 -4903577 L 649584.5 -4903252 L 649251.6 -4903077 L 647778.2 -4901455 L 647469.3 -4901269 L 645289 -4899449 L 644931.9 -4899488 L 644328.7 -4899868 L 644199.2 -4900935 L 644269 -4901286 L 644187.3 -4902708 L 643478.7 -4903935 L 643612.4 -4904563 L 643495.2 -4904869 L 643363.1 -4905218 L 643433.9 -4907788 L 643069.9 -4907741 L 641517.1 -4909213 L 640794 -4909242 L 640064.6 -4910066 L 639697.6 -4910082 L 636765.4 -4910158 L 636090.7 -4909483 L 633448.6 -4909428 L 631437.2 -4910236 L 631093.1 -4910391 L 631000.9 -4910881 L 630748.2 -4912437 L 630867 -4915193 L 631962 -4917702 L 632024.8 -4918091 L 631929.6 -4918686 L 631900.5 -4918986 L 632287.4 -4921882 L 632858.3 -4922304 L 633195.3 -4922486 L 633908.2 -4922750 L 634373 -4923346 L 634723.1 -4925974 L 634690 -4926371 L 634627.7 -4927161 L 633793.2 -4928506 L 633645.8 -4929678 L 634026.4 -4931215 L 634804.2 -4932106 L 634910.1 -4932478 L 635162.9 -4933208 L 634800.8 -4933344 L 633908.3 -4934493 L 634124.8 -4936369 L 634815.9 -4936443 L 634873.7 -4937503 L 634938.6 -4937858 L 635280.5 -4938497 L 636682.7 -4938826 L 637016.7 -4938968 L 637379.7 -4939063 L 637668.7 -4939303 L 637657.6 -4939647 L 637879.4 -4940654 L 637574.3 -4940813 L 638487.1 -4942672 L 638622.1 -4942997 L 638907 -4943993 L 639109 -4944288 L 640052 -4945340 L 640509.9 -4946691 L 640411.8 -4947029 L 640649.5 -4949376 L 640610.4 -4949767 L 639819.8 -4952373 L 639182.5 -4953362 L 639132.3 -4954916 L 639135.3 -4955251 L 638726 -4957067 L 639475.1 -4958319 L 638903.8 -4959239 L 638790.7 -4959596 L 638842.7 -4959860 L 639206.7 -4960444 L 639528.8 -4960630 L 640547.1 -4961064 L 641462.3 -4962193 L 641571.3 -4963298 L 641863.4 -4963529 L 641842.4 -4964198 L 642425.6 -4964519 L 642775.7 -4964610 L 643454.9 -4964832 L 643326.8 -4966252 L 643542.8 -4967290 L 644264 -4967461 L 644631.1 -4967518 L 645171.3 -4967993 L 645401.4 -4969820 L 645584.5 -4970150 L 646107.7 -4970691 L 646332.8 -4970968 L 646441.8 -4971663 L 645844.6 -4973681 L 645895.6 -4974070 L 646961 -4975197 L 647135.1 -4975957 L 647207.1 -4976313 L 648285.6 -4978198 L 648221.6 -4978523 L 647852.5 -4979071 L 647675.5 -4979381 L 647262.4 -4980364 L 646984.3 -4980613 L 646151 -4981357 L 645534.8 -4982714 L 645489.8 -4982895 L 645450.8 -4983286 L 645397.9 -4984469 L 644637.7 -4985368 L 644331.6 -4985614 L 644237.6 -4986358 L 644695.9 -4986996 L 644710 -4987746 L 644512.9 -4988032 L 644502.1 -4989356 L 644700.2 -4989653 L 645419.6 -4990444 L 645613.7 -4990737 L 645856.9 -4991392 L 645782.9 -4991747 L 645307.8 -4992278 L 643927.2 -4992722 L 643405.1 -4993211 L 643285.1 -4993841 L 643479.2 -4994454 L 643563.3 -4994840 L 643375.4 -4996005 L 643236.4 -4996360 L 643000.4 -4996661 L 642703.3 -4996911 L 642176.1 -4997470 L 641979.1 -4997786 L 641302.9 -4998673 L 641270 -4999410 L 641287.1 -4999650 L 641391.2 -4999997 L 643151.4 -5002247 L 643157.4 -5002456 L 643014.4 -5002718 L 642791.3 -5002919 L 642422.2 -5003005 L 641632 -5003758 L 641658.2 -5004509 L 641741.3 -5004875 L 641345.4 -5006265 L 641736.9 -5007847 L 641580.9 -5008197 L 641008 -5010024 L 640902 -5010401 L 640801.4 -5012355 L 641337 -5013824 L 641413.1 -5014101 L 641407.2 -5014674 L 641370.3 -5015009 L 641374.4 -5015346 L 641314.8 -5017028 L 641260.9 -5017356 L 640582.7 -5018086 L 641260.2 -5018481 L 644780.3 -5019368 L 645126.5 -5019482 L 645159.3 -5018708 L 645138.2 -5018323 L 646589 -5018204 L 648150.1 -5019133 L 648592.6 -5019704 L 650303.9 -5020882 L 650528.1 -5021146 L 651747 -5021747 L 652077.2 -5021835 L 652826.7 -5021943 L 654076.7 -5022739 L 654410 -5022935 L 655344.8 -5023567 L 656472.5 -5023446 L 656858.8 -5023475 L 657630.5 -5021302 L 657784.5 -5020950 L 658425.8 -5020727 L 658749 -5020844 L 660600.2 -5020727 L 660815.2 -5020401 L 661427 -5018746 L 661555 -5018418 L 661788.8 -5017333 L 662035.8 -5017056 L 662184.9 -5016905 L 663200.8 -5017424 L 664715.9 -5017642 L 665368.5 -5018045 L 665714 -5018723 L 666459.6 -5018796 L 666837.9 -5018860 L 667112 -5018663 L 666510.1 -5017228 L 665960.3 -5012965 L 667443.3 -5012985 L 668354.4 -5014238 L 669123.6 -5013195 L 670217.4 -5013412 L 671454.4 -5010720 L 672116.8 -5010364 L 672287.8 -5010026 L 670791.7 -5010000 L 669882.9 -5009406 L 669616.6 -5009143 L 669736.2 -5007757 L 669849.2 -5007405 L 670361.1 -5005957 L 671366.3 -5004431 L 671480.3 -5004065 L 671647.2 -5003313 L 671142.6 -5002298 L 671534.7 -5001636 L 671447.2 -5000126 L 671459 -4999505 L 671419.9 -4999193 L 669928.3 -4996940 L 669598 -4996730 L 669108.3 -4994978 L 667497.1 -4994391 L 667438 -4994031 L 667742.2 -4993828 L 668349.6 -4994235 L 669318 -4993151 L 669677.2 -4993081 L 670312.7 -4993449 L 670997.6 -4995131 L 673176.1 -4995251 L 673536.3 -4995157 L 674147.7 -4994878 L 674476.9 -4994810 L 674653 -4994702 L 674747 -4994518 L 675099.1 -4993856 L 675749.4 -4993493 L 676118.7 -4993420 L 676297.7 -4992731 L 677768.7 -4992625 L 677870.7 -4992270 L 678354 -4992154 L 678572.2 -4992330 L 678656.4 -4992683 L 679705.2 -4992847 L 679837.4 -4993186 L 681057.1 -4992617 L 680981 -4992274 L 681829.5 -4991890 L 682148.8 -4991916 L 682184.9 -4992286 L 682798.5 -4992696 L 683135.8 -4992850 L 683699.3 -4993077 L 684316.3 -4991486 L 684673.6 -4991448 L 686058.6 -4991154 L 687211.2 -4990305 L 687899.8 -4990467 L 688241.1 -4990597 L 687224.6 -4991748 L 687251.9 -4992429 L 687942.1 -4991535 L 689036.9 -4991348 L 690208.1 -4992298 L 690953.8 -4992478 L 691971.1 -4994076 L 692108.3 -4994436 L 692676.1 -4995261 L 692836.3 -4995555 L 693326.9 -4996156 L 694097.5 -4996121 L 695114.2 -4995529 L 695760.4 -4994537 L 694997.8 -4994665 L 694315.1 -4994338 L 693556.7 -4991733 L 693576.6 -4991343 L 694596.1 -4990252 L 694744.9 -4989212 L 695096.1 -4989084 L 694879.6 -4987998 L 695935.9 -4986068 L 695584.4 -4985417 L 694930.3 -4983215 L 694822.1 -4982847 L 695384.4 -4978376 L 695438.4 -4978005 L 695281.6 -4975240 L 694558.6 -4972984 L 694946.7 -4971863 L 694240.4 -4967576 L 694212.3 -4967181 L 695536.2 -4966861 L 695880.5 -4966910 L 695169.7 -4965206 L 694018.7 -4964287 L 694340.9 -4963618 L 695451.7 -4963436 L 695755.9 -4962788 L 701327.9 -4961221 L 701486.1 -4961912 L 700781.8 -4963274 L 701116.2 -4963773 L 703401.8 -4962335 L 703736 -4962139 L 704110.1 -4960624 L 705846.4 -4959762 L 707015.3 -4959598 L 707329.6 -4959526 L 707367.6 -4959203 L 707578.7 -4958590 L 708479.3 -4957269 L 708808.6 -4957161 L 708982.7 -4956610 L 709083.7 -4956339 L 710167.6 -4956071 L 710736.1 -4956458 L 712583.7 -4956292 L 713218.3 -4956518 L 713575.7 -4957069 L 714727.5 -4955559 L 716197.8 -4955310 L 717760.9 -4953617 L 719286.3 -4953841 L 721017.1 -4954688 L 721379.5 -4954836 L 721977 -4954747 L 722274.3 -4954670 L 723303.2 -4954258 L 723606.2 -4952822 L 722723.2 -4952116 L 722420.9 -4951885 L 722108.6 -4951676 L 721468.9 -4951287 L 720728.8 -4948866 L 720339.5 -4948835 L 719178.4 -4948922 L 717778.2 -4949568 L 717448.8 -4948505 L 715615 -4947220 L 712245.2 -4948206 L 710322.6 -4948260 L 709692.1 -4948701 L 709517.9 -4948438 L 708927.4 -4948216 L 708827.3 -4947850 L 709116.3 -4945240 L 709659.7 -4944716 L 709427.4 -4943658 L 708710.8 -4943556 L 708005.2 -4941948 L 707944.1 -4941019 L 707603.9 -4940923 L 707012.4 -4939343 L 706489 -4938939 L 706443 -4938749 L 706295.9 -4938390 L 705794.5 -4936129 L 707032.4 -4935317 L 707242.5 -4935009 L 708243.2 -4935218 L 709484.1 -4933893 L 709780.3 -4933682 L 711166.3 -4932046 L 711293.4 -4931711 L 710917.1 -4931707 L 710248.6 -4931390 L 708802.5 -4931651 L 708273.1 -4931153 L 708177 -4930778 L 707675.7 -4928561 L 706587 -4927510 L 706212.7 -4927582 L 703799 -4928650 L 703452.8 -4928491 L 703117.6 -4928375 L 702245 -4928969 L 701947.8 -4929207 L 699126.9 -4930160 L 698757.6 -4930205 L 696909.4 -4930058 L 696246 -4930375 L 695901.8 -4931003 L 695542.6 -4931029 L 694873.2 -4930766 L 694992.3 -4929699 L 695115.4 -4929438 L 695220.5 -4929073 L 695672.9 -4928052 L 695165.6 -4927488 L 695510 -4925661 L 695602.1 -4925286 L 698076.7 -4924268 L 698067.8 -4923395 L 697964.7 -4923089 L 697359.4 -4923152 L 697019.2 -4922465 L 696326.9 -4922228 L 693565.1 -4923544 L 693181.9 -4923489 L 691988.4 -4922520 L 692159.6 -4922170 L 693183.3 -4921100 L 693958.1 -4918903 L 694067.3 -4917749 L 693188.9 -4917062 L 693498.2 -4916381 L 693848.4 -4916262 L 694217.6 -4916251 L 695722.4 -4916240 L 696106.8 -4914838 L 696262 -4914491 L 697280.6 -4914397 L 698023.2 -4913253 L 698021.6 -4913254 z M 650315.7 -4914719 L 650255.8 -4914344 L 648813 -4913150 L 648505.2 -4912482 L 649268.3 -4912533 L 650263.7 -4911967 L 650580.8 -4911753 L 649560.2 -4910313 L 650274.8 -4909041 L 650336.1 -4908308 L 650205.2 -4907962 L 652397.3 -4908513 L 652774.4 -4908555 L 657735.9 -4907148 L 658019 -4906898 L 658376.3 -4909120 L 658766.1 -4909768 L 660024.1 -4910610 L 659736 -4910808 L 659655.7 -4911501 L 660619.5 -4912702 L 660858 -4914558 L 663097.5 -4915041 L 664132.5 -4916108 L 664418.5 -4916367 L 664548.5 -4916600 L 664443.3 -4917121 L 662592.8 -4916949 L 661385.2 -4917894 L 660252.8 -4918052 L 659808.3 -4919469 L 660139.3 -4919666 L 660197 -4920650 L 659812.9 -4920601 L 659208.9 -4920151 L 657776.2 -4921391 L 657415.1 -4921378 L 656342.6 -4922124 L 655482.7 -4921007 L 655161.6 -4920997 L 654867.6 -4920866 L 654622.6 -4920581 L 652238.4 -4919539 L 651607.7 -4918120 L 651568.3 -4916196 L 651418.4 -4915836 L 651154.4 -4915622 L 650339.5 -4915058 L 650315.7 -4914719 L 650315.7 -4914719 z " |
id="path617" /> |
<path |
d="M 390051.5 -5422097 L 389779.9 -5421861 L 389114.3 -5421652 L 388143.9 -5422018 L 387097.2 -5421766 L 386994.4 -5421393 L 386789.8 -5420654 L 386088 -5420349 L 386351.4 -5420062 L 386975.5 -5418651 L 387015.2 -5417545 L 387380.3 -5417548 L 387698.2 -5416989 L 387287.5 -5415261 L 387161.8 -5414927 L 386668.6 -5414426 L 386393.2 -5414286 L 386092 -5414220 L 385766.5 -5414025 L 384701.9 -5413832 L 384176.7 -5413305 L 383827.7 -5413357 L 382772.4 -5413305 L 382257.3 -5412840 L 382193.6 -5412522 L 381661.8 -5411720 L 381347.4 -5411546 L 379388.9 -5410088 L 379311.1 -5409740 L 379133.2 -5408355 L 379809.8 -5407107 L 379918.4 -5406906 L 380086 -5406685 L 380257.4 -5406363 L 380541.3 -5405325 L 380302.8 -5404636 L 379577.8 -5404708 L 379007.9 -5404333 L 378961.8 -5404294 L 378638.3 -5404107 L 377167.5 -5402454 L 376451 -5402293 L 375825.7 -5402698 L 375661.8 -5402789 L 375292.9 -5402863 L 374612.4 -5403183 L 373234.9 -5402648 L 372897.7 -5402586 L 372464.6 -5402080 L 372107.5 -5402084 L 371498.9 -5402342 L 371454.3 -5403029 L 370872 -5403428 L 370525.8 -5403390 L 369145 -5403201 L 369258.4 -5402888 L 369410.4 -5402393 L 369144.9 -5402192 L 368826.2 -5402400 L 366632.6 -5403868 L 364767.4 -5403528 L 364421.4 -5403557 L 363822.9 -5404379 L 364015 -5405374 L 363678.8 -5405302 L 361768.3 -5405813 L 361579.5 -5405478 L 361809.6 -5403579 L 361082.2 -5401055 L 360828.7 -5401319 L 359199.3 -5401866 L 359233.1 -5402230 L 358919.7 -5402067 L 358067.2 -5401477 L 357391.2 -5402556 L 357098.6 -5402319 L 355293.2 -5400487 L 355370 -5399404 L 355062.5 -5399219 L 354299.7 -5399924 L 354035 -5399647 L 353469.9 -5399222 L 351600.8 -5399015 L 351382.1 -5399175 L 351075.9 -5399599 L 350731.4 -5399409 L 349703.9 -5398861 L 349034.7 -5397929 L 346808.6 -5397287 L 346699.3 -5397641 L 345268.8 -5397623 L 344572.3 -5398489 L 343555.1 -5398088 L 343263.5 -5397849 L 342442.4 -5395047 L 341511 -5394512 L 339832.9 -5394310 L 339540.3 -5394068 L 338852.2 -5393161 L 338514.4 -5393304 L 337517.9 -5393727 L 336438.6 -5392825 L 336303.6 -5392836 L 335366.9 -5393644 L 335139.3 -5393887 L 335260.7 -5395527 L 335462.4 -5395825 L 335440 -5396116 L 335155.4 -5396359 L 334280.5 -5397057 L 332797 -5397084 L 332641.6 -5397424 L 332932.3 -5397692 L 333767.4 -5398521 L 334125.8 -5398672 L 334871.6 -5398890 L 335287 -5399966 L 336148.9 -5400719 L 335928.5 -5401045 L 334464.8 -5403349 L 334905.4 -5403997 L 334843.2 -5404408 L 334621.7 -5404704 L 333668.5 -5405265 L 333041.2 -5406182 L 332001.9 -5406256 L 331778.4 -5406550 L 331448.7 -5406747 L 331095.9 -5406901 L 330759.1 -5407059 L 330106.2 -5407211 L 327951.7 -5409248 L 327672 -5409456 L 327010.1 -5409621 L 326703.4 -5409814 L 325707.2 -5410808 L 325425.6 -5411039 L 324199.5 -5411671 L 324452.2 -5411953 L 326185 -5414233 L 325121.8 -5413899 L 324489.4 -5414288 L 324199.9 -5415000 L 324430.3 -5416477 L 323007 -5416175 L 322868.5 -5416426 L 322695.9 -5416654 L 322785.7 -5416985 L 323598.3 -5417551 L 323504 -5417879 L 323152.1 -5417976 L 322234 -5418545 L 321919.4 -5418345 L 320394.1 -5416734 L 320098.5 -5416503 L 317995.3 -5417248 L 317615.1 -5417237 L 316203.1 -5417083 L 314608.6 -5418057 L 313491.4 -5418176 L 313333.3 -5417286 L 312982.2 -5417327 L 312294.2 -5417490 L 312335.9 -5417794 L 312839.9 -5418556 L 311843.2 -5418006 L 311079.1 -5418137 L 310514.9 -5419465 L 308230.1 -5420888 L 308329 -5421254 L 308640.5 -5422718 L 308969.1 -5422909 L 309058 -5423296 L 310343.2 -5425281 L 311782.5 -5427253 L 311845.4 -5427601 L 311888.1 -5428304 L 311404.1 -5428813 L 311500.9 -5429151 L 311985.1 -5430408 L 312079.8 -5431094 L 312189.6 -5431420 L 312881.7 -5432160 L 313041.3 -5432809 L 311519.2 -5434310 L 310795.1 -5434422 L 310425 -5434438 L 308644.5 -5434963 L 307981.3 -5436667 L 307663.7 -5436464 L 307390.2 -5436717 L 308406 -5437673 L 308341.7 -5438366 L 308333.6 -5438728 L 309161.5 -5439335 L 310873.8 -5439163 L 311149.4 -5438927 L 311235.3 -5440105 L 311144.2 -5440491 L 310106.1 -5440647 L 310805.1 -5441341 L 310720.8 -5441650 L 310053.6 -5441695 L 309978.4 -5442027 L 310643.3 -5443906 L 310760.2 -5444234 L 310786.6 -5444378 L 310708.4 -5445096 L 311771.4 -5445310 L 312333.9 -5446232 L 312518.8 -5446553 L 312171 -5446698 L 312123.9 -5447072 L 311133.5 -5447061 L 310666.2 -5447430 L 310285.1 -5447444 L 309279.8 -5447886 L 309171 -5447988 L 309314.9 -5448309 L 309712.1 -5450698 L 309551.8 -5450986 L 309480.2 -5451961 L 309609.2 -5452330 L 309950.2 -5453831 L 309588.6 -5454424 L 309548.5 -5454787 L 309197.6 -5454893 L 308051.4 -5454996 L 306278.5 -5456472 L 305957.9 -5456693 L 304878.6 -5459052 L 305247 -5459139 L 306338.6 -5459188 L 309017.4 -5460233 L 309386.6 -5460235 L 309352.1 -5462345 L 309529 -5462653 L 309286.5 -5462883 L 308264.4 -5463739 L 307937.8 -5463916 L 306550.5 -5463620 L 305042.7 -5462030 L 304094.7 -5462560 L 304179.7 -5462911 L 305125.9 -5463985 L 304720.2 -5465669 L 303756.6 -5465968 L 303433.7 -5466061 L 303887.7 -5466355 L 304099.2 -5466525 L 305393 -5468855 L 304332.1 -5470896 L 304039.1 -5472014 L 303926.1 -5472384 L 304332.1 -5473785 L 304524 -5474100 L 304487 -5474480 L 303798.7 -5476619 L 303835.4 -5478605 L 307394.3 -5478914 L 308746.5 -5479291 L 309562.4 -5479717 L 311417.3 -5480197 L 313974.6 -5481325 L 316462.3 -5482806 L 317556.9 -5483454 L 317256.7 -5483886 L 318253 -5484484 L 319040.3 -5484532 L 319423.1 -5484434 L 320343.8 -5483890 L 321216.9 -5482754 L 321426.1 -5482463 L 321489.8 -5482353 L 321657.2 -5482139 L 321820.6 -5481923 L 322826.1 -5480564 L 323025.4 -5480290 L 324460.3 -5478668 L 325410.1 -5478153 L 325760 -5478064 L 326861.5 -5478144 L 328648.5 -5479448 L 328943.2 -5479671 L 329124.3 -5479336 L 328019.9 -5477824 L 327924.9 -5477452 L 328651.4 -5477559 L 328938.7 -5476891 L 329671.8 -5476849 L 329879.2 -5476228 L 329344.7 -5475718 L 329563.1 -5475456 L 329880.8 -5475333 L 330498 -5474966 L 330859.4 -5475078 L 331984.2 -5475288 L 333055.5 -5474924 L 333602.7 -5475341 L 334017.6 -5475651 L 334118 -5475790 L 335761.4 -5475430 L 336181 -5475985 L 337928 -5476581 L 339041.7 -5475639 L 339357.3 -5475855 L 340491.8 -5476349 L 340369.7 -5477061 L 340314.6 -5477417 L 340514.6 -5477405 L 341318.9 -5474447 L 341577.2 -5474157 L 342229.3 -5473751 L 342592 -5473622 L 344297.3 -5473604 L 344614.8 -5473755 L 344846.1 -5473466 L 345541.9 -5473712 L 345896.3 -5473820 L 345744.4 -5473105 L 346264.1 -5472568 L 346261.1 -5471813 L 345967.4 -5471571 L 345859.4 -5471206 L 346518.7 -5471269 L 346855.3 -5471107 L 347075.1 -5471781 L 348380.1 -5472451 L 348740.4 -5472538 L 348675.6 -5471865 L 348689.7 -5471527 L 348951.4 -5469867 L 349105.6 -5469565 L 348914.9 -5468915 L 348996 -5468571 L 349253.7 -5468435 L 349635.6 -5467995 L 349388.8 -5467703 L 348730.7 -5467318 L 346243.6 -5468247 L 345231.3 -5467829 L 344694.2 -5468213 L 344339 -5468176 L 343482.9 -5466667 L 343196.4 -5466095 L 344522.4 -5465973 L 344633.6 -5465646 L 345003.9 -5465724 L 346667.1 -5464896 L 346698.4 -5463446 L 347136 -5462845 L 347833.6 -5463019 L 347770.5 -5463770 L 348714.2 -5464354 L 349059.7 -5464505 L 349923.7 -5465214 L 350868.4 -5462666 L 351530.6 -5462293 L 351534.7 -5461926 L 351658.2 -5461332 L 351152.1 -5460932 L 350897.5 -5460725 L 351106 -5460108 L 351113.2 -5459768 L 352215.6 -5460656 L 352935.1 -5459578 L 353276.9 -5459474 L 353546.2 -5458786 L 354274 -5458643 L 353875.6 -5458114 L 354207.2 -5457525 L 356707.8 -5458369 L 357091.7 -5458309 L 357109.3 -5458129 L 358068.6 -5458592 L 358051.7 -5458236 L 358197.4 -5458514 L 358736.8 -5458222 L 358929.4 -5458470 L 358168.3 -5459703 L 359137.7 -5460611 L 357939.3 -5462532 L 359342.2 -5463208 L 359659.8 -5463433 L 361007.9 -5463787 L 361358.9 -5463774 L 363517 -5463689 L 363875.1 -5463721 L 364195.1 -5463713 L 364278.7 -5465167 L 364452.5 -5465488 L 365042.4 -5466224 L 365104.2 -5466549 L 365799.2 -5466507 L 366198.7 -5467078 L 366654.3 -5466884 L 366785.5 -5466559 L 367502.3 -5467261 L 367834.7 -5467410 L 367973.1 -5466764 L 368023.1 -5466744 L 369133.4 -5466828 L 369035.1 -5468308 L 369153 -5468661 L 369453.1 -5468280 L 369810.2 -5468315 L 369995.5 -5468013 L 372098.1 -5467746 L 372451 -5467711 L 374344.1 -5467650 L 374368 -5468415 L 375109.1 -5469223 L 375409.5 -5469362 L 375411.3 -5470473 L 375658 -5470751 L 375459.3 -5471697 L 375466.1 -5472029 L 375935.3 -5472480 L 376309.3 -5472871 L 377077.9 -5473091 L 377654.9 -5474671 L 377377 -5476318 L 377283.8 -5476641 L 378685.5 -5476878 L 379345.9 -5476618 L 379194.8 -5477361 L 379331.7 -5477724 L 380147.8 -5477361 L 380236.5 -5477656 L 379829.7 -5478537 L 381625 -5479036 L 382945.4 -5480365 L 383164.2 -5480297 L 383354.9 -5480171 L 382729.6 -5478883 L 384778.2 -5479473 L 386523 -5479368 L 387514.6 -5478793 L 389424.9 -5478896 L 390510.8 -5478449 L 391018.3 -5477859 L 391256.5 -5477549 L 393125.1 -5477791 L 393681.7 -5476812 L 393796.8 -5476445 L 394770.6 -5477580 L 396649.4 -5477501 L 396588.6 -5477195 L 397049.6 -5476781 L 397275.1 -5476566 L 398049.2 -5474978 L 398815.3 -5474211 L 400015.3 -5474601 L 400351.3 -5474598 L 400337.4 -5474249 L 401529.8 -5473563 L 401763.2 -5473304 L 401973.2 -5473282 L 402571.3 -5472923 L 403412 -5473619 L 404146.9 -5473556 L 404258 -5473203 L 404954.5 -5472589 L 405119.9 -5472319 L 405692 -5473587 L 406260.3 -5473707 L 406575.7 -5473892 L 406829.2 -5473273 L 408149.9 -5473562 L 408488.7 -5473466 L 408194.1 -5473231 L 406989.9 -5472332 L 408613 -5470691 L 409110.5 -5469647 L 409789.6 -5469278 L 409843.8 -5468953 L 409642.6 -5468032 L 410790 -5465640 L 410621.2 -5464890 L 410526.3 -5464518 L 410343.5 -5464192 L 410823.6 -5461666 L 410589 -5460966 L 410799.4 -5460686 L 411478.8 -5460863 L 412339.2 -5460138 L 412133.6 -5459031 L 412751.8 -5458682 L 411817.9 -5455708 L 411538.5 -5455962 L 410106.3 -5456343 L 410198.2 -5456721 L 409255.9 -5458356 L 408947.4 -5458140 L 407829.7 -5458308 L 407236.6 -5457842 L 406109.4 -5457798 L 405853.8 -5457567 L 405827.2 -5456879 L 405339 -5456394 L 405218.2 -5456047 L 405333.6 -5455338 L 405269.5 -5454411 L 405512.1 -5454211 L 405396.2 -5453841 L 403424.9 -5452021 L 403185.2 -5451295 L 403417.5 -5450982 L 403024 -5449898 L 402943.1 -5449517 L 403032.9 -5448545 L 402759.3 -5448311 L 402621.5 -5447978 L 402824.9 -5447253 L 402224.7 -5445880 L 402427 -5445558 L 402305.6 -5445399 L 401592.9 -5444217 L 401769.1 -5442948 L 401539.7 -5442791 L 401183.7 -5442363 L 401062.8 -5441987 L 399601.6 -5440175 L 399080.5 -5439278 L 399009.3 -5438277 L 399288.9 -5438061 L 399006.4 -5437855 L 398209.8 -5437170 L 398006.5 -5437486 L 397514.3 -5437869 L 397165.9 -5437729 L 396833.6 -5437617 L 395538.3 -5437098 L 395311.6 -5436805 L 394688.6 -5436401 L 393659 -5436663 L 393268.1 -5436737 L 391772.7 -5436203 L 391703.4 -5436537 L 391482.6 -5437522 L 391025.6 -5438016 L 391222 -5437299 L 390457.3 -5435224 L 390072.1 -5435182 L 389238.3 -5434432 L 388496.7 -5434654 L 387422 -5435760 L 386350.4 -5434683 L 386635.9 -5434436 L 386397.3 -5433719 L 387008.3 -5432769 L 387040.6 -5432019 L 387050.8 -5431641 L 387786.4 -5430960 L 388062 -5430767 L 388437.1 -5430334 L 388201.8 -5429770 L 388497.5 -5429602 L 388656.9 -5429301 L 388632.1 -5428932 L 387933.3 -5427709 L 387248.7 -5427472 L 387746.1 -5426227 L 387887.4 -5425896 L 388437.5 -5426378 L 389580.7 -5426367 L 390617.9 -5426838 L 391014.7 -5426245 L 391372.7 -5426222 L 391092.1 -5425978 L 389642.5 -5424889 L 390043.5 -5423481 L 390773.6 -5423476 L 390593.8 -5423131 L 390050.5 -5422097 L 390051.5 -5422097 z " |
id="path618" /> |
<path |
d="M 338959.4 -5330033 L 339124 -5330356 L 340051.4 -5332317 L 339736.9 -5333353 L 344497.2 -5333545 L 344685.8 -5333873 L 344176.4 -5334396 L 344325.1 -5334776 L 344178.6 -5335125 L 342364 -5336483 L 340608.2 -5337066 L 339112.4 -5336980 L 338820.7 -5337221 L 338568.9 -5337387 L 338191.5 -5337842 L 336994.1 -5339175 L 335986.3 -5339586 L 336016.4 -5340285 L 336701.2 -5340600 L 336714.4 -5341354 L 338433.3 -5342100 L 337927.3 -5343471 L 335469.4 -5347757 L 335793.2 -5348170 L 335402.2 -5348846 L 336042.9 -5350266 L 336670.9 -5350702 L 337027.3 -5350863 L 336322.4 -5351073 L 334955.9 -5352298 L 333910.1 -5352091 L 333597.6 -5351894 L 333372 -5352193 L 334334.1 -5353765 L 334328.4 -5354517 L 335032.2 -5355396 L 335261.8 -5355694 L 335590.4 -5356546 L 335785.6 -5356640 L 337714.8 -5357418 L 338063.1 -5357478 L 338529.4 -5356951 L 338740 -5356668 L 339809.9 -5357482 L 339675.4 -5357822 L 340691 -5357371 L 341839 -5358244 L 342924.3 -5358157 L 343760.8 -5359371 L 343908.5 -5359710 L 344515.1 -5359885 L 344717.7 -5359599 L 345857.5 -5360950 L 346181.9 -5361119 L 346422.3 -5361834 L 347854 -5363027 L 347676.2 -5364865 L 349794.6 -5366826 L 350042.2 -5367103 L 349896.8 -5367464 L 349116.5 -5367483 L 348500.1 -5367925 L 347439.7 -5369552 L 347251.7 -5370701 L 347212.2 -5370987 L 347145.7 -5371267 L 348442.1 -5371750 L 348652.1 -5372782 L 348653.8 -5373135 L 348351.9 -5373228 L 347649.8 -5373834 L 348636.4 -5374474 L 349534 -5376212 L 349661.8 -5376585 L 349295.8 -5376634 L 347043.2 -5377797 L 346488.8 -5378244 L 347479.4 -5379393 L 346670.5 -5380646 L 346346.3 -5380621 L 345545.1 -5381175 L 345221.4 -5381389 L 344291.4 -5382064 L 342405.2 -5382352 L 341118.4 -5383721 L 340942.4 -5386297 L 339547.2 -5386477 L 339207.8 -5386328 L 338985.8 -5387406 L 339677.8 -5388793 L 339978.4 -5389040 L 339326.6 -5389270 L 339295.7 -5390319 L 339432.1 -5390975 L 339158.5 -5391237 L 338473.8 -5392512 L 338852.3 -5393161 L 339540.4 -5394068 L 339833 -5394310 L 341511.1 -5394511 L 342442.5 -5395046 L 343263.6 -5397849 L 343555.2 -5398088 L 344572.4 -5398488 L 345268.9 -5397623 L 346699.4 -5397641 L 346808.7 -5397287 L 349034.8 -5397929 L 349704 -5398861 L 350731.5 -5399409 L 351076 -5399599 L 351382.2 -5399174 L 351600.9 -5399014 L 353470 -5399222 L 354035.1 -5399647 L 354299.8 -5399924 L 355062.6 -5399219 L 355370.1 -5399404 L 355293.3 -5400487 L 357098.7 -5402319 L 357391.3 -5402556 L 358067.3 -5401476 L 358919.8 -5402067 L 359233.2 -5402230 L 359199.4 -5401865 L 360828.8 -5401318 L 361082.3 -5401055 L 361809.7 -5403579 L 361579.6 -5405478 L 361768.4 -5405812 L 363678.9 -5405301 L 364015.1 -5405374 L 363823 -5404378 L 364421.5 -5403557 L 364767.5 -5403528 L 366632.7 -5403867 L 368826.3 -5402399 L 369145 -5402191 L 369410.5 -5402392 L 369258.5 -5402888 L 369145.1 -5403201 L 370525.9 -5403389 L 370872.1 -5403428 L 371454.4 -5403028 L 371499 -5402342 L 372107.6 -5402084 L 372464.7 -5402079 L 372897.8 -5402585 L 373235 -5402648 L 374612.5 -5403183 L 375293 -5402863 L 375661.9 -5402789 L 375825.8 -5402698 L 376451.1 -5402292 L 377167.6 -5402454 L 378638.4 -5404107 L 378961.9 -5404294 L 379008 -5404333 L 379577.9 -5404708 L 380302.9 -5404636 L 380541.4 -5405325 L 380257.5 -5406362 L 380086.1 -5406685 L 379918.5 -5406906 L 379809.9 -5407107 L 379133.3 -5408355 L 379311.2 -5409739 L 379389 -5410088 L 381347.5 -5411546 L 381661.9 -5411720 L 382193.7 -5412522 L 382257.4 -5412840 L 382772.5 -5413304 L 383827.8 -5413357 L 384176.8 -5413305 L 384702 -5413832 L 385766.6 -5414025 L 386092.1 -5414220 L 386393.3 -5414286 L 386668.7 -5414425 L 387161.9 -5414927 L 387287.6 -5415261 L 387698.3 -5416989 L 387380.4 -5417548 L 387015.3 -5417544 L 386975.6 -5418650 L 386351.5 -5420061 L 386088.1 -5420348 L 386789.9 -5420654 L 386994.5 -5421393 L 387097.3 -5421766 L 388144 -5422017 L 389114.4 -5421651 L 389780 -5421861 L 390051.6 -5422097 L 390071.6 -5422097 L 390766.9 -5421243 L 390657.7 -5420210 L 390915.2 -5419939 L 391584 -5420269 L 392697.4 -5419892 L 392856.7 -5419532 L 392933.1 -5419226 L 393119 -5418670 L 392683 -5418222 L 394128.6 -5416490 L 394495.5 -5416402 L 394268.1 -5415739 L 393170.1 -5414402 L 393790.6 -5413645 L 394076.3 -5413474 L 394161 -5413794 L 394798.8 -5413639 L 395046.4 -5413421 L 395828 -5412685 L 395383.9 -5411238 L 395735.9 -5411215 L 396067.7 -5411097 L 396662.9 -5410634 L 396630.1 -5410252 L 395690.6 -5409612 L 396293.9 -5408215 L 395715.3 -5407512 L 395463.8 -5407290 L 395212.4 -5404655 L 395984.9 -5403355 L 395628.5 -5402689 L 395764.6 -5402213 L 397252.3 -5401884 L 398678 -5400574 L 398493 -5399589 L 398303.1 -5399131 L 397918.9 -5399060 L 396028.6 -5396598 L 396378.9 -5396195 L 395322 -5395334 L 395556.5 -5395067 L 395415.8 -5394737 L 397201.7 -5393943 L 397541.6 -5393855 L 397331.2 -5393147 L 397146.5 -5392824 L 396787.7 -5391419 L 396854 -5391046 L 397204.3 -5390653 L 398302.5 -5389599 L 399811 -5389681 L 399622.6 -5388972 L 400070.6 -5388384 L 400400.3 -5388207 L 400240 -5387558 L 400772.2 -5387084 L 400796.8 -5386356 L 401237.8 -5385777 L 401438.3 -5385473 L 402572.7 -5386048 L 403206.4 -5385804 L 402826.5 -5385401 L 403011.1 -5385156 L 403271.6 -5385397 L 404992.9 -5385351 L 405221.7 -5384707 L 404195.5 -5382586 L 404006.8 -5382237 L 404310.5 -5382029 L 404528.5 -5381452 L 405821.7 -5380855 L 407127.2 -5380974 L 407416.7 -5381185 L 408372 -5380684 L 408606.1 -5379628 L 409411.9 -5378887 L 409564.3 -5378548 L 409900.5 -5378603 L 410235.7 -5378662 L 409376 -5375679 L 409389.2 -5374130 L 410283.7 -5372066 L 410072.1 -5371739 L 410547.3 -5371201 L 410774.8 -5370918 L 410528.2 -5370637 L 411244.4 -5368953 L 411604.3 -5368857 L 413466 -5369004 L 413747.8 -5368312 L 413889.2 -5367964 L 414476.1 -5366688 L 415191.2 -5366631 L 415488.9 -5366432 L 416465.3 -5365954 L 416839.5 -5365991 L 417184.4 -5365913 L 418693.8 -5365921 L 419120 -5366544 L 419842.5 -5366757 L 420027.4 -5367830 L 420499.1 -5367617 L 420647.7 -5367391 L 420773.1 -5366481 L 421196.4 -5366013 L 421533.4 -5365964 L 421110.2 -5365351 L 421214.7 -5363874 L 420227.7 -5362840 L 420511.6 -5362710 L 420548.1 -5361857 L 422571.8 -5361964 L 422902.7 -5361869 L 423842.4 -5361569 L 424005.9 -5361281 L 423335.8 -5359562 L 423196.2 -5359207 L 423953.1 -5359054 L 424446.8 -5357637 L 424697.4 -5357341 L 423816.9 -5356582 L 423418.6 -5354710 L 424268.6 -5353401 L 423760.6 -5352851 L 423864.9 -5351814 L 422522.6 -5351240 L 422815.9 -5350150 L 422913.3 -5349786 L 423619.4 -5349739 L 424016.1 -5348900 L 424719.1 -5348798 L 425072.1 -5348751 L 424582.7 -5346769 L 424419.2 -5346496 L 424090.2 -5345963 L 423825.8 -5345732 L 422931.7 -5345205 L 422629 -5344210 L 422859.7 -5343339 L 422949.2 -5343048 L 422783.6 -5342724 L 422630.9 -5341666 L 423624.1 -5339126 L 423198 -5338514 L 422135.8 -5339167 L 421817.6 -5338482 L 423065.8 -5337111 L 423111.2 -5336714 L 423138 -5335929 L 422822.2 -5336115 L 421756.3 -5336343 L 420474.1 -5335775 L 419912.7 -5336236 L 419343.9 -5335803 L 419117.4 -5335536 L 418463 -5334759 L 418113.9 -5334768 L 418611.7 -5333254 L 419367.9 -5333234 L 418759.8 -5331324 L 418404.9 -5331469 L 417778.2 -5331162 L 417014.2 -5328728 L 416853.7 -5328412 L 416399.8 -5327896 L 415149 -5327599 L 415162.4 -5327220 L 415108.2 -5326468 L 413296.1 -5326745 L 413129 -5326025 L 412769 -5326089 L 410509.8 -5327000 L 410298.9 -5326436 L 410097.8 -5325724 L 408648 -5325465 L 408150 -5324903 L 407820.2 -5325101 L 406444.8 -5324454 L 404963.9 -5324823 L 403484.2 -5324630 L 403266.6 -5324939 L 402051.6 -5325830 L 401864.1 -5325563 L 401113.3 -5324498 L 400462.4 -5324663 L 399896.6 -5325597 L 397172.5 -5324713 L 396974 -5324396 L 397118.5 -5324050 L 396907.3 -5322667 L 396350.5 -5322213 L 395260 -5322076 L 394681.9 -5320751 L 394314.8 -5320732 L 394184.3 -5321069 L 392794.4 -5321430 L 391241.3 -5322350 L 390847.2 -5321706 L 391428.7 -5321229 L 390875 -5320848 L 389772.1 -5321114 L 388872.9 -5320462 L 389346.4 -5318660 L 389252.4 -5317312 L 389224.7 -5315457 L 388560.8 -5315649 L 387266 -5316062 L 387051.4 -5316367 L 384475.7 -5318454 L 383419.9 -5318830 L 382757.2 -5318497 L 382938.4 -5317898 L 383212.2 -5315670 L 383027.1 -5314930 L 382656.8 -5314789 L 380771.5 -5314319 L 379233.7 -5315469 L 377955 -5312500 L 376463.1 -5313606 L 375590.9 -5312995 L 373372.6 -5312595 L 373177 -5312893 L 372733.7 -5314210 L 370169.1 -5313676 L 369825.9 -5314313 L 369719.4 -5314683 L 368912.2 -5315450 L 368524 -5315430 L 367014.1 -5315165 L 365692.6 -5314416 L 364677.8 -5314809 L 365012.2 -5314989 L 365322.6 -5315209 L 364474.3 -5317998 L 363473.7 -5318533 L 363135.8 -5318706 L 363180.3 -5319065 L 362593.4 -5319961 L 363006.9 -5320883 L 362751.2 -5321146 L 361285.8 -5321201 L 361086.1 -5321469 L 360507.4 -5321803 L 360192.4 -5321868 L 359544.1 -5322500 L 359362.5 -5322813 L 359253.1 -5323888 L 359072.5 -5324229 L 358615.3 -5324851 L 359108.8 -5327044 L 358721.7 -5327074 L 356054.1 -5326661 L 355570.5 -5327664 L 353252.7 -5327736 L 352917.9 -5327943 L 351422.8 -5327605 L 350417.3 -5328201 L 350359 -5329298 L 353807.2 -5331147 L 354338.3 -5331704 L 353821.8 -5332762 L 353069.9 -5332979 L 351528.2 -5332894 L 350495 -5332360 L 347427.4 -5329523 L 346699.7 -5329255 L 346722.2 -5329587 L 346641.1 -5330866 L 346272 -5330868 L 345536.6 -5330820 L 344327.9 -5330011 L 342506.9 -5329848 L 342130.9 -5329961 L 341249.5 -5330572 L 338959.7 -5330033 L 338959.4 -5330033 z " |
id="path619" /> |
<path |
d="M 639143.4 -4865473 L 639211.7 -4865168 L 638898.2 -4864650 L 637952.3 -4863468 L 635976.5 -4862378 L 636352.4 -4862431 L 636729.3 -4862482 L 636543.6 -4862153 L 635540.7 -4861030 L 633490.9 -4860073 L 633149.5 -4859402 L 633067.2 -4859757 L 631487.2 -4859025 L 631931 -4858003 L 631680.7 -4857313 L 633142.3 -4857398 L 633548.7 -4856811 L 633414 -4856460 L 632392.6 -4855983 L 631671.5 -4855119 L 632650.6 -4852574 L 632578.8 -4850209 L 632376.6 -4849450 L 630759.1 -4847215 L 630654.5 -4846834 L 630587.9 -4846449 L 629431.5 -4843145 L 629553.7 -4841978 L 630690.3 -4839095 L 628383.2 -4838906 L 626801.5 -4840020 L 625251.7 -4840253 L 623483.5 -4841063 L 622444.4 -4840538 L 619726.7 -4840253 L 619377.1 -4840073 L 618608.8 -4838721 L 618709.5 -4837180 L 616647.5 -4836177 L 614764.3 -4831876 L 614896.1 -4831128 L 615727.7 -4830293 L 616495.5 -4830189 L 617956.2 -4830728 L 618553.5 -4830238 L 618552.4 -4829484 L 616917.7 -4827335 L 616558.1 -4827174 L 616168.3 -4827170 L 615024.6 -4827382 L 613419.6 -4826335 L 613845.5 -4825406 L 613443.5 -4824767 L 613096.9 -4824598 L 611942.5 -4824617 L 610510.8 -4823348 L 609009 -4823066 L 607328.6 -4821763 L 605955.8 -4822941 L 606447.8 -4823500 L 606120.2 -4824101 L 605800.7 -4823886 L 605403.2 -4822909 L 606348.4 -4820843 L 604191.7 -4819279 L 600273.1 -4817797 L 599720.1 -4817301 L 599890.4 -4816954 L 599292.7 -4815526 L 599201.7 -4813557 L 597843.5 -4813693 L 597338.2 -4813791 L 595373.7 -4814170 L 594510.8 -4814649 L 592940.2 -4815059 L 591901 -4815776 L 590890.8 -4816981 L 590479.5 -4818321 L 590500.9 -4818886 L 590825.7 -4819479 L 591589.3 -4819758 L 591851.9 -4819681 L 591968.9 -4820050 L 591233.9 -4822355 L 590805.4 -4822800 L 590581.1 -4823033 L 589574.5 -4823677 L 588733.3 -4823910 L 589165.2 -4825086 L 588968.9 -4825410 L 587095.6 -4827269 L 586383.1 -4827285 L 586419 -4827329 L 586765.6 -4827480 L 587476 -4827560 L 588424.2 -4826945 L 590274.5 -4827314 L 592486.5 -4827037 L 592488 -4827427 L 592419 -4828206 L 594042.8 -4829863 L 595830.3 -4833340 L 595885.9 -4834438 L 593383.2 -4838663 L 593433.8 -4838963 L 593452.3 -4839313 L 593246.9 -4840617 L 592554.4 -4841412 L 592364.2 -4841712 L 591811.6 -4843336 L 591711.3 -4843673 L 590866.1 -4844230 L 589990 -4843828 L 589317.3 -4843880 L 589113.1 -4844156 L 588462.4 -4845082 L 588094.5 -4845186 L 587795.4 -4845397 L 587416 -4846753 L 586825.8 -4847180 L 585495 -4846804 L 585303.7 -4847115 L 584885.3 -4847663 L 584232.4 -4847872 L 584244.9 -4848286 L 584324.9 -4849070 L 584050.7 -4849346 L 582565.1 -4850586 L 582330.9 -4850875 L 580115.8 -4852121 L 579659.5 -4851766 L 578319.2 -4850968 L 577962.6 -4850808 L 577094.7 -4851134 L 576811.7 -4851300 L 576954.3 -4852453 L 577912.3 -4853664 L 577860.1 -4854765 L 578317.1 -4855387 L 576596 -4855527 L 576555.2 -4856225 L 576650.7 -4856568 L 575294.6 -4856537 L 574955.8 -4856555 L 574618.9 -4856626 L 573759.9 -4857118 L 573313.9 -4858172 L 573338.6 -4859319 L 573441.1 -4859688 L 572974.7 -4860258 L 571814.5 -4859285 L 568764.7 -4859047 L 567684.4 -4858138 L 566623.1 -4858130 L 566332.6 -4857879 L 566098.4 -4858156 L 565645 -4858721 L 564282.3 -4859206 L 563791 -4860558 L 565475.2 -4862920 L 565720.3 -4863604 L 566056.3 -4864274 L 565634.6 -4866016 L 565392.4 -4866304 L 563403.7 -4866268 L 562712.7 -4867543 L 562689.5 -4868627 L 562717.1 -4868990 L 558205.5 -4869366 L 557104.4 -4868278 L 555677.7 -4867959 L 554485.4 -4867217 L 554899.6 -4865920 L 554651.8 -4865868 L 554430.8 -4865993 L 553871.3 -4865074 L 554045 -4864375 L 553639 -4862946 L 553125.7 -4862643 L 552759.9 -4862718 L 551342.7 -4862858 L 551392 -4861721 L 550808.9 -4861331 L 550759.8 -4863104 L 549635.4 -4863323 L 549435.9 -4863005 L 547940.6 -4860911 L 547810.6 -4860192 L 546412.3 -4858905 L 546085.4 -4858209 L 545936.5 -4857459 L 547794.7 -4856201 L 547766.2 -4855831 L 546348.8 -4855436 L 546119.4 -4855143 L 545753.5 -4855290 L 544717.8 -4856438 L 543687.1 -4856025 L 541936.5 -4856827 L 541499 -4857480 L 541631.9 -4859795 L 541400.7 -4860085 L 540310.5 -4860960 L 539429 -4860331 L 539062.2 -4860387 L 538299.9 -4860288 L 536610.1 -4858160 L 535509.4 -4857873 L 534555.1 -4857211 L 534203.2 -4857371 L 533457.7 -4858242 L 534211.9 -4858396 L 534685.6 -4859856 L 534574.7 -4861363 L 533614.9 -4862572 L 531830.9 -4862939 L 531247 -4862497 L 530192.7 -4862670 L 529283.9 -4863123 L 528474.3 -4862565 L 528374.9 -4862896 L 527843.5 -4865090 L 527803 -4865468 L 528057.9 -4866181 L 528395.7 -4866864 L 529728.7 -4867589 L 529857.2 -4868724 L 532103 -4869041 L 532163.5 -4869429 L 533123.1 -4871558 L 535121.2 -4872686 L 535701.1 -4874932 L 535600.1 -4875012 L 535202.2 -4875171 L 534883.2 -4875397 L 533041.9 -4876848 L 531582.4 -4877382 L 530514.9 -4878500 L 529419.1 -4878227 L 529001.7 -4878849 L 527732.7 -4877960 L 527422.7 -4878196 L 527155.6 -4878442 L 526587.5 -4878894 L 526179.7 -4880642 L 526023.5 -4880887 L 525888.3 -4881144 L 525419.6 -4881231 L 525049 -4881138 L 524014.1 -4880041 L 523253.6 -4880076 L 521548.6 -4882066 L 520636.6 -4882636 L 522885.3 -4883992 L 524416.1 -4884012 L 525085.2 -4884395 L 525465.8 -4884459 L 525470.4 -4884794 L 525434.5 -4886467 L 525248.3 -4886762 L 525170.6 -4887457 L 525956.2 -4888152 L 526120.7 -4888493 L 526240.4 -4889620 L 528011.7 -4890894 L 529409.2 -4891345 L 530918.4 -4891124 L 531275.9 -4890461 L 533805.8 -4888921 L 534354.3 -4887159 L 534631.4 -4886895 L 534986.3 -4886729 L 538026.7 -4886240 L 539955.2 -4886470 L 542447.2 -4885837 L 543249.5 -4885110 L 544780.4 -4886171 L 545143.3 -4886080 L 545514.2 -4885993 L 548043.2 -4885391 L 550171.2 -4886002 L 550395.2 -4887881 L 551294 -4888573 L 549922.6 -4889794 L 550506.1 -4892023 L 551081.3 -4892534 L 551455 -4892633 L 552275.2 -4891908 L 552913.5 -4892299 L 553164.7 -4893007 L 553903.4 -4892890 L 554280.2 -4892863 L 554233.6 -4892500 L 554883.1 -4891614 L 556108.1 -4890858 L 557181.5 -4890899 L 557544.4 -4890848 L 558305.7 -4890087 L 559574.5 -4889525 L 559928.4 -4889448 L 560277.2 -4889428 L 560490.7 -4888786 L 561029.7 -4888484 L 561360.6 -4888374 L 561698.6 -4888222 L 563294.1 -4886818 L 564399.4 -4886959 L 564862.8 -4887320 L 565147.6 -4887399 L 565799.8 -4887850 L 566090.5 -4887953 L 569349.7 -4887028 L 571051 -4889103 L 571381.7 -4889269 L 572095.4 -4889193 L 572349 -4889462 L 572415 -4890558 L 573366.6 -4890553 L 573666.3 -4890705 L 573624.4 -4892905 L 577406.3 -4891088 L 577515.7 -4891699 L 577052.7 -4891988 L 576742.9 -4891888 L 576154 -4893270 L 576177.4 -4894020 L 574519.6 -4894639 L 575109.9 -4896426 L 575185.6 -4896795 L 575477.4 -4896898 L 575084.4 -4899574 L 575735.4 -4900533 L 576707 -4900577 L 577041.8 -4900641 L 577317.9 -4901680 L 576869.6 -4902235 L 576008.4 -4902912 L 575303.8 -4902732 L 575074.1 -4902447 L 574067.8 -4903383 L 574328.2 -4904027 L 574512.9 -4904325 L 574444.6 -4904710 L 573929 -4905750 L 573285.9 -4906191 L 573113.6 -4906677 L 574759.9 -4908108 L 575157.3 -4908772 L 575329 -4909110 L 575313.5 -4909836 L 574248.7 -4910116 L 573228.3 -4911240 L 573219.8 -4911952 L 572103.8 -4913894 L 570315.3 -4915568 L 570050.2 -4915828 L 570271.7 -4916385 L 570760.7 -4916075 L 571206.3 -4916358 L 571292 -4916682 L 571836.2 -4917524 L 572465.8 -4917754 L 575054.1 -4917484 L 575066.6 -4918253 L 576018.9 -4918866 L 576834.8 -4920178 L 576939.7 -4920217 L 576844.5 -4920583 L 577148.5 -4922007 L 578889.8 -4923917 L 579244.8 -4923779 L 580244.8 -4923233 L 580374 -4922890 L 580954.1 -4922446 L 582007.8 -4922422 L 582688.5 -4921048 L 582102.5 -4919643 L 583463.5 -4918982 L 584564.9 -4917918 L 583865.9 -4916670 L 582508.3 -4916669 L 582631 -4915613 L 582870.1 -4915385 L 583375.2 -4914973 L 583700.4 -4913016 L 583460.6 -4912763 L 583492.8 -4912399 L 583441 -4910650 L 583040.5 -4910055 L 582074.2 -4909530 L 582316.3 -4909317 L 583075.8 -4908335 L 583348.8 -4908158 L 583678.6 -4908351 L 584036.4 -4908483 L 585115.4 -4909483 L 587500.3 -4910059 L 587723.3 -4909891 L 587948.4 -4909726 L 588294.4 -4909531 L 589317.5 -4910512 L 590460 -4909214 L 590555.7 -4908168 L 590643.9 -4907824 L 592147.6 -4907714 L 593059 -4908331 L 593436.9 -4908355 L 593935.9 -4906651 L 594153 -4906367 L 596271 -4905480 L 596549.1 -4905216 L 597718.7 -4903919 L 597983.8 -4903688 L 598316.8 -4903475 L 598880 -4902927 L 599986 -4902540 L 601159.2 -4903373 L 602128.7 -4905348 L 602335.5 -4905658 L 602376.3 -4906022 L 602243 -4908196 L 603672.6 -4908359 L 604600.1 -4908985 L 605469.2 -4910180 L 605179.9 -4910835 L 608715.2 -4911098 L 609793.8 -4911587 L 610045.6 -4911892 L 610431.6 -4911845 L 611290.2 -4910576 L 611232.6 -4909816 L 611128.8 -4909442 L 610494.2 -4907201 L 610651.8 -4906076 L 611483.1 -4905378 L 613746.7 -4905587 L 614049.1 -4904887 L 614433 -4904905 L 615176.1 -4906230 L 615422.9 -4906528 L 615070 -4906393 L 615160.9 -4910169 L 615175.7 -4910547 L 615861.2 -4911392 L 616251.2 -4911410 L 617705.3 -4911051 L 619549 -4911315 L 620031.2 -4910786 L 620261.5 -4910091 L 621014.5 -4910068 L 621581.7 -4909561 L 623012.6 -4909634 L 622907.7 -4909451 L 622746.9 -4909097 L 623700.8 -4907389 L 624735 -4906875 L 625072.9 -4907038 L 627064.3 -4906079 L 627331.3 -4906104 L 627583.4 -4906011 L 627879.5 -4905817 L 628504.1 -4904581 L 628807 -4904803 L 629768.7 -4905384 L 630117.8 -4905245 L 630517.3 -4904202 L 631123.5 -4903788 L 631076.7 -4903466 L 631330.2 -4902548 L 631465.4 -4902191 L 633453.6 -4899907 L 633140.6 -4898082 L 633207.8 -4897650 L 633872 -4897336 L 635303.7 -4897852 L 636001.8 -4897577 L 636154.2 -4896840 L 635660.8 -4895810 L 636033.2 -4895159 L 637065.4 -4894768 L 636811.6 -4892688 L 636814.8 -4892311 L 636809 -4891930 L 636823.2 -4891552 L 636962.7 -4890808 L 637050.9 -4890486 L 636944.5 -4889509 L 636024.5 -4886259 L 635980.8 -4885877 L 637193.1 -4883749 L 637209.3 -4883394 L 637874.7 -4882617 L 639861.9 -4883719 L 640244.9 -4883723 L 640452.3 -4883045 L 640454.5 -4882662 L 640691.7 -4882280 L 642411.2 -4881470 L 642634.4 -4881157 L 642707.1 -4880110 L 643121.5 -4879557 L 643402.6 -4879347 L 643659.8 -4879143 L 644377.2 -4878466 L 645461.8 -4875998 L 646970 -4875647 L 647295.7 -4874553 L 647315 -4874162 L 647506.3 -4873631 L 647487.6 -4873246 L 647179.1 -4872548 L 646809.2 -4872440 L 644930.1 -4872727 L 644732.9 -4871603 L 645103.9 -4870140 L 643339 -4868722 L 643380.3 -4868345 L 642033.4 -4867026 L 639905.2 -4866294 L 639352.6 -4865787 L 639143.9 -4865472 L 639143.4 -4865473 z " |
id="path620" /> |
<path |
d="M 335135.8 -4850502 L 335099.8 -4850135 L 335506.6 -4848766 L 336347.3 -4847588 L 336034.3 -4847395 L 336722.3 -4847348 L 338095.5 -4845608 L 337842.9 -4845610 L 337591.3 -4845611 L 339311.9 -4843904 L 339645.7 -4843775 L 340551.9 -4843108 L 340436.7 -4842461 L 340604.3 -4842121 L 340842.7 -4841831 L 341920.5 -4842000 L 342814.7 -4841337 L 343139.7 -4841150 L 343763.3 -4840934 L 343900.8 -4840631 L 342701.9 -4838624 L 342691.8 -4838262 L 342498.9 -4837975 L 343122.5 -4837720 L 343210.2 -4837385 L 343573.5 -4837413 L 344541.7 -4836342 L 344916.9 -4836424 L 346048.6 -4836606 L 346677.7 -4836168 L 346516.8 -4835832 L 345617.2 -4834718 L 346079.9 -4834169 L 347754.9 -4833501 L 347799 -4833818 L 348728.2 -4833927 L 348987.3 -4834132 L 349655.5 -4834026 L 350131.9 -4833548 L 350329.3 -4833273 L 350271.2 -4832960 L 349906 -4831744 L 350176.2 -4831484 L 351162.6 -4829927 L 352195.4 -4830095 L 352976.1 -4830879 L 353371.1 -4830245 L 353564.6 -4829927 L 354512.9 -4828809 L 354585.6 -4826565 L 354361.8 -4825867 L 351747.1 -4826292 L 351384.3 -4826441 L 351464 -4826113 L 350893.1 -4824546 L 350531.6 -4824595 L 348367 -4824341 L 347319 -4824631 L 347451.7 -4824289 L 347756.6 -4823381 L 346725 -4822413 L 346028.2 -4822052 L 345593.1 -4823092 L 345012.9 -4823546 L 344262.2 -4823556 L 343020.4 -4822792 L 342292.1 -4823002 L 344080.7 -4821630 L 344358.9 -4821362 L 343694 -4821023 L 343000.4 -4821326 L 342493.6 -4820860 L 342588.4 -4820141 L 343764 -4819193 L 344006.4 -4818901 L 342910.3 -4818898 L 342209 -4817281 L 340803.2 -4817020 L 341101.1 -4816873 L 339669.4 -4815886 L 339490.6 -4815575 L 341158 -4814390 L 341379.4 -4814121 L 341556.9 -4813846 L 340996.9 -4813496 L 341149.5 -4813202 L 340830.9 -4813274 L 340716.9 -4812632 L 340572.1 -4811964 L 339701.3 -4811061 L 339466.4 -4810818 L 339634.8 -4810587 L 340224.4 -4809667 L 339799.9 -4809071 L 339733.1 -4808708 L 338244.1 -4808979 L 337650.5 -4808546 L 337388.8 -4808270 L 337969 -4806454 L 337735.6 -4805724 L 338218.2 -4805224 L 338036.5 -4804880 L 337702.3 -4804824 L 337265.3 -4803753 L 336899.3 -4803660 L 336194.4 -4803390 L 335877.8 -4803467 L 334947.9 -4804357 L 335163.6 -4804660 L 334885 -4806042 L 333528.9 -4805914 L 333479.8 -4805642 L 333335.8 -4805406 L 333135.2 -4805723 L 331967.5 -4807043 L 332015.4 -4807390 L 331190.3 -4807941 L 331187.3 -4808292 L 330176.6 -4808501 L 329967.8 -4808225 L 329622 -4808361 L 328637.6 -4808782 L 328434.8 -4808830 L 328229.1 -4808860 L 327854.7 -4808886 L 326945.7 -4809472 L 326340.2 -4809332 L 326048 -4809257 L 325297.6 -4808855 L 324982.8 -4808991 L 323440.6 -4809692 L 323187.9 -4809415 L 322306.3 -4807846 L 322275.5 -4807797 L 321961.4 -4808036 L 319341.1 -4809768 L 317869.7 -4809808 L 318256.1 -4808773 L 318054.4 -4808459 L 317636.1 -4807822 L 317412.5 -4807519 L 317640.3 -4806477 L 317129.9 -4805938 L 316840.2 -4805687 L 316114.2 -4804839 L 314850.1 -4805656 L 313739 -4804109 L 313491.6 -4803741 L 313421.2 -4803592 L 313246.4 -4803328 L 312946.7 -4802782 L 312671.1 -4802512 L 311405.6 -4800600 L 311348.7 -4800291 L 310111.6 -4799197 L 309862.8 -4798972 L 308851.5 -4798455 L 306601.6 -4798867 L 306217.3 -4798893 L 306071.6 -4798580 L 305794.8 -4798376 L 305499.9 -4798519 L 305226.9 -4798699 L 304932.7 -4798941 L 303628.2 -4799581 L 302930 -4799448 L 302567.3 -4799568 L 301015 -4800610 L 300706 -4800483 L 300409.1 -4800329 L 300194.3 -4800385 L 299878.2 -4800617 L 298405.6 -4801076 L 298057.1 -4801142 L 297007.9 -4800302 L 296667.7 -4800255 L 295579.2 -4801075 L 295301.9 -4801043 L 295025.3 -4801079 L 294786.8 -4801362 L 294079.6 -4801560 L 293769.7 -4801716 L 292788.5 -4802047 L 292663.8 -4801711 L 292581.5 -4800646 L 292192 -4800719 L 290620.1 -4800722 L 288784.3 -4801461 L 288618.4 -4801821 L 289072.4 -4803360 L 288711.2 -4803324 L 288181.6 -4803818 L 287456.9 -4803845 L 287217.2 -4803589 L 286250.3 -4803239 L 284811.5 -4803124 L 284286.1 -4802656 L 283594.8 -4802553 L 283573.6 -4802923 L 283222.6 -4806130 L 282949.9 -4805895 L 282103.5 -4805318 L 281197.6 -4805814 L 281212.3 -4806200 L 281114.4 -4807727 L 280726.4 -4807652 L 278864.7 -4807137 L 278516.7 -4807043 L 276641.5 -4806109 L 276321.8 -4805896 L 275618.2 -4805586 L 274255.9 -4805866 L 273567 -4805661 L 273357.5 -4805940 L 272923.5 -4806474 L 271612.3 -4806102 L 271223.8 -4806765 L 271159.6 -4807144 L 271482.5 -4806987 L 271442.3 -4807369 L 271060.4 -4809626 L 270713.4 -4809532 L 269694.2 -4809281 L 269010.2 -4809960 L 269017.9 -4810349 L 267958.6 -4811918 L 268285.1 -4813079 L 268235.9 -4813185 L 270230.5 -4813953 L 270577.6 -4814038 L 269981.3 -4815382 L 269768.7 -4815690 L 269764.4 -4815785 L 269516.1 -4816016 L 269219.7 -4816614 L 268915.8 -4816465 L 268605.9 -4816619 L 268053.7 -4816989 L 267839.9 -4817646 L 267795.8 -4818016 L 267621.2 -4819495 L 267667.1 -4820418 L 267493.4 -4820718 L 266506.4 -4822498 L 266194.7 -4822291 L 264836.9 -4821764 L 264065.6 -4822580 L 263975.3 -4823314 L 262922.8 -4822846 L 261781 -4822814 L 260739.1 -4824863 L 260474.7 -4825147 L 259977.6 -4825740 L 258822 -4825650 L 258462.4 -4826940 L 258367.5 -4827269 L 258284.6 -4827594 L 257499.2 -4828131 L 257208.7 -4831194 L 257047.1 -4831472 L 256579.2 -4832626 L 255380.4 -4832616 L 255060.1 -4832592 L 255048.1 -4832895 L 254705.2 -4832760 L 254266.1 -4833336 L 253283.4 -4832855 L 251812 -4832868 L 251648.2 -4831389 L 251355.5 -4831147 L 250226.3 -4831207 L 249868.4 -4831078 L 249875.7 -4830688 L 249898.9 -4830299 L 249192.3 -4830256 L 248227.5 -4830705 L 247583.3 -4830503 L 247301.5 -4830286 L 246918.1 -4830301 L 245540.9 -4830798 L 244975.4 -4830372 L 244630.9 -4830409 L 244402.4 -4830670 L 243498.2 -4832110 L 241539.7 -4830943 L 241182.8 -4830797 L 241099.7 -4831165 L 240770 -4831839 L 239288.8 -4831497 L 238447.7 -4830795 L 238138.5 -4831022 L 237651.9 -4832338 L 237287.5 -4832357 L 237283.2 -4832736 L 237733.3 -4833347 L 237916.2 -4834469 L 235702.8 -4834558 L 235262.7 -4835107 L 235210.5 -4835477 L 235292.2 -4835824 L 235219.4 -4837584 L 236413.8 -4836858 L 236710.7 -4837043 L 236737.3 -4837739 L 236875 -4838062 L 237106.7 -4838632 L 238154.4 -4838790 L 238433.6 -4839779 L 238749.4 -4840577 L 237979.4 -4840673 L 237401.9 -4841135 L 237604.1 -4841884 L 238719.7 -4842957 L 238293.3 -4844813 L 240019.8 -4845607 L 240355.6 -4845804 L 240682.4 -4846014 L 242689.5 -4847731 L 242561.6 -4848085 L 242548.2 -4848830 L 240757.7 -4849282 L 241176.2 -4849858 L 241685 -4850286 L 241120.3 -4851718 L 241206.6 -4852849 L 240648.8 -4853369 L 240968 -4854410 L 240347 -4855665 L 241247 -4856171 L 241503.8 -4855800 L 242943.7 -4855738 L 242893.9 -4857951 L 243434.5 -4858439 L 243173.7 -4859150 L 243099.8 -4859485 L 242004.3 -4861155 L 242384.9 -4861428 L 243107.3 -4862560 L 243778.7 -4861778 L 243902.5 -4862107 L 243769.7 -4862440 L 243299.4 -4863761 L 242733 -4864192 L 242403.6 -4864172 L 241598.3 -4864679 L 240676.1 -4864892 L 240014.4 -4865119 L 239687.2 -4865656 L 240270 -4866092 L 240704.2 -4867103 L 241576.1 -4866718 L 242168.9 -4867152 L 242671.6 -4867317 L 242909.8 -4867447 L 243069.5 -4867791 L 244767 -4869771 L 245904.2 -4868804 L 246832.4 -4869940 L 248243.1 -4869654 L 249058.6 -4870433 L 250487.5 -4868743 L 250816.5 -4868558 L 251128.5 -4868725 L 251403.4 -4868950 L 251257.6 -4870327 L 251526.4 -4870600 L 253135.5 -4870431 L 254284.5 -4871925 L 255668 -4872443 L 256359.7 -4874627 L 258779.1 -4872187 L 259088.3 -4871963 L 259591.2 -4871389 L 259536.6 -4870239 L 257445.6 -4868540 L 260258.1 -4866551 L 261278.9 -4865381 L 261589.1 -4865142 L 261898 -4865369 L 263622.7 -4864895 L 264488.2 -4865638 L 265004.5 -4866657 L 264991.4 -4867046 L 264654.5 -4868953 L 263588.1 -4871411 L 264565.5 -4872520 L 264626.3 -4873283 L 264810.3 -4873533 L 265341.5 -4874247 L 265682.5 -4874077 L 266733.8 -4874488 L 267859.4 -4874410 L 269512.1 -4875820 L 269479.1 -4876191 L 270581.1 -4875235 L 270327.6 -4873351 L 271767.8 -4872882 L 272113.9 -4873042 L 272487.5 -4873709 L 272565.1 -4875259 L 273826.9 -4876113 L 274566.2 -4877476 L 274854.2 -4877320 L 275178.3 -4877494 L 276589.2 -4878273 L 276902.3 -4878079 L 277737.1 -4878078 L 278031.4 -4878181 L 278002.3 -4876740 L 279395.9 -4876126 L 280136.5 -4876260 L 281025.7 -4875713 L 281208.3 -4875378 L 281912.4 -4875350 L 283524.2 -4874565 L 283751.1 -4874846 L 284765.8 -4875176 L 284545.3 -4876234 L 284606.3 -4876593 L 285336.9 -4876341 L 288328.7 -4877053 L 289203.4 -4876294 L 289579.1 -4876194 L 290250.3 -4876530 L 291246.8 -4877712 L 292013.7 -4877718 L 292944.8 -4878349 L 294446.5 -4878425 L 294831.1 -4878368 L 295273.9 -4879781 L 295511.8 -4880081 L 295543.2 -4880306 L 296206.6 -4880972 L 296303.7 -4881279 L 298355 -4881226 L 298388.1 -4881586 L 298631.4 -4881331 L 299327.2 -4881435 L 299822.6 -4880997 L 299884.4 -4880651 L 300471.3 -4881975 L 301325.8 -4881308 L 302326.9 -4881086 L 302588.2 -4880828 L 303211.5 -4881174 L 304229.6 -4881366 L 304920.9 -4881687 L 305719.6 -4883019 L 306365.7 -4883419 L 307005.4 -4883618 L 307688.8 -4883466 L 307527.8 -4883131 L 309351.3 -4881883 L 310033.4 -4880608 L 310119.1 -4880248 L 311709.8 -4879450 L 311785.4 -4878339 L 312429.8 -4877404 L 313535.7 -4877630 L 313808.7 -4877896 L 314100.9 -4879319 L 315052.9 -4879613 L 315917.9 -4880768 L 316161.9 -4881046 L 316895.1 -4880949 L 318654.5 -4881446 L 318878.5 -4881741 L 319562.5 -4881760 L 319716.9 -4881080 L 319789.6 -4880738 L 320202.4 -4880145 L 320118.3 -4879407 L 320003.3 -4879052 L 320326.3 -4878019 L 320568.6 -4877750 L 323276.2 -4879270 L 324400.2 -4879876 L 324590.3 -4880161 L 325283.5 -4880511 L 326429.2 -4879527 L 327547.5 -4879577 L 327796.6 -4878960 L 328433.3 -4878723 L 328698.4 -4878510 L 328091.1 -4878145 L 327372.3 -4878074 L 326776.4 -4877114 L 325385.3 -4877564 L 325030.1 -4877421 L 324704 -4877245 L 325203.3 -4875967 L 324782.3 -4875360 L 325276.2 -4875088 L 325387.7 -4874826 L 325444.5 -4874442 L 325285.4 -4873725 L 324033.4 -4872378 L 323976.7 -4872284 L 323748.5 -4872094 L 323369.6 -4871863 L 322642.6 -4870650 L 322516.6 -4870311 L 322052.6 -4869769 L 321935.6 -4869421 L 320010.9 -4868403 L 320026.7 -4867666 L 320580.7 -4866111 L 320737.2 -4865814 L 323915.9 -4866860 L 324654.1 -4866318 L 324748.7 -4866027 L 326795.4 -4864906 L 327084.5 -4865101 L 327323.7 -4865709 L 327633.7 -4865514 L 328330.1 -4865738 L 329152.7 -4864568 L 329823.4 -4864275 L 330179.1 -4864188 L 330247.5 -4863590 L 331198.1 -4863188 L 331470.2 -4862970 L 331136.3 -4862712 L 329726.4 -4861895 L 329687.3 -4861559 L 329904.7 -4860046 L 331080.4 -4859059 L 331855.5 -4857726 L 331981.2 -4857359 L 331644.4 -4857468 L 330593 -4857476 L 330556.6 -4856440 L 332587.5 -4855628 L 332938.3 -4855509 L 332853.3 -4855167 L 332069.4 -4854037 L 331352.6 -4853224 L 330589.8 -4851260 L 330557.7 -4850527 L 331235.4 -4850233 L 332271.2 -4850469 L 332767 -4851019 L 334206.7 -4851048 L 335136.6 -4850501 L 335135.8 -4850502 z " |
id="path621" /> |
<path |
d="M 359407.4 -5138348 L 360839.6 -5140102 L 360712.7 -5141188 L 362135 -5143399 L 362281.1 -5143746 L 361538.1 -5143842 L 360922 -5143390 L 360181 -5143372 L 360180.2 -5144506 L 358896.3 -5145294 L 358533.3 -5145348 L 357555.4 -5145762 L 356426.7 -5148076 L 357770.8 -5148263 L 356795.1 -5149875 L 356597.3 -5150950 L 357257.4 -5151301 L 357555.4 -5151531 L 357391.5 -5151866 L 355659.8 -5153809 L 355334.8 -5154028 L 354189 -5155077 L 353124.1 -5155563 L 352357 -5155425 L 351245 -5155791 L 347783.8 -5155637 L 348148.1 -5157025 L 347437.5 -5159049 L 347064.5 -5159020 L 345581.4 -5158901 L 344945.5 -5159721 L 343444.4 -5159676 L 342935.5 -5160252 L 341855.5 -5160642 L 341709.5 -5160935 L 341442.6 -5161524 L 341618.8 -5162153 L 341276.8 -5162177 L 339982.8 -5162495 L 339409.9 -5163416 L 339174.2 -5164854 L 338371.4 -5166040 L 338497.5 -5166389 L 339468 -5168021 L 340092.2 -5168445 L 339504.6 -5170213 L 339866.8 -5170888 L 339531.9 -5171512 L 339149.8 -5171470 L 340401.4 -5172864 L 341097.6 -5173193 L 340939.8 -5173933 L 340700.9 -5174218 L 339890.3 -5175871 L 339977.7 -5176943 L 339350.7 -5177328 L 339022.9 -5177937 L 337617.8 -5178299 L 336705 -5179377 L 338024.4 -5180048 L 340119.8 -5180281 L 340479.8 -5180196 L 341501.9 -5180072 L 342480.4 -5178165 L 342758.4 -5177934 L 343821.7 -5178285 L 345285.5 -5180032 L 345530.8 -5180750 L 347366.9 -5180254 L 347739.9 -5180170 L 347724.3 -5181104 L 347605.4 -5181390 L 346910.9 -5182773 L 347272.4 -5183859 L 345854.7 -5185090 L 347690.6 -5186469 L 347846.6 -5188782 L 348461.1 -5189764 L 348824.2 -5189908 L 348652.3 -5190232 L 348413.6 -5190899 L 349142.1 -5193685 L 349117.1 -5193695 L 349850.8 -5196748 L 350094.7 -5200226 L 350222.9 -5200598 L 350515 -5200755 L 350800.1 -5200924 L 351811.6 -5201408 L 352208.2 -5202415 L 352006.8 -5203512 L 352016 -5203885 L 351414.4 -5204820 L 351815.6 -5206607 L 352877.1 -5207034 L 353483.3 -5208725 L 355648.6 -5210046 L 355999.7 -5210157 L 356182.6 -5209878 L 356389.5 -5209615 L 359878.2 -5211196 L 361021.6 -5211378 L 361407.7 -5211348 L 362073.3 -5210560 L 362292.2 -5210293 L 363023 -5209829 L 363323.1 -5209890 L 364370 -5209492 L 365041.6 -5208604 L 365222.4 -5208277 L 366151 -5208901 L 366513.1 -5208993 L 368622 -5211170 L 368375.7 -5212243 L 369667.9 -5213600 L 369974.4 -5214273 L 370041.7 -5214637 L 371443.1 -5214789 L 371779 -5215894 L 371422.7 -5216984 L 371917.6 -5218011 L 372614.9 -5218187 L 373577.7 -5217701 L 374529.4 -5218321 L 374825.6 -5218568 L 375522.8 -5219961 L 375514.7 -5221124 L 375502 -5221512 L 375365.2 -5221869 L 374572.4 -5223603 L 374062 -5225819 L 372814.9 -5227252 L 373600.8 -5228126 L 374741 -5228067 L 377540.8 -5229454 L 377880 -5229650 L 378919.9 -5230392 L 379168.1 -5230596 L 379848.1 -5231558 L 380074.4 -5231885 L 382512.9 -5232932 L 383636.1 -5232916 L 384016.2 -5232896 L 385116.3 -5232715 L 385654 -5232221 L 386313.3 -5232366 L 388037.5 -5231000 L 388138.2 -5230636 L 388630.7 -5231110 L 388514.3 -5231853 L 388103.1 -5232919 L 388111.4 -5234332 L 387905.6 -5234652 L 390877.8 -5235277 L 392740.8 -5234852 L 393123.9 -5234824 L 393177.6 -5236682 L 393903.8 -5236737 L 394276.9 -5236776 L 394616.2 -5236961 L 395188.9 -5236451 L 395932.2 -5236639 L 397430.2 -5236287 L 397537.2 -5235214 L 398633.1 -5234868 L 401269.2 -5235404 L 402234.4 -5236487 L 402457.7 -5236802 L 404741.4 -5233772 L 404990.2 -5233484 L 406661.2 -5231952 L 406933 -5231686 L 407682.1 -5231676 L 408260.6 -5232048 L 408435.9 -5232380 L 409613.6 -5231737 L 409844.4 -5231490 L 411333.7 -5230421 L 411676.6 -5230278 L 411656.2 -5229884 L 411516.4 -5227953 L 411843.4 -5225638 L 411485.3 -5225554 L 410423.8 -5225256 L 409679 -5224444 L 409455.6 -5224080 L 409349.9 -5223296 L 406624 -5220506 L 406883 -5220430 L 407116.9 -5220298 L 408225.3 -5219379 L 408952.4 -5219296 L 409263.6 -5219498 L 410699.8 -5219399 L 411836.3 -5218514 L 412065.1 -5218233 L 414487.7 -5217236 L 414807.6 -5217034 L 415181 -5217502 L 415546 -5217386 L 416588.6 -5217856 L 417634.4 -5217390 L 418930.3 -5218140 L 419421.8 -5218592 L 419706 -5218769 L 420917.9 -5219589 L 421802.8 -5219229 L 423125.5 -5219726 L 423463.7 -5219872 L 423695.8 -5218794 L 423714.5 -5218416 L 424420.4 -5218114 L 424017.4 -5217045 L 424167.8 -5216332 L 425660.2 -5216456 L 426050.1 -5217387 L 427528.3 -5217311 L 427744.1 -5216993 L 427346.5 -5216391 L 427867.1 -5214614 L 427677.2 -5213507 L 426772.5 -5212865 L 426535.9 -5212154 L 425825.7 -5210792 L 425975.4 -5210438 L 427645.3 -5209961 L 428476.5 -5208810 L 429738.2 -5208108 L 429862.9 -5207761 L 430709.7 -5207339 L 430906.5 -5207059 L 431605.6 -5205697 L 431795.4 -5205359 L 431512.2 -5205157 L 430717.6 -5204512 L 430688.9 -5203523 L 430474.6 -5203240 L 430104.1 -5202634 L 430315.4 -5201636 L 429896.9 -5201094 L 429650.7 -5200876 L 428798.4 -5200637 L 428806.7 -5198371 L 431472.5 -5196228 L 431794.4 -5196023 L 434336.1 -5196460 L 434965.9 -5196120 L 435190.7 -5195825 L 435047.4 -5195468 L 434028.8 -5193410 L 432959.9 -5192311 L 432563.9 -5192351 L 430207.7 -5191083 L 430349.5 -5189334 L 429217.3 -5187698 L 428836.2 -5187662 L 428564 -5187423 L 427155.9 -5187518 L 426936.6 -5187091 L 428702.2 -5184574 L 430912.5 -5183028 L 431169.4 -5182739 L 431286.2 -5182371 L 432057.5 -5181062 L 430363.8 -5178571 L 428512.4 -5178170 L 428165.7 -5177096 L 428802.3 -5176195 L 430000 -5175500 L 430084.6 -5174794 L 429755 -5173741 L 430134 -5173674 L 430799.8 -5173292 L 431509 -5173580 L 432249 -5173399 L 432929.8 -5173042 L 433863.2 -5171823 L 434950.1 -5171438 L 434838.9 -5171068 L 433536.8 -5169246 L 433714.4 -5168497 L 434623.1 -5167791 L 435759.5 -5166449 L 436464.6 -5166612 L 436766.3 -5165949 L 437489.3 -5165858 L 436844.3 -5164048 L 437297.8 -5162961 L 437133.6 -5162608 L 437072 -5161464 L 436772.9 -5161215 L 436409.9 -5161209 L 435718.2 -5159968 L 435778 -5159597 L 436190 -5157395 L 435032.5 -5156460 L 435140.3 -5156093 L 436739 -5153071 L 436822.3 -5151551 L 436842.1 -5151176 L 437365.9 -5150669 L 437729.9 -5150760 L 437939.4 -5149421 L 438407.2 -5148892 L 438348.9 -5148181 L 438118.8 -5147909 L 438118.8 -5147859 L 437963.6 -5147495 L 437572.3 -5146805 L 434349.7 -5145395 L 434617.7 -5142826 L 435566.3 -5141649 L 434139.3 -5141644 L 433475.2 -5141339 L 431584.2 -5141405 L 430606.8 -5140218 L 429467.8 -5140152 L 429478.8 -5140182 L 429143.8 -5140290 L 428240.1 -5141279 L 427551.1 -5141424 L 427169.1 -5141375 L 424941.2 -5141811 L 424708.3 -5142105 L 422160.5 -5142544 L 421989.7 -5143025 L 421669.7 -5143091 L 421254.9 -5143595 L 420865.9 -5143512 L 417020.7 -5142714 L 416528 -5143615 L 415919.1 -5143970 L 415012.9 -5143477 L 414666.9 -5143445 L 414084 -5143758 L 413784.7 -5142836 L 413397.7 -5142809 L 411465.8 -5142956 L 410597.6 -5142227 L 408753.8 -5142764 L 408653 -5143552 L 407527.3 -5144654 L 407242.5 -5145394 L 406891.5 -5145281 L 406191.5 -5145426 L 403346.4 -5144905 L 403534.3 -5144650 L 403727.2 -5144398 L 404150 -5143772 L 403913.9 -5143473 L 404238.6 -5142388 L 403369.2 -5140716 L 403494 -5139966 L 403134 -5139829 L 401762.7 -5138526 L 401719.6 -5138144 L 400310.8 -5138652 L 398375.5 -5141440 L 398044.5 -5141249 L 396662.2 -5139936 L 396151 -5138911 L 395849 -5138679 L 395047.9 -5137870 L 393999 -5138313 L 393033.4 -5139878 L 393588.8 -5141650 L 392660.9 -5142083 L 392344.9 -5141863 L 391322.6 -5140374 L 390208.7 -5140559 L 389962.6 -5140262 L 389597.6 -5140148 L 388469.4 -5139121 L 387782.4 -5139135 L 387623.9 -5141416 L 386955.1 -5142303 L 386241.2 -5142576 L 385906.2 -5142441 L 385080.1 -5141768 L 384981 -5141056 L 384257.9 -5140260 L 384078.7 -5139362 L 383992.6 -5139057 L 383739.7 -5139352 L 382660.7 -5139006 L 381398.4 -5137063 L 379963.4 -5136606 L 379324.3 -5135637 L 379269.2 -5134863 L 377605.1 -5133903 L 377330.1 -5134161 L 377010.3 -5135627 L 376112.4 -5136311 L 376229.4 -5136670 L 375872.4 -5136585 L 374721.6 -5137970 L 374519.6 -5138253 L 373668.8 -5139356 L 373431.9 -5139592 L 372311 -5140045 L 371985 -5139841 L 369831 -5139217 L 370519.9 -5138410 L 369677.8 -5137812 L 369621.7 -5137073 L 367503.7 -5136873 L 367247.8 -5137355 L 366481.8 -5137356 L 365766.8 -5137632 L 365027.8 -5137429 L 364041.7 -5136277 L 363682.7 -5136333 L 362323.8 -5136663 L 362159 -5138738 L 361811 -5138873 L 360645.9 -5137963 L 360590.9 -5137594 L 360264.9 -5137548 L 359662.9 -5137746 L 359408 -5138347 L 359407.4 -5138348 z " |
id="path622" /> |
<path |
d="M 336704.6 -5179377 L 336570.7 -5179694 L 336137.8 -5180226 L 336070.9 -5180609 L 335022.9 -5181066 L 333887.3 -5182634 L 333666.7 -5183747 L 332709.7 -5184312 L 332922.3 -5185789 L 332536.6 -5186821 L 332518.7 -5187011 L 332466.8 -5187382 L 332418.2 -5188486 L 331414.2 -5188931 L 330847.5 -5189873 L 331609.9 -5190532 L 331496 -5190889 L 329697.7 -5190985 L 329329.8 -5191539 L 329761.1 -5192129 L 329305.2 -5192571 L 328359.8 -5192093 L 327641.2 -5193336 L 327321.2 -5193486 L 326608.5 -5194654 L 326451.6 -5194981 L 324785.1 -5196896 L 324735.4 -5197617 L 325156.9 -5198536 L 324746.2 -5199447 L 325008.8 -5200584 L 324309.9 -5203191 L 324258 -5203511 L 324249.2 -5203899 L 323919.6 -5204938 L 321675.3 -5205447 L 321348.6 -5206146 L 320667.6 -5206506 L 319973.2 -5206193 L 319656.2 -5206359 L 318952.4 -5207161 L 318812.7 -5207801 L 318956.9 -5208132 L 318582.1 -5208710 L 316457.5 -5208683 L 316102.4 -5208626 L 314723 -5208687 L 314649.8 -5208272 L 314713.7 -5207950 L 315179.4 -5207132 L 315075.2 -5206805 L 315094.9 -5206128 L 315328.8 -5205841 L 316974.9 -5205132 L 317140.1 -5203343 L 316865.9 -5203077 L 314210.2 -5203082 L 313527.2 -5203404 L 313178.2 -5203537 L 310378.2 -5203207 L 309806.3 -5203675 L 309600.1 -5203446 L 308732.7 -5203198 L 308361.5 -5203063 L 305147 -5201732 L 305065.8 -5201397 L 304641.3 -5200461 L 304330.3 -5200703 L 303299.2 -5201260 L 302128.8 -5201269 L 301814.8 -5201508 L 300822.8 -5202154 L 300442.7 -5202170 L 299077.5 -5202750 L 297772.5 -5201435 L 297397.4 -5201485 L 296023.7 -5200888 L 295700.7 -5201087 L 294932.8 -5201899 L 294343.3 -5203655 L 294430.5 -5203991 L 294708.9 -5204603 L 294114 -5205438 L 294780.6 -5206268 L 293672.8 -5207567 L 294025.9 -5207544 L 295165.6 -5208300 L 294981.7 -5208599 L 294761.8 -5208891 L 294486.7 -5210971 L 295223.3 -5211718 L 295170.5 -5212084 L 295142.4 -5213861 L 294449.5 -5214629 L 294144.3 -5214415 L 292077.1 -5213604 L 291824.1 -5213879 L 291859.4 -5216334 L 290375 -5216655 L 289707.7 -5216480 L 289520.5 -5216177 L 289138.1 -5215627 L 287599.1 -5214780 L 286591.2 -5215901 L 285509.6 -5215545 L 285162.5 -5215698 L 285254.7 -5216080 L 285113 -5216814 L 286954.8 -5218827 L 286069.3 -5220487 L 285969.9 -5221655 L 285643.7 -5221539 L 284758 -5221013 L 284276.3 -5220112 L 284036.4 -5220413 L 282265 -5221102 L 282232.4 -5221871 L 282766.2 -5222890 L 282501.9 -5222639 L 281786.5 -5222525 L 281508.7 -5223195 L 280484.4 -5223494 L 280024.7 -5222565 L 278928.3 -5222721 L 278322.8 -5222292 L 278139.9 -5222614 L 278135.5 -5225475 L 277411 -5225248 L 277114 -5225484 L 276344.8 -5227575 L 276576.1 -5227873 L 277135 -5228857 L 277424 -5230339 L 277072.9 -5230481 L 276493.2 -5231381 L 277654.8 -5233047 L 278003 -5233066 L 278277.3 -5233264 L 277993.4 -5233667 L 278155.4 -5235178 L 277838 -5236283 L 278423.9 -5237218 L 278789.6 -5239405 L 279031.9 -5239670 L 279363.2 -5239811 L 279472.8 -5240570 L 279024.9 -5241087 L 280468.3 -5243409 L 281315.3 -5244217 L 281881.7 -5245656 L 281864 -5246047 L 283237.9 -5246333 L 283943.9 -5247139 L 284170.2 -5247415 L 283889.2 -5248911 L 283717.4 -5249260 L 284738 -5249368 L 285034.3 -5249604 L 286948.7 -5251388 L 285953.6 -5251875 L 285958.5 -5253005 L 284884.2 -5253330 L 285114.6 -5253623 L 286998.9 -5255244 L 287355 -5256303 L 287319.3 -5256679 L 287142.5 -5259317 L 287406.9 -5259588 L 288590.6 -5261847 L 288759.5 -5262742 L 289030.8 -5262967 L 290294 -5264631 L 290277.3 -5264992 L 290751.9 -5267434 L 289420.2 -5267412 L 289329.8 -5268114 L 288408.9 -5268714 L 288953.7 -5269265 L 290110.1 -5272078 L 290493.8 -5272600 L 291383.7 -5272983 L 291689 -5273116 L 291414.6 -5273838 L 291632 -5276092 L 291465.3 -5276441 L 291678.7 -5276711 L 293324.7 -5276781 L 293667.9 -5276798 L 294839.9 -5275289 L 298333.1 -5274741 L 299593.3 -5273357 L 299550.9 -5272975 L 302188 -5271862 L 302467.9 -5271632 L 303962.6 -5272586 L 304316.9 -5272683 L 303931.2 -5274126 L 303814.5 -5274488 L 302920.9 -5276230 L 302244 -5276626 L 301625.8 -5277619 L 302960.5 -5279534 L 303075 -5279912 L 303721 -5279658 L 304077.1 -5279629 L 305942.4 -5277202 L 306657.6 -5277038 L 308146.6 -5277340 L 308805.2 -5279449 L 308962.7 -5279802 L 310045.6 -5280110 L 310264.4 -5279801 L 311388 -5279867 L 311762.1 -5279819 L 313179.1 -5281051 L 313845.1 -5280777 L 315321.1 -5281091 L 316137.3 -5281823 L 316431.7 -5282060 L 316387.3 -5282575 L 318647.2 -5282424 L 320474.6 -5283801 L 320889.5 -5284447 L 320644.1 -5285053 L 321768.4 -5286557 L 322517.7 -5286545 L 323472.8 -5285444 L 322958.4 -5284438 L 323220.9 -5283881 L 323597 -5283851 L 325013.1 -5285112 L 325186.6 -5285453 L 327573.4 -5283600 L 327932.4 -5283462 L 328504.7 -5284356 L 329504.5 -5284672 L 329740.9 -5284938 L 333557.4 -5283194 L 334709.6 -5283004 L 335408.2 -5283299 L 336708 -5282654 L 337071.1 -5282666 L 337587.7 -5283007 L 337846 -5283195 L 339445.6 -5283983 L 339595.3 -5283662 L 338988.2 -5282901 L 339159.9 -5282599 L 339039.4 -5282237 L 337761.3 -5279106 L 339044.2 -5277743 L 338802.3 -5277029 L 338146.6 -5276646 L 338263.4 -5275510 L 338628.4 -5275404 L 339113.1 -5274056 L 341721.4 -5274398 L 341459.5 -5275429 L 342129.1 -5275750 L 343125.2 -5277285 L 343346.6 -5277586 L 344310.4 -5277118 L 344665.5 -5277071 L 345733.6 -5276791 L 346435.1 -5276976 L 346765.4 -5277145 L 347307.6 -5276261 L 348375.8 -5276099 L 348729.9 -5276034 L 348166.8 -5274302 L 348334.2 -5272834 L 348919.9 -5272377 L 349016.5 -5272017 L 349270.6 -5272009 L 349521.7 -5272047 L 350238.2 -5274080 L 350759 -5274612 L 351485.3 -5274685 L 351814.2 -5274512 L 353722 -5271071 L 353867.2 -5270295 L 353969.8 -5269914 L 354704.6 -5270459 L 354995.8 -5270591 L 354823.2 -5269183 L 352845.2 -5267019 L 352679.8 -5266688 L 352474.1 -5266104 L 354231.2 -5264717 L 354186.3 -5262885 L 355014.2 -5261595 L 355102.8 -5261218 L 355715.2 -5259495 L 355969 -5259227 L 355444.9 -5258276 L 357006.7 -5258607 L 357397.9 -5258686 L 358557.4 -5256901 L 358894.4 -5256765 L 358776 -5256406 L 357437.8 -5254607 L 355197.2 -5254707 L 357061.4 -5252322 L 357249.4 -5251189 L 357852.7 -5250274 L 357847 -5249527 L 357589.7 -5249310 L 356727.5 -5248355 L 356671.9 -5247718 L 357810.9 -5246348 L 357297.3 -5245808 L 356608.5 -5244077 L 356529.1 -5243711 L 355656.6 -5243447 L 356423.1 -5240435 L 356575.8 -5240075 L 358309.9 -5239606 L 360581.3 -5237070 L 361471.8 -5238538 L 361537.1 -5238874 L 362154.9 -5238450 L 363272.1 -5238369 L 364648.9 -5238853 L 364688.2 -5239226 L 364967.4 -5239356 L 365270.5 -5239412 L 366704.1 -5238542 L 366777.8 -5238211 L 366737.3 -5237611 L 366645 -5237332 L 368321.6 -5235244 L 369078.7 -5235080 L 370022.5 -5233397 L 371015.1 -5231419 L 371089.8 -5231045 L 371213.5 -5230703 L 372482.7 -5228110 L 372607.5 -5227811 L 372814.1 -5227253 L 374061.2 -5225819 L 374571.6 -5223604 L 375364.4 -5221870 L 375501.2 -5221513 L 375513.9 -5221125 L 375522 -5219961 L 374824.8 -5218568 L 374528.6 -5218322 L 373576.9 -5217702 L 372614.1 -5218187 L 371916.8 -5218011 L 371421.9 -5216985 L 371778.2 -5215895 L 371442.3 -5214790 L 370040.9 -5214638 L 369973.6 -5214273 L 369667.1 -5213601 L 368374.9 -5212243 L 368621.2 -5211171 L 366512.3 -5208994 L 366150.2 -5208902 L 365221.6 -5208278 L 365040.8 -5208604 L 364369.2 -5209492 L 363322.3 -5209891 L 363022.2 -5209830 L 362291.4 -5210293 L 362072.5 -5210560 L 361406.9 -5211349 L 361020.8 -5211378 L 359877.4 -5211196 L 356388.7 -5209615 L 356181.8 -5209878 L 355998.9 -5210157 L 355647.8 -5210047 L 353482.5 -5208725 L 352876.3 -5207035 L 351814.8 -5206608 L 351413.6 -5204820 L 352015.2 -5203885 L 352006 -5203512 L 352207.4 -5202416 L 351810.8 -5201408 L 350799.3 -5200924 L 350514.2 -5200755 L 350222.1 -5200599 L 350093.9 -5200227 L 349850 -5196748 L 349116.3 -5193696 L 349141.3 -5193686 L 348412.8 -5190900 L 348651.5 -5190232 L 348823.4 -5189908 L 348460.3 -5189765 L 347845.8 -5188782 L 347689.8 -5186469 L 345853.9 -5185091 L 347271.6 -5183860 L 346910.1 -5182773 L 347604.6 -5181391 L 347723.5 -5181104 L 347739.1 -5180171 L 347366.1 -5180255 L 345530 -5180751 L 345284.7 -5180033 L 343820.9 -5178285 L 342757.6 -5177935 L 342479.6 -5178166 L 341501.1 -5180073 L 340479 -5180196 L 340119 -5180282 L 338023.6 -5180049 L 336704.2 -5179377 L 336704.6 -5179377 z " |
id="path623" /> |
<path |
d="M 755851.9 -5002862 L 755703.5 -5002501 L 753618.5 -5000901 L 753576.8 -4999761 L 754748.7 -4996488 L 752941.8 -4995906 L 752850.5 -4995527 L 752211.4 -4993303 L 752201.5 -4991746 L 751772.6 -4991122 L 751970.3 -4989973 L 755993.1 -4988328 L 760557.3 -4989381 L 760952.9 -4989394 L 761334.1 -4988716 L 760867.8 -4987649 L 760883.4 -4986869 L 761916.1 -4985260 L 761570 -4984159 L 761634.9 -4983775 L 762149.4 -4983204 L 764015.9 -4982703 L 764395.4 -4982610 L 764420.3 -4982219 L 764160.1 -4980678 L 764537.7 -4978802 L 764325.8 -4977659 L 764678.8 -4976587 L 764186.8 -4975978 L 764097.3 -4975206 L 764579 -4972967 L 764326.5 -4972735 L 763103.5 -4972188 L 761736.9 -4972884 L 760464 -4974795 L 759685 -4974894 L 757536.7 -4974263 L 756171 -4972368 L 754610.8 -4972243 L 751992.6 -4972913 L 751701.1 -4972653 L 749910.5 -4972098 L 749538 -4972216 L 748955.5 -4972715 L 746766.8 -4973098 L 745473.4 -4971158 L 744253.5 -4970300 L 743943 -4970081 L 741120.7 -4967686 L 740781.3 -4967825 L 738948 -4970081 L 737852.6 -4969727 L 736903.9 -4968031 L 734994.6 -4967762 L 734720.2 -4967528 L 732706.5 -4966114 L 732852.6 -4965777 L 734998.6 -4964693 L 735161.6 -4963973 L 735236.6 -4963611 L 734938.2 -4963440 L 733131.9 -4962436 L 733068.7 -4962111 L 733018.4 -4961132 L 732677.1 -4961306 L 731940.4 -4961515 L 730548.6 -4960280 L 729152.3 -4960809 L 728444.5 -4960513 L 727869.7 -4959572 L 727486.3 -4959508 L 726430.3 -4959932 L 724885.7 -4959936 L 724315.3 -4960453 L 723199.3 -4960783 L 723168.2 -4960394 L 723447.1 -4958873 L 722662.1 -4957535 L 722130.2 -4955668 L 721378.4 -4954835 L 721016 -4954687 L 719285.2 -4953841 L 717759.8 -4953617 L 716196.7 -4955309 L 714726.4 -4955559 L 713574.6 -4957069 L 713217.2 -4956517 L 712582.6 -4956291 L 710735 -4956457 L 710166.5 -4956070 L 709082.6 -4956339 L 708981.6 -4956610 L 708807.5 -4957161 L 708478.2 -4957268 L 707577.6 -4958589 L 707366.5 -4959203 L 707328.5 -4959526 L 707014.2 -4959598 L 705845.3 -4959762 L 704109 -4960623 L 703734.9 -4962138 L 703400.7 -4962334 L 701115.1 -4963772 L 700780.7 -4963273 L 701485 -4961911 L 701326.8 -4961221 L 695754.8 -4962788 L 695450.6 -4963435 L 694339.8 -4963618 L 694017.6 -4964286 L 695168.6 -4965205 L 695879.4 -4966910 L 695535.1 -4966861 L 694211.2 -4967180 L 694239.3 -4967576 L 694945.6 -4971862 L 694557.5 -4972983 L 695280.5 -4975239 L 695437.3 -4978005 L 695383.3 -4978376 L 694821 -4982847 L 694929.2 -4983215 L 695583.3 -4985416 L 695934.8 -4986067 L 694878.5 -4987998 L 695095 -4989083 L 694743.8 -4989211 L 694595 -4990251 L 693575.5 -4991342 L 693555.6 -4991732 L 694314 -4994338 L 694996.7 -4994664 L 695759.3 -4994537 L 695113.1 -4995528 L 694096.4 -4996120 L 693325.8 -4996155 L 692835.2 -4995555 L 692675 -4995261 L 692107.2 -4994435 L 691970 -4994075 L 690952.7 -4992478 L 690207 -4992298 L 689035.8 -4991348 L 687941 -4991535 L 687250.8 -4992429 L 687223.5 -4991747 L 688240 -4990597 L 687898.7 -4990467 L 687210.1 -4990304 L 686057.5 -4991154 L 684672.5 -4991448 L 684315.2 -4991485 L 683698.2 -4993077 L 683134.7 -4992849 L 682797.4 -4992695 L 682183.8 -4992285 L 682147.7 -4991916 L 681828.4 -4991889 L 680979.9 -4992274 L 681056 -4992617 L 679836.3 -4993185 L 679704.1 -4992847 L 678655.3 -4992682 L 678571.1 -4992329 L 678352.9 -4992153 L 677869.6 -4992269 L 677767.6 -4992624 L 676296.6 -4992730 L 676117.6 -4993420 L 675748.3 -4993493 L 675098 -4993855 L 674745.9 -4994517 L 674651.9 -4994701 L 674475.8 -4994809 L 674146.6 -4994878 L 673535.2 -4995157 L 673175 -4995251 L 670996.5 -4995130 L 670311.6 -4993448 L 669676.1 -4993081 L 669316.9 -4993150 L 668348.5 -4994234 L 667741.1 -4993828 L 667436.9 -4994031 L 667496 -4994391 L 669107.2 -4994978 L 669596.9 -4996729 L 669927.2 -4996939 L 671418.8 -4999192 L 671457.9 -4999504 L 671446.1 -5000125 L 671533.6 -5001635 L 671141.5 -5002297 L 671646.1 -5003313 L 671479.2 -5004064 L 671365.2 -5004431 L 670360 -5005957 L 669848.1 -5007404 L 669735.1 -5007757 L 669615.5 -5009143 L 669881.8 -5009406 L 670790.6 -5009999 L 672286.7 -5010025 L 672115.7 -5010363 L 671453.3 -5010720 L 670216.3 -5013412 L 669122.5 -5013194 L 668353.3 -5014238 L 667442.2 -5012984 L 665959.2 -5012964 L 666509 -5017228 L 667110.9 -5018663 L 666836.8 -5018859 L 666458.5 -5018795 L 665712.9 -5018722 L 665367.4 -5018044 L 664714.8 -5017642 L 663199.7 -5017424 L 662183.8 -5016904 L 662034.7 -5017055 L 661787.7 -5017332 L 661553.9 -5018417 L 661425.9 -5018746 L 660814.1 -5020401 L 660599.1 -5020727 L 658747.9 -5020843 L 658424.7 -5020726 L 657783.4 -5020950 L 657629.4 -5021302 L 656857.7 -5023474 L 656471.4 -5023446 L 655343.7 -5023566 L 654408.9 -5022935 L 654075.6 -5022739 L 652825.6 -5021942 L 652076.1 -5021835 L 651745.9 -5021746 L 650527 -5021145 L 650302.8 -5020881 L 648591.5 -5019704 L 648149 -5019132 L 646587.9 -5018203 L 645137.1 -5018322 L 645158.2 -5018708 L 645125.4 -5019481 L 644779.2 -5019367 L 641259.1 -5018481 L 640581.6 -5018086 L 640359.6 -5018347 L 639067.3 -5019439 L 638765.2 -5019639 L 637518.9 -5020922 L 637379.2 -5022347 L 637391.3 -5022567 L 637557.6 -5023235 L 638191 -5023374 L 638253.3 -5024355 L 638031.3 -5024646 L 636929 -5025588 L 636995.2 -5026232 L 636940.3 -5026602 L 637105.7 -5027708 L 636761 -5029152 L 636564 -5029418 L 635949.9 -5030196 L 635790.3 -5031643 L 636826.2 -5032738 L 637075.4 -5033025 L 637060.6 -5033680 L 636951.6 -5033999 L 636694.7 -5034622 L 636665.8 -5034842 L 636637.9 -5035062 L 636783.1 -5035586 L 637983.8 -5035597 L 638270.9 -5035455 L 638547.1 -5035553 L 638684.3 -5035861 L 638564.6 -5036845 L 638551.7 -5037176 L 639700.6 -5038027 L 640024.9 -5038194 L 640191 -5038292 L 641141.7 -5038853 L 641964.7 -5040066 L 642948.5 -5040559 L 643276.8 -5040727 L 643575.1 -5041094 L 643827.4 -5041381 L 644787.5 -5042569 L 645578.5 -5043787 L 645644.7 -5044151 L 644867.5 -5044893 L 642780.5 -5045626 L 642454.4 -5045853 L 641509.4 -5047120 L 641376.4 -5047366 L 641126.5 -5047868 L 640988.5 -5048172 L 640518.4 -5048631 L 638138.5 -5049867 L 638038.6 -5050244 L 640287 -5050476 L 640660.3 -5050564 L 642047.1 -5050376 L 643317.6 -5049722 L 643635.7 -5049547 L 644342 -5049187 L 644606.7 -5050475 L 644476.8 -5050779 L 646101.3 -5051679 L 646626.8 -5052027 L 646912 -5052030 L 648583.5 -5052676 L 649686.2 -5052563 L 650122.6 -5052755 L 653132 -5053427 L 654896.9 -5052603 L 655249.1 -5052436 L 655289.2 -5052486 L 655484.9 -5053628 L 654745.4 -5053805 L 654514.4 -5054115 L 655537.4 -5054574 L 657981.8 -5053711 L 658476.4 -5054218 L 658771.7 -5054447 L 658151.7 -5055426 L 658252.6 -5056968 L 659765.4 -5058116 L 659651.4 -5058361 L 659431.5 -5058854 L 661371.1 -5060692 L 662119.8 -5060831 L 662262.1 -5061189 L 663482.6 -5062092 L 663236 -5063205 L 665277.2 -5064027 L 666285.8 -5063625 L 666938.6 -5063950 L 667200.7 -5063690 L 667293 -5064069 L 667464.9 -5065206 L 667147.7 -5065410 L 666175.2 -5065944 L 665427.3 -5067166 L 665157.2 -5067403 L 662358 -5067754 L 661958.5 -5069207 L 662062.3 -5070345 L 662204.7 -5070702 L 661833.4 -5070801 L 660322.1 -5070694 L 659520.5 -5072412 L 659546.7 -5072777 L 659451 -5073498 L 659816.3 -5073398 L 661617.5 -5072820 L 661925.9 -5073043 L 662653.4 -5075976 L 663308.9 -5074349 L 663653.3 -5074479 L 663553.9 -5075563 L 664226.7 -5075824 L 665667.6 -5075239 L 666030.8 -5075091 L 667095.7 -5074970 L 668276.2 -5074087 L 668619.4 -5073921 L 669254.3 -5072916 L 669452.2 -5072571 L 669533.8 -5071850 L 670121.1 -5071493 L 670482.5 -5071534 L 672367.1 -5071301 L 673274.4 -5072033 L 673574.9 -5072284 L 674448.1 -5072902 L 674752.6 -5073089 L 675324.4 -5073484 L 675612.8 -5073677 L 676455.7 -5075326 L 677248 -5076132 L 677378.4 -5076487 L 677397.7 -5076881 L 678193.9 -5080282 L 679064.6 -5081434 L 680315.4 -5082197 L 680608.2 -5082875 L 680676.6 -5083237 L 680913.2 -5083740 L 681073.5 -5083968 L 682153.8 -5084253 L 683731.6 -5083140 L 683988.6 -5082850 L 684228.7 -5082583 L 686076.9 -5081495 L 686887.3 -5080856 L 687033.2 -5080543 L 687180.8 -5079779 L 688160.4 -5079125 L 688432.5 -5078838 L 688594.5 -5078562 L 688644.3 -5078187 L 687611.9 -5077857 L 687650.6 -5076016 L 688712 -5074971 L 688984.1 -5074716 L 689412.1 -5074072 L 689630.1 -5073752 L 689901.3 -5073543 L 690692.7 -5072909 L 692612.9 -5070190 L 693460.3 -5069474 L 693744.5 -5069237 L 695035.1 -5068056 L 695296.2 -5067820 L 695887.9 -5066412 L 696110.9 -5066100 L 697539.4 -5065939 L 697843.6 -5065760 L 698105.8 -5065524 L 698175.3 -5064790 L 699789.5 -5063863 L 699866.1 -5063125 L 699215.1 -5062807 L 698458.1 -5064089 L 697741.4 -5064201 L 697774.4 -5062720 L 698022.5 -5062427 L 698164 -5061503 L 698444.2 -5061301 L 699049.1 -5061600 L 699378.4 -5061496 L 700336.1 -5060956 L 700305.8 -5060590 L 700546.9 -5060297 L 702148.1 -5059313 L 702402.1 -5057496 L 703257.3 -5056328 L 703820.3 -5055342 L 703990.3 -5055003 L 703911.9 -5054636 L 704052.6 -5053906 L 705160.8 -5052415 L 705352.8 -5052144 L 705828.1 -5051693 L 705928.8 -5051040 L 707877.9 -5049362 L 707908.5 -5048624 L 708224.7 -5048422 L 708089.3 -5048109 L 708726.4 -5047174 L 708391 -5047192 L 708114.8 -5047384 L 708031.5 -5047006 L 708458.3 -5046010 L 709560.4 -5045702 L 709658.3 -5045369 L 709594 -5045028 L 709947.3 -5044835 L 710165.5 -5044724 L 710374.7 -5044596 L 711300.6 -5042729 L 711459.6 -5042389 L 711921.3 -5041168 L 711964.2 -5040841 L 713092.9 -5039898 L 713320 -5039605 L 713052.3 -5037469 L 713640.2 -5036171 L 713720.1 -5035809 L 714755.2 -5035567 L 715112.6 -5035563 L 715345 -5035731 L 715544.4 -5036055 L 717029.4 -5036317 L 718128.5 -5036018 L 719351.1 -5034652 L 720808.6 -5034228 L 721192 -5034143 L 721242.1 -5034147 L 725396.2 -5032315 L 725727.7 -5030866 L 726002 -5030738 L 727277.1 -5031484 L 728144.3 -5033270 L 727901.3 -5033692 L 727245.1 -5033249 L 726614.4 -5033472 L 726650.7 -5035432 L 726607.8 -5035687 L 727273.9 -5036070 L 727821.3 -5037078 L 728102.2 -5039366 L 727444 -5040268 L 727284 -5040619 L 727319.1 -5040638 L 731573 -5042441 L 732246.6 -5042068 L 733134.9 -5040815 L 734624.7 -5040399 L 734638.9 -5039266 L 734862 -5038946 L 734731.6 -5038679 L 734602.2 -5038411 L 737586.3 -5036904 L 737912.6 -5036725 L 738305.4 -5037067 L 739282.1 -5037474 L 740005.1 -5037413 L 740732.2 -5037420 L 741076.8 -5037539 L 741418.2 -5037365 L 741470.7 -5036608 L 741479.4 -5036225 L 741808.9 -5036271 L 742101.4 -5036431 L 743549.9 -5037000 L 744254.7 -5036666 L 745592 -5034302 L 747980.1 -5032263 L 749255 -5029413 L 748098.6 -5028426 L 747705 -5028409 L 748244.5 -5027950 L 749347.1 -5027848 L 749676.5 -5027677 L 749471.2 -5026263 L 749216.3 -5025526 L 749026.8 -5025216 L 749019.9 -5023837 L 748649.3 -5023806 L 746953.4 -5023127 L 746606.2 -5022148 L 745715.6 -5021574 L 745821.5 -5021200 L 745045.8 -5020337 L 745232.9 -5018443 L 745796.1 -5017462 L 744732.3 -5015473 L 744860.3 -5015102 L 745035.8 -5013945 L 745935.6 -5013187 L 745966 -5012050 L 747531.5 -5010922 L 747821 -5009383 L 747745.4 -5008646 L 746701.7 -5006624 L 746778.4 -5005876 L 746543.9 -5005567 L 747925.7 -5005239 L 748193.2 -5005477 L 748530.7 -5005599 L 749423.7 -5006827 L 751568.3 -5006001 L 752752.1 -5004485 L 754518.1 -5005230 L 755260.1 -5005154 L 756108.9 -5004352 L 756041.3 -5003605 L 755851.6 -5002862 L 755851.9 -5002862 z " |
id="path624" /> |
<path |
d="M 735361.2 -5145609 L 735530 -5145223 L 734677.1 -5145520 L 734105.4 -5144820 L 732526.9 -5142167 L 731220.3 -5140771 L 729023 -5139202 L 728382.5 -5137804 L 726139.4 -5133484 L 725960.8 -5133151 L 725634.3 -5133195 L 724739.3 -5133605 L 724219 -5133088 L 724053.8 -5131250 L 723571 -5130246 L 722437.5 -5130500 L 722244.8 -5130157 L 720562.1 -5128026 L 720434.3 -5128381 L 719904.5 -5128423 L 719146.5 -5127610 L 717265.6 -5127542 L 716950.2 -5127562 L 716645.8 -5127647 L 716280.3 -5127716 L 712597.4 -5128109 L 712257.8 -5127966 L 710120.3 -5127514 L 709817.7 -5127299 L 709477.1 -5127149 L 709187 -5127415 L 708693.2 -5129309 L 708874 -5130862 L 708482 -5132380 L 706163 -5132617 L 706047.4 -5133163 L 705800.3 -5133437 L 704875.6 -5134013 L 703086.2 -5134051 L 703399.7 -5135107 L 703343 -5135450 L 703083.2 -5136054 L 702441.6 -5135324 L 702271 -5134975 L 700574.9 -5134163 L 700075.8 -5132709 L 700219.7 -5132451 L 700011.2 -5132239 L 699532.3 -5130942 L 698731.6 -5130316 L 698371.2 -5130385 L 696991.3 -5130286 L 696774.3 -5129591 L 696621.8 -5129246 L 695119.3 -5127572 L 692982.1 -5126998 L 692679.8 -5127112 L 692286.8 -5127625 L 692061.3 -5127394 L 690203.6 -5127003 L 689884.4 -5127214 L 688801 -5128249 L 688857.5 -5129773 L 689428.5 -5130092 L 689947.1 -5132213 L 690029.5 -5132572 L 689730.2 -5132690 L 689222.3 -5133453 L 688895.8 -5133324 L 688416.7 -5132811 L 687091.7 -5132450 L 686987.9 -5132818 L 685935.7 -5136036 L 685443.6 -5135480 L 685038.6 -5131716 L 684755.3 -5131797 L 684544.6 -5132329 L 684540.7 -5132429 L 684553.1 -5132820 L 684303.2 -5134324 L 684371.6 -5134696 L 682067.5 -5136416 L 682147.9 -5136762 L 682224.3 -5137109 L 682268.7 -5137469 L 681241.4 -5138366 L 681353.9 -5138709 L 682109.5 -5139470 L 682310 -5139766 L 681714.7 -5140160 L 681460.7 -5140448 L 681179.5 -5140628 L 679966 -5141594 L 678886.7 -5141594 L 676935.5 -5142706 L 676200.1 -5143225 L 676850.8 -5143232 L 677162.3 -5143353 L 676934.9 -5144190 L 677843.5 -5144811 L 676929.3 -5146762 L 677115.1 -5147404 L 677771 -5147548 L 677865.4 -5147871 L 677862.1 -5148540 L 681742.6 -5148430 L 681930.1 -5148734 L 682594.7 -5149578 L 683239.2 -5149271 L 683589.6 -5149170 L 684978.2 -5150093 L 685230.1 -5150732 L 685221.2 -5150812 L 685249.4 -5152968 L 684206.1 -5152947 L 683274.5 -5153504 L 683018.5 -5153777 L 682232.4 -5154570 L 680717.8 -5154783 L 680438.1 -5155410 L 680484.3 -5155480 L 680523 -5158146 L 680588.5 -5158527 L 680182 -5159506 L 680724.1 -5159962 L 680944.7 -5160238 L 680669.3 -5161129 L 680471.3 -5161370 L 681115.5 -5161753 L 681489.9 -5161722 L 683397.3 -5161792 L 683717.9 -5162011 L 684219.4 -5163861 L 683276.4 -5165026 L 683150.6 -5165393 L 684008.9 -5165626 L 684308.3 -5165644 L 685488.1 -5166926 L 685773.7 -5167146 L 686284.6 -5168292 L 684271.8 -5170032 L 684863.1 -5170514 L 685177.7 -5170729 L 684998.6 -5170855 L 684974 -5171221 L 684615.2 -5171806 L 684751.7 -5172146 L 682915.5 -5173159 L 682667.5 -5173416 L 683500.8 -5174591 L 683617.3 -5174933 L 683468.7 -5175539 L 682551.5 -5176463 L 682610 -5176809 L 682183.7 -5177991 L 682394.3 -5178250 L 680251.8 -5178454 L 679961.7 -5178672 L 680220.9 -5180463 L 680263.3 -5180824 L 680629.7 -5180738 L 681999.4 -5182522 L 681998.8 -5182899 L 681462.7 -5183430 L 680718 -5183579 L 680472.4 -5184288 L 679245.7 -5185074 L 678590.8 -5184974 L 678212.4 -5185016 L 677502.4 -5185773 L 677361.8 -5187165 L 677155.8 -5187452 L 677521.9 -5188008 L 677684.5 -5188337 L 678377.4 -5188389 L 678865.4 -5187857 L 680366.5 -5188911 L 680673.1 -5189125 L 680930.5 -5189198 L 681194.9 -5189235 L 681567.3 -5189134 L 682936.8 -5189797 L 683321.3 -5189829 L 683583.1 -5189357 L 683831.3 -5189201 L 687375.3 -5189513 L 687086.2 -5189752 L 687415.8 -5190802 L 686908.8 -5191353 L 687039.8 -5192092 L 686989.2 -5192464 L 686599.8 -5192525 L 685903.3 -5192894 L 685695.4 -5192330 L 684828 -5192990 L 684372.3 -5192893 L 683984.9 -5192961 L 682729.2 -5193844 L 682423.6 -5195373 L 682637.7 -5196120 L 681787.8 -5196315 L 681702 -5196611 L 681364.4 -5196485 L 681038.8 -5196331 L 680661.1 -5196125 L 679350.7 -5195457 L 678596.7 -5196298 L 677879.5 -5196050 L 677458.3 -5195434 L 676927.2 -5195935 L 676911 -5196669 L 675742.1 -5198047 L 675586.3 -5198380 L 675465.9 -5199085 L 675401.2 -5199436 L 675181.3 -5199717 L 675150.9 -5201119 L 673991 -5201556 L 673620.5 -5201554 L 672713.7 -5200917 L 672397.6 -5200247 L 671725.5 -5200008 L 671765 -5200390 L 671742.8 -5201158 L 670858.6 -5201893 L 671675.3 -5202538 L 671723.8 -5202921 L 671049.3 -5205821 L 671976.5 -5206792 L 672293 -5206909 L 672502.4 -5207880 L 672808.9 -5208014 L 674253.1 -5208350 L 674661.7 -5209324 L 675394.8 -5209442 L 675740.4 -5209580 L 675650.7 -5209950 L 672775.3 -5210922 L 672433.1 -5211090 L 672423.1 -5211115 L 672993.3 -5213260 L 673809.2 -5214009 L 674139.4 -5214663 L 674346.9 -5214921 L 674989.7 -5214914 L 675986.7 -5216401 L 676624.9 -5216733 L 677279.8 -5216819 L 677631.2 -5216771 L 678545.6 -5217016 L 678687.1 -5217302 L 678959.1 -5217001 L 680040.7 -5217143 L 680997 -5218002 L 681048.4 -5218334 L 681523.7 -5218892 L 681518 -5220002 L 681692.6 -5220333 L 682468.9 -5221389 L 682527.4 -5221725 L 682288.8 -5222291 L 682648.9 -5222828 L 682671.3 -5223163 L 683440.9 -5223656 L 683746.3 -5223665 L 684490.1 -5224357 L 684479.9 -5225024 L 684408.2 -5225358 L 684901.8 -5226086 L 685167.3 -5226232 L 685419.5 -5226974 L 685872.2 -5228729 L 685636.2 -5229799 L 685350.1 -5230033 L 684898.4 -5230790 L 685069.9 -5231068 L 686634.2 -5231995 L 686926.9 -5232223 L 687282.1 -5232839 L 686948.3 -5234249 L 687293.6 -5234898 L 687610.2 -5235020 L 687277.4 -5237165 L 687444.1 -5237500 L 687738.7 -5239326 L 687746.2 -5239706 L 687758.5 -5239975 L 687771.8 -5240245 L 688100.7 -5240607 L 688716.2 -5240288 L 689046.5 -5240180 L 689260.1 -5241220 L 689974.6 -5242447 L 690241.2 -5242584 L 691167.9 -5240495 L 692898.4 -5239751 L 692869 -5238634 L 693900.6 -5238734 L 693989.9 -5238068 L 694277 -5237848 L 694297.2 -5237186 L 694858.7 -5236906 L 695081.3 -5237168 L 696389 -5237819 L 697112.9 -5237672 L 698077.7 -5237145 L 699138.6 -5237417 L 699507.2 -5237435 L 699835.1 -5237747 L 700270.2 -5238145 L 700312.7 -5238442 L 701359.8 -5238828 L 702035.9 -5239693 L 702557.5 -5239536 L 702612.2 -5239260 L 703185.2 -5239353 L 703647.3 -5238882 L 703746.1 -5238561 L 703980.1 -5238260 L 705363.4 -5236003 L 705333.8 -5235622 L 705011 -5235385 L 705711.6 -5234233 L 705567 -5233917 L 705785.8 -5233457 L 706062.1 -5233378 L 707022.8 -5231938 L 706930.2 -5231593 L 708281 -5232098 L 708562.7 -5231476 L 708427.1 -5231138 L 708754.3 -5230870 L 709783.9 -5230817 L 710264.2 -5230447 L 710580.5 -5230307 L 710695.6 -5228647 L 710641.1 -5228313 L 711237.6 -5228780 L 712340 -5228451 L 712646.2 -5228219 L 712609.8 -5227105 L 712952.5 -5226464 L 712885.9 -5226098 L 713671.2 -5225314 L 714012.6 -5225170 L 713166.3 -5224430 L 712386.9 -5222698 L 712338.4 -5222320 L 712141.3 -5221695 L 711381.3 -5221073 L 711286.7 -5220749 L 711109.6 -5220041 L 710382.6 -5220184 L 709832.1 -5219686 L 709826.2 -5218975 L 710362.9 -5218003 L 710510.7 -5217663 L 710886 -5215817 L 711049.9 -5215475 L 709417 -5214438 L 708242.4 -5215434 L 707526.1 -5215272 L 707650.4 -5214548 L 708535.9 -5213801 L 708470.9 -5213045 L 707871.4 -5212574 L 708263.7 -5211490 L 708515.7 -5211198 L 709369.6 -5210831 L 709666.9 -5210710 L 710066.2 -5211300 L 711435.8 -5211691 L 711715.5 -5211913 L 712239.6 -5212947 L 712040.6 -5214086 L 712275.3 -5214396 L 712647.1 -5214513 L 713012.8 -5214646 L 713379.3 -5214556 L 713579.7 -5213829 L 713513.8 -5212348 L 713552.4 -5211974 L 713675.8 -5211316 L 715075.6 -5210998 L 715361.4 -5211235 L 715379 -5210851 L 715478.7 -5210480 L 715728.3 -5210657 L 715967.1 -5210202 L 715978.8 -5209896 L 716823.9 -5210505 L 718249 -5210283 L 718604.5 -5210216 L 718852 -5209490 L 719563 -5209299 L 720898 -5209923 L 721288.4 -5211355 L 721607.9 -5211373 L 721106.8 -5208702 L 721217.5 -5208327 L 721987 -5207673 L 723049.2 -5208007 L 723502.7 -5208595 L 723828.2 -5207754 L 724174.8 -5207760 L 725323.7 -5207713 L 725362.3 -5207331 L 725356.2 -5207251 L 725689.8 -5207248 L 725853.7 -5206958 L 726038 -5206110 L 726244.1 -5205881 L 724752.8 -5204428 L 724535.1 -5204150 L 724863.5 -5204000 L 725220.2 -5204060 L 727039.8 -5202843 L 727693.6 -5202604 L 727492.9 -5202324 L 726728.2 -5201175 L 726574.5 -5200840 L 726633.3 -5199752 L 728007.2 -5198536 L 728702.2 -5198426 L 728859.1 -5198087 L 728891.6 -5195936 L 729554.3 -5195590 L 730445.5 -5196150 L 730619.4 -5195819 L 730497.8 -5195503 L 730401.5 -5194577 L 730101.4 -5194139 L 730330.2 -5193616 L 731757.4 -5193354 L 731857.2 -5193000 L 733386.7 -5194505 L 733712.1 -5194320 L 734631.1 -5193746 L 735032.7 -5192794 L 735394.3 -5192773 L 735717.1 -5192998 L 736102.9 -5193078 L 736318.4 -5193141 L 736949.3 -5192158 L 739663.4 -5190638 L 739990.7 -5190424 L 739745.8 -5190022 L 740117.4 -5189951 L 740939.4 -5188719 L 742428.9 -5187720 L 743477 -5186169 L 743916.2 -5185668 L 744095.2 -5185385 L 744370.9 -5184690 L 742671.1 -5183319 L 742510.5 -5182216 L 742463.9 -5181845 L 741568.5 -5181214 L 741269.7 -5181005 L 740934.9 -5180833 L 740600.1 -5180665 L 740380.4 -5180427 L 739274.6 -5179761 L 738805.2 -5179270 L 738769.1 -5179246 L 738510.3 -5178974 L 737467.1 -5177896 L 737195.5 -5177803 L 736769.3 -5177417 L 736486.5 -5177137 L 735465 -5176522 L 734400.9 -5175465 L 736900.7 -5171523 L 736660.4 -5170793 L 735699.9 -5170127 L 735380.1 -5169897 L 733953.3 -5168791 L 733699.6 -5168531 L 733785.4 -5168201 L 734002.7 -5167283 L 733336.4 -5167190 L 732960.1 -5166598 L 732900 -5166423 L 735558.8 -5164054 L 735658.3 -5163965 L 735988.3 -5163700 L 736021.4 -5163670 L 739136.8 -5160872 L 739356.4 -5160711 L 739515 -5160839 L 739607.1 -5160923 L 739619.8 -5160911 L 740863.2 -5158966 L 740883.9 -5158253 L 738978.3 -5156119 L 735943.7 -5151240 L 735602.9 -5150311 L 736104.2 -5149646 L 736312.8 -5147827 L 735638.2 -5146660 L 735360.6 -5145609 L 735361.2 -5145609 z M 685887.6 -5191328 L 685778.5 -5191384 L 685608.3 -5191410 L 685700.7 -5191665 L 685605.6 -5191666 L 685526.6 -5191716 L 685557.9 -5191901 L 685614.1 -5192019 L 685680.2 -5192055 L 685684.1 -5191965 L 685814.3 -5191949 L 685758.1 -5191824 L 686007.4 -5191787 L 686106.4 -5191631 L 686206.5 -5191630 L 686144.3 -5191491 L 686194.3 -5191461 L 686148.2 -5191376 L 686064.1 -5191402 L 686002.9 -5191342 L 685887.7 -5191328 L 685887.6 -5191328 z " |
id="path625" /> |
<path |
d="M 411676.2 -5230278 L 411333.3 -5230421 L 409844 -5231490 L 409613.2 -5231737 L 408435.5 -5232380 L 408260.2 -5232048 L 407681.7 -5231676 L 406932.6 -5231686 L 406660.8 -5231952 L 404989.8 -5233484 L 404741 -5233772 L 402457.3 -5236802 L 402234 -5236487 L 401268.8 -5235404 L 398632.7 -5234868 L 397536.8 -5235214 L 397429.8 -5236287 L 395931.8 -5236639 L 395188.5 -5236451 L 394615.8 -5236961 L 394276.5 -5236776 L 393903.4 -5236737 L 393177.2 -5236682 L 393123.5 -5234824 L 392740.4 -5234852 L 390877.4 -5235277 L 387905.2 -5234652 L 388111 -5234332 L 388102.7 -5232919 L 388513.9 -5231853 L 388630.3 -5231110 L 388137.8 -5230636 L 388037.1 -5231000 L 386312.9 -5232366 L 385653.6 -5232221 L 385115.9 -5232715 L 384015.8 -5232896 L 383635.7 -5232916 L 382512.5 -5232932 L 380074 -5231885 L 379847.7 -5231558 L 379167.7 -5230596 L 378919.5 -5230392 L 377879.6 -5229650 L 377540.4 -5229454 L 374740.6 -5228067 L 373600.4 -5228126 L 372814.5 -5227252 L 372607.9 -5227810 L 372483.1 -5228109 L 371213.9 -5230703 L 371090.2 -5231044 L 371015.5 -5231418 L 370022.9 -5233396 L 369079.1 -5235080 L 368322 -5235244 L 366645.4 -5237331 L 366737.7 -5237611 L 366778.2 -5238210 L 366704.5 -5238541 L 365270.9 -5239412 L 364967.8 -5239355 L 364688.6 -5239226 L 364649.3 -5238853 L 363272.5 -5238369 L 362155.3 -5238450 L 361537.5 -5238873 L 361472.2 -5238537 L 360581.7 -5237070 L 358310.3 -5239606 L 356576.2 -5240074 L 356423.5 -5240434 L 355657 -5243447 L 356529.5 -5243710 L 356608.9 -5244076 L 357297.7 -5245808 L 357811.3 -5246347 L 356672.3 -5247718 L 356727.9 -5248354 L 357590.1 -5249310 L 357847.4 -5249526 L 357853.1 -5250273 L 357249.8 -5251188 L 357061.8 -5252322 L 355197.6 -5254706 L 357438.2 -5254606 L 358776.4 -5256405 L 358894.8 -5256764 L 358557.8 -5256900 L 357398.3 -5258686 L 357007.1 -5258606 L 355445.3 -5258275 L 355969.4 -5259227 L 355715.6 -5259495 L 355103.2 -5261218 L 355014.6 -5261594 L 354186.7 -5262885 L 354231.6 -5264716 L 352474.5 -5266104 L 352680.2 -5266687 L 352845.6 -5267018 L 354823.6 -5269182 L 354996.2 -5270591 L 354705 -5270458 L 353970.2 -5269913 L 353867.6 -5270295 L 353722.4 -5271070 L 351814.6 -5274511 L 351485.7 -5274684 L 350759.4 -5274611 L 350238.6 -5274079 L 349522.1 -5272047 L 349271 -5272009 L 349016.9 -5272017 L 348920.3 -5272377 L 348334.6 -5272833 L 348167.2 -5274302 L 348730.3 -5276034 L 348376.2 -5276098 L 347308 -5276261 L 346765.8 -5277144 L 346435.5 -5276975 L 345734 -5276791 L 344665.9 -5277070 L 344310.8 -5277118 L 343347 -5277586 L 343125.6 -5277285 L 342129.5 -5275750 L 341459.9 -5275428 L 341721.8 -5274397 L 339113.5 -5274056 L 338628.8 -5275403 L 338263.8 -5275509 L 338147 -5276645 L 338802.7 -5277029 L 339044.6 -5277743 L 337761.7 -5279105 L 339039.8 -5282236 L 339160.3 -5282599 L 338988.6 -5282900 L 339595.7 -5283661 L 339446 -5283982 L 337846.4 -5283194 L 337588.1 -5283006 L 337071.5 -5282665 L 336708.4 -5282653 L 335408.6 -5283298 L 334710 -5283003 L 333557.8 -5283194 L 329741.3 -5284937 L 329504.9 -5284671 L 328505.1 -5284355 L 327932.8 -5283461 L 327573.8 -5283600 L 325187 -5285452 L 325013.5 -5285111 L 323597.4 -5283850 L 323221.3 -5283881 L 322958.8 -5284437 L 323473.2 -5285444 L 322518.1 -5286545 L 321768.8 -5286557 L 320644.5 -5285053 L 320394.1 -5284776 L 319876.2 -5284237 L 319237.3 -5284542 L 319049.9 -5285986 L 318149.9 -5287148 L 318166 -5287198 L 319219.8 -5288303 L 320325.6 -5288521 L 320550.1 -5288830 L 320494.6 -5289266 L 321056.4 -5289761 L 321235.8 -5290818 L 321735.7 -5291379 L 323222.5 -5291525 L 323541.9 -5291724 L 323612 -5291743 L 325134.3 -5293054 L 325440.6 -5293209 L 326733.5 -5292680 L 327099.6 -5292651 L 327514.5 -5293249 L 326746.1 -5294814 L 327585.3 -5295471 L 328268.2 -5295180 L 328347.7 -5295542 L 329692.4 -5297171 L 329974.8 -5297411 L 330476.7 -5297937 L 331082.1 -5299622 L 331738.8 -5299935 L 331946.3 -5300237 L 332643.2 -5299941 L 333095.8 -5300985 L 333114.3 -5302103 L 332840.5 -5302344 L 332044.2 -5303087 L 332380.2 -5303736 L 331999.5 -5306305 L 332220.1 -5307408 L 332520.5 -5307609 L 332848.8 -5307757 L 334296.9 -5308870 L 334811.4 -5308376 L 335064 -5307314 L 336185.1 -5306340 L 336461.6 -5306593 L 336395.1 -5306966 L 336045 -5308431 L 336234.1 -5310642 L 336562.2 -5311314 L 338739.1 -5312024 L 338984.6 -5312322 L 338807.1 -5313438 L 338611.4 -5313743 L 338203.2 -5315127 L 337632.6 -5315546 L 337312.9 -5316575 L 336966.6 -5317198 L 337969.1 -5318634 L 338252.6 -5319600 L 338643.4 -5320687 L 338518.6 -5322204 L 336652.7 -5322126 L 336205.4 -5322709 L 335494.2 -5322802 L 335527.1 -5326072 L 335334.5 -5326390 L 338646.1 -5326507 L 338996.5 -5326646 L 339209 -5328880 L 338107.3 -5328728 L 337066.5 -5329145 L 337207.1 -5329480 L 338657.2 -5329802 L 338959.7 -5330033 L 341249.5 -5330572 L 342130.9 -5329960 L 342506.9 -5329848 L 344327.9 -5330011 L 345536.6 -5330820 L 346272 -5330868 L 346641.1 -5330865 L 346722.2 -5329587 L 346699.7 -5329254 L 347427.4 -5329522 L 350495 -5332359 L 351528.2 -5332893 L 353069.9 -5332979 L 353821.8 -5332762 L 354338.3 -5331704 L 353807.2 -5331146 L 350359 -5329297 L 350417.3 -5328200 L 351422.8 -5327604 L 352917.9 -5327943 L 353252.7 -5327736 L 355570.5 -5327664 L 356054.1 -5326661 L 358721.7 -5327074 L 359108.8 -5327044 L 358615.3 -5324850 L 359072.5 -5324228 L 359253.1 -5323888 L 359362.5 -5322812 L 359544.1 -5322499 L 360192.4 -5321868 L 360507.4 -5321802 L 361086.1 -5321468 L 361285.8 -5321201 L 362751.2 -5321146 L 363006.9 -5320882 L 362593.4 -5319960 L 363180.3 -5319065 L 363135.8 -5318706 L 363473.7 -5318533 L 364474.3 -5317997 L 365322.6 -5315209 L 365012.2 -5314988 L 364677.8 -5314808 L 365692.6 -5314415 L 367014.1 -5315164 L 368524 -5315429 L 368912.2 -5315449 L 369719.4 -5314682 L 369825.9 -5314312 L 370169.1 -5313675 L 372733.7 -5314210 L 373177 -5312892 L 373372.6 -5312595 L 375590.9 -5312994 L 376463.1 -5313605 L 377955 -5312499 L 379233.7 -5315469 L 380771.5 -5314318 L 382656.8 -5314788 L 383027.1 -5314930 L 383212.2 -5315669 L 382938.4 -5317897 L 382757.2 -5318497 L 383419.9 -5318829 L 384475.7 -5318454 L 387051.4 -5316367 L 387266 -5316061 L 388560.8 -5315648 L 389224.7 -5315456 L 391575.5 -5316233 L 392263.4 -5316025 L 392575.8 -5316230 L 392512.1 -5314379 L 391247.9 -5313113 L 391177.4 -5312743 L 391839.1 -5312411 L 391553.7 -5312174 L 390146.7 -5311761 L 389596.8 -5311264 L 389298.7 -5309849 L 389501.3 -5309539 L 391585.6 -5308573 L 393215.8 -5306923 L 393461.5 -5306624 L 393307.5 -5305944 L 393603.7 -5305311 L 393421.2 -5305010 L 394112.6 -5303728 L 393711.6 -5303097 L 393718.1 -5302723 L 391072.6 -5299977 L 390086.6 -5299451 L 389723 -5298358 L 389451 -5297697 L 389387.5 -5297330 L 390406.4 -5297057 L 392306.3 -5295025 L 392562 -5294762 L 392320.8 -5293873 L 392616.6 -5293677 L 391057 -5292063 L 390823.6 -5291770 L 394518.3 -5288392 L 393702 -5287554 L 393384.6 -5287326 L 393357.1 -5286934 L 396122.7 -5288336 L 396772.2 -5290171 L 396903.7 -5290539 L 398602.7 -5289377 L 398859.5 -5289150 L 400150.7 -5288270 L 401699 -5288169 L 403070.5 -5287462 L 403110 -5286293 L 404016.5 -5284122 L 404190.1 -5283770 L 403867.8 -5283562 L 403532.5 -5283375 L 403685.1 -5283024 L 404170.5 -5282469 L 405017.2 -5279565 L 405509.6 -5278991 L 407735.6 -5278526 L 408039.4 -5278297 L 407886.5 -5277555 L 408695.8 -5276771 L 409054.7 -5276645 L 409672.4 -5277122 L 409828.4 -5277886 L 410359.2 -5278448 L 412920.8 -5279175 L 412840.1 -5281834 L 413282.9 -5282386 L 413654.1 -5282505 L 414287.1 -5282408 L 414487.4 -5280997 L 416360.1 -5281174 L 416974.7 -5280728 L 417723.1 -5280859 L 418096.1 -5280788 L 419119.9 -5281189 L 419841 -5281109 L 420182.9 -5279354 L 421255.2 -5279359 L 421897.9 -5279009 L 422825.9 -5279597 L 423178.2 -5279730 L 424177.3 -5279575 L 424589.7 -5280617 L 425225.4 -5281030 L 429403.1 -5280694 L 429809 -5281331 L 430157.3 -5281497 L 432349.2 -5280941 L 432633.4 -5280238 L 432997.3 -5280116 L 434156.7 -5281023 L 434899.7 -5280896 L 435744 -5280172 L 437275.4 -5280188 L 439476.8 -5280880 L 439843.1 -5281001 L 440020.9 -5280760 L 440054 -5279263 L 441088.5 -5279462 L 442576.7 -5276832 L 442485.4 -5274956 L 442439.9 -5274579 L 442044.8 -5274549 L 439270.3 -5273103 L 436183.7 -5272421 L 434799.7 -5271075 L 433399.6 -5270437 L 433537.2 -5270069 L 433993 -5268985 L 433785.2 -5267478 L 434243.6 -5266844 L 438935.5 -5266563 L 439216.2 -5266287 L 440458.2 -5263421 L 439029.7 -5259820 L 439426.8 -5259847 L 440800.1 -5260642 L 441972.5 -5260733 L 442577.2 -5260328 L 442927.2 -5260211 L 442567.3 -5259532 L 442182.1 -5257684 L 442682.1 -5256680 L 442192.9 -5255687 L 442790 -5254730 L 442530.6 -5251667 L 442279.3 -5251466 L 441518.5 -5250865 L 441125.4 -5250869 L 439589.9 -5250722 L 438375.2 -5254025 L 434449.8 -5250797 L 432834.2 -5252498 L 432876.8 -5252101 L 432965 -5251309 L 431868.5 -5249188 L 431407.5 -5246435 L 431770.7 -5246525 L 432490.1 -5246727 L 432734.9 -5246445 L 433614.6 -5244036 L 433046.1 -5242709 L 433732 -5242446 L 434211.1 -5241398 L 435183.7 -5240792 L 435855 -5238992 L 435570.7 -5238734 L 434543 -5238250 L 433996.5 -5236896 L 433653.3 -5236786 L 432585 -5236686 L 432352.2 -5236971 L 431813.5 -5237419 L 431077.3 -5237391 L 430681.2 -5237406 L 428403.2 -5236862 L 425780 -5235195 L 425459.1 -5235409 L 424721.1 -5235573 L 423669.6 -5235288 L 422123.4 -5236421 L 422113.4 -5236436 L 421784.5 -5236634 L 419531.4 -5238040 L 418116.4 -5236227 L 418076.4 -5235145 L 416005 -5234164 L 415849.7 -5233842 L 416038.2 -5233270 L 417048.1 -5232928 L 417248.8 -5232588 L 417495.2 -5231854 L 416919.7 -5230385 L 416728.4 -5230053 L 414399.9 -5228882 L 412738.9 -5230399 L 411676.6 -5230277 L 411676.2 -5230278 z " |
id="path626" /> |
<path |
d="M 569716.1 -5023433 L 569288.1 -5024845 L 569246.3 -5027859 L 569738.5 -5029289 L 570401.6 -5029646 L 570710.7 -5030359 L 570923.8 -5030685 L 571279.8 -5030588 L 572745.1 -5031567 L 574498.4 -5032055 L 574765.5 -5032311 L 574766.5 -5032431 L 574728.5 -5032794 L 574512.5 -5033086 L 575360.7 -5033521 L 575675.8 -5033638 L 575204.8 -5034189 L 575481.9 -5034871 L 574993 -5035851 L 575054.1 -5036214 L 575365.2 -5036872 L 576271.5 -5037527 L 576446.6 -5037857 L 576262.6 -5038155 L 576307.7 -5038842 L 575420.7 -5039394 L 575153.7 -5039533 L 574799.7 -5039728 L 574592.7 -5039984 L 574294.8 -5040895 L 573309.2 -5044170 L 573920.6 -5045558 L 573142.6 -5046316 L 572924.7 -5047007 L 572731.7 -5047315 L 572419.8 -5047915 L 572149.8 -5048148 L 570361.8 -5049763 L 570302.9 -5050110 L 569967.9 -5050285 L 568166.7 -5050718 L 567189.8 -5051825 L 566881.8 -5051919 L 566571.8 -5052005 L 566508.9 -5052364 L 566365 -5053069 L 564583.8 -5053357 L 563625.8 -5053888 L 563511.8 -5054188 L 563390.9 -5054485 L 563279 -5054820 L 563148.1 -5055513 L 562180.2 -5056541 L 561987.2 -5056837 L 561312.5 -5058466 L 561119.6 -5058801 L 559974.8 -5060349 L 559922.9 -5060703 L 559830.1 -5061413 L 560325.5 -5062694 L 560137.5 -5062960 L 559898.6 -5063563 L 560197.8 -5064138 L 559827.7 -5064183 L 559191.7 -5064571 L 558224.1 -5066553 L 557460.8 -5065941 L 556272 -5067295 L 555981 -5067525 L 556126.1 -5067783 L 556235.2 -5068058 L 556441.3 -5068236 L 556726.4 -5068506 L 556066.7 -5069793 L 553877.6 -5070609 L 553328.7 -5071167 L 553456.9 -5071843 L 554811.3 -5072589 L 555890.5 -5075818 L 555268.1 -5078010 L 555394.2 -5078129 L 555839.6 -5079071 L 555985.7 -5079419 L 555346.6 -5079307 L 555101.8 -5079958 L 554968.9 -5080285 L 556407.2 -5080376 L 557654 -5081845 L 557967.1 -5082032 L 557856.2 -5082397 L 556848.7 -5084433 L 555970.8 -5085133 L 555763.9 -5085455 L 555370.1 -5086081 L 553244 -5086945 L 553234 -5086971 L 553238.7 -5088881 L 554033.2 -5089709 L 553814.6 -5090838 L 554411.1 -5091778 L 556932.3 -5090978 L 557592.6 -5091356 L 557936.1 -5092446 L 558308.2 -5092546 L 559996.2 -5091689 L 561800.2 -5092876 L 562152.4 -5093033 L 563193.9 -5093433 L 563569.4 -5094427 L 563840.6 -5094694 L 563865.6 -5094719 L 563499.5 -5094776 L 563287.8 -5095482 L 562591.2 -5096861 L 561912.6 -5100261 L 561759.7 -5100624 L 562707.3 -5103408 L 562574.6 -5104132 L 562932 -5104767 L 562702.1 -5105071 L 561483.7 -5106959 L 560759.6 -5107181 L 561338.9 -5109321 L 560450.9 -5111751 L 560569.1 -5112107 L 561696.7 -5112649 L 561959.9 -5112847 L 561468.1 -5113457 L 560394.9 -5115537 L 560295.5 -5116707 L 560665.2 -5117783 L 559993.8 -5119192 L 559085.9 -5119931 L 558758.6 -5121397 L 559067.8 -5121627 L 559446 -5121697 L 561034.3 -5121366 L 561336.3 -5121214 L 561693.7 -5123316 L 564624 -5123841 L 564998.2 -5123876 L 566411.8 -5124068 L 566898.6 -5125061 L 567434 -5125307 L 567789.1 -5125210 L 568755.6 -5125458 L 569084.6 -5125251 L 569318 -5124119 L 569484.9 -5123769 L 569401.7 -5121910 L 568636.9 -5121150 L 568644.2 -5120014 L 568104.2 -5118629 L 569295.3 -5118058 L 569602.3 -5117918 L 570197.3 -5117477 L 571668 -5117753 L 573530.5 -5117468 L 573905.6 -5117413 L 574480.6 -5117072 L 574410.9 -5115954 L 575138.7 -5115102 L 575481.2 -5114041 L 575751.1 -5113773 L 578035.2 -5114046 L 578769.3 -5113781 L 579037.6 -5114055 L 580174.5 -5114876 L 580485.8 -5115043 L 580988.3 -5115625 L 581238.6 -5115916 L 581808.7 -5115743 L 582675.3 -5116176 L 583005.5 -5116229 L 584270.5 -5116924 L 584607.7 -5117077 L 586873.5 -5115140 L 586920.3 -5114767 L 586955.3 -5114767 L 587322.4 -5114701 L 587688.5 -5114632 L 590378.6 -5114418 L 591039.1 -5114757 L 590887.3 -5115114 L 590789.7 -5115877 L 590877 -5116253 L 591211.1 -5116092 L 592512.1 -5116765 L 593267 -5115970 L 593557 -5115739 L 593858.8 -5115197 L 593988.7 -5114917 L 594109.8 -5115001 L 594754.3 -5115332 L 595201.9 -5115966 L 596289.5 -5116011 L 596535.4 -5115727 L 596841.9 -5114692 L 596199 -5113810 L 595832.8 -5113779 L 596198.3 -5112752 L 598080.2 -5112651 L 598457.4 -5112681 L 599041.6 -5114080 L 599647.2 -5114506 L 600004.5 -5114653 L 600493.7 -5114505 L 600701.7 -5114318 L 601054.9 -5114336 L 601807.1 -5115505 L 601820.3 -5115858 L 602463.4 -5115520 L 603359.3 -5116150 L 604284.5 -5115658 L 604881.1 -5115974 L 605229.2 -5115859 L 605431.5 -5116187 L 604627.9 -5117429 L 605488.2 -5118661 L 606534.1 -5119077 L 606495.6 -5119821 L 607935.4 -5119830 L 608965.3 -5118788 L 609117.2 -5118453 L 609218 -5118024 L 607219.2 -5117156 L 607177.7 -5116439 L 607705.6 -5115927 L 607976.6 -5115679 L 608300.7 -5115606 L 608594.8 -5115450 L 610224 -5114358 L 610492 -5114132 L 609942.8 -5112754 L 609371.1 -5112278 L 608914.7 -5110551 L 608208.4 -5110665 L 606427.1 -5111807 L 606143.1 -5112025 L 605785.9 -5112034 L 604602.4 -5110752 L 604219.2 -5110725 L 602380 -5110384 L 602147.7 -5110126 L 601569.2 -5109756 L 601407.2 -5108291 L 600881.6 -5107773 L 600614.3 -5107520 L 600376.5 -5106441 L 600798.3 -5105841 L 600713.6 -5104747 L 600750.4 -5104381 L 600336 -5104092 L 600061.8 -5104006 L 599976.9 -5102626 L 599771.6 -5102335 L 598842.5 -5101233 L 597385.7 -5101017 L 596676.5 -5101222 L 596396.2 -5100980 L 596218.9 -5100688 L 597000.6 -5099583 L 596974.4 -5099243 L 597695.6 -5098974 L 598189.2 -5097914 L 598505.2 -5097683 L 599108.3 -5097314 L 600100.9 -5097600 L 600444.1 -5097683 L 600504.1 -5097698 L 600708.6 -5096554 L 600875.5 -5096197 L 601010.4 -5095878 L 600403.4 -5094672 L 600115.9 -5094059 L 599245.9 -5094796 L 598124.2 -5094410 L 597751 -5094443 L 597357.2 -5095080 L 596315.5 -5094738 L 595919.4 -5094789 L 596024.3 -5094451 L 596089.9 -5093749 L 596946 -5093147 L 597991.4 -5093031 L 598250.4 -5092793 L 599271.6 -5092299 L 600208.2 -5090666 L 599700.7 -5090110 L 601152.7 -5088903 L 601903 -5088785 L 603044 -5087774 L 603781.3 -5087578 L 603204.5 -5086641 L 603467.4 -5086097 L 603822.5 -5086004 L 602380.2 -5084853 L 602061 -5084653 L 602305.7 -5083933 L 603149.7 -5083148 L 603430.3 -5082028 L 603603.2 -5081684 L 605068.3 -5080518 L 607285.3 -5080387 L 607660.5 -5080456 L 607800.3 -5079865 L 607389.6 -5078797 L 606813.1 -5078308 L 607129.9 -5077630 L 607412.9 -5077375 L 606883.4 -5076979 L 606656.8 -5076010 L 606305.6 -5075949 L 606813.6 -5075453 L 606649.4 -5075137 L 607263.9 -5073544 L 606937.9 -5073758 L 606311.6 -5073687 L 606414.6 -5071429 L 605012.7 -5070827 L 604313 -5069954 L 605216.6 -5068087 L 605132.4 -5067740 L 606232.8 -5067576 L 607197.5 -5068172 L 607575.7 -5068227 L 608408.7 -5067298 L 608549.6 -5067006 L 607652.9 -5066318 L 607180.9 -5064455 L 606446.2 -5063574 L 606276.7 -5062437 L 605725.2 -5061911 L 606080.1 -5061294 L 606357.1 -5061062 L 605783.5 -5060188 L 606021.2 -5059160 L 605808 -5058873 L 607534.4 -5058088 L 607898.5 -5057948 L 608172.3 -5057150 L 607920.1 -5056964 L 608912.9 -5055381 L 609217.9 -5055156 L 609338.7 -5054596 L 609949.9 -5054319 L 610291.1 -5054349 L 611473.4 -5053764 L 611788.5 -5053644 L 612486.2 -5051913 L 613341.3 -5051224 L 614257.5 -5050836 L 614419.5 -5050546 L 613938 -5049841 L 613915.9 -5049541 L 616469 -5049562 L 616787.1 -5049362 L 616851.8 -5048615 L 617571.1 -5048590 L 618160.2 -5048170 L 619762.2 -5048995 L 620124.4 -5049045 L 620771.7 -5048946 L 621637.3 -5049468 L 621940.4 -5049316 L 622994.5 -5048336 L 623253.5 -5048063 L 624483.1 -5048054 L 625089.6 -5048457 L 625407.8 -5048636 L 626270 -5047852 L 627084.6 -5045661 L 627634.7 -5045117 L 627807.6 -5044766 L 628389 -5044992 L 628990.4 -5045132 L 627929.3 -5046481 L 628091.7 -5047165 L 628116.9 -5047522 L 628466 -5047362 L 628846.2 -5047411 L 630217.1 -5047996 L 631164.1 -5046795 L 630941.8 -5046456 L 629650.7 -5045440 L 629510.5 -5045123 L 629420.4 -5045099 L 629351.2 -5044721 L 628308.3 -5043633 L 628658.2 -5040256 L 628375 -5039997 L 628959.8 -5038729 L 629304 -5038851 L 629832.1 -5038388 L 629992.9 -5037717 L 630510.4 -5038215 L 630862.5 -5038129 L 632264.1 -5037975 L 633697.4 -5039541 L 633945.6 -5039819 L 635260 -5039047 L 635599.7 -5037588 L 635244.4 -5037441 L 636555.6 -5035857 L 636782.6 -5035587 L 636637.4 -5035062 L 636665.3 -5034843 L 636694.2 -5034623 L 636951.1 -5034000 L 637060.1 -5033681 L 637074.9 -5033026 L 636825.7 -5032739 L 635789.8 -5031644 L 635949.4 -5030197 L 636563.5 -5029419 L 636760.5 -5029152 L 637105.2 -5027709 L 636939.8 -5026603 L 636994.7 -5026232 L 636928.5 -5025589 L 636571.3 -5025606 L 634540.1 -5025062 L 634379.8 -5024300 L 634045.6 -5024244 L 632840.9 -5023706 L 632437.6 -5023189 L 631002.9 -5023262 L 630658.7 -5023072 L 627821.9 -5020999 L 627956.9 -5020728 L 628200.9 -5020198 L 627985.7 -5020003 L 627478.4 -5019742 L 626086.7 -5019186 L 626180.5 -5018066 L 626657.6 -5017492 L 626564.5 -5017123 L 625809.2 -5017161 L 625092.9 -5017032 L 624772.8 -5016857 L 624316.3 -5015383 L 624429.2 -5014659 L 624810.3 -5014579 L 625167.3 -5014192 L 625356.3 -5014002 L 625373.1 -5012864 L 624060.5 -5012072 L 623790.3 -5011792 L 623459.2 -5011988 L 621956.7 -5012122 L 620517.1 -5011588 L 619757.7 -5010834 L 618369.3 -5011461 L 617897 -5010472 L 616373.5 -5010323 L 615736.4 -5010745 L 615498.4 -5010916 L 615149.3 -5011039 L 614615.2 -5011957 L 613736.1 -5012630 L 613506 -5012937 L 612826.9 -5013289 L 611902.9 -5014956 L 610770.6 -5015011 L 610460.5 -5014805 L 608571.8 -5013652 L 608258.7 -5012979 L 607287.5 -5013453 L 606999.4 -5013218 L 605318.2 -5015166 L 606042.5 -5016029 L 606160.6 -5016754 L 606766.9 -5017555 L 606533.9 -5017807 L 605434.7 -5018107 L 603789.5 -5019667 L 606239.5 -5021821 L 606602.6 -5021787 L 605936.6 -5023137 L 604399.5 -5024768 L 604075.4 -5024967 L 602228 -5025362 L 601855.9 -5025463 L 601527.7 -5024553 L 600885.6 -5024674 L 600433.4 -5024115 L 599013 -5024168 L 598888 -5024488 L 598921.2 -5025850 L 597859.9 -5025473 L 596831.9 -5026964 L 596456.8 -5026927 L 596230.8 -5027127 L 595432.6 -5027434 L 595094.5 -5027259 L 593434 -5026567 L 591849.8 -5027596 L 590389.4 -5027261 L 590045.3 -5027114 L 589015.1 -5026707 L 589289.1 -5026427 L 589997 -5025096 L 589471.8 -5024618 L 587158.4 -5024930 L 586284.1 -5024187 L 586193 -5023409 L 585701 -5023744 L 585458 -5023928 L 584331.8 -5023706 L 583871.7 -5023096 L 583762.6 -5021937 L 583323.5 -5021285 L 582688.4 -5021649 L 582052.4 -5023015 L 581004.3 -5023345 L 580694.3 -5023124 L 579731.1 -5022565 L 579399.9 -5020355 L 578957.9 -5020641 L 578924.9 -5020952 L 578779.9 -5021306 L 577944 -5023422 L 577570 -5023424 L 576729 -5024403 L 576600 -5025134 L 576021 -5025583 L 575642.9 -5025525 L 574678.8 -5024963 L 573622.7 -5025368 L 572932.6 -5025063 L 572612.5 -5023982 L 571360.3 -5023153 L 571451.2 -5021758 L 570721.1 -5021007 L 570439.1 -5020796 L 570350.1 -5021119 L 570159.1 -5021397 L 570132.1 -5021748 L 569715.1 -5023433 L 569716.1 -5023433 z " |
id="path627" /> |
<path |
d="M 567741.4 -4955317 L 567405.4 -4955497 L 565908.6 -4955657 L 565147.4 -4956483 L 565386.2 -4956774 L 566149.5 -4958066 L 566070.4 -4958435 L 565386.4 -4958777 L 564291.8 -4958463 L 564134 -4958156 L 563608.3 -4957713 L 563318.3 -4957898 L 563054.2 -4958185 L 562533.6 -4959989 L 560507.3 -4961723 L 559891.5 -4961502 L 559554.3 -4962159 L 559684 -4962887 L 559533.9 -4963238 L 559211.9 -4963399 L 558248.3 -4965639 L 557575.3 -4965889 L 557622.4 -4965514 L 556326.9 -4964967 L 554925.1 -4965414 L 554340.4 -4964933 L 552134.1 -4964576 L 551918 -4964866 L 551419.9 -4965384 L 551748.7 -4965568 L 552387.4 -4965967 L 552683.8 -4967394 L 552491.7 -4967715 L 551946.6 -4968148 L 551601.3 -4969203 L 550344.3 -4969927 L 550055.3 -4970084 L 549415.5 -4969938 L 549202.5 -4970215 L 547973 -4969647 L 547497.9 -4970146 L 547111 -4970147 L 546455.3 -4969743 L 546692 -4967847 L 545847.3 -4965324 L 546077.6 -4964588 L 545505.9 -4964218 L 544417.8 -4965105 L 543363.5 -4964152 L 542236.7 -4964406 L 539955.6 -4964028 L 539574.8 -4963962 L 538454.9 -4962540 L 538292.1 -4962202 L 537975.3 -4961977 L 537283.4 -4962328 L 536624 -4963684 L 535523.9 -4964708 L 535629.3 -4965830 L 534643.1 -4966981 L 534373.1 -4967253 L 533945.1 -4969778 L 533875 -4970138 L 532744.6 -4971749 L 532446.2 -4972880 L 532558 -4973258 L 532061.8 -4974059 L 531851.8 -4974292 L 532117.6 -4974536 L 532028.5 -4977298 L 531867.4 -4977647 L 531263.2 -4978626 L 530294.7 -4978166 L 529257.9 -4978584 L 528768.5 -4979951 L 528847.2 -4980706 L 528555.3 -4980532 L 527953.6 -4980222 L 527582.7 -4980306 L 526904.8 -4980625 L 526728.4 -4981751 L 528091.8 -4982304 L 528734.1 -4983644 L 528492.1 -4983930 L 527420.5 -4983639 L 526661.3 -4984813 L 525231.8 -4984498 L 526020.9 -4986197 L 525688.9 -4986370 L 523993.6 -4985790 L 523680.6 -4985993 L 523536.5 -4986349 L 522949.3 -4987326 L 523334.8 -4988380 L 523064.5 -4989488 L 524014.2 -4992351 L 523770.1 -4992933 L 522433.4 -4993274 L 521939.4 -4993754 L 522008.2 -4994106 L 521772 -4994770 L 522757.6 -4995184 L 523116.5 -4995199 L 523585.6 -4994622 L 524955.4 -4994041 L 525309.4 -4993910 L 527889.4 -4994963 L 527134.6 -4995030 L 526944.4 -4995761 L 525439.8 -4995724 L 524149.9 -4996490 L 524129.9 -4996490 L 523169 -4997134 L 522443.2 -4996928 L 522109.4 -4996733 L 521153.9 -4999200 L 521590.5 -5000193 L 520518.7 -5000460 L 519988.2 -5002614 L 520112.8 -5003758 L 520738.4 -5004701 L 520810 -5006227 L 520829.9 -5006611 L 519209.1 -5007340 L 518842.2 -5007284 L 518467.3 -5007379 L 517950.3 -5007922 L 517724.9 -5009825 L 516935.9 -5010606 L 517384.3 -5012780 L 517247.2 -5013532 L 516871.3 -5013553 L 515868.3 -5014556 L 514011.8 -5014367 L 513967.9 -5014005 L 512339.5 -5013198 L 512711.1 -5014575 L 512108 -5015424 L 512052.9 -5016118 L 511676 -5016046 L 510843.4 -5015272 L 509776.7 -5015078 L 508272.1 -5014935 L 507385.2 -5015610 L 506257.5 -5015517 L 506154.4 -5016242 L 507127 -5016708 L 507512.9 -5016679 L 508107.7 -5017150 L 508350.5 -5017882 L 507348.6 -5018403 L 506640.6 -5019304 L 507227.4 -5019731 L 508344.2 -5019622 L 508390.1 -5019999 L 508176.7 -5022202 L 507562.8 -5022649 L 509701.4 -5022320 L 510339.2 -5022671 L 510938.1 -5022261 L 511302 -5022301 L 513640.5 -5022441 L 513356.5 -5022702 L 513517.4 -5023427 L 514555.1 -5023842 L 515072.9 -5024403 L 515819.8 -5024439 L 516011.8 -5024104 L 516353.7 -5024417 L 516572.7 -5024360 L 516893.4 -5025771 L 517884.1 -5026797 L 517935.1 -5027158 L 518439.1 -5026708 L 519476.9 -5026628 L 519814.8 -5026736 L 521601.4 -5027538 L 521950.3 -5027730 L 522279.2 -5028286 L 522560 -5029427 L 522587 -5029817 L 522903.9 -5030026 L 523613.8 -5029824 L 524825.8 -5028386 L 524955.8 -5027651 L 525294.8 -5027482 L 526111.5 -5030168 L 527018.4 -5030145 L 527291.4 -5030324 L 527899.4 -5029345 L 528190.4 -5029085 L 529184.4 -5027944 L 529908.3 -5028177 L 530595.2 -5027856 L 531259.1 -5028194 L 532202 -5027835 L 532333 -5027523 L 532893.9 -5028023 L 534758.7 -5028015 L 535117.7 -5027892 L 535488.7 -5027988 L 535715.6 -5028700 L 536946.5 -5030121 L 538300.4 -5030793 L 538650.4 -5030949 L 539100.4 -5029112 L 540018.4 -5028423 L 540275.4 -5028131 L 542338.3 -5027692 L 542943.3 -5027237 L 543619.3 -5027517 L 543992.3 -5028180 L 544769.3 -5026381 L 544932.3 -5026021 L 545376.3 -5025403 L 545484.3 -5025038 L 545336.3 -5024735 L 545710.3 -5023176 L 546040.3 -5022984 L 547842.3 -5021094 L 548588.3 -5021182 L 549639.2 -5022252 L 549982.2 -5023306 L 551372.1 -5023882 L 551686.1 -5025394 L 552094.1 -5025982 L 552809.1 -5026068 L 553043.1 -5025793 L 553850.1 -5025052 L 554563.1 -5024864 L 554236.1 -5024234 L 554396.1 -5023585 L 554763.1 -5023663 L 555407.1 -5023609 L 555718.1 -5023696 L 556051.1 -5023545 L 556767.1 -5023544 L 557560.1 -5022841 L 558642.1 -5022949 L 558871.1 -5023181 L 559868.1 -5022563 L 560548.1 -5022717 L 561136.1 -5023135 L 561068.1 -5024964 L 561381.1 -5026035 L 561386.1 -5026409 L 561758.1 -5026456 L 562518.2 -5027183 L 563461.2 -5026582 L 563848.2 -5025943 L 564901.3 -5026263 L 564898.2 -5024763 L 565000.2 -5024400 L 565616.3 -5024800 L 566527.3 -5023679 L 567926.4 -5023227 L 569406.5 -5023224 L 569716.5 -5023434 L 570133.5 -5021749 L 570160.5 -5021398 L 570351.5 -5021120 L 570440.5 -5020796 L 570722.5 -5021008 L 571452.6 -5021759 L 571361.7 -5023153 L 572613.9 -5023983 L 572934 -5025064 L 573624.1 -5025369 L 574680.2 -5024963 L 575644.3 -5025525 L 576022.4 -5025584 L 576601.4 -5025135 L 576730.4 -5024404 L 577571.4 -5023425 L 577945.4 -5023422 L 578781.3 -5021307 L 578926.3 -5020953 L 578959.3 -5020641 L 579401.3 -5020356 L 579732.5 -5022566 L 580695.7 -5023125 L 581005.7 -5023346 L 582053.8 -5023015 L 582689.8 -5021650 L 583324.9 -5021285 L 583764 -5021938 L 583873.1 -5023097 L 584333.2 -5023706 L 585459.4 -5023928 L 585702.4 -5023745 L 586194.4 -5023410 L 586285.5 -5024188 L 587159.8 -5024931 L 589473.2 -5024619 L 589998.4 -5025097 L 589290.5 -5026428 L 589016.5 -5026708 L 590046.7 -5027114 L 590390.8 -5027262 L 591851.2 -5027597 L 593435.4 -5026567 L 595095.9 -5027259 L 595434 -5027435 L 596232.2 -5027128 L 596458.2 -5026928 L 596833.3 -5026965 L 597861.3 -5025474 L 598922.6 -5025851 L 598889.4 -5024489 L 599014.4 -5024169 L 600434.8 -5024116 L 600887 -5024675 L 601529.1 -5024554 L 601857.3 -5025464 L 602229.4 -5025363 L 604076.8 -5024968 L 604400.9 -5024769 L 605938 -5023138 L 606604 -5021787 L 606240.9 -5021822 L 603790.9 -5019668 L 605436.1 -5018107 L 606535.3 -5017807 L 606768.3 -5017556 L 606162 -5016755 L 606043.9 -5016030 L 605319.6 -5015166 L 607000.8 -5013218 L 607288.9 -5013454 L 608260.1 -5012980 L 608573.2 -5013653 L 610461.9 -5014806 L 610772 -5015012 L 611904.3 -5014956 L 612828.3 -5013290 L 613507.4 -5012938 L 613737.5 -5012631 L 614616.6 -5011958 L 615150.7 -5011040 L 615499.8 -5010917 L 615737.8 -5010745 L 616342.8 -5009318 L 616113.6 -5008576 L 615731.5 -5008501 L 615397.3 -5007912 L 615550.2 -5006543 L 615713.2 -5006228 L 615118.9 -5004488 L 614169.6 -5003966 L 614008.5 -5003241 L 613233.2 -5002459 L 612892 -5000634 L 612916 -5000256 L 613323 -4998851 L 613915.1 -4998408 L 614042.1 -4997691 L 613678 -4997710 L 612595.7 -4997826 L 612855.7 -4996869 L 612681.6 -4996666 L 612419.5 -4996613 L 611729.4 -4997494 L 611833.5 -4998927 L 610371.2 -5000057 L 609326 -4999888 L 607991.7 -5000317 L 607644.6 -5000400 L 607362.5 -4998585 L 609346.9 -4997512 L 609545.9 -4996408 L 608610.7 -4995893 L 608359.6 -4995605 L 607322.4 -4995953 L 606731.3 -4995503 L 606368.3 -4995402 L 606674.3 -4994069 L 606345.2 -4993922 L 606073.2 -4992920 L 605403.1 -4992661 L 605529.1 -4991574 L 606569.3 -4990498 L 607318.4 -4990581 L 607992.5 -4990243 L 608187.5 -4988751 L 608050.5 -4988392 L 606955.3 -4988302 L 606069.2 -4987733 L 605900.2 -4987406 L 603260.8 -4987612 L 601829.7 -4986488 L 601640.7 -4986149 L 601283.9 -4983577 L 602494.1 -4982707 L 602713.2 -4982161 L 602972.2 -4982014 L 603073.3 -4981303 L 601764.2 -4980813 L 601497.2 -4980570 L 600330.1 -4980539 L 598542 -4979750 L 596843.8 -4980603 L 596578.8 -4980369 L 595955.8 -4980041 L 595851.1 -4978199 L 595436.2 -4977155 L 595432.2 -4976777 L 595160.2 -4976511 L 593372.4 -4974592 L 593505.5 -4974366 L 592930.6 -4973933 L 592585.1 -4971506 L 591541.2 -4970982 L 590802.4 -4970084 L 589243.4 -4970070 L 587740.3 -4970497 L 587362.3 -4970542 L 585380.6 -4969598 L 585111.6 -4969467 L 584564.6 -4969528 L 584197.6 -4969518 L 581507.7 -4969812 L 580714 -4969068 L 580057.7 -4966804 L 580356.7 -4966585 L 580749 -4965565 L 580516.1 -4965249 L 579779.2 -4965094 L 579229.1 -4965553 L 578429.6 -4964323 L 577347.5 -4965196 L 577031.7 -4964589 L 577496 -4963507 L 577091.2 -4962967 L 576809.2 -4963211 L 575928.1 -4963896 L 575587.8 -4964954 L 575241.9 -4964798 L 574201.2 -4964336 L 574121.3 -4963965 L 573547.2 -4961411 L 572086.2 -4959257 L 572596.4 -4958389 L 572644.4 -4958239 L 572399.5 -4958020 L 571757.7 -4957886 L 571389.8 -4957761 L 570691.1 -4957456 L 570356.6 -4956350 L 568515.9 -4956598 L 567741.6 -4955318 L 567741.4 -4955317 z " |
id="path628" /> |
<path |
d="M 494947.3 -5334633 L 496111.9 -5334741 L 496703.6 -5333743 L 496975.3 -5333464 L 498058.3 -5333211 L 498760.8 -5333399 L 499237.4 -5332380 L 499839.4 -5332220 L 499970 -5332577 L 500665 -5332423 L 501097.2 -5331791 L 501400 -5331556 L 501708.3 -5331004 L 500857.5 -5329338 L 502289 -5329331 L 502742 -5327203 L 502867.5 -5326859 L 503410.3 -5326623 L 503386.8 -5326291 L 503373.7 -5324874 L 503429.2 -5324522 L 504159.2 -5323675 L 505549 -5323182 L 506399.3 -5322484 L 506773.4 -5322488 L 506413.3 -5321848 L 506941.1 -5320887 L 508589.6 -5320103 L 508927.5 -5319955 L 508658 -5319672 L 507280.5 -5318987 L 507608.1 -5317958 L 508672.9 -5317536 L 508693.8 -5316044 L 508816 -5315479 L 509108.2 -5315526 L 508833.1 -5314851 L 509244.4 -5314220 L 509216.3 -5313443 L 508119.4 -5312422 L 507509.6 -5310597 L 507173.6 -5310713 L 506271.5 -5310177 L 505527.7 -5309074 L 504517.9 -5308765 L 504364.4 -5308411 L 503665.7 -5308090 L 503248.5 -5306632 L 501934.5 -5306242 L 500525.5 -5305906 L 500795.6 -5305202 L 500180.9 -5304846 L 500496.9 -5302602 L 499255.3 -5301740 L 500996 -5301058 L 501378.1 -5301040 L 501647.9 -5300806 L 502163.8 -5299136 L 501926.7 -5298424 L 500669.4 -5297796 L 500677.4 -5297040 L 501081.7 -5296421 L 500786.7 -5295764 L 501116.7 -5295708 L 501450.8 -5295713 L 501444.3 -5295333 L 501691.9 -5294235 L 501406.8 -5292747 L 501032.7 -5292756 L 498792.9 -5292715 L 498159.1 -5292315 L 497927.6 -5292029 L 496213.2 -5291396 L 495663.8 -5290454 L 494936.6 -5290510 L 494794.1 -5290171 L 494416.9 -5290124 L 493096.4 -5290854 L 492756.1 -5290700 L 492102.4 -5290357 L 488864.9 -5290005 L 488670.4 -5289664 L 489005.1 -5288553 L 488558 -5286273 L 488265.6 -5286012 L 488449.8 -5285331 L 488286.3 -5285017 L 489199.8 -5284360 L 490444.3 -5285237 L 490875.7 -5284638 L 490584.2 -5283564 L 490914.1 -5283374 L 491258 -5283206 L 491590.9 -5283019 L 493917.3 -5281199 L 493463.4 -5279788 L 494217 -5278526 L 494892.3 -5278594 L 495219.2 -5278427 L 495936.1 -5277357 L 496166.9 -5277110 L 495072.5 -5276296 L 494807.1 -5276081 L 494648.2 -5275384 L 494516.7 -5275039 L 495361.3 -5272896 L 495007.3 -5272207 L 495515.2 -5271173 L 496537.9 -5270648 L 496952.3 -5269197 L 497700.3 -5269004 L 497828.9 -5268639 L 497471.6 -5268471 L 496480.8 -5267300 L 496119.8 -5267436 L 493146.8 -5268253 L 492774.8 -5267546 L 492506.4 -5267308 L 490818.2 -5266781 L 490450.1 -5266764 L 489696 -5266039 L 488805.4 -5266596 L 487941.3 -5265917 L 488069.9 -5265541 L 490148.8 -5263193 L 489841.4 -5262955 L 487630.9 -5262238 L 486499.7 -5260711 L 485008.8 -5260313 L 484718 -5260570 L 484335 -5260634 L 484116.3 -5260954 L 483289 -5262618 L 481714.8 -5263705 L 480220.6 -5263882 L 479407.9 -5265170 L 479055.5 -5264963 L 478781.7 -5263535 L 478917 -5262079 L 478633.2 -5261430 L 479055.6 -5260815 L 478903.1 -5260466 L 478084 -5259746 L 475955.6 -5259079 L 475631.5 -5259098 L 474677.4 -5259248 L 474318.4 -5259369 L 473696.2 -5260214 L 473675.4 -5262108 L 470384.6 -5263896 L 470485 -5264232 L 470747.3 -5265249 L 470028.5 -5266428 L 469724.6 -5266632 L 468974.3 -5267430 L 467541.1 -5267600 L 467071.2 -5268588 L 466829.5 -5268885 L 465375.6 -5269283 L 463521.8 -5269036 L 462480.9 -5268565 L 461338.6 -5268595 L 461262 -5268981 L 458733.3 -5271447 L 458069.8 -5272867 L 457370 -5273226 L 457020.7 -5273056 L 454523.7 -5271999 L 454062.8 -5271374 L 452960.2 -5271123 L 452431.4 -5270554 L 451494.9 -5271184 L 450246.4 -5272685 L 448757.6 -5273149 L 447543.5 -5274133 L 447235.7 -5274381 L 446527.9 -5274730 L 446236.7 -5275447 L 445874.6 -5275406 L 442439.7 -5274580 L 442485.2 -5274957 L 442576.5 -5276833 L 441088.3 -5279463 L 440053.8 -5279265 L 440020.7 -5280761 L 439842.9 -5281002 L 439476.6 -5280881 L 437275.2 -5280189 L 435743.8 -5280173 L 434899.5 -5280897 L 434156.5 -5281024 L 432997.1 -5280118 L 432633.2 -5280240 L 432349 -5280943 L 430157.1 -5281498 L 429808.8 -5281332 L 429402.9 -5280696 L 425225.2 -5281031 L 424589.5 -5280619 L 424177.1 -5279576 L 423178 -5279731 L 422825.7 -5279598 L 421897.7 -5279011 L 421255 -5279360 L 420182.7 -5279355 L 419840.8 -5281110 L 419119.7 -5281190 L 418095.9 -5280789 L 417722.9 -5280861 L 416974.5 -5280730 L 416359.9 -5281175 L 414487.2 -5280998 L 414286.9 -5282409 L 413653.9 -5282506 L 413282.7 -5282387 L 412839.9 -5281835 L 412920.6 -5279176 L 410359 -5278449 L 409828.2 -5277887 L 409672.2 -5277123 L 409054.5 -5276647 L 408695.6 -5276772 L 407886.3 -5277556 L 408039.2 -5278298 L 407735.4 -5278527 L 405509.4 -5278992 L 405017 -5279566 L 404170.3 -5282470 L 403684.9 -5283026 L 403532.3 -5283377 L 403867.6 -5283563 L 404189.9 -5283772 L 404016.3 -5284123 L 403109.8 -5286294 L 403070.3 -5287463 L 401698.8 -5288170 L 400150.5 -5288272 L 398859.3 -5289151 L 398602.5 -5289379 L 396903.5 -5290540 L 396772 -5290172 L 396122.5 -5288337 L 393356.9 -5286935 L 393384.4 -5287328 L 393701.8 -5287555 L 394518.1 -5288393 L 390823.4 -5291771 L 391056.8 -5292064 L 392616.4 -5293678 L 392320.6 -5293875 L 392561.8 -5294763 L 392306.1 -5295026 L 390406.2 -5297058 L 389387.3 -5297332 L 389450.8 -5297699 L 389722.8 -5298359 L 390086.4 -5299452 L 391072.4 -5299978 L 393717.9 -5302724 L 393711.4 -5303098 L 394112.4 -5303729 L 393421 -5305011 L 393603.5 -5305312 L 393307.3 -5305945 L 393461.3 -5306625 L 393215.6 -5306924 L 391585.4 -5308574 L 389501.1 -5309540 L 389298.5 -5309850 L 389596.6 -5311265 L 390146.5 -5311762 L 391553.5 -5312175 L 391838.9 -5312412 L 391177.2 -5312744 L 391247.7 -5313114 L 392511.9 -5314380 L 392575.6 -5316231 L 392263.2 -5316026 L 391575.3 -5316234 L 389224.5 -5315458 L 389252.2 -5317313 L 389346.2 -5318661 L 388872.7 -5320462 L 389771.9 -5321114 L 390874.8 -5320849 L 391428.5 -5321229 L 390847 -5321706 L 391241.1 -5322351 L 392794.2 -5321430 L 394184.1 -5321070 L 394314.6 -5320733 L 394681.7 -5320752 L 395259.8 -5322077 L 396350.3 -5322214 L 396907.1 -5322667 L 397118.3 -5324050 L 396973.8 -5324396 L 397172.3 -5324713 L 399896.4 -5325597 L 400462.2 -5324663 L 401113.1 -5324499 L 401863.9 -5325563 L 402051.4 -5325831 L 403266.4 -5324939 L 403484 -5324630 L 404963.7 -5324824 L 406444.6 -5324455 L 407820 -5325102 L 408149.8 -5324904 L 408647.8 -5325466 L 410097.6 -5325725 L 410298.7 -5326437 L 410509.6 -5327000 L 412768.8 -5326089 L 413128.8 -5326026 L 413295.9 -5326746 L 415108 -5326469 L 415162.2 -5327220 L 415148.8 -5327599 L 416399.6 -5327896 L 416853.5 -5328413 L 417014 -5328729 L 417778 -5331162 L 418404.7 -5331470 L 418759.6 -5331325 L 419367.7 -5333235 L 418611.5 -5333255 L 418113.7 -5334769 L 418462.8 -5334760 L 419117.2 -5335537 L 419343.7 -5335804 L 419912.5 -5336237 L 420473.9 -5335776 L 421756.1 -5336344 L 422822 -5336116 L 423137.8 -5335929 L 423111 -5336715 L 423065.6 -5337112 L 421817.4 -5338482 L 422135.6 -5339167 L 423197.8 -5338515 L 423623.9 -5339127 L 422630.7 -5341667 L 422783.4 -5342724 L 422949 -5343048 L 422859.5 -5343339 L 422628.8 -5344211 L 422931.5 -5345206 L 423825.6 -5345733 L 424090 -5345964 L 424419 -5346497 L 424582.5 -5346769 L 425071.9 -5348751 L 426196.9 -5348597 L 427664.9 -5348947 L 428717.7 -5348661 L 429334.6 -5349103 L 429434.6 -5349688 L 432017 -5349551 L 432948.1 -5350676 L 433605.8 -5350974 L 433976.9 -5350946 L 433817.6 -5350183 L 433731 -5349804 L 436001 -5350039 L 437515.2 -5349930 L 437578.8 -5350271 L 437067.4 -5350715 L 436956.9 -5351044 L 436876.1 -5351758 L 437936 -5351547 L 438223.4 -5351768 L 438740.1 -5351529 L 439011.3 -5351622 L 439133.2 -5352736 L 440950.5 -5355067 L 441503.1 -5354141 L 442764.1 -5353362 L 443838.4 -5353374 L 443208.8 -5351869 L 443961.8 -5351757 L 443723.3 -5350250 L 443713.7 -5349866 L 444436.4 -5350195 L 445241.6 -5351439 L 445511.1 -5351700 L 447548.5 -5350996 L 447812 -5351258 L 448739.7 -5353350 L 449094.1 -5353508 L 449758.1 -5353399 L 449994.6 -5353641 L 450798.2 -5352075 L 451934 -5351136 L 452980.9 -5350933 L 454795.3 -5351483 L 455113.3 -5352028 L 455419.7 -5352254 L 456519.6 -5350188 L 456740.1 -5349859 L 456623.8 -5346611 L 456659.2 -5346242 L 456775.7 -5345926 L 457800.3 -5344917 L 458133.1 -5344732 L 458458.4 -5344871 L 458995.8 -5344417 L 460008.6 -5344726 L 460284 -5344948 L 460851.4 -5344450 L 461126.8 -5343400 L 461389.4 -5343129 L 462693.7 -5343093 L 463023.8 -5343072 L 463101.1 -5342010 L 463693.9 -5341779 L 463591.7 -5340384 L 463835.8 -5340382 L 464011.6 -5338937 L 464239.2 -5338645 L 464033.3 -5338107 L 463669.1 -5338007 L 463169.9 -5336668 L 463608.2 -5334878 L 462962.6 -5333948 L 462644.9 -5334172 L 461252.6 -5334855 L 460968.5 -5334180 L 460396.7 -5333758 L 460557.2 -5333425 L 459581.6 -5331940 L 458322.1 -5331200 L 458200 -5330536 L 459177.9 -5330296 L 459410.3 -5330541 L 460798.3 -5330922 L 463751.6 -5330549 L 464117.6 -5330470 L 464084.1 -5330827 L 465035 -5331894 L 465268.5 -5332166 L 467728.2 -5332187 L 468265.8 -5331181 L 469839.2 -5331154 L 472480.1 -5331891 L 472868.3 -5331958 L 474489.2 -5330229 L 474722.8 -5329906 L 474932.9 -5329919 L 475524.8 -5330416 L 477836.4 -5330371 L 479027.9 -5331767 L 481105.8 -5332591 L 481468 -5332677 L 481401 -5333372 L 480226.6 -5334654 L 480081.1 -5334976 L 481437.7 -5334427 L 483075.9 -5334905 L 483396.3 -5335086 L 484084.2 -5334856 L 484732.9 -5335157 L 485621.5 -5334716 L 485582.9 -5334355 L 484835.4 -5333556 L 484643.1 -5332103 L 484757.6 -5331753 L 484972.7 -5331093 L 486009.8 -5330978 L 486347.8 -5330892 L 486530.4 -5331237 L 487647.3 -5331584 L 489597.8 -5333470 L 489776.4 -5333819 L 490086.6 -5333867 L 491888.6 -5334140 L 492248.8 -5334195 L 494562.1 -5334570 L 494947.3 -5334634 L 494947.3 -5334633 z " |
id="path629" /> |
<path |
d="M 345449.6 -4915884 L 345121.4 -4917266 L 344456.8 -4917433 L 345066.6 -4918245 L 345317.9 -4918486 L 345187.4 -4918833 L 345331.3 -4919909 L 345049 -4921350 L 344541 -4921665 L 344238.2 -4921741 L 344072.8 -4922077 L 342971.2 -4921999 L 342992.9 -4922711 L 342251.2 -4923515 L 342388.7 -4924251 L 342220.3 -4924586 L 342566.1 -4925621 L 342380 -4926342 L 342431.3 -4926713 L 341583.6 -4927073 L 341332.6 -4927249 L 341831.2 -4928311 L 341969.3 -4929853 L 340731.4 -4932277 L 339915.8 -4933094 L 339855.5 -4933876 L 339318.1 -4934445 L 340255.2 -4934976 L 341313.5 -4934752 L 341712.7 -4933816 L 341807.2 -4933465 L 343729.5 -4935634 L 344055.9 -4935808 L 344175.7 -4935832 L 345053.7 -4936460 L 346171.3 -4936631 L 346651.9 -4937194 L 346828.5 -4937927 L 346927 -4937574 L 347602.8 -4937313 L 348675.8 -4937283 L 349040.5 -4937257 L 348767.3 -4938186 L 349083.8 -4938282 L 348534.1 -4939642 L 349452.3 -4940826 L 350765.1 -4942005 L 351060.5 -4942214 L 352629.5 -4943800 L 352969.9 -4943960 L 353109.2 -4944325 L 352671.7 -4946185 L 352939.1 -4946422 L 352738.1 -4947821 L 352732.6 -4948178 L 353872.2 -4948393 L 354353.8 -4949009 L 355439.1 -4949441 L 358546.2 -4949447 L 358924.7 -4949545 L 358940.5 -4949705 L 359372.2 -4950300 L 360403.7 -4950666 L 360816.3 -4952067 L 361912.9 -4952361 L 362388.6 -4952952 L 362611.4 -4953671 L 363598.6 -4952875 L 363937.4 -4952798 L 364878.4 -4954330 L 364884.4 -4955757 L 365045.8 -4956086 L 365984.4 -4955759 L 366291.3 -4955629 L 366770.7 -4957920 L 365733.1 -4959029 L 365406.1 -4959213 L 364878.9 -4959720 L 365424.1 -4960678 L 365337.7 -4961042 L 364604.2 -4961155 L 365241.5 -4962020 L 366890.2 -4962695 L 367183.7 -4962900 L 369321.6 -4963144 L 369645.1 -4963323 L 369938.7 -4963420 L 370244.4 -4963460 L 370042.7 -4966496 L 370423.5 -4967165 L 371436.9 -4966966 L 372260.3 -4967688 L 373356.6 -4967565 L 373388.3 -4967759 L 373619.4 -4969124 L 373924.9 -4969295 L 374111.7 -4970177 L 374312.7 -4970058 L 374528.6 -4969970 L 375686.6 -4970046 L 376358.6 -4970420 L 376548 -4970760 L 376579.6 -4971061 L 376386.7 -4971941 L 376062.9 -4972026 L 374980.8 -4972794 L 374815.6 -4973085 L 374722.6 -4974023 L 374114.9 -4974183 L 375167.9 -4975218 L 376582.8 -4975249 L 375953.9 -4977308 L 376000.7 -4978287 L 375618.9 -4978323 L 374885.9 -4979665 L 374952.6 -4980787 L 374546.2 -4981407 L 374644.7 -4983588 L 374211.4 -4985057 L 376100.6 -4985473 L 377317.8 -4986400 L 378257.8 -4985789 L 379603.2 -4986447 L 379605.4 -4987204 L 379825.3 -4987182 L 381886.5 -4988563 L 383219.3 -4988891 L 383544.9 -4989067 L 384612.1 -4989090 L 384871.4 -4987598 L 385503.3 -4987279 L 387014.1 -4988486 L 389594.9 -4987976 L 389921.9 -4987770 L 389983.4 -4987254 L 390037 -4987632 L 391469.9 -4987723 L 391832.8 -4987607 L 393000.7 -4986868 L 393355.5 -4986802 L 393447.1 -4986098 L 394854.8 -4984450 L 395535.5 -4984332 L 395872.3 -4984253 L 396243.9 -4983352 L 396477 -4983125 L 397108.9 -4982736 L 397341 -4982444 L 397642.3 -4980880 L 397736.6 -4980559 L 397898.8 -4980274 L 398063.7 -4980297 L 399110 -4980248 L 399881.2 -4979518 L 400239.9 -4979519 L 400868.9 -4979093 L 401364 -4977677 L 401251.4 -4977314 L 400977.8 -4977088 L 402265.5 -4976434 L 402605.9 -4975787 L 402805.1 -4975480 L 402849.2 -4975370 L 403077.7 -4975663 L 403643.8 -4976135 L 403745 -4976842 L 403970.1 -4976584 L 404971.3 -4975661 L 404859.1 -4974983 L 404909.1 -4974992 L 405650.7 -4975822 L 406413.3 -4975732 L 407040.5 -4976113 L 407182.1 -4976471 L 407258.3 -4977179 L 407712.5 -4977614 L 407911 -4976930 L 408243.9 -4976804 L 408910.4 -4977812 L 411765.4 -4978898 L 411875.6 -4979628 L 413427 -4981310 L 414955.9 -4981354 L 415684 -4980719 L 415968 -4980569 L 416042.3 -4979054 L 416418.5 -4978526 L 416796.3 -4978485 L 417246.4 -4979129 L 419451.5 -4980739 L 421340 -4980998 L 423913.8 -4981610 L 424252.4 -4981793 L 425302.5 -4980866 L 425645.2 -4980984 L 426651.4 -4978886 L 427016.8 -4978203 L 426653.7 -4976342 L 428684.8 -4974672 L 428896.3 -4973938 L 429129.4 -4973632 L 427326.8 -4972338 L 427241.9 -4971184 L 427933.1 -4969401 L 428239.1 -4969198 L 429776.4 -4966706 L 430555.4 -4966180 L 430593.7 -4965852 L 431296.7 -4964249 L 431532.8 -4963978 L 431895.6 -4963942 L 433612.6 -4962655 L 433580 -4961207 L 433815.5 -4960530 L 434011.7 -4960229 L 433867.4 -4959609 L 433755.8 -4959307 L 433442.1 -4958274 L 432696.8 -4958165 L 432357.2 -4957998 L 432212.3 -4957964 L 432189.7 -4957585 L 432537.9 -4956119 L 432474.7 -4955390 L 432077.8 -4952764 L 430891.3 -4951276 L 430625.7 -4950162 L 430845.8 -4949927 L 431270 -4949445 L 431639.6 -4949532 L 432573.2 -4950153 L 432878.2 -4949926 L 434485.7 -4947370 L 434253.2 -4947081 L 433431.2 -4945919 L 433667.3 -4945643 L 434034.7 -4945021 L 433696.7 -4944408 L 433676.9 -4943329 L 433905 -4943082 L 434239.8 -4943046 L 436466.1 -4941132 L 436670.3 -4940812 L 436801.4 -4939723 L 435880.8 -4939130 L 435923.6 -4938378 L 435519.7 -4937738 L 434926.8 -4938072 L 433658.8 -4938160 L 433638.8 -4938150 L 433406.3 -4937861 L 432269.5 -4935970 L 431913.9 -4935871 L 430822.9 -4935850 L 430246.3 -4936730 L 429394.7 -4936165 L 428419.7 -4935993 L 427972.5 -4936480 L 427739.4 -4936726 L 426516.5 -4937516 L 425289.9 -4935611 L 425023.9 -4935795 L 425277.8 -4936519 L 424919.4 -4937091 L 422978.6 -4935907 L 422440.7 -4934582 L 422374.8 -4934558 L 422027.3 -4934376 L 420483.6 -4934462 L 418886.4 -4933402 L 418506.6 -4932714 L 418045.8 -4932117 L 417876.4 -4931780 L 417790 -4931406 L 416760.4 -4930294 L 415985.4 -4930109 L 415605.8 -4930092 L 414387.7 -4928770 L 413643.5 -4928701 L 413034.3 -4928541 L 413689.8 -4926957 L 413423.4 -4926700 L 412763.7 -4926915 L 412539.9 -4928370 L 411551.2 -4928859 L 411181.7 -4928777 L 410677.4 -4926469 L 410321.7 -4926490 L 409992 -4926518 L 409065.4 -4926863 L 407337.3 -4926028 L 407297.9 -4925638 L 407800.2 -4925047 L 407930.6 -4924678 L 408259.3 -4923980 L 407968.3 -4922088 L 408145.2 -4921329 L 409897.6 -4919840 L 409907.7 -4919790 L 409709.4 -4919455 L 409959.4 -4917921 L 409516.4 -4916855 L 409947.9 -4916208 L 411285.6 -4914827 L 411664.8 -4913746 L 412601.8 -4913068 L 412741.2 -4912706 L 412797.7 -4912324 L 412399.1 -4911676 L 411263.1 -4911790 L 410699.2 -4910825 L 410486.9 -4910500 L 408422.3 -4909712 L 407902.4 -4909971 L 407708.1 -4910284 L 407344.6 -4910196 L 406626.7 -4910001 L 406033.3 -4908726 L 404978.6 -4909228 L 404517.2 -4909817 L 404420.7 -4910196 L 404088.2 -4910097 L 403442.2 -4909889 L 403234.5 -4909227 L 402616.1 -4909244 L 402965.8 -4908559 L 402509.3 -4907944 L 401781.4 -4907741 L 400702 -4908752 L 399222 -4909119 L 398586.2 -4908195 L 396440.5 -4907627 L 396129.5 -4907853 L 395821.1 -4907672 L 393968.9 -4906035 L 393615.2 -4906087 L 393545.2 -4905548 L 393488.8 -4905253 L 393146.1 -4905308 L 392664.1 -4904436 L 392381.1 -4904647 L 392015.3 -4905939 L 391665 -4905760 L 390914.5 -4905988 L 390791.5 -4905450 L 391920.9 -4904475 L 391439.3 -4903399 L 390416.1 -4903045 L 389160 -4903949 L 389318.8 -4905719 L 389275.2 -4906086 L 388905.8 -4905986 L 388146.7 -4905938 L 387692.2 -4906539 L 386961 -4906540 L 386617.7 -4906374 L 385872.3 -4906505 L 385615.1 -4906224 L 385968.2 -4904766 L 385081.4 -4904063 L 385142 -4903688 L 386038.1 -4903006 L 386348.7 -4901905 L 386741.9 -4900940 L 386455.3 -4900347 L 386171 -4900143 L 385677.2 -4899220 L 383524.7 -4898687 L 383177.4 -4898528 L 382254.3 -4899197 L 382012.1 -4899492 L 381340.9 -4901181 L 381830.6 -4902159 L 380878.8 -4903271 L 380647.5 -4903566 L 379608.2 -4903307 L 378914.7 -4903488 L 378700.7 -4904174 L 377844.6 -4904778 L 376984.5 -4903125 L 376292.9 -4902798 L 376078.2 -4901677 L 374317.8 -4900276 L 373951.4 -4900165 L 373737.5 -4900251 L 373473.2 -4900014 L 371405 -4898762 L 371013.5 -4898743 L 369494.6 -4897537 L 368398 -4895935 L 366918.8 -4898586 L 365187.9 -4899098 L 364139.7 -4898821 L 362786 -4899534 L 362417.3 -4899636 L 362598.5 -4899920 L 362700.3 -4901538 L 363047.6 -4901689 L 364204.5 -4902618 L 364211.1 -4903373 L 363552.3 -4903675 L 364355.8 -4906132 L 364037 -4906229 L 362653.6 -4905685 L 361829 -4904905 L 360695.2 -4904966 L 360458.9 -4905264 L 360282.7 -4904939 L 360035.7 -4903501 L 359525.1 -4903101 L 359407.6 -4903453 L 359076.7 -4904117 L 358070 -4904574 L 357055.8 -4903728 L 356302.3 -4904991 L 355646.2 -4904953 L 355172.7 -4905507 L 354808.1 -4905501 L 354532 -4905734 L 354273 -4906404 L 354431.5 -4908146 L 354151.2 -4907924 L 353618.7 -4907448 L 352883.3 -4908107 L 352227.6 -4907841 L 350945.1 -4908922 L 350587.5 -4908941 L 349973.5 -4908807 L 349780.2 -4909081 L 348927.8 -4909832 L 349293.7 -4911255 L 348563.9 -4912126 L 347937.8 -4912554 L 347195.6 -4912567 L 346753 -4913176 L 347127.4 -4913273 L 347805.1 -4914631 L 348555.4 -4914531 L 349989.7 -4915093 L 350751.9 -4915063 L 351036.1 -4915312 L 350975.4 -4916804 L 350928.2 -4917469 L 348872.7 -4917343 L 348525.2 -4917300 L 348176.9 -4917132 L 346959 -4916192 L 345449.3 -4915883 L 345449.6 -4915884 z " |
id="path630" /> |
<path |
d="M 345449.6 -4915884 L 345154.4 -4915648 L 345131.5 -4914530 L 344067.4 -4914145 L 342284.5 -4914660 L 342085.3 -4914354 L 340666.5 -4914570 L 340063.4 -4914965 L 338955.7 -4913921 L 336340.6 -4913988 L 335840.3 -4913407 L 335675.6 -4912322 L 335585.7 -4912323 L 335540 -4912707 L 335334.8 -4915017 L 334275 -4916085 L 333989.9 -4916804 L 333621.4 -4916777 L 333270 -4916659 L 332935.5 -4916584 L 332026.1 -4916269 L 331899.6 -4915600 L 331683.4 -4915309 L 331348 -4914671 L 331805.4 -4913709 L 331680.9 -4913028 L 331997.4 -4912612 L 331885.2 -4912287 L 330930.6 -4910656 L 330623.2 -4910548 L 330116.6 -4910142 L 330237.1 -4909822 L 329772.2 -4908560 L 330910.3 -4908359 L 331471.7 -4907352 L 331778.8 -4907118 L 333141.3 -4907553 L 333495.6 -4907687 L 333876 -4906790 L 334031.4 -4906494 L 335781.1 -4904626 L 336160.7 -4904611 L 335997.6 -4904283 L 335339.1 -4903427 L 334306.6 -4903805 L 334662.9 -4902003 L 333535.2 -4900589 L 334272.5 -4899993 L 334323.1 -4899680 L 332130.1 -4895269 L 331766.4 -4895373 L 328776.6 -4895677 L 328671.8 -4895652 L 328512.7 -4895337 L 328168.5 -4894722 L 328138.8 -4893672 L 328956.1 -4893517 L 329440.6 -4892998 L 330406.3 -4893489 L 331030.3 -4893095 L 331004.1 -4892724 L 330861 -4892389 L 330839.7 -4890723 L 331274.2 -4889761 L 331105.1 -4889442 L 330467.2 -4889764 L 330144.7 -4888842 L 329240.1 -4888287 L 328342 -4888427 L 328131.5 -4888756 L 325403.8 -4890227 L 323497.7 -4890495 L 322786.2 -4890252 L 323352.8 -4889211 L 323536.4 -4888858 L 323334.3 -4888565 L 323150.9 -4887544 L 323560.5 -4886606 L 323299.3 -4886854 L 322236.5 -4886953 L 321698.2 -4887407 L 321532.2 -4887077 L 320003.5 -4886103 L 319469.1 -4884845 L 319429.9 -4884090 L 318774.9 -4883177 L 318604.9 -4882438 L 318878.1 -4881742 L 318654.1 -4881447 L 316894.7 -4880950 L 316161.5 -4881047 L 315917.5 -4880768 L 315052.5 -4879614 L 314100.5 -4879320 L 313808.3 -4877897 L 313535.3 -4877630 L 312429.4 -4877405 L 311785 -4878340 L 311709.4 -4879451 L 310118.7 -4880248 L 310033 -4880609 L 309350.9 -4881883 L 307527.4 -4883131 L 307688.4 -4883466 L 307005 -4883619 L 306365.3 -4883420 L 305719.2 -4883020 L 304920.5 -4881687 L 304229.2 -4881367 L 303211.1 -4881174 L 302587.8 -4880828 L 302326.5 -4881086 L 301325.4 -4881309 L 300470.9 -4881976 L 299884 -4880651 L 299822.2 -4880998 L 299326.8 -4881436 L 298631 -4881331 L 298387.7 -4881586 L 298354.6 -4881227 L 296303.3 -4881279 L 296206.2 -4880972 L 295542.8 -4880306 L 295511.4 -4880081 L 295273.5 -4879782 L 294830.7 -4878369 L 294446.1 -4878426 L 292944.4 -4878350 L 292013.3 -4877719 L 291246.4 -4877713 L 290249.9 -4876531 L 289578.7 -4876194 L 289203 -4876294 L 288328.3 -4877054 L 285336.5 -4876342 L 284605.9 -4876594 L 284544.9 -4876235 L 284765.4 -4875177 L 283750.7 -4874846 L 283523.8 -4874565 L 281912 -4875351 L 281207.9 -4875379 L 281025.3 -4875714 L 280136.1 -4876261 L 279395.5 -4876126 L 278001.9 -4876740 L 278031 -4878182 L 277736.7 -4878078 L 276901.9 -4878080 L 276588.8 -4878274 L 275177.9 -4877495 L 274853.8 -4877320 L 274565.8 -4877476 L 273826.5 -4876114 L 272564.7 -4875260 L 272487.1 -4873709 L 272113.5 -4873043 L 271767.4 -4872883 L 270327.2 -4873352 L 270580.7 -4875235 L 269478.7 -4876192 L 269511.7 -4875821 L 267859 -4874411 L 266733.4 -4874488 L 265682.1 -4874078 L 265341.1 -4874248 L 264361.9 -4876285 L 264271.8 -4877794 L 264368.7 -4878161 L 264330.7 -4878545 L 264233.8 -4878920 L 265003.5 -4878993 L 265536.3 -4879525 L 266562.9 -4883182 L 267176.8 -4883647 L 267804.5 -4885296 L 267715.6 -4885674 L 269648.8 -4887635 L 270679.9 -4888202 L 270616.1 -4888550 L 270313.8 -4889185 L 270649.9 -4889731 L 270266.3 -4889775 L 262592.1 -4890724 L 262397.5 -4891049 L 259622.1 -4892964 L 259602.1 -4892968 L 255503.8 -4893212 L 255129.3 -4893227 L 254768.4 -4893362 L 252923.4 -4893881 L 251416.5 -4893820 L 250750.4 -4893453 L 249603.5 -4893605 L 249614.4 -4894003 L 249770.3 -4899175 L 248987.2 -4901847 L 249299.3 -4902045 L 250196.5 -4902688 L 250441.4 -4903376 L 250751.6 -4903160 L 251165.6 -4902579 L 251868.3 -4902349 L 253198.9 -4903033 L 254475.7 -4904422 L 254959.5 -4903879 L 255177.6 -4904145 L 256107.8 -4905959 L 256412.9 -4906184 L 257714.7 -4906818 L 257052 -4908973 L 257709.3 -4909341 L 257496.8 -4909658 L 256014 -4911885 L 254432.9 -4913449 L 254229.7 -4913643 L 253818.2 -4914023 L 254435.1 -4915787 L 255172.5 -4915699 L 256016.7 -4916427 L 257489.1 -4916391 L 257855.5 -4916458 L 258153.2 -4916445 L 258439.1 -4916364 L 259913.6 -4917534 L 260659.7 -4917549 L 261674.7 -4917079 L 262431 -4917851 L 261646.1 -4918589 L 262144.3 -4919110 L 262301.3 -4919455 L 262111.9 -4919724 L 261405.1 -4920386 L 260034.5 -4922985 L 260586.9 -4923419 L 260495.2 -4923764 L 260421.6 -4924473 L 260822.9 -4925432 L 261447.6 -4925681 L 261673.7 -4925953 L 261470.5 -4926982 L 260896.2 -4927393 L 260543.8 -4927291 L 260056.3 -4928151 L 259970.5 -4930697 L 260010.4 -4932023 L 260068.6 -4932370 L 261020.5 -4933729 L 261343 -4933821 L 261483.3 -4934090 L 261754.7 -4934227 L 262126.4 -4934209 L 262825.7 -4935075 L 261390.5 -4937169 L 261409.7 -4937542 L 262786.7 -4936469 L 263113.7 -4936336 L 263779.4 -4937095 L 264079.6 -4937309 L 264501.4 -4937685 L 266637.3 -4937200 L 266923.6 -4936955 L 267351.1 -4937910 L 268017.6 -4938750 L 268303 -4939806 L 268135.9 -4940878 L 270002 -4941393 L 270382.4 -4941486 L 270664.8 -4941659 L 270900.1 -4941893 L 270965 -4941927 L 272254.1 -4943210 L 273301.6 -4943426 L 273668.2 -4943437 L 273969.5 -4944123 L 272819.7 -4945521 L 272798 -4946843 L 273026.3 -4947089 L 273414.3 -4946414 L 274505.9 -4946083 L 274896.5 -4946087 L 275194.2 -4947551 L 275655.6 -4948154 L 275907.8 -4948438 L 276291.5 -4948907 L 276412.8 -4949184 L 276221.3 -4949526 L 275220.2 -4950021 L 274872.1 -4950260 L 274216 -4950127 L 273187.6 -4949798 L 272519.7 -4950060 L 272329.6 -4950701 L 272597.1 -4951329 L 272646.4 -4951668 L 272280.5 -4951770 L 271151.7 -4951702 L 270491.6 -4952076 L 270020.5 -4953820 L 270395 -4953900 L 270862.7 -4954865 L 271610.8 -4954993 L 272241.1 -4954567 L 272451.5 -4954248 L 272972.1 -4955227 L 273201.6 -4957437 L 273391.8 -4957763 L 274269.5 -4956991 L 274970.4 -4957263 L 275226.7 -4957500 L 275871.4 -4957358 L 276351.3 -4958243 L 276523.6 -4958547 L 276860.6 -4958928 L 277245.4 -4958886 L 277578.4 -4958186 L 278001.6 -4956304 L 278106.2 -4955931 L 279473.2 -4956352 L 278985.9 -4957805 L 279556.9 -4959639 L 280101.5 -4960155 L 280240.7 -4960497 L 280980.1 -4960477 L 281974 -4959004 L 283428.7 -4959010 L 283764.1 -4959165 L 285751.3 -4959763 L 285823.6 -4960109 L 286289.9 -4959728 L 286573.8 -4959620 L 288846.6 -4957035 L 289148.4 -4955921 L 289455.6 -4955678 L 289629.1 -4955345 L 289635.2 -4954224 L 289283.7 -4954096 L 289101.3 -4953350 L 290279 -4952401 L 290491.4 -4952078 L 289714.5 -4950287 L 289597.6 -4948722 L 289754.6 -4948137 L 290046.5 -4948055 L 290946.4 -4948718 L 291723.2 -4947888 L 292856.1 -4947919 L 294876.3 -4946822 L 295872.2 -4947408 L 297331.2 -4947735 L 297685.6 -4947892 L 298987.1 -4949099 L 299200.3 -4949401 L 300577.6 -4949063 L 301187.5 -4949367 L 302886.3 -4950241 L 303276.9 -4950281 L 303989.6 -4950055 L 304272.8 -4949810 L 304598.8 -4949117 L 305203.9 -4948734 L 306485.3 -4949492 L 306856.1 -4949393 L 307661.1 -4951765 L 308551.2 -4952365 L 308854.3 -4952161 L 310850.2 -4951716 L 311101.4 -4951472 L 311391.8 -4951670 L 311267.7 -4952362 L 311724.4 -4952890 L 311967.7 -4953144 L 313356.3 -4952616 L 313915.1 -4951248 L 314025.6 -4950916 L 314020.4 -4949898 L 315848.1 -4949673 L 316219.9 -4949583 L 316787.2 -4949687 L 317074.9 -4949722 L 319327.9 -4949666 L 319689.8 -4949540 L 321051.5 -4950143 L 322149.8 -4949953 L 322422.8 -4951014 L 323994.5 -4950330 L 324321 -4950452 L 324436.1 -4951553 L 325329.3 -4952145 L 326773.8 -4951658 L 327603.3 -4950866 L 327779.4 -4950129 L 327636 -4949850 L 327344.1 -4949332 L 328088.4 -4948704 L 329114.5 -4948652 L 329430.4 -4948512 L 329125 -4948324 L 328694.2 -4947835 L 328651.4 -4947121 L 328008.5 -4946805 L 328009.6 -4944981 L 326503.9 -4943924 L 327122.4 -4943265 L 327219.5 -4942591 L 327436.7 -4942329 L 328127.6 -4942541 L 327870.3 -4941136 L 329308.5 -4940797 L 329648.4 -4940635 L 330301.8 -4940610 L 330618.6 -4940524 L 331164.9 -4942359 L 332696.1 -4942540 L 333655.1 -4943176 L 333952.6 -4943314 L 334236 -4943481 L 335212.2 -4944598 L 336234.4 -4945108 L 336615 -4945159 L 338384.1 -4944655 L 339245.1 -4945390 L 340693.6 -4944227 L 340810.1 -4943855 L 341962.5 -4942310 L 343255.4 -4941596 L 343599.3 -4941446 L 344650.9 -4941043 L 345432.5 -4940221 L 346548.7 -4940019 L 347053.5 -4938645 L 346828.9 -4937927 L 346652.3 -4937194 L 346171.7 -4936631 L 345054.1 -4936460 L 344176.1 -4935832 L 344056.3 -4935808 L 343729.9 -4935634 L 341807.6 -4933465 L 341713.1 -4933816 L 341313.9 -4934752 L 340255.6 -4934975 L 339318.5 -4934445 L 339855.9 -4933876 L 339916.2 -4933094 L 340731.8 -4932276 L 341969.7 -4929853 L 341831.6 -4928311 L 341333 -4927249 L 341584 -4927073 L 342431.7 -4926713 L 342380.4 -4926342 L 342566.5 -4925621 L 342220.7 -4924586 L 342389.1 -4924250 L 342251.6 -4923515 L 342993.3 -4922711 L 342971.6 -4921999 L 344073.2 -4922076 L 344238.6 -4921741 L 344541.4 -4921665 L 345049.4 -4921350 L 345331.7 -4919908 L 345187.8 -4918833 L 345318.3 -4918486 L 345067 -4918245 L 344457.2 -4917433 L 345121.8 -4917266 L 345450 -4915884 L 345449.6 -4915884 z " |
id="path631" /> |
<path |
d="M 498048.2 -4943839 L 498359.8 -4945345 L 499475.6 -4947379 L 499625.6 -4948522 L 500762.8 -4951375 L 502208.8 -4951713 L 502591.6 -4951652 L 502254.8 -4952991 L 501653.9 -4953341 L 501766.6 -4953670 L 501971.2 -4955497 L 502832 -4956581 L 503305.4 -4957131 L 502972.9 -4958151 L 503401.3 -4958718 L 503440 -4959080 L 503338.1 -4960492 L 503143 -4960791 L 503274.4 -4961525 L 504545.6 -4963340 L 505230.1 -4963621 L 505567.8 -4963792 L 505186.2 -4965121 L 506542.8 -4964738 L 506898.6 -4964776 L 507318.4 -4964755 L 507199.9 -4965714 L 507396.6 -4965977 L 506973 -4967259 L 507630.2 -4968120 L 507771 -4968458 L 507790 -4970186 L 507620.9 -4970498 L 508912.9 -4971268 L 509609.9 -4972607 L 510751.5 -4972466 L 511154.7 -4971809 L 511434.7 -4971542 L 511915.9 -4970734 L 512130.9 -4970494 L 512481.3 -4969463 L 513684.3 -4968650 L 513822.4 -4968303 L 514506.2 -4968065 L 514952.4 -4969128 L 516439.6 -4969460 L 517293.8 -4970249 L 518022.1 -4970973 L 517453.8 -4971913 L 517490.2 -4973009 L 517343.1 -4973346 L 517715.9 -4973475 L 519176.1 -4974049 L 518765.4 -4975766 L 519208 -4976309 L 519065.9 -4976632 L 519361.7 -4976776 L 519676.5 -4976868 L 520428.2 -4976878 L 520182.6 -4976164 L 520545.8 -4975538 L 521987.5 -4975175 L 523203.4 -4976638 L 524264 -4976689 L 524569.6 -4977382 L 525813.8 -4978259 L 526117.6 -4978490 L 527097.3 -4978399 L 527425.2 -4978377 L 527478 -4978759 L 527953.2 -4980222 L 528554.9 -4980533 L 528846.8 -4980706 L 528768.1 -4979951 L 529257.5 -4978584 L 530294.3 -4978166 L 531262.8 -4978626 L 531867 -4977647 L 532028.1 -4977298 L 532117.2 -4974536 L 531851.4 -4974292 L 532061.4 -4974059 L 532557.6 -4973258 L 532445.8 -4972880 L 532744.2 -4971749 L 533874.6 -4970138 L 533944.7 -4969778 L 534372.7 -4967253 L 534642.7 -4966982 L 535628.9 -4965830 L 535523.5 -4964708 L 536623.6 -4963684 L 537283 -4962329 L 537974.9 -4961977 L 538291.7 -4962202 L 538454.5 -4962540 L 539574.4 -4963962 L 539955.2 -4964028 L 542236.3 -4964406 L 543363.1 -4964152 L 544417.4 -4965106 L 545505.5 -4964219 L 546077.2 -4964588 L 545846.9 -4965325 L 546691.6 -4967847 L 546454.9 -4969743 L 547110.6 -4970147 L 547497.5 -4970146 L 547972.6 -4969647 L 549202.1 -4970215 L 549415.1 -4969938 L 550054.9 -4970084 L 550343.9 -4969927 L 551600.9 -4969203 L 551946.2 -4968148 L 552491.3 -4967715 L 552683.4 -4967394 L 552387 -4965967 L 551748.3 -4965568 L 551419.5 -4965384 L 551917.6 -4964866 L 552133.7 -4964576 L 554340 -4964933 L 554924.7 -4965414 L 556326.5 -4964967 L 557622 -4965514 L 557574.9 -4965889 L 558247.9 -4965639 L 559211.5 -4963399 L 559533.5 -4963238 L 559683.6 -4962887 L 559553.9 -4962159 L 559891.1 -4961502 L 560506.9 -4961723 L 562533.2 -4959989 L 563053.8 -4958185 L 563317.9 -4957898 L 563607.9 -4957713 L 564133.6 -4958156 L 564291.4 -4958463 L 565386 -4958777 L 566070 -4958435 L 566149.1 -4958066 L 565385.8 -4956774 L 565147 -4956483 L 565908.2 -4955657 L 567405 -4955497 L 567741 -4955317 L 568904.1 -4954456 L 567866 -4952927 L 567826.5 -4951782 L 568379.6 -4951254 L 568327.9 -4950498 L 568364.1 -4950117 L 569463.9 -4950103 L 569550.1 -4949739 L 569331.3 -4949420 L 568545.1 -4948161 L 569662 -4945748 L 570416.2 -4944923 L 570433.4 -4944615 L 570504.6 -4944073 L 570400.8 -4943707 L 570411.1 -4941073 L 571410.1 -4940605 L 571527.3 -4940244 L 571325.1 -4938882 L 571425.3 -4938541 L 572378.3 -4937998 L 572256.7 -4937257 L 572645.9 -4936623 L 572804 -4936283 L 574458.5 -4936502 L 574803.5 -4936421 L 575596.2 -4934654 L 575793.3 -4934316 L 576133 -4932897 L 576196.2 -4932530 L 576356.3 -4932218 L 577275.9 -4930776 L 577028.3 -4930216 L 577387.3 -4930074 L 577923 -4928638 L 577989.8 -4925579 L 578889.5 -4923918 L 577148.2 -4922008 L 576844.2 -4920584 L 576939.4 -4920218 L 576834.5 -4920179 L 576018.6 -4918867 L 575066.3 -4918254 L 575053.8 -4917485 L 572465.5 -4917755 L 571835.9 -4917525 L 571291.7 -4916683 L 571206 -4916359 L 570760.4 -4916076 L 570271.4 -4916386 L 570049.9 -4915829 L 570315 -4915569 L 572103.5 -4913895 L 573219.5 -4911953 L 573228 -4911241 L 574248.4 -4910117 L 575313.2 -4909837 L 575328.7 -4909111 L 575157 -4908773 L 574759.6 -4908109 L 573113.3 -4906678 L 573285.6 -4906192 L 573928.7 -4905751 L 574444.3 -4904711 L 574512.6 -4904326 L 574327.9 -4904028 L 574067.5 -4903384 L 575073.8 -4902448 L 575303.5 -4902733 L 576008.1 -4902913 L 576869.3 -4902236 L 577317.6 -4901681 L 577041.5 -4900642 L 576706.7 -4900578 L 575735.1 -4900534 L 575084.1 -4899575 L 575477.1 -4896899 L 575185.3 -4896796 L 575109.6 -4896427 L 574519.3 -4894640 L 576177.1 -4894021 L 576153.7 -4893271 L 576742.6 -4891889 L 577052.4 -4891989 L 577515.4 -4891700 L 577406 -4891089 L 573624.1 -4892906 L 573666 -4890706 L 573366.3 -4890554 L 572414.7 -4890559 L 572348.7 -4889463 L 572095.1 -4889194 L 571381.4 -4889270 L 571050.7 -4889104 L 569349.4 -4887029 L 566090.2 -4887954 L 565799.5 -4887851 L 565147.3 -4887400 L 564862.5 -4887321 L 564399.1 -4886960 L 563293.8 -4886819 L 561698.3 -4888223 L 561360.3 -4888375 L 561029.4 -4888485 L 560490.4 -4888787 L 560276.9 -4889429 L 559928.1 -4889449 L 559574.2 -4889526 L 558305.4 -4890088 L 557544.1 -4890849 L 557181.2 -4890900 L 556107.8 -4890859 L 554882.8 -4891615 L 554233.3 -4892501 L 554279.9 -4892864 L 553903.1 -4892891 L 553164.4 -4893008 L 552913.2 -4892300 L 552274.9 -4891909 L 551454.7 -4892634 L 551081 -4892535 L 550505.8 -4892024 L 549922.3 -4889795 L 551293.7 -4888574 L 550394.9 -4887882 L 550170.9 -4886003 L 548042.9 -4885392 L 545513.9 -4885994 L 545143 -4886081 L 544780.1 -4886172 L 543249.2 -4885111 L 542446.9 -4885838 L 539954.9 -4886471 L 538026.4 -4886241 L 534986 -4886730 L 534631.1 -4886896 L 534354 -4887160 L 533805.5 -4888922 L 531275.6 -4890462 L 530918.1 -4891125 L 529408.9 -4891346 L 529275.8 -4892452 L 528174.9 -4893972 L 528333 -4894716 L 527948.3 -4894678 L 526068.3 -4894963 L 524971.4 -4894611 L 523587.7 -4895278 L 522835.3 -4895187 L 522540.3 -4894502 L 520661.6 -4894581 L 518977.8 -4893714 L 518661.3 -4893501 L 517968.9 -4893409 L 517627.1 -4893489 L 515811.1 -4893800 L 516487.3 -4894060 L 516782.3 -4894762 L 517053.8 -4895031 L 517402.8 -4895727 L 517445.5 -4896878 L 517947 -4897902 L 515160.8 -4899036 L 514530.3 -4899950 L 513461.5 -4899540 L 512353.2 -4899650 L 511844.4 -4902619 L 511197.5 -4902949 L 510720.9 -4901949 L 510573.4 -4901607 L 510223.8 -4901432 L 509479.5 -4901340 L 509264.3 -4901666 L 509551.6 -4903980 L 511832.1 -4906635 L 511176.7 -4907511 L 511560 -4908933 L 510224.4 -4909439 L 509719.3 -4910874 L 509861.4 -4911616 L 510040.9 -4911952 L 509372 -4912349 L 509123.5 -4913019 L 509282 -4913375 L 509350.8 -4914508 L 509058.3 -4915186 L 510434.8 -4915777 L 510445 -4917624 L 509897 -4918041 L 509606 -4918254 L 509860.2 -4918963 L 510741.9 -4919683 L 510825.8 -4920841 L 510262.7 -4921371 L 510364.3 -4921746 L 510349 -4922123 L 510291.3 -4922870 L 509445.3 -4923509 L 508842.4 -4924893 L 507741.5 -4925528 L 507428.6 -4925626 L 505382.3 -4927419 L 505075.5 -4928475 L 505565.9 -4929954 L 505458.6 -4931488 L 506132.6 -4934492 L 505778.2 -4935174 L 505586 -4935509 L 505552.7 -4935848 L 504412.8 -4936561 L 504236.7 -4936852 L 503896.4 -4937456 L 502763.4 -4938244 L 502449.5 -4938391 L 502033.5 -4938717 L 501939.4 -4938969 L 500961 -4940134 L 500554.4 -4941199 L 498534.8 -4943454 L 498346.6 -4943789 L 498047.8 -4943840 L 498048.2 -4943839 z " |
id="path632" /> |
<path |
d="M 184501.5 -5216598 L 184855.8 -5216734 L 186892.8 -5217671 L 186749.9 -5219162 L 187201.5 -5220154 L 186863.2 -5220331 L 184739.4 -5221054 L 183783.7 -5222213 L 183388.6 -5223455 L 183206.5 -5223735 L 182867.2 -5223822 L 182552 -5224030 L 178882.5 -5224724 L 177882.4 -5224199 L 177236.8 -5224573 L 177480.1 -5224873 L 178623.4 -5225864 L 179052 -5226443 L 178743 -5227877 L 178853.2 -5228241 L 178536.9 -5228391 L 178326.7 -5228671 L 179850.5 -5229640 L 180591.3 -5229626 L 182021 -5230763 L 182242.3 -5231065 L 183534.9 -5232073 L 183739.2 -5232355 L 183896.5 -5232684 L 184418.5 -5234028 L 184159.3 -5234289 L 183325.6 -5234845 L 183520 -5235483 L 183108.9 -5236502 L 183551.5 -5236948 L 183625.7 -5237254 L 183399.5 -5237466 L 182600.8 -5237933 L 182651 -5238278 L 183281.4 -5240227 L 182992.2 -5240424 L 182231.9 -5241540 L 181553.2 -5241674 L 181198.8 -5241551 L 180825.2 -5240916 L 179480.5 -5240282 L 179171.3 -5240468 L 177820.3 -5241543 L 176743.7 -5242866 L 176249.5 -5243805 L 176262.2 -5245509 L 176337.4 -5245858 L 176102.4 -5246410 L 175935.4 -5246742 L 175054.7 -5247411 L 173627.2 -5247668 L 173233.8 -5247717 L 171688 -5247553 L 170582.9 -5247968 L 171942.1 -5249378 L 173061.5 -5249697 L 174068.2 -5250889 L 174367.7 -5251143 L 175818.6 -5251742 L 176213 -5251765 L 178190.2 -5251691 L 179711.1 -5252137 L 180054.6 -5252335 L 180362.1 -5252548 L 182074.9 -5252344 L 183480.6 -5252668 L 183801 -5252836 L 184846.7 -5253946 L 186763.9 -5254218 L 189072.2 -5253990 L 189241.3 -5253858 L 189626.7 -5253832 L 190007.1 -5253898 L 191791.1 -5254269 L 192885.2 -5254145 L 194897.8 -5253428 L 195259.2 -5253444 L 196728.7 -5253449 L 198438.8 -5254133 L 199136.3 -5253902 L 199509.7 -5253901 L 200048.4 -5254239 L 200284.8 -5254456 L 200606.3 -5254671 L 200948.7 -5254852 L 201610.6 -5255288 L 201895.1 -5255565 L 202649.8 -5255612 L 203354.1 -5256533 L 203646.5 -5256788 L 203509.6 -5257148 L 202270.6 -5259068 L 201904.6 -5259546 L 201960.9 -5259934 L 201641.3 -5261016 L 201649.6 -5262958 L 200689.8 -5264660 L 201169.2 -5265876 L 201432.6 -5266091 L 201302.7 -5266383 L 201004.1 -5267291 L 200616.8 -5267366 L 197521.6 -5267253 L 196510.4 -5268447 L 195138.4 -5269117 L 194773 -5269111 L 192994.9 -5268779 L 192675.7 -5268997 L 190365.1 -5268857 L 187733.6 -5269454 L 187431.4 -5269696 L 186755.9 -5270073 L 185981.6 -5272228 L 187058.6 -5273258 L 187083.9 -5273644 L 185316.4 -5274373 L 185871.2 -5277108 L 189565.9 -5276545 L 190943 -5275998 L 191318.5 -5276031 L 194280.6 -5275905 L 194642.9 -5275808 L 195641.7 -5275529 L 196067.8 -5276317 L 196384.3 -5276465 L 197376.8 -5276991 L 198340.8 -5278125 L 198280.1 -5278497 L 197384.7 -5279175 L 197121.7 -5279443 L 196733.3 -5279504 L 193423.5 -5280428 L 191394.7 -5282146 L 189847.9 -5282074 L 188777.7 -5282098 L 188813 -5282456 L 187643.8 -5283796 L 187414.8 -5284074 L 187395.1 -5284429 L 187540.9 -5285125 L 187144 -5286821 L 186390.1 -5286847 L 185810.3 -5287798 L 186328.2 -5289191 L 186184.8 -5289942 L 186448.8 -5290659 L 186066.6 -5290928 L 185015 -5292683 L 185057.1 -5293762 L 183559.1 -5293520 L 182185 -5294101 L 180721.3 -5295220 L 180693 -5295950 L 180683.4 -5296325 L 181733.7 -5296301 L 182201.7 -5297717 L 181437.6 -5298567 L 181628.4 -5300085 L 182428.1 -5302594 L 182210.2 -5302905 L 182106.8 -5303565 L 182402.4 -5303756 L 184093.5 -5302830 L 184488.3 -5302168 L 185224 -5301958 L 185643.4 -5300927 L 186771.5 -5300691 L 187695.9 -5299999 L 189506.4 -5299436 L 189747.9 -5299640 L 189645.4 -5300266 L 189626.7 -5300582 L 193113.1 -5299973 L 193974.3 -5299202 L 194365.7 -5299153 L 194405.7 -5299123 L 196448.8 -5298956 L 196759 -5298802 L 197477.6 -5298628 L 198457 -5298969 L 198842.8 -5298345 L 199514.4 -5298178 L 199980.4 -5297738 L 200649.1 -5297664 L 200959.3 -5297529 L 201250.5 -5297401 L 201567.9 -5297393 L 203573.9 -5298184 L 203156.6 -5299222 L 202165.1 -5299723 L 202981.2 -5300837 L 203163.7 -5301142 L 203848.3 -5301019 L 204562.2 -5300214 L 205209.7 -5300011 L 205230.5 -5300723 L 207915.5 -5298106 L 207998.2 -5297724 L 207969.8 -5297351 L 210079.2 -5296649 L 210428.4 -5296517 L 211646 -5295959 L 211937.1 -5295792 L 211992.1 -5297575 L 212324.6 -5297708 L 213417.7 -5297742 L 213781.2 -5297816 L 214072.8 -5297146 L 215460.7 -5296650 L 215910.1 -5295671 L 216114 -5295357 L 217550.8 -5295726 L 218130.9 -5295287 L 218577.3 -5294291 L 219657 -5294010 L 219949.5 -5294249 L 220928.3 -5294090 L 221633.3 -5294379 L 223063.1 -5293856 L 224571.6 -5293904 L 225734.7 -5293028 L 226069.1 -5293143 L 226318.6 -5293394 L 228575.4 -5293185 L 228966.7 -5293136 L 230799.7 -5295308 L 231045.2 -5295572 L 231885.3 -5295011 L 232510.2 -5295332 L 232858.6 -5295383 L 234522.2 -5294645 L 234880.4 -5294540 L 236058.5 -5296383 L 235873 -5297838 L 235860.4 -5298206 L 236038.9 -5298482 L 236665.3 -5298342 L 236986.5 -5298277 L 238959 -5297290 L 240629.2 -5295326 L 240831 -5295006 L 242734.7 -5296035 L 243790.3 -5295766 L 244158.6 -5295749 L 243893.7 -5296860 L 244252.4 -5297174 L 246120.4 -5295882 L 246257.7 -5295141 L 246608.9 -5295087 L 246361.6 -5294094 L 246652.1 -5293463 L 246859.9 -5293174 L 246750.4 -5292813 L 247672.4 -5292203 L 247817.8 -5291513 L 247366.3 -5290499 L 247230.8 -5290147 L 248324.4 -5289914 L 249665.2 -5290581 L 251118.9 -5290182 L 251491.1 -5290103 L 252807.1 -5290089 L 253107.5 -5290234 L 255376.7 -5288912 L 256852.3 -5288465 L 259262.1 -5290369 L 259526.6 -5290653 L 260177.8 -5290414 L 260820.3 -5289578 L 261514.8 -5289577 L 261643.5 -5289250 L 260883.8 -5289137 L 260785.9 -5288391 L 259301.5 -5287167 L 258227.6 -5287091 L 258320.5 -5285987 L 259468.2 -5284014 L 259666 -5283684 L 259604.5 -5282271 L 259860.4 -5282025 L 261311 -5281641 L 262424 -5281825 L 263232.3 -5280578 L 263878.5 -5280334 L 264193.5 -5280134 L 264711.3 -5280584 L 265738.8 -5280406 L 265803 -5281500 L 266482.8 -5282783 L 266986.7 -5283287 L 267318.8 -5283143 L 267446.1 -5282432 L 267435.7 -5282070 L 268809.3 -5282738 L 270431.2 -5281694 L 272344.1 -5281362 L 272789.3 -5280306 L 273036.7 -5280533 L 274020.3 -5281447 L 274269.1 -5281165 L 275249.7 -5279285 L 275000 -5278747 L 276800.4 -5278084 L 278104.7 -5276677 L 278846.9 -5276455 L 279521.7 -5276835 L 281360.2 -5276235 L 282102.8 -5276430 L 282488.1 -5276481 L 282864.3 -5276437 L 283178.4 -5275353 L 284214.8 -5275140 L 284913.9 -5273849 L 285230.9 -5273642 L 286226.7 -5274845 L 287369.5 -5275027 L 287970.3 -5275518 L 288181.4 -5277462 L 289384.9 -5277313 L 289651 -5276274 L 290502.1 -5276933 L 291195.2 -5276699 L 291466.1 -5276441 L 291632.8 -5276092 L 291415.4 -5273838 L 291689.8 -5273116 L 291384.5 -5272983 L 290494.6 -5272600 L 290110.9 -5272078 L 288954.5 -5269265 L 288409.7 -5268714 L 289330.6 -5268114 L 289421 -5267412 L 290752.7 -5267434 L 290278.1 -5264992 L 290294.8 -5264631 L 289031.6 -5262967 L 288760.3 -5262742 L 288591.4 -5261847 L 287407.7 -5259588 L 287143.3 -5259317 L 287320.1 -5256679 L 287355.8 -5256303 L 286999.7 -5255244 L 285115.4 -5253623 L 284885 -5253330 L 285959.3 -5253005 L 285954.4 -5251875 L 286949.5 -5251388 L 285035.1 -5249604 L 284738.8 -5249368 L 283718.2 -5249260 L 283890 -5248911 L 284171 -5247415 L 283944.7 -5247139 L 283238.7 -5246333 L 281864.8 -5246047 L 281882.5 -5245656 L 281316.1 -5244217 L 280469.1 -5243409 L 279025.7 -5241087 L 279473.6 -5240570 L 279364 -5239811 L 279032.7 -5239670 L 278790.4 -5239405 L 278424.7 -5237218 L 277838.8 -5236283 L 278156.2 -5235178 L 277994.2 -5233667 L 278278.1 -5233264 L 278003.8 -5233066 L 277655.6 -5233047 L 276494 -5231381 L 277073.7 -5230481 L 277424.8 -5230339 L 277135.8 -5228857 L 276576.9 -5227873 L 276345.6 -5227575 L 276152.7 -5227862 L 275032.7 -5227149 L 274814.8 -5227438 L 273763.1 -5228911 L 273488.8 -5228647 L 271437.8 -5226961 L 269538.1 -5223666 L 269476.7 -5222932 L 269067.2 -5222295 L 269190.9 -5221553 L 269898.1 -5221292 L 269958 -5220916 L 269263.8 -5219167 L 268917.7 -5219279 L 268614.9 -5219907 L 266832.1 -5219999 L 266772.2 -5220353 L 265514.8 -5220835 L 265251.6 -5220605 L 264525.9 -5219862 L 264365.7 -5219505 L 264299.5 -5219118 L 263980.7 -5217663 L 264100.4 -5216922 L 263726.2 -5216797 L 262021.9 -5215827 L 261694.8 -5215986 L 261376 -5216977 L 260503.8 -5217601 L 259817.4 -5217543 L 259253.9 -5217089 L 258927.8 -5217264 L 258601.7 -5217439 L 258323.7 -5217703 L 259270.7 -5218913 L 261301.5 -5220590 L 261304.9 -5221357 L 260924.7 -5221265 L 260166.2 -5221170 L 257991.4 -5222017 L 257819 -5221323 L 256327.8 -5220388 L 256123.8 -5220698 L 253792 -5221813 L 252424 -5221335 L 252092.1 -5221926 L 251843.8 -5221655 L 249822.5 -5221476 L 248256.2 -5220588 L 247904 -5220514 L 246147.8 -5220143 L 246015.9 -5220479 L 245082.6 -5221009 L 244739.3 -5220899 L 244387.1 -5220801 L 242984.1 -5220418 L 242614 -5220861 L 242249.8 -5220819 L 241469.4 -5218502 L 240852.8 -5218052 L 239526.2 -5218748 L 238065.1 -5218302 L 236921.4 -5218425 L 235345.8 -5216855 L 235146.2 -5218302 L 236666.5 -5219305 L 236776.8 -5219938 L 236450.7 -5220123 L 234625.5 -5220141 L 232830.2 -5219672 L 232489.9 -5219476 L 229366.3 -5218017 L 229626.4 -5217732 L 229561.9 -5216217 L 230466.1 -5215006 L 230164.7 -5214311 L 229065 -5214444 L 228619.4 -5213385 L 227582.6 -5212883 L 226995 -5211933 L 226322.4 -5211351 L 226327.3 -5211046 L 225932 -5211023 L 224428.9 -5210625 L 224053.7 -5210640 L 223479.4 -5211065 L 222400.6 -5210816 L 220437.5 -5211754 L 219855.9 -5210820 L 219840.8 -5210199 L 219493.6 -5210253 L 219141.5 -5210794 L 218488.1 -5211030 L 218193.8 -5210777 L 217229 -5210133 L 215817.3 -5211435 L 214462.2 -5210962 L 213699.7 -5211084 L 212886.3 -5212271 L 211830.6 -5212516 L 211580.4 -5212233 L 210122.1 -5211125 L 210366.2 -5210841 L 210005.9 -5210719 L 209502.6 -5211283 L 209122.3 -5211279 L 208131.4 -5210731 L 207104.6 -5210629 L 206494 -5209743 L 206529.9 -5209034 L 206168.6 -5208926 L 204440.4 -5209660 L 203686.8 -5209643 L 203553.7 -5209999 L 203063.5 -5211415 L 202051.8 -5211910 L 200601.9 -5213332 L 200104.4 -5212745 L 198707.2 -5212375 L 197375.4 -5214284 L 196775.9 -5214102 L 195562 -5215113 L 195334.8 -5214812 L 194410.8 -5213204 L 191380.2 -5213678 L 190775.7 -5214163 L 190035 -5214091 L 189359.4 -5214467 L 189037.1 -5214536 L 188822.9 -5214788 L 188446.6 -5214748 L 186054.6 -5215615 L 185722.3 -5215802 L 184502.3 -5216598 L 184501.5 -5216598 z " |
id="path633" /> |
<path |
d="M 540741.9 -5385624 L 539644.2 -5386672 L 538184.3 -5387050 L 538291.3 -5387650 L 539067 -5388481 L 538686.7 -5388395 L 537548.9 -5388188 L 536048.9 -5388540 L 534896.7 -5387502 L 533018.4 -5387121 L 533579.7 -5388972 L 532376.7 -5390418 L 532642.3 -5390702 L 532382.2 -5391324 L 533404.5 -5392481 L 534457.7 -5392972 L 534569.6 -5394101 L 534942.9 -5394209 L 533980.2 -5395196 L 534207.6 -5396575 L 534161.2 -5396928 L 534127.3 -5397587 L 534148.9 -5397956 L 534171.2 -5398682 L 532357.4 -5398578 L 531919.3 -5399176 L 531952.6 -5399916 L 531899.2 -5400285 L 531626.6 -5400547 L 529896.5 -5400229 L 529194.8 -5400506 L 529930.5 -5403667 L 530297.6 -5403670 L 531295.4 -5403353 L 532297.5 -5403805 L 532326.1 -5404172 L 532197.6 -5405658 L 530743.3 -5405757 L 529734.8 -5406247 L 530404.1 -5407460 L 530715.9 -5407261 L 531728.4 -5406823 L 532823.8 -5406836 L 534339.9 -5407802 L 534679.8 -5407658 L 534907.9 -5407081 L 535130.6 -5406862 L 535340 -5407059 L 535590.3 -5407199 L 535441.2 -5408344 L 535879.2 -5409418 L 535544.7 -5410912 L 535424.3 -5411278 L 535458.8 -5411583 L 535539.3 -5411879 L 535370.8 -5412203 L 535132.9 -5412894 L 535743.4 -5413045 L 536066.7 -5413193 L 536721.4 -5413464 L 537143.3 -5415647 L 538017.4 -5417261 L 538575.8 -5417993 L 539955.8 -5418324 L 541369 -5418165 L 541787.1 -5418737 L 541931.4 -5420622 L 541922.1 -5421005 L 542938.3 -5421536 L 543305.6 -5421641 L 543881.2 -5421873 L 543350.1 -5423083 L 543156.5 -5423373 L 543991.8 -5423959 L 544999.1 -5423935 L 545330.4 -5424035 L 545546.6 -5425864 L 546524.5 -5427913 L 546667.2 -5428265 L 548173.7 -5428312 L 548520.1 -5428463 L 548787.6 -5428726 L 549428.4 -5429625 L 548378.2 -5431982 L 548001.2 -5432028 L 547382.7 -5432430 L 544885 -5431853 L 544807.4 -5431533 L 542757.2 -5431770 L 542647.8 -5432106 L 542803.2 -5434003 L 542817.9 -5434384 L 543039.1 -5434471 L 543756.8 -5434748 L 544003.2 -5435481 L 544248.8 -5435785 L 546055.4 -5435861 L 546523.6 -5436470 L 546556.3 -5436854 L 546055.1 -5437380 L 545334.5 -5439419 L 545152 -5439734 L 544659.5 -5440683 L 543791.6 -5440868 L 543677.2 -5441207 L 544434.7 -5441971 L 544545.6 -5443027 L 545106.6 -5443480 L 545105.9 -5444202 L 545198.4 -5444451 L 545441.8 -5444629 L 547655.9 -5444363 L 549439.2 -5444847 L 549772.6 -5445015 L 550634.2 -5444651 L 550810.8 -5444382 L 551201.8 -5443774 L 551848.6 -5444112 L 552199.9 -5444210 L 553493.9 -5445121 L 553837.3 -5445320 L 554192.4 -5445333 L 554500.8 -5445508 L 554511.4 -5445871 L 554664.5 -5447641 L 553896.5 -5447738 L 552819.5 -5447325 L 551405.2 -5447899 L 550743.3 -5449183 L 551205.5 -5449783 L 551255.2 -5450159 L 550957.3 -5450245 L 550727.3 -5450818 L 549600.4 -5449932 L 549210 -5450874 L 548178.1 -5451056 L 547612.8 -5451489 L 547610 -5452190 L 547363.4 -5452447 L 548421 -5452628 L 549213 -5454188 L 549066.6 -5454521 L 548717.6 -5454589 L 547608.8 -5457037 L 547983 -5457654 L 548322.3 -5457775 L 547991.5 -5457924 L 547336.9 -5458788 L 547863.7 -5459698 L 547638.5 -5460175 L 546500.8 -5460985 L 546350.4 -5461305 L 546654.8 -5461517 L 546820.8 -5462615 L 547013.4 -5462933 L 548381.8 -5463586 L 548575.4 -5463925 L 549894.1 -5464167 L 550310.6 -5464369 L 551323.8 -5464904 L 551709 -5464988 L 553094.5 -5465098 L 553441.7 -5465170 L 553862.5 -5465551 L 553801.6 -5466190 L 553787.2 -5466511 L 554178.4 -5466578 L 555003.5 -5466525 L 556140.1 -5467267 L 556429.5 -5467451 L 556596.9 -5467124 L 557290.4 -5467337 L 557566.9 -5467582 L 558284.4 -5467805 L 559406.3 -5467615 L 559788.4 -5467616 L 560129.5 -5467054 L 560450.3 -5466876 L 561802.6 -5466301 L 562199.8 -5466913 L 562136 -5467618 L 561607.8 -5468126 L 561504.4 -5468480 L 561945.9 -5468687 L 562124.3 -5468905 L 562366.4 -5469495 L 562186.5 -5470116 L 562385 -5470372 L 563451.7 -5470658 L 564641.5 -5471512 L 564981.8 -5471653 L 566038.6 -5471941 L 566825.8 -5473072 L 567077.3 -5473337 L 567691.2 -5472612 L 567806.7 -5472312 L 569515.6 -5470287 L 569762.1 -5469996 L 571227.9 -5470225 L 571600.9 -5470194 L 573182.1 -5468936 L 573456 -5468278 L 573521.4 -5467928 L 574153 -5468146 L 575174.3 -5468128 L 575307.3 -5470439 L 575260 -5470821 L 575469.6 -5472276 L 576022.4 -5473222 L 577937.5 -5472997 L 578274.3 -5472802 L 578739.5 -5472803 L 580262 -5472869 L 580580.1 -5472874 L 580897.2 -5472879 L 582609 -5473047 L 582937.3 -5473160 L 584334.3 -5472888 L 584696.5 -5472930 L 586446.9 -5472864 L 586273.4 -5472600 L 587008.5 -5471287 L 587190 -5470958 L 587781.8 -5471275 L 588082.1 -5471426 L 589713.6 -5470760 L 590061.9 -5470858 L 590219.6 -5470627 L 590567.9 -5470716 L 591359.3 -5468943 L 592476.9 -5467843 L 593979.1 -5467610 L 593774.7 -5467396 L 593716.9 -5466968 L 594839.2 -5465052 L 595022.8 -5464729 L 595057.8 -5464734 L 596897.6 -5464747 L 598006.4 -5463719 L 598378.5 -5463675 L 598783.2 -5464026 L 599018.5 -5464156 L 599645.1 -5464391 L 599959.4 -5464509 L 600050.2 -5463770 L 601109.4 -5461752 L 601552.6 -5461133 L 602281.6 -5460939 L 602412.1 -5460582 L 602429.9 -5460455 L 605059.3 -5459294 L 605230.8 -5458948 L 605513.3 -5459145 L 605789.7 -5459308 L 607564.3 -5459758 L 607913.7 -5459878 L 608236.9 -5459887 L 608560.1 -5459896 L 610242.1 -5459982 L 611752.5 -5460368 L 612891.7 -5461417 L 613267.1 -5461533 L 614732.1 -5461648 L 616347.8 -5460905 L 615842.7 -5460349 L 615943 -5459256 L 616892.7 -5458716 L 617262.3 -5457680 L 617283.7 -5457293 L 617816.4 -5456262 L 617841.2 -5455488 L 619165.9 -5454761 L 621589.9 -5455768 L 622616.1 -5457446 L 622981.5 -5457603 L 623994.7 -5457304 L 623959.2 -5456941 L 624683.5 -5456863 L 625045.8 -5456921 L 625590.5 -5457181 L 625837.4 -5457008 L 626902.9 -5456237 L 626961.4 -5455914 L 628412.9 -5456285 L 630253.7 -5456017 L 631517.7 -5456811 L 631888.1 -5456908 L 632497.3 -5456112 L 633195.9 -5456237 L 633028 -5455681 L 633016.5 -5455370 L 635903.2 -5454469 L 635958.8 -5454839 L 635536.9 -5455824 L 636977.1 -5457949 L 636520.6 -5458534 L 637518.6 -5458068 L 638885.4 -5458635 L 639226.9 -5458789 L 640042 -5458450 L 640719.5 -5458486 L 640027.2 -5457240 L 641996.1 -5456141 L 642038.6 -5455766 L 643487.5 -5455656 L 643866.8 -5454248 L 644021.4 -5453916 L 644867.1 -5453241 L 645085.9 -5452953 L 644998.3 -5452570 L 644141.5 -5451774 L 642367 -5451021 L 641540.2 -5450188 L 641496.7 -5449858 L 642351.3 -5448462 L 642464.9 -5448140 L 643247.4 -5446636 L 643306.9 -5446280 L 644050.6 -5444261 L 644187.4 -5444019 L 644330.2 -5443780 L 644490 -5443566 L 644798.6 -5443131 L 645044.3 -5442819 L 645688.8 -5441377 L 645831.6 -5439800 L 645758 -5439425 L 646347.8 -5436859 L 646501 -5436218 L 646132.2 -5435171 L 643851 -5432194 L 643653.4 -5431874 L 643748.4 -5431828 L 646880.4 -5433429 L 648580.5 -5432481 L 648761.2 -5432132 L 648793.9 -5431913 L 648548.6 -5429762 L 648494.6 -5429063 L 646937.9 -5428815 L 645951.3 -5427604 L 646316.8 -5427717 L 648490 -5427245 L 649074.8 -5426759 L 648629.2 -5424548 L 648398.7 -5424305 L 647420.7 -5423545 L 647484.3 -5423205 L 647350.2 -5422561 L 646184.2 -5422563 L 644473.3 -5421611 L 643298.1 -5421487 L 643057.3 -5421801 L 642728.9 -5421725 L 641769.7 -5420794 L 641496.9 -5419736 L 640412.4 -5418656 L 640329.8 -5418280 L 640173.3 -5418035 L 640658.2 -5417712 L 640915 -5417421 L 640658.6 -5415893 L 640200.3 -5415264 L 640146.7 -5414899 L 640969.4 -5414191 L 641391.9 -5412883 L 642046 -5412575 L 641926.7 -5411727 L 641597.2 -5411597 L 639566.5 -5410251 L 639375.8 -5409903 L 638552.8 -5409055 L 638679.4 -5408713 L 639131 -5408161 L 638688.2 -5407186 L 638908 -5406895 L 638941.9 -5406815 L 639287.1 -5406732 L 640948.8 -5406201 L 641264.3 -5406365 L 641605.4 -5406221 L 641972.7 -5406184 L 642133.3 -5405852 L 643117.5 -5403985 L 643460.4 -5403733 L 645351.6 -5401950 L 645483.2 -5401597 L 645544.8 -5401282 L 646158.8 -5400898 L 647606.1 -5400864 L 647434.8 -5398643 L 648190.7 -5397338 L 647954.1 -5397070 L 646956.6 -5397402 L 647511.3 -5396135 L 647290.7 -5395832 L 646374.9 -5395203 L 646226.7 -5394498 L 645892.7 -5394677 L 643676.6 -5394733 L 642918.9 -5394000 L 642586.6 -5393333 L 642370.8 -5393636 L 640511.8 -5394844 L 640272.1 -5394558 L 639491.2 -5393760 L 637822.6 -5392961 L 637381.3 -5392360 L 637068.1 -5392447 L 636435.3 -5392308 L 636145.1 -5392371 L 635815.6 -5392863 L 635484.5 -5392991 L 634089.4 -5393047 L 633828.1 -5393685 L 633498.8 -5393642 L 632239.3 -5393380 L 632141.7 -5393033 L 631747.6 -5392495 L 631029.1 -5392540 L 630380.3 -5390999 L 630365.9 -5390744 L 630350.5 -5390489 L 630405.5 -5390484 L 630757 -5390613 L 633340.6 -5390870 L 635481.7 -5390314 L 635317 -5389935 L 636101.9 -5389404 L 636237.6 -5389109 L 636183 -5387340 L 636401.2 -5386637 L 636764.4 -5386572 L 636527.8 -5386286 L 634705.1 -5386216 L 633066.5 -5384751 L 632720 -5384595 L 630210.9 -5383993 L 630419.4 -5382108 L 630847.2 -5381070 L 632163.4 -5381109 L 631530.8 -5379738 L 632418 -5377276 L 632652.8 -5376979 L 632294.4 -5376929 L 631679.1 -5377108 L 627132.6 -5378142 L 626745.3 -5378134 L 624183.1 -5377404 L 623455.8 -5377639 L 623117.6 -5376994 L 621688.2 -5377531 L 621607.6 -5377844 L 620491.4 -5378334 L 620569.3 -5378917 L 620939.3 -5379390 L 620570 -5379361 L 617371.1 -5379141 L 616868 -5378665 L 616498.8 -5378704 L 616118.6 -5378766 L 614814.4 -5377987 L 613799.2 -5376367 L 613420.8 -5376289 L 612678.6 -5376496 L 612056.6 -5378209 L 611766.3 -5378150 L 611329.5 -5378515 L 611080.9 -5378217 L 610183.1 -5377481 L 609849.1 -5377633 L 607811.8 -5378415 L 607421.6 -5378439 L 605177.8 -5378988 L 604838.7 -5379090 L 604474.7 -5379230 L 602535.3 -5380523 L 599324.2 -5383853 L 598958.1 -5383895 L 597928.9 -5384260 L 596981.2 -5385530 L 596730.5 -5385838 L 597890.5 -5387344 L 597740.5 -5388068 L 597538.8 -5388357 L 597382.2 -5388675 L 597295.5 -5388926 L 597019.8 -5389894 L 597620.8 -5390283 L 597497.2 -5390618 L 597327.5 -5390933 L 597980.9 -5392242 L 597233.2 -5393390 L 597485.6 -5394813 L 597374.1 -5395180 L 596339.2 -5396312 L 595281 -5396582 L 592709.3 -5395872 L 591672.4 -5396346 L 591276 -5396905 L 590557.1 -5395298 L 586447.6 -5395890 L 585334.6 -5395641 L 585012.1 -5395435 L 584710.6 -5395245 L 583073.8 -5393384 L 582730.9 -5393560 L 579892.3 -5394750 L 579585.3 -5394874 L 579275.3 -5394990 L 578277.3 -5393430 L 578409.7 -5392393 L 578067.5 -5391720 L 576713.9 -5390491 L 576359.8 -5390567 L 575676 -5390332 L 573571.6 -5390773 L 573349 -5390467 L 572297.8 -5389430 L 571809 -5387218 L 572053.7 -5386930 L 571912.2 -5386629 L 571027.3 -5386965 L 570841.7 -5386654 L 569776 -5384007 L 567544.3 -5384261 L 566987.3 -5383796 L 566767.2 -5383783 L 565999.2 -5380883 L 564988 -5381095 L 564937.9 -5381071 L 564611 -5381231 L 562867.2 -5381238 L 562866.1 -5380519 L 563503.9 -5380175 L 563156.5 -5378748 L 563256.2 -5377273 L 563486.3 -5377281 L 563716.4 -5377279 L 563571.1 -5376506 L 562719.6 -5375187 L 561399.7 -5374376 L 561047.4 -5374314 L 560765.9 -5374093 L 560449.1 -5374297 L 558573.1 -5375505 L 557825.8 -5375567 L 557539.4 -5375421 L 556953.5 -5375676 L 556369.8 -5375408 L 555827.3 -5375894 L 553791.3 -5376504 L 553406 -5376459 L 551913.8 -5376155 L 551543.6 -5376119 L 550573 -5376627 L 548802.6 -5376231 L 548590.4 -5376133 L 548382.5 -5376239 L 547284.1 -5376299 L 546464.4 -5377320 L 546355 -5380213 L 546177.4 -5380500 L 545792.1 -5381045 L 545158.7 -5380973 L 544903.2 -5380705 L 544603.7 -5380488 L 544350.3 -5380295 L 544232.8 -5380651 L 543472.5 -5381903 L 542743.9 -5381727 L 542689.5 -5382086 L 542532.4 -5383880 L 542174.2 -5383832 L 541458.7 -5383722 L 541287.3 -5384746 L 540742.5 -5385624 L 540741.9 -5385624 z " |
id="path634" /> |
<path |
d="M 715233.4 -5312441 L 715597.1 -5311009 L 715725.8 -5310649 L 715640.3 -5310380 L 715457.3 -5309847 L 715219.5 -5309574 L 712816.2 -5310111 L 712589.5 -5309828 L 712382.2 -5309116 L 711939.7 -5308531 L 711911.8 -5307824 L 710868 -5306299 L 710999.4 -5304877 L 711214 -5304359 L 711315.8 -5304059 L 710943.2 -5304085 L 709619.2 -5303483 L 709281.6 -5303432 L 708935.4 -5303737 L 709082.5 -5304395 L 708349.2 -5304312 L 706247.4 -5304696 L 705693.4 -5303822 L 705014.9 -5303487 L 705406.7 -5301381 L 705247.5 -5300689 L 705053.8 -5300409 L 704173.9 -5299988 L 703914.6 -5300070 L 703208.9 -5300337 L 702827.4 -5300377 L 702438.8 -5300408 L 701331 -5300344 L 700769.8 -5299329 L 700309.6 -5295945 L 700206.9 -5295573 L 700474.1 -5295424 L 700643 -5295169 L 700492 -5294561 L 702246.7 -5294578 L 702681.7 -5294049 L 702610.1 -5293696 L 702632.1 -5292919 L 702538.4 -5292538 L 702675.2 -5292204 L 702791.9 -5291862 L 701542.7 -5290927 L 701348.9 -5290583 L 701584.4 -5289923 L 701849.4 -5289632 L 701599.8 -5289493 L 701055.8 -5289328 L 701201.7 -5289058 L 701019.2 -5288169 L 701725.1 -5287268 L 701896.8 -5286128 L 701820.2 -5285746 L 701698.5 -5285402 L 700467.9 -5284848 L 699873.4 -5285151 L 699579.9 -5285078 L 699281.4 -5285026 L 699262.9 -5284693 L 698822.6 -5284190 L 698497.9 -5284000 L 697043.8 -5284081 L 695991.7 -5283667 L 695286.9 -5283852 L 695005.4 -5283826 L 694602.3 -5283432 L 693669.6 -5285503 L 693511.8 -5286643 L 692861.4 -5287051 L 692543.3 -5287268 L 692268.9 -5287296 L 692134.2 -5286934 L 689620.1 -5283528 L 688094.9 -5283502 L 687810.8 -5283762 L 687483.4 -5283834 L 685992.3 -5284589 L 685716.6 -5284321 L 685016.5 -5283469 L 683157.3 -5282970 L 682390.3 -5282987 L 681400.6 -5283530 L 680299.7 -5283183 L 679995.7 -5281231 L 679802 -5280885 L 680020.6 -5280377 L 680317 -5280352 L 680145.3 -5280008 L 679017.5 -5278986 L 678096.1 -5277307 L 678086.7 -5275438 L 677468.6 -5275225 L 676963.7 -5274262 L 676747 -5273969 L 675723.3 -5274493 L 675809.4 -5275257 L 675345.6 -5275852 L 675000.4 -5276019 L 674244.6 -5276148 L 673712.2 -5275600 L 672985.2 -5275585 L 670921.8 -5273409 L 670924.8 -5272644 L 670578.2 -5272544 L 669309 -5272061 L 668149.1 -5274011 L 668127 -5274731 L 669163 -5276797 L 669348.7 -5277135 L 668432.2 -5276878 L 668178.6 -5276655 L 667988.2 -5276490 L 667736.9 -5276484 L 667761.4 -5276876 L 665739.9 -5279190 L 663989.9 -5280022 L 663070 -5280193 L 662853 -5280426 L 662925.6 -5280806 L 663143.3 -5283480 L 662775.8 -5283455 L 661789.2 -5283131 L 661477.4 -5282037 L 660064.3 -5280171 L 659396 -5279764 L 658656.4 -5279977 L 658608.6 -5280137 L 657899.6 -5280040 L 657506 -5280697 L 656377.7 -5280751 L 654830.2 -5281737 L 654446.7 -5281706 L 653729.3 -5281983 L 653280.6 -5282607 L 653937.1 -5284763 L 652060.9 -5284637 L 652164.9 -5286148 L 651861.9 -5286385 L 650372.9 -5285350 L 650000.4 -5285275 L 649874.2 -5284512 L 649272.9 -5284024 L 647374.5 -5283757 L 647577.1 -5284085 L 646451.2 -5285111 L 646212.9 -5285836 L 646442.6 -5286146 L 646978.8 -5286645 L 646973.1 -5287687 L 647435.3 -5288257 L 647481.8 -5288620 L 646939.8 -5289022 L 646648.2 -5288791 L 646967.9 -5289844 L 646460.2 -5292014 L 646117.9 -5292099 L 645501.7 -5292443 L 644969.5 -5291994 L 643898.1 -5291810 L 643633.6 -5292386 L 643284.4 -5292482 L 643582.9 -5292603 L 643644.2 -5293504 L 643345 -5293625 L 644915.7 -5294421 L 645206.3 -5294630 L 645515.8 -5294773 L 646115.9 -5295098 L 648486.7 -5296813 L 648940.4 -5298509 L 648644.3 -5298653 L 648236.5 -5299103 L 648190.3 -5299029 L 648207.7 -5299357 L 647347.3 -5299739 L 646444.7 -5300778 L 646454.7 -5302278 L 645819.9 -5303651 L 645106 -5303590 L 643814.4 -5304130 L 643825.7 -5305844 L 643456.1 -5306437 L 643164.1 -5306643 L 642902.2 -5306932 L 642092.2 -5309077 L 641908.5 -5309415 L 641232.2 -5309736 L 639739.2 -5309356 L 638467.3 -5306672 L 638182.3 -5306877 L 636738.2 -5307868 L 636384.7 -5308469 L 636412.2 -5308838 L 637582.5 -5309679 L 638983.8 -5311787 L 638823.1 -5312117 L 638275.8 -5313071 L 637430 -5313844 L 635532.4 -5314025 L 634886.3 -5313719 L 634184 -5313999 L 633816.6 -5313995 L 633142.3 -5314277 L 632973.1 -5314963 L 633657.6 -5316310 L 634567.3 -5316932 L 633700.4 -5317639 L 633163.7 -5319012 L 632807.2 -5318876 L 630195.3 -5318547 L 627976.8 -5319005 L 627761 -5319274 L 626779.4 -5320237 L 627130 -5320408 L 627039.5 -5321545 L 628036.1 -5322726 L 628132.7 -5323104 L 627147.6 -5323677 L 625688.4 -5325958 L 623799.3 -5326445 L 623410 -5326485 L 623167.1 -5326711 L 623818.2 -5327102 L 625301.8 -5327311 L 625636.4 -5327511 L 626770.3 -5328179 L 626811.8 -5328541 L 626593 -5328846 L 628277.5 -5330229 L 628614.3 -5331300 L 629294.4 -5330895 L 630869.9 -5330871 L 632372.7 -5330427 L 632734.9 -5330266 L 634841.1 -5329683 L 635918.4 -5329847 L 636282.8 -5329895 L 636278.2 -5330930 L 636175.6 -5331264 L 635972.8 -5332251 L 635794 -5332540 L 636708.8 -5333180 L 637006 -5333861 L 637363.5 -5333967 L 636466.2 -5335119 L 636307.6 -5336233 L 636459.8 -5336975 L 637182.8 -5337861 L 637045.2 -5338219 L 637684.8 -5339627 L 637699.8 -5339642 L 638135.1 -5340274 L 638115.7 -5341432 L 636168.3 -5342496 L 636086.8 -5342875 L 636364.4 -5343121 L 637254.1 -5343722 L 636614.2 -5344967 L 636783.3 -5345671 L 636690.5 -5345891 L 636816.7 -5346643 L 637749.2 -5347801 L 636484.7 -5349714 L 637040.3 -5351141 L 635540.9 -5351865 L 635201.4 -5351763 L 635104.9 -5352856 L 634498.6 -5353768 L 634257.8 -5354047 L 635933.7 -5355675 L 636239.3 -5355923 L 636027.6 -5356250 L 634167.4 -5356633 L 632938.6 -5357598 L 631394.4 -5357793 L 629733.3 -5358777 L 629883.9 -5359087 L 630100 -5361125 L 629084.8 -5361623 L 627227.4 -5361812 L 626200.9 -5361422 L 625894 -5361643 L 625762.7 -5362186 L 626229.6 -5362543 L 625152.8 -5364018 L 624484.5 -5364241 L 624118.2 -5364260 L 624673 -5365200 L 623909.4 -5365962 L 623826.8 -5366320 L 623737.7 -5366953 L 623582 -5367256 L 620735.5 -5368579 L 620296.6 -5369559 L 620048.8 -5369838 L 620745.3 -5369758 L 621662.7 -5370166 L 622014 -5370156 L 621852.9 -5370891 L 622386 -5372684 L 622330.1 -5374161 L 622874.3 -5374628 L 623119.5 -5374651 L 623597.3 -5375632 L 623267.5 -5376663 L 623115.9 -5376994 L 623454.1 -5377639 L 624181.4 -5377404 L 626743.6 -5378134 L 627130.9 -5378143 L 631677.4 -5377108 L 632292.7 -5376929 L 632651.1 -5376979 L 632416.3 -5377277 L 631529.1 -5379739 L 632161.7 -5381109 L 630845.5 -5381070 L 630417.7 -5382109 L 630209.2 -5383993 L 632718.3 -5384596 L 633064.8 -5384751 L 634703.4 -5386216 L 636526.1 -5386286 L 636762.7 -5386572 L 636399.5 -5386637 L 636181.3 -5387340 L 636235.9 -5389109 L 636100.2 -5389404 L 635315.3 -5389936 L 635480 -5390314 L 633338.9 -5390871 L 630755.3 -5390613 L 630403.8 -5390484 L 630348.8 -5390489 L 630364.2 -5390745 L 630378.6 -5391000 L 631027.4 -5392541 L 631745.9 -5392496 L 632140 -5393034 L 632237.6 -5393380 L 633497.1 -5393642 L 633826.4 -5393686 L 634087.7 -5393048 L 635482.8 -5392991 L 635813.9 -5392863 L 636143.4 -5392371 L 636433.6 -5392309 L 637066.4 -5392447 L 637379.6 -5392361 L 637820.9 -5392962 L 639489.5 -5393761 L 640270.4 -5394559 L 640510.1 -5394845 L 642369.1 -5393636 L 642584.9 -5393333 L 642917.2 -5394000 L 643674.9 -5394733 L 645891 -5394677 L 646225 -5394499 L 647323.7 -5394263 L 647636.7 -5394052 L 647723.2 -5392990 L 647936 -5392701 L 646855.7 -5391854 L 646617.1 -5391604 L 646694.7 -5391267 L 646787.4 -5390263 L 647519.3 -5388997 L 646976.2 -5387228 L 647743.8 -5386424 L 649405.7 -5386624 L 649729.2 -5386742 L 651034.6 -5388910 L 651394.9 -5388850 L 651642.4 -5386952 L 652365.7 -5385194 L 652499.3 -5384835 L 654307.8 -5384555 L 655779.7 -5384775 L 656128.3 -5384912 L 656036.8 -5383928 L 656460.5 -5383412 L 656734.5 -5383194 L 657066.7 -5382368 L 657306.6 -5382164 L 657772.4 -5381622 L 657998.3 -5381344 L 658647.6 -5381051 L 659238.8 -5381490 L 659582.4 -5381635 L 660174.8 -5380741 L 661669.2 -5379811 L 661997.3 -5379630 L 661844.2 -5378946 L 662766.8 -5378629 L 663114.3 -5378022 L 663174.9 -5377677 L 663539.2 -5377567 L 663898.4 -5377441 L 664414.7 -5377934 L 667681.1 -5376202 L 668777.3 -5376167 L 668913 -5375817 L 669153.1 -5375689 L 669406.3 -5375588 L 669903.6 -5376132 L 670112.3 -5376435 L 670978.3 -5375699 L 671753.3 -5375734 L 673266.6 -5373120 L 673462.3 -5372785 L 674521.9 -5372294 L 674901.2 -5372192 L 674952.3 -5372227 L 675554.4 -5371731 L 677085.6 -5371920 L 677322.5 -5371606 L 677513.4 -5371341 L 677701.3 -5371074 L 677570.6 -5369938 L 678011.7 -5368883 L 679507 -5367699 L 680273 -5367681 L 680646.6 -5367017 L 680785.3 -5366666 L 681500.9 -5366431 L 682170.2 -5366768 L 682450.3 -5366591 L 682584.1 -5366289 L 682226.5 -5366174 L 680907.9 -5365574 L 678212.9 -5363003 L 677322.7 -5362972 L 677035.2 -5362849 L 678174.4 -5361937 L 680373 -5361767 L 680709.2 -5361614 L 679158.7 -5359781 L 678967 -5359481 L 679279.1 -5358497 L 678922.2 -5357472 L 679499.7 -5356555 L 679619.4 -5356209 L 680920 -5356892 L 682068.5 -5358335 L 682992.1 -5358592 L 683134.7 -5358934 L 684980.3 -5358992 L 685564.4 -5358523 L 686689.8 -5358389 L 687019 -5358204 L 686780.7 -5357492 L 687426.8 -5356140 L 687611.6 -5355807 L 691830.5 -5350639 L 691865 -5350244 L 693339.4 -5351971 L 693526.1 -5352307 L 696417.2 -5350016 L 696739.4 -5349830 L 696611.6 -5348653 L 696465.9 -5348285 L 695874.2 -5346892 L 698240.1 -5345713 L 698556.3 -5345503 L 699069.7 -5345958 L 699388.4 -5346107 L 700826.8 -5344796 L 701154 -5344585 L 702056.3 -5343064 L 702232.1 -5342749 L 702420 -5342471 L 702662.1 -5342237 L 702765.4 -5341604 L 702763 -5341283 L 700441.4 -5341198 L 699023.6 -5339925 L 699193.4 -5339576 L 699550.7 -5338658 L 699451.7 -5338000 L 699399.2 -5337668 L 699546.3 -5336862 L 699349.1 -5336218 L 698852.9 -5335878 L 698919.1 -5335214 L 698201.1 -5334510 L 697889.4 -5334343 L 697830.8 -5333988 L 697475.5 -5333412 L 698484.8 -5332524 L 698674.7 -5332220 L 697684.7 -5331805 L 696997.5 -5331674 L 696741.8 -5331384 L 696257.3 -5330785 L 695840.8 -5329337 L 697593.5 -5327951 L 697542.9 -5329046 L 697800.7 -5329326 L 700285.4 -5328510 L 700591.2 -5328745 L 700926.2 -5327633 L 701923.9 -5327021 L 702546.6 -5326054 L 702500.4 -5325974 L 702597.6 -5325227 L 704016.4 -5325694 L 705828.7 -5323817 L 706176 -5323663 L 706760.5 -5324085 L 706751.2 -5323151 L 706772.8 -5322837 L 707643 -5321203 L 707588.4 -5320823 L 708262 -5319699 L 708174.4 -5319366 L 707382.5 -5318150 L 707094.7 -5317915 L 707931.3 -5315132 L 708992.6 -5314840 L 709212.6 -5314543 L 709923.2 -5315674 L 710980.1 -5315837 L 711719.4 -5316617 L 711718.9 -5316982 L 712132.7 -5317843 L 712369.2 -5317175 L 712732.8 -5317219 L 712765.6 -5317006 L 712798.4 -5316794 L 712482.6 -5316596 L 713027.2 -5314838 L 713641.9 -5314585 L 715217.2 -5312797 L 715232.8 -5312441 L 715233.4 -5312441 z " |
id="path635" /> |
<path |
d="M 273540 -5363269 L 273108.8 -5362783 L 272424.4 -5362850 L 271690.4 -5362026 L 270709.6 -5362557 L 269237.6 -5362575 L 268815.1 -5361925 L 267396 -5361365 L 267579.7 -5359461 L 268327.7 -5358607 L 268010.7 -5358725 L 266438.6 -5359332 L 266090.1 -5359224 L 265659.1 -5358292 L 265744.8 -5356389 L 265795.2 -5356008 L 266035.4 -5355991 L 266275.5 -5355969 L 266701.7 -5355341 L 266913.2 -5353831 L 266065.5 -5352610 L 265910.2 -5351916 L 265984 -5351786 L 265794.3 -5351453 L 264821 -5349928 L 264995.3 -5347652 L 265231 -5347352 L 266071.9 -5345725 L 265506 -5344849 L 265887.6 -5343850 L 265549.1 -5343714 L 264533.7 -5343303 L 263452.3 -5342319 L 263212.8 -5342099 L 262884.7 -5341568 L 262576.1 -5341344 L 260110.7 -5340402 L 258261.3 -5339163 L 257984.7 -5338926 L 258112.3 -5338585 L 258782.7 -5337876 L 257615.7 -5336558 L 257921.6 -5336370 L 258369.5 -5336099 L 258512.6 -5335453 L 259844.8 -5334926 L 259774.2 -5334609 L 260294.4 -5333846 L 260262.8 -5333459 L 258772.1 -5331812 L 258673.3 -5330664 L 259605 -5329998 L 259378.7 -5329258 L 259305.1 -5328898 L 258950.3 -5327861 L 258623.3 -5328038 L 255751.9 -5328605 L 254841.2 -5327966 L 255074 -5327721 L 252516.4 -5326667 L 251503.4 -5327213 L 251211.9 -5327027 L 250716.8 -5326544 L 251109.2 -5325224 L 250737.7 -5322986 L 252879.3 -5322165 L 252914.3 -5322170 L 252599.3 -5321672 L 252598.3 -5320924 L 253445.2 -5318913 L 253328.6 -5317806 L 253845.3 -5317269 L 254206.5 -5317173 L 254473.4 -5316925 L 254758.9 -5316397 L 253413.2 -5315213 L 252365 -5314911 L 252187.6 -5314693 L 251719.8 -5314380 L 251006.5 -5314590 L 250449.4 -5314122 L 246856.4 -5314091 L 246538.9 -5313920 L 245837.8 -5312734 L 244690.5 -5312511 L 244926.3 -5312207 L 245271.7 -5310761 L 244724.6 -5310229 L 245031.6 -5310029 L 246089.2 -5309832 L 246176.8 -5309475 L 246540 -5309388 L 247240.4 -5309218 L 247627 -5307846 L 247556.5 -5307480 L 247053.4 -5306937 L 247347.8 -5306269 L 247236.3 -5305913 L 246887.8 -5305781 L 246242.7 -5306148 L 244464.1 -5306036 L 244354.6 -5305732 L 244487.6 -5304808 L 243416.2 -5305157 L 242851.6 -5304226 L 241653.5 -5303306 L 241910.4 -5303052 L 242574.1 -5300704 L 242858.1 -5300471 L 243821.3 -5299937 L 245989.3 -5300140 L 246063.2 -5300019 L 246192.9 -5299682 L 246484.6 -5297558 L 246564.3 -5297193 L 246721.7 -5295716 L 246256.7 -5295141 L 246119.4 -5295882 L 244251.4 -5297174 L 243892.7 -5296860 L 244157.6 -5295749 L 243789.3 -5295766 L 242733.7 -5296035 L 240830 -5295006 L 240628.2 -5295326 L 238958 -5297290 L 236985.5 -5298277 L 236664.3 -5298342 L 236037.9 -5298482 L 235859.4 -5298206 L 235872 -5297837 L 236057.5 -5296383 L 234879.4 -5294540 L 234521.2 -5294645 L 232857.6 -5295383 L 232509.2 -5295332 L 231884.3 -5295011 L 231044.2 -5295572 L 230798.7 -5295308 L 228965.7 -5293136 L 228574.4 -5293185 L 226317.6 -5293394 L 226068.1 -5293143 L 225733.7 -5293028 L 224570.6 -5293904 L 223062.1 -5293856 L 221632.3 -5294379 L 220927.3 -5294090 L 219948.5 -5294248 L 219656 -5294010 L 218576.3 -5294291 L 218129.9 -5295287 L 217549.8 -5295726 L 216113 -5295357 L 215909.1 -5295671 L 215459.7 -5296650 L 214071.8 -5297146 L 213780.2 -5297816 L 213416.7 -5297741 L 212323.6 -5297708 L 211991.1 -5297575 L 211936.1 -5295792 L 211645 -5295959 L 210427.4 -5296516 L 210078.2 -5296649 L 207968.8 -5297351 L 207997.2 -5297724 L 207914.5 -5298106 L 205229.5 -5300723 L 205208.7 -5300011 L 204561.2 -5300214 L 203847.3 -5301018 L 203162.7 -5301142 L 202980.2 -5300837 L 202164.1 -5299723 L 203155.6 -5299222 L 203572.9 -5298183 L 201566.9 -5297393 L 201249.5 -5297401 L 200958.3 -5297529 L 200648.1 -5297664 L 199979.4 -5297738 L 199513.4 -5298178 L 198841.8 -5298345 L 198456 -5298969 L 197476.6 -5298628 L 196758 -5298802 L 196447.8 -5298956 L 194404.7 -5299123 L 194364.7 -5299153 L 193973.3 -5299202 L 193112.1 -5299972 L 189625.7 -5300581 L 189644.4 -5300266 L 189746.9 -5299640 L 189505.4 -5299435 L 187694.9 -5299999 L 186770.5 -5300691 L 185642.4 -5300927 L 185223 -5301958 L 184487.3 -5302168 L 184092.5 -5302830 L 182401.4 -5303756 L 183240.7 -5304859 L 183585.9 -5304697 L 183773.5 -5304989 L 184218.8 -5306575 L 184365.1 -5307580 L 183850.4 -5308444 L 184138 -5308631 L 184285.5 -5308878 L 184570.9 -5308908 L 185300.9 -5309007 L 186138.8 -5309725 L 186422.5 -5309978 L 185861.8 -5311638 L 186057.9 -5312347 L 187280.2 -5313041 L 187573.8 -5313264 L 187687.7 -5314736 L 188243 -5315210 L 188730.3 -5316592 L 188466.8 -5317285 L 188814.7 -5317685 L 189067.2 -5317816 L 189017.6 -5318963 L 189017.1 -5319349 L 189755.9 -5320806 L 190047.5 -5320999 L 191465.6 -5321259 L 192136.6 -5322916 L 193248.2 -5323138 L 193941.7 -5322885 L 194318.2 -5322925 L 195025.7 -5322686 L 195364.9 -5322525 L 195833.1 -5322238 L 196093.5 -5322322 L 197480.3 -5322435 L 198655.7 -5323209 L 199014.2 -5323234 L 199680.4 -5323527 L 199977.6 -5324194 L 199946.5 -5325631 L 199830.8 -5325977 L 199036.2 -5327698 L 199416.6 -5328358 L 199148.3 -5329811 L 199577.3 -5330854 L 200121.1 -5331648 L 199831 -5331823 L 198775.2 -5332797 L 198310.1 -5333774 L 198187.4 -5334112 L 198115.5 -5335602 L 198000.9 -5335959 L 197793.4 -5337800 L 197641.7 -5338145 L 197675.7 -5340738 L 197124.9 -5341966 L 196753.5 -5341967 L 196882.8 -5342683 L 196419.2 -5343945 L 196555.9 -5344283 L 196735.2 -5346861 L 196433.2 -5347099 L 196271.5 -5347393 L 196073.7 -5347664 L 196451.2 -5348335 L 196614 -5348691 L 195461.5 -5352302 L 195469.7 -5354206 L 195963.1 -5354683 L 196450.9 -5356582 L 198240.7 -5358670 L 198613.4 -5358808 L 198748.8 -5358923 L 199844.4 -5360815 L 199318.5 -5361788 L 199174.9 -5362131 L 199033.8 -5365005 L 198658.5 -5365071 L 199270.9 -5365997 L 199340.6 -5366369 L 199631.3 -5366547 L 198890.3 -5368707 L 197852 -5370323 L 197853.7 -5370710 L 197955 -5370829 L 197992.8 -5371220 L 197749.3 -5372709 L 197963.9 -5373442 L 198854.3 -5374151 L 199120.2 -5374424 L 199039 -5375442 L 199263.7 -5376165 L 198650.7 -5377088 L 198466 -5378906 L 198707.5 -5380014 L 199286.1 -5380483 L 199103.5 -5380814 L 199660.1 -5381297 L 199838.8 -5381545 L 203319.7 -5378861 L 203951.5 -5378391 L 206142.1 -5378920 L 206919.7 -5379757 L 207099.1 -5380874 L 207738.7 -5381289 L 208453 -5381012 L 209933.2 -5380768 L 210289.9 -5379365 L 210914.8 -5378947 L 211654.6 -5378934 L 211885.3 -5378630 L 214242.8 -5379072 L 214557.5 -5379231 L 215610.8 -5378773 L 216887.6 -5376405 L 217249.7 -5376264 L 217527.6 -5376032 L 217457.3 -5375401 L 217654.1 -5374166 L 217814.7 -5373876 L 219300.4 -5374956 L 220450.6 -5374916 L 220475.4 -5372729 L 220613.9 -5372375 L 221551.5 -5371627 L 221874.9 -5371670 L 224950.8 -5373078 L 223841.7 -5374134 L 223608.8 -5374817 L 224020.5 -5375481 L 224384.1 -5375622 L 224978 -5375245 L 226000.5 -5375479 L 226078.9 -5375120 L 226764.2 -5374930 L 227115.8 -5375041 L 227446.4 -5375166 L 227475.8 -5375861 L 228588.2 -5376517 L 228622.9 -5376868 L 229349 -5375538 L 229565.5 -5373588 L 229551.7 -5373193 L 229478.6 -5372153 L 232564.8 -5373799 L 233705 -5374876 L 234055.7 -5375057 L 234128.4 -5374867 L 235410.3 -5374722 L 235712.3 -5374580 L 236050.8 -5375191 L 236299.5 -5375436 L 236426 -5375090 L 237099.4 -5374966 L 238311.9 -5376686 L 238544.7 -5376972 L 239778 -5377585 L 240255.4 -5378565 L 240526.1 -5378810 L 241719.6 -5378006 L 242784.3 -5377897 L 244112.8 -5379079 L 244871.4 -5379057 L 245166.1 -5379281 L 246502.1 -5378693 L 246786.9 -5378456 L 246710.7 -5378367 L 248528.2 -5378344 L 248779 -5378627 L 249086 -5378515 L 249050.1 -5377562 L 249344 -5377359 L 250325 -5376951 L 250667.2 -5376875 L 251016.7 -5375967 L 251933.6 -5375507 L 251949.3 -5376925 L 253231.6 -5377530 L 253401.2 -5378265 L 254557.1 -5379758 L 255129.9 -5379438 L 255367.7 -5379212 L 256753.4 -5378989 L 257056.2 -5378787 L 257068.8 -5378060 L 258077.3 -5377883 L 258374.4 -5379343 L 259706 -5380114 L 260323.4 -5381090 L 259088.2 -5382487 L 259331 -5382792 L 260132.2 -5383560 L 260502.4 -5384530 L 261354.6 -5383821 L 262444.9 -5383533 L 263079.9 -5383811 L 263632.3 -5383311 L 263896 -5383041 L 264073.7 -5382820 L 264181.3 -5382558 L 264331.7 -5382211 L 265054.7 -5381404 L 267547.3 -5379753 L 267458.8 -5379022 L 265857.3 -5378368 L 265398.2 -5376985 L 265742.6 -5377063 L 266569.1 -5375954 L 266571.4 -5375600 L 266585.8 -5375268 L 266909.3 -5374339 L 266652.7 -5374126 L 267025.8 -5373516 L 266906 -5372092 L 267384.4 -5371572 L 267699.3 -5371395 L 269109.3 -5370826 L 269864.8 -5370773 L 271936.5 -5370878 L 272933.7 -5371676 L 273282.8 -5371583 L 273949.6 -5371222 L 274114.7 -5370139 L 273707.7 -5368676 L 273526.3 -5368517 L 273656.1 -5364545 L 273654.4 -5364177 L 273351.1 -5363586 L 273539.7 -5363269 L 273540 -5363269 z " |
id="path636" /> |
<path |
d="M 490148.7 -5263193 L 488069.8 -5265540 L 487941.2 -5265917 L 488805.3 -5266595 L 489695.9 -5266038 L 490450 -5266763 L 490818.1 -5266780 L 492506.3 -5267308 L 492774.7 -5267546 L 493146.7 -5268253 L 496119.7 -5267436 L 496480.7 -5267299 L 497471.5 -5268470 L 497828.8 -5268638 L 498941 -5268484 L 500874.3 -5267354 L 501599.7 -5267453 L 501913.1 -5267660 L 502487.9 -5268160 L 504006.9 -5268573 L 504726.3 -5269497 L 505006.7 -5269776 L 506214.2 -5270603 L 507657.5 -5270445 L 507985.4 -5270264 L 508433.1 -5269908 L 508639.9 -5269709 L 508883.6 -5269406 L 508345.2 -5268392 L 508787.1 -5265711 L 508847.7 -5265326 L 509873.2 -5265406 L 510834.1 -5264228 L 511800.7 -5263621 L 512022.9 -5262900 L 513053.6 -5263122 L 513599.4 -5263582 L 514982.9 -5263543 L 517183.8 -5260180 L 517286.4 -5259823 L 518438.7 -5259693 L 519109.4 -5260084 L 520272.9 -5260095 L 521065.8 -5261430 L 521230.5 -5261089 L 521895.7 -5260173 L 522640.1 -5260296 L 524870.4 -5258953 L 525052.3 -5257961 L 525687.2 -5257650 L 525628.1 -5258419 L 527132.1 -5259529 L 528236.7 -5259679 L 529035.6 -5260998 L 529053.5 -5261765 L 529732.1 -5261993 L 530118.3 -5262009 L 530367.3 -5261936 L 530627.4 -5261921 L 532133 -5261869 L 533211.9 -5262206 L 533438.1 -5261495 L 534052.9 -5261122 L 534413.2 -5261203 L 536002.8 -5260309 L 536361.1 -5260401 L 536833 -5263454 L 536559.6 -5267360 L 536607.1 -5267752 L 536856.2 -5267752 L 537082.4 -5267854 L 537986.4 -5266708 L 538293.4 -5264125 L 538836 -5263610 L 539190 -5263487 L 540109.8 -5262958 L 540351.6 -5262700 L 541165.5 -5261503 L 542567.7 -5261081 L 542924.7 -5260993 L 543305.4 -5260572 L 542918.1 -5259615 L 542952.7 -5259269 L 542986.6 -5259153 L 543416.5 -5257193 L 543539.2 -5256866 L 543884.4 -5256913 L 544290.1 -5256452 L 544870.4 -5257288 L 545199.7 -5257404 L 545945 -5257369 L 546039.2 -5256650 L 546597 -5256215 L 546967.1 -5256143 L 547378.5 -5256299 L 548998.4 -5255507 L 550417.2 -5255601 L 550643 -5255306 L 550793.1 -5255351 L 550658.7 -5255035 L 550356.4 -5254054 L 550839.2 -5253719 L 551148.5 -5253869 L 551457.4 -5253627 L 552484.3 -5253062 L 553313.2 -5251730 L 553506.7 -5251181 L 553499.3 -5250890 L 553920.8 -5250278 L 554948.8 -5249818 L 557863.2 -5250519 L 558013.7 -5250867 L 558670.9 -5250760 L 558744.4 -5249441 L 558861.1 -5249113 L 559226.2 -5249051 L 559964.6 -5249051 L 560993 -5248033 L 562071.8 -5248230 L 562159.3 -5248597 L 561641 -5250320 L 562124.9 -5250866 L 562867.4 -5250907 L 563096.9 -5251206 L 563810.8 -5253309 L 563769.8 -5254199 L 564063.7 -5254012 L 564757.2 -5254071 L 565603 -5253468 L 565933.3 -5253583 L 565987.9 -5253220 L 566721.5 -5252482 L 566972.4 -5251428 L 565932.4 -5250262 L 564580.8 -5249518 L 565360.9 -5246619 L 566574.5 -5246490 L 566729.9 -5246811 L 568166.5 -5248307 L 570368.5 -5248088 L 571308.8 -5249569 L 572065.3 -5248773 L 572133.9 -5248388 L 572901.4 -5247541 L 572353.9 -5246562 L 573068.4 -5243145 L 573803.3 -5241777 L 574187.6 -5241804 L 575185.9 -5240652 L 576664.9 -5240707 L 577225.7 -5241122 L 577448.1 -5242233 L 578133.7 -5242375 L 578730.7 -5243727 L 580201.5 -5243632 L 580917.3 -5243894 L 582751.2 -5243632 L 583121.6 -5243763 L 583199.2 -5243398 L 584122.3 -5243823 L 584975.8 -5245459 L 585647.6 -5245739 L 585912.5 -5245476 L 585447.1 -5244567 L 584559.2 -5243386 L 584472.3 -5242708 L 584986.5 -5241716 L 584867 -5241357 L 584027.6 -5240614 L 584154 -5240022 L 584509.1 -5239895 L 585167 -5240266 L 585079.5 -5239912 L 583831.2 -5238592 L 584708.3 -5233818 L 585321.6 -5232839 L 585467.3 -5232480 L 588666.4 -5234240 L 589360.9 -5233407 L 589792 -5232334 L 591856.5 -5230592 L 592617.1 -5228867 L 592779.4 -5228122 L 591398.4 -5226331 L 591203.7 -5224876 L 591263.6 -5223828 L 591250.2 -5223472 L 590903.8 -5223337 L 590082.5 -5222701 L 589453.5 -5223090 L 589139.1 -5222892 L 585933.1 -5222039 L 584498.4 -5222265 L 584129.2 -5222314 L 583893.8 -5222036 L 584194.9 -5221056 L 583611.1 -5220638 L 584180.6 -5219796 L 584036 -5219327 L 583656.8 -5219356 L 582789 -5220091 L 582412.7 -5220033 L 582578.4 -5219690 L 582203.5 -5219066 L 579966.5 -5219443 L 579566.6 -5218825 L 579092.7 -5218242 L 579409.4 -5216795 L 578489.6 -5215623 L 578388.7 -5214867 L 578641.5 -5214568 L 579353.6 -5214261 L 580860.6 -5212496 L 579912.9 -5210410 L 579929.1 -5209650 L 580061.8 -5209291 L 580143.1 -5208534 L 579664.7 -5207502 L 578706.5 -5206876 L 578321.6 -5206239 L 578081.2 -5205962 L 575618.2 -5204439 L 575256.1 -5204492 L 575184.7 -5204112 L 575200.9 -5203342 L 576242.1 -5202897 L 577673.1 -5204081 L 578387.7 -5204310 L 579692.7 -5201561 L 579488.9 -5200861 L 578638.7 -5200123 L 579053.9 -5199105 L 578442.3 -5197828 L 578469.6 -5197091 L 578989.2 -5195392 L 579074.9 -5195043 L 580181.4 -5194904 L 581118.4 -5194305 L 581395.3 -5194047 L 582963.2 -5191908 L 583351.4 -5190819 L 583416.1 -5190436 L 579719.9 -5188306 L 579443.5 -5188026 L 579142.2 -5187865 L 579266.7 -5187278 L 580229 -5185942 L 580240.7 -5185597 L 580459.7 -5183290 L 580545.4 -5182907 L 580592.1 -5182532 L 580126.9 -5181519 L 579381.4 -5181407 L 579173.5 -5181726 L 578732.8 -5182341 L 577263 -5181226 L 575816.3 -5181282 L 573441.1 -5180245 L 573308.7 -5179892 L 573039.6 -5179948 L 572968.2 -5179564 L 572260 -5178639 L 570780.9 -5178216 L 570392.8 -5177176 L 567918.7 -5176233 L 567431 -5175677 L 567055.8 -5175678 L 566444.9 -5176113 L 566347.6 -5175766 L 564708.4 -5175276 L 564054.8 -5174942 L 563482.4 -5173622 L 562671.4 -5172907 L 562338.4 -5173050 L 560235.1 -5172680 L 559854.5 -5174503 L 559069.2 -5175763 L 559360.9 -5176448 L 559021.9 -5176641 L 555905.8 -5178177 L 553263.1 -5177581 L 552916.8 -5177411 L 549996.8 -5176537 L 548980.8 -5177071 L 548701.5 -5176873 L 547926.5 -5177237 L 547567.8 -5177816 L 547335 -5178125 L 545458.2 -5178092 L 545034.2 -5179517 L 544741.9 -5179272 L 543647.2 -5177758 L 545019.5 -5175108 L 543862.3 -5174174 L 543581.7 -5174831 L 543278.1 -5174248 L 542600.7 -5174066 L 541346.8 -5174757 L 541363.5 -5174373 L 541448.3 -5172885 L 542296.2 -5171163 L 541872.6 -5170562 L 541579.3 -5170314 L 541000.8 -5169983 L 540349.3 -5170873 L 539973.2 -5170946 L 539288.7 -5170611 L 536731.7 -5167850 L 536723.1 -5167100 L 536453.8 -5166862 L 535768.7 -5167063 L 534356 -5166822 L 534230.3 -5167197 L 533412.7 -5168022 L 533717 -5168261 L 534121.1 -5170803 L 533585.3 -5171347 L 532519.2 -5171715 L 532344.7 -5172453 L 532679.7 -5173558 L 531182.1 -5173424 L 529303.8 -5173833 L 528940.6 -5173704 L 527508.2 -5171132 L 526782.8 -5170876 L 526448.5 -5170671 L 525327.1 -5170517 L 523811.9 -5170861 L 522770.8 -5172456 L 522273.8 -5173901 L 521152.4 -5173814 L 521122.4 -5173794 L 520773.4 -5173943 L 520019.2 -5173895 L 519351.3 -5172974 L 517400.9 -5171822 L 516846.1 -5171001 L 515127.7 -5169744 L 514740.7 -5169826 L 512296 -5171091 L 510905.1 -5173001 L 510732.2 -5173222 L 510452.3 -5173502 L 509360.3 -5175137 L 507497.3 -5175763 L 507181.3 -5175886 L 505878.3 -5176269 L 505582.4 -5176512 L 503287.3 -5178479 L 502371.4 -5180155 L 502273.6 -5180503 L 501954.1 -5182607 L 501958.4 -5182957 L 502488.5 -5184242 L 502647.8 -5184581 L 503906.2 -5185967 L 503969.8 -5186686 L 503852 -5186943 L 503672.4 -5187481 L 503829.7 -5187838 L 504801.9 -5188983 L 504360.2 -5193167 L 504263.4 -5193434 L 504172.8 -5193993 L 503939 -5194314 L 503341.7 -5195299 L 504432.5 -5198254 L 504544.8 -5198553 L 505476.5 -5200222 L 505557.2 -5200979 L 505236.3 -5201180 L 504295.8 -5203198 L 504490.5 -5205078 L 504612.2 -5205801 L 505126.2 -5206768 L 505208.6 -5207156 L 505210 -5208726 L 505050.3 -5209089 L 504362.4 -5210521 L 504095.3 -5210485 L 503629.4 -5210751 L 503367.6 -5211018 L 501221.3 -5212457 L 501054.6 -5212803 L 501244.1 -5214290 L 501915.6 -5215705 L 501820.7 -5216885 L 501832.1 -5217279 L 501813.2 -5217419 L 501766.5 -5217790 L 501684.3 -5219654 L 501432.5 -5219950 L 500843.3 -5220913 L 501102.8 -5222379 L 501003.1 -5222746 L 500751.3 -5223058 L 500695.6 -5223428 L 499376.5 -5227694 L 499238.8 -5228022 L 499082.1 -5228341 L 498876.4 -5228676 L 497963.3 -5230826 L 498177.2 -5233544 L 498249.6 -5233881 L 498167.3 -5234542 L 497555 -5235367 L 495139 -5237054 L 494024.2 -5238532 L 493764.4 -5238797 L 493220.8 -5239330 L 492982 -5239627 L 492692.2 -5239879 L 491962.2 -5240120 L 491622.2 -5240233 L 490420.6 -5240957 L 490020.5 -5241937 L 489764 -5243407 L 490285.3 -5244432 L 490486.7 -5244762 L 490662.1 -5245101 L 491304.3 -5246035 L 491491.7 -5246379 L 493520.5 -5250976 L 493509.9 -5251330 L 493609.1 -5252386 L 494414.7 -5253528 L 494440.2 -5253903 L 493536.7 -5256337 L 493488.9 -5256548 L 493383.3 -5256900 L 491835.5 -5259273 L 491823 -5259670 L 491480.2 -5260810 L 491423.6 -5261139 L 491270.3 -5261786 L 491096.6 -5262102 L 490148.6 -5263193 L 490148.7 -5263193 z " |
id="path637" /> |
<path |
d="M 505115.8 -5440680 L 504930.2 -5440379 L 503977.3 -5438940 L 504008 -5438259 L 504586.5 -5437413 L 504687.9 -5437085 L 504367.1 -5437223 L 502375.3 -5437460 L 502088.9 -5437269 L 500794.5 -5437683 L 500150 -5437474 L 499802.9 -5437450 L 499120.3 -5436675 L 498990.3 -5435654 L 498631.1 -5435600 L 498002.6 -5435928 L 497970.2 -5436258 L 497773.6 -5437499 L 497474.9 -5437686 L 496561.8 -5437163 L 495902.2 -5437401 L 495790.9 -5436705 L 495320 -5436281 L 495022.4 -5436504 L 494303.9 -5436313 L 492623.2 -5437098 L 492193.4 -5436177 L 491835.7 -5436336 L 490505 -5435535 L 489338.6 -5435401 L 489209.3 -5435747 L 488531.7 -5437054 L 488169.5 -5436969 L 486801.9 -5437271 L 485930.1 -5438465 L 485601.7 -5438267 L 484646.4 -5437646 L 484370.2 -5437539 L 484080 -5437481 L 484385.8 -5436839 L 482933.7 -5436886 L 483252.3 -5436676 L 484167.1 -5436012 L 482374.2 -5434636 L 482022.8 -5434473 L 480485.4 -5434357 L 480347 -5434682 L 479718.7 -5436584 L 479457.6 -5436050 L 478154.1 -5434842 L 477806 -5434809 L 477201.6 -5435160 L 477286.3 -5435500 L 477460.9 -5435813 L 476358.5 -5437182 L 476219.2 -5437532 L 474370.6 -5438805 L 473618.4 -5438749 L 473084.3 -5439714 L 472966.6 -5439351 L 472058.2 -5438173 L 471723.1 -5438133 L 471399.3 -5438229 L 471308.5 -5437853 L 469939.7 -5436536 L 469651.8 -5436590 L 469360.9 -5436631 L 469185.5 -5436941 L 468943.5 -5437961 L 467686.6 -5438545 L 467309.1 -5440763 L 466449.3 -5440913 L 466479 -5441269 L 466132.7 -5441156 L 465744.5 -5440592 L 465612.8 -5438777 L 465250.1 -5438923 L 462615.1 -5439548 L 463428.4 -5440650 L 463308.7 -5441312 L 462990 -5441451 L 461691.9 -5441957 L 461738.6 -5442301 L 461469 -5442516 L 460554.8 -5442925 L 460375.5 -5443246 L 458661.1 -5442641 L 458749.7 -5442921 L 458924.9 -5443480 L 458999.4 -5443718 L 459074.9 -5443957 L 456859.2 -5444672 L 455714.6 -5444429 L 454149.7 -5445490 L 453902.2 -5445262 L 453031.1 -5444265 L 452755.6 -5444527 L 450428.4 -5448321 L 450150.6 -5448413 L 449613.5 -5448378 L 449345.6 -5448415 L 448927.3 -5448275 L 448830.5 -5447909 L 448010.9 -5446703 L 447818.6 -5445619 L 447450.4 -5445534 L 446363.7 -5445228 L 446046.1 -5445434 L 445843.5 -5445140 L 444538.5 -5444722 L 443389.5 -5444735 L 442702.1 -5445052 L 442944.7 -5445332 L 444007.8 -5446298 L 443021 -5447810 L 442669.8 -5447706 L 442063 -5447340 L 440613.6 -5447170 L 440327.7 -5447239 L 439831.3 -5447547 L 440002.7 -5447242 L 439493 -5446446 L 438893.9 -5446395 L 438744.4 -5446634 L 438451.4 -5447114 L 438871.6 -5447678 L 438424.7 -5448200 L 438124.1 -5448387 L 437414.5 -5448575 L 437155.9 -5448308 L 436475.7 -5449164 L 435424 -5448869 L 433966.5 -5449117 L 433785.2 -5449428 L 433578.2 -5450830 L 432894.6 -5451036 L 432904.4 -5451397 L 432597.9 -5451177 L 432091.6 -5450615 L 430671.4 -5450126 L 429777.8 -5449428 L 429767.7 -5449398 L 429540.1 -5449153 L 428562.8 -5449027 L 428300.2 -5448774 L 426912.5 -5447592 L 426239.8 -5447733 L 425075.4 -5448478 L 424866.8 -5448234 L 424231.2 -5447520 L 423892.8 -5447331 L 422383.2 -5447118 L 422130.8 -5447409 L 418366 -5446254 L 418375.9 -5446638 L 417966.2 -5447685 L 417798.9 -5447574 L 417452.5 -5447398 L 415937.9 -5447180 L 415141.8 -5446712 L 414833.5 -5446600 L 415033.1 -5447310 L 414650.4 -5447921 L 413609.1 -5447814 L 412225.3 -5448867 L 411973.8 -5448654 L 411910.1 -5448330 L 411600.4 -5448471 L 410705.3 -5448900 L 410665.3 -5448885 L 410424.6 -5448597 L 409168.7 -5447773 L 408198.9 -5448337 L 408218.7 -5448692 L 407951 -5449720 L 407004.4 -5449937 L 406996.2 -5450301 L 406269.6 -5450934 L 406278.5 -5451311 L 407629 -5451927 L 407781.5 -5453033 L 408123.9 -5453194 L 407827.4 -5453437 L 405993.3 -5454780 L 405513 -5454212 L 405270.4 -5454412 L 405334.5 -5455339 L 405219.1 -5456048 L 405339.9 -5456395 L 405828.1 -5456880 L 405854.7 -5457568 L 406110.3 -5457799 L 407237.5 -5457842 L 407830.6 -5458309 L 408948.3 -5458141 L 409256.8 -5458357 L 410199.1 -5456722 L 410107.2 -5456344 L 411539.4 -5455963 L 411818.8 -5455708 L 412752.7 -5458682 L 412134.5 -5459031 L 412340.1 -5460139 L 411479.7 -5460864 L 410800.3 -5460686 L 410589.9 -5460966 L 410824.5 -5461666 L 410344.4 -5464193 L 410527.2 -5464519 L 410622.1 -5464890 L 410790.9 -5465641 L 409643.5 -5468032 L 409844.7 -5468953 L 409790.5 -5469278 L 409111.4 -5469648 L 408613.9 -5470692 L 406990.8 -5472333 L 408195 -5473231 L 408489.6 -5473466 L 408150.8 -5473562 L 406830.1 -5473273 L 406576.6 -5473893 L 407188.9 -5475247 L 407518.3 -5477085 L 408055.1 -5477428 L 408283.7 -5478082 L 408545.3 -5478318 L 409196.8 -5478545 L 409286.2 -5479140 L 409110.9 -5479439 L 410077.2 -5479987 L 410424.6 -5480137 L 411193.6 -5480960 L 411196.2 -5482454 L 411419.9 -5482759 L 412159 -5482804 L 412168.9 -5483174 L 412112.4 -5484595 L 411827.8 -5484753 L 410713.1 -5485262 L 410017.4 -5484962 L 408990.7 -5483033 L 408687.4 -5483734 L 407600 -5483953 L 407155.9 -5484309 L 407073 -5484735 L 407218.6 -5484974 L 408609.7 -5486250 L 409134.8 -5488308 L 409089.9 -5488348 L 407755.8 -5488689 L 407899.2 -5490452 L 408045 -5490790 L 407793.7 -5491080 L 407379.3 -5491726 L 407201.2 -5492064 L 406672.6 -5492588 L 405742.3 -5492045 L 405535.6 -5492974 L 407331.9 -5493139 L 407507.7 -5493861 L 407403 -5493957 L 407088.6 -5493793 L 406473 -5493920 L 406339.7 -5494610 L 405516.4 -5495260 L 407149.8 -5496664 L 407584.4 -5497701 L 407384.2 -5498420 L 407284.1 -5498781 L 406571.6 -5499325 L 406371.2 -5499550 L 406154.9 -5499799 L 405966.6 -5500068 L 406648 -5500256 L 407077.4 -5501224 L 407648.3 -5501622 L 407742.2 -5501964 L 407862.1 -5503092 L 409536.2 -5503984 L 409906.4 -5504076 L 409849.3 -5504406 L 409800.7 -5505731 L 409531.2 -5505930 L 409291 -5506242 L 408552.6 -5506057 L 407380.8 -5504520 L 406700 -5504177 L 405344.8 -5505573 L 406563.9 -5506847 L 407231.3 -5507041 L 407298.1 -5507746 L 407368.7 -5509897 L 408071.2 -5509739 L 409354 -5510495 L 409539 -5510493 L 409188.5 -5511799 L 409371.2 -5512086 L 409906.8 -5513108 L 410887.2 -5512552 L 412418.1 -5512597 L 412947.4 -5512356 L 412818.7 -5512084 L 413121.1 -5511868 L 414194.6 -5512116 L 414781.1 -5510782 L 414948.2 -5510458 L 416109.3 -5510573 L 416395.4 -5509864 L 415262.9 -5508822 L 414922.4 -5508622 L 415043.5 -5508286 L 416053.7 -5508039 L 416175.1 -5507426 L 416152.2 -5507070 L 416691.8 -5506553 L 416934 -5506262 L 417983.4 -5506493 L 418938 -5506011 L 419240.4 -5505806 L 419903.6 -5505931 L 420233.7 -5506008 L 421770.3 -5507524 L 422743.3 -5507987 L 423033.8 -5508201 L 424033.1 -5506388 L 424156.3 -5506062 L 425485.8 -5507937 L 425804.3 -5508168 L 426237.8 -5507206 L 427335.2 -5507046 L 427983 -5507408 L 428857.4 -5506820 L 429532 -5507124 L 429900.8 -5507085 L 429925.7 -5507065 L 430300.7 -5507071 L 430573.9 -5506373 L 432068.1 -5505320 L 432069.3 -5504600 L 431324.3 -5504541 L 431482.8 -5504365 L 432593.1 -5504136 L 433824.9 -5504958 L 434143.3 -5504741 L 434429.5 -5504859 L 434676.9 -5505047 L 435825.9 -5505135 L 436396.5 -5504617 L 436761.1 -5504477 L 437787.7 -5504801 L 438260.9 -5505330 L 438449.6 -5505643 L 439059.4 -5506015 L 441209.1 -5506058 L 441557.3 -5506184 L 441691 -5506073 L 442618.6 -5505581 L 443970.4 -5505989 L 444327.3 -5505984 L 444607.2 -5505952 L 445667.9 -5505892 L 446291.2 -5505234 L 446605 -5505188 L 448582.4 -5504250 L 448778.6 -5503928 L 449491.8 -5503658 L 450515.8 -5504150 L 450585.7 -5504527 L 451442.7 -5503735 L 451786.2 -5503536 L 451986.7 -5502501 L 453060.3 -5501534 L 453406.5 -5501642 L 453919.1 -5501932 L 454431.7 -5500925 L 454762.2 -5500734 L 455846 -5500713 L 456491.7 -5501041 L 456809.1 -5501216 L 457546.2 -5501288 L 459936.7 -5500353 L 460189.1 -5499700 L 460330.3 -5499370 L 460452.5 -5499032 L 460724.9 -5498359 L 461364.5 -5498675 L 461608 -5498455 L 461925.8 -5498374 L 461442.8 -5497457 L 461962.6 -5496964 L 462254.1 -5496756 L 463947.2 -5498636 L 464252.6 -5498848 L 464239.7 -5498461 L 465104.9 -5497716 L 465352.2 -5497419 L 465766.8 -5497694 L 467193.2 -5496206 L 468639.7 -5496518 L 468287.7 -5495617 L 468102.1 -5495319 L 468802 -5494415 L 468994.2 -5494075 L 469506.2 -5494093 L 469716.7 -5494319 L 470153.7 -5495217 L 470760.3 -5495513 L 470528.9 -5495761 L 471506.7 -5495293 L 472554.3 -5495641 L 472933.2 -5495596 L 473012 -5495505 L 472824.3 -5495181 L 473272 -5494187 L 473046.8 -5492744 L 473342.2 -5492054 L 474297.8 -5491439 L 474616.3 -5491230 L 475806.1 -5492121 L 476149.4 -5492296 L 476051.9 -5494352 L 476406.9 -5494364 L 476399.4 -5494579 L 477355.4 -5495989 L 477378.2 -5496340 L 477415.5 -5496919 L 477497.1 -5497209 L 477836.1 -5497232 L 478174.2 -5497273 L 479529.4 -5496978 L 479768.7 -5496689 L 480118.6 -5497095 L 481502.5 -5497143 L 482121.7 -5496797 L 482454.4 -5496669 L 482606.6 -5496309 L 483474.6 -5495911 L 483783.7 -5495987 L 484832.6 -5495991 L 485157 -5496200 L 485262.1 -5497624 L 484833.4 -5498642 L 485089.3 -5500460 L 485377.8 -5500696 L 485712.1 -5500860 L 485506.3 -5500941 L 485574.7 -5501151 L 488406.2 -5501077 L 488673.6 -5500828 L 489166.5 -5501254 L 488916.8 -5501862 L 488808.5 -5502172 L 488975.8 -5502340 L 489909.7 -5503298 L 489653.2 -5503519 L 489932.7 -5503754 L 491008.3 -5503629 L 491659.5 -5502380 L 491961 -5502173 L 491938.7 -5503433 L 491821.2 -5504144 L 490549.1 -5505403 L 490342.8 -5505712 L 491571.5 -5506586 L 491466.3 -5506952 L 491617.3 -5506970 L 492041.3 -5505601 L 492224.6 -5505285 L 493277.1 -5505570 L 493486.5 -5506229 L 493753 -5506486 L 495283.9 -5502828 L 495551.4 -5503068 L 496129.4 -5502656 L 496617.3 -5501707 L 496599.5 -5502746 L 496822 -5503014 L 496294.1 -5503516 L 496402.4 -5504619 L 497810.1 -5505043 L 498371 -5505943 L 498729.8 -5505861 L 499277.1 -5506037 L 499449.6 -5506275 L 500316.1 -5505624 L 500374.6 -5504901 L 500598 -5504615 L 500964.9 -5504593 L 501708.2 -5503370 L 502037.8 -5503206 L 502412.5 -5503543 L 502921.2 -5504866 L 503626.8 -5504718 L 503990.8 -5504759 L 504155.2 -5505885 L 503897.7 -5506589 L 503785.5 -5506955 L 505661.6 -5506647 L 506013.9 -5506815 L 505957.1 -5505456 L 505714.1 -5504498 L 506508.2 -5505074 L 506679.8 -5505384 L 507020.2 -5506079 L 508178.2 -5506119 L 508563.1 -5506077 L 509086.9 -5505039 L 508390.4 -5503327 L 509019.4 -5502399 L 509169.6 -5502043 L 508920.7 -5501112 L 508139.8 -5501616 L 507812.6 -5501499 L 507761.2 -5500826 L 507167.8 -5500598 L 506955.5 -5499938 L 507641 -5499748 L 508126.9 -5498780 L 507967.5 -5498117 L 508132.8 -5497794 L 507876.3 -5497523 L 506962.1 -5496919 L 506744.9 -5496817 L 507153.8 -5496319 L 507353.3 -5496066 L 508591.6 -5494811 L 508837 -5494537 L 508955.7 -5493897 L 509744.3 -5492243 L 509958.7 -5491934 L 510026.1 -5491628 L 509156.5 -5491301 L 509106.9 -5490541 L 509500.6 -5489890 L 509481.8 -5488019 L 509079.5 -5487843 L 509222.1 -5486685 L 508827.9 -5485607 L 506934.1 -5485183 L 507378.2 -5483766 L 507721.9 -5483601 L 508394 -5482663 L 508740.7 -5482493 L 508886.8 -5481062 L 507650.4 -5480360 L 507710 -5479663 L 509003.8 -5479060 L 509352.6 -5478979 L 510878.1 -5478228 L 511199.9 -5478108 L 511756.9 -5477599 L 511996.3 -5477302 L 511684.3 -5476820 L 511918.9 -5476627 L 511584.6 -5476460 L 508759.9 -5475609 L 507956.4 -5476356 L 507214.6 -5476443 L 506789.5 -5475887 L 506812.4 -5474839 L 506835 -5474638 L 506851.6 -5474438 L 506900.9 -5474069 L 506873.5 -5471853 L 506524.5 -5471882 L 506779.1 -5469691 L 505815.1 -5469224 L 505506.9 -5467127 L 505204.2 -5466283 L 504907.1 -5466217 L 503409.7 -5465049 L 502555.2 -5463820 L 502445.9 -5464180 L 500838.6 -5465093 L 500559.7 -5465165 L 500046.2 -5465420 L 499789.6 -5465123 L 497312.9 -5463335 L 497527.4 -5463064 L 498350.3 -5462003 L 497978.2 -5461465 L 497729.7 -5461247 L 499098.5 -5460587 L 499480.7 -5459652 L 500569.4 -5459973 L 501235.8 -5459636 L 500937.4 -5458935 L 501305.3 -5458892 L 502099.7 -5459580 L 502422.3 -5459390 L 502464.9 -5458669 L 501905.9 -5458167 L 501909.2 -5457792 L 502144.2 -5457271 L 501846.8 -5456575 L 502291.9 -5455099 L 502321.1 -5454709 L 502321 -5454660 L 502736.6 -5452888 L 501564.7 -5451985 L 500560.4 -5452389 L 500814.7 -5453066 L 500011.1 -5453805 L 499617 -5453766 L 497295.1 -5453389 L 496884.9 -5452799 L 497280 -5451820 L 497664.3 -5450947 L 497657.1 -5448791 L 497827.5 -5448455 L 498170.2 -5448274 L 498523.9 -5448115 L 498779.5 -5448392 L 499277.6 -5448950 L 501047.2 -5447618 L 501464.2 -5446570 L 501856.1 -5446510 L 502643 -5446421 L 502488.4 -5447696 L 502439 -5448020 L 502054 -5448051 L 501737.3 -5448754 L 500334.5 -5448406 L 499919.6 -5449478 L 499786.6 -5451000 L 499999.2 -5451323 L 500336.6 -5451511 L 501093.9 -5451654 L 502134.1 -5451196 L 502425.7 -5450485 L 503051.5 -5450848 L 503687 -5450579 L 504344.5 -5450297 L 504264.6 -5449316 L 504494.1 -5449041 L 505188.8 -5449366 L 505858.2 -5449027 L 506115.9 -5448311 L 505820.5 -5446057 L 505985.9 -5445712 L 506754.8 -5445086 L 506202.1 -5446844 L 507352.4 -5449548 L 508236.1 -5448823 L 508160.1 -5446243 L 509133.1 -5445648 L 509898.1 -5445602 L 510257.2 -5445119 L 509125.1 -5444128 L 509145.4 -5443745 L 507689.4 -5443859 L 508157.4 -5443303 L 508402.9 -5443032 L 508149.4 -5442764 L 507555.2 -5442683 L 506726.5 -5443411 L 506660.7 -5441953 L 506226.4 -5441311 L 505492.1 -5441181 L 505116.1 -5440681 L 505115.8 -5440680 z M 499175.1 -5451027 L 499050.2 -5451103 L 498970.1 -5451054 L 499056.4 -5451218 L 499002.4 -5451234 L 498946.3 -5451204 L 498827.5 -5451295 L 498889.9 -5451520 L 498801.1 -5451646 L 498606.1 -5451652 L 498612.2 -5451717 L 498773.5 -5451860 L 499119.8 -5452007 L 499047.4 -5452298 L 499339.7 -5452420 L 499434.6 -5452344 L 499724.9 -5452462 L 499919.7 -5452360 L 500076.1 -5452029 L 500089.9 -5451934 L 499764.9 -5451962 L 499754.9 -5451948 L 499727.4 -5451708 L 499866.1 -5451551 L 499733.8 -5451392 L 499664.8 -5451398 L 499577.5 -5451239 L 499546.2 -5451099 L 499487.4 -5451214 L 499331.3 -5451186 L 499285 -5451056 L 499174.9 -5451027 L 499175.1 -5451027 z " |
id="path638" /> |
<path |
d="M 214558.1 -5379230 L 214919.1 -5380024 L 214944.9 -5380408 L 218617.5 -5384206 L 218870.2 -5384402 L 219994.8 -5384607 L 221320 -5385986 L 221308.4 -5387146 L 221748.8 -5388562 L 222256.5 -5389106 L 222614.1 -5389239 L 223148.6 -5390182 L 223139.4 -5391991 L 223746.4 -5392163 L 224110.8 -5392173 L 223879 -5392838 L 222507.7 -5393361 L 221962.6 -5395452 L 221866.3 -5395810 L 221850.1 -5396190 L 222737.5 -5396873 L 223161.2 -5397916 L 224356.2 -5398753 L 224702.2 -5398594 L 224698.8 -5399344 L 222703.7 -5400242 L 222375.8 -5400431 L 222188.2 -5400712 L 221711.7 -5401179 L 221428.8 -5401349 L 220403.4 -5402106 L 219963.3 -5402735 L 219727.5 -5403857 L 218909.4 -5404673 L 218178 -5404833 L 217952.1 -5404525 L 217166 -5404432 L 216831 -5404588 L 216574.7 -5406370 L 217409.2 -5407071 L 218558.4 -5407043 L 219510.8 -5407662 L 219857.6 -5407829 L 221346 -5409933 L 221689.7 -5410088 L 221957.5 -5410330 L 222034.4 -5410682 L 224758.3 -5411136 L 226556.8 -5411878 L 226951.3 -5411915 L 227198.3 -5412226 L 227439.3 -5412543 L 229121.5 -5414061 L 229458.3 -5414245 L 228837.4 -5414559 L 228035.3 -5415694 L 227826.8 -5415991 L 228925.3 -5416993 L 229509.8 -5416526 L 231695.7 -5415992 L 232405 -5416236 L 232376.2 -5415061 L 232185.2 -5414713 L 233719.4 -5414613 L 234752.6 -5415123 L 235084.4 -5415321 L 235324.8 -5415379 L 235570.1 -5415413 L 237015.7 -5415527 L 237395.6 -5414902 L 237751.7 -5414818 L 238429.2 -5415210 L 239315 -5416502 L 241217.6 -5416865 L 242079.8 -5416622 L 242224.2 -5416335 L 243296.9 -5416629 L 243225.6 -5417382 L 244667.7 -5417719 L 245317.5 -5418654 L 245670.5 -5418968 L 248032.7 -5419050 L 248584.3 -5418700 L 248546.4 -5418333 L 249619.1 -5418674 L 249938.9 -5418471 L 250038.2 -5417719 L 250265.7 -5417416 L 251128.5 -5416166 L 251489.5 -5416029 L 252815.9 -5416163 L 252996.1 -5416201 L 253270.9 -5415580 L 252555.9 -5415404 L 252464.2 -5414707 L 254055 -5413187 L 254178.9 -5413105 L 255075.5 -5414368 L 255403.2 -5414578 L 255145.1 -5415481 L 255009.7 -5415799 L 255456.2 -5416720 L 255595 -5417032 L 257143.1 -5416977 L 257581 -5416345 L 257753.3 -5415997 L 258583.8 -5416359 L 258886.9 -5416308 L 260011.9 -5416348 L 260659.5 -5415955 L 261044.7 -5415896 L 261885.2 -5415833 L 262656.5 -5415296 L 262928.3 -5415119 L 263847.2 -5414797 L 264374.5 -5415191 L 264628.2 -5415411 L 265022 -5414781 L 266356.7 -5414204 L 266780.8 -5413225 L 268386.9 -5412323 L 268645.6 -5412566 L 269910.1 -5411940 L 270249.1 -5411837 L 268953.3 -5413663 L 269158.2 -5413986 L 270232.5 -5414210 L 270495.1 -5415267 L 271192.8 -5414486 L 271782.9 -5414345 L 273153.9 -5414787 L 273816.9 -5414581 L 274114.6 -5414366 L 274522.4 -5414573 L 275218.7 -5415387 L 275348.6 -5415748 L 277238.1 -5417168 L 277491 -5417473 L 277490 -5417919 L 278127.2 -5418240 L 279076.2 -5417955 L 279272.6 -5417654 L 279308.7 -5417679 L 279142.9 -5418652 L 279090.6 -5418978 L 281609.9 -5420147 L 283557 -5420529 L 284166.8 -5421151 L 284172.5 -5421456 L 284474.2 -5422106 L 284632.1 -5422438 L 284821.7 -5423474 L 285770.6 -5424460 L 285969.4 -5424751 L 287355.2 -5424336 L 288981.5 -5425758 L 289287.2 -5425956 L 289464.9 -5426205 L 290092.7 -5425979 L 290673.1 -5425173 L 290763.4 -5424851 L 291060 -5423354 L 292146.2 -5423168 L 292519.7 -5423280 L 293144.8 -5423580 L 293586.2 -5424519 L 293790 -5424801 L 295838.4 -5425325 L 296349.7 -5424928 L 296519.1 -5424614 L 297260.5 -5424613 L 297758 -5425151 L 298043.6 -5426594 L 298986.3 -5427106 L 300046.1 -5427226 L 300401.4 -5427270 L 300482.4 -5425566 L 300809.2 -5425420 L 302414 -5425836 L 302735.4 -5425945 L 303520.8 -5425117 L 304221.6 -5424889 L 304484.1 -5424608 L 306224.6 -5425310 L 307645.4 -5427487 L 307840.2 -5427810 L 309772.4 -5426650 L 309424.7 -5425548 L 310343.5 -5425281 L 309058.3 -5423296 L 308969.4 -5422909 L 308640.8 -5422718 L 308329.3 -5421254 L 308230.4 -5420887 L 310515.2 -5419464 L 311079.4 -5418137 L 311843.5 -5418006 L 312840.2 -5418556 L 312336.2 -5417794 L 312294.5 -5417489 L 312982.5 -5417327 L 313333.6 -5417286 L 313491.7 -5418176 L 314608.9 -5418057 L 316203.4 -5417082 L 317615.4 -5417237 L 317995.6 -5417248 L 320098.8 -5416502 L 320394.4 -5416734 L 321919.7 -5418345 L 322234.3 -5418545 L 323152.4 -5417976 L 323504.3 -5417879 L 323598.6 -5417550 L 322786 -5416985 L 322696.2 -5416654 L 322868.8 -5416426 L 323007.3 -5416175 L 324430.6 -5416477 L 324200.2 -5415000 L 324489.7 -5414288 L 325122.1 -5413899 L 326185.3 -5414233 L 324452.5 -5411952 L 324199.8 -5411671 L 325425.9 -5411039 L 325707.5 -5410808 L 326703.7 -5409814 L 327010.4 -5409621 L 327672.3 -5409456 L 327952 -5409248 L 330106.5 -5407211 L 330759.4 -5407059 L 331096.2 -5406900 L 331449 -5406747 L 331778.7 -5406550 L 332002.2 -5406256 L 333041.5 -5406182 L 333668.8 -5405265 L 334622 -5404704 L 334843.5 -5404408 L 334905.7 -5403997 L 334465.1 -5403349 L 335928.8 -5401045 L 336149.2 -5400719 L 335287.3 -5399966 L 334871.9 -5398890 L 334126.1 -5398672 L 333767.7 -5398521 L 332932.6 -5397692 L 332641.9 -5397424 L 332797.3 -5397084 L 334280.8 -5397057 L 335155.7 -5396359 L 335440.3 -5396116 L 335462.7 -5395825 L 335261 -5395527 L 335139.6 -5393887 L 335367.2 -5393644 L 336303.9 -5392836 L 336438.9 -5392825 L 337518.2 -5393727 L 338514.7 -5393303 L 338852.5 -5393161 L 338474 -5392512 L 339158.7 -5391238 L 339432.3 -5390975 L 339295.9 -5390320 L 339326.8 -5389270 L 339978.6 -5389040 L 339678 -5388793 L 338986 -5387407 L 339208 -5386329 L 339547.4 -5386478 L 340942.6 -5386297 L 341118.6 -5383721 L 342405.4 -5382352 L 344291.6 -5382065 L 345221.6 -5381389 L 345545.3 -5381175 L 346346.5 -5380621 L 346670.7 -5380646 L 347479.6 -5379394 L 346489 -5378244 L 347043.4 -5377797 L 349296 -5376634 L 349662 -5376585 L 349534.2 -5376212 L 348636.6 -5374474 L 347650 -5373834 L 348352.1 -5373228 L 348654 -5373136 L 348652.3 -5372782 L 348442.3 -5371751 L 347145.9 -5371267 L 347212.4 -5370987 L 347251.9 -5370702 L 347439.9 -5369553 L 348500.3 -5367926 L 349116.7 -5367483 L 349897 -5367464 L 350042.4 -5367103 L 349794.8 -5366826 L 347676.4 -5364865 L 347854.2 -5363027 L 346422.5 -5361835 L 346182.1 -5361119 L 345857.7 -5360950 L 344717.9 -5359600 L 344515.3 -5359886 L 343908.7 -5359710 L 343761 -5359371 L 342924.5 -5358157 L 341839.2 -5358244 L 340691.2 -5357372 L 339675.6 -5357822 L 339810.1 -5357483 L 338740.2 -5356668 L 338529.6 -5356951 L 338063.3 -5357478 L 337715 -5357419 L 335785.8 -5356640 L 335590.6 -5356546 L 335262 -5355694 L 335032.4 -5355396 L 334328.6 -5354517 L 334334.3 -5353765 L 333372.2 -5352194 L 333597.8 -5351894 L 333910.3 -5352091 L 334956.1 -5352298 L 336322.6 -5351073 L 337027.5 -5350863 L 336671.1 -5350702 L 336043.1 -5350266 L 335402.4 -5348846 L 335793.4 -5348170 L 335469.6 -5347758 L 337927.5 -5343471 L 338433.5 -5342101 L 336714.6 -5341354 L 336701.4 -5340600 L 336016.6 -5340286 L 335681.2 -5340140 L 333111.9 -5338769 L 332830.1 -5339002 L 332522.3 -5339211 L 331612.9 -5339824 L 331159.3 -5340836 L 330529 -5340852 L 330426.4 -5341119 L 330293.8 -5341373 L 330312.5 -5341764 L 327982.9 -5345672 L 327770.3 -5347149 L 327416.4 -5347281 L 325469.1 -5348263 L 324741.4 -5348078 L 323912.8 -5347348 L 323865.2 -5346983 L 324333.4 -5345205 L 324079.3 -5345201 L 323842 -5345109 L 323672.5 -5345436 L 323176.7 -5346275 L 322477 -5346054 L 321042.7 -5346299 L 319963.2 -5346317 L 319609.1 -5346385 L 317579.2 -5347031 L 316873.7 -5346950 L 316886.4 -5347347 L 316854.7 -5348125 L 316411.6 -5348776 L 316079.5 -5348836 L 315103.4 -5349049 L 313815.8 -5350861 L 314090.1 -5351555 L 314699.1 -5351965 L 313693.2 -5353501 L 312510.3 -5352747 L 311586.9 -5353359 L 310066.1 -5353336 L 309752.2 -5353504 L 309130.4 -5353816 L 308982.5 -5354510 L 308891 -5354810 L 308109.4 -5355277 L 307572.1 -5354720 L 306613.6 -5355305 L 305809.5 -5356623 L 305606.4 -5357763 L 306130.5 -5358219 L 306133.1 -5358584 L 305702.6 -5360680 L 305739.3 -5361070 L 305616.3 -5362236 L 305486.7 -5362482 L 305275.9 -5362665 L 305424.6 -5363008 L 305278.6 -5365244 L 305802.8 -5365760 L 306004.9 -5366852 L 305603.8 -5367481 L 305414.2 -5367771 L 305026 -5368326 L 305031.7 -5368724 L 304739.7 -5369877 L 304009 -5370806 L 303797.7 -5370698 L 303134.9 -5370979 L 302834.1 -5371195 L 301960.6 -5372237 L 301242.5 -5372405 L 300865.3 -5372429 L 300025.2 -5373184 L 298971 -5373403 L 298617.7 -5373354 L 297746 -5373796 L 297437.5 -5373616 L 297343.7 -5373226 L 297121 -5372934 L 294642.9 -5372601 L 294362.8 -5372642 L 294092.8 -5372725 L 293763.4 -5372629 L 292349.7 -5371666 L 292122.3 -5371518 L 291743.2 -5371585 L 290677.8 -5371737 L 290499.3 -5371005 L 290721.1 -5370293 L 290377.6 -5370150 L 289183.4 -5370990 L 288540.7 -5370825 L 288672.2 -5370512 L 289310.1 -5369723 L 289554.8 -5369467 L 289163.5 -5368908 L 288818.1 -5368829 L 287110.5 -5368565 L 286826.7 -5368776 L 286518.6 -5368808 L 286053.5 -5368396 L 285680 -5367721 L 285847.4 -5367368 L 285062.5 -5366053 L 283896.8 -5366105 L 283900.6 -5366005 L 283594.1 -5365860 L 282668 -5365598 L 282422.3 -5365309 L 281651.4 -5364012 L 282210 -5363049 L 280507.5 -5362822 L 280194.3 -5362831 L 279277.7 -5362847 L 278957.8 -5363012 L 277998.8 -5363947 L 277888 -5364658 L 277552 -5364815 L 276136.4 -5364497 L 275966 -5363818 L 273753.6 -5362832 L 273868.1 -5362491 L 273539.3 -5363269 L 273350.7 -5363586 L 273654 -5364177 L 273655.7 -5364545 L 273525.9 -5368517 L 273707.3 -5368676 L 274114.3 -5370139 L 273949.2 -5371222 L 273282.4 -5371583 L 272933.3 -5371676 L 271936.1 -5370878 L 269864.4 -5370773 L 269108.9 -5370826 L 267698.9 -5371395 L 267384 -5371572 L 266905.6 -5372092 L 267025.4 -5373516 L 266652.3 -5374126 L 266908.9 -5374340 L 266585.4 -5375268 L 266571 -5375600 L 266568.7 -5375954 L 265742.2 -5377063 L 265397.8 -5376985 L 265856.9 -5378368 L 267458.4 -5379022 L 267546.9 -5379753 L 265054.3 -5381404 L 264331.3 -5382211 L 264180.9 -5382558 L 264073.3 -5382821 L 263895.6 -5383041 L 263631.9 -5383311 L 263079.5 -5383811 L 262444.5 -5383533 L 261354.2 -5383821 L 260502 -5384530 L 260131.8 -5383560 L 259330.6 -5382792 L 259087.8 -5382487 L 260323 -5381090 L 259705.6 -5380114 L 258374 -5379343 L 258076.9 -5377883 L 257068.4 -5378060 L 257055.8 -5378787 L 256753 -5378989 L 255367.3 -5379212 L 255129.5 -5379438 L 254556.7 -5379758 L 253400.8 -5378265 L 253231.2 -5377530 L 251948.9 -5376925 L 251933.2 -5375507 L 251016.3 -5375967 L 250666.8 -5376875 L 250324.6 -5376951 L 249343.6 -5377359 L 249049.7 -5377562 L 249085.6 -5378515 L 248778.6 -5378627 L 248527.8 -5378344 L 246710.3 -5378367 L 246786.5 -5378456 L 246501.7 -5378693 L 245165.7 -5379281 L 244871 -5379057 L 244112.4 -5379079 L 242783.9 -5377897 L 241719.2 -5378006 L 240525.7 -5378810 L 240255 -5378565 L 239777.6 -5377585 L 238544.3 -5376972 L 238311.5 -5376686 L 237099 -5374966 L 236425.6 -5375090 L 236299.1 -5375436 L 236050.4 -5375191 L 235711.9 -5374580 L 235409.9 -5374722 L 234128 -5374867 L 234055.3 -5375057 L 233704.6 -5374876 L 232564.4 -5373799 L 229478.2 -5372153 L 229551.3 -5373193 L 229565.1 -5373588 L 229348.6 -5375538 L 228622.5 -5376868 L 228587.8 -5376517 L 227475.4 -5375861 L 227446 -5375166 L 227115.4 -5375041 L 226763.8 -5374930 L 226078.5 -5375120 L 226000.1 -5375479 L 224977.6 -5375245 L 224383.7 -5375622 L 224020.1 -5375481 L 223608.4 -5374817 L 223841.3 -5374134 L 224950.4 -5373078 L 221874.5 -5371670 L 221551.1 -5371627 L 220613.5 -5372375 L 220475 -5372729 L 220450.2 -5374916 L 219300 -5374956 L 217814.3 -5373876 L 217653.7 -5374166 L 217456.9 -5375401 L 217527.2 -5376032 L 217249.3 -5376264 L 216887.2 -5376405 L 215610.4 -5378773 L 214557.1 -5379231 L 214558.1 -5379230 z " |
id="path639" /> |
<path |
d="M 569716.1 -5023433 L 569406.1 -5023223 L 567926 -5023226 L 566526.9 -5023678 L 565615.9 -5024799 L 564999.8 -5024399 L 564897.8 -5024762 L 564900.9 -5026263 L 563847.8 -5025942 L 563460.8 -5026581 L 562517.8 -5027182 L 561757.7 -5026456 L 561385.7 -5026408 L 561380.7 -5026034 L 561067.7 -5024964 L 561135.7 -5023134 L 560547.7 -5022716 L 559867.7 -5022563 L 558870.7 -5023180 L 558641.7 -5022948 L 557559.7 -5022840 L 556766.7 -5023543 L 556050.7 -5023544 L 555717.7 -5023696 L 555406.7 -5023609 L 554762.7 -5023662 L 554395.7 -5023584 L 554235.7 -5024234 L 554562.7 -5024864 L 553849.7 -5025051 L 553042.7 -5025792 L 552808.7 -5026067 L 552093.7 -5025981 L 551685.7 -5025393 L 551371.7 -5023881 L 549981.8 -5023305 L 549638.8 -5022251 L 548587.9 -5021181 L 547841.9 -5021093 L 546039.9 -5022983 L 545709.9 -5023175 L 545335.9 -5024734 L 545483.9 -5025037 L 545375.9 -5025402 L 544931.9 -5026020 L 544768.9 -5026380 L 543991.9 -5028179 L 543618.9 -5027516 L 542942.9 -5027236 L 542337.9 -5027691 L 540275 -5028130 L 540018 -5028423 L 539100 -5029111 L 538650 -5030948 L 538300 -5030792 L 536946.1 -5030120 L 535715.2 -5028699 L 535488.3 -5027987 L 535117.3 -5027892 L 534758.3 -5028014 L 532893.5 -5028022 L 532332.6 -5027522 L 532201.6 -5027834 L 531258.7 -5028193 L 530594.8 -5027855 L 529907.9 -5028176 L 529184 -5027943 L 528190 -5029084 L 527899 -5029345 L 527291 -5030324 L 527018 -5030144 L 526111.1 -5030167 L 525294.4 -5027481 L 524955.4 -5027650 L 524825.4 -5028385 L 523613.4 -5029823 L 522903.5 -5030025 L 522586.6 -5029817 L 522559.6 -5029426 L 522278.8 -5028285 L 521949.9 -5027729 L 521601 -5027537 L 519814.4 -5026735 L 519476.5 -5026627 L 518438.7 -5026707 L 517934.7 -5027157 L 517883.7 -5026796 L 516893 -5025770 L 516572.3 -5024359 L 516353.3 -5024416 L 516011.4 -5024104 L 515819.4 -5024438 L 515072.5 -5024402 L 514554.7 -5023841 L 513517 -5023426 L 513356.1 -5022701 L 513640.1 -5022440 L 511301.6 -5022301 L 510937.7 -5022260 L 510338.8 -5022670 L 509701 -5022319 L 507562.4 -5022648 L 507323.5 -5022439 L 507010.6 -5022388 L 506807.7 -5022059 L 506382 -5021019 L 504945.4 -5020627 L 504408.6 -5020085 L 504610.9 -5018574 L 503918.3 -5017693 L 504115.3 -5017362 L 503815.4 -5017190 L 502340 -5016399 L 501988.1 -5016352 L 501331.4 -5016100 L 500896.8 -5015160 L 500528.9 -5015293 L 499399.1 -5015563 L 496953.3 -5017353 L 495436.7 -5017601 L 495387.6 -5017983 L 494141.4 -5019910 L 493551.1 -5021740 L 493530 -5022260 L 493269.7 -5023784 L 493412.6 -5024148 L 493064.7 -5024018 L 492035.9 -5024307 L 491084.9 -5025383 L 490769.9 -5025574 L 490119 -5025812 L 489563.4 -5024953 L 489188.5 -5025036 L 488348.5 -5025808 L 487910.4 -5026838 L 487522.5 -5026810 L 486010 -5026662 L 485017 -5027733 L 483009.8 -5026638 L 482650.1 -5025979 L 482291.2 -5026096 L 481948.3 -5026231 L 480846.6 -5026194 L 479904.7 -5026727 L 479577.8 -5026875 L 478203.3 -5026561 L 477123.9 -5025641 L 476347.9 -5026480 L 475957.7 -5027530 L 474570.8 -5028715 L 474434.4 -5030224 L 474698.3 -5030434 L 475227.9 -5031239 L 475107.8 -5031888 L 473990.1 -5031939 L 472915.5 -5031571 L 472210.5 -5032456 L 471860.6 -5032553 L 471184.7 -5032794 L 470114.1 -5032591 L 470189 -5032965 L 469983.6 -5034860 L 469483.8 -5034841 L 468294.5 -5033375 L 467528.7 -5033346 L 466199.9 -5034017 L 465543.8 -5034933 L 465172.9 -5034920 L 463185.8 -5034125 L 463251.7 -5034473 L 463839 -5036508 L 463472.1 -5036539 L 462075.4 -5036893 L 461061.8 -5036466 L 461499.2 -5038056 L 461243.1 -5038602 L 461122.1 -5038878 L 461170.9 -5039608 L 461865.4 -5040949 L 461597.3 -5041615 L 461838.1 -5042300 L 461615.9 -5043402 L 461864.8 -5043688 L 461754.6 -5044529 L 461694.6 -5044832 L 461048.8 -5044777 L 460169 -5045167 L 459547.9 -5046523 L 458468 -5047639 L 457636.9 -5049382 L 457797.7 -5050089 L 458518.4 -5050696 L 458812.3 -5050845 L 459111.8 -5053491 L 459111.7 -5053876 L 459447.5 -5054497 L 461603 -5054334 L 461910.9 -5054385 L 462003.8 -5054869 L 461994.8 -5055181 L 462550.5 -5056133 L 461660.6 -5057262 L 461667.5 -5057965 L 462453.2 -5058968 L 462776.1 -5059077 L 462594.1 -5059389 L 462562 -5060426 L 462209.1 -5060593 L 462244.9 -5062109 L 459970.1 -5065250 L 459440.1 -5066272 L 458357.3 -5066571 L 458029.3 -5067269 L 457082.4 -5067871 L 456751.5 -5067681 L 456114.6 -5067905 L 455484.7 -5068846 L 455436.7 -5069198 L 455247.6 -5070931 L 452052 -5074881 L 451952 -5075254 L 453054.8 -5076330 L 454931.5 -5076005 L 455429.4 -5076524 L 455920.3 -5077354 L 456609.2 -5077276 L 456757.2 -5077985 L 456275.3 -5078518 L 456225.3 -5079242 L 456284.3 -5079602 L 457985 -5079754 L 457982 -5080104 L 458680.9 -5080080 L 459706.7 -5079303 L 460067.6 -5079281 L 460801.5 -5080582 L 460850.5 -5081726 L 461605.4 -5081838 L 464555.1 -5084245 L 464827.1 -5084520 L 465188.1 -5084692 L 464109.3 -5085103 L 464133.4 -5086619 L 464732.4 -5087101 L 464725.5 -5087838 L 466061.4 -5088485 L 465834.5 -5089566 L 468652.3 -5090517 L 469015.3 -5090616 L 469325.4 -5091315 L 468502.6 -5092574 L 468249.7 -5092865 L 467972.9 -5093911 L 468440.1 -5095676 L 468382.2 -5096041 L 468654.3 -5096685 L 468532.5 -5097711 L 468733.5 -5097997 L 468465.6 -5098287 L 466483.9 -5099574 L 465047.6 -5102814 L 464743.9 -5103960 L 464900 -5104733 L 464776.1 -5105423 L 464634.4 -5106887 L 464754.5 -5107570 L 465203.6 -5108078 L 465230.8 -5108796 L 465438 -5109765 L 465808 -5109994 L 465916.1 -5110241 L 467633.7 -5108704 L 467913.6 -5108429 L 468459.7 -5108713 L 468727.7 -5108883 L 470077.5 -5108181 L 470408.4 -5107978 L 471448.3 -5107596 L 472192.3 -5107745 L 472777.4 -5108244 L 473364.7 -5109631 L 473536.8 -5109930 L 473895.2 -5111351 L 474381.4 -5111934 L 474525.8 -5113437 L 475169.9 -5113840 L 476264 -5114148 L 476534.1 -5114425 L 477827.1 -5114307 L 478108.1 -5114480 L 478071.3 -5115210 L 478653.6 -5116119 L 478050.2 -5117859 L 478677.5 -5118797 L 478857.6 -5119131 L 479921.5 -5118737 L 480952.2 -5117639 L 481710.2 -5117720 L 482806.9 -5116686 L 483025.8 -5116375 L 484475.7 -5116126 L 484846.7 -5116103 L 485382.1 -5117081 L 485514.6 -5118568 L 485848.7 -5118739 L 485418.2 -5120089 L 485528.5 -5120796 L 485535.6 -5121164 L 488323.3 -5122651 L 488667.4 -5122806 L 489148.2 -5122194 L 490712.4 -5122422 L 492205.3 -5121933 L 493761.5 -5122007 L 494943.3 -5121196 L 495307.3 -5121153 L 494249.8 -5120111 L 494776.5 -5119161 L 494563.4 -5118845 L 494284.3 -5118597 L 493600.2 -5118421 L 492979 -5117942 L 492693.6 -5116803 L 493291.1 -5115352 L 493223.8 -5114568 L 492583.6 -5114151 L 492781.5 -5113906 L 492963.4 -5113650 L 495480.3 -5113101 L 495773.4 -5113340 L 496501.9 -5108956 L 496716.8 -5108648 L 497047.6 -5108067 L 497283.5 -5107830 L 497930.6 -5108145 L 499022.6 -5108000 L 500157.3 -5107038 L 500568 -5106012 L 501135.9 -5105614 L 501482 -5105753 L 502181.1 -5106037 L 502486.2 -5106260 L 503353 -5105505 L 506500.6 -5106740 L 507181 -5104953 L 507057.6 -5103807 L 507257.5 -5103476 L 507881.5 -5103383 L 508201.5 -5103384 L 508434.5 -5103264 L 508608.5 -5103066 L 508879.4 -5102828 L 509345.3 -5102282 L 512959.4 -5101680 L 513327.4 -5101750 L 513334.7 -5102514 L 516044 -5102690 L 516614.8 -5101854 L 517108 -5102200 L 517438 -5102117 L 517279.9 -5101799 L 517807.8 -5101399 L 518150.8 -5101312 L 519037 -5101527 L 519298.1 -5101688 L 520783.1 -5101379 L 521446.3 -5101718 L 522495.4 -5101544 L 522840.5 -5101704 L 523082.3 -5101196 L 523767.4 -5101247 L 523973.3 -5100972 L 525196.2 -5100360 L 525108.9 -5099662 L 525142.8 -5099310 L 525467.9 -5099528 L 528005.6 -5100481 L 529065.2 -5101608 L 530593.5 -5101866 L 531908 -5102716 L 532099.9 -5102374 L 533090.6 -5101218 L 533851.7 -5101164 L 534531 -5101559 L 534820.8 -5101071 L 535079.7 -5100814 L 535077.4 -5100084 L 535951.1 -5098951 L 535592 -5098850 L 535283.9 -5098640 L 535620.5 -5097577 L 535380.6 -5095388 L 535730.7 -5095527 L 536077.8 -5095677 L 537120.1 -5096084 L 539732.5 -5096117 L 539749.8 -5096775 L 541113.1 -5096894 L 541627.9 -5096087 L 541919 -5096291 L 542253 -5096229 L 542372.2 -5096578 L 544167.5 -5096532 L 544646.8 -5097086 L 544979.9 -5097244 L 545767.8 -5096535 L 546911.3 -5094669 L 546948.2 -5094298 L 547917.8 -5092776 L 548272 -5090610 L 548410.9 -5090267 L 548962.2 -5090756 L 550724.4 -5090283 L 551094.5 -5090302 L 551980.4 -5089733 L 552196.9 -5088360 L 552343.8 -5088025 L 553018.6 -5087245 L 553233.5 -5086970 L 553243.5 -5086945 L 555369.6 -5086080 L 555763.4 -5085454 L 555970.3 -5085133 L 556848.2 -5084432 L 557855.7 -5082397 L 557966.6 -5082031 L 557653.5 -5081844 L 556406.7 -5080375 L 554968.4 -5080284 L 555101.3 -5079958 L 555346.1 -5079306 L 555985.2 -5079418 L 555839.1 -5079070 L 555393.7 -5078128 L 555267.6 -5078009 L 555890 -5075817 L 554810.8 -5072588 L 553456.4 -5071842 L 553328.2 -5071166 L 553877.1 -5070608 L 556066.2 -5069793 L 556725.9 -5068506 L 556440.8 -5068236 L 556234.7 -5068057 L 556125.6 -5067782 L 555980.5 -5067524 L 556271.5 -5067294 L 557460.3 -5065940 L 558223.6 -5066552 L 559191.2 -5064571 L 559827.2 -5064182 L 560197.3 -5064137 L 559898.1 -5063563 L 560137 -5062959 L 560325 -5062693 L 559829.6 -5061413 L 559922.4 -5060702 L 559974.3 -5060348 L 561119.1 -5058801 L 561312 -5058465 L 561986.7 -5056836 L 562179.7 -5056541 L 563147.6 -5055513 L 563278.5 -5054819 L 563390.4 -5054484 L 563511.3 -5054188 L 563625.3 -5053888 L 564583.3 -5053357 L 566364.5 -5053068 L 566508.4 -5052364 L 566571.3 -5052004 L 566881.3 -5051918 L 567189.3 -5051825 L 568166.2 -5050717 L 569967.4 -5050285 L 570302.4 -5050109 L 570361.3 -5049762 L 572149.3 -5048148 L 572419.3 -5047914 L 572731.2 -5047314 L 572924.2 -5047007 L 573142.1 -5046315 L 573920.1 -5045557 L 573308.7 -5044170 L 574294.3 -5040894 L 574592.2 -5039984 L 574799.2 -5039727 L 575153.2 -5039532 L 575420.2 -5039393 L 576307.2 -5038841 L 576262.1 -5038154 L 576446.1 -5037856 L 576271 -5037526 L 575364.7 -5036871 L 575053.6 -5036214 L 574992.5 -5035851 L 575481.4 -5034871 L 575204.3 -5034188 L 575675.3 -5033637 L 575360.2 -5033521 L 574512 -5033086 L 574728 -5032793 L 574766 -5032430 L 574765 -5032310 L 574497.9 -5032055 L 572744.6 -5031566 L 571279.3 -5030587 L 570923.3 -5030684 L 570710.2 -5030359 L 570401.1 -5029646 L 569738 -5029289 L 569245.8 -5027858 L 569287.6 -5024845 L 569715.6 -5023433 L 569716.1 -5023433 z " |
id="path640" /> |
<path |
d="M 628466.3 -5047362 L 628117.2 -5047522 L 628092 -5047165 L 627929.6 -5046481 L 628990.7 -5045132 L 628389.3 -5044992 L 627807.9 -5044766 L 627635 -5045117 L 627084.9 -5045661 L 626270.3 -5047852 L 625408.1 -5048636 L 625089.9 -5048457 L 624483.4 -5048054 L 623253.8 -5048063 L 622994.8 -5048336 L 621940.7 -5049316 L 621637.6 -5049468 L 620772 -5048946 L 620124.7 -5049045 L 619762.5 -5048995 L 618160.5 -5048170 L 617571.4 -5048590 L 616852.1 -5048615 L 616787.4 -5049362 L 616469.3 -5049562 L 613916.2 -5049541 L 613938.3 -5049841 L 614419.8 -5050546 L 614257.8 -5050836 L 613341.6 -5051224 L 612486.5 -5051913 L 611788.8 -5053643 L 611473.7 -5053764 L 610291.4 -5054349 L 609950.2 -5054318 L 609339 -5054595 L 609218.2 -5055155 L 608913.2 -5055381 L 607920.4 -5056964 L 608172.6 -5057149 L 607898.8 -5057948 L 607534.7 -5058087 L 605808.3 -5058872 L 606021.5 -5059160 L 605783.8 -5060187 L 606357.4 -5061062 L 606080.4 -5061294 L 605725.5 -5061911 L 606277 -5062437 L 606446.5 -5063574 L 607181.2 -5064455 L 607653.2 -5066318 L 608549.9 -5067006 L 608409 -5067298 L 607576 -5068226 L 607197.8 -5068172 L 606233.1 -5067576 L 605132.7 -5067740 L 605216.9 -5068087 L 604313.3 -5069954 L 605013 -5070827 L 606414.9 -5071428 L 606311.9 -5073687 L 606938.2 -5073758 L 607264.2 -5073544 L 606649.7 -5075136 L 606813.9 -5075452 L 606305.9 -5075949 L 606657.1 -5076010 L 606883.7 -5076979 L 607413.2 -5077374 L 607130.2 -5077630 L 606813.4 -5078308 L 607389.9 -5078797 L 607800.6 -5079865 L 607660.8 -5080456 L 607285.6 -5080387 L 605068.6 -5080518 L 603603.5 -5081684 L 603430.6 -5082028 L 603150 -5083148 L 602306 -5083932 L 602061.3 -5084653 L 602380.5 -5084853 L 603822.8 -5086004 L 603467.7 -5086097 L 603204.8 -5086640 L 603781.6 -5087578 L 603044.3 -5087774 L 601903.3 -5088785 L 601153 -5088903 L 599701 -5090110 L 600208.5 -5090666 L 599271.9 -5092299 L 598250.7 -5092793 L 597991.7 -5093031 L 596946.3 -5093147 L 596090.2 -5093749 L 596024.6 -5094451 L 595919.7 -5094788 L 596315.8 -5094738 L 597357.5 -5095080 L 597751.3 -5094443 L 598124.5 -5094410 L 599246.2 -5094796 L 600116.2 -5094059 L 600403.7 -5094672 L 601010.7 -5095878 L 600875.8 -5096197 L 600708.9 -5096553 L 600504.4 -5097698 L 600444.4 -5097683 L 600101.2 -5097600 L 599108.6 -5097314 L 598505.5 -5097683 L 598189.5 -5097913 L 597695.9 -5098974 L 596974.7 -5099243 L 597000.9 -5099583 L 596219.2 -5100688 L 596396.5 -5100980 L 596676.8 -5101221 L 597386 -5101017 L 598842.8 -5101233 L 599771.9 -5102334 L 599977.2 -5102626 L 600062.1 -5104006 L 600336.3 -5104092 L 600750.7 -5104381 L 600713.9 -5104746 L 600798.6 -5105841 L 600376.8 -5106441 L 600614.6 -5107520 L 600881.9 -5107773 L 601407.5 -5108291 L 601569.5 -5109755 L 602148 -5110126 L 602380.3 -5110384 L 604219.5 -5110725 L 604602.7 -5110752 L 605786.2 -5112034 L 606143.4 -5112025 L 606427.4 -5111807 L 608208.7 -5110665 L 608915 -5110551 L 609371.4 -5112278 L 609943.1 -5112754 L 610492.3 -5114132 L 610224.3 -5114357 L 608595.1 -5115449 L 608301 -5115606 L 607976.9 -5115679 L 607705.9 -5115927 L 607178 -5116439 L 607219.5 -5117156 L 609218.3 -5118023 L 609117.5 -5118453 L 608965.6 -5118788 L 607935.7 -5119830 L 606495.9 -5119821 L 606341.3 -5120472 L 606725.4 -5121794 L 606458.7 -5122455 L 606252.8 -5122746 L 606459.1 -5122944 L 606789.6 -5124770 L 607083 -5125023 L 607043.4 -5125613 L 607031.6 -5125913 L 607197.5 -5127002 L 607823.6 -5127949 L 607718.8 -5128316 L 608090 -5128242 L 609148.7 -5128370 L 609340.4 -5129098 L 610175.4 -5128387 L 610315.2 -5128032 L 611371.2 -5128428 L 612064.5 -5128173 L 613103.4 -5127125 L 613741 -5127434 L 614100.3 -5127544 L 615139.5 -5125575 L 615339.4 -5125252 L 618283.8 -5125849 L 618596.2 -5126073 L 618702 -5127109 L 619252.1 -5128013 L 619431.4 -5128320 L 620391 -5128233 L 620542.9 -5127897 L 620613.9 -5126461 L 621394.9 -5125720 L 621694.9 -5125520 L 623852.3 -5125348 L 624171.4 -5125177 L 624266.6 -5126642 L 624018.7 -5126932 L 625438.7 -5128218 L 625385.3 -5128990 L 625644.7 -5129278 L 626754.7 -5129498 L 627638.8 -5128788 L 628796.4 -5129692 L 629856 -5129472 L 629830.5 -5128891 L 629908.3 -5128607 L 630652 -5127548 L 630978.2 -5127540 L 631046.2 -5126228 L 631007.9 -5125881 L 630495.3 -5125616 L 629975.3 -5126052 L 629256.2 -5125416 L 628945.1 -5125552 L 629018.3 -5124452 L 629779.2 -5123618 L 630895.2 -5123790 L 631170.2 -5123532 L 632090.6 -5123073 L 633310.6 -5121873 L 633079.9 -5121235 L 632075.2 -5121322 L 633017.6 -5119646 L 633322.7 -5119485 L 632255.9 -5118174 L 632262.6 -5117808 L 632183.3 -5117444 L 632514.8 -5116422 L 633204.8 -5115715 L 635258 -5115298 L 635531.4 -5115536 L 636178.9 -5115545 L 636477.2 -5115714 L 636842.5 -5115676 L 637017.2 -5115120 L 637176.1 -5114760 L 637764.2 -5114245 L 638411.4 -5113804 L 638616.3 -5113470 L 638148.5 -5111539 L 637941.1 -5111226 L 637515.3 -5110604 L 637271.9 -5110312 L 636356.3 -5109105 L 636326 -5108775 L 636000.1 -5107864 L 635660.5 -5107412 L 635478.2 -5107198 L 635248.8 -5106929 L 634560.8 -5106145 L 634705.2 -5105155 L 635227.3 -5104785 L 635618.9 -5103848 L 635679.7 -5103514 L 635488.1 -5102816 L 635280.7 -5102517 L 634014.9 -5101259 L 634511.4 -5099910 L 634604.3 -5099613 L 634587.9 -5098991 L 634414.3 -5098249 L 634828.6 -5096801 L 634844.3 -5096421 L 634808.2 -5096312 L 634906.8 -5095601 L 635351.5 -5093105 L 635184.9 -5092395 L 635029.6 -5092063 L 634902.4 -5091829 L 634640 -5091542 L 633521.6 -5090464 L 633670 -5089400 L 634297.2 -5089089 L 634651.4 -5089048 L 635613.9 -5088758 L 635949.2 -5088808 L 636563.9 -5089191 L 637251.4 -5089154 L 637970.1 -5087908 L 638138 -5087588 L 639599.9 -5087316 L 639762.8 -5087044 L 639853.3 -5086096 L 639372.1 -5084785 L 639460.1 -5084595 L 642468.3 -5086359 L 642826.7 -5086513 L 643150.6 -5085888 L 644524.4 -5085473 L 644644 -5084771 L 644657.8 -5084411 L 645055.3 -5084770 L 645316.5 -5084831 L 645547.7 -5083310 L 645603.5 -5082930 L 647212.4 -5082363 L 647573.6 -5082325 L 647005.2 -5080810 L 646961 -5080476 L 648187.1 -5079153 L 648432.6 -5078074 L 648621.5 -5077755 L 648525.2 -5077393 L 648485.8 -5075154 L 648961.8 -5074575 L 650681.5 -5075216 L 651046.7 -5075155 L 652243.7 -5075216 L 652515.8 -5075039 L 653294.3 -5074888 L 654266.2 -5075130 L 654576.5 -5075288 L 654903.9 -5075405 L 655779.3 -5074885 L 656119.6 -5074936 L 656428 -5075113 L 657752.2 -5075284 L 658324.9 -5075684 L 659023.5 -5075677 L 659329.6 -5075501 L 661607.7 -5075770 L 661997 -5075786 L 662324.3 -5075883 L 662653.6 -5075975 L 661926.1 -5073042 L 661617.7 -5072820 L 659816.5 -5073397 L 659451.2 -5073497 L 659546.9 -5072776 L 659520.7 -5072412 L 660322.3 -5070693 L 661833.6 -5070801 L 662204.9 -5070702 L 662062.5 -5070345 L 661958.7 -5069207 L 662358.2 -5067754 L 665157.4 -5067403 L 665427.5 -5067165 L 666175.4 -5065943 L 667147.9 -5065409 L 667465.1 -5065206 L 667293.2 -5064068 L 667200.9 -5063689 L 666938.8 -5063949 L 666286 -5063624 L 665277.4 -5064027 L 663236.2 -5063205 L 663482.8 -5062092 L 662262.3 -5061189 L 662120 -5060830 L 661371.3 -5060691 L 659431.7 -5058853 L 659651.6 -5058360 L 659765.6 -5058115 L 658252.8 -5056968 L 658151.9 -5055426 L 658771.9 -5054446 L 658476.6 -5054217 L 657982 -5053710 L 655537.6 -5054573 L 654514.6 -5054114 L 654745.6 -5053804 L 655485.1 -5053627 L 655289.4 -5052485 L 655249.3 -5052435 L 654897.1 -5052603 L 653132.2 -5053426 L 650122.8 -5052754 L 649686.4 -5052562 L 648583.7 -5052675 L 646912.2 -5052030 L 646627 -5052026 L 646101.5 -5051679 L 644477 -5050779 L 644606.9 -5050475 L 644342.2 -5049186 L 643635.9 -5049546 L 643317.8 -5049721 L 642047.3 -5050375 L 640660.5 -5050563 L 640287.2 -5050476 L 638038.8 -5050243 L 638138.7 -5049866 L 640518.6 -5048630 L 640988.7 -5048171 L 641126.7 -5047867 L 641376.6 -5047365 L 641509.6 -5047120 L 642454.6 -5045852 L 642780.7 -5045625 L 644867.7 -5044892 L 645644.9 -5044151 L 645578.7 -5043786 L 644787.7 -5042568 L 643827.6 -5041380 L 643575.3 -5041094 L 643277 -5040727 L 642948.7 -5040558 L 641964.9 -5040065 L 641141.9 -5038853 L 640191.2 -5038292 L 640025.1 -5038193 L 639700.8 -5038026 L 638551.9 -5037175 L 638564.8 -5036844 L 638684.5 -5035860 L 638547.3 -5035552 L 638271.1 -5035454 L 637984 -5035596 L 636783.3 -5035585 L 636556.3 -5035855 L 635245.1 -5037440 L 635600.4 -5037586 L 635260.7 -5039045 L 633946.3 -5039818 L 633698.1 -5039540 L 632264.8 -5037974 L 630863.2 -5038128 L 630511.1 -5038214 L 629993.6 -5037716 L 629832.8 -5038387 L 629304.7 -5038850 L 628960.5 -5038728 L 628375.7 -5039996 L 628658.9 -5040255 L 628309 -5043632 L 629351.9 -5044720 L 629421.1 -5045098 L 629511.2 -5045122 L 629651.4 -5045439 L 630942.5 -5046455 L 631164.8 -5046793 L 630217.8 -5047995 L 628846.9 -5047410 L 628466.7 -5047361 L 628466.3 -5047362 z " |
id="path641" /> |
<path |
d="M 686962 -5243544 L 686383.6 -5243877 L 686518.6 -5244571 L 686765.3 -5244849 L 687877.6 -5245432 L 688069.2 -5246523 L 687652.4 -5247944 L 687553.5 -5248109 L 687536.4 -5249666 L 687728.1 -5250006 L 687939.8 -5250318 L 687793.5 -5251057 L 688054.8 -5251757 L 686606.5 -5252342 L 684632.2 -5251138 L 684449.4 -5251441 L 683234.5 -5252042 L 683450.1 -5253123 L 683758.8 -5253329 L 683731.6 -5254015 L 682926 -5255237 L 683034.6 -5257160 L 683457 -5257795 L 683642.6 -5258060 L 683223.5 -5258462 L 682942.8 -5258227 L 681904.7 -5258464 L 681557.5 -5259483 L 681219.2 -5259639 L 678994.6 -5258358 L 679087.2 -5258696 L 679116 -5259325 L 678282.6 -5259882 L 678941.7 -5260087 L 680765.5 -5261140 L 681025.1 -5261380 L 680700.7 -5261388 L 679478.6 -5261777 L 679536 -5262048 L 679745.9 -5262559 L 680186.7 -5263471 L 680318.3 -5263783 L 682480 -5263575 L 682815.8 -5263058 L 683152.1 -5262918 L 683640.4 -5263435 L 683964 -5263587 L 684401.1 -5264767 L 685295.9 -5266025 L 685689.8 -5267115 L 686795.3 -5267097 L 686891.8 -5267427 L 687498.2 -5269359 L 687488.7 -5269743 L 687040.9 -5271151 L 686363.2 -5271358 L 686628.5 -5272829 L 685942.3 -5275782 L 685367.9 -5276079 L 685168.1 -5276396 L 682974.7 -5278396 L 681871.5 -5278617 L 681308 -5277299 L 680045.9 -5274679 L 679783.3 -5274539 L 679248.5 -5274440 L 678398.5 -5275337 L 678087.2 -5275439 L 678096.6 -5277307 L 679018 -5278986 L 680145.8 -5280009 L 680317.5 -5280352 L 680021.1 -5280377 L 679802.5 -5280885 L 679996.2 -5281231 L 680300.2 -5283184 L 681401.1 -5283531 L 682390.8 -5282987 L 683157.8 -5282970 L 685017 -5283469 L 685717.1 -5284321 L 685992.8 -5284589 L 687483.9 -5283834 L 687811.3 -5283762 L 688095.4 -5283502 L 689620.6 -5283528 L 692134.7 -5286934 L 692269.4 -5287296 L 692543.8 -5287268 L 692861.9 -5287051 L 693512.3 -5286643 L 693670.1 -5285503 L 694602.8 -5283432 L 695005.9 -5283826 L 695287.4 -5283852 L 695992.2 -5283668 L 697044.3 -5284082 L 698498.4 -5284000 L 698823.1 -5284191 L 699263.4 -5284693 L 699281.9 -5285026 L 699580.4 -5285078 L 699873.9 -5285151 L 700468.4 -5284848 L 701699 -5285402 L 701820.7 -5285746 L 701897.3 -5286128 L 701725.6 -5287268 L 701019.7 -5288170 L 701202.2 -5289058 L 701056.3 -5289328 L 701600.3 -5289493 L 701849.9 -5289632 L 701584.9 -5289923 L 701349.4 -5290583 L 701543.2 -5290927 L 702792.4 -5291862 L 702675.7 -5292204 L 702538.9 -5292539 L 702632.6 -5292920 L 702610.6 -5293696 L 702682.2 -5294049 L 702247.2 -5294579 L 700492.5 -5294562 L 700643.5 -5295170 L 700474.6 -5295424 L 700207.4 -5295573 L 700310.1 -5295945 L 700770.3 -5299329 L 701331.5 -5300344 L 702439.3 -5300408 L 702827.9 -5300378 L 703209.4 -5300337 L 703915.1 -5300070 L 704174.4 -5299988 L 705054.3 -5300409 L 705248 -5300689 L 705407.2 -5301381 L 705015.4 -5303488 L 705693.9 -5303822 L 706247.9 -5304697 L 708349.7 -5304312 L 709083 -5304396 L 708935.9 -5303737 L 709282.1 -5303432 L 709619.7 -5303483 L 710943.7 -5304085 L 711316.3 -5304060 L 711214.5 -5304359 L 710999.9 -5304877 L 710868.5 -5306299 L 711912.3 -5307824 L 711940.2 -5308531 L 712382.7 -5309116 L 712590 -5309828 L 712816.7 -5310111 L 715220 -5309574 L 715457.8 -5309847 L 715640.8 -5310380 L 715726.3 -5310649 L 715597.6 -5311009 L 715233.9 -5312441 L 716119.2 -5313095 L 715993.3 -5314116 L 716858.6 -5314790 L 717253.3 -5314818 L 717640.1 -5314900 L 717643.1 -5317178 L 717791.8 -5317535 L 718231.1 -5317926 L 719378.9 -5318573 L 719713.5 -5318575 L 719946 -5317894 L 720534.4 -5317480 L 720676.2 -5317149 L 719376.8 -5315517 L 719086.1 -5315319 L 718767.7 -5313895 L 719513.8 -5313744 L 719896.5 -5313744 L 720515.9 -5314044 L 721124.1 -5314895 L 721440.9 -5315051 L 721529 -5315778 L 721541.5 -5316144 L 723513 -5316205 L 723898.6 -5316111 L 724367.2 -5316718 L 724389.2 -5317456 L 725329.3 -5318583 L 725180 -5319311 L 726064.7 -5320939 L 728575.5 -5322675 L 728877.4 -5322916 L 729533.2 -5322637 L 729880.9 -5322723 L 731302.6 -5322787 L 731653.1 -5322685 L 732007.6 -5323321 L 732966 -5323823 L 733257.8 -5324042 L 734888.8 -5322481 L 735172 -5322214 L 734944.4 -5321312 L 734980.1 -5321002 L 735468.3 -5320487 L 735895.8 -5318761 L 735710.1 -5318440 L 734853.8 -5317929 L 734959.5 -5317595 L 735295 -5317494 L 735722.3 -5317153 L 735769 -5316831 L 736525.7 -5316234 L 737130.1 -5316477 L 737329.8 -5316745 L 739246.9 -5315580 L 739342.6 -5315207 L 739115.7 -5314079 L 739482.2 -5313958 L 739864.9 -5313899 L 740229.4 -5314501 L 741270.2 -5314315 L 741615.8 -5314246 L 742193.9 -5315002 L 742543.6 -5314977 L 743203.7 -5315594 L 743423.4 -5315800 L 744226.9 -5316447 L 744463.7 -5316696 L 745613.3 -5316950 L 746679.7 -5316454 L 747853 -5316427 L 750686.4 -5317681 L 750974.3 -5317951 L 752015.9 -5317561 L 752730.6 -5317743 L 753972.2 -5316999 L 754212.8 -5316300 L 754308.5 -5315942 L 756063.4 -5316089 L 757410.2 -5313804 L 758357.5 -5313268 L 758111.6 -5312181 L 759607.1 -5310093 L 759805.1 -5309768 L 761637.8 -5311052 L 764123.2 -5311834 L 764493.1 -5311880 L 765447.8 -5313862 L 765608.6 -5314204 L 766334 -5315519 L 768357.9 -5316592 L 768717.9 -5316728 L 769071.7 -5316754 L 769432.7 -5316153 L 769600.6 -5315842 L 770894.5 -5315029 L 771817 -5313831 L 771774.9 -5313055 L 772205.1 -5312410 L 774063.9 -5311298 L 775108 -5311030 L 775399.4 -5310803 L 775594.7 -5310705 L 775747.8 -5310551 L 776348.7 -5310183 L 776694.4 -5310104 L 777204.8 -5309505 L 778796.3 -5308540 L 779141.9 -5308387 L 779292.4 -5308456 L 779375.1 -5308079 L 782943.1 -5306865 L 783398.4 -5306293 L 783464.6 -5305585 L 783321.8 -5305243 L 783567.7 -5304737 L 785779.1 -5303249 L 786024.3 -5302955 L 786127 -5302582 L 784906.4 -5300607 L 783389.1 -5299404 L 782594.8 -5297637 L 782347.9 -5297376 L 781421.2 -5295483 L 781548.7 -5294842 L 781612.4 -5294523 L 781694.1 -5294155 L 781658.1 -5292707 L 782650 -5291618 L 782584.5 -5290593 L 783326.8 -5289467 L 783411.6 -5289119 L 783557.6 -5288832 L 783370.4 -5287570 L 783315.8 -5286469 L 783922.6 -5285203 L 784160.8 -5284916 L 784421.9 -5284510 L 785015.8 -5284106 L 785164.2 -5283406 L 784646.8 -5282535 L 784559.1 -5282181 L 783764.8 -5281963 L 783656.1 -5281605 L 783625 -5280860 L 784230.9 -5280439 L 784459.5 -5279729 L 784543.7 -5279713 L 784700.7 -5279416 L 784868.7 -5279126 L 784734.9 -5278787 L 785599.1 -5278091 L 785767.5 -5277365 L 786759.2 -5276862 L 787011.5 -5276587 L 787085.5 -5276461 L 787144.5 -5276351 L 786852.5 -5276166 L 786272.6 -5275794 L 786090.3 -5275130 L 785669.1 -5274998 L 785597.4 -5274634 L 785357.4 -5273554 L 784277.8 -5272102 L 783974.1 -5272153 L 783381.7 -5272208 L 783097.2 -5272346 L 782519.1 -5272595 L 782181.5 -5272734 L 781785.4 -5273345 L 781479 -5273571 L 781084.9 -5274220 L 779999.8 -5274568 L 779728 -5274450 L 779615.4 -5274198 L 779555.6 -5273672 L 779181.8 -5273723 L 778646.2 -5274236 L 776921.8 -5274726 L 777024.8 -5275314 L 777155.5 -5275590 L 775362.4 -5275697 L 774920.5 -5276495 L 774505.2 -5275510 L 775564.2 -5274390 L 775813.4 -5274090 L 775644.5 -5273747 L 775028.8 -5272798 L 774698.3 -5272246 L 774468.4 -5271928 L 774261.4 -5271595 L 773993.5 -5271353 L 772701.8 -5270825 L 772010.3 -5270923 L 771666.5 -5270883 L 771065.5 -5271188 L 771115.1 -5271530 L 770784.5 -5271680 L 770188.7 -5272098 L 769124.5 -5272244 L 769205.2 -5271890 L 768334.8 -5270790 L 769268.7 -5270604 L 769148.9 -5270226 L 769121.4 -5269870 L 769532.5 -5268509 L 769030.6 -5267150 L 768839.7 -5266826 L 768464 -5266894 L 767706.3 -5266870 L 767381.7 -5266183 L 767237.8 -5266505 L 765726.3 -5267884 L 765520 -5267245 L 764979.3 -5266846 L 764628.4 -5266764 L 763736.2 -5267330 L 763270.3 -5268213 L 763032.4 -5267934 L 761477.1 -5266464 L 761501.2 -5265733 L 761191.3 -5265536 L 760486.1 -5268026 L 760253 -5268321 L 759917.5 -5268488 L 757813.3 -5268709 L 757198.4 -5268980 L 756901 -5269136 L 756753.4 -5268942 L 756477.2 -5269204 L 755427.4 -5268766 L 754940.5 -5267387 L 754679.3 -5267611 L 754080.5 -5267928 L 753790.8 -5267891 L 753271.1 -5268130 L 752967.2 -5267961 L 751844.9 -5267186 L 751487.1 -5267165 L 750772.7 -5267187 L 750564.9 -5266896 L 750551.4 -5266554 L 749807 -5265119 L 749463.1 -5265002 L 749130.6 -5265149 L 748801.2 -5265360 L 748428.6 -5265478 L 748214 -5264546 L 748263.6 -5264174 L 748467.6 -5263071 L 747918.9 -5262615 L 747786.2 -5262264 L 747127.2 -5260972 L 747353.4 -5260740 L 747623.7 -5260559 L 747308.8 -5260316 L 746958.9 -5260129 L 745683.6 -5260309 L 745608 -5259992 L 745609.2 -5259340 L 745557.7 -5259004 L 745567.9 -5258350 L 744808.8 -5257892 L 744473.4 -5258041 L 743603.4 -5258561 L 743474.7 -5258218 L 744341.3 -5256654 L 744192.6 -5256319 L 743509.7 -5256633 L 743286.6 -5256922 L 742865.5 -5257513 L 741865 -5257895 L 741577.9 -5258217 L 741445 -5258488 L 741140.2 -5258322 L 740926 -5256975 L 740579.3 -5256950 L 740024.7 -5256530 L 739344.6 -5256701 L 738825.1 -5256275 L 738868.8 -5255941 L 739400.5 -5255670 L 739969.4 -5255530 L 740265 -5255579 L 740262.5 -5255226 L 739563.1 -5255145 L 739049.5 -5254664 L 738973.9 -5254303 L 738161.4 -5253597 L 737819 -5253734 L 737554.9 -5253307 L 737199.2 -5253271 L 735866.9 -5253449 L 735562.2 -5254092 L 734907.3 -5254366 L 734973 -5254020 L 734135 -5252890 L 734532.1 -5252356 L 734149.1 -5252154 L 734460.4 -5251993 L 735171.8 -5251247 L 734981.1 -5250980 L 734575.7 -5250509 L 733946.4 -5250392 L 733901.3 -5250403 L 733939.9 -5250775 L 733740.4 -5251459 L 732310.8 -5251493 L 732348.5 -5251193 L 732383.4 -5250290 L 732358.9 -5249923 L 731638.5 -5249111 L 730553.4 -5248974 L 730350.3 -5249151 L 730136 -5249248 L 730062.4 -5248874 L 729821.6 -5248577 L 729115 -5248311 L 728435.6 -5247387 L 728056.4 -5246950 L 727065.7 -5247003 L 726877.7 -5247289 L 725991.7 -5247706 L 725690.6 -5246434 L 725401.9 -5246271 L 725315.1 -5246563 L 725013.5 -5246509 L 724677.7 -5246340 L 723534.9 -5247314 L 723499.8 -5247319 L 723246.7 -5247536 L 721926.6 -5247708 L 721825.8 -5248026 L 721592.1 -5247819 L 720684.9 -5248045 L 720543.2 -5247693 L 721047.3 -5246298 L 720735.5 -5246082 L 720372.9 -5246128 L 719038.3 -5246678 L 718479.8 -5246218 L 718450.3 -5245889 L 718939.6 -5244671 L 718404.2 -5244299 L 717450 -5245352 L 717174.2 -5245122 L 716754.8 -5244545 L 716048.8 -5244672 L 715250.7 -5244070 L 715210.2 -5243747 L 714684.3 -5242944 L 714347.6 -5242812 L 713645.3 -5242663 L 713337.6 -5242561 L 712434.7 -5242222 L 712106.1 -5242171 L 710961.5 -5241564 L 710590.9 -5241576 L 710000.8 -5241417 L 709459.7 -5240457 L 709217 -5240170 L 708149.1 -5239977 L 707920.3 -5239589 L 707580.7 -5239530 L 707008.7 -5238673 L 706512.7 -5238486 L 706193.4 -5238604 L 704683.8 -5239214 L 704428 -5238921 L 703746.5 -5238561 L 703647.7 -5238882 L 703185.6 -5239352 L 702612.6 -5239259 L 702557.9 -5239535 L 702036.3 -5239693 L 701360.2 -5238827 L 700313.1 -5238442 L 700270.6 -5238144 L 699835.5 -5237747 L 699507.6 -5237434 L 699139 -5237417 L 698078.1 -5237145 L 697113.3 -5237672 L 696389.4 -5237819 L 695081.7 -5237167 L 694859.1 -5236905 L 694297.6 -5237186 L 694277.4 -5237848 L 693990.3 -5238067 L 693901 -5238733 L 692869.4 -5238633 L 692898.8 -5239750 L 691168.3 -5240494 L 690241.6 -5242583 L 689975 -5242446 L 689549.9 -5242874 L 689248.4 -5242857 L 688425.1 -5243510 L 686962.1 -5243544 L 686962 -5243544 z " |
id="path642" /> |
<path |
d="M 547567.4 -5177816 L 547926.1 -5177237 L 548701.1 -5176873 L 548980.4 -5177071 L 549996.4 -5176537 L 552916.4 -5177411 L 553262.7 -5177581 L 555905.4 -5178176 L 559021.5 -5176641 L 559360.5 -5176448 L 559068.8 -5175763 L 559854.1 -5174503 L 560234.7 -5172680 L 562338 -5173050 L 562671 -5172907 L 563482 -5173622 L 564054.4 -5174942 L 564708 -5175276 L 566347.2 -5175766 L 566444.5 -5176113 L 567055.4 -5175678 L 567430.6 -5175677 L 567918.3 -5176233 L 570392.4 -5177176 L 570780.5 -5178216 L 572259.6 -5178639 L 572967.8 -5179564 L 573039.2 -5179948 L 573308.3 -5179892 L 573440.7 -5180245 L 575815.9 -5181282 L 577262.6 -5181226 L 578732.4 -5182341 L 579173.1 -5181726 L 579381 -5181407 L 580126.5 -5181519 L 580591.7 -5182531 L 580545 -5182907 L 580459.3 -5183289 L 580240.3 -5185597 L 580228.6 -5185942 L 579266.3 -5187278 L 579141.8 -5187865 L 579443.1 -5188026 L 579719.5 -5188306 L 583415.7 -5190436 L 583351 -5190819 L 582962.8 -5191907 L 581394.9 -5194047 L 581118 -5194305 L 580181 -5194904 L 579074.5 -5195043 L 578988.8 -5195392 L 578469.2 -5197091 L 578441.9 -5197828 L 579053.5 -5199105 L 578638.3 -5200123 L 579488.5 -5200861 L 579692.3 -5201561 L 578387.3 -5204310 L 577672.7 -5204081 L 576241.7 -5202897 L 575200.5 -5203342 L 575184.3 -5204112 L 575255.7 -5204492 L 575617.8 -5204439 L 578080.8 -5205962 L 578321.2 -5206239 L 578706.1 -5206876 L 579664.3 -5207502 L 580142.7 -5208533 L 580061.4 -5209291 L 579928.7 -5209650 L 579912.5 -5210410 L 580860.2 -5212496 L 579353.2 -5214261 L 578641.1 -5214568 L 578388.3 -5214867 L 578489.2 -5215623 L 579409 -5216795 L 579092.3 -5218242 L 579566.2 -5218825 L 579966.1 -5219443 L 582203.1 -5219065 L 582578 -5219690 L 582412.3 -5220033 L 582788.6 -5220091 L 583656.4 -5219356 L 584035.6 -5219327 L 584180.2 -5219796 L 584332.7 -5220145 L 584958.5 -5220576 L 585298.6 -5220404 L 585820.9 -5219423 L 586776.8 -5218803 L 587537.2 -5219639 L 588109.1 -5219183 L 588445.1 -5218980 L 588721.4 -5219085 L 588618.1 -5219832 L 589518.1 -5221119 L 589630.5 -5222296 L 589138.8 -5222892 L 589453.2 -5223090 L 590082.2 -5222701 L 590903.5 -5223337 L 591249.9 -5223472 L 591592 -5223335 L 591985.2 -5222402 L 593378.3 -5222521 L 593691.7 -5222715 L 593798.9 -5221031 L 594459.2 -5220871 L 594515.9 -5220522 L 595100.6 -5218938 L 595401.6 -5218735 L 596756.1 -5218282 L 598068.6 -5218771 L 598213.4 -5218515 L 598324.2 -5218241 L 598915.2 -5217856 L 601092.7 -5217774 L 601742.8 -5217479 L 601933.6 -5217165 L 601681.9 -5214818 L 601587.4 -5214435 L 602606.1 -5213405 L 602963.5 -5213555 L 603554.4 -5214982 L 604119.4 -5215489 L 605632.7 -5215654 L 606701.1 -5215260 L 607038.2 -5215070 L 606359.7 -5214195 L 606097.9 -5212737 L 606339.3 -5212033 L 607952.4 -5210999 L 610244.2 -5211014 L 611338.9 -5209964 L 612707.2 -5210159 L 613138 -5209668 L 613419 -5209459 L 613677.4 -5208708 L 613900.4 -5208496 L 614042.1 -5208132 L 615947.6 -5208057 L 617684 -5208934 L 617859.6 -5207484 L 617193.6 -5206176 L 617738.5 -5205668 L 618460.3 -5205855 L 618753.4 -5205743 L 618724.4 -5204819 L 619004.8 -5203999 L 619214.7 -5203782 L 620611.2 -5203188 L 620467.9 -5202082 L 620896.6 -5201485 L 621205.6 -5201265 L 622261.4 -5201160 L 622615.1 -5200594 L 622376.6 -5200326 L 624698.5 -5200282 L 625081.9 -5200351 L 625274.8 -5200071 L 627281.6 -5199186 L 627357.3 -5198822 L 626337 -5197489 L 626391.7 -5197156 L 627651.8 -5196185 L 627864.7 -5195925 L 629627.7 -5196402 L 629946.2 -5196590 L 630465.9 -5197736 L 630376.2 -5198085 L 630900.9 -5198284 L 631090.8 -5198045 L 632058 -5198364 L 632311.5 -5198635 L 633192.5 -5197869 L 633962.4 -5198010 L 634350.7 -5197946 L 634684 -5197951 L 634991.4 -5198081 L 635851 -5198835 L 635806.4 -5199217 L 635680.7 -5199579 L 637200 -5199439 L 637761.9 -5199715 L 637786.3 -5200029 L 641558.3 -5201321 L 641880.8 -5201503 L 643271.5 -5201775 L 643629.9 -5201855 L 643396.5 -5202576 L 643788 -5203545 L 644829.2 -5203702 L 645178.6 -5203762 L 647337.5 -5203510 L 648027.2 -5203526 L 648270.2 -5203334 L 648970.1 -5203504 L 649197 -5203222 L 651669.3 -5202941 L 652026.6 -5202867 L 652117.8 -5202991 L 651781.5 -5203041 L 651412.6 -5203516 L 651931.1 -5204391 L 653061.4 -5204471 L 653853.2 -5205309 L 655005.6 -5205456 L 655378.2 -5205565 L 655784.1 -5205122 L 655982.1 -5204896 L 656662.2 -5204289 L 656683.9 -5203982 L 657058.4 -5204017 L 657376 -5203340 L 659191.6 -5202956 L 659398.5 -5202669 L 659135.4 -5201966 L 659151 -5201590 L 659571 -5202037 L 659761.2 -5202967 L 660684.7 -5203355 L 660822.2 -5203672 L 662204.7 -5203625 L 662775.7 -5203964 L 663117.3 -5204090 L 664202.3 -5203883 L 665467.1 -5205096 L 666057.6 -5204891 L 666329.7 -5204735 L 666739.3 -5205753 L 666952.9 -5206069 L 667520.5 -5205979 L 667774.5 -5205753 L 668397 -5206442 L 668499.5 -5206743 L 670039.5 -5205975 L 671049.5 -5205821 L 671724 -5202921 L 671675.5 -5202538 L 670858.8 -5201893 L 671743 -5201158 L 671765.2 -5200390 L 671725.7 -5200008 L 672397.8 -5200247 L 672713.9 -5200917 L 673620.7 -5201554 L 673991.2 -5201556 L 675151.1 -5201119 L 675181.5 -5199717 L 675401.4 -5199436 L 675466.1 -5199085 L 675586.5 -5198380 L 675742.3 -5198047 L 676911.2 -5196669 L 676927.4 -5195935 L 677458.5 -5195434 L 677879.7 -5196050 L 678596.9 -5196298 L 679350.9 -5195457 L 680661.3 -5196125 L 681039 -5196331 L 681364.6 -5196486 L 681702.2 -5196611 L 681788 -5196315 L 682637.9 -5196120 L 682423.8 -5195373 L 682729.4 -5193844 L 683985.1 -5192961 L 684372.5 -5192894 L 684828.2 -5192990 L 685695.6 -5192330 L 685903.5 -5192894 L 686600 -5192525 L 686989.4 -5192464 L 687040 -5192093 L 686909 -5191353 L 687416 -5190803 L 687086.4 -5189752 L 687375.5 -5189514 L 683831.5 -5189201 L 683583.3 -5189357 L 683321.5 -5189829 L 682937 -5189797 L 681567.5 -5189134 L 681195.1 -5189235 L 680930.7 -5189198 L 680673.3 -5189125 L 680366.7 -5188911 L 678865.6 -5187858 L 678377.6 -5188389 L 677684.7 -5188337 L 677522.1 -5188009 L 677156 -5187452 L 677362 -5187165 L 677502.6 -5185773 L 678212.6 -5185016 L 678591 -5184974 L 679245.9 -5185074 L 680472.6 -5184289 L 680718.2 -5183579 L 681462.9 -5183430 L 681999 -5182899 L 681999.6 -5182523 L 680629.9 -5180738 L 680263.5 -5180824 L 680221.1 -5180463 L 679961.9 -5178673 L 680252 -5178454 L 682394.5 -5178250 L 682183.9 -5177991 L 682610.2 -5176809 L 682551.7 -5176463 L 683468.9 -5175539 L 683617.5 -5174933 L 683501 -5174591 L 682667.7 -5173416 L 682915.7 -5173159 L 684751.9 -5172146 L 684615.4 -5171806 L 684974.2 -5171221 L 684998.8 -5170855 L 685177.9 -5170729 L 684863.3 -5170514 L 684272 -5170032 L 686284.8 -5168292 L 685773.9 -5167146 L 685488.3 -5166926 L 684308.5 -5165644 L 684009.1 -5165627 L 683150.8 -5165393 L 683276.6 -5165026 L 684219.6 -5163862 L 683718.1 -5162011 L 683397.5 -5161792 L 681490.1 -5161723 L 681115.7 -5161753 L 680471.5 -5161371 L 680669.5 -5161129 L 680944.9 -5160238 L 680724.3 -5159962 L 680182.2 -5159506 L 680588.7 -5158527 L 680523.2 -5158147 L 680484.5 -5155480 L 680438.3 -5155410 L 680718 -5154783 L 682232.6 -5154571 L 683018.7 -5153777 L 683274.7 -5153505 L 684206.3 -5152947 L 685249.6 -5152969 L 685221.4 -5150812 L 685230.3 -5150732 L 684978.4 -5150093 L 683589.8 -5149170 L 683239.4 -5149271 L 682594.9 -5149578 L 681930.3 -5148734 L 681742.8 -5148430 L 677862.3 -5148540 L 677865.6 -5147871 L 677771.2 -5147548 L 677115.3 -5147404 L 676929.5 -5146762 L 674090.4 -5146880 L 673776.2 -5147051 L 672743.2 -5147206 L 672085.2 -5148019 L 671764 -5148130 L 671188.1 -5147816 L 670954.1 -5148098 L 670261.1 -5148933 L 669528.3 -5148943 L 669534.7 -5149321 L 669332.5 -5150402 L 668831.4 -5150901 L 669028.3 -5151566 L 668296.6 -5152707 L 668536.1 -5152962 L 668347.2 -5153292 L 666840.8 -5153489 L 665603.2 -5154308 L 665522.7 -5152855 L 663737.1 -5153235 L 663209.8 -5152437 L 662830.3 -5152369 L 661606.1 -5151450 L 660244.1 -5151970 L 658451 -5150569 L 658125.7 -5150556 L 657173.5 -5150365 L 656872.4 -5150575 L 654019 -5152077 L 653875.1 -5152352 L 653710.8 -5153248 L 653390.4 -5153088 L 651369 -5153645 L 650591.1 -5153502 L 650044.8 -5152650 L 649293.9 -5152399 L 648866.9 -5152828 L 648841.5 -5153497 L 647885.4 -5153347 L 647799.2 -5153246 L 647663.8 -5152948 L 647516.1 -5152310 L 647462.8 -5152032 L 647380.4 -5151761 L 646416.7 -5149760 L 646419.6 -5149620 L 646466.4 -5149287 L 646460.9 -5147626 L 646318.5 -5147308 L 644967.9 -5145724 L 644855.5 -5145410 L 644782 -5144962 L 644782.2 -5144043 L 644789.9 -5143737 L 644761.5 -5143350 L 644693.8 -5142579 L 644633.5 -5142258 L 644543.3 -5140975 L 643544.7 -5138979 L 643088.6 -5138200 L 642935.2 -5137940 L 642743.8 -5137657 L 642404 -5137067 L 641856.1 -5135370 L 641986.6 -5134629 L 642015.3 -5134254 L 642088.1 -5132752 L 641962.7 -5132396 L 641212.7 -5130793 L 640605 -5129403 L 640515.6 -5129033 L 640155.5 -5126779 L 640040.2 -5126445 L 639423 -5125595 L 639015 -5124715 L 639012.7 -5124379 L 639019.4 -5124011 L 638850.1 -5122549 L 638296.9 -5121597 L 638086.3 -5121024 L 637916.8 -5120531 L 637829.4 -5120186 L 637733.5 -5119122 L 637717.9 -5118395 L 636879.3 -5117162 L 636833.4 -5116049 L 636842.2 -5115677 L 636476.9 -5115715 L 636178.6 -5115546 L 635531.1 -5115537 L 635257.7 -5115299 L 633204.5 -5115716 L 632514.5 -5116424 L 632183 -5117445 L 632262.3 -5117810 L 632255.6 -5118175 L 633322.4 -5119486 L 633017.3 -5119648 L 632074.9 -5121323 L 633079.6 -5121237 L 633310.3 -5121874 L 632090.3 -5123075 L 631169.9 -5123533 L 630894.9 -5123791 L 629778.9 -5123619 L 629018 -5124453 L 628944.8 -5125553 L 629255.9 -5125417 L 629975 -5126054 L 630495 -5125617 L 631007.6 -5125883 L 631045.9 -5126229 L 630977.9 -5127542 L 630651.7 -5127549 L 629908 -5128608 L 629830.2 -5128892 L 629855.7 -5129473 L 628796.1 -5129693 L 627638.5 -5128790 L 626754.4 -5129499 L 625644.4 -5129280 L 625385 -5128991 L 625438.4 -5128219 L 624018.4 -5126933 L 624266.3 -5126643 L 624171.1 -5125178 L 623852 -5125349 L 621694.6 -5125522 L 621394.6 -5125721 L 620613.6 -5126462 L 620542.6 -5127898 L 620390.7 -5128234 L 619431.1 -5128321 L 619251.8 -5128014 L 618701.7 -5127110 L 618595.9 -5126074 L 618283.5 -5125850 L 615339.1 -5125253 L 615139.2 -5125576 L 614100 -5127546 L 613740.7 -5127435 L 613103.1 -5127126 L 612064.2 -5128174 L 611370.9 -5128429 L 610314.9 -5128033 L 610175.1 -5128388 L 609340.1 -5129099 L 609148.4 -5128371 L 608089.7 -5128243 L 607718.5 -5128317 L 607823.3 -5127950 L 607197.2 -5127003 L 607031.3 -5125914 L 607043.1 -5125614 L 607082.7 -5125024 L 606789.3 -5124771 L 606458.8 -5122945 L 606252.5 -5122747 L 606458.4 -5122456 L 606725.1 -5121796 L 606341 -5120473 L 606495.6 -5119822 L 606534.1 -5119078 L 605488.2 -5118662 L 604627.9 -5117430 L 605431.5 -5116188 L 605229.2 -5115860 L 604881.1 -5115975 L 604284.5 -5115659 L 603359.3 -5116151 L 602463.4 -5115521 L 601820.3 -5115859 L 601807.1 -5115506 L 601054.9 -5114337 L 600701.7 -5114319 L 600493.7 -5114506 L 600004.5 -5114654 L 599647.2 -5114507 L 599041.6 -5114081 L 598457.4 -5112682 L 598080.2 -5112652 L 596198.3 -5112753 L 595832.8 -5113780 L 596199 -5113811 L 596841.9 -5114693 L 596535.4 -5115728 L 596289.5 -5116012 L 595201.9 -5115967 L 594754.3 -5115333 L 594109.8 -5115002 L 593988.7 -5114918 L 593858.8 -5115198 L 593557 -5115740 L 593267 -5115971 L 592512.1 -5116766 L 591211.1 -5116093 L 590877 -5116254 L 590789.7 -5115878 L 590887.3 -5115115 L 591039.1 -5114758 L 590378.6 -5114419 L 587688.5 -5114633 L 587322.4 -5114702 L 586955.3 -5114768 L 586920.3 -5114768 L 586873.5 -5115141 L 584607.7 -5117078 L 584270.5 -5116925 L 583005.5 -5116230 L 582675.3 -5116178 L 581808.7 -5115745 L 581238.6 -5115918 L 580988.3 -5115626 L 580485.8 -5115044 L 580174.5 -5114877 L 579037.6 -5114056 L 578769.3 -5113782 L 578035.2 -5114047 L 575751.1 -5113774 L 575481.2 -5114042 L 575138.7 -5115103 L 574410.9 -5115956 L 574480.6 -5117074 L 573905.6 -5117414 L 573530.5 -5117469 L 571668 -5117755 L 570197.3 -5117479 L 569602.3 -5117919 L 569295.3 -5118060 L 568104.2 -5118630 L 568644.2 -5120015 L 568636.9 -5121151 L 569401.7 -5121911 L 569484.9 -5123771 L 569318 -5124121 L 569084.6 -5125252 L 568755.6 -5125459 L 568212 -5126446 L 568922.9 -5127377 L 571203 -5127746 L 572443 -5128590 L 572440.1 -5128805 L 572407.1 -5130295 L 574260 -5130509 L 575335.2 -5130166 L 576830.6 -5131287 L 575991.2 -5131303 L 575320 -5131408 L 575445.5 -5133500 L 575424.7 -5133860 L 575491 -5134224 L 575718.3 -5136048 L 574955.1 -5137675 L 574873.3 -5138028 L 574607.9 -5139081 L 575396 -5140179 L 575294.4 -5140848 L 575126.6 -5141156 L 575082.8 -5141509 L 575661.4 -5141896 L 575935.7 -5142124 L 575941 -5142501 L 575462.5 -5143433 L 576493.3 -5143846 L 576069.1 -5145178 L 576369.8 -5145868 L 576321.1 -5146228 L 574254.6 -5148150 L 573550.1 -5147966 L 573198.9 -5147924 L 572562.7 -5148034 L 572983.9 -5149344 L 572637.9 -5149486 L 571156.1 -5149372 L 569794.9 -5149926 L 569410.7 -5149853 L 568761.1 -5149428 L 568449.4 -5148722 L 568342.1 -5148348 L 567622.8 -5148373 L 565871.6 -5149161 L 565492.9 -5149812 L 565735.4 -5151715 L 565066.3 -5152001 L 564353.8 -5151728 L 564293.8 -5151744 L 563911.1 -5152335 L 564377.8 -5152958 L 563658.1 -5153793 L 561732.4 -5152546 L 561402.2 -5152409 L 560397.4 -5153281 L 559341 -5153382 L 559127.2 -5153701 L 558531.6 -5154549 L 557424.9 -5154226 L 556353.8 -5154592 L 555643.2 -5155495 L 555758.8 -5156230 L 556269.5 -5156887 L 556363.8 -5157232 L 556210.8 -5158631 L 556195 -5158927 L 556094.4 -5159511 L 556001.7 -5159889 L 555734 -5161719 L 554586.7 -5161892 L 554110.9 -5162473 L 554849.3 -5163819 L 554302.8 -5164724 L 554033.9 -5164982 L 553403.7 -5166293 L 553308.9 -5166563 L 553015.2 -5167036 L 552993.5 -5167366 L 552911.8 -5167740 L 552445.1 -5168328 L 550777.2 -5169255 L 550875.1 -5170345 L 549608.1 -5170982 L 549542.4 -5171349 L 549263.5 -5172809 L 548229.4 -5173161 L 548218.9 -5175016 L 547069 -5176861 L 547528.7 -5177446 L 547568 -5177816 L 547567.4 -5177816 z M 685887.6 -5191328 L 686002.8 -5191342 L 686064 -5191402 L 686148.1 -5191376 L 686194.2 -5191461 L 686144.2 -5191491 L 686206.4 -5191630 L 686106.3 -5191631 L 686007.3 -5191787 L 685758 -5191824 L 685814.2 -5191949 L 685684 -5191965 L 685680.1 -5192055 L 685614 -5192019 L 685557.8 -5191901 L 685526.5 -5191716 L 685605.5 -5191666 L 685700.6 -5191665 L 685608.2 -5191410 L 685778.4 -5191384 L 685887.5 -5191328 L 685887.6 -5191328 z " |
id="path643" /> |
<path |
d="M 320644.2 -5285053 L 320889.6 -5284446 L 320474.7 -5283801 L 318647.3 -5282424 L 316387.4 -5282575 L 316431.8 -5282059 L 316137.4 -5281823 L 315321.2 -5281090 L 313845.2 -5280776 L 313179.2 -5281051 L 311762.2 -5279819 L 311388.1 -5279867 L 310264.5 -5279801 L 310045.7 -5280109 L 308962.8 -5279802 L 308805.3 -5279449 L 308146.7 -5277340 L 306657.7 -5277038 L 305942.5 -5277201 L 304077.2 -5279629 L 303721.1 -5279658 L 303075.1 -5279912 L 302960.6 -5279534 L 301625.9 -5277619 L 302244.1 -5276626 L 302921 -5276229 L 303814.6 -5274488 L 303931.3 -5274125 L 304317 -5272682 L 303962.7 -5272585 L 302468 -5271631 L 302188.1 -5271861 L 299551 -5272975 L 299593.4 -5273357 L 298333.2 -5274740 L 294840 -5275289 L 293668 -5276798 L 293324.8 -5276781 L 291678.8 -5276711 L 291465.4 -5276440 L 291194.5 -5276699 L 290501.4 -5276932 L 289650.3 -5276273 L 289384.2 -5277313 L 288180.7 -5277461 L 287969.6 -5275517 L 287368.8 -5275026 L 286226 -5274844 L 285230.2 -5273642 L 284913.2 -5273848 L 284214.1 -5275140 L 283177.7 -5275353 L 282863.6 -5276437 L 282487.4 -5276480 L 282102.1 -5276429 L 281359.5 -5276235 L 279521 -5276835 L 278846.2 -5276455 L 278104 -5276677 L 276799.7 -5278084 L 274999.3 -5278747 L 275249 -5279285 L 274268.4 -5281164 L 274019.6 -5281447 L 273036 -5280532 L 272788.6 -5280306 L 272343.4 -5281361 L 270430.5 -5281694 L 268808.6 -5282737 L 267435 -5282070 L 267445.4 -5282432 L 267318.1 -5283143 L 266986 -5283287 L 266482.1 -5282783 L 265802.3 -5281500 L 265738.1 -5280406 L 264710.6 -5280584 L 264192.8 -5280134 L 263877.8 -5280333 L 263231.6 -5280577 L 262423.3 -5281824 L 261310.3 -5281640 L 259859.7 -5282025 L 259603.8 -5282270 L 259665.3 -5283684 L 259467.5 -5284014 L 258319.8 -5285987 L 258226.9 -5287091 L 259300.8 -5287167 L 260785.2 -5288391 L 260883.1 -5289137 L 261642.8 -5289249 L 261514.1 -5289577 L 260819.6 -5289578 L 260177.1 -5290414 L 259525.9 -5290652 L 259261.4 -5290369 L 256851.6 -5288465 L 255376 -5288912 L 253106.8 -5290234 L 252806.4 -5290089 L 251490.4 -5290102 L 251118.2 -5290182 L 249664.5 -5290581 L 248323.7 -5289913 L 247230.1 -5290147 L 247365.6 -5290499 L 247817.1 -5291513 L 247671.7 -5292203 L 246749.7 -5292813 L 246859.2 -5293174 L 246651.4 -5293463 L 246360.9 -5294094 L 246608.2 -5295086 L 246257 -5295141 L 246722 -5295716 L 246564.6 -5297193 L 246484.9 -5297557 L 246193.2 -5299682 L 246063.5 -5300019 L 245989.6 -5300140 L 243821.6 -5299937 L 242858.4 -5300470 L 242574.4 -5300704 L 241910.7 -5303052 L 241653.8 -5303305 L 242851.9 -5304226 L 243416.5 -5305157 L 244487.9 -5304808 L 244354.9 -5305732 L 244464.4 -5306035 L 246243 -5306147 L 246888.1 -5305780 L 247236.6 -5305913 L 247348.1 -5306269 L 247053.7 -5306937 L 247556.8 -5307480 L 247627.3 -5307846 L 247240.7 -5309217 L 246540.3 -5309387 L 246177.1 -5309475 L 246089.5 -5309832 L 245031.9 -5310029 L 244724.9 -5310229 L 245272 -5310760 L 244926.6 -5312207 L 244690.8 -5312511 L 245838.1 -5312733 L 246539.2 -5313920 L 246856.7 -5314091 L 250449.7 -5314122 L 251006.8 -5314589 L 251720.1 -5314380 L 252187.9 -5314692 L 252365.3 -5314911 L 253413.5 -5315213 L 254759.2 -5316397 L 254473.7 -5316924 L 254206.8 -5317173 L 253845.6 -5317269 L 253328.9 -5317806 L 253445.5 -5318913 L 252598.6 -5320923 L 252599.6 -5321672 L 252914.6 -5322169 L 252879.6 -5322165 L 250738 -5322986 L 251109.5 -5325224 L 250717.1 -5326544 L 251212.2 -5327026 L 251503.7 -5327213 L 252516.7 -5326666 L 255074.3 -5327721 L 254841.5 -5327965 L 255752.2 -5328604 L 258623.6 -5328038 L 258950.6 -5327861 L 259305.4 -5328898 L 259379 -5329258 L 259605.3 -5329998 L 258673.6 -5330664 L 258772.4 -5331812 L 260263.1 -5333459 L 260294.7 -5333846 L 259774.5 -5334609 L 259845.1 -5334926 L 258512.9 -5335453 L 258369.8 -5336099 L 257921.9 -5336370 L 257616 -5336557 L 258783 -5337876 L 258112.6 -5338585 L 257985 -5338926 L 258261.6 -5339162 L 260111 -5340402 L 262576.4 -5341343 L 262885 -5341568 L 263213.1 -5342099 L 263452.6 -5342319 L 264534 -5343303 L 265549.4 -5343713 L 265887.9 -5343849 L 265506.3 -5344849 L 266072.2 -5345725 L 265231.3 -5347351 L 264995.6 -5347652 L 264821.3 -5349927 L 265794.6 -5351452 L 265984.3 -5351785 L 265910.5 -5351915 L 266065.8 -5352610 L 266913.5 -5353830 L 266702 -5355341 L 266275.8 -5355968 L 266035.7 -5355991 L 265795.5 -5356008 L 265745.1 -5356389 L 265659.4 -5358291 L 266090.4 -5359224 L 266438.9 -5359332 L 268011 -5358725 L 268328 -5358606 L 267580 -5359461 L 267396.3 -5361365 L 268815.4 -5361925 L 269237.9 -5362575 L 270709.9 -5362557 L 271690.7 -5362026 L 272424.7 -5362850 L 273109.1 -5362783 L 273540.3 -5363269 L 273869.1 -5362490 L 273754.6 -5362832 L 275967 -5363817 L 276137.4 -5364496 L 277553 -5364814 L 277889 -5364657 L 277999.8 -5363946 L 278958.8 -5363011 L 279278.7 -5362846 L 280195.3 -5362830 L 280508.5 -5362821 L 282211 -5363048 L 281652.4 -5364011 L 282423.3 -5365308 L 282669 -5365597 L 283595.1 -5365859 L 283901.6 -5366004 L 283897.8 -5366104 L 285063.5 -5366052 L 285848.4 -5367367 L 285681 -5367720 L 286054.5 -5368395 L 286519.6 -5368807 L 286827.7 -5368775 L 287111.5 -5368564 L 288819.1 -5368828 L 289164.5 -5368907 L 289555.8 -5369466 L 289311.1 -5369722 L 288673.2 -5370511 L 288541.7 -5370824 L 289184.4 -5370989 L 290378.6 -5370149 L 290722.1 -5370292 L 290500.3 -5371004 L 290678.8 -5371736 L 291744.2 -5371584 L 292123.3 -5371517 L 292350.7 -5371665 L 293764.4 -5372628 L 294093.8 -5372724 L 294363.8 -5372641 L 294643.9 -5372600 L 297122 -5372933 L 297344.7 -5373225 L 297438.5 -5373615 L 297747 -5373795 L 298618.7 -5373353 L 298972 -5373402 L 300026.2 -5373183 L 300866.3 -5372428 L 301243.5 -5372404 L 301961.6 -5372236 L 302835.1 -5371194 L 303135.9 -5370978 L 303798.7 -5370697 L 304010 -5370805 L 304740.7 -5369876 L 305032.7 -5368723 L 305027 -5368325 L 305415.2 -5367770 L 305604.8 -5367480 L 306005.9 -5366851 L 305803.8 -5365759 L 305279.6 -5365243 L 305425.6 -5363007 L 305276.9 -5362664 L 305487.7 -5362481 L 305617.3 -5362235 L 305740.3 -5361069 L 305703.6 -5360679 L 306134.1 -5358583 L 306131.5 -5358219 L 305607.4 -5357762 L 305810.5 -5356622 L 306614.6 -5355304 L 307573.1 -5354719 L 308110.4 -5355276 L 308892 -5354809 L 308983.5 -5354509 L 309131.4 -5353816 L 309753.2 -5353503 L 310067.1 -5353335 L 311587.9 -5353358 L 312511.3 -5352746 L 313694.2 -5353500 L 314700.1 -5351964 L 314091.1 -5351554 L 313816.8 -5350860 L 315104.4 -5349048 L 316080.5 -5348835 L 316412.6 -5348775 L 316855.7 -5348124 L 316887.4 -5347346 L 316874.7 -5346950 L 317580.2 -5347030 L 319610.1 -5346384 L 319964.2 -5346316 L 321043.7 -5346299 L 322478 -5346053 L 323177.7 -5346274 L 323673.5 -5345435 L 323843 -5345108 L 324080.3 -5345200 L 324334.4 -5345204 L 323866.2 -5346982 L 323913.8 -5347347 L 324742.4 -5348077 L 325470.1 -5348262 L 327417.4 -5347280 L 327771.3 -5347148 L 327983.9 -5345671 L 330313.5 -5341763 L 330294.8 -5341372 L 330427.4 -5341118 L 330530 -5340851 L 331160.3 -5340835 L 331613.9 -5339823 L 332523.3 -5339210 L 332831.1 -5339001 L 333112.9 -5338768 L 335682.2 -5340140 L 336017.6 -5340285 L 335987.5 -5339585 L 336995.3 -5339175 L 338192.7 -5337841 L 338570.1 -5337386 L 338821.9 -5337221 L 339113.6 -5336980 L 340609.4 -5337065 L 342365.2 -5336482 L 344179.8 -5335125 L 344326.3 -5334775 L 344177.6 -5334396 L 344687 -5333872 L 344498.4 -5333544 L 339738.1 -5333352 L 340052.6 -5332317 L 339125.2 -5330356 L 338960.6 -5330032 L 338658.1 -5329802 L 337208 -5329480 L 337067.4 -5329145 L 338108.2 -5328728 L 339209.9 -5328880 L 338997.4 -5326646 L 338647 -5326506 L 335335.4 -5326390 L 335528 -5326072 L 335495.1 -5322802 L 336206.3 -5322709 L 336653.6 -5322126 L 338519.5 -5322204 L 338644.3 -5320687 L 338253.5 -5319599 L 337970 -5318634 L 336967.5 -5317198 L 337313.8 -5316575 L 337633.5 -5315546 L 338204.1 -5315127 L 338612.3 -5313742 L 338808 -5313437 L 338985.5 -5312322 L 338740 -5312024 L 336563.1 -5311314 L 336235 -5310641 L 336045.9 -5308431 L 336396 -5306965 L 336462.5 -5306593 L 336186 -5306340 L 335064.9 -5307314 L 334812.3 -5308375 L 334297.8 -5308870 L 332849.7 -5307757 L 332521.4 -5307609 L 332221 -5307407 L 332000.4 -5306305 L 332381.1 -5303735 L 332045.1 -5303087 L 332841.4 -5302344 L 333115.2 -5302103 L 333096.7 -5300985 L 332644.1 -5299940 L 331947.2 -5300236 L 331739.7 -5299935 L 331083 -5299621 L 330477.6 -5297937 L 329975.7 -5297410 L 329693.3 -5297171 L 328348.6 -5295542 L 328269.1 -5295180 L 327586.2 -5295471 L 326747 -5294814 L 327515.4 -5293249 L 327100.5 -5292651 L 326734.4 -5292680 L 325441.5 -5293209 L 325135.2 -5293054 L 323612.9 -5291743 L 323542.8 -5291724 L 323223.4 -5291524 L 321736.6 -5291379 L 321236.7 -5290818 L 321057.3 -5289761 L 320495.5 -5289266 L 320551 -5288830 L 320326.5 -5288520 L 319220.7 -5288303 L 318166.9 -5287198 L 318150.8 -5287148 L 319050.8 -5285986 L 319238.2 -5284542 L 319877.1 -5284237 L 320395 -5284776 L 320645.4 -5285053 L 320644.2 -5285053 z " |
id="path644" /> |
<path |
d="M 456974.7 -5410999 L 456937.1 -5410709 L 456969.6 -5409383 L 457452.4 -5410270 L 457781.2 -5410147 L 458485.2 -5410090 L 458915.2 -5410574 L 459261.1 -5410500 L 460512.6 -5410117 L 460704.1 -5409848 L 460870.5 -5409509 L 460525.2 -5408833 L 460609.5 -5408465 L 460234.7 -5407533 L 459899.4 -5407394 L 457210.4 -5408182 L 455990.3 -5408774 L 455309.9 -5408601 L 455008.5 -5408421 L 453450.5 -5407503 L 453127.1 -5407341 L 452802.9 -5407290 L 452476.9 -5407322 L 452263.4 -5407596 L 451631.8 -5407339 L 450747.9 -5407456 L 450466.3 -5407695 L 449413.8 -5408041 L 449103 -5408152 L 448482.3 -5408379 L 448196.5 -5408483 L 447640.9 -5408731 L 447335.2 -5408914 L 446345.8 -5408764 L 445701.9 -5409397 L 445681.9 -5409378 L 445305 -5409467 L 444617.4 -5410776 L 442858.7 -5411561 L 443001.1 -5412238 L 443527.4 -5413365 L 443800.7 -5413512 L 444481 -5414117 L 445184.7 -5413920 L 445558 -5414537 L 447002.8 -5414337 L 447327.4 -5415137 L 448485 -5415850 L 448766.4 -5416047 L 449679.5 -5416560 L 449954 -5416781 L 450325.1 -5416792 L 450695.2 -5416821 L 451016.3 -5416826 L 452300.5 -5416848 L 453324.7 -5416849 L 453650.8 -5416851 L 455054.9 -5416788 L 455670.2 -5415857 L 455716.5 -5415474 L 455835.3 -5414844 L 456359.7 -5414481 L 456589.3 -5414252 L 456773.2 -5413655 L 456863 -5411998 L 456912.4 -5411669 L 456975.1 -5410999 L 456974.7 -5410999 z " |
id="path645" /> |
<path |
d="M 455419.6 -5352254 L 454886.4 -5352817 L 454790.6 -5353572 L 454672.2 -5353944 L 455330.8 -5353622 L 455989.5 -5353957 L 457453 -5354002 L 457743.7 -5353775 L 457498 -5355217 L 458308 -5356290 L 457725.3 -5356561 L 457474.7 -5356830 L 457726.2 -5357094 L 458307.1 -5357532 L 459021.1 -5357392 L 458968.3 -5358120 L 461392.5 -5359077 L 460760.8 -5359963 L 461670.2 -5360673 L 463182.2 -5360451 L 464323.2 -5361460 L 466192.2 -5361159 L 465951.6 -5361438 L 464012.6 -5364091 L 463105.8 -5364337 L 463119.6 -5366003 L 463076.2 -5366362 L 463181.8 -5366688 L 462850.7 -5367284 L 462648.8 -5367378 L 462733.2 -5367584 L 463200.7 -5367815 L 462965 -5370384 L 463551.9 -5370847 L 463520.4 -5371113 L 463685.3 -5371620 L 463826 -5373189 L 463474.9 -5373201 L 463317 -5373886 L 462635.1 -5374052 L 463532.2 -5376869 L 462784.1 -5376905 L 464183.1 -5378996 L 464307.4 -5379722 L 465193.6 -5380310 L 464830.5 -5380285 L 464468.4 -5380265 L 464492.1 -5380658 L 464219.3 -5381381 L 465773.7 -5382533 L 465940.4 -5382888 L 466028.8 -5384211 L 465822.3 -5384512 L 464827.7 -5384882 L 464765 -5385597 L 464129.5 -5386485 L 464409 -5386719 L 465867.8 -5386975 L 466465.1 -5388752 L 466207.5 -5388980 L 465424.5 -5389605 L 466250.1 -5390932 L 466446.7 -5391226 L 467147 -5391330 L 467751.4 -5390935 L 468788.3 -5391836 L 469147.3 -5391794 L 469191.9 -5392148 L 468884.7 -5393166 L 468244.1 -5393450 L 468291.7 -5393777 L 468593 -5393913 L 468449.9 -5394449 L 468248.2 -5394634 L 468047.1 -5395142 L 467999.4 -5395337 L 468210 -5395642 L 468913.4 -5396890 L 469970.4 -5397866 L 469931.1 -5398247 L 469470.8 -5399232 L 470343.3 -5399969 L 470203.3 -5401062 L 471473.7 -5401117 L 470867.1 -5402475 L 469449.1 -5402626 L 469568.5 -5403381 L 470166.4 -5404356 L 470322.1 -5404706 L 470160.7 -5405053 L 469790.8 -5405154 L 469904.4 -5405480 L 470161.7 -5406121 L 469852.9 -5406274 L 470116.4 -5407031 L 470085.1 -5407385 L 469785 -5408408 L 469457.2 -5408549 L 469433.5 -5409257 L 469281.1 -5409611 L 468535.3 -5411388 L 469175 -5411697 L 469498.2 -5412322 L 469534.9 -5412675 L 469164.9 -5412720 L 468114.9 -5412787 L 468319.7 -5414213 L 467780.5 -5414695 L 467502.9 -5414946 L 469554 -5416402 L 469511.4 -5417137 L 469838.8 -5417337 L 469964 -5417401 L 469676.4 -5417620 L 469949.8 -5419346 L 470231.1 -5419457 L 470704.9 -5419823 L 470713.6 -5420203 L 470360.7 -5420801 L 470074.5 -5421743 L 469937.1 -5422050 L 469808.8 -5422415 L 468078.6 -5424969 L 468834.7 -5425503 L 469082.1 -5426224 L 468802 -5427719 L 468487.2 -5427859 L 468076.5 -5429069 L 467742.4 -5429047 L 467142.8 -5428787 L 466970.4 -5429100 L 466075.7 -5429309 L 465858 -5429990 L 465864.7 -5430348 L 466569.5 -5430191 L 467577.4 -5430588 L 468239.1 -5431379 L 468358.5 -5432091 L 469116.1 -5432855 L 469838.3 -5432925 L 470202.3 -5432920 L 468657.8 -5434278 L 469939.4 -5436537 L 471308.2 -5437854 L 471399 -5438229 L 471722.8 -5438134 L 472057.9 -5438173 L 472966.3 -5439352 L 473084 -5439715 L 473618.1 -5438749 L 474370.3 -5438806 L 476218.9 -5437532 L 476358.2 -5437182 L 477460.6 -5435814 L 477286 -5435500 L 477201.3 -5435160 L 477805.7 -5434810 L 478153.8 -5434843 L 479457.3 -5436051 L 479718.4 -5436584 L 480346.7 -5434682 L 480485.1 -5434358 L 482022.5 -5434473 L 482373.9 -5434636 L 484166.8 -5436013 L 483252 -5436677 L 482933.4 -5436886 L 484385.5 -5436840 L 484079.7 -5437481 L 484369.9 -5437539 L 484646.1 -5437646 L 485601.4 -5438268 L 485929.8 -5438466 L 486801.6 -5437272 L 488169.2 -5436970 L 488531.4 -5437054 L 489209 -5435748 L 489338.3 -5435402 L 490504.7 -5435535 L 491835.4 -5436336 L 492193.1 -5436177 L 492622.9 -5437099 L 494303.6 -5436314 L 495022.1 -5436505 L 495319.7 -5436281 L 495790.6 -5436705 L 495901.9 -5437401 L 496561.5 -5437164 L 497474.6 -5437687 L 497773.3 -5437500 L 497969.9 -5436259 L 498002.3 -5435929 L 498630.8 -5435600 L 498990 -5435655 L 499120 -5436676 L 499802.6 -5437450 L 500149.7 -5437475 L 500794.2 -5437684 L 502088.6 -5437270 L 502375 -5437461 L 504366.8 -5437224 L 504687.6 -5437086 L 504586.2 -5437414 L 504007.7 -5438259 L 503977 -5438941 L 504929.9 -5440380 L 505115.5 -5440681 L 505693.6 -5440164 L 508283.7 -5439499 L 508746.2 -5439744 L 508929.8 -5439538 L 509986.8 -5439448 L 510507.9 -5438934 L 511566.5 -5438662 L 511931.6 -5438703 L 511453.5 -5436564 L 512125.9 -5436175 L 513016.7 -5434909 L 513137 -5434540 L 513074.7 -5433870 L 513792.6 -5433187 L 513788.9 -5432825 L 513094.3 -5432552 L 512760.6 -5431119 L 511801.4 -5430545 L 511771.1 -5429844 L 512398.7 -5429018 L 514404.7 -5428277 L 515134 -5427271 L 515161.4 -5426946 L 516184.9 -5426579 L 516298.3 -5426232 L 516615.6 -5426354 L 516664.8 -5425384 L 516766.2 -5425058 L 517847.3 -5424986 L 518504.1 -5423718 L 518548.5 -5423349 L 518809.5 -5422233 L 519091.1 -5421974 L 518968.7 -5421770 L 518866.3 -5421556 L 519258.2 -5420879 L 519574.9 -5420701 L 520621.7 -5421005 L 521880.3 -5421733 L 522156.8 -5421969 L 522707.3 -5420488 L 522752.2 -5419305 L 522773.5 -5418910 L 523062.1 -5418648 L 524032.2 -5417443 L 526340.1 -5418744 L 526755 -5419772 L 527362.3 -5417599 L 526940.6 -5416144 L 527872.9 -5415014 L 527936.3 -5413520 L 528280.1 -5413352 L 529208.4 -5413921 L 529591.5 -5413907 L 529240 -5413109 L 529084.5 -5412852 L 529791.2 -5412555 L 530857.3 -5412990 L 531600.1 -5412155 L 532726.2 -5412019 L 533002.8 -5411750 L 532533.7 -5410615 L 532504.1 -5410295 L 533525 -5410061 L 533724.6 -5409774 L 534324.1 -5411121 L 535054.5 -5411242 L 535423.7 -5411279 L 535544.1 -5410912 L 535878.6 -5409418 L 535440.6 -5408345 L 535589.7 -5407200 L 535339.4 -5407060 L 535130 -5406863 L 534907.3 -5407082 L 534679.2 -5407659 L 534339.3 -5407803 L 532823.2 -5406837 L 531727.8 -5406824 L 530715.3 -5407262 L 530403.5 -5407461 L 529734.2 -5406248 L 530742.7 -5405758 L 532197 -5405659 L 532325.5 -5404173 L 532296.9 -5403806 L 531294.8 -5403353 L 530297 -5403671 L 529929.9 -5403667 L 529194.2 -5400507 L 529895.9 -5400229 L 531626 -5400548 L 531898.6 -5400286 L 531952 -5399917 L 531918.7 -5399177 L 532356.8 -5398579 L 534170.6 -5398683 L 534148.3 -5397957 L 534126.7 -5397588 L 534160.6 -5396929 L 534207 -5396576 L 533979.6 -5395197 L 534942.3 -5394210 L 534569 -5394101 L 534457.1 -5392973 L 533403.9 -5392482 L 532381.6 -5391324 L 532641.7 -5390703 L 532376.1 -5390419 L 533579.1 -5388973 L 533017.8 -5387122 L 534896.1 -5387503 L 536048.3 -5388541 L 537548.3 -5388189 L 538686.1 -5388396 L 539066.4 -5388482 L 538290.7 -5387651 L 538183.7 -5387051 L 539643.6 -5386673 L 540741.3 -5385625 L 540801.7 -5385250 L 537274.2 -5383923 L 537028.6 -5383630 L 537768.7 -5382303 L 536399 -5382175 L 535567 -5381119 L 535225.6 -5380968 L 534369.2 -5380287 L 534111.6 -5380000 L 535470.9 -5377405 L 535262.8 -5376780 L 534871.6 -5376760 L 533037.6 -5375346 L 532685.5 -5375357 L 530371.5 -5375899 L 529917.6 -5375468 L 529691.2 -5375253 L 531129.9 -5373535 L 531796.8 -5371461 L 531778.2 -5371085 L 531105.1 -5371209 L 530202 -5370728 L 529585.5 -5370583 L 528400 -5369928 L 528135.5 -5369690 L 529116.1 -5368599 L 529087.9 -5367857 L 529743.7 -5366951 L 529681.2 -5365401 L 529374.7 -5365161 L 529086.2 -5364902 L 528817.4 -5363832 L 529871.4 -5363544 L 530209.3 -5363400 L 530175.7 -5363036 L 529505 -5362740 L 530567.5 -5362794 L 530961 -5362397 L 530883.4 -5362037 L 530440.9 -5359952 L 530080.8 -5359981 L 529360.6 -5360013 L 528238.5 -5360878 L 527520.2 -5360871 L 527428.6 -5360515 L 526850.7 -5360067 L 526477.2 -5357963 L 526098.5 -5358249 L 526132.1 -5358615 L 525771 -5358632 L 525374.9 -5358032 L 524650.6 -5358022 L 524175.2 -5357902 L 523831.2 -5358007 L 522821.3 -5358328 L 522735.7 -5357982 L 522389.6 -5357977 L 520695.5 -5358914 L 520580.9 -5358555 L 519881.7 -5358571 L 519533.4 -5358436 L 518952.7 -5357485 L 518316.9 -5357095 L 518008.2 -5357337 L 516497.2 -5357659 L 516182 -5357632 L 515610.4 -5357362 L 515374.1 -5357214 L 514866.6 -5356982 L 514511.5 -5357010 L 514074.2 -5357557 L 513420.7 -5357414 L 513304.2 -5357783 L 512447 -5358472 L 512314.4 -5358141 L 510450.4 -5357313 L 510081.2 -5357901 L 509776.8 -5357710 L 508792.1 -5357456 L 508489.7 -5357240 L 507380.3 -5355330 L 507097.6 -5355561 L 507206.2 -5355915 L 505690.8 -5356584 L 504659.9 -5356236 L 504315.7 -5356204 L 503381.9 -5356491 L 502570.9 -5354772 L 502439.7 -5354018 L 502844.8 -5353396 L 500871.8 -5350630 L 500975.3 -5350321 L 501743.9 -5349889 L 501194 -5349415 L 501690.7 -5348487 L 501911.3 -5348198 L 501704.7 -5347870 L 501540.5 -5347111 L 501874.4 -5346952 L 502946.4 -5346691 L 503230.7 -5344231 L 502126.1 -5344121 L 500645 -5341161 L 500136.7 -5339751 L 499477 -5339409 L 498871.3 -5339706 L 498545.9 -5339531 L 497584.9 -5339081 L 497530.3 -5338057 L 496374.6 -5337871 L 496080.2 -5337645 L 494834.8 -5336348 L 494796.3 -5336005 L 494947.3 -5334634 L 494562.1 -5334570 L 492248.8 -5334195 L 491888.6 -5334140 L 490086.6 -5333867 L 489776.4 -5333819 L 489597.8 -5333470 L 487647.3 -5331584 L 486530.4 -5331237 L 486347.8 -5330892 L 486009.8 -5330978 L 484972.7 -5331093 L 484757.6 -5331753 L 484643.1 -5332103 L 484835.4 -5333556 L 485582.9 -5334355 L 485621.5 -5334716 L 484732.9 -5335157 L 484084.2 -5334856 L 483396.3 -5335086 L 483075.9 -5334905 L 481437.7 -5334427 L 480081.1 -5334976 L 480226.6 -5334655 L 481401 -5333372 L 481468 -5332678 L 481105.8 -5332591 L 479027.9 -5331768 L 477836.4 -5330372 L 475524.8 -5330417 L 474932.9 -5329919 L 474722.8 -5329906 L 474489.2 -5330229 L 472868.3 -5331958 L 472480.1 -5331891 L 469839.2 -5331154 L 468265.8 -5331181 L 467728.2 -5332187 L 465268.5 -5332166 L 465035 -5331894 L 464084.1 -5330827 L 464117.6 -5330470 L 463751.6 -5330549 L 460798.3 -5330922 L 459410.3 -5330541 L 459177.9 -5330296 L 458200 -5330536 L 458322.1 -5331200 L 459581.6 -5331940 L 460557.2 -5333425 L 460396.7 -5333758 L 460968.5 -5334180 L 461252.6 -5334855 L 462644.9 -5334172 L 462962.6 -5333948 L 463608.2 -5334878 L 463169.9 -5336668 L 463669.1 -5338007 L 464033.3 -5338107 L 464239.2 -5338645 L 464011.6 -5338937 L 463835.8 -5340382 L 463591.7 -5340384 L 463693.9 -5341779 L 463101.1 -5342010 L 463023.8 -5343072 L 462693.7 -5343093 L 461389.4 -5343129 L 461126.8 -5343400 L 460851.4 -5344450 L 460284 -5344948 L 460008.6 -5344726 L 458995.8 -5344417 L 458458.4 -5344871 L 458133.1 -5344732 L 457800.3 -5344917 L 456775.7 -5345926 L 456659.2 -5346242 L 456623.8 -5346611 L 456740.1 -5349859 L 456519.6 -5350188 L 455419.7 -5352254 L 455419.6 -5352254 z " |
id="path646" /> |
<path |
d="M 443114.8 -5402849 L 443011.1 -5402486 L 441523.6 -5402355 L 441057.5 -5402867 L 440309.4 -5402891 L 440033.8 -5402627 L 440390.6 -5401982 L 440185.7 -5400493 L 439836 -5400661 L 439167.5 -5400980 L 438164.3 -5400419 L 437392.2 -5400451 L 436469.7 -5399771 L 436459 -5399383 L 436162.7 -5398721 L 435813.7 -5398758 L 435262.4 -5399168 L 433933.5 -5398838 L 433630 -5398607 L 434354.6 -5397286 L 434130.2 -5396557 L 434316.6 -5396211 L 434126 -5395900 L 433328.5 -5394681 L 433368.1 -5393958 L 433039.4 -5394160 L 432746.8 -5394411 L 432194.1 -5393017 L 431888.2 -5393126 L 431301.6 -5393398 L 431050.2 -5393192 L 430782.2 -5393229 L 430251 -5393189 L 429879 -5393249 L 429253.4 -5392485 L 428878.3 -5392466 L 428611.7 -5392175 L 428244.8 -5390650 L 428214.1 -5390303 L 427753.4 -5390001 L 427086.6 -5390201 L 426958.3 -5389535 L 427314.5 -5388516 L 427575.1 -5388251 L 428651.2 -5388168 L 428722.2 -5387093 L 429113.2 -5386503 L 429157.1 -5386463 L 429418.6 -5386185 L 430295.4 -5385461 L 430067.5 -5384425 L 429689.4 -5384414 L 428602.6 -5384097 L 428447.2 -5383359 L 428395.6 -5383022 L 428677.6 -5382422 L 428417.1 -5382164 L 427201.8 -5379952 L 427241.8 -5378859 L 426887.5 -5378752 L 424688.1 -5378805 L 424439.5 -5378531 L 423195.5 -5379230 L 422822.3 -5379142 L 421347.5 -5379447 L 421067.7 -5377942 L 423116.4 -5376407 L 424147.4 -5376300 L 424216.1 -5375559 L 423491.6 -5375363 L 423256 -5375601 L 422418.9 -5375122 L 422299.2 -5374751 L 420989.1 -5372063 L 420878.2 -5370469 L 420506.9 -5370367 L 419666.4 -5369624 L 419629.3 -5368469 L 420027.3 -5367831 L 419842.4 -5366758 L 419119.9 -5366544 L 418693.7 -5365921 L 417184.3 -5365914 L 416839.4 -5365992 L 416465.2 -5365954 L 415488.8 -5366432 L 415191.1 -5366631 L 414476 -5366688 L 413889.1 -5367964 L 413747.7 -5368312 L 413465.9 -5369005 L 411604.2 -5368857 L 411244.3 -5368954 L 410528.1 -5370637 L 410774.7 -5370919 L 410547.2 -5371202 L 410072 -5371740 L 410283.6 -5372067 L 409389.1 -5374130 L 409375.9 -5375680 L 410235.6 -5378663 L 409900.4 -5378604 L 409564.2 -5378549 L 409411.8 -5378888 L 408606 -5379629 L 408371.9 -5380684 L 407416.6 -5381185 L 407127.1 -5380974 L 405821.6 -5380856 L 404528.4 -5381453 L 404310.4 -5382029 L 404006.7 -5382237 L 404195.4 -5382586 L 405221.6 -5384707 L 404992.8 -5385351 L 403271.5 -5385397 L 403011 -5385156 L 402826.4 -5385401 L 403206.3 -5385805 L 402572.6 -5386048 L 401438.2 -5385473 L 401237.7 -5385777 L 400796.7 -5386356 L 400772.1 -5387085 L 400239.9 -5387558 L 400400.2 -5388207 L 400070.5 -5388384 L 399622.5 -5388973 L 399810.9 -5389682 L 398302.4 -5389600 L 397204.2 -5390653 L 396853.9 -5391047 L 396787.6 -5391420 L 397146.4 -5392824 L 397331.1 -5393147 L 397541.5 -5393855 L 397201.6 -5393944 L 395415.7 -5394738 L 395556.4 -5395067 L 395321.9 -5395334 L 396378.8 -5396196 L 396028.5 -5396599 L 397918.8 -5399061 L 398303 -5399132 L 398492.9 -5399590 L 398677.9 -5400574 L 397252.2 -5401885 L 395764.5 -5402213 L 395628.4 -5402689 L 395984.8 -5403355 L 395212.3 -5404656 L 395463.7 -5407291 L 395715.2 -5407512 L 396293.8 -5408215 L 395690.5 -5409613 L 396630 -5410253 L 396662.8 -5410634 L 396067.6 -5411097 L 395735.8 -5411215 L 395383.8 -5411239 L 395827.9 -5412685 L 395046.3 -5413421 L 394798.7 -5413640 L 394160.9 -5413794 L 394076.2 -5413475 L 393790.5 -5413646 L 393170 -5414403 L 394268 -5415739 L 394495.4 -5416403 L 394128.5 -5416491 L 392682.9 -5418223 L 393118.9 -5418671 L 392933 -5419226 L 392856.6 -5419532 L 392697.3 -5419893 L 391583.9 -5420269 L 390915.1 -5419939 L 390657.6 -5420210 L 390766.8 -5421244 L 390071.5 -5422097 L 390051.5 -5422097 L 390594.8 -5423132 L 390774.6 -5423477 L 390044.5 -5423482 L 389643.5 -5424890 L 391093.1 -5425978 L 391373.7 -5426222 L 391015.7 -5426245 L 390618.9 -5426839 L 389581.7 -5426368 L 388438.5 -5426378 L 387888.4 -5425897 L 387747.1 -5426228 L 387249.7 -5427472 L 387934.3 -5427709 L 388633.1 -5428933 L 388657.9 -5429302 L 388498.5 -5429603 L 388202.8 -5429771 L 388438.1 -5430335 L 388063 -5430767 L 387787.4 -5430961 L 387051.8 -5431641 L 387041.6 -5432019 L 387009.3 -5432770 L 386398.3 -5433719 L 386636.9 -5434436 L 386351.4 -5434684 L 387423 -5435761 L 388497.7 -5434655 L 389239.3 -5434432 L 390073.1 -5435183 L 390458.3 -5435225 L 391223 -5437299 L 391026.6 -5438017 L 391483.6 -5437522 L 391704.4 -5436538 L 391773.7 -5436204 L 393269.1 -5436738 L 393660 -5436664 L 394689.6 -5436401 L 395312.6 -5436805 L 395539.3 -5437098 L 396834.6 -5437618 L 397166.9 -5437729 L 397515.3 -5437869 L 398007.5 -5437486 L 398210.8 -5437171 L 398446.7 -5436656 L 398598.2 -5436416 L 399031.9 -5436714 L 400622.8 -5437464 L 400979.9 -5437503 L 402744.5 -5437204 L 403665.3 -5436619 L 403954.8 -5436397 L 404227.4 -5436202 L 404618.3 -5435665 L 404367.2 -5434703 L 406267.1 -5433628 L 406520.6 -5433365 L 406949.5 -5433760 L 407160.9 -5433960 L 407418.5 -5433763 L 408173.4 -5433688 L 408553.5 -5433694 L 408884.6 -5435115 L 409186.2 -5435357 L 410001.9 -5434733 L 411020.9 -5434668 L 411365 -5434720 L 411725.1 -5434752 L 412006.8 -5435975 L 411916.5 -5436311 L 413301.6 -5436754 L 413901.7 -5436774 L 414849.6 -5436198 L 415133.1 -5435939 L 415183 -5435433 L 416639.7 -5434767 L 416925.4 -5434593 L 416801.6 -5434250 L 415847.5 -5431927 L 416424.7 -5431518 L 416633.4 -5430446 L 416390.9 -5429761 L 416570.9 -5429776 L 417726.2 -5430314 L 418057.3 -5430357 L 418195.4 -5431811 L 420055.2 -5433496 L 420249.9 -5433363 L 420456.7 -5433248 L 420332.7 -5432780 L 421964.8 -5430861 L 422150.2 -5430549 L 422730 -5430914 L 423408.9 -5430838 L 423560.3 -5430532 L 424212.9 -5430769 L 425078.8 -5430215 L 426104.3 -5430411 L 426805.5 -5429490 L 427037.9 -5429182 L 427235.5 -5428976 L 427440 -5428707 L 428388.2 -5427811 L 428599.9 -5428120 L 430069.3 -5428230 L 431390.9 -5428921 L 431604.5 -5428709 L 431912.5 -5428192 L 432802.9 -5429301 L 432983.6 -5429618 L 434418.5 -5429026 L 435563.7 -5430015 L 435954.5 -5428922 L 435590.1 -5427795 L 435702.5 -5427026 L 435973.9 -5426738 L 438486.8 -5426055 L 438810.5 -5425865 L 439644.3 -5424230 L 439649.5 -5423858 L 439640.7 -5423442 L 439443.6 -5422935 L 439268.2 -5422726 L 441310.7 -5422359 L 441659.6 -5422306 L 441704.7 -5421355 L 441352.8 -5420906 L 441132.4 -5420700 L 441384.3 -5419112 L 441129.8 -5418889 L 441314.6 -5418292 L 441217.5 -5417759 L 440905 -5417556 L 439277 -5416695 L 438902.2 -5416328 L 438733.6 -5416040 L 438054.7 -5414639 L 437876 -5414288 L 437484.6 -5413605 L 437691.2 -5413389 L 437716.2 -5412857 L 437479.9 -5412198 L 438003.2 -5411307 L 438126.6 -5410979 L 437403.3 -5410877 L 437109.9 -5410167 L 437105.1 -5409782 L 437227.9 -5409171 L 437295.3 -5408866 L 437447 -5408197 L 437414.3 -5407855 L 437414.2 -5407805 L 437913.3 -5407322 L 438197.9 -5407105 L 439048.6 -5407373 L 439339.4 -5407235 L 439933.5 -5405681 L 439779.9 -5405366 L 441211.4 -5405474 L 441714.4 -5404925 L 441681 -5404187 L 442763.7 -5403920 L 442942.1 -5403586 L 443114.7 -5402849 L 443114.8 -5402849 z " |
id="path647" /> |
<path |
d="M 259275.7 -5095239 L 258929.6 -5095350 L 258195 -5096151 L 256785.9 -5096320 L 257058.2 -5097318 L 256738.1 -5097506 L 256188.8 -5099249 L 255129.7 -5099331 L 255159.5 -5099681 L 254724.1 -5100206 L 254846.6 -5100898 L 254823.3 -5101264 L 254476.9 -5101776 L 254800.3 -5102762 L 252854.9 -5101766 L 252815.6 -5102156 L 252789.5 -5103712 L 252552.1 -5104203 L 252237.9 -5104489 L 250909.2 -5103968 L 249861.9 -5104305 L 249559.8 -5104378 L 246848.9 -5105372 L 246502.8 -5105483 L 246441 -5106628 L 245417.5 -5108620 L 245079.4 -5108798 L 244825.6 -5108508 L 243904.9 -5107920 L 242437.5 -5108314 L 242105.4 -5108458 L 239665.6 -5107787 L 239549.3 -5108124 L 239771.9 -5108742 L 238922 -5109878 L 237934.6 -5110232 L 236716.4 -5108877 L 236423.2 -5109113 L 235217.4 -5109951 L 235326.9 -5112167 L 235010 -5112003 L 233874.4 -5111149 L 233678.1 -5110168 L 233515.8 -5110501 L 232985.3 -5111006 L 231243.7 -5111389 L 229861.2 -5111806 L 228796 -5111764 L 228313.6 -5112243 L 227978.4 -5112381 L 228511.2 -5112844 L 227879.5 -5113696 L 228201.5 -5113864 L 228466.4 -5114112 L 227739.2 -5114158 L 227277.8 -5114620 L 227288.5 -5114986 L 226808.1 -5115469 L 226445.9 -5115597 L 225781.5 -5115976 L 224280.2 -5115978 L 223298.5 -5116573 L 223046.9 -5115948 L 222966.1 -5115619 L 221491.5 -5116012 L 220423.6 -5115600 L 219507.9 -5116232 L 219647.2 -5117166 L 221446.5 -5117420 L 221398.2 -5117788 L 220766.8 -5118160 L 220009.6 -5118127 L 219121.9 -5118701 L 218428.8 -5118653 L 217843.3 -5119052 L 217542.1 -5119242 L 216867 -5120592 L 215050.4 -5120721 L 214491.4 -5121916 L 214616.2 -5122273 L 215600.4 -5122418 L 215449.4 -5123843 L 215380.1 -5124209 L 214446.1 -5125245 L 214165.8 -5125472 L 210859.2 -5127705 L 210525.9 -5127923 L 210336.4 -5128658 L 211828.8 -5130386 L 211367 -5131402 L 211183.7 -5131737 L 210577.9 -5134308 L 210909.9 -5134496 L 212767.7 -5134293 L 213396.8 -5134486 L 213321.2 -5135534 L 213599.2 -5135778 L 214316.4 -5135870 L 214845.3 -5136375 L 215104.3 -5136633 L 216695.4 -5135768 L 216985.6 -5135551 L 218267.1 -5135447 L 218545.1 -5135620 L 218902.2 -5135630 L 219211.2 -5135810 L 219756.1 -5136365 L 219771.5 -5137470 L 221168.7 -5137979 L 222076.6 -5138711 L 222541.1 -5140129 L 224399 -5139650 L 225871.3 -5140134 L 226064.2 -5140472 L 227443.7 -5142611 L 227671.7 -5142898 L 227415.5 -5143185 L 226794.1 -5143631 L 225314.4 -5143903 L 225086 -5144597 L 224356.6 -5144798 L 222929.5 -5146019 L 222183.2 -5146099 L 221468.9 -5143967 L 221311 -5143621 L 220042.1 -5144464 L 220473 -5145090 L 220035 -5146887 L 220297.5 -5148327 L 221606.8 -5149038 L 221820.4 -5150111 L 222378.6 -5150365 L 222604.6 -5150663 L 222034 -5151649 L 221949.5 -5152796 L 221173.9 -5153591 L 221491.4 -5155451 L 220955 -5155993 L 220855.8 -5156364 L 220120.2 -5157085 L 220598.1 -5157998 L 220353.8 -5158619 L 221446.2 -5158949 L 222942.9 -5158878 L 223469 -5159428 L 223441.8 -5160135 L 223441.7 -5160489 L 223259.1 -5162337 L 222767.8 -5162697 L 222399.6 -5162618 L 222091.1 -5164055 L 221964 -5164413 L 222878.2 -5165503 L 222483.9 -5166118 L 222684.9 -5166767 L 221919.3 -5167550 L 222706.4 -5168948 L 223001.5 -5169119 L 221623.5 -5170984 L 220864.1 -5171184 L 219775.6 -5170803 L 219686.4 -5171527 L 220307.6 -5171914 L 220600.5 -5173309 L 221175.7 -5173767 L 221460.8 -5174000 L 220215.9 -5175296 L 219943.7 -5175557 L 218445.7 -5176750 L 220209.5 -5178177 L 218996.6 -5180514 L 218170.1 -5181312 L 217834.9 -5181127 L 217170.4 -5182282 L 217415.5 -5183320 L 217238.4 -5184025 L 216504 -5183843 L 215844.6 -5184239 L 215618.4 -5184557 L 215167 -5186030 L 215348 -5187598 L 215728.2 -5188289 L 215937.3 -5189349 L 217118 -5190249 L 217470.2 -5190389 L 217337.1 -5190702 L 216701.7 -5191841 L 216325.5 -5191858 L 215209.8 -5191908 L 214565.4 -5192755 L 213103.4 -5193094 L 212841.2 -5193389 L 211991.6 -5194153 L 211640.4 -5194237 L 211018 -5195487 L 210913.9 -5195756 L 210518.7 -5196171 L 210433.7 -5196530 L 208718.6 -5198849 L 207714.9 -5199300 L 208889.9 -5201231 L 208767.9 -5201950 L 209291.3 -5202483 L 209619.6 -5203105 L 208530.9 -5203380 L 208107.7 -5204452 L 206469.6 -5205321 L 206562.7 -5205981 L 204721.3 -5206185 L 204358 -5206339 L 204278 -5206724 L 205586 -5206989 L 205415 -5207726 L 204670.4 -5207737 L 204308.2 -5208800 L 203168.3 -5208805 L 202876.1 -5209068 L 203353.5 -5209533 L 203685.8 -5209643 L 204439.4 -5209660 L 206167.6 -5208925 L 206528.9 -5209034 L 206493 -5209742 L 207103.6 -5210629 L 208130.4 -5210730 L 209121.3 -5211278 L 209501.6 -5211283 L 210004.9 -5210719 L 210365.2 -5210840 L 210121.1 -5211125 L 211579.4 -5212232 L 211829.6 -5212516 L 212885.3 -5212270 L 213698.7 -5211084 L 214461.2 -5210962 L 215816.3 -5211435 L 217228 -5210133 L 218192.8 -5210776 L 218487.1 -5211030 L 219140.5 -5210794 L 219492.6 -5210252 L 219839.8 -5210199 L 219854.9 -5210820 L 220436.5 -5211754 L 222399.6 -5210816 L 223478.4 -5211065 L 224052.7 -5210640 L 224427.9 -5210625 L 225931 -5211023 L 226326.3 -5211046 L 226321.4 -5211351 L 226994 -5211932 L 227581.6 -5212882 L 228618.4 -5213385 L 229064 -5214444 L 230163.7 -5214311 L 230465.1 -5215005 L 229560.9 -5216216 L 229625.4 -5217732 L 229365.3 -5218016 L 232488.9 -5219475 L 232829.2 -5219672 L 234624.5 -5220141 L 236449.7 -5220123 L 236775.8 -5219937 L 236665.5 -5219304 L 235145.2 -5218301 L 235344.8 -5216855 L 236920.4 -5218425 L 238064.1 -5218301 L 239525.2 -5218748 L 240851.8 -5218051 L 241468.4 -5218502 L 242248.8 -5220819 L 242613 -5220861 L 242983.1 -5220418 L 244386.1 -5220801 L 244738.3 -5220899 L 245081.6 -5221009 L 246014.9 -5220479 L 246146.8 -5220143 L 247903 -5220514 L 248255.2 -5220587 L 249821.5 -5221475 L 251842.8 -5221654 L 252091.1 -5221926 L 252423 -5221334 L 253791 -5221812 L 256122.8 -5220698 L 256326.8 -5220388 L 257818 -5221322 L 257990.4 -5222017 L 260165.2 -5221170 L 260923.7 -5221265 L 261303.9 -5221356 L 261300.5 -5220589 L 259269.7 -5218913 L 258322.7 -5217703 L 258600.7 -5217438 L 258926.8 -5217264 L 259252.9 -5217088 L 259816.4 -5217542 L 260502.8 -5217601 L 261375 -5216977 L 261693.8 -5215986 L 262020.9 -5215827 L 263725.2 -5216797 L 264099.4 -5216922 L 264750.6 -5214287 L 264793.5 -5213900 L 264858.3 -5213320 L 264934.1 -5212748 L 264976 -5212462 L 265455.7 -5211105 L 265338.5 -5210778 L 264540.1 -5210637 L 264577 -5210279 L 265068.5 -5208405 L 264937.3 -5208039 L 266965.6 -5208979 L 267344.8 -5208987 L 268584.1 -5208345 L 268925 -5207692 L 268969.9 -5207325 L 268136.1 -5206133 L 267912.9 -5205836 L 267990.7 -5205054 L 268786.8 -5204187 L 268954.6 -5203434 L 268985.5 -5203042 L 269623.6 -5202611 L 270108.3 -5201163 L 270183.2 -5200782 L 270409.9 -5199609 L 270484.8 -5199219 L 269355.9 -5197788 L 269340.7 -5197050 L 268641.1 -5195817 L 268324.9 -5195627 L 268574.9 -5195329 L 269328.2 -5195496 L 270403.5 -5195047 L 271112.5 -5194137 L 271738.6 -5193683 L 272757.8 -5193127 L 273521.1 -5193114 L 272337.2 -5191330 L 272134.1 -5191038 L 272009.1 -5190999 L 271070 -5192193 L 270323.8 -5192405 L 268929.1 -5191785 L 268153.6 -5190918 L 267375.3 -5190896 L 267363.1 -5189994 L 267077 -5189897 L 267364.1 -5189635 L 268496.5 -5189368 L 269068.6 -5188842 L 269791.9 -5189060 L 270288.2 -5189660 L 270488.2 -5189363 L 271305.4 -5188681 L 271276.3 -5188324 L 270189.7 -5187413 L 269987.6 -5187107 L 268948 -5186097 L 269275.9 -5184805 L 268951.8 -5184631 L 269335.6 -5182470 L 269560.6 -5182161 L 270409 -5182901 L 272612.4 -5180338 L 272983.5 -5180270 L 273333.5 -5179443 L 273223.4 -5179163 L 272847.3 -5179016 L 272159.1 -5179096 L 270938.6 -5178278 L 270660.5 -5178036 L 270322.4 -5177853 L 270515.4 -5176723 L 270294.3 -5176018 L 268884.8 -5175467 L 269512.9 -5174160 L 267967.4 -5173084 L 267748.3 -5172768 L 267718.3 -5172758 L 267251.1 -5172170 L 267495.1 -5171105 L 265061.3 -5168797 L 264937.3 -5167695 L 265311.4 -5167674 L 267838.2 -5168223 L 268725.5 -5169400 L 269688.8 -5169953 L 270074.9 -5169383 L 269175.6 -5166841 L 270166.9 -5166236 L 271684.3 -5166524 L 271581.3 -5166161 L 271870.4 -5165467 L 271690.4 -5164362 L 273106.8 -5163873 L 272756.7 -5163707 L 272153.5 -5163223 L 271380.3 -5163209 L 269501.9 -5161841 L 268912.8 -5160050 L 270189.2 -5158880 L 269190.1 -5156900 L 269074.1 -5156542 L 267156.6 -5156726 L 267098.8 -5154870 L 266478.8 -5153940 L 266416.9 -5153206 L 266939.1 -5152690 L 266118 -5152021 L 266020.2 -5150921 L 266252.3 -5150648 L 268303.7 -5151057 L 268371.8 -5150705 L 268517.9 -5150372 L 267901 -5149068 L 267781 -5148723 L 268431.2 -5148323 L 268161.7 -5145661 L 267506.1 -5143461 L 268067.3 -5143011 L 268409.6 -5141941 L 268373.7 -5141557 L 269035.7 -5141888 L 270121.9 -5141690 L 270669.3 -5140377 L 271229.5 -5139892 L 271551.6 -5139711 L 270139.8 -5138201 L 269917.8 -5137935 L 271141.4 -5136672 L 270518.4 -5136260 L 269885.8 -5134516 L 270991.9 -5134744 L 272335.3 -5133998 L 274652.2 -5131973 L 276153.9 -5133657 L 276074.7 -5134426 L 276546.6 -5135037 L 277853.5 -5135859 L 278289.4 -5136501 L 279397.5 -5136752 L 280802.9 -5136022 L 282220.4 -5134649 L 282370.5 -5134282 L 281448.7 -5133084 L 281694.9 -5132366 L 281330 -5131803 L 280396.9 -5131674 L 281655.7 -5129417 L 281786.9 -5128795 L 280953.2 -5127593 L 278760 -5127585 L 278394.9 -5127647 L 278478 -5127291 L 278969.8 -5125153 L 279106 -5124618 L 279189.1 -5124254 L 279315.4 -5123523 L 278771.5 -5123019 L 278424.4 -5123153 L 277346.9 -5121672 L 276987.9 -5121576 L 276592.9 -5119022 L 276441 -5118680 L 278876.5 -5117884 L 279502.9 -5117080 L 279896.5 -5115715 L 279981.7 -5115351 L 280945.8 -5115196 L 281269.8 -5115158 L 281636.1 -5114511 L 282395.2 -5114394 L 283323.7 -5115543 L 284478.8 -5115406 L 284897 -5114984 L 284643.6 -5113520 L 283380.2 -5112197 L 283208.4 -5111866 L 283555.5 -5111732 L 283626.7 -5111398 L 283289 -5110819 L 282405.3 -5110168 L 282523.6 -5109439 L 282737 -5108552 L 282985.1 -5108376 L 282638.1 -5108318 L 281421.7 -5107076 L 281119.8 -5106964 L 280653.7 -5107251 L 280448.6 -5107565 L 278282.6 -5109502 L 277968.7 -5109306 L 276968.9 -5108830 L 276628 -5108705 L 275931.9 -5108909 L 275269.5 -5109754 L 274975.6 -5109538 L 275098.8 -5109204 L 275433.3 -5108207 L 275218.4 -5107922 L 274913.3 -5108058 L 273390 -5108543 L 273071.1 -5108358 L 271765.8 -5107088 L 272395.3 -5106208 L 271715.4 -5105929 L 270570.5 -5105824 L 269064.5 -5104132 L 268826.4 -5104368 L 267991.1 -5104913 L 267717.2 -5104669 L 265209.2 -5104616 L 264534.4 -5104326 L 264623.6 -5103963 L 264705.1 -5103227 L 265737.1 -5101704 L 265045.7 -5100831 L 263932.8 -5100734 L 263917.3 -5100005 L 263378.2 -5098675 L 264089.7 -5098006 L 263427.2 -5097242 L 263073.3 -5097126 L 262484.9 -5096239 L 262124.8 -5096379 L 259275.7 -5095239 L 259275.7 -5095239 z " |
id="path648" /> |
<path |
d="M 494391.6 -4838397 L 493153.6 -4837494 L 493066.4 -4834766 L 492204.8 -4833961 L 491814.3 -4833949 L 490311.6 -4834225 L 489060.5 -4832876 L 487135.8 -4832853 L 485807.9 -4832041 L 484701.8 -4832269 L 483894.3 -4831457 L 483644.1 -4831166 L 483122.7 -4830624 L 482038.8 -4830763 L 480214.3 -4829546 L 479846.9 -4829464 L 479202.9 -4829877 L 478752.5 -4830922 L 477303.2 -4832614 L 474435 -4833558 L 474224.7 -4833878 L 472820.4 -4833397 L 471715.7 -4833461 L 471413.1 -4834511 L 471067.3 -4834648 L 469624.5 -4829153 L 468639 -4827981 L 468997.6 -4827415 L 469196 -4827085 L 469574.3 -4827165 L 469876 -4826060 L 468820.5 -4824452 L 468711.4 -4824082 L 469900.5 -4822180 L 473264.1 -4818617 L 473491.4 -4818306 L 473127.8 -4818333 L 472105.4 -4818694 L 472186.3 -4817200 L 471790.9 -4816172 L 471997.6 -4814704 L 472598.6 -4813783 L 472832.9 -4813490 L 472477.7 -4812839 L 470696.5 -4813165 L 470939.5 -4812522 L 470935.3 -4812151 L 470651.2 -4811893 L 468752.8 -4810006 L 468041.4 -4810217 L 467817.3 -4809954 L 467838.7 -4809284 L 467500.3 -4809212 L 467161.5 -4809365 L 465643.8 -4808327 L 464552.4 -4808294 L 464532.5 -4808289 L 464203.4 -4808074 L 463118.1 -4808486 L 460766.7 -4808394 L 459019.7 -4809576 L 458782.4 -4809871 L 457456.4 -4809821 L 457108.9 -4809832 L 456772.7 -4809705 L 455278.6 -4809366 L 453378.8 -4809628 L 451769.4 -4808607 L 451530.4 -4808301 L 451691.9 -4807946 L 451034.4 -4807707 L 449131.8 -4808378 L 448814.3 -4808389 L 448497.7 -4808402 L 448155.9 -4808559 L 446971.6 -4809477 L 444190.7 -4810415 L 443401.2 -4811183 L 443044 -4811062 L 441842.7 -4810681 L 441592.5 -4810477 L 440539.8 -4811502 L 440276.6 -4811759 L 440158 -4812093 L 439706.6 -4812562 L 439571.4 -4811845 L 438523 -4810943 L 438322 -4810639 L 438159 -4810315 L 437852 -4810075 L 436787 -4809057 L 436845.6 -4807890 L 437321.3 -4806831 L 436142.7 -4803993 L 435826.7 -4804212 L 433649.7 -4805696 L 432556.7 -4807713 L 431419.7 -4807614 L 429952.9 -4806387 L 429568.5 -4806374 L 429318.5 -4806117 L 427741.3 -4805572 L 427555 -4805383 L 427201.3 -4805513 L 426450.3 -4805586 L 426170.4 -4805333 L 425690.1 -4805802 L 425009.8 -4805536 L 424644.4 -4805548 L 424458 -4805863 L 424419.7 -4806868 L 423084.9 -4809404 L 421491.9 -4810057 L 421156.2 -4810156 L 420626.6 -4811177 L 420025.6 -4811567 L 420401.7 -4813829 L 420871.6 -4814427 L 422000.2 -4814678 L 422488 -4815279 L 422757.9 -4815556 L 422531.7 -4815785 L 422755.7 -4816951 L 422300.2 -4818358 L 421690.9 -4817152 L 420183 -4818133 L 419850.9 -4817959 L 420041.3 -4817628 L 419870.7 -4815422 L 419650.7 -4815117 L 418529.4 -4815159 L 417862.2 -4814843 L 416757.6 -4815854 L 415412.2 -4816520 L 415024.6 -4816164 L 414713.7 -4816357 L 412462.8 -4817823 L 412176.2 -4817421 L 410134.3 -4818769 L 409958.9 -4819079 L 409824.9 -4819165 L 408669.6 -4821345 L 409265.7 -4821765 L 408941.9 -4821904 L 407966.5 -4822307 L 407611.7 -4822484 L 406880.2 -4822780 L 406984.3 -4823112 L 406802.6 -4824817 L 405986.2 -4825964 L 404931.2 -4826256 L 404580.5 -4826360 L 403675.4 -4826147 L 403040.9 -4826374 L 402729 -4826532 L 402305.3 -4826675 L 400896.7 -4827438 L 400638.6 -4827650 L 400623.1 -4828290 L 400163.8 -4828714 L 399856.1 -4828813 L 399816.4 -4828709 L 398434.1 -4828913 L 398409.9 -4829013 L 398209.2 -4829042 L 398076 -4829195 L 396732 -4830082 L 396680.3 -4830413 L 396365.4 -4830598 L 395335.2 -4830945 L 394716.5 -4830810 L 393858.1 -4831970 L 394172.2 -4833019 L 395079 -4834218 L 396843.8 -4834851 L 397337.1 -4835286 L 397353.2 -4835662 L 396555.6 -4836894 L 396453.2 -4838013 L 396602.2 -4838357 L 396232.5 -4838478 L 392010.6 -4839058 L 392016.8 -4839414 L 392098.1 -4840117 L 391825 -4840347 L 392201.6 -4840276 L 393256 -4839855 L 394398.2 -4840788 L 395157 -4840815 L 395498 -4841466 L 395268.7 -4841766 L 394439.2 -4842977 L 394096 -4842845 L 393357.3 -4843664 L 391781 -4844402 L 391644.5 -4844718 L 391028.8 -4845456 L 391135.9 -4845792 L 391504.4 -4847147 L 391176.7 -4848147 L 390427.3 -4848807 L 390800 -4850506 L 390675.4 -4850863 L 389128.2 -4851057 L 386188.7 -4852809 L 386601.9 -4855684 L 386447 -4855734 L 385241.8 -4856184 L 384957.9 -4856338 L 384785.4 -4856676 L 383589.1 -4858545 L 383611.5 -4858804 L 384118 -4858702 L 384311.3 -4858909 L 383708.2 -4859351 L 383959.4 -4860034 L 383277.5 -4860924 L 383038.5 -4862020 L 383721.2 -4864073 L 384473.4 -4863947 L 384844.7 -4864035 L 385160.9 -4864211 L 385209.9 -4865621 L 385133.4 -4865898 L 385514 -4866318 L 385162.2 -4866437 L 384596 -4866918 L 382420.2 -4867315 L 382498.6 -4868049 L 382164.7 -4868686 L 382834.5 -4868350 L 383362.1 -4868700 L 383535.2 -4869037 L 384671.2 -4869272 L 386497.9 -4868698 L 388825.1 -4868521 L 389175.3 -4868691 L 389118.7 -4869042 L 388869 -4870041 L 389577.7 -4871200 L 390185.1 -4872118 L 390385.2 -4872443 L 391398.4 -4872159 L 391761.8 -4872234 L 392024.2 -4872872 L 391560.1 -4874255 L 392610.7 -4874276 L 392985.3 -4874225 L 393288.6 -4874919 L 394647.6 -4875551 L 395571.5 -4877608 L 395840.7 -4877875 L 395011.4 -4879636 L 393969.8 -4880146 L 392884.1 -4880201 L 392665 -4880942 L 393103.9 -4882815 L 392120 -4883443 L 391839.8 -4883715 L 391945.1 -4884042 L 391836.4 -4885050 L 392321.1 -4885949 L 392579.3 -4885665 L 393306 -4885878 L 394782.9 -4885482 L 395869.9 -4885850 L 397389.3 -4885705 L 397389.6 -4886071 L 397692.6 -4885850 L 398181 -4885306 L 399186.9 -4885781 L 399928.4 -4884988 L 400660.8 -4884837 L 401150 -4883865 L 401822.6 -4883609 L 402125.1 -4883703 L 403014.6 -4883931 L 402620.3 -4884927 L 403932.8 -4886556 L 404083 -4886890 L 404369.1 -4886637 L 405626.8 -4884803 L 406354.3 -4884570 L 406587.6 -4884267 L 406525.1 -4884584 L 406850.1 -4885473 L 406729.7 -4885814 L 406040.6 -4887467 L 406593.7 -4888777 L 406933.3 -4888804 L 407333.4 -4887871 L 407665.1 -4887795 L 408845.1 -4888696 L 410260.4 -4888136 L 410967 -4888434 L 411887.9 -4887255 L 412784.8 -4887847 L 413112.7 -4888299 L 412823.6 -4888536 L 411256.8 -4890059 L 412454 -4890887 L 413194.2 -4890826 L 413459.3 -4890598 L 414272.4 -4889999 L 414958.1 -4889117 L 416082.6 -4889204 L 417130.2 -4888747 L 418316.4 -4889575 L 418857.3 -4889250 L 419577.2 -4889390 L 419946.7 -4889427 L 420287 -4889598 L 422069.1 -4890118 L 421827.7 -4891158 L 422151 -4891358 L 424342.9 -4891726 L 423774.9 -4893351 L 424735.4 -4893605 L 425085.9 -4893699 L 425712.6 -4892797 L 427113.5 -4893131 L 427389.3 -4892450 L 428043.4 -4892574 L 428291.7 -4892864 L 427928.6 -4893824 L 428463.4 -4894208 L 428805.9 -4894294 L 429922.6 -4894317 L 430499.2 -4894790 L 431243.4 -4894791 L 431617 -4894795 L 431882.3 -4893784 L 432366.6 -4893282 L 432037.9 -4892655 L 432309 -4892424 L 433411.6 -4892558 L 434116.2 -4892302 L 434207.3 -4891551 L 434919.9 -4890651 L 435624.8 -4890846 L 436093.4 -4891434 L 437545.5 -4891024 L 438636.8 -4890084 L 436349.4 -4888729 L 434873 -4888744 L 434286.4 -4888243 L 434317 -4887860 L 434688.7 -4887758 L 434971 -4888018 L 437602.3 -4887875 L 438609 -4887386 L 440560.1 -4888522 L 442402 -4888581 L 442680.1 -4888321 L 443408.5 -4887525 L 442844.2 -4886162 L 444171.6 -4885594 L 445458.2 -4886242 L 446185.7 -4886077 L 446808 -4884783 L 447437.9 -4884427 L 447735.9 -4884219 L 448011.9 -4883992 L 448192.2 -4883682 L 450322.2 -4882826 L 450704.7 -4882892 L 450702.3 -4882507 L 451536.6 -4881717 L 452425.2 -4880076 L 452358.6 -4878585 L 456040.4 -4878035 L 456410.1 -4877949 L 456873.7 -4875974 L 457123.8 -4875727 L 458318.5 -4875095 L 458880.9 -4873824 L 459153 -4873595 L 459133.1 -4872931 L 458857.7 -4872744 L 459085.4 -4872163 L 459111.9 -4871852 L 459385 -4871580 L 459652.8 -4870866 L 461369.1 -4870139 L 461352.4 -4869370 L 461170.4 -4868248 L 461083.1 -4867905 L 459800.5 -4867338 L 459413.7 -4866257 L 460168.8 -4866273 L 462467.3 -4864993 L 462445.9 -4864612 L 463794.1 -4863573 L 463707.6 -4862098 L 463557.9 -4861410 L 463515.6 -4861036 L 463633.7 -4860298 L 465577.3 -4859202 L 465872 -4858582 L 465759.7 -4858251 L 464855.6 -4857734 L 464553 -4857148 L 464571.6 -4856802 L 464610.3 -4855789 L 464400.5 -4855235 L 466694.1 -4852153 L 467148.4 -4852211 L 467437.4 -4852019 L 467374.1 -4851636 L 468189.4 -4850875 L 468551.9 -4849781 L 469399.3 -4848986 L 469793.7 -4847922 L 470081.8 -4847688 L 472003.5 -4845970 L 472049.1 -4845587 L 474007.8 -4843834 L 475107.6 -4843791 L 475478.3 -4843724 L 476590.1 -4843656 L 478738.1 -4842208 L 481650.2 -4843054 L 482035.7 -4843090 L 482653 -4844820 L 484695 -4845820 L 485446.2 -4845777 L 486403 -4844657 L 487839.8 -4844375 L 488215.2 -4844447 L 488238.2 -4844437 L 488573.1 -4844261 L 489195 -4843328 L 491782.5 -4843673 L 492104.4 -4843527 L 493336.1 -4842884 L 493117.9 -4842573 L 493645.3 -4839617 L 494391.5 -4838397 L 494391.6 -4838397 z " |
id="path649" /> |
<path |
d="M 383721.5 -4864072 L 383356.1 -4864042 L 381976.2 -4864409 L 381747.7 -4863353 L 381104.4 -4862482 L 380788.5 -4862637 L 380456.7 -4862755 L 380563.3 -4862388 L 378936.9 -4860851 L 378556.4 -4860877 L 378244.7 -4862329 L 377397.3 -4863065 L 377235.2 -4862766 L 376804.7 -4861875 L 376572.7 -4861563 L 375071.7 -4858890 L 374983.1 -4859245 L 373631 -4858819 L 372602.9 -4859105 L 371861.3 -4860335 L 371534.3 -4860537 L 370444.6 -4860221 L 368390.5 -4861147 L 367632.3 -4860380 L 367639.9 -4859662 L 367364.8 -4859432 L 367078.7 -4859213 L 368027.8 -4857658 L 367806.5 -4857042 L 365912.5 -4856940 L 364998.4 -4857561 L 364651.5 -4857721 L 362802.6 -4856658 L 362570.6 -4856377 L 363307 -4856175 L 364200.5 -4854961 L 365590.4 -4855418 L 367417 -4855267 L 367936.3 -4853487 L 367828.3 -4853126 L 367144.3 -4853126 L 366617 -4852720 L 366474.9 -4852410 L 365101.4 -4852213 L 364179.2 -4851625 L 363906.2 -4851383 L 363378.9 -4851430 L 363122.5 -4851339 L 362891 -4851285 L 361847.2 -4851019 L 361501 -4850920 L 361202 -4851522 L 360638.7 -4851140 L 360304.1 -4851208 L 360358.9 -4850828 L 361130.4 -4850118 L 355889.7 -4847924 L 355676.3 -4848243 L 355449 -4848944 L 356341 -4849637 L 356178.5 -4850363 L 353569.4 -4850839 L 353292.3 -4851038 L 352963.5 -4851996 L 351983.8 -4852512 L 351548.9 -4853572 L 350535.3 -4854034 L 350333.4 -4853295 L 348977.1 -4852608 L 348249.4 -4851720 L 348106.5 -4851365 L 347514.1 -4851488 L 347309.7 -4851784 L 347379.2 -4852369 L 346683.8 -4852552 L 345598.2 -4853477 L 345501.6 -4853383 L 343853.9 -4851855 L 343613 -4851554 L 342478.4 -4851682 L 341827.4 -4852086 L 338889.1 -4851635 L 338534.9 -4851553 L 337856.5 -4851351 L 337435.6 -4850791 L 337268.7 -4850474 L 335308.2 -4850715 L 335136 -4850502 L 334206.1 -4851049 L 332766.4 -4851019 L 332270.6 -4850470 L 331234.8 -4850234 L 330557.1 -4850527 L 330589.2 -4851260 L 331352 -4853225 L 332068.8 -4854038 L 332852.7 -4855168 L 332937.7 -4855510 L 332586.9 -4855629 L 330556 -4856440 L 330592.4 -4857477 L 331643.8 -4857469 L 331980.6 -4857360 L 331854.9 -4857727 L 331079.8 -4859060 L 329904.1 -4860046 L 329686.7 -4861560 L 329725.8 -4861896 L 331135.7 -4862713 L 331469.6 -4862970 L 331197.5 -4863189 L 330246.9 -4863590 L 330178.5 -4864188 L 329822.8 -4864275 L 329152.1 -4864569 L 328329.5 -4865739 L 327633.1 -4865515 L 327323.1 -4865710 L 327083.9 -4865102 L 326794.8 -4864907 L 324748.1 -4866027 L 324653.5 -4866319 L 323915.3 -4866861 L 320736.6 -4865815 L 320580.1 -4866112 L 320026.1 -4867667 L 320010.3 -4868404 L 321935 -4869421 L 322052 -4869770 L 322516 -4870312 L 322642 -4870651 L 323369 -4871864 L 323747.9 -4872095 L 323976.1 -4872285 L 324032.8 -4872379 L 325284.8 -4873726 L 325443.9 -4874443 L 325387.1 -4874827 L 325275.6 -4875089 L 324781.7 -4875361 L 325202.7 -4875968 L 324703.4 -4877245 L 325029.5 -4877422 L 325384.7 -4877564 L 326775.8 -4877114 L 327371.7 -4878075 L 328090.5 -4878145 L 328697.8 -4878510 L 328432.7 -4878724 L 327796 -4878961 L 327546.9 -4879578 L 326428.6 -4879528 L 325282.9 -4880512 L 324589.7 -4880162 L 324399.6 -4879876 L 323275.6 -4879271 L 320568 -4877751 L 320325.7 -4878019 L 320002.7 -4879053 L 320117.7 -4879408 L 320201.8 -4880146 L 319789 -4880738 L 319716.3 -4881081 L 319561.9 -4881761 L 318877.9 -4881742 L 318604.7 -4882439 L 318774.7 -4883177 L 319429.7 -4884090 L 319468.9 -4884845 L 320003.3 -4886103 L 321532 -4887077 L 321698 -4887407 L 322236.3 -4886953 L 323299.1 -4886854 L 323560.3 -4886606 L 323150.7 -4887544 L 323334.1 -4888565 L 323536.2 -4888858 L 323352.6 -4889211 L 322786 -4890252 L 323497.5 -4890495 L 325403.6 -4890228 L 328131.3 -4888756 L 328341.8 -4888427 L 329239.9 -4888287 L 330144.5 -4888842 L 330467 -4889765 L 331104.9 -4889442 L 331274 -4889761 L 330839.5 -4890723 L 330860.8 -4892390 L 331003.9 -4892725 L 331030.1 -4893095 L 330406.1 -4893489 L 329440.4 -4892998 L 328955.9 -4893518 L 328138.6 -4893672 L 328168.3 -4894722 L 328512.5 -4895337 L 328671.6 -4895653 L 328776.4 -4895677 L 331766.2 -4895374 L 332129.9 -4895269 L 334322.9 -4899680 L 334272.3 -4899994 L 333535 -4900589 L 334662.7 -4902004 L 334306.4 -4903806 L 335338.9 -4903428 L 335997.4 -4904283 L 336160.5 -4904612 L 335780.9 -4904626 L 334031.2 -4906494 L 333875.8 -4906790 L 333495.4 -4907687 L 333141.1 -4907553 L 331778.6 -4907118 L 331471.5 -4907353 L 330910.1 -4908359 L 329772 -4908560 L 330236.9 -4909822 L 330116.4 -4910143 L 330623 -4910548 L 330930.4 -4910656 L 331885 -4912287 L 331997.2 -4912612 L 331680.7 -4913029 L 331805.2 -4913709 L 331347.8 -4914671 L 331683.2 -4915310 L 331899.4 -4915600 L 332025.9 -4916270 L 332935.3 -4916585 L 333269.8 -4916659 L 333621.2 -4916777 L 333989.7 -4916804 L 334274.8 -4916085 L 335334.6 -4915017 L 335539.8 -4912707 L 335585.5 -4912323 L 335675.4 -4912322 L 335840.1 -4913407 L 336340.4 -4913988 L 338955.5 -4913922 L 340063.2 -4914965 L 340666.3 -4914570 L 342085.1 -4914355 L 342284.3 -4914661 L 344067.2 -4914146 L 345131.3 -4914530 L 345154.2 -4915648 L 345449.4 -4915884 L 346959.1 -4916193 L 348177 -4917133 L 348525.3 -4917301 L 348872.8 -4917344 L 350928.3 -4917470 L 350975.5 -4916804 L 351036.2 -4915313 L 350752 -4915064 L 349989.8 -4915094 L 348555.5 -4914532 L 347805.2 -4914632 L 347127.5 -4913274 L 346753.1 -4913177 L 347195.7 -4912568 L 347937.9 -4912555 L 348564 -4912127 L 349293.8 -4911256 L 348927.9 -4909833 L 349780.3 -4909082 L 349973.6 -4908808 L 350587.6 -4908942 L 350945.2 -4908923 L 352227.7 -4907842 L 352883.4 -4908108 L 353618.8 -4907449 L 354151.3 -4907925 L 354431.6 -4908147 L 354273.1 -4906405 L 354532.1 -4905735 L 354808.2 -4905502 L 355172.8 -4905508 L 355646.3 -4904954 L 356302.4 -4904992 L 357055.9 -4903729 L 358070.1 -4904575 L 359076.8 -4904118 L 359407.7 -4903454 L 359525.2 -4903102 L 360035.8 -4903502 L 360282.8 -4904940 L 360459 -4905265 L 360695.3 -4904967 L 361829.1 -4904906 L 362653.7 -4905686 L 364037.1 -4906230 L 364355.9 -4906133 L 363552.4 -4903676 L 364211.2 -4903374 L 364204.6 -4902619 L 363047.7 -4901690 L 362700.4 -4901539 L 362598.6 -4899921 L 362417.4 -4899637 L 362786.1 -4899535 L 364139.8 -4898822 L 365188 -4899099 L 366918.9 -4898587 L 368398.1 -4895936 L 369494.7 -4897538 L 371013.6 -4898744 L 371405.1 -4898763 L 373473.3 -4900015 L 373737.6 -4900252 L 373951.5 -4900166 L 374317.9 -4900277 L 376078.3 -4901678 L 376293 -4902799 L 376984.6 -4903126 L 377844.7 -4904779 L 378700.8 -4904175 L 378914.8 -4903489 L 379608.3 -4903308 L 380647.6 -4903567 L 380878.9 -4903272 L 381830.7 -4902160 L 381341 -4901182 L 382012.2 -4899493 L 382254.4 -4899198 L 383177.5 -4898529 L 383524.8 -4898688 L 385677.3 -4899221 L 386171.1 -4900144 L 386455.4 -4900348 L 386742 -4900941 L 386348.8 -4901906 L 386038.2 -4903007 L 385142.1 -4903689 L 385081.5 -4904064 L 385968.3 -4904767 L 385615.2 -4906225 L 385872.4 -4906506 L 386617.8 -4906375 L 386961.1 -4906541 L 387692.3 -4906540 L 388146.8 -4905939 L 388905.9 -4905987 L 389275.3 -4906087 L 389318.9 -4905720 L 389160.1 -4903950 L 390416.2 -4903046 L 391439.4 -4903400 L 391921 -4904476 L 390791.6 -4905451 L 390914.6 -4905989 L 391665.1 -4905761 L 392015.4 -4905940 L 392381.2 -4904648 L 392664.2 -4904437 L 393146.2 -4905309 L 393488.9 -4905254 L 393545.3 -4905549 L 393615.3 -4906088 L 393969 -4906036 L 395821.2 -4907673 L 396129.6 -4907854 L 396440.6 -4907628 L 398586.3 -4908196 L 399222.1 -4909120 L 400702.1 -4908753 L 401781.5 -4907742 L 402509.4 -4907945 L 402965.9 -4908560 L 402616.2 -4909245 L 403234.6 -4909228 L 403442.3 -4909890 L 404088.3 -4910098 L 404420.8 -4910197 L 404517.3 -4909818 L 404978.7 -4909229 L 406033.4 -4908727 L 406626.8 -4910002 L 407344.7 -4910197 L 407708.2 -4910285 L 407902.5 -4909972 L 408422.4 -4909713 L 410487 -4910501 L 410623.3 -4910233 L 410762.6 -4909966 L 410379.1 -4909940 L 409707.2 -4909686 L 408741.1 -4908510 L 410282.7 -4906402 L 409359.6 -4905185 L 409709.4 -4905045 L 411941.1 -4903719 L 412619 -4903966 L 414732.8 -4903882 L 415045.2 -4904064 L 415292.4 -4903780 L 417108.9 -4903490 L 417457.7 -4903348 L 416930.3 -4902046 L 416705.8 -4899946 L 416727.4 -4899582 L 416381.9 -4899523 L 415222.1 -4900181 L 414988.8 -4899873 L 414345.9 -4899643 L 412405.4 -4896315 L 411311.6 -4896368 L 410961.9 -4895790 L 411962.4 -4895382 L 412174.3 -4894063 L 412743.4 -4893643 L 412588.1 -4893317 L 412959.7 -4893321 L 413543.4 -4893720 L 414214 -4893526 L 414431.1 -4892095 L 414932.4 -4891547 L 415410.5 -4892991 L 416540 -4893124 L 417921.3 -4892596 L 418084.7 -4892252 L 417563.2 -4891694 L 417724.2 -4890961 L 419418.5 -4890217 L 418857.7 -4889249 L 418316.8 -4889574 L 417130.6 -4888746 L 416083 -4889203 L 414958.5 -4889116 L 414272.8 -4889999 L 413459.7 -4890597 L 413194.6 -4890825 L 412454.4 -4890887 L 411257.2 -4890058 L 412824 -4888535 L 413113.1 -4888298 L 412785.2 -4887846 L 411888.3 -4887254 L 410967.4 -4888433 L 410260.8 -4888135 L 408845.5 -4888695 L 407665.5 -4887794 L 407333.8 -4887870 L 406933.7 -4888803 L 406594.1 -4888776 L 406041 -4887467 L 406730.1 -4885813 L 406850.5 -4885473 L 406525.5 -4884583 L 406588 -4884266 L 406354.7 -4884569 L 405627.2 -4884802 L 404369.5 -4886636 L 404083.4 -4886889 L 403933.2 -4886555 L 402620.7 -4884926 L 403015 -4883930 L 402125.5 -4883702 L 401823 -4883608 L 401150.4 -4883864 L 400661.2 -4884836 L 399928.8 -4884987 L 399187.3 -4885780 L 398181.4 -4885305 L 397693 -4885849 L 397390 -4886070 L 397389.7 -4885704 L 395870.3 -4885849 L 394783.3 -4885481 L 393306.4 -4885877 L 392579.7 -4885664 L 392321.5 -4885948 L 391836.8 -4885050 L 391945.5 -4884041 L 391840.2 -4883714 L 392120.4 -4883442 L 393104.3 -4882814 L 392665.4 -4880941 L 392884.5 -4880200 L 393970.2 -4880145 L 395011.8 -4879635 L 395841.1 -4877874 L 395571.9 -4877607 L 394648 -4875550 L 393289 -4874918 L 392985.7 -4874224 L 392611.1 -4874275 L 391560.5 -4874255 L 392024.6 -4872871 L 391762.2 -4872233 L 391398.8 -4872158 L 390385.6 -4872442 L 390185.5 -4872117 L 389578.1 -4871199 L 388869.4 -4870040 L 389119.1 -4869041 L 389175.7 -4868690 L 388825.5 -4868520 L 386498.3 -4868697 L 384671.6 -4869271 L 383535.6 -4869036 L 383362.5 -4868699 L 382834.9 -4868349 L 382165.1 -4868686 L 382499 -4868048 L 382420.6 -4867314 L 384596.4 -4866917 L 385162.6 -4866436 L 385514.4 -4866317 L 385133.8 -4865897 L 385210.3 -4865620 L 385161.3 -4864211 L 384845.1 -4864034 L 384473.8 -4863946 L 383721.6 -4864072 L 383721.5 -4864072 z " |
id="path650" /> |
<path |
d="M 650315.7 -4914719 L 650339.5 -4915058 L 651154.4 -4915622 L 651418.4 -4915836 L 651568.3 -4916196 L 651607.7 -4918120 L 652238.4 -4919539 L 654622.6 -4920581 L 654867.6 -4920866 L 655161.6 -4920997 L 655482.7 -4921007 L 656342.6 -4922124 L 657415.1 -4921378 L 657776.2 -4921390 L 659208.9 -4920151 L 659812.9 -4920601 L 660197 -4920650 L 660139.3 -4919666 L 659808.3 -4919469 L 660252.8 -4918052 L 661385.2 -4917894 L 662592.8 -4916949 L 664443.3 -4917121 L 664548.5 -4916600 L 664418.5 -4916367 L 664132.5 -4916108 L 663097.5 -4915041 L 660858 -4914558 L 660619.5 -4912702 L 659655.7 -4911501 L 659736 -4910808 L 660024.1 -4910610 L 658766.1 -4909768 L 658376.3 -4909120 L 658019 -4906898 L 657735.9 -4907148 L 652774.4 -4908555 L 652397.3 -4908513 L 650205.2 -4907961 L 650336.1 -4908308 L 650274.8 -4909041 L 649560.2 -4910313 L 650580.8 -4911752 L 650263.7 -4911966 L 649268.3 -4912533 L 648505.2 -4912482 L 648813 -4913150 L 650255.8 -4914344 L 650315.7 -4914719 L 650315.7 -4914719 z M 699481.9 -4888401 L 699582.7 -4883685 L 699878.1 -4882991 L 700006.3 -4882636 L 701153.8 -4882645 L 702954.4 -4883255 L 703307.5 -4883402 L 703333.5 -4878365 L 701580.2 -4874931 L 701217.9 -4873011 L 701143.1 -4872628 L 700781.8 -4870886 L 701104.4 -4869865 L 701203.6 -4869521 L 702204.9 -4869714 L 703507.8 -4869086 L 703821 -4868898 L 705249.4 -4869322 L 705625.6 -4869354 L 705784.8 -4869014 L 706987.6 -4866427 L 708849.4 -4866505 L 707723.3 -4863644 L 707649.5 -4863258 L 706326.3 -4860580 L 705431.3 -4859879 L 705131.3 -4859646 L 704584.4 -4859119 L 704230.4 -4855369 L 704501.6 -4855284 L 704768.6 -4855383 L 705772.7 -4855821 L 706383.4 -4856783 L 708612.4 -4856608 L 710867.1 -4857088 L 711171.4 -4856851 L 712119.9 -4856699 L 712431.1 -4856617 L 712730.3 -4856533 L 713040.5 -4856528 L 713273 -4855802 L 714364.1 -4854749 L 714720.3 -4854610 L 715578.8 -4852646 L 716109.3 -4852184 L 716460.5 -4852093 L 717309.2 -4851606 L 717966.4 -4851800 L 718278 -4849121 L 720896.2 -4847491 L 721560.1 -4846539 L 721694.4 -4846176 L 721543.5 -4845895 L 721396.6 -4845612 L 721169.7 -4845285 L 720153.6 -4844691 L 718196.5 -4841739 L 715837.3 -4841899 L 715445.2 -4841894 L 713781.1 -4841018 L 712552.6 -4839503 L 711177.5 -4838794 L 710859.5 -4838691 L 709800.7 -4837923 L 709417.5 -4837972 L 707111.6 -4838196 L 705212.2 -4837898 L 704824 -4837985 L 703647.8 -4837793 L 700178.2 -4838656 L 699831 -4838776 L 696738.4 -4839878 L 696358.3 -4839924 L 694040.8 -4841243 L 693726.6 -4841440 L 692040.7 -4842207 L 691729.5 -4842304 L 690598.8 -4842944 L 690283.6 -4843085 L 688403.6 -4843945 L 688070.4 -4844109 L 686935.5 -4845065 L 686651.3 -4845340 L 686055.8 -4845855 L 683715.1 -4846185 L 683345 -4846222 L 681906.5 -4846589 L 680403.1 -4846869 L 680033 -4846879 L 679663 -4846885 L 679274 -4846892 L 675661.7 -4845462 L 671786 -4847263 L 671478.8 -4847418 L 670560.4 -4847891 L 670224.2 -4848072 L 667853.1 -4849305 L 667503.9 -4849489 L 664377.5 -4851173 L 663884 -4853024 L 663814.8 -4853344 L 663257.9 -4854523 L 663085.7 -4854859 L 660153.9 -4857191 L 659970.8 -4857393 L 659642.5 -4857830 L 659395.2 -4858137 L 657826.9 -4859894 L 654645.7 -4861445 L 654324.6 -4861637 L 653955.5 -4861694 L 652790.6 -4861630 L 650645.5 -4863252 L 650288.4 -4863425 L 648474.9 -4864230 L 644922.9 -4864508 L 644548.9 -4864576 L 641930.8 -4865033 L 641582.8 -4865089 L 639143.8 -4865473 L 639352.5 -4865788 L 639905.1 -4866295 L 642033.3 -4867027 L 643380.2 -4868346 L 643338.9 -4868723 L 645103.8 -4870141 L 644732.8 -4871604 L 644930 -4872728 L 646809.1 -4872441 L 647179 -4872549 L 647487.5 -4873247 L 647506.2 -4873632 L 647314.9 -4874163 L 647295.6 -4874554 L 646969.9 -4875648 L 645461.7 -4875999 L 644377.1 -4878467 L 643659.7 -4879144 L 643402.5 -4879348 L 643121.4 -4879558 L 642707 -4880111 L 642634.3 -4881158 L 642411.1 -4881471 L 640691.6 -4882281 L 640454.4 -4882663 L 640452.2 -4883046 L 640244.8 -4883724 L 639861.8 -4883720 L 637874.6 -4882618 L 637209.2 -4883395 L 637193 -4883750 L 635980.7 -4885878 L 636024.4 -4886260 L 636944.4 -4889510 L 637050.8 -4890487 L 636962.6 -4890809 L 636823.1 -4891553 L 636808.9 -4891931 L 636814.7 -4892312 L 636811.5 -4892689 L 637065.3 -4894769 L 636033.1 -4895160 L 635660.7 -4895811 L 636154.1 -4896841 L 636001.7 -4897578 L 635303.6 -4897853 L 633871.9 -4897337 L 633207.7 -4897651 L 633140.5 -4898083 L 633453.5 -4899908 L 631465.3 -4902192 L 631330.1 -4902549 L 631076.6 -4903467 L 631123.4 -4903789 L 631299.4 -4905726 L 631324.2 -4906117 L 631381 -4906510 L 631175.3 -4910006 L 631093.1 -4910392 L 631437.2 -4910237 L 633448.6 -4909429 L 636090.7 -4909483 L 636765.4 -4910158 L 639697.6 -4910082 L 640064.6 -4910067 L 640794 -4909243 L 641517.1 -4909213 L 643069.9 -4907741 L 643433.9 -4907788 L 643363.1 -4905219 L 643495.2 -4904869 L 643612.4 -4904563 L 643478.7 -4903935 L 644187.3 -4902709 L 644269 -4901286 L 644199.2 -4900935 L 644328.7 -4899869 L 644931.9 -4899489 L 645289 -4899449 L 647469.3 -4901269 L 647778.2 -4901456 L 649251.6 -4903078 L 649584.5 -4903253 L 650911.6 -4903578 L 651256.6 -4903572 L 651445.9 -4903044 L 653334 -4903381 L 653716 -4903430 L 654454.8 -4904221 L 656508.8 -4905196 L 656833.8 -4905393 L 657915.7 -4906097 L 658244.8 -4906133 L 659294 -4906115 L 660102.9 -4906770 L 660424.9 -4906908 L 661019.8 -4907428 L 661393.8 -4907561 L 663527 -4908450 L 663818 -4908704 L 664970.1 -4906437 L 665185.3 -4906125 L 665980.5 -4906130 L 667840.1 -4905783 L 670959.2 -4908121 L 671230 -4909183 L 671915.1 -4909562 L 672266.2 -4909735 L 672460.3 -4909659 L 672796.6 -4909010 L 672569.7 -4908316 L 672608.8 -4907952 L 672495 -4907228 L 671108 -4906039 L 670892.4 -4904620 L 671946.8 -4904254 L 672122.5 -4902406 L 672089.6 -4902033 L 671873.7 -4901724 L 671334.7 -4901203 L 671199.8 -4900858 L 672305.5 -4899902 L 672660.6 -4899794 L 673289 -4899319 L 675958 -4898677 L 678309.8 -4898610 L 678411.3 -4900177 L 678437.2 -4900569 L 678762.3 -4900564 L 679082.4 -4900619 L 679411.5 -4900631 L 679722.6 -4900520 L 681331.5 -4899559 L 681685.7 -4899436 L 682592.2 -4898890 L 683226.7 -4898049 L 683540.9 -4897888 L 683592.8 -4898266 L 684731.2 -4898345 L 686139.9 -4897806 L 687702.2 -4898904 L 689058 -4898194 L 689405.2 -4898031 L 689707.4 -4897794 L 690046.6 -4897612 L 689945.7 -4897373 L 689816.9 -4896627 L 690290.6 -4895184 L 690084.3 -4892902 L 690099.4 -4892513 L 691206 -4892218 L 692708.5 -4892519 L 693290.9 -4892026 L 693937.1 -4892208 L 694310.2 -4892302 L 694420.6 -4891173 L 694942 -4890731 L 695309.2 -4890610 L 695651 -4888885 L 695942.2 -4888682 L 699086.8 -4888357 L 699482 -4888401 L 699481.9 -4888401 z " |
id="path651" /> |
<path |
d="M 344440.6 -5127310 L 343397.6 -5127771 L 341877.7 -5127820 L 340548.7 -5128476 L 340432.8 -5127377 L 340047.8 -5127345 L 337915.8 -5128126 L 336972 -5126042 L 334790.1 -5125349 L 334914.1 -5125001 L 334452.2 -5123993 L 333723.3 -5123870 L 333328.5 -5122837 L 333962.5 -5122495 L 333925.6 -5122107 L 333297.7 -5121762 L 330586.8 -5121698 L 329853.1 -5120328 L 329493.1 -5120176 L 329616.2 -5119865 L 329986.3 -5119422 L 329876.4 -5118768 L 330154.4 -5118518 L 330875.4 -5118321 L 331441.6 -5116952 L 332362.6 -5116388 L 331982.8 -5115456 L 332185.8 -5115234 L 332695.9 -5114720 L 332221.2 -5113690 L 332447.4 -5112556 L 333203.5 -5111668 L 332746.7 -5111156 L 332498.8 -5110854 L 331444 -5110625 L 331205.9 -5110930 L 330298.8 -5111568 L 328500.1 -5110977 L 325645.1 -5111904 L 324193.3 -5111537 L 323881.3 -5111684 L 322903.3 -5112006 L 322867.3 -5111945 L 322738.5 -5111188 L 320781 -5110037 L 320048.3 -5109146 L 320847.8 -5107425 L 320466.8 -5107430 L 317856.1 -5107219 L 317173.3 -5106908 L 315670.4 -5107115 L 315117.6 -5106619 L 314763.6 -5106760 L 314518.9 -5106081 L 314599.1 -5105436 L 313680.4 -5104893 L 313625.3 -5105235 L 313336.1 -5105848 L 312031.3 -5105548 L 311227.9 -5106796 L 310467.9 -5106917 L 309421.2 -5106450 L 309348.1 -5106824 L 309220.8 -5107575 L 308050.2 -5109498 L 306786 -5110282 L 307165.5 -5111673 L 306819.5 -5111799 L 306138.4 -5112076 L 305420.7 -5111297 L 304351.7 -5111556 L 303893.2 -5110167 L 302988.7 -5109015 L 302638.7 -5109149 L 302262.9 -5108677 L 302009 -5108452 L 302428.2 -5107847 L 302170.3 -5107567 L 302268.6 -5106845 L 303767.5 -5106845 L 304431.6 -5106492 L 304296.1 -5105362 L 304576.4 -5104678 L 304769.5 -5104350 L 304035.5 -5104522 L 303629.8 -5103889 L 302069.4 -5102853 L 299506.7 -5102695 L 299439.5 -5103051 L 298744 -5104279 L 298415.9 -5104460 L 297760.8 -5104754 L 297124 -5104358 L 294911 -5104614 L 294609.1 -5104493 L 294285.1 -5104488 L 293223.1 -5104665 L 292542.3 -5104395 L 291924.2 -5104713 L 291642.4 -5104439 L 290121.6 -5104156 L 289011.5 -5104362 L 288776.2 -5105055 L 287497.6 -5106370 L 286407.5 -5106644 L 285864.3 -5107167 L 285721.2 -5107411 L 285244.1 -5107711 L 285019 -5107990 L 282985.8 -5108376 L 282737.7 -5108551 L 282524.3 -5109439 L 282406 -5110167 L 283289.7 -5110818 L 283627.4 -5111398 L 283556.2 -5111731 L 283209.1 -5111866 L 283380.9 -5112196 L 284644.3 -5113520 L 284897.7 -5114984 L 284479.5 -5115406 L 283324.4 -5115543 L 282395.9 -5114394 L 281636.8 -5114510 L 281270.5 -5115157 L 280946.5 -5115196 L 279982.4 -5115350 L 279897.2 -5115714 L 279503.6 -5117080 L 278877.2 -5117884 L 276441.7 -5118679 L 276593.6 -5119022 L 276988.6 -5121576 L 277347.6 -5121672 L 278425.1 -5123153 L 278772.2 -5123018 L 279316.1 -5123523 L 279189.8 -5124254 L 279106.7 -5124617 L 278970.5 -5125153 L 278478.7 -5127291 L 278395.6 -5127647 L 278760.7 -5127584 L 280953.9 -5127593 L 281787.6 -5128795 L 281656.4 -5129417 L 280397.6 -5131674 L 281330.7 -5131803 L 281695.6 -5132366 L 281449.4 -5133083 L 282371.2 -5134282 L 282221.1 -5134649 L 280803.6 -5136022 L 279398.2 -5136752 L 278290.1 -5136501 L 277854.2 -5135859 L 276547.3 -5135037 L 276075.4 -5134426 L 276154.6 -5133657 L 274652.9 -5131972 L 272336 -5133998 L 270992.6 -5134744 L 269886.5 -5134515 L 270519.1 -5136260 L 271142.1 -5136671 L 269918.5 -5137935 L 270140.5 -5138201 L 271552.3 -5139711 L 271230.2 -5139892 L 270670 -5140377 L 270122.6 -5141690 L 269036.4 -5141888 L 268374.4 -5141557 L 268410.3 -5141941 L 268068 -5143011 L 267506.8 -5143460 L 268162.4 -5145661 L 268431.9 -5148322 L 267781.7 -5148723 L 267901.7 -5149067 L 268518.6 -5150372 L 268372.5 -5150705 L 268304.4 -5151056 L 266253 -5150648 L 266020.9 -5150921 L 266118.7 -5152021 L 266939.8 -5152690 L 266417.6 -5153206 L 266479.5 -5153939 L 267099.5 -5154870 L 267157.3 -5156725 L 269074.8 -5156542 L 269190.8 -5156900 L 270189.9 -5158879 L 268913.5 -5160050 L 269502.6 -5161841 L 271381 -5163209 L 272154.2 -5163223 L 272757.4 -5163707 L 273107.5 -5163872 L 271691.1 -5164362 L 271871.1 -5165466 L 271582 -5166161 L 271685 -5166523 L 270167.6 -5166236 L 269176.3 -5166840 L 270075.6 -5169383 L 269689.5 -5169953 L 268726.2 -5169400 L 267838.9 -5168223 L 265312.1 -5167673 L 264938 -5167695 L 265062 -5168796 L 267495.8 -5171104 L 267251.8 -5172170 L 267719 -5172758 L 267749 -5172768 L 267968.1 -5173084 L 269513.6 -5174160 L 268885.5 -5175467 L 270295 -5176017 L 270516.1 -5176723 L 270323.1 -5177853 L 270661.2 -5178036 L 270939.3 -5178278 L 272159.8 -5179096 L 272848 -5179016 L 273224.1 -5179163 L 273334.2 -5179443 L 272984.2 -5180270 L 272613.1 -5180338 L 270409.7 -5182900 L 269561.3 -5182160 L 269336.3 -5182470 L 268952.5 -5184631 L 269276.6 -5184804 L 268948.7 -5186097 L 269988.3 -5187107 L 270190.4 -5187413 L 271277 -5188324 L 271306.1 -5188680 L 270488.9 -5189363 L 270288.9 -5189659 L 269792.6 -5189060 L 269069.3 -5188842 L 268497.2 -5189368 L 267364.8 -5189635 L 267077.7 -5189897 L 267363.8 -5189994 L 267376 -5190896 L 268154.3 -5190918 L 268929.8 -5191785 L 270324.5 -5192405 L 271070.7 -5192193 L 272009.8 -5190998 L 272134.8 -5191037 L 272337.9 -5191330 L 273521.8 -5193114 L 272758.5 -5193127 L 271739.3 -5193682 L 271113.2 -5194137 L 270404.2 -5195047 L 269328.9 -5195496 L 268575.6 -5195329 L 268325.6 -5195627 L 268641.8 -5195817 L 269341.4 -5197050 L 269356.6 -5197787 L 270485.5 -5199219 L 270410.6 -5199609 L 270183.9 -5200781 L 270109 -5201163 L 269624.3 -5202610 L 268986.2 -5203042 L 268955.3 -5203434 L 268787.5 -5204187 L 267991.4 -5205054 L 267913.6 -5205836 L 268136.8 -5206133 L 268970.6 -5207324 L 268925.7 -5207692 L 268584.8 -5208345 L 267345.5 -5208987 L 266966.3 -5208979 L 264938 -5208039 L 265069.2 -5208405 L 264577.7 -5210278 L 264540.8 -5210637 L 265339.2 -5210778 L 265456.4 -5211104 L 264976.7 -5212462 L 264934.8 -5212747 L 264859 -5213319 L 264794.2 -5213900 L 264751.3 -5214286 L 264100.1 -5216922 L 263980.4 -5217662 L 264299.2 -5219117 L 264365.4 -5219504 L 264525.6 -5219862 L 265251.3 -5220605 L 265514.5 -5220835 L 266771.9 -5220352 L 266831.8 -5219999 L 268614.6 -5219907 L 268917.4 -5219279 L 269263.5 -5219166 L 269957.7 -5220915 L 269897.8 -5221291 L 269190.6 -5221552 L 269066.9 -5222294 L 269476.4 -5222932 L 269537.8 -5223665 L 271437.5 -5226960 L 273488.5 -5228646 L 273762.8 -5228910 L 274814.5 -5227438 L 275032.4 -5227148 L 276152.4 -5227862 L 276345.3 -5227574 L 277114.5 -5225484 L 277411.5 -5225248 L 278136 -5225475 L 278140.4 -5222614 L 278323.3 -5222291 L 278928.8 -5222721 L 280025.2 -5222565 L 280484.9 -5223493 L 281509.2 -5223195 L 281787 -5222524 L 282502.4 -5222639 L 282766.7 -5222889 L 282232.9 -5221871 L 282265.5 -5221102 L 284036.9 -5220412 L 284276.8 -5220111 L 284758.5 -5221013 L 285644.2 -5221538 L 285970.4 -5221655 L 286069.8 -5220486 L 286955.3 -5218827 L 285113.5 -5216813 L 285255.2 -5216080 L 285163 -5215697 L 285510.1 -5215544 L 286591.7 -5215901 L 287599.6 -5214779 L 289138.6 -5215627 L 289521 -5216177 L 289708.2 -5216480 L 290375.5 -5216654 L 291859.9 -5216333 L 291824.6 -5213878 L 292077.6 -5213603 L 294144.8 -5214414 L 294450 -5214629 L 295142.9 -5213861 L 295171 -5212083 L 295223.8 -5211717 L 294487.2 -5210970 L 294762.3 -5208890 L 294982.2 -5208598 L 295166.1 -5208300 L 294026.4 -5207543 L 293673.3 -5207567 L 294781.1 -5206267 L 294114.5 -5205437 L 294709.4 -5204602 L 294431 -5203991 L 294343.8 -5203654 L 294933.3 -5201899 L 295701.2 -5201086 L 296024.2 -5200888 L 297397.9 -5201484 L 297773 -5201435 L 299078 -5202749 L 300443.2 -5202169 L 300823.3 -5202153 L 301815.3 -5201507 L 302129.3 -5201268 L 303299.7 -5201260 L 304330.8 -5200702 L 304641.8 -5200460 L 305066.3 -5201396 L 305147.5 -5201732 L 308362 -5203063 L 308733.2 -5203197 L 309600.6 -5203445 L 309806.8 -5203674 L 310378.7 -5203206 L 313178.7 -5203537 L 313527.7 -5203403 L 314210.7 -5203081 L 316866.4 -5203076 L 317140.6 -5203342 L 316975.4 -5205131 L 315329.3 -5205841 L 315095.4 -5206128 L 315075.7 -5206804 L 315179.9 -5207132 L 314714.2 -5207949 L 314650.3 -5208271 L 314723.5 -5208686 L 316102.9 -5208625 L 316458 -5208683 L 318582.6 -5208709 L 318957.4 -5208131 L 318813.2 -5207801 L 318952.9 -5207160 L 319656.7 -5206358 L 319973.7 -5206192 L 320668.1 -5206506 L 321349.1 -5206146 L 321675.8 -5205446 L 323920.1 -5204938 L 324249.7 -5203898 L 324258.5 -5203511 L 324310.4 -5203191 L 325009.3 -5200584 L 324746.7 -5199446 L 325157.4 -5198535 L 324735.9 -5197617 L 324785.6 -5196895 L 326452.1 -5194980 L 326609 -5194653 L 327321.7 -5193485 L 327641.7 -5193335 L 328360.3 -5192092 L 329305.7 -5192571 L 329761.6 -5192129 L 329330.3 -5191539 L 329698.2 -5190985 L 331496.5 -5190888 L 331610.4 -5190532 L 330848 -5189872 L 331414.7 -5188930 L 332418.7 -5188485 L 332467.3 -5187381 L 332519.2 -5187011 L 332537.1 -5186821 L 332922.8 -5185788 L 332710.2 -5184312 L 333667.2 -5183747 L 333887.8 -5182634 L 335023.4 -5181065 L 336071.4 -5180608 L 336138.3 -5180225 L 336571.2 -5179693 L 336705.1 -5179376 L 337617.9 -5178298 L 339023 -5177936 L 339350.8 -5177327 L 339977.8 -5176942 L 339890.4 -5175870 L 340701 -5174217 L 340939.9 -5173932 L 341097.7 -5173192 L 340401.5 -5172863 L 339149.9 -5171469 L 339532 -5171511 L 339866.9 -5170887 L 339504.7 -5170212 L 340092.3 -5168444 L 339468.1 -5168020 L 338497.6 -5166388 L 338371.5 -5166039 L 339174.3 -5164853 L 339410 -5163415 L 339982.9 -5162494 L 341276.9 -5162176 L 341618.9 -5162152 L 341442.7 -5161524 L 341709.6 -5160934 L 341855.6 -5160641 L 342935.6 -5160251 L 343444.5 -5159675 L 344945.6 -5159720 L 345581.5 -5158900 L 347064.6 -5159019 L 347437.6 -5159049 L 348148.2 -5157024 L 347783.9 -5155636 L 351245.1 -5155790 L 352357.1 -5155424 L 353124.2 -5155562 L 354189.1 -5155076 L 355334.9 -5154028 L 355659.9 -5153808 L 357391.6 -5151865 L 357555.5 -5151530 L 357257.5 -5151300 L 356597.4 -5150949 L 356795.2 -5149874 L 357770.9 -5148262 L 356426.8 -5148075 L 357555.5 -5145761 L 358533.4 -5145347 L 358896.4 -5145293 L 360180.3 -5144506 L 360181.1 -5143371 L 360922.1 -5143389 L 361538.2 -5143841 L 362281.2 -5143746 L 362135.1 -5143398 L 360712.8 -5141187 L 360839.7 -5140101 L 359407.5 -5138347 L 359092.5 -5138495 L 357863.6 -5138967 L 357725.6 -5138614 L 357179.5 -5137630 L 357205.4 -5136875 L 355608.4 -5136015 L 355698.4 -5135648 L 355510.3 -5134532 L 354115.4 -5135115 L 353520.5 -5136077 L 351656.5 -5135694 L 351308.5 -5135805 L 349582.5 -5136212 L 349635.5 -5135844 L 347761.5 -5134105 L 347673.5 -5133729 L 347632.5 -5131847 L 347217.5 -5130767 L 346330.5 -5130050 L 346276.5 -5128935 L 345814.5 -5128341 L 345950.5 -5127204 L 345755.5 -5127126 L 345487.5 -5127398 L 344740.5 -5127544 L 344440.5 -5127309 L 344440.6 -5127310 z " |
id="path652" /> |
<path |
d="M 413780.6 -5061262 L 413773.7 -5060883 L 414437.6 -5060530 L 414597.9 -5059422 L 413960.2 -5059072 L 412465.6 -5059228 L 412198.2 -5057739 L 411868.4 -5057552 L 410259.7 -5058229 L 409551.2 -5057438 L 408103.6 -5057642 L 407948.6 -5057867 L 407879.4 -5058407 L 407602.4 -5058646 L 407260.3 -5059288 L 406237.8 -5058908 L 406166.9 -5058551 L 405667.8 -5059436 L 404973 -5059640 L 404743.4 -5058602 L 404068.2 -5056947 L 403343.5 -5056884 L 403210.7 -5056545 L 402407.9 -5056654 L 402358.1 -5056279 L 402137.4 -5055575 L 400097.4 -5054842 L 399056.6 -5055133 L 397919.3 -5054295 L 395701 -5052162 L 395423.2 -5051894 L 395031.6 -5051306 L 394942.1 -5050261 L 394392.5 -5049849 L 394181.7 -5049564 L 392278 -5048277 L 390347.7 -5048386 L 389754.2 -5047908 L 389093.5 -5045814 L 388025 -5045744 L 387047.6 -5045276 L 386121.7 -5045683 L 385746.8 -5045750 L 383847 -5046811 L 383800.4 -5046065 L 383350.9 -5045471 L 381872.7 -5045191 L 381804.5 -5045516 L 381877.9 -5046465 L 381555.9 -5046626 L 380968.9 -5047045 L 380826.4 -5046285 L 380372.9 -5045665 L 378833.6 -5045558 L 378740.7 -5043653 L 377684.1 -5042045 L 377350.1 -5042213 L 376695.8 -5043104 L 375972.1 -5043095 L 375309.6 -5042746 L 374247.3 -5040803 L 373903.5 -5040656 L 373734.4 -5039423 L 373366.6 -5039364 L 372635 -5039240 L 372103.6 -5038720 L 370583.9 -5036230 L 370261.9 -5036441 L 365581.3 -5038925 L 365719.5 -5038584 L 365644 -5037865 L 365045.5 -5037469 L 364794.5 -5037571 L 364286.8 -5037404 L 363851.7 -5036407 L 363779.8 -5034919 L 363157.4 -5034538 L 362961 -5033861 L 362719.3 -5033562 L 362075.9 -5033144 L 361721 -5033289 L 361487.8 -5035088 L 359799.9 -5035940 L 357673.5 -5035178 L 357050.5 -5035592 L 356943.7 -5036713 L 355960.3 -5037796 L 355623.6 -5037616 L 354967.2 -5037252 L 353490.9 -5037172 L 352615.8 -5037806 L 352549 -5038931 L 352900.7 -5039098 L 353840 -5040789 L 354885.7 -5041937 L 356214.6 -5042746 L 356308.3 -5043124 L 353772.2 -5044839 L 353459.2 -5045057 L 352766.3 -5045376 L 352014.7 -5045247 L 351580.3 -5044639 L 350140.2 -5044187 L 350024.5 -5043823 L 349755.4 -5044065 L 349247.6 -5045415 L 348297.2 -5046467 L 348271.3 -5046402 L 347922.4 -5046417 L 347295.5 -5046699 L 346486.8 -5048126 L 346347.6 -5048491 L 346259.1 -5049265 L 346636.5 -5049943 L 346175.7 -5051421 L 345467.3 -5052345 L 343319.7 -5053005 L 342819.3 -5052421 L 341728.9 -5052129 L 341524.7 -5052458 L 339465 -5053124 L 337302.4 -5052312 L 336186.7 -5052421 L 335712.3 -5051811 L 335335.4 -5051899 L 335077.3 -5052152 L 334388 -5052984 L 334083.4 -5054020 L 333501.3 -5054444 L 333301.6 -5054164 L 332719.4 -5053314 L 332584.7 -5052941 L 331863.3 -5051121 L 331750.6 -5050746 L 331090.6 -5049812 L 328853.9 -5049266 L 328790.6 -5049625 L 328471.3 -5051398 L 328126.3 -5051514 L 326231.3 -5051148 L 325506.5 -5052522 L 324234.9 -5053942 L 324486.6 -5054238 L 325318.3 -5055538 L 326339.1 -5059541 L 326209.1 -5059551 L 325169.2 -5059927 L 323951.2 -5061883 L 322253.2 -5062634 L 321557.4 -5062590 L 320719.1 -5061924 L 320076.1 -5062236 L 319060.6 -5061924 L 318693.6 -5062042 L 317567 -5061970 L 316918.9 -5062382 L 316682.4 -5063116 L 315723.3 -5063631 L 315139.5 -5065048 L 315451.9 -5065694 L 316381.8 -5065496 L 316789 -5066496 L 316580.9 -5066792 L 317017.1 -5067752 L 317626.9 -5067740 L 317981.8 -5067728 L 318097.3 -5068374 L 318084.1 -5068702 L 320059.7 -5070060 L 320392.5 -5070187 L 321344.3 -5070116 L 321661.1 -5070234 L 321920.6 -5070934 L 321384.1 -5071953 L 321694.4 -5074606 L 322342 -5074965 L 324191.6 -5074781 L 324928.9 -5073954 L 325675.7 -5073916 L 326127.9 -5073304 L 326287.1 -5072958 L 327225.7 -5073156 L 327354.5 -5073486 L 326853.1 -5074473 L 327340.7 -5075010 L 327196.1 -5076115 L 327307.9 -5076480 L 328412.1 -5077499 L 330078.1 -5080509 L 330463.5 -5081572 L 330270.4 -5081821 L 329668.6 -5081735 L 329427.5 -5081939 L 330719.7 -5083102 L 331006.5 -5083313 L 329977 -5084911 L 330200.1 -5086786 L 330227.9 -5087171 L 329701.8 -5087680 L 329795.5 -5088408 L 329970.3 -5088732 L 330734.1 -5088746 L 331955.3 -5087803 L 332726.1 -5087858 L 333733.1 -5087361 L 335565.6 -5087763 L 337283.6 -5089287 L 338040.5 -5089185 L 338420.4 -5089257 L 338399.2 -5089881 L 338563.1 -5090146 L 338745.9 -5090727 L 340023.3 -5091584 L 340255.7 -5093120 L 339588.7 -5093508 L 339546.2 -5094917 L 339637.1 -5095262 L 338631.1 -5095726 L 338521.9 -5096404 L 338840.6 -5097066 L 337796.4 -5098123 L 337464.4 -5098204 L 336583.4 -5098726 L 336613.3 -5099051 L 336002.2 -5099745 L 334436 -5098089 L 333822 -5098453 L 333682.6 -5099579 L 333158.5 -5100123 L 332849.5 -5100354 L 331083.4 -5101496 L 330772.4 -5101672 L 330703.1 -5102751 L 331457.7 -5103564 L 330959.3 -5104948 L 331599.9 -5105891 L 331606.8 -5106141 L 332019.6 -5106755 L 332055.3 -5107915 L 330535.9 -5110026 L 331082.7 -5110477 L 331443.6 -5110625 L 332498.4 -5110854 L 332746.3 -5111157 L 333203.1 -5111668 L 332447 -5112556 L 332220.8 -5113690 L 332695.5 -5114720 L 332185.4 -5115234 L 331982.4 -5115456 L 332362.2 -5116388 L 331441.2 -5116953 L 330875 -5118321 L 330154 -5118518 L 329876 -5118768 L 329985.9 -5119423 L 329615.8 -5119865 L 329492.7 -5120176 L 329852.7 -5120328 L 330586.4 -5121698 L 333297.3 -5121763 L 333925.2 -5122107 L 333962.1 -5122495 L 333328.1 -5122838 L 333722.9 -5123870 L 334451.8 -5123993 L 334913.7 -5125002 L 334789.7 -5125349 L 336971.6 -5126043 L 337915.4 -5128126 L 340047.4 -5127346 L 340432.4 -5127377 L 340548.3 -5128476 L 341877.3 -5127820 L 343397.2 -5127772 L 344440.2 -5127310 L 344740.2 -5127546 L 345487.2 -5127399 L 345755.2 -5127127 L 345950.2 -5127205 L 345814.2 -5128342 L 346276.2 -5128936 L 346330.2 -5130052 L 347217.2 -5130769 L 347632.2 -5131848 L 347673.2 -5133730 L 347761.2 -5134107 L 349635.2 -5135846 L 349582.2 -5136214 L 351308.2 -5135807 L 351656.2 -5135695 L 353520.2 -5136079 L 354115.1 -5135117 L 355510 -5134533 L 355698.1 -5135649 L 355608.1 -5136016 L 357205.1 -5136876 L 357179.2 -5137632 L 357725.3 -5138616 L 357863.3 -5138968 L 359092.2 -5138496 L 359407.2 -5138349 L 359662.1 -5137748 L 360264.1 -5137549 L 360590.1 -5137595 L 360645.1 -5137964 L 361810.2 -5138874 L 362158.2 -5138739 L 362323 -5136665 L 363681.9 -5136335 L 364040.9 -5136278 L 365027 -5137430 L 365766 -5137633 L 366481 -5137357 L 367247 -5137356 L 367502.9 -5136874 L 369620.9 -5137074 L 369677 -5137813 L 370519.1 -5138411 L 369830.2 -5139218 L 371984.2 -5139842 L 372310.2 -5140047 L 373431.1 -5139594 L 373668 -5139358 L 374518.8 -5138254 L 374720.8 -5137971 L 375871.6 -5136586 L 376228.6 -5136672 L 376111.6 -5136312 L 377009.5 -5135628 L 377329.3 -5134162 L 377604.3 -5133904 L 377349.3 -5133640 L 377169.3 -5133322 L 378750.1 -5132388 L 379833.1 -5132387 L 379916 -5132019 L 379357.9 -5131197 L 379585.7 -5129041 L 378618.7 -5128584 L 378281.7 -5128426 L 377606.6 -5126392 L 378632.5 -5126132 L 379097.4 -5125572 L 378143.4 -5124997 L 377430.5 -5125230 L 376739.5 -5124334 L 376815.5 -5123610 L 377709.4 -5122955 L 377590.4 -5122223 L 377263.4 -5122033 L 376534.5 -5122187 L 375838.6 -5121909 L 374544.7 -5119734 L 374181.7 -5119627 L 375126.6 -5117553 L 375714.5 -5117115 L 376200.5 -5115710 L 376587.5 -5115698 L 377498.4 -5115077 L 378233.3 -5115230 L 378779.3 -5114875 L 379802.2 -5115198 L 380116.2 -5115405 L 380751.1 -5115003 L 380579.1 -5114314 L 381038.1 -5113314 L 379960.3 -5112243 L 381408.1 -5111878 L 382277 -5110652 L 383349.9 -5110801 L 383234.9 -5110050 L 383830.8 -5109606 L 384025.8 -5108898 L 383135.9 -5108299 L 382731 -5107248 L 383386.9 -5106909 L 383565.9 -5106218 L 383647.9 -5105846 L 384185.9 -5105123 L 384554.8 -5105596 L 385565.7 -5105044 L 385624.8 -5104276 L 386774.7 -5103464 L 386035 -5101707 L 386341 -5101062 L 386244 -5100808 L 387193.1 -5098876 L 386828.2 -5098778 L 386252.4 -5097807 L 385960.6 -5096329 L 386223.7 -5095241 L 386319.7 -5094875 L 388357.3 -5094852 L 388677.2 -5094781 L 388853.3 -5093842 L 389066.3 -5093594 L 389329.4 -5092682 L 389131.5 -5092434 L 388444.9 -5091103 L 387685 -5091156 L 386116.5 -5090076 L 384733.9 -5089699 L 384586 -5089376 L 384659.1 -5088686 L 383961.3 -5088581 L 384301.4 -5087540 L 385756.1 -5087388 L 386644.1 -5086210 L 386881.1 -5085922 L 387549.9 -5086204 L 388878.7 -5085766 L 389197.6 -5085973 L 389527.2 -5087417 L 391035.9 -5087490 L 391380.8 -5087652 L 392372.7 -5087310 L 392993.5 -5087575 L 393155.6 -5086885 L 393860.4 -5086826 L 392972.8 -5085700 L 394149 -5083518 L 394025.1 -5083308 L 394135.1 -5083092 L 393434.3 -5082839 L 392658.3 -5083546 L 392327.6 -5082503 L 391837.6 -5082895 L 391075.8 -5082839 L 390206.2 -5082119 L 391180.1 -5081684 L 391411.4 -5080257 L 391037.7 -5079260 L 392747.5 -5078387 L 393041.5 -5078134 L 394544.2 -5077817 L 394927.1 -5077886 L 395369.2 -5076921 L 395455.3 -5076564 L 396005 -5077082 L 397043.7 -5077004 L 397993.3 -5077622 L 400210.8 -5077370 L 400939.6 -5077576 L 401399.4 -5078171 L 401678.3 -5078427 L 402612 -5078797 L 402935.9 -5078883 L 403043.6 -5080049 L 403732.4 -5080353 L 404116.3 -5080279 L 404755.5 -5078488 L 404262.8 -5077450 L 404631.9 -5076367 L 405275.8 -5075950 L 406022.6 -5075936 L 408211.5 -5073840 L 408538.4 -5074047 L 408688.1 -5075182 L 408971 -5075447 L 409736.1 -5073948 L 410617.9 -5073721 L 410652 -5073368 L 411032.9 -5073383 L 412767.8 -5071985 L 413329.2 -5069417 L 413814.2 -5069000 L 414154.1 -5069173 L 413689.5 -5068126 L 412206 -5067939 L 411959.1 -5067644 L 412664.1 -5066780 L 412894.1 -5066484 L 411959.9 -5064499 L 412639.7 -5064358 L 413323.7 -5063488 L 413014.9 -5063281 L 412407.2 -5062852 L 412431.3 -5062480 L 413619.2 -5061611 L 413780.3 -5061262 L 413780.6 -5061262 z " |
id="path653" /> |
<path |
d="M 811235.9 -5359574 L 810937.9 -5358620 L 809664.9 -5358228 L 809391.9 -5358031 L 809580.1 -5356966 L 808682.2 -5355794 L 808664.3 -5355089 L 808523.5 -5354744 L 808472.2 -5354650 L 808189.1 -5354383 L 807819.9 -5354261 L 806747.9 -5351810 L 806833.7 -5351475 L 806414.5 -5349820 L 805741.1 -5347787 L 804973 -5347005 L 805197.2 -5346689 L 805061.4 -5346325 L 804809.4 -5346046 L 803686.2 -5345078 L 803449.7 -5344365 L 803375.1 -5344064 L 803055.7 -5343619 L 803160 -5342856 L 801856 -5340026 L 802613.9 -5339129 L 803781.9 -5339019 L 803820.5 -5338622 L 803342.8 -5336691 L 802884.3 -5336439 L 802753.5 -5336081 L 801619.5 -5333722 L 800370.1 -5332854 L 799696.6 -5331484 L 799654.5 -5330715 L 799308.4 -5330538 L 798714.1 -5329155 L 799213.6 -5328546 L 798690 -5327595 L 798286.1 -5326948 L 797328.8 -5326337 L 796792.1 -5325333 L 796418.1 -5325294 L 795338.9 -5324263 L 794615.3 -5324443 L 794012.2 -5323997 L 794011.2 -5323253 L 793994.9 -5322275 L 794128.8 -5321968 L 793939.9 -5321669 L 793228 -5320895 L 792882.4 -5319555 L 792789.2 -5318796 L 792693.5 -5318429 L 792983.3 -5316213 L 792114.5 -5314971 L 793174.8 -5314695 L 793110.2 -5313635 L 792679 -5312779 L 792382.9 -5312537 L 791178.7 -5311632 L 791925.5 -5310836 L 791977.2 -5309728 L 792080.5 -5308996 L 792622.2 -5308511 L 792929.7 -5308301 L 792951 -5307728 L 793056.9 -5307447 L 792839.9 -5307135 L 792117.8 -5306927 L 791420.3 -5305641 L 791354.9 -5305436 L 790984 -5305479 L 787668.9 -5304137 L 787332.3 -5304324 L 786024.3 -5302955 L 785779.1 -5303249 L 783567.7 -5304737 L 783321.8 -5305243 L 783464.6 -5305585 L 783398.4 -5306293 L 782943.1 -5306865 L 779375.1 -5308079 L 779292.4 -5308456 L 779141.9 -5308387 L 778796.3 -5308540 L 777204.8 -5309506 L 776694.4 -5310104 L 776348.7 -5310183 L 775747.8 -5310551 L 775594.7 -5310705 L 775399.4 -5310803 L 775108 -5311030 L 774063.9 -5311299 L 772205.1 -5312410 L 771774.9 -5313055 L 771817 -5313831 L 770894.5 -5315029 L 769600.6 -5315842 L 769432.7 -5316153 L 769071.7 -5316754 L 768717.9 -5316728 L 768357.9 -5316592 L 766334 -5315519 L 765608.6 -5314204 L 765447.8 -5313862 L 764493.1 -5311880 L 764123.2 -5311834 L 761637.8 -5311052 L 759805.1 -5309768 L 759607.1 -5310094 L 758111.6 -5312181 L 758357.5 -5313268 L 757410.2 -5313804 L 756063.4 -5316089 L 754308.5 -5315943 L 754212.8 -5316300 L 753972.2 -5316999 L 752730.6 -5317743 L 752015.9 -5317561 L 750974.3 -5317951 L 750686.4 -5317681 L 747853 -5316427 L 746679.7 -5316454 L 745613.3 -5316950 L 744463.7 -5316697 L 744226.9 -5316447 L 743423.4 -5315800 L 743203.7 -5315594 L 742543.6 -5314977 L 742193.9 -5315002 L 741615.8 -5314246 L 741270.2 -5314315 L 740229.4 -5314501 L 739864.9 -5313899 L 739482.2 -5313958 L 739115.7 -5314079 L 739342.6 -5315207 L 739246.9 -5315580 L 737329.8 -5316745 L 737130.1 -5316477 L 736525.7 -5316234 L 735769 -5316831 L 735722.3 -5317153 L 735295 -5317494 L 734959.5 -5317595 L 734853.8 -5317929 L 735710.1 -5318441 L 735895.8 -5318761 L 735468.3 -5320487 L 734980.1 -5321002 L 734944.4 -5321312 L 735172 -5322215 L 734888.8 -5322481 L 733257.8 -5324042 L 732966 -5323824 L 732007.6 -5323321 L 731653.1 -5322686 L 731302.6 -5322787 L 729880.9 -5322723 L 729533.2 -5322637 L 728877.4 -5322916 L 728575.5 -5322675 L 726064.7 -5320939 L 725180 -5319311 L 725329.3 -5318583 L 724389.2 -5317456 L 724367.2 -5316718 L 723898.6 -5316111 L 723513 -5316205 L 721541.5 -5316144 L 721529 -5315778 L 721440.9 -5315051 L 721124.1 -5314895 L 720515.9 -5314044 L 719896.5 -5313744 L 719513.8 -5313745 L 718767.7 -5313896 L 719086.1 -5315320 L 719376.8 -5315518 L 720676.2 -5317151 L 720534.4 -5317481 L 719946 -5317895 L 719713.5 -5318576 L 719378.9 -5318575 L 718231.1 -5317928 L 717791.8 -5317536 L 717643.1 -5317179 L 717640.1 -5314902 L 717253.3 -5314819 L 716858.6 -5314792 L 715993.3 -5314117 L 716119.2 -5313097 L 715233.9 -5312442 L 715218.3 -5312798 L 713643 -5314586 L 713028.3 -5314840 L 712483.7 -5316597 L 712799.5 -5316795 L 712766.7 -5317007 L 712733.9 -5317220 L 712370.3 -5317176 L 712133.8 -5317844 L 711720 -5316983 L 711720.5 -5316618 L 710981.2 -5315838 L 709924.3 -5315676 L 709213.7 -5314544 L 708993.7 -5314841 L 707932.4 -5315133 L 707095.8 -5317916 L 707383.6 -5318151 L 708175.5 -5319367 L 708263.1 -5319701 L 707589.5 -5320824 L 707644.1 -5321204 L 706773.9 -5322838 L 706752.3 -5323152 L 706761.6 -5324086 L 706177.1 -5323664 L 705829.8 -5323818 L 704017.5 -5325695 L 702598.7 -5325228 L 702501.5 -5325975 L 702547.7 -5326055 L 701925 -5327022 L 700927.3 -5327634 L 700592.3 -5328746 L 700286.5 -5328512 L 697801.8 -5329327 L 697544 -5329047 L 697594.6 -5327953 L 695841.9 -5329338 L 696258.4 -5330787 L 696742.9 -5331386 L 696998.6 -5331675 L 697685.8 -5331806 L 698675.8 -5332221 L 698485.9 -5332525 L 697476.6 -5333413 L 697831.9 -5333989 L 697890.5 -5334344 L 698202.2 -5334511 L 698920.2 -5335216 L 698854 -5335879 L 699350.2 -5336219 L 699547.4 -5336863 L 699400.3 -5337669 L 699452.8 -5338002 L 699551.8 -5338659 L 699194.5 -5339577 L 699024.7 -5339927 L 700442.5 -5341199 L 702764.1 -5341284 L 702766.5 -5341605 L 702663.2 -5342238 L 702421.1 -5342472 L 702233.2 -5342751 L 702057.4 -5343065 L 701155.1 -5344586 L 700827.9 -5344797 L 699389.5 -5346108 L 699070.8 -5345959 L 698557.4 -5345504 L 698241.2 -5345714 L 695875.3 -5346893 L 696467 -5348286 L 696612.7 -5348654 L 696740.5 -5349831 L 696418.3 -5350017 L 693527.2 -5352309 L 693340.5 -5351972 L 691866.1 -5350245 L 691831.6 -5350640 L 687612.7 -5355808 L 687427.9 -5356141 L 686781.8 -5357493 L 687020.1 -5358206 L 686690.9 -5358390 L 685565.5 -5358525 L 684981.4 -5358994 L 683135.8 -5358935 L 682993.2 -5358593 L 682069.6 -5358336 L 680921.1 -5356893 L 679620.5 -5356211 L 679500.8 -5356556 L 678923.3 -5357473 L 679280.2 -5358498 L 678968.1 -5359482 L 679159.8 -5359782 L 680710.3 -5361615 L 680374.1 -5361768 L 678175.5 -5361938 L 677036.3 -5362850 L 677323.8 -5362974 L 678214 -5363004 L 680909 -5365576 L 682227.6 -5366175 L 682585.2 -5366291 L 685507.5 -5365161 L 685867.2 -5365272 L 685551.7 -5365953 L 685915.2 -5367404 L 687316.5 -5367709 L 688908.9 -5368606 L 689236.6 -5368792 L 689781.7 -5368347 L 689692.1 -5367989 L 690049.4 -5367823 L 690440.9 -5367776 L 690685.2 -5368493 L 691315.6 -5368910 L 692817.7 -5368951 L 693175 -5368825 L 693537.1 -5367791 L 693679.1 -5369142 L 694107.6 -5369780 L 695420.3 -5370399 L 695778 -5370514 L 695884.6 -5370876 L 694983.9 -5372062 L 695134.6 -5372408 L 695323.8 -5372375 L 695985.3 -5372080 L 696239 -5372340 L 697681.2 -5372421 L 698324.7 -5372091 L 698674.1 -5371995 L 699094.1 -5371573 L 700627 -5371286 L 702065.9 -5371869 L 702456.5 -5371904 L 702557 -5372923 L 702821.7 -5373127 L 703346.4 -5374583 L 704155.7 -5375425 L 704894.7 -5374559 L 705187.8 -5374316 L 705567.3 -5374258 L 705824.3 -5373976 L 706180.7 -5374625 L 707419.6 -5375391 L 707522.2 -5375748 L 708535.5 -5375572 L 709069.9 -5376012 L 709408.5 -5376085 L 709494.2 -5376544 L 711296.3 -5376798 L 711577.4 -5376554 L 712393.7 -5375838 L 714212.2 -5375520 L 714569.9 -5375642 L 714269.4 -5374911 L 714081.7 -5374563 L 714252.7 -5374371 L 714499 -5374300 L 713391.2 -5372760 L 713312.1 -5371282 L 714117.3 -5370471 L 713267.3 -5369247 L 713179.9 -5369078 L 713049.2 -5368738 L 711431.1 -5366803 L 711225.1 -5366276 L 711165.6 -5366000 L 711888.4 -5365760 L 712262.9 -5365681 L 712879.4 -5365357 L 714249.5 -5366017 L 714984.6 -5368212 L 714220.5 -5369068 L 716349 -5369078 L 716693.4 -5368940 L 716232.2 -5367878 L 715228.2 -5367593 L 715232.7 -5365642 L 715830.6 -5365595 L 716022.5 -5365261 L 716377.4 -5364715 L 716584.4 -5364462 L 717551 -5365283 L 717995.4 -5365024 L 718195.5 -5364837 L 718402.9 -5364130 L 718628.9 -5363839 L 717913 -5362527 L 718514.6 -5362199 L 718485.7 -5361544 L 718823.3 -5361614 L 718680.9 -5360730 L 718788.7 -5360412 L 719170.6 -5359820 L 719511 -5359727 L 720162.4 -5359953 L 720826.3 -5359775 L 721229.7 -5360339 L 721580.2 -5360291 L 722458.6 -5360992 L 723207 -5361080 L 723578.7 -5361151 L 723942.7 -5360658 L 724505.3 -5361139 L 725549.3 -5361320 L 725566.8 -5361690 L 726403.8 -5361323 L 726630.9 -5361082 L 727008.5 -5361064 L 727382.2 -5361114 L 727646 -5361390 L 727983.8 -5361568 L 727475.9 -5363091 L 727684.7 -5363359 L 728469.6 -5363784 L 728749.9 -5363668 L 729347.5 -5361759 L 729015.7 -5361634 L 729703.9 -5360820 L 730431 -5360696 L 730785.5 -5360593 L 731324.4 -5362106 L 731583.5 -5361823 L 731908.8 -5361621 L 733030.3 -5363506 L 733282.1 -5363785 L 732806 -5366675 L 732952.3 -5366730 L 733982.9 -5366497 L 735012.1 -5366724 L 735128.7 -5367063 L 735417 -5366907 L 735162.3 -5365962 L 735146.9 -5365634 L 736756 -5365749 L 736867.4 -5365902 L 738359.4 -5366108 L 739112.8 -5366091 L 739218.6 -5365750 L 739879.9 -5366549 L 740839.1 -5366850 L 741184.8 -5366865 L 741827.9 -5369082 L 742518.9 -5368884 L 742912.5 -5369497 L 743803.9 -5370007 L 744267.1 -5369456 L 744697.6 -5367630 L 746446.1 -5366918 L 746829.9 -5366905 L 748126.4 -5366883 L 748492.3 -5367008 L 748737.2 -5367306 L 748823.4 -5367355 L 749780.9 -5367846 L 750827 -5367069 L 750375.3 -5366496 L 750412.7 -5365952 L 750657.9 -5365689 L 751278.5 -5365999 L 751627.3 -5366089 L 751807.2 -5365752 L 752526.8 -5365902 L 753344.6 -5367596 L 754716.2 -5368189 L 755060.1 -5368358 L 755687.8 -5368677 L 756465.5 -5367978 L 756797 -5367856 L 757607.6 -5368535 L 757923.4 -5368695 L 758645.8 -5368579 L 759028.5 -5368555 L 759871.3 -5369370 L 760188.3 -5369602 L 761061 -5370307 L 761361.9 -5370538 L 761834.5 -5370169 L 762134.1 -5370148 L 764724.1 -5368923 L 765096.2 -5369129 L 763873.4 -5371404 L 764751.9 -5373539 L 765298.7 -5374038 L 765658.6 -5374178 L 765765.2 -5374434 L 765860.7 -5374695 L 766603.4 -5374758 L 767552.2 -5375380 L 768301.9 -5375371 L 768646.5 -5375216 L 768942.8 -5374117 L 768822.1 -5372977 L 769464.4 -5372049 L 769711.6 -5370952 L 769552.8 -5370604 L 770634 -5370377 L 771388.7 -5370406 L 771924.6 -5370143 L 772159.9 -5369958 L 772398.8 -5370276 L 772627.5 -5369570 L 773280.5 -5369204 L 773621.1 -5369044 L 774639.7 -5370043 L 775550.1 -5369504 L 776264.9 -5369638 L 776586.4 -5369470 L 776657.1 -5369097 L 778179.6 -5369063 L 778661.5 -5368041 L 779373.2 -5368046 L 779736.2 -5368165 L 780115.1 -5368144 L 780164.4 -5367501 L 781011.2 -5368198 L 782337.5 -5367490 L 783083.7 -5369463 L 783168.3 -5369813 L 784717.3 -5370805 L 784981.8 -5371504 L 785102.5 -5371857 L 785793.6 -5372161 L 786255 -5370733 L 787231.7 -5370185 L 787943.8 -5370451 L 789541.7 -5372056 L 789768.6 -5372360 L 790023.8 -5372801 L 790642.8 -5373195 L 793098 -5376522 L 793956 -5377152 L 794250 -5377359 L 794583.1 -5377566 L 796120.3 -5377831 L 797638.7 -5379053 L 799246.4 -5379509 L 799452.3 -5379772 L 799771.4 -5379947 L 801230.4 -5380938 L 801618.6 -5381085 L 801953.7 -5381274 L 804504.1 -5381804 L 804765 -5380262 L 802575.5 -5380539 L 802407.5 -5380872 L 802197.2 -5380269 L 802446.7 -5379333 L 802459.3 -5378994 L 803988.9 -5378635 L 804351.7 -5378475 L 804263.1 -5377315 L 803444.3 -5375140 L 803644.5 -5374023 L 803804.4 -5373617 L 803908.5 -5373456 L 803617.5 -5373250 L 802963.3 -5372042 L 803086.2 -5371707 L 802882 -5370331 L 803093.7 -5369648 L 802481.5 -5369179 L 802331.7 -5368823 L 802615.2 -5368598 L 802942.9 -5368441 L 803774.4 -5367799 L 804168.3 -5366823 L 804060.6 -5366488 L 803642.2 -5366208 L 802780.4 -5364973 L 802594.5 -5364640 L 801917.6 -5363763 L 803851.8 -5363026 L 804191.6 -5362941 L 805075.7 -5361878 L 806519.5 -5361764 L 806883.4 -5361740 L 807142.2 -5361770 L 807366 -5361904 L 808713.6 -5362652 L 808918.6 -5362992 L 809977.1 -5362614 L 809715 -5361522 L 809863 -5361172 L 810570.7 -5360921 L 811100 -5359931 L 811235.9 -5359577 L 811235.9 -5359574 z " |
id="path654" /> |
<path |
d="M 494947.3 -5334633 L 494796.3 -5336004 L 494834.8 -5336347 L 496080.2 -5337644 L 496374.6 -5337870 L 497530.3 -5338056 L 497584.9 -5339080 L 498545.9 -5339530 L 498871.3 -5339705 L 499477 -5339408 L 500136.7 -5339750 L 500645 -5341160 L 502126.1 -5344120 L 503230.7 -5344229 L 502946.4 -5346690 L 501874.4 -5346951 L 501540.5 -5347110 L 501704.7 -5347869 L 501911.3 -5348197 L 501690.7 -5348485 L 501194 -5349414 L 501743.9 -5349888 L 500975.3 -5350320 L 500871.8 -5350629 L 502844.8 -5353395 L 502439.7 -5354017 L 502570.9 -5354771 L 503381.9 -5356490 L 504315.7 -5356203 L 504659.9 -5356235 L 505690.8 -5356583 L 507206.2 -5355914 L 507097.6 -5355560 L 507380.3 -5355329 L 508489.7 -5357239 L 508792.1 -5357455 L 509776.8 -5357709 L 510081.2 -5357900 L 510450.4 -5357312 L 512314.4 -5358140 L 512447 -5358470 L 513304.2 -5357782 L 513420.7 -5357413 L 514074.2 -5357555 L 514511.5 -5357009 L 514866.6 -5356981 L 515374.1 -5357212 L 515610.4 -5357361 L 516182 -5357631 L 516497.2 -5357658 L 518008.2 -5357335 L 518316.9 -5357094 L 518952.7 -5357484 L 519533.4 -5358434 L 519881.7 -5358570 L 520580.9 -5358554 L 520695.5 -5358913 L 522389.6 -5357976 L 522735.7 -5357981 L 522821.3 -5358327 L 523831.2 -5358006 L 524175.2 -5357901 L 524650.6 -5358021 L 525374.9 -5358031 L 525771 -5358631 L 526132.1 -5358614 L 526098.5 -5358248 L 526477.2 -5357962 L 526850.7 -5360066 L 527428.6 -5360514 L 527520.2 -5360870 L 528238.5 -5360877 L 529360.6 -5360012 L 530080.8 -5359980 L 530440.9 -5359951 L 530389.5 -5358424 L 531328.3 -5356781 L 531695.3 -5356688 L 533064 -5358032 L 534187.8 -5358225 L 534573 -5358245 L 534597 -5358219 L 534759.6 -5357939 L 534901.2 -5357647 L 536453.9 -5357670 L 537103.5 -5357242 L 540075.3 -5353735 L 540047.5 -5352568 L 540044.9 -5352179 L 541166.5 -5352260 L 541539.8 -5352342 L 541480 -5351202 L 543294.7 -5349846 L 542932.9 -5348106 L 545048.5 -5347208 L 545364.3 -5346980 L 545942.7 -5345747 L 546054.3 -5345422 L 546063.7 -5345057 L 544261.5 -5342858 L 544378 -5342514 L 544613.7 -5342237 L 544859.1 -5342454 L 545702.9 -5342051 L 545873.6 -5341772 L 544962.7 -5340103 L 542776.3 -5337865 L 542448.8 -5337647 L 543555 -5336751 L 543851.8 -5336543 L 546042.1 -5338041 L 547008.7 -5337464 L 547308.5 -5337231 L 547935.6 -5335716 L 548075.2 -5335413 L 548750.1 -5334463 L 549285.6 -5332586 L 549378.1 -5332206 L 551100 -5332912 L 551285.1 -5333617 L 551340.7 -5333985 L 551624.8 -5333281 L 552190.5 -5332899 L 553375.2 -5334352 L 552970.6 -5336126 L 554797.8 -5335607 L 555128.7 -5335410 L 555816.6 -5333700 L 554901.4 -5332537 L 554731.8 -5332202 L 554800.8 -5331457 L 555722.3 -5330797 L 556536.7 -5331490 L 556905 -5331576 L 557471.6 -5331116 L 557898.4 -5330150 L 558585.4 -5329898 L 559109.3 -5328962 L 559366.1 -5328701 L 559531.7 -5328363 L 559669.3 -5328013 L 559181.2 -5326769 L 559158.7 -5326414 L 559760.4 -5326001 L 560980.5 -5324175 L 561248.3 -5323921 L 561281.4 -5321876 L 560942 -5321741 L 561480.5 -5321203 L 561708.2 -5320896 L 562264.5 -5320884 L 562547.5 -5320810 L 562896.8 -5320149 L 564569.7 -5318717 L 564609.1 -5317598 L 564626.6 -5317222 L 564027.8 -5317595 L 562666.6 -5317283 L 562312.4 -5317310 L 563045.1 -5315418 L 563095.7 -5315072 L 563832.2 -5315119 L 564093.7 -5314633 L 563982.1 -5314281 L 565368.7 -5314853 L 565473.3 -5316690 L 565748.8 -5316950 L 566489.2 -5316910 L 566982.7 -5316361 L 567094.3 -5316006 L 567892.3 -5314234 L 567275.4 -5312398 L 567055.1 -5310081 L 566440.3 -5309073 L 566565.3 -5308992 L 567276.4 -5308771 L 567934.3 -5309128 L 568269.3 -5308954 L 568654.2 -5309450 L 568856.6 -5309690 L 570575.3 -5309432 L 571594.5 -5309824 L 572602.5 -5309372 L 572951.6 -5309255 L 573282.9 -5309297 L 574485.2 -5310433 L 574755.7 -5310635 L 575845.3 -5309130 L 576230.6 -5309131 L 576836.5 -5309550 L 577792.3 -5308959 L 578459.2 -5309317 L 578889.9 -5311064 L 581048.1 -5310904 L 581269.9 -5310608 L 581430 -5309173 L 582857 -5309174 L 583479.9 -5309572 L 584603.6 -5310271 L 584945.7 -5310202 L 584931.7 -5310958 L 586475 -5312608 L 586816.5 -5312775 L 588089.5 -5312111 L 588199.5 -5310592 L 589313.5 -5310795 L 589727.7 -5311417 L 589595.7 -5312939 L 588902.7 -5313286 L 588895.2 -5313669 L 589382.3 -5314211 L 590818.1 -5314084 L 591174.5 -5314171 L 591310.1 -5313070 L 591033.3 -5311949 L 591058.8 -5311565 L 592763.3 -5309586 L 593755.3 -5309064 L 594864.8 -5308854 L 595932.1 -5309243 L 596290.2 -5309119 L 596526 -5308830 L 597211.1 -5308549 L 597314.6 -5307437 L 597767.1 -5306845 L 597469.6 -5306661 L 596827.7 -5306397 L 595785.8 -5306320 L 594877.5 -5305832 L 594642.9 -5305525 L 594373.7 -5304807 L 592926.9 -5303559 L 594212.2 -5303065 L 594125 -5300010 L 594785 -5299614 L 596523.3 -5300346 L 598774.1 -5300444 L 598988 -5299475 L 598650.5 -5299317 L 598822.2 -5297506 L 598469.5 -5296466 L 598747.5 -5296273 L 600012 -5295176 L 599850.4 -5294847 L 599057.1 -5293615 L 599613.3 -5292690 L 599693.9 -5292326 L 599324.5 -5292209 L 599257.9 -5291827 L 599393.1 -5290335 L 598425.5 -5289712 L 597785.3 -5289892 L 596583.5 -5287704 L 596214.4 -5287816 L 595255.5 -5288449 L 594138.8 -5288509 L 593821.6 -5287010 L 592718.4 -5286683 L 592581.4 -5285960 L 593651.7 -5285589 L 593954 -5284882 L 594594.9 -5284459 L 594306.3 -5283375 L 595745.1 -5282396 L 595993.9 -5282119 L 595644.5 -5281992 L 593827.4 -5282174 L 593503.4 -5281567 L 591688.1 -5281551 L 591652.1 -5280796 L 593219.9 -5279746 L 592514.2 -5278052 L 592139.8 -5277967 L 591564.6 -5276566 L 590916.8 -5276271 L 590828 -5273293 L 590998.7 -5272944 L 590626.5 -5272993 L 589886.1 -5273052 L 589612.6 -5272794 L 588797.4 -5270737 L 588971.4 -5269838 L 588891 -5269537 L 587997.9 -5267581 L 587485.3 -5267421 L 587187.3 -5267631 L 586836 -5267536 L 586393.5 -5266584 L 585832.6 -5266153 L 586103.1 -5265578 L 586203.8 -5265276 L 585646.8 -5264802 L 585417.3 -5264517 L 585230.3 -5263809 L 583883.7 -5263262 L 583514.4 -5263263 L 583637.2 -5262245 L 583362.7 -5262011 L 583492.4 -5261693 L 583651.1 -5261389 L 583866.9 -5261119 L 584024.2 -5260488 L 583626.8 -5259558 L 583825.6 -5259275 L 584014.6 -5259168 L 584394.8 -5259092 L 584648.1 -5258361 L 583978 -5255362 L 583691.5 -5255144 L 583121.7 -5255576 L 582801.3 -5255414 L 583047.7 -5254747 L 582428.2 -5253884 L 582181.4 -5254151 L 581416.8 -5254916 L 581053 -5254505 L 581261.8 -5254208 L 581233.5 -5253097 L 581342.1 -5252728 L 580516.7 -5251988 L 579938.5 -5251269 L 579993.1 -5250896 L 581607.6 -5249596 L 580956.1 -5248673 L 581086.3 -5247951 L 582439.7 -5247543 L 583120.5 -5247875 L 583051.1 -5246735 L 582495.6 -5245780 L 583182 -5244884 L 583120.6 -5243764 L 582750.2 -5243633 L 580916.3 -5243895 L 580200.5 -5243633 L 578729.7 -5243728 L 578132.7 -5242376 L 577447.1 -5242234 L 577224.7 -5241123 L 576663.9 -5240708 L 575184.9 -5240653 L 574186.6 -5241805 L 573802.3 -5241778 L 573067.4 -5243146 L 572352.9 -5246563 L 572900.4 -5247542 L 572132.9 -5248389 L 572064.3 -5248774 L 571307.8 -5249570 L 570367.5 -5248089 L 568165.5 -5248308 L 566728.9 -5246812 L 566573.5 -5246491 L 565359.9 -5246620 L 564579.8 -5249519 L 565931.4 -5250262 L 566971.4 -5251429 L 566720.5 -5252483 L 565986.9 -5253220 L 565932.3 -5253584 L 565602 -5253469 L 564756.2 -5254072 L 564062.7 -5254013 L 563768.8 -5254199 L 563809.8 -5253310 L 563095.9 -5251207 L 562866.4 -5250908 L 562123.9 -5250867 L 561640 -5250321 L 562158.3 -5248598 L 562070.8 -5248231 L 560992 -5248034 L 559963.6 -5249052 L 559225.2 -5249052 L 558860.1 -5249114 L 558743.4 -5249441 L 558669.9 -5250761 L 558012.7 -5250868 L 557862.2 -5250520 L 554947.8 -5249819 L 553919.8 -5250279 L 553498.3 -5250890 L 553505.7 -5251182 L 553312.2 -5251731 L 552483.3 -5253063 L 551456.4 -5253628 L 551147.5 -5253870 L 550838.2 -5253720 L 550355.4 -5254055 L 550657.7 -5255036 L 550792.1 -5255352 L 550642 -5255307 L 550416.2 -5255602 L 548997.4 -5255508 L 547377.5 -5256300 L 546966.1 -5256144 L 546596 -5256216 L 546038.2 -5256650 L 545944 -5257370 L 545198.7 -5257405 L 544869.4 -5257289 L 544289.1 -5256453 L 543883.4 -5256914 L 543538.2 -5256867 L 543415.5 -5257194 L 542985.6 -5259154 L 542951.7 -5259270 L 542917.1 -5259616 L 543304.4 -5260572 L 542923.7 -5260994 L 542566.7 -5261082 L 541164.5 -5261504 L 540350.6 -5262700 L 540108.8 -5262959 L 539189 -5263488 L 538835 -5263611 L 538292.4 -5264126 L 537985.4 -5266709 L 537081.4 -5267855 L 536855.2 -5267753 L 536606.1 -5267753 L 536558.6 -5267361 L 536832 -5263455 L 536360.1 -5260402 L 536001.8 -5260310 L 534412.2 -5261204 L 534051.9 -5261123 L 533437.1 -5261496 L 533210.9 -5262207 L 532132 -5261870 L 530626.4 -5261922 L 530366.3 -5261937 L 530117.3 -5262010 L 529731.1 -5261994 L 529052.5 -5261766 L 529034.6 -5260999 L 528235.7 -5259680 L 527131.1 -5259530 L 525627.1 -5258420 L 525686.2 -5257651 L 525051.3 -5257962 L 524869.4 -5258954 L 522639.1 -5260297 L 521894.7 -5260174 L 521229.5 -5261090 L 521064.8 -5261431 L 520271.9 -5260096 L 519108.4 -5260085 L 518437.7 -5259694 L 517285.4 -5259824 L 517182.8 -5260181 L 514981.9 -5263544 L 513598.4 -5263583 L 513052.6 -5263123 L 512021.9 -5262901 L 511799.7 -5263622 L 510833.1 -5264229 L 509872.2 -5265407 L 508846.7 -5265327 L 508786.1 -5265712 L 508344.2 -5268393 L 508882.6 -5269407 L 508638.9 -5269710 L 508432.1 -5269909 L 507984.4 -5270265 L 507656.5 -5270446 L 506213.2 -5270604 L 505005.7 -5269777 L 504725.3 -5269498 L 504005.9 -5268574 L 502486.9 -5268161 L 501912.1 -5267660 L 501598.7 -5267453 L 500873.3 -5267355 L 498940 -5268485 L 497827.8 -5268639 L 497699.2 -5269005 L 496951.2 -5269198 L 496536.8 -5270648 L 495514.1 -5271173 L 495006.2 -5272207 L 495360.2 -5272896 L 494515.6 -5275039 L 494647.1 -5275384 L 494806 -5276081 L 495071.4 -5276297 L 496165.8 -5277111 L 495935 -5277357 L 495218.1 -5278427 L 494891.2 -5278595 L 494215.9 -5278526 L 493462.3 -5279788 L 493916.2 -5281199 L 491589.8 -5283020 L 491256.9 -5283207 L 490913 -5283374 L 490583.1 -5283565 L 490874.6 -5284638 L 490443.2 -5285238 L 489198.7 -5284361 L 488285.2 -5285017 L 488448.7 -5285332 L 488264.5 -5286012 L 488556.9 -5286274 L 489004 -5288554 L 488669.3 -5289665 L 488863.8 -5290005 L 492101.3 -5290358 L 492755 -5290701 L 493095.3 -5290854 L 494415.8 -5290124 L 494793 -5290172 L 494935.5 -5290511 L 495662.7 -5290455 L 496212.1 -5291397 L 497926.5 -5292029 L 498158 -5292316 L 498791.8 -5292715 L 501031.6 -5292756 L 501405.7 -5292747 L 501690.8 -5294235 L 501443.2 -5295334 L 501449.7 -5295714 L 501115.6 -5295708 L 500785.6 -5295764 L 501080.6 -5296421 L 500676.3 -5297041 L 500668.3 -5297797 L 501925.6 -5298424 L 502162.7 -5299136 L 501646.8 -5300807 L 501377 -5301040 L 500994.9 -5301059 L 499254.2 -5301741 L 500495.8 -5302602 L 500179.8 -5304847 L 500794.5 -5305202 L 500524.4 -5305906 L 501933.4 -5306243 L 503247.4 -5306633 L 503664.6 -5308090 L 504363.3 -5308412 L 504516.8 -5308766 L 505526.6 -5309075 L 506270.4 -5310178 L 507172.5 -5310713 L 507508.5 -5310598 L 508118.3 -5312422 L 509215.2 -5313443 L 509243.3 -5314220 L 508832 -5314852 L 509107.1 -5315527 L 508814.9 -5315479 L 508692.7 -5316044 L 508671.8 -5317536 L 507607 -5317958 L 507279.4 -5318988 L 508656.9 -5319673 L 508926.4 -5319955 L 508588.5 -5320104 L 506940 -5320887 L 506412.2 -5321848 L 506772.3 -5322489 L 506398.2 -5322484 L 505547.9 -5323182 L 504158.1 -5323675 L 503428.1 -5324522 L 503372.6 -5324874 L 503385.7 -5326291 L 503409.2 -5326623 L 502866.4 -5326859 L 502740.9 -5327203 L 502287.9 -5329332 L 500856.4 -5329338 L 501707.2 -5331005 L 501398.9 -5331556 L 501096.1 -5331791 L 500663.9 -5332424 L 499968.9 -5332577 L 499838.3 -5332221 L 499236.3 -5332380 L 498759.7 -5333400 L 498057.2 -5333211 L 496974.2 -5333464 L 496702.5 -5333743 L 496110.8 -5334741 L 494946.2 -5334633 L 494947.3 -5334633 z " |
id="path655" /> |
<path |
d="M 455419.6 -5352254 L 455113.2 -5352028 L 454795.2 -5351482 L 452980.8 -5350932 L 451933.9 -5351136 L 450798.1 -5352074 L 449994.5 -5353641 L 449758 -5353399 L 449094 -5353507 L 448739.6 -5353349 L 447811.9 -5351257 L 447548.4 -5350995 L 445511 -5351700 L 445241.5 -5351439 L 444436.3 -5350194 L 443713.6 -5349866 L 443723.2 -5350250 L 443961.7 -5351756 L 443208.7 -5351869 L 443838.3 -5353373 L 442764 -5353361 L 441503 -5354141 L 440950.4 -5355066 L 439133.1 -5352735 L 439011.2 -5351621 L 438740 -5351528 L 438223.3 -5351768 L 437935.9 -5351547 L 436876 -5351757 L 436956.8 -5351043 L 437067.3 -5350714 L 437578.7 -5350270 L 437515.1 -5349929 L 436000.9 -5350038 L 433730.9 -5349803 L 433817.5 -5350182 L 433976.8 -5350945 L 433605.7 -5350974 L 432948 -5350675 L 432016.9 -5349550 L 429434.5 -5349687 L 429334.5 -5349103 L 428717.6 -5348660 L 427664.8 -5348947 L 426196.8 -5348596 L 425071.8 -5348751 L 424718.8 -5348798 L 424015.8 -5348900 L 423619.1 -5349739 L 422913 -5349786 L 422815.6 -5350150 L 422522.3 -5351240 L 423864.6 -5351814 L 423760.3 -5352851 L 424268.3 -5353401 L 423418.3 -5354710 L 423816.6 -5356582 L 424697.1 -5357341 L 424446.5 -5357637 L 423952.8 -5359054 L 423195.9 -5359207 L 423335.5 -5359562 L 424005.6 -5361281 L 423842.1 -5361569 L 422902.4 -5361869 L 422571.5 -5361964 L 420547.8 -5361857 L 420511.3 -5362710 L 420227.4 -5362840 L 421214.4 -5363874 L 421109.9 -5365351 L 421533.1 -5365964 L 421196.1 -5366013 L 420772.8 -5366481 L 420647.4 -5367391 L 420498.8 -5367617 L 420027.1 -5367830 L 419629.1 -5368469 L 419666.2 -5369623 L 420506.7 -5370367 L 420878 -5370469 L 420988.9 -5372063 L 422299 -5374751 L 422418.7 -5375121 L 423255.8 -5375600 L 423491.4 -5375363 L 424215.9 -5375559 L 424147.2 -5376299 L 423116.2 -5376407 L 421067.5 -5377942 L 421347.3 -5379446 L 422822.1 -5379141 L 423195.3 -5379229 L 424439.3 -5378531 L 424687.9 -5378805 L 426887.3 -5378751 L 427241.6 -5378858 L 427201.6 -5379951 L 428416.9 -5382163 L 428677.4 -5382421 L 428395.4 -5383021 L 428447 -5383358 L 428602.4 -5384097 L 429689.2 -5384414 L 430067.3 -5384425 L 430295.2 -5385460 L 429418.4 -5386185 L 429156.9 -5386462 L 429113 -5386502 L 428722 -5387092 L 428651 -5388167 L 427574.9 -5388250 L 427314.3 -5388515 L 426958.1 -5389534 L 427086.4 -5390200 L 427753.2 -5390001 L 428213.9 -5390303 L 428244.6 -5390649 L 428611.5 -5392175 L 428878.1 -5392465 L 429253.2 -5392484 L 429878.8 -5393248 L 430250.8 -5393188 L 430782 -5393228 L 431050 -5393192 L 431301.4 -5393398 L 431888 -5393126 L 432193.9 -5393017 L 432746.6 -5394411 L 433039.2 -5394160 L 433367.9 -5393958 L 433328.3 -5394680 L 434125.8 -5395899 L 434316.4 -5396210 L 434130 -5396556 L 434354.4 -5397286 L 433629.8 -5398607 L 433933.3 -5398838 L 435262.2 -5399168 L 435813.5 -5398758 L 436162.5 -5398721 L 436458.8 -5399383 L 436469.5 -5399770 L 437392 -5400450 L 438164.1 -5400418 L 439167.3 -5400979 L 439835.8 -5400660 L 440185.5 -5400492 L 440390.4 -5401982 L 440033.6 -5402626 L 440309.2 -5402891 L 441057.3 -5402867 L 441523.4 -5402355 L 443010.9 -5402486 L 443114.6 -5402848 L 443406.4 -5402205 L 443373.7 -5401851 L 445014.9 -5401247 L 445745.1 -5401283 L 446231.4 -5400892 L 446578.3 -5400780 L 447035 -5399502 L 446763.5 -5399261 L 446525 -5398986 L 446735.7 -5398298 L 448463 -5398815 L 448519.7 -5398091 L 448598 -5397734 L 449498.1 -5398207 L 449819.4 -5399909 L 450375.7 -5400030 L 450574.3 -5399803 L 451301.9 -5398996 L 452013.9 -5398947 L 452312.6 -5398737 L 453082.2 -5399514 L 453446.3 -5399552 L 453469.1 -5397867 L 453470.5 -5397530 L 453468 -5397245 L 453481.9 -5396675 L 454650.1 -5396656 L 456453.6 -5397306 L 456722.6 -5396725 L 456684 -5396389 L 457887.4 -5397016 L 458225.6 -5397075 L 458572.9 -5397192 L 458763.1 -5396746 L 459060.1 -5396162 L 459381 -5396097 L 459343.3 -5396781 L 460648.6 -5397379 L 461013.8 -5397444 L 461189.8 -5397446 L 461538.9 -5397479 L 461866.2 -5397605 L 463412.6 -5398223 L 463747.6 -5398216 L 464141.5 -5397593 L 464314.8 -5396127 L 464407.2 -5395771 L 464906.5 -5395314 L 465126.1 -5395056 L 465033.7 -5394841 L 465263.8 -5394330 L 465934.8 -5394238 L 466236.7 -5394176 L 466527.5 -5393507 L 466580.8 -5393134 L 467894.6 -5393431 L 468243.7 -5393450 L 468884.3 -5393166 L 469191.5 -5392148 L 469146.9 -5391794 L 468787.9 -5391836 L 467751 -5390934 L 467146.6 -5391329 L 466446.3 -5391226 L 466249.7 -5390932 L 465424.1 -5389605 L 466207.1 -5388980 L 466464.7 -5388751 L 465867.4 -5386974 L 464408.6 -5386719 L 464129.1 -5386485 L 464764.6 -5385597 L 464827.3 -5384882 L 465821.9 -5384511 L 466028.4 -5384211 L 465940 -5382888 L 465773.3 -5382533 L 464218.9 -5381381 L 464491.7 -5380657 L 464468 -5380265 L 464830.1 -5380285 L 465193.2 -5380309 L 464307 -5379722 L 464182.7 -5378996 L 462783.7 -5376905 L 463531.8 -5376869 L 462634.7 -5374052 L 463316.6 -5373886 L 463474.5 -5373200 L 463825.6 -5373189 L 463684.9 -5371619 L 463520 -5371112 L 463551.5 -5370846 L 462964.6 -5370383 L 463200.3 -5367815 L 462732.8 -5367584 L 462648.4 -5367377 L 462850.3 -5367283 L 463181.4 -5366688 L 463075.8 -5366361 L 463119.2 -5366002 L 463105.4 -5364336 L 464012.2 -5364090 L 465951.2 -5361437 L 466191.8 -5361158 L 464322.8 -5361460 L 463181.8 -5360450 L 461669.8 -5360672 L 460760.4 -5359963 L 461392.1 -5359077 L 458967.9 -5358120 L 459020.7 -5357392 L 458306.7 -5357532 L 457725.8 -5357093 L 457474.3 -5356830 L 457724.9 -5356560 L 458307.6 -5356290 L 457497.6 -5355217 L 457743.3 -5353774 L 457452.6 -5354002 L 455989.1 -5353956 L 455330.4 -5353622 L 454671.8 -5353943 L 454790.2 -5353571 L 454886 -5352816 L 455419.2 -5352253 L 455419.6 -5352254 z " |
id="path656" /> |
<path |
d="M 441217.6 -5417759 L 442412.8 -5418761 L 442681.4 -5419047 L 443200.5 -5419588 L 443465.1 -5419855 L 444408.7 -5420569 L 444695.3 -5420840 L 445014.8 -5421050 L 446273.7 -5421910 L 447731.8 -5422355 L 448073.8 -5422336 L 449398.4 -5422031 L 449765.3 -5421936 L 451094.2 -5421304 L 451166 -5420189 L 450595 -5419216 L 450390.5 -5418977 L 450135.1 -5418796 L 450021.5 -5418496 L 449768.2 -5418371 L 449510.9 -5418253 L 449692.2 -5417900 L 449954 -5416781 L 449679.5 -5416560 L 448766.4 -5416047 L 448485 -5415850 L 447327.4 -5415137 L 447002.8 -5414337 L 445558 -5414537 L 445184.7 -5413920 L 444481 -5414117 L 443800.7 -5413512 L 443527.4 -5413365 L 443001.1 -5412238 L 442858.7 -5411561 L 444617.4 -5410776 L 445305 -5409467 L 445681.9 -5409378 L 445701.9 -5409397 L 446345.8 -5408764 L 447335.2 -5408914 L 447640.9 -5408731 L 448196.5 -5408483 L 448482.3 -5408379 L 449103 -5408152 L 449413.8 -5408041 L 450466.3 -5407695 L 450747.9 -5407456 L 450514.1 -5407083 L 450089.2 -5406656 L 449779.2 -5406685 L 450211 -5406046 L 450129.4 -5405746 L 450027.7 -5405372 L 449724.5 -5404250 L 450006.3 -5404123 L 450238.3 -5403556 L 449804.9 -5402324 L 449550 -5401896 L 449169.1 -5400917 L 449193.8 -5400218 L 449819.3 -5399909 L 449498 -5398207 L 448597.9 -5397735 L 448519.6 -5398092 L 448462.9 -5398816 L 446735.6 -5398299 L 446524.9 -5398986 L 446763.4 -5399261 L 447034.9 -5399503 L 446578.2 -5400780 L 446231.3 -5400892 L 445745 -5401283 L 445014.8 -5401248 L 443373.6 -5401852 L 443406.3 -5402206 L 443114.5 -5402849 L 442941.9 -5403586 L 442763.5 -5403919 L 441680.8 -5404186 L 441714.2 -5404924 L 441211.2 -5405473 L 439779.7 -5405365 L 439933.3 -5405680 L 439339.2 -5407234 L 439048.4 -5407373 L 438197.7 -5407104 L 437913.1 -5407322 L 437414 -5407805 L 437413.9 -5407855 L 437446.6 -5408197 L 437294.9 -5408866 L 437227.5 -5409171 L 437104.7 -5409782 L 437109.5 -5410167 L 437402.9 -5410877 L 438126.2 -5410979 L 438002.8 -5411307 L 437479.5 -5412198 L 437715.8 -5412857 L 437690.8 -5413389 L 437484.2 -5413605 L 437875.6 -5414288 L 438054.3 -5414639 L 438733.2 -5416040 L 438901.8 -5416328 L 439276.6 -5416695 L 440904.6 -5417556 L 441217.1 -5417759 L 441217.6 -5417759 z " |
id="path657" /> |
<path |
d="M 469853 -5406274 L 468223.3 -5407133 L 468114.9 -5407488 L 468068.2 -5408197 L 465963.8 -5409776 L 465622.9 -5410368 L 464453.7 -5410898 L 464263.2 -5411189 L 464116.9 -5411055 L 463903.4 -5411338 L 463409.3 -5411845 L 463097.9 -5411674 L 462857.8 -5412145 L 461769 -5412319 L 461424.7 -5412199 L 459764.4 -5411666 L 459232.4 -5411196 L 458881.6 -5411327 L 457165.7 -5411007 L 456974.6 -5411000 L 456911.9 -5411669 L 456862.5 -5411998 L 456772.7 -5413655 L 456588.8 -5414252 L 456359.2 -5414481 L 455834.8 -5414844 L 455716 -5415474 L 455669.7 -5415857 L 455054.4 -5416788 L 453650.3 -5416851 L 453324.2 -5416849 L 452300 -5416848 L 451015.8 -5416826 L 450694.7 -5416821 L 450324.6 -5416792 L 449953.5 -5416781 L 449691.7 -5417901 L 449510.4 -5418253 L 449767.7 -5418371 L 450021 -5418496 L 450134.6 -5418796 L 450390 -5418977 L 450594.5 -5419216 L 451165.5 -5420189 L 451093.7 -5421304 L 449764.8 -5421936 L 449397.9 -5422031 L 448073.3 -5422336 L 447731.3 -5422355 L 447982.5 -5422453 L 447781.6 -5422993 L 447721.2 -5423275 L 448191.4 -5423840 L 448473.9 -5424088 L 448944.2 -5423709 L 449535.1 -5423620 L 450367.3 -5423141 L 450641.7 -5423326 L 450808.2 -5423076 L 451001.8 -5422847 L 451571.9 -5423850 L 452181.6 -5424149 L 452534.3 -5423994 L 453109 -5424807 L 453428.3 -5424922 L 453776 -5424770 L 454141.9 -5424672 L 454378.8 -5424622 L 454617.8 -5424586 L 456121 -5423072 L 456427.7 -5422887 L 456659 -5423037 L 457168.5 -5423244 L 457518.3 -5423145 L 458497.8 -5422804 L 459214.1 -5422924 L 459443.8 -5422770 L 459989 -5422822 L 460242.9 -5422740 L 460781.8 -5423660 L 462577.2 -5424744 L 462934.1 -5424688 L 463024.6 -5424918 L 463266.7 -5424971 L 463342.5 -5425364 L 464073 -5425581 L 465645.4 -5428186 L 467078 -5428411 L 467142.8 -5428787 L 467742.4 -5429047 L 468076.5 -5429069 L 468487.2 -5427859 L 468802 -5427719 L 469082.1 -5426224 L 468834.7 -5425503 L 468078.6 -5424969 L 469808.8 -5422415 L 469937.1 -5422050 L 470074.5 -5421743 L 470360.7 -5420801 L 470713.6 -5420202 L 470704.9 -5419823 L 470231.1 -5419457 L 469949.8 -5419346 L 469676.4 -5417620 L 469964 -5417401 L 469838.8 -5417337 L 469511.4 -5417137 L 469554 -5416402 L 467502.9 -5414946 L 467780.5 -5414695 L 468319.7 -5414213 L 468114.9 -5412787 L 469164.9 -5412720 L 469534.9 -5412675 L 469498.2 -5412322 L 469175 -5411697 L 468535.3 -5411388 L 469281.1 -5409611 L 469433.5 -5409257 L 469457.2 -5408549 L 469785 -5408408 L 470085.1 -5407385 L 470116.4 -5407031 L 469852.9 -5406274 L 469853 -5406274 z " |
id="path658" /> |
<path |
d="M 468244 -5393450 L 467894.9 -5393432 L 466581.1 -5393134 L 466527.8 -5393507 L 466237 -5394177 L 465935.1 -5394239 L 465264.1 -5394330 L 465034 -5394841 L 465126.4 -5395056 L 464906.8 -5395314 L 464407.5 -5395771 L 464315.1 -5396128 L 464141.8 -5397593 L 463747.9 -5398216 L 463412.9 -5398223 L 461866.5 -5397605 L 461539.2 -5397480 L 461190.1 -5397446 L 461014.1 -5397444 L 460648.9 -5397379 L 459343.6 -5396781 L 459381.3 -5396097 L 459060.4 -5396162 L 458763.4 -5396747 L 458573.2 -5397192 L 458225.9 -5397075 L 457887.7 -5397016 L 456684.3 -5396389 L 456722.9 -5396725 L 456453.9 -5397306 L 454650.4 -5396656 L 453482.2 -5396675 L 453468.3 -5397245 L 453470.8 -5397530 L 453469.4 -5397867 L 453446.6 -5399553 L 453082.5 -5399515 L 452312.9 -5398737 L 452014.2 -5398947 L 451302.2 -5398996 L 450574.6 -5399803 L 450376 -5400030 L 449819.7 -5399909 L 449194.2 -5400218 L 449169.5 -5400917 L 449550.4 -5401896 L 449805.3 -5402324 L 450238.7 -5403556 L 450006.7 -5404123 L 449724.9 -5404250 L 450028.1 -5405371 L 450129.8 -5405745 L 450211.4 -5406045 L 449779.6 -5406684 L 450089.6 -5406655 L 450514.5 -5407082 L 450748.3 -5407455 L 451632.2 -5407339 L 452263.8 -5407596 L 452477.3 -5407322 L 452803.3 -5407290 L 453127.5 -5407341 L 453450.9 -5407502 L 455008.9 -5408420 L 455310.3 -5408601 L 455990.7 -5408773 L 457210.8 -5408182 L 459899.8 -5407393 L 460235.1 -5407532 L 460609.9 -5408464 L 460525.6 -5408833 L 460870.9 -5409508 L 460704.5 -5409848 L 460513 -5410117 L 459261.5 -5410500 L 458915.6 -5410574 L 458485.6 -5410089 L 457781.6 -5410146 L 457452.8 -5410269 L 456970 -5409382 L 456937.5 -5410709 L 456975.1 -5410999 L 457166.2 -5411007 L 458882.1 -5411327 L 459232.9 -5411195 L 459764.9 -5411665 L 461425.2 -5412199 L 461769.5 -5412319 L 462858.3 -5412144 L 463098.4 -5411673 L 463409.8 -5411844 L 463903.9 -5411338 L 464117.4 -5411055 L 464263.7 -5411189 L 464454.2 -5410898 L 465623.4 -5410367 L 465964.3 -5409775 L 468068.7 -5408197 L 468115.4 -5407487 L 468223.8 -5407133 L 469853.5 -5406273 L 470162.3 -5406120 L 469905 -5405479 L 469791.4 -5405153 L 470161.3 -5405052 L 470322.7 -5404706 L 470167 -5404356 L 469569.1 -5403381 L 469449.7 -5402626 L 470867.7 -5402474 L 471474.3 -5401117 L 470203.9 -5401061 L 470343.9 -5399969 L 469471.4 -5399231 L 469931.7 -5398246 L 469971 -5397865 L 468914 -5396890 L 468210.6 -5395641 L 468000 -5395336 L 468047.7 -5395142 L 468248.8 -5394633 L 468450.5 -5394448 L 468593.6 -5393912 L 468292.3 -5393777 L 468244.7 -5393450 L 468244 -5393450 z " |
id="path659" /> |
<path |
d="M 447731.7 -5422355 L 446273.6 -5421910 L 445014.7 -5421050 L 444695.2 -5420840 L 444408.6 -5420569 L 443465 -5419855 L 443200.4 -5419588 L 442681.3 -5419047 L 442412.7 -5418761 L 441217.5 -5417759 L 441314.6 -5418292 L 441129.8 -5418889 L 441384.3 -5419112 L 441132.4 -5420700 L 441352.8 -5420906 L 441704.7 -5421354 L 441659.6 -5422305 L 441310.7 -5422359 L 439268.2 -5422725 L 439443.6 -5422935 L 439640.7 -5423441 L 439649.5 -5423857 L 439644.3 -5424229 L 438810.5 -5425864 L 438486.8 -5426055 L 435973.9 -5426737 L 435702.5 -5427025 L 435590.1 -5427794 L 435954.5 -5428921 L 435563.7 -5430015 L 434418.5 -5429025 L 432983.6 -5429617 L 432802.9 -5429300 L 431912.5 -5428191 L 431604.5 -5428708 L 431390.9 -5428921 L 430069.3 -5428230 L 428599.9 -5428120 L 428388.2 -5427811 L 427440 -5428706 L 427235.5 -5428975 L 427037.9 -5429181 L 426805.5 -5429489 L 426104.3 -5430410 L 425078.8 -5430214 L 424212.9 -5430769 L 423560.3 -5430532 L 423408.9 -5430838 L 422730 -5430913 L 422150.2 -5430548 L 421964.8 -5430860 L 420332.7 -5432780 L 420456.7 -5433248 L 420249.9 -5433363 L 420055.2 -5433496 L 418195.4 -5431810 L 418057.3 -5430357 L 417726.2 -5430313 L 416570.9 -5429775 L 416390.9 -5429760 L 416633.4 -5430445 L 416424.7 -5431517 L 415847.5 -5431927 L 416801.6 -5434249 L 416925.4 -5434593 L 416639.7 -5434767 L 415183 -5435432 L 415133.1 -5435938 L 414849.6 -5436197 L 413901.7 -5436774 L 413301.6 -5436754 L 411916.5 -5436310 L 412006.8 -5435974 L 411725.1 -5434751 L 411365 -5434719 L 411020.9 -5434668 L 410001.9 -5434733 L 409186.2 -5435357 L 408884.6 -5435115 L 408553.5 -5433693 L 408173.4 -5433687 L 407418.5 -5433762 L 407160.9 -5433959 L 406949.5 -5433760 L 406520.6 -5433365 L 406267.1 -5433628 L 404367.2 -5434702 L 404618.3 -5435665 L 404227.4 -5436202 L 403954.8 -5436396 L 403665.3 -5436618 L 402744.5 -5437204 L 400979.9 -5437503 L 400622.8 -5437464 L 399031.9 -5436713 L 398598.2 -5436416 L 398446.7 -5436655 L 398210.8 -5437171 L 399007.4 -5437855 L 399289.9 -5438061 L 399010.3 -5438277 L 399081.5 -5439279 L 399602.6 -5440176 L 401063.8 -5441987 L 401184.7 -5442363 L 401540.7 -5442792 L 401770.1 -5442948 L 401593.9 -5444218 L 402306.6 -5445399 L 402428 -5445558 L 402225.7 -5445880 L 402825.9 -5447253 L 402622.5 -5447978 L 402760.3 -5448311 L 403033.9 -5448545 L 402944.1 -5449517 L 403025 -5449898 L 403418.5 -5450982 L 403186.2 -5451295 L 403425.9 -5452021 L 405397.2 -5453841 L 405513.1 -5454211 L 405993.4 -5454780 L 407827.5 -5453436 L 408124 -5453194 L 407781.6 -5453033 L 407629.1 -5451927 L 406278.6 -5451311 L 406269.7 -5450933 L 406996.3 -5450301 L 407004.5 -5449937 L 407951.1 -5449719 L 408218.8 -5448691 L 408199 -5448336 L 409168.8 -5447772 L 410424.7 -5448597 L 410665.4 -5448885 L 410705.4 -5448900 L 411600.5 -5448470 L 411910.2 -5448329 L 411973.9 -5448653 L 412225.4 -5448866 L 413609.2 -5447813 L 414650.5 -5447920 L 415033.2 -5447310 L 414833.6 -5446599 L 415141.9 -5446712 L 415938 -5447179 L 417452.6 -5447398 L 417799 -5447574 L 417966.3 -5447684 L 418376 -5446637 L 418366.1 -5446253 L 422130.9 -5447408 L 422383.3 -5447117 L 423892.9 -5447331 L 424231.3 -5447519 L 424866.9 -5448233 L 425075.5 -5448477 L 426239.9 -5447733 L 426912.6 -5447591 L 428300.3 -5448773 L 428562.9 -5449027 L 429540.2 -5449152 L 429767.8 -5449397 L 429777.9 -5449427 L 430671.5 -5450125 L 432091.7 -5450614 L 432598 -5451176 L 432904.5 -5451396 L 432894.7 -5451035 L 433578.3 -5450829 L 433785.3 -5449427 L 433966.6 -5449116 L 435424.1 -5448868 L 436475.8 -5449164 L 437156 -5448308 L 437414.6 -5448574 L 438124.2 -5448386 L 438424.8 -5448199 L 438871.7 -5447677 L 438451.5 -5447113 L 438744.5 -5446633 L 438894 -5446394 L 439493.1 -5446445 L 440002.8 -5447242 L 439831.4 -5447547 L 440327.8 -5447239 L 440613.7 -5447169 L 442063.1 -5447339 L 442669.9 -5447705 L 443021.1 -5447809 L 444007.9 -5446297 L 442944.8 -5445332 L 442702.2 -5445052 L 443389.6 -5444735 L 444538.6 -5444721 L 445843.6 -5445139 L 446046.2 -5445433 L 446363.8 -5445228 L 447450.5 -5445534 L 447818.7 -5445619 L 448011 -5446702 L 448830.6 -5447908 L 448927.4 -5448274 L 449345.7 -5448414 L 449613.6 -5448377 L 450150.7 -5448412 L 450428.5 -5448320 L 452755.7 -5444526 L 453031.2 -5444264 L 453902.3 -5445261 L 454149.8 -5445490 L 455714.7 -5444428 L 456859.3 -5444671 L 459075 -5443957 L 458999.5 -5443718 L 458925 -5443479 L 458749.8 -5442920 L 458661.2 -5442640 L 460375.6 -5443245 L 460554.9 -5442924 L 461469.1 -5442515 L 461738.7 -5442300 L 461692 -5441956 L 462990.1 -5441450 L 463308.8 -5441312 L 463428.5 -5440649 L 462615.2 -5439547 L 465250.2 -5438922 L 465612.9 -5438776 L 465744.6 -5440592 L 466132.8 -5441155 L 466479.1 -5441269 L 466449.4 -5440912 L 467309.2 -5440762 L 467686.7 -5438545 L 468943.6 -5437961 L 469185.6 -5436940 L 469361 -5436630 L 469651.9 -5436589 L 469939.8 -5436536 L 468658.2 -5434276 L 470202.7 -5432919 L 469838.7 -5432924 L 469116.5 -5432854 L 468358.9 -5432090 L 468239.5 -5431377 L 467577.8 -5430586 L 466569.9 -5430189 L 465865.1 -5430346 L 465858.4 -5429989 L 466076.1 -5429308 L 466970.8 -5429099 L 467143.2 -5428786 L 467078.4 -5428410 L 465645.8 -5428185 L 464073.4 -5425580 L 463342.9 -5425363 L 463267.1 -5424970 L 463025 -5424917 L 462934.5 -5424687 L 462577.6 -5424743 L 460782.2 -5423659 L 460243.3 -5422739 L 459989.4 -5422820 L 459444.2 -5422768 L 459214.5 -5422922 L 458498.2 -5422803 L 457518.7 -5423144 L 457168.9 -5423242 L 456659.4 -5423035 L 456428.1 -5422885 L 456121.4 -5423071 L 454618.2 -5424585 L 454379.2 -5424621 L 454142.3 -5424671 L 453776.4 -5424769 L 453428.7 -5424921 L 453109.4 -5424806 L 452534.7 -5423993 L 452182 -5424148 L 451572.3 -5423849 L 451002.2 -5422846 L 450808.6 -5423075 L 450642.1 -5423325 L 450367.7 -5423140 L 449535.5 -5423619 L 448944.6 -5423708 L 448474.3 -5424086 L 448191.8 -5423838 L 447721.6 -5423274 L 447782 -5422992 L 447982.9 -5422451 L 447731.7 -5422354 L 447731.7 -5422355 z " |
id="path660" /> |
<path |
d="M 672914.1 -5498794 L 672787.5 -5498715 L 672241.6 -5497598 L 672190.1 -5497220 L 672132.1 -5496474 L 671586.1 -5496073 L 670825.4 -5496037 L 670543.9 -5495788 L 669829.3 -5495745 L 669260.5 -5496227 L 667342.6 -5492940 L 667056 -5492678 L 667326.7 -5492291 L 667016.2 -5492114 L 665362 -5491468 L 664858.3 -5490536 L 664483.1 -5490570 L 663828.1 -5490245 L 663573.3 -5490520 L 662990.7 -5491876 L 662652.6 -5491965 L 661736.5 -5492453 L 661733 -5492834 L 660216.9 -5493606 L 659304.5 -5493039 L 658943.1 -5492962 L 658255.9 -5493181 L 657595 -5492881 L 656950 -5492474 L 656308 -5492793 L 656329.4 -5493113 L 655773.1 -5493881 L 655745.6 -5494267 L 655209.6 -5495261 L 653325.8 -5495597 L 652992.3 -5495393 L 652430.5 -5494385 L 652951.8 -5492189 L 652871.4 -5491920 L 652611.5 -5491423 L 652304.4 -5491504 L 651713.2 -5491676 L 651411.5 -5490591 L 651364.9 -5489468 L 651899.6 -5488998 L 651366.2 -5487590 L 651053.9 -5487497 L 651020.4 -5487137 L 650497.7 -5486192 L 649424.7 -5486022 L 649237.1 -5485711 L 649254.6 -5485322 L 650350.2 -5483739 L 650740.4 -5483714 L 651091.8 -5483079 L 650999.7 -5482326 L 651006.2 -5481944 L 651966.4 -5480863 L 652315.8 -5480968 L 652479.7 -5480852 L 652997.5 -5480430 L 652389.7 -5478701 L 652809 -5477253 L 652935.6 -5476919 L 653473.4 -5476481 L 653074.3 -5475902 L 652708.9 -5475799 L 651247.2 -5474644 L 652770.1 -5473039 L 652426.9 -5472363 L 652539.5 -5472000 L 651698.1 -5470771 L 651352 -5470850 L 649627.8 -5470925 L 649196.6 -5470311 L 649340.7 -5469575 L 647318.3 -5466874 L 647428.9 -5466515 L 647511 -5465815 L 647733.8 -5465587 L 648174 -5464741 L 647661.3 -5463834 L 648489.1 -5462581 L 649204.3 -5462324 L 649582.5 -5462241 L 649794.1 -5461843 L 649511.6 -5461640 L 649105.5 -5461117 L 649238.1 -5460086 L 648140.7 -5459741 L 647393.4 -5459924 L 646326.9 -5459478 L 646010.4 -5459291 L 645441.3 -5458830 L 645539.9 -5458477 L 645280.3 -5458194 L 643249.2 -5457122 L 642705.3 -5456127 L 642038.2 -5455766 L 641995.7 -5456140 L 640026.8 -5457240 L 640719.1 -5458486 L 640041.6 -5458449 L 639226.5 -5458789 L 638885 -5458635 L 637518.2 -5458068 L 636520.2 -5458534 L 636976.7 -5457948 L 635536.5 -5455823 L 635958.4 -5454839 L 635902.8 -5454469 L 633016.1 -5455370 L 633027.6 -5455681 L 633195.5 -5456237 L 632496.9 -5456111 L 631887.7 -5456908 L 631517.3 -5456811 L 630253.3 -5456017 L 628412.5 -5456285 L 626961 -5455913 L 626902.5 -5456237 L 625837 -5457008 L 625590.1 -5457181 L 625045.4 -5456920 L 624683.1 -5456863 L 623958.8 -5456940 L 623994.3 -5457304 L 622981.1 -5457603 L 622615.7 -5457446 L 621589.5 -5455768 L 619165.5 -5454761 L 617840.8 -5455488 L 617816 -5456262 L 617283.3 -5457292 L 617261.9 -5457679 L 616892.3 -5458716 L 615942.6 -5459255 L 615842.3 -5460348 L 616347.4 -5460904 L 614731.7 -5461648 L 613266.7 -5461532 L 612891.3 -5461417 L 611752.1 -5460368 L 610241.7 -5459981 L 608559.7 -5459896 L 608236.5 -5459887 L 607913.3 -5459878 L 607563.9 -5459758 L 605789.3 -5459307 L 605512.9 -5459145 L 605230.4 -5458947 L 605058.9 -5459294 L 602429.5 -5460455 L 602411.7 -5460581 L 602281.2 -5460938 L 601552.2 -5461133 L 601109 -5461752 L 600049.8 -5463770 L 599959 -5464509 L 599644.7 -5464391 L 599018.1 -5464156 L 598782.8 -5464026 L 598378.1 -5463674 L 598006 -5463719 L 596897.2 -5464747 L 595057.4 -5464734 L 595022.4 -5464729 L 594838.8 -5465051 L 593716.5 -5466968 L 593774.3 -5467395 L 593978.7 -5467610 L 592476.5 -5467843 L 591358.9 -5468943 L 590567.5 -5470716 L 590219.2 -5470627 L 590061.5 -5470857 L 589713.2 -5470759 L 588081.7 -5471425 L 587781.4 -5471274 L 587189.6 -5470958 L 587008.1 -5471287 L 586273 -5472600 L 586446.5 -5472864 L 584696.1 -5472930 L 584333.9 -5472887 L 582936.9 -5473159 L 582608.6 -5473046 L 580896.8 -5472878 L 580579.7 -5472873 L 580261.6 -5472868 L 578739.1 -5472803 L 578273.9 -5472801 L 577937.1 -5472997 L 576022 -5473222 L 576101.6 -5473597 L 575655.5 -5475323 L 575361.5 -5476524 L 575226 -5476816 L 575913.6 -5477613 L 576611.9 -5477685 L 576944.2 -5477800 L 577290.1 -5477662 L 575513.4 -5480447 L 575451.7 -5481187 L 575449.4 -5481560 L 575454 -5481926 L 575399.6 -5482880 L 575384.1 -5483199 L 575346.9 -5484271 L 575374.6 -5484629 L 576478.9 -5484694 L 576762.4 -5486079 L 577772.2 -5485796 L 577837.8 -5486160 L 577855.1 -5488060 L 577262.8 -5488517 L 576127.9 -5488717 L 576013.1 -5489440 L 576678.8 -5489770 L 577894.2 -5491591 L 576868.7 -5492007 L 576686.2 -5493492 L 576971.5 -5494182 L 576689.9 -5494424 L 575741.5 -5494887 L 574564.9 -5496367 L 574180.9 -5497006 L 575063.1 -5497613 L 575316.6 -5499022 L 575690.7 -5499015 L 575913.2 -5498699 L 577424.7 -5498832 L 579205.7 -5498105 L 580244.6 -5498505 L 580624.8 -5498579 L 580725.4 -5499499 L 581264.3 -5500517 L 581331.9 -5503195 L 581341.6 -5503584 L 582802.8 -5503566 L 582795 -5504834 L 583099.3 -5504992 L 583749.9 -5505269 L 584089.1 -5505368 L 585172.1 -5505846 L 585557.3 -5505943 L 585489.7 -5506204 L 586055.9 -5507470 L 585973.5 -5507813 L 586753.6 -5508366 L 586958.1 -5508613 L 588054.9 -5508991 L 588411.2 -5509144 L 588564.9 -5509568 L 588452.5 -5509919 L 588750.9 -5511344 L 589915.7 -5512331 L 589551.5 -5513406 L 588275.7 -5514216 L 587540.3 -5514008 L 587372.8 -5514343 L 586955.7 -5514936 L 587212.2 -5515210 L 588278.9 -5516135 L 588427.5 -5516467 L 587867.7 -5517771 L 587523.9 -5517889 L 588114.8 -5520761 L 588586.7 -5521238 L 588825.1 -5522635 L 589700.3 -5523274 L 589909.8 -5523577 L 589944.4 -5523927 L 589978 -5524276 L 590268 -5528429 L 590319.7 -5528809 L 589646.3 -5528607 L 588968.5 -5528766 L 588723.5 -5529354 L 587894.7 -5529487 L 587571.8 -5530129 L 587772.7 -5532443 L 588368.4 -5533412 L 588542.3 -5534557 L 588614.7 -5534765 L 588775.2 -5535226 L 589622.5 -5535608 L 591849.6 -5535728 L 592552.6 -5536054 L 593459.3 -5536156 L 593770.1 -5536191 L 595090.1 -5535758 L 595449.3 -5535777 L 596217.7 -5534881 L 596735.9 -5534621 L 598902.7 -5534521 L 599284.9 -5534109 L 599874.9 -5533853 L 600585.6 -5534035 L 603214.2 -5533383 L 603596.4 -5532972 L 604522.8 -5533165 L 606213.7 -5533851 L 606567.9 -5533995 L 608360.1 -5534163 L 609459.8 -5535158 L 610184.9 -5536422 L 610680.2 -5536592 L 611546.2 -5536567 L 612393 -5536900 L 612974.4 -5538156 L 613821.3 -5538490 L 615976.7 -5538605 L 616456.7 -5539063 L 617889.8 -5539212 L 618528.8 -5539390 L 618944.5 -5539700 L 620445.7 -5539924 L 620474.9 -5539985 L 620770.4 -5540590 L 620829.8 -5542179 L 621452.6 -5544013 L 621844.3 -5546123 L 621662.3 -5546834 L 620357.5 -5546981 L 620258.9 -5547480 L 620715.9 -5548369 L 620825 -5549023 L 621133.2 -5549576 L 621943.1 -5551028 L 623897.5 -5552213 L 624687.8 -5552256 L 625099.8 -5552638 L 625488.8 -5553452 L 625582.6 -5554393 L 626103.9 -5555430 L 628534.5 -5557145 L 629173.6 -5557323 L 629702.4 -5558216 L 629819.3 -5558727 L 630255.6 -5558883 L 631162.6 -5557862 L 632774.1 -5557372 L 634131.8 -5557588 L 634366.5 -5557241 L 634393.3 -5556738 L 635521 -5555861 L 634717.8 -5555197 L 633657.4 -5554321 L 633790.6 -5553175 L 633647.8 -5551798 L 633954.4 -5551454 L 633928.4 -5550588 L 633648.6 -5550429 L 633088.2 -5551480 L 631870.5 -5551343 L 631765.1 -5550617 L 632083.1 -5550057 L 631822.6 -5549539 L 631860.9 -5548821 L 631611.8 -5548087 L 630613.5 -5547890 L 630818.5 -5546748 L 630606.2 -5546451 L 630550.2 -5546373 L 631745.8 -5545572 L 631776.5 -5544998 L 630408.3 -5543628 L 630050 -5542240 L 630439.9 -5541684 L 630254.9 -5541098 L 630436.9 -5540387 L 630372.5 -5540216 L 629742.2 -5538549 L 628959.5 -5538363 L 628702.7 -5537773 L 628427.6 -5536173 L 629044.5 -5535413 L 629483.4 -5535315 L 631378.2 -5534889 L 632096.7 -5534928 L 632770.1 -5534459 L 633413.8 -5533197 L 633875.4 -5532645 L 634696.4 -5532113 L 634954 -5531334 L 635333.1 -5529625 L 635220 -5529043 L 634426.7 -5527704 L 633618.8 -5525283 L 633518.3 -5525263 L 633119.6 -5525185 L 633063.1 -5524893 L 633446.1 -5523113 L 634399.2 -5522803 L 634380.8 -5521794 L 634952.6 -5520528 L 634899.8 -5520165 L 634283.8 -5519555 L 633796.9 -5517873 L 633524.8 -5517570 L 633619.5 -5517143 L 634493.1 -5516973 L 634749.9 -5517563 L 635037.3 -5517578 L 636372.5 -5516857 L 637243.8 -5516760 L 638240.4 -5516957 L 639934.1 -5517623 L 639979.2 -5518130 L 640814.6 -5518679 L 641408.4 -5518350 L 641756.1 -5518585 L 642330.9 -5518615 L 643204.5 -5518446 L 643734.2 -5517970 L 643942.4 -5517617 L 644684.1 -5516363 L 645728.1 -5515699 L 646983.8 -5515117 L 647566.1 -5515004 L 648273.1 -5515258 L 648583.3 -5514842 L 648833.2 -5514207 L 649627.3 -5514177 L 650402.3 -5514507 L 650924.3 -5514174 L 653266.4 -5510769 L 653123.2 -5509393 L 653357.8 -5509045 L 654216.1 -5509163 L 654378.8 -5508811 L 654673.9 -5508683 L 655131.1 -5509572 L 655562.2 -5509594 L 656046.6 -5508612 L 656139.6 -5507933 L 656164.2 -5507754 L 656058.6 -5507027 L 656357.4 -5506827 L 657283.8 -5507021 L 658448.6 -5506794 L 658796.4 -5507029 L 659299.3 -5507055 L 659624.8 -5506352 L 659991.5 -5506228 L 660630.5 -5506406 L 662006.9 -5506263 L 662963.3 -5507250 L 663697 -5507001 L 664907.4 -5505913 L 666473.2 -5504915 L 667023.4 -5504338 L 667388.6 -5503955 L 668326.8 -5502564 L 667578.3 -5501732 L 666848.8 -5500541 L 666682.7 -5499595 L 667273 -5497970 L 667397.7 -5498337 L 667949.7 -5498798 L 669443.3 -5499166 L 669325.9 -5500024 L 669957.3 -5500346 L 670793.2 -5499525 L 671296.1 -5499552 L 671910.2 -5499300 L 672695.4 -5498978 L 672914.7 -5498795 L 672914.1 -5498794 z " |
id="path661" /> |
<path |
d="M 700936.8 -5400566 L 702303.4 -5399503 L 703031.9 -5398303 L 703347.1 -5398127 L 702824.4 -5397384 L 702738.9 -5397093 L 702104.7 -5394591 L 702319.6 -5394287 L 702232.5 -5393507 L 702031.8 -5393170 L 702476.6 -5391805 L 702662.4 -5391486 L 702822.3 -5391241 L 702977.2 -5390994 L 703339.9 -5390355 L 703235.8 -5389623 L 703186.2 -5389254 L 703341.4 -5389228 L 703635.6 -5389019 L 705499.7 -5390083 L 706194.6 -5389991 L 706502.8 -5389802 L 706141.6 -5388502 L 705566.8 -5387774 L 704048.7 -5387856 L 703670 -5387772 L 702980.8 -5387583 L 702034.9 -5386478 L 700667.2 -5385938 L 700318.5 -5385810 L 700028.9 -5384186 L 700159.6 -5383815 L 700130.3 -5382885 L 700240.1 -5382595 L 700985.2 -5381883 L 701244.3 -5381658 L 702408.9 -5381576 L 703410.6 -5380980 L 703799.2 -5380944 L 704544.7 -5380483 L 704818.9 -5380351 L 704773.3 -5379982 L 704143.9 -5379613 L 703752.4 -5378183 L 703905.9 -5377597 L 704121.8 -5375792 L 704155.3 -5375423 L 703346 -5374581 L 702821.3 -5373126 L 702556.6 -5372922 L 702456.1 -5371902 L 702065.5 -5371867 L 700626.6 -5371284 L 699093.7 -5371571 L 698673.7 -5371993 L 698324.3 -5372090 L 697680.8 -5372420 L 696238.6 -5372338 L 695984.9 -5372079 L 695323.4 -5372374 L 695134.2 -5372406 L 694983.5 -5372061 L 695884.2 -5370874 L 695777.6 -5370512 L 695419.9 -5370397 L 694107.2 -5369779 L 693678.7 -5369140 L 693536.7 -5367789 L 693174.6 -5368824 L 692817.3 -5368949 L 691315.2 -5368909 L 690684.8 -5368491 L 690440.5 -5367775 L 690049 -5367821 L 689691.7 -5367988 L 689781.3 -5368346 L 689236.2 -5368790 L 688908.5 -5368604 L 687316.1 -5367707 L 685914.8 -5367403 L 685551.3 -5365952 L 685866.8 -5365271 L 685507.1 -5365159 L 682584.8 -5366289 L 682451 -5366591 L 682170.9 -5366767 L 681501.6 -5366431 L 680786 -5366666 L 680647.3 -5367016 L 680273.7 -5367680 L 679507.7 -5367698 L 678012.4 -5368882 L 677571.3 -5369938 L 677702 -5371073 L 677514.1 -5371341 L 677323.2 -5371605 L 677086.3 -5371920 L 675555.1 -5371730 L 674953 -5372226 L 674901.9 -5372192 L 674522.6 -5372293 L 673463 -5372785 L 673267.3 -5373119 L 671754 -5375733 L 670979 -5375698 L 670113 -5376435 L 669904.3 -5376132 L 669407 -5375588 L 669153.8 -5375688 L 668913.7 -5375817 L 668778 -5376166 L 667681.8 -5376201 L 664415.4 -5377933 L 663899.1 -5377441 L 663539.9 -5377566 L 663175.6 -5377677 L 663115 -5378021 L 662767.5 -5378628 L 661844.9 -5378945 L 661998 -5379630 L 661669.9 -5379810 L 660175.5 -5380741 L 659583.1 -5381634 L 659239.5 -5381489 L 658648.3 -5381051 L 657999 -5381344 L 657773.1 -5381621 L 657307.3 -5382163 L 657067.4 -5382368 L 656735.2 -5383193 L 656461.2 -5383412 L 656037.5 -5383928 L 656129 -5384911 L 655780.4 -5384775 L 654308.5 -5384555 L 652500 -5384835 L 652366.4 -5385194 L 651643.1 -5386952 L 651395.6 -5388849 L 651035.3 -5388910 L 649729.9 -5386742 L 649406.4 -5386624 L 647744.5 -5386424 L 646976.9 -5387227 L 647520 -5388997 L 646788.1 -5390263 L 646695.4 -5391267 L 646617.8 -5391603 L 646856.4 -5391854 L 647936.7 -5392701 L 647723.9 -5392989 L 647637.4 -5394052 L 647324.4 -5394263 L 646225.7 -5394498 L 646373.9 -5395203 L 647289.7 -5395832 L 647510.3 -5396135 L 646955.6 -5397402 L 647953.1 -5397069 L 648189.7 -5397338 L 647433.8 -5398643 L 647605.1 -5400864 L 646157.8 -5400898 L 645543.8 -5401282 L 645482.2 -5401597 L 645350.6 -5401950 L 643459.4 -5403733 L 643116.5 -5403985 L 642132.3 -5405852 L 641971.7 -5406184 L 641604.4 -5406221 L 641263.3 -5406365 L 640947.8 -5406201 L 639286.1 -5406732 L 638940.9 -5406815 L 638907 -5406895 L 638687.2 -5407186 L 639130 -5408161 L 638678.4 -5408713 L 638551.8 -5409055 L 639374.8 -5409903 L 639565.5 -5410251 L 641596.2 -5411597 L 641925.7 -5411727 L 642045 -5412575 L 641390.9 -5412883 L 640968.4 -5414191 L 640145.7 -5414899 L 640199.3 -5415264 L 640657.6 -5415893 L 640914 -5417421 L 640657.2 -5417712 L 640172.3 -5418035 L 640328.8 -5418279 L 640411.4 -5418656 L 641495.9 -5419736 L 641768.7 -5420794 L 642727.9 -5421725 L 643056.3 -5421801 L 643297.1 -5421487 L 644472.3 -5421610 L 646183.2 -5422563 L 647349.2 -5422561 L 647483.3 -5423205 L 647419.7 -5423545 L 648397.7 -5424305 L 648628.2 -5424548 L 649073.8 -5426759 L 648489 -5427245 L 646315.8 -5427717 L 645950.3 -5427603 L 646936.9 -5428814 L 648493.6 -5429063 L 648547.6 -5429762 L 648792.9 -5431912 L 648760.2 -5432132 L 648579.5 -5432480 L 646879.4 -5433429 L 643747.4 -5431828 L 643652.4 -5431874 L 643850 -5432194 L 646131.2 -5435171 L 646500 -5436218 L 646346.8 -5436859 L 645757 -5439425 L 645830.6 -5439800 L 645687.8 -5441377 L 645043.3 -5442818 L 644797.6 -5443131 L 644489 -5443566 L 644329.2 -5443779 L 644186.4 -5444019 L 644049.6 -5444261 L 643305.9 -5446280 L 643246.4 -5446636 L 642463.9 -5448140 L 642350.3 -5448462 L 641495.7 -5449857 L 641539.2 -5450188 L 642366 -5451021 L 644140.5 -5451774 L 644997.3 -5452570 L 645084.9 -5452953 L 644866.1 -5453241 L 644020.4 -5453916 L 643865.8 -5454248 L 643486.5 -5455656 L 642037.6 -5455766 L 642704.7 -5456127 L 643248.6 -5457122 L 645279.7 -5458194 L 645539.3 -5458477 L 645440.7 -5458830 L 646009.8 -5459291 L 646326.3 -5459478 L 647392.8 -5459925 L 648140.1 -5459741 L 649237.5 -5460086 L 649104.9 -5461117 L 649511 -5461640 L 649793.5 -5461843 L 649581.9 -5462241 L 649203.7 -5462324 L 648488.5 -5462581 L 647660.7 -5463835 L 648173.4 -5464741 L 647733.2 -5465587 L 647510.4 -5465815 L 647428.3 -5466515 L 647317.7 -5466874 L 649340.1 -5469575 L 649196 -5470311 L 649627.2 -5470925 L 651351.4 -5470851 L 651697.5 -5470771 L 652538.9 -5472000 L 652426.3 -5472363 L 652769.5 -5473039 L 651246.6 -5474644 L 652708.3 -5475799 L 653073.7 -5475902 L 653472.8 -5476481 L 652935 -5476920 L 652808.4 -5477253 L 652389.1 -5478701 L 652996.9 -5480430 L 652479.1 -5480852 L 652315.2 -5480968 L 651965.8 -5480863 L 651005.6 -5481944 L 650999.1 -5482326 L 651091.2 -5483079 L 650739.8 -5483714 L 650349.6 -5483740 L 649254 -5485322 L 649236.5 -5485711 L 649424.1 -5486022 L 650497.1 -5486192 L 651019.8 -5487137 L 651053.3 -5487497 L 651365.6 -5487590 L 651899 -5488998 L 651364.3 -5489468 L 651410.9 -5490591 L 651712.6 -5491676 L 652303.8 -5491504 L 652610.9 -5491424 L 652870.8 -5491920 L 652951.2 -5492189 L 652429.9 -5494385 L 652991.7 -5495393 L 653325.2 -5495597 L 655209 -5495261 L 655745 -5494268 L 655772.5 -5493881 L 656328.8 -5493113 L 656307.4 -5492793 L 656949.4 -5492474 L 657594.4 -5492881 L 658255.3 -5493181 L 658942.5 -5492963 L 659303.9 -5493039 L 660216.3 -5493606 L 661732.4 -5492834 L 661735.9 -5492453 L 662652 -5491965 L 662990.1 -5491876 L 663572.7 -5490520 L 663827.5 -5490246 L 664482.5 -5490570 L 664857.7 -5490536 L 665361.4 -5491469 L 667015.6 -5492114 L 667326.1 -5492291 L 667055.4 -5492678 L 667342 -5492940 L 669259.9 -5496227 L 669828.7 -5495745 L 670543.3 -5495788 L 670824.8 -5496037 L 671585.5 -5496073 L 672131.5 -5496475 L 672189.5 -5497220 L 672241 -5497598 L 672786.9 -5498715 L 672913.5 -5498795 L 675859.7 -5496336 L 675750.1 -5495682 L 676518.2 -5493418 L 677611.1 -5493187 L 676836.2 -5491489 L 677951.8 -5490828 L 678643.8 -5490000 L 678713.2 -5489420 L 678098.1 -5489031 L 677450.8 -5488285 L 676871.9 -5488179 L 676454.2 -5487903 L 678413.1 -5486884 L 678634 -5486056 L 679414.6 -5485281 L 679465.4 -5485649 L 679663.1 -5485596 L 679910.1 -5485401 L 679516.5 -5484429 L 679314.9 -5484142 L 678940.6 -5484198 L 678582.1 -5484074 L 678914.2 -5483914 L 678663.6 -5482850 L 678894.7 -5481946 L 679196.8 -5481802 L 678831.6 -5481147 L 678958.9 -5480509 L 680052.7 -5480340 L 680268.6 -5480039 L 679988 -5479770 L 679862.4 -5478619 L 679314.2 -5478080 L 681005.1 -5477492 L 681282.7 -5477738 L 681915.9 -5477438 L 681032.9 -5475806 L 679956.4 -5475459 L 679415.6 -5475995 L 678006.5 -5475487 L 677645 -5475364 L 677619.9 -5475354 L 678810.1 -5474603 L 679517.8 -5474629 L 679773.4 -5474104 L 679634.8 -5473772 L 680174.4 -5473046 L 680463.8 -5473145 L 681271.3 -5474404 L 681411.3 -5475860 L 683740.8 -5475970 L 685249.9 -5477186 L 686011.9 -5477326 L 686392.4 -5477419 L 686505.9 -5477699 L 687558.6 -5477326 L 688572.3 -5477847 L 689171.4 -5477403 L 689205.9 -5477785 L 689906.9 -5477927 L 689828.8 -5478685 L 690824.6 -5479263 L 691064.2 -5479563 L 694276.3 -5477580 L 694668.1 -5477091 L 695376 -5477180 L 695416.7 -5476104 L 695447.3 -5475746 L 695570.7 -5475201 L 695125.7 -5474801 L 696420.3 -5474080 L 696651.2 -5473783 L 697184.8 -5472151 L 697049.8 -5471502 L 698107 -5471398 L 698465.3 -5471288 L 698921.1 -5470705 L 698971.3 -5469974 L 699086 -5469620 L 698956.9 -5468838 L 697801.2 -5467820 L 698685.7 -5465724 L 699936.1 -5465653 L 700240.8 -5465884 L 700487.5 -5466177 L 700701.9 -5466291 L 700919 -5466182 L 700995.7 -5465856 L 701365.6 -5464580 L 701272 -5464207 L 700904.2 -5462323 L 698305.5 -5461138 L 698361.1 -5460762 L 698629.1 -5459694 L 698111.2 -5458679 L 698438.2 -5458366 L 699363.7 -5457027 L 699606.7 -5456778 L 699103.5 -5456317 L 698762.9 -5456176 L 698150 -5455287 L 698686.5 -5453592 L 698454.9 -5453313 L 698989 -5452872 L 700063.8 -5453248 L 700441.4 -5453299 L 700941.4 -5453588 L 701212.8 -5453652 L 701567.7 -5453223 L 701191.9 -5452126 L 700289 -5449176 L 700516.4 -5448459 L 701239 -5448173 L 701298.6 -5447788 L 701059.4 -5447082 L 701920.3 -5446861 L 702224.7 -5446835 L 700991 -5445947 L 700571.2 -5444923 L 701102.7 -5443950 L 702111.1 -5443163 L 702409.3 -5443013 L 702830.4 -5443441 L 702737.6 -5443724 L 704595.3 -5443863 L 704961.7 -5443773 L 705330.2 -5443781 L 705698.7 -5443767 L 706176.3 -5441300 L 705901.6 -5441033 L 705277.7 -5440165 L 705126.1 -5439827 L 704985.6 -5438799 L 705010.2 -5438455 L 706857 -5438643 L 707202.7 -5438824 L 707429.2 -5437398 L 708398.2 -5436357 L 708576.1 -5436029 L 706889.3 -5434867 L 706880.8 -5434518 L 705882.7 -5432386 L 705826.2 -5432035 L 706060.9 -5432337 L 706367.7 -5431831 L 705065.5 -5429973 L 705200.3 -5429619 L 705837.8 -5429285 L 706197.2 -5429251 L 707135 -5428835 L 708567 -5427226 L 708549.1 -5426518 L 708464.6 -5426172 L 708108.1 -5426201 L 707328.8 -5425262 L 706299 -5425055 L 705971.7 -5425169 L 704990.6 -5425437 L 703389.3 -5423028 L 701590.2 -5422514 L 701253.9 -5421851 L 701484.1 -5421738 L 701711.3 -5421622 L 701981.7 -5421625 L 702023.3 -5421290 L 703017.6 -5419677 L 704362.5 -5418922 L 704296 -5417843 L 703985.3 -5417662 L 703631.7 -5417589 L 703346.1 -5417422 L 702746 -5417208 L 702997.9 -5416103 L 703104.6 -5415732 L 703280.6 -5415535 L 703536.9 -5415468 L 703817.5 -5413341 L 704073.5 -5413075 L 703514 -5410240 L 702840.9 -5409392 L 702501.2 -5409226 L 702605.6 -5408632 L 702837.7 -5408423 L 703688.6 -5408987 L 703997.2 -5409131 L 703911.1 -5408401 L 703884.6 -5408034 L 703131.3 -5407894 L 701273.1 -5405960 L 701053.4 -5404867 L 701556.4 -5404296 L 700806.3 -5403492 L 699822.6 -5403238 L 699462.5 -5402826 L 700274.7 -5402125 L 699872.4 -5401539 L 700613.6 -5400868 L 700862.7 -5400646 L 700936.7 -5400566 L 700936.8 -5400566 z M 675838.6 -5484425 L 677709 -5484172 L 677999.9 -5483915 L 678038.4 -5484286 L 678681.4 -5484599 L 676942.1 -5486402 L 676394.7 -5484968 L 675838.5 -5484425 L 675838.6 -5484425 z " |
id="path662" /> |
<path |
d="M 801136.2 -5384164 L 800851.2 -5383966 L 800171 -5382765 L 800423.4 -5382579 L 801082.4 -5381928 L 801221.5 -5381731 L 801363.6 -5381535 L 801556.5 -5381867 L 803048.8 -5382177 L 804504.2 -5381802 L 801953.8 -5381272 L 801618.7 -5381083 L 801230.5 -5380937 L 799771.5 -5379945 L 799452.4 -5379771 L 799246.5 -5379507 L 797638.8 -5379051 L 796120.4 -5377829 L 794583.2 -5377564 L 794250.1 -5377357 L 793956.1 -5377150 L 793098.1 -5376520 L 790642.9 -5373193 L 790023.9 -5372799 L 789768.7 -5372359 L 789541.8 -5372054 L 787943.9 -5370449 L 787231.8 -5370184 L 786255.1 -5370731 L 785793.7 -5372159 L 785102.6 -5371855 L 784981.9 -5371502 L 784717.4 -5370803 L 783168.4 -5369811 L 783083.8 -5369462 L 782337.6 -5367488 L 781011.3 -5368197 L 780164.5 -5367499 L 780115.2 -5368142 L 779736.3 -5368163 L 779373.3 -5368045 L 778661.6 -5368039 L 778179.7 -5369062 L 776657.2 -5369095 L 776586.5 -5369468 L 776265 -5369636 L 775550.2 -5369502 L 774639.8 -5370042 L 773621.2 -5369043 L 773280.6 -5369202 L 772627.6 -5369568 L 772398.9 -5370274 L 772160 -5369956 L 771924.7 -5370141 L 771388.8 -5370404 L 770634.1 -5370375 L 769552.9 -5370602 L 769711.7 -5370950 L 769464.5 -5372047 L 768822.2 -5372975 L 768942.9 -5374115 L 768646.6 -5375215 L 768302 -5375369 L 767552.3 -5375378 L 766603.5 -5374756 L 765860.8 -5374693 L 765765.3 -5374432 L 765658.7 -5374176 L 765298.8 -5374036 L 764752 -5373537 L 763873.5 -5371403 L 765096.3 -5369127 L 764724.2 -5368921 L 762134.2 -5370146 L 761834.6 -5370168 L 761362 -5370537 L 761061.1 -5370306 L 760188.4 -5369600 L 759871.4 -5369368 L 759028.6 -5368553 L 758645.9 -5368577 L 757923.5 -5368693 L 757607.7 -5368533 L 756797.1 -5367855 L 756465.6 -5367976 L 755687.9 -5368675 L 755060.2 -5368356 L 754716.3 -5368187 L 753344.7 -5367594 L 752526.9 -5365900 L 751807.3 -5365750 L 751627.4 -5366087 L 751278.6 -5365997 L 750658 -5365687 L 750412.8 -5365950 L 750375.4 -5366494 L 750827.1 -5367067 L 749781 -5367844 L 748823.5 -5367353 L 748737.3 -5367304 L 748492.4 -5367006 L 748126.5 -5366881 L 746830 -5366903 L 746446.2 -5366916 L 744697.7 -5367628 L 744267.2 -5369454 L 743804 -5370005 L 742912.6 -5369495 L 742519 -5368882 L 741828 -5369080 L 741184.9 -5366863 L 740839.2 -5366848 L 739880 -5366547 L 739218.7 -5365748 L 739112.9 -5366089 L 738359.5 -5366107 L 736867.5 -5365900 L 736756.1 -5365747 L 735147 -5365632 L 735162.4 -5365960 L 735417.1 -5366905 L 735128.8 -5367061 L 735012.2 -5366722 L 733983 -5366495 L 732952.4 -5366728 L 732806.1 -5366674 L 733282.2 -5363783 L 733030.4 -5363504 L 731908.9 -5361619 L 731583.6 -5361821 L 731324.5 -5362104 L 730785.6 -5360591 L 730431.1 -5360694 L 729704 -5360818 L 729015.8 -5361632 L 729347.6 -5361757 L 728750 -5363667 L 728469.7 -5363782 L 727684.8 -5363357 L 727476 -5363089 L 727983.9 -5361567 L 727646.1 -5361388 L 727382.3 -5361112 L 727008.6 -5361062 L 726631 -5361080 L 726403.9 -5361321 L 725566.9 -5361689 L 725549.4 -5361318 L 724505.4 -5361137 L 723942.8 -5360656 L 723578.8 -5361149 L 723207.1 -5361078 L 722458.7 -5360990 L 721580.3 -5360290 L 721229.8 -5360337 L 720826.4 -5359773 L 720162.5 -5359951 L 719511.1 -5359725 L 719170.7 -5359818 L 718788.8 -5360410 L 718681 -5360729 L 718823.4 -5361612 L 718485.8 -5361542 L 718514.7 -5362197 L 717913.1 -5362525 L 718629 -5363837 L 718403 -5364128 L 718195.6 -5364835 L 717995.5 -5365022 L 717551.1 -5365281 L 716584.5 -5364460 L 716377.5 -5364714 L 716022.6 -5365260 L 715830.7 -5365593 L 715232.8 -5365640 L 715228.3 -5367591 L 716232.3 -5367876 L 716693.5 -5368938 L 716349.1 -5369076 L 714220.6 -5369066 L 714984.7 -5368210 L 714249.6 -5366015 L 712879.5 -5365355 L 712263 -5365679 L 711888.5 -5365758 L 711165.7 -5365998 L 711225.2 -5366274 L 711431.2 -5366801 L 713049.3 -5368736 L 713180 -5369076 L 713267.4 -5369245 L 714117.4 -5370469 L 713312.2 -5371280 L 713391.3 -5372758 L 714499.1 -5374298 L 714252.8 -5374369 L 714081.8 -5374561 L 714269.5 -5374909 L 714570 -5375640 L 714212.3 -5375518 L 712393.8 -5375836 L 711577.5 -5376552 L 711296.4 -5376796 L 709494.3 -5376542 L 709408.6 -5376083 L 709070 -5376010 L 708535.6 -5375570 L 707522.3 -5375746 L 707419.7 -5375389 L 706180.8 -5374623 L 705824.4 -5373974 L 705567.4 -5374257 L 705187.9 -5374314 L 704894.8 -5374557 L 704155.8 -5375423 L 704122.3 -5375791 L 703906.4 -5377596 L 703752.9 -5378182 L 704144.4 -5379613 L 704773.8 -5379982 L 704819.4 -5380351 L 704545.2 -5380482 L 703799.7 -5380944 L 703411.1 -5380980 L 702409.4 -5381576 L 701244.8 -5381657 L 700985.7 -5381883 L 700240.6 -5382595 L 700130.8 -5382885 L 700160.1 -5383815 L 700029.4 -5384185 L 700319 -5385810 L 700667.7 -5385938 L 702035.4 -5386477 L 702981.3 -5387582 L 703670.5 -5387772 L 704049.2 -5387855 L 705567.3 -5387774 L 706142.1 -5388502 L 706503.3 -5389802 L 706195.1 -5389990 L 705500.2 -5390082 L 703636.1 -5389018 L 703341.9 -5389228 L 703186.7 -5389254 L 703236.3 -5389623 L 703340.4 -5390355 L 702977.7 -5390994 L 702822.8 -5391241 L 702662.9 -5391486 L 702477.1 -5391805 L 702032.3 -5393170 L 702233 -5393507 L 702320.1 -5394286 L 702105.2 -5394591 L 702739.4 -5397093 L 702824.9 -5397384 L 703347.6 -5398126 L 703032.4 -5398303 L 702303.9 -5399502 L 700937.3 -5400566 L 700863.3 -5400646 L 700614.2 -5400868 L 699873 -5401539 L 700275.3 -5402125 L 699463.1 -5402826 L 699823.2 -5403238 L 700806.9 -5403492 L 701557 -5404296 L 701054 -5404867 L 701273.7 -5405960 L 703131.9 -5407894 L 703885.2 -5408034 L 703911.7 -5408401 L 703997.8 -5409131 L 703689.2 -5408987 L 702838.3 -5408423 L 702606.2 -5408632 L 702501.8 -5409225 L 702841.5 -5409391 L 703514.6 -5410240 L 704074.1 -5413075 L 703818.1 -5413340 L 703537.5 -5415468 L 703281.2 -5415534 L 703105.2 -5415732 L 702998.5 -5416102 L 702746.6 -5417208 L 703346.7 -5417422 L 703632.3 -5417589 L 703985.9 -5417661 L 704296.6 -5417843 L 704363.1 -5418922 L 703018.2 -5419677 L 702023.9 -5421289 L 701982.3 -5421625 L 701711.9 -5421622 L 701484.7 -5421738 L 701254.5 -5421851 L 701590.8 -5422514 L 703389.9 -5423028 L 704991.2 -5425437 L 705972.3 -5425169 L 706299.6 -5425055 L 707329.4 -5425262 L 708108.7 -5426201 L 708465.2 -5426172 L 708549.7 -5426518 L 708567.6 -5427226 L 707135.6 -5428835 L 706197.8 -5429251 L 705838.4 -5429285 L 705200.9 -5429619 L 705066.1 -5429973 L 706368.3 -5431831 L 706061.5 -5432337 L 705826.8 -5432035 L 705883.3 -5432386 L 706881.4 -5434518 L 706889.9 -5434867 L 708576.7 -5436029 L 708398.8 -5436357 L 707429.8 -5437398 L 707203.3 -5438824 L 706857.6 -5438643 L 705010.8 -5438455 L 704986.2 -5438799 L 705126.7 -5439827 L 705278.3 -5440165 L 705902.2 -5441033 L 706176.9 -5441300 L 705699.3 -5443767 L 705330.8 -5443781 L 704962.3 -5443773 L 704595.9 -5443863 L 702738.2 -5443724 L 702831 -5443441 L 702409.9 -5443013 L 702111.7 -5443163 L 701103.3 -5443949 L 700571.8 -5444923 L 700991.6 -5445947 L 702225.3 -5446835 L 701920.9 -5446861 L 701060 -5447082 L 701299.2 -5447788 L 701239.6 -5448173 L 700517 -5448459 L 700289.6 -5449175 L 701192.5 -5452126 L 701568.3 -5453223 L 701213.4 -5453651 L 700942 -5453588 L 700442 -5453299 L 700064.4 -5453248 L 698989.6 -5452872 L 698455.5 -5453313 L 698687.1 -5453592 L 698150.6 -5455287 L 698763.5 -5456176 L 699104.1 -5456317 L 699607.3 -5456778 L 699364.3 -5457027 L 698438.8 -5458366 L 698111.8 -5458679 L 698629.7 -5459694 L 698361.7 -5460762 L 698306.1 -5461138 L 700904.8 -5462323 L 701272.6 -5464207 L 701366.2 -5464580 L 700996.3 -5465855 L 700919.6 -5466182 L 700702.5 -5466290 L 700488.1 -5466176 L 700241.4 -5465883 L 699936.7 -5465653 L 698686.3 -5465724 L 697801.8 -5467820 L 698957.5 -5468838 L 699086.6 -5469620 L 698971.9 -5469974 L 698921.7 -5470705 L 698465.9 -5471288 L 698107.6 -5471398 L 697050.4 -5471502 L 697185.4 -5472151 L 696651.8 -5473783 L 696420.9 -5474080 L 695126.3 -5474801 L 695571.3 -5475200 L 695447.9 -5475746 L 695417.3 -5476103 L 695376.6 -5477180 L 694668.7 -5477091 L 694276.9 -5477580 L 691064.8 -5479563 L 690825.2 -5479263 L 689829.4 -5478685 L 689907.5 -5477927 L 689206.5 -5477784 L 689172 -5477403 L 688572.9 -5477847 L 687559.2 -5477326 L 686506.5 -5477699 L 686393 -5477419 L 686012.5 -5477326 L 685250.5 -5477186 L 683741.4 -5475969 L 681411.9 -5475860 L 681271.9 -5474404 L 680464.4 -5473145 L 680175 -5473046 L 679635.4 -5473772 L 679774 -5474104 L 679518.4 -5474629 L 678810.7 -5474603 L 677620.5 -5475354 L 677645.6 -5475364 L 678007.1 -5475487 L 679416.2 -5475995 L 679957 -5475459 L 681033.5 -5475806 L 681916.5 -5477438 L 681283.3 -5477738 L 681005.7 -5477492 L 679314.8 -5478080 L 679863 -5478619 L 679988.6 -5479770 L 680269.2 -5480039 L 680053.3 -5480340 L 678959.5 -5480509 L 678832.2 -5481147 L 679197.4 -5481802 L 678895.3 -5481946 L 678664.2 -5482850 L 678914.8 -5483914 L 678582.7 -5484074 L 678941.2 -5484198 L 679315.5 -5484142 L 679517.1 -5484429 L 679910.7 -5485401 L 679663.7 -5485596 L 679466 -5485649 L 679560.5 -5486333 L 680055.7 -5487071 L 681684.4 -5487028 L 682753 -5487491 L 683843.1 -5488030 L 684735 -5489451 L 685288.7 -5489556 L 686130.3 -5489498 L 687878.5 -5488621 L 688170.5 -5488382 L 688631.3 -5487337 L 689302.2 -5487142 L 689590 -5487836 L 689776.4 -5488287 L 689451.7 -5489644 L 689746.9 -5490321 L 690478.3 -5490919 L 690658.7 -5491361 L 691667.6 -5491998 L 692157.1 -5491975 L 693745.4 -5491915 L 695595.7 -5491234 L 697097.7 -5491185 L 697196.8 -5491724 L 697861.1 -5491657 L 698084.9 -5491261 L 698550.4 -5491107 L 699150.8 -5491291 L 699152.4 -5491749 L 699411.5 -5492144 L 699321.2 -5492903 L 699663.2 -5493659 L 700514.6 -5493906 L 701541.3 -5493221 L 702055.9 -5492611 L 702592.1 -5492563 L 702988.5 -5492761 L 703737.7 -5492036 L 703719.6 -5491325 L 704014.6 -5491197 L 704445.8 -5491220 L 704963.9 -5491643 L 705355.3 -5491736 L 705677 -5491398 L 705453.7 -5490801 L 705626.8 -5490403 L 705347.7 -5489905 L 705390.2 -5489576 L 705772.7 -5489061 L 706295.5 -5488783 L 706497.9 -5488310 L 707058.8 -5487295 L 707842.8 -5486878 L 708925 -5487086 L 709290.3 -5486901 L 709633.3 -5486951 L 709696.3 -5486791 L 710111.2 -5485408 L 710021.7 -5485050 L 710562.8 -5485448 L 711175.3 -5485199 L 711502.8 -5485272 L 712059.8 -5485539 L 712367.3 -5485607 L 712829 -5484840 L 713139.3 -5484752 L 712776.1 -5484107 L 713389.5 -5481991 L 712607.7 -5481306 L 713387.1 -5479919 L 713508.8 -5479539 L 713188.1 -5479347 L 712507.9 -5479070 L 711919 -5478122 L 711656.5 -5477154 L 711388.9 -5476924 L 711682.1 -5476760 L 711986.3 -5476618 L 712708.9 -5476301 L 713180.9 -5474037 L 712466.9 -5473133 L 713108.3 -5472755 L 713696 -5471809 L 714420.2 -5471983 L 714791.6 -5471949 L 715394.5 -5470308 L 716114.4 -5470191 L 716477.9 -5470154 L 716104.3 -5470095 L 715347.3 -5470110 L 713951.8 -5469549 L 713959.4 -5469178 L 714443.9 -5468208 L 715974.8 -5467209 L 717137.7 -5465769 L 717338.3 -5466035 L 717967.1 -5466809 L 718560.4 -5466330 L 718494.6 -5464033 L 718412.1 -5463660 L 718367.7 -5462523 L 719064.4 -5462210 L 718925.9 -5461979 L 719090.6 -5461501 L 718979.5 -5460758 L 720563.7 -5459778 L 720540.5 -5457917 L 720751.8 -5457900 L 719613.6 -5456609 L 719253 -5456586 L 718573.6 -5455356 L 718864.8 -5455146 L 718286.7 -5454958 L 717703.1 -5455173 L 717477.4 -5454918 L 717634.8 -5454261 L 717117.1 -5453510 L 717180 -5453305 L 717392.5 -5452665 L 717625.5 -5452416 L 719082.4 -5452237 L 720025.4 -5451071 L 721050.4 -5450622 L 720826.7 -5450328 L 720194.3 -5449973 L 719629.4 -5449032 L 719308.9 -5448981 L 718794.4 -5449230 L 718125.2 -5449059 L 718438.9 -5448436 L 717578.9 -5447873 L 717747.8 -5447567 L 717887.6 -5447218 L 718477.9 -5446751 L 718255.8 -5446073 L 719143.7 -5444878 L 719361.7 -5444601 L 719208.1 -5444248 L 718564.7 -5443900 L 717023.4 -5443878 L 716659.9 -5443877 L 715205.8 -5443871 L 714019.1 -5443862 L 713780.5 -5442796 L 713648.4 -5442047 L 714863.6 -5440720 L 714382.2 -5440142 L 714430.8 -5439764 L 714561.6 -5439414 L 715568.6 -5439009 L 715680.3 -5438654 L 716015.2 -5437373 L 716182.1 -5437085 L 716853 -5437014 L 717278 -5436482 L 717909.2 -5436709 L 718224.5 -5436572 L 718720 -5436343 L 718940.1 -5436160 L 719438.5 -5435857 L 719721.8 -5435784 L 719982.4 -5435951 L 720237 -5436128 L 720790.1 -5434729 L 721639.4 -5433922 L 722396.3 -5433721 L 722720 -5433069 L 722619.9 -5432286 L 722718.3 -5430862 L 722009.6 -5430356 L 722572.9 -5429899 L 722738.8 -5429574 L 724052.1 -5429780 L 724286.8 -5430028 L 724959.6 -5429833 L 724780.5 -5429126 L 725261.6 -5428596 L 725412.4 -5428264 L 725575.4 -5428083 L 726536.7 -5428660 L 726890.4 -5428780 L 727970 -5428644 L 728787.9 -5427438 L 728703.8 -5426695 L 729073.4 -5426703 L 728885.8 -5425644 L 730119 -5424934 L 730486.6 -5424896 L 730717.1 -5424988 L 730712.9 -5425651 L 731532.9 -5426174 L 731821.2 -5426002 L 732196.9 -5426031 L 732569.8 -5425388 L 734446.2 -5425565 L 734816.9 -5425643 L 734799.1 -5425853 L 735895.9 -5425747 L 736263.4 -5424771 L 736979.5 -5424644 L 737161.4 -5424323 L 737909.7 -5424349 L 738682 -5425142 L 738990.8 -5425354 L 739310.3 -5425285 L 739628 -5425358 L 740077.1 -5424784 L 740582.1 -5424855 L 740867.5 -5424785 L 740916.5 -5423845 L 740963.2 -5423526 L 742313.1 -5423938 L 742612.9 -5424125 L 742630.7 -5423090 L 743644 -5422661 L 743885.1 -5422380 L 743802.8 -5421382 L 743460 -5421223 L 742767.4 -5420924 L 741775.3 -5419799 L 742606.3 -5419367 L 742591.9 -5419042 L 742813 -5418764 L 742805.8 -5417733 L 741853.4 -5418026 L 742023.2 -5416793 L 742111 -5416485 L 741745.2 -5416389 L 741049.6 -5416096 L 741262.2 -5415465 L 742731.6 -5414427 L 743367.2 -5414805 L 744383 -5414714 L 744742.5 -5414608 L 745102.1 -5414499 L 744574 -5413613 L 743554.5 -5413973 L 742312.5 -5413352 L 742582.7 -5413158 L 742890.1 -5413032 L 744551.5 -5413340 L 744728.5 -5413034 L 744932.9 -5412207 L 745182.1 -5412006 L 746231.4 -5412239 L 746509.7 -5412013 L 745813.4 -5411245 L 746395.4 -5410314 L 746454 -5409951 L 746739.9 -5408584 L 747322.5 -5408976 L 747622.3 -5409187 L 748598.7 -5408790 L 748955.4 -5408788 L 749433.5 -5408161 L 751859.1 -5409703 L 752179 -5409876 L 752876.3 -5409005 L 753562.4 -5408824 L 753825.6 -5407741 L 753796.1 -5407369 L 754104.7 -5407380 L 754360.4 -5407553 L 756141.9 -5407470 L 756507.5 -5407387 L 757853.9 -5406271 L 757780 -5405615 L 758129.8 -5405669 L 758703.6 -5406129 L 759806.5 -5405829 L 760123.4 -5406044 L 760505.5 -5406324 L 760769.1 -5406432 L 761833.6 -5406647 L 762063.2 -5405914 L 763573.3 -5404176 L 763960.1 -5404118 L 764691.9 -5402627 L 764740.6 -5402288 L 766048.4 -5402241 L 766979.9 -5401879 L 767648.4 -5401026 L 768007.1 -5400968 L 769109.2 -5401610 L 769400.7 -5401439 L 770442.2 -5399903 L 770175.9 -5399292 L 770224.2 -5397806 L 769934.3 -5397568 L 770140.3 -5397167 L 771525.4 -5398878 L 771983.2 -5397899 L 772720.8 -5397853 L 773051.3 -5397672 L 774179.4 -5397304 L 774366.5 -5397044 L 775270 -5397440 L 776292.4 -5397449 L 776480.2 -5397754 L 776834 -5397748 L 776920.7 -5396468 L 777122.8 -5396179 L 777222.6 -5395813 L 778213.1 -5396015 L 778173.6 -5395681 L 777993.9 -5395386 L 778451.6 -5395048 L 778648.8 -5394841 L 780926.8 -5395409 L 782468.1 -5395137 L 782858.2 -5394460 L 783129.2 -5393923 L 783157.9 -5393618 L 783563.1 -5392984 L 784285.5 -5392698 L 786907.5 -5393280 L 787500.5 -5392930 L 787828.1 -5392753 L 788697.8 -5393295 L 788763.8 -5393989 L 789220.5 -5394478 L 789559.4 -5394588 L 790574.7 -5392687 L 790388.8 -5392352 L 791709.5 -5391826 L 792054.2 -5391731 L 793942.5 -5392203 L 794221.9 -5391929 L 794362.3 -5391983 L 795499.5 -5392256 L 796015.8 -5391421 L 794612.8 -5390210 L 796440.9 -5388864 L 797175.7 -5388827 L 797556.7 -5388868 L 798430.6 -5386897 L 799407.8 -5385744 L 801339.7 -5384760 L 799846.5 -5384508 L 799485.4 -5384385 L 800794.6 -5384236 L 801136.4 -5384163 L 801136.2 -5384164 z M 675838.6 -5484425 L 676394.8 -5484968 L 676942.2 -5486402 L 678681.5 -5484599 L 678038.5 -5484286 L 678000 -5483915 L 677709.1 -5484172 L 675838.7 -5484425 L 675838.6 -5484425 z " |
id="path663" /> |
<path |
d="M 712367.1 -5485608 L 712059.6 -5485539 L 711502.6 -5485273 L 711175.1 -5485199 L 710562.6 -5485448 L 710021.5 -5485050 L 710111 -5485408 L 709696.1 -5486791 L 709633.1 -5486951 L 709845.1 -5486981 L 711171.4 -5487380 L 711638.2 -5487201 L 712913.5 -5487114 L 714321.7 -5486423 L 715290.2 -5486371 L 715208.8 -5485219 L 715077.9 -5484578 L 715707.9 -5483210 L 716046.6 -5483050 L 716350.4 -5482582 L 716915.9 -5482458 L 717136.1 -5482622 L 717549.5 -5482491 L 717928.1 -5482052 L 718512.4 -5482057 L 719463.8 -5482335 L 720205.1 -5481762 L 720774.6 -5481562 L 720888.7 -5482306 L 721373.8 -5483248 L 721738.3 -5483572 L 723436.6 -5483659 L 724199.7 -5483648 L 725277.9 -5483932 L 726343 -5484471 L 726718.9 -5487036 L 727337.7 -5486864 L 728016 -5486033 L 728543.6 -5486646 L 729140.2 -5486906 L 728588.7 -5487743 L 728901.2 -5488090 L 729970.3 -5488552 L 732172.7 -5488232 L 732599.8 -5488331 L 733534.3 -5488939 L 734135.4 -5488921 L 734476.2 -5488911 L 735096.9 -5489198 L 735557.2 -5489145 L 736418.6 -5488705 L 736533.1 -5488456 L 737731.2 -5488391 L 737690.5 -5487701 L 737920.8 -5487179 L 738543.1 -5486447 L 739040.9 -5486651 L 739337.7 -5485826 L 740919.9 -5485703 L 741174.3 -5485207 L 741763.5 -5484626 L 743097.5 -5484390 L 743550.7 -5483980 L 744529.2 -5483941 L 745403.2 -5484533 L 746093 -5484467 L 746716.3 -5484703 L 747962.2 -5485683 L 748465.3 -5485785 L 749652 -5484955 L 750875 -5484406 L 751872.9 -5484279 L 752775.4 -5483536 L 753930.7 -5483316 L 755423.6 -5481967 L 756723.3 -5481810 L 756907.2 -5481788 L 757815.6 -5480434 L 757358.7 -5479927 L 757118.2 -5479660 L 756969.6 -5479092 L 757039.5 -5478643 L 757083.5 -5478360 L 757739.4 -5477961 L 758812.3 -5476870 L 759175.1 -5476736 L 759958.5 -5476827 L 760329.1 -5476540 L 760532.6 -5476042 L 760461.2 -5475452 L 761423.5 -5474534 L 761541.8 -5474209 L 761320.9 -5473562 L 760782.1 -5472668 L 759930.4 -5473414 L 759373.9 -5473360 L 759299.3 -5472338 L 759494.4 -5471508 L 760933.1 -5470716 L 761223.1 -5470018 L 760928.8 -5469315 L 761020.4 -5469015 L 762726.3 -5467473 L 763786.6 -5467120 L 765045.2 -5466369 L 765940.4 -5465269 L 766839.5 -5465086 L 766959.7 -5464227 L 766604.2 -5462732 L 766806.4 -5462259 L 768127.3 -5462275 L 768401.7 -5461882 L 768406.3 -5461678 L 768421.9 -5460992 L 768314 -5460121 L 768821 -5458161 L 769112.9 -5457921 L 769673.2 -5457899 L 770553.5 -5458580 L 771032.6 -5458656 L 771309.4 -5458212 L 771746.9 -5457114 L 770730.2 -5455127 L 772030.8 -5452850 L 773085.7 -5452803 L 773946.4 -5452872 L 774574.3 -5452522 L 774807.1 -5452942 L 775708.1 -5453217 L 776581.7 -5453032 L 778771 -5451972 L 779703.2 -5451638 L 779894.3 -5451877 L 780199.2 -5452376 L 780411.9 -5453685 L 781405.2 -5454143 L 781435.9 -5455035 L 781209.6 -5455483 L 780760.6 -5456809 L 779636.1 -5457922 L 780113.3 -5458532 L 780494.3 -5459036 L 780773.2 -5459050 L 781535.1 -5459063 L 782555.1 -5458504 L 782999 -5458272 L 783636.8 -5458228 L 785270 -5459100 L 785609.5 -5459423 L 786165.9 -5459477 L 786894 -5459157 L 788216.2 -5458155 L 789718.6 -5458104 L 790373.2 -5457730 L 791444.4 -5456665 L 792026.3 -5456719 L 792506 -5456285 L 794083.2 -5456977 L 794206.5 -5456074 L 793875.7 -5455065 L 793904.9 -5454480 L 794185.2 -5452941 L 794926.8 -5451832 L 795199.5 -5450955 L 795377 -5448927 L 795554.6 -5448426 L 795999.6 -5448168 L 796561.2 -5448120 L 797032.8 -5448347 L 797853 -5449632 L 798183 -5450165 L 797900.4 -5452017 L 798489 -5452670 L 799410.5 -5452904 L 799795.8 -5452675 L 799831.1 -5451993 L 799618.2 -5451297 L 799752 -5451117 L 801055.4 -5451185 L 802593.4 -5449887 L 803131.6 -5449550 L 805644.6 -5450383 L 806234.7 -5449776 L 806605.7 -5448981 L 807303.6 -5449754 L 808046.3 -5450148 L 809851.3 -5450647 L 811308.7 -5449982 L 812803.5 -5450083 L 812828 -5449601 L 813074.4 -5449257 L 813612.1 -5449182 L 814571.7 -5450809 L 814794.8 -5450922 L 815174.2 -5451960 L 815683.3 -5452447 L 815877.3 -5452632 L 817894.8 -5452454 L 818322.9 -5453036 L 818238.7 -5453694 L 818568.8 -5454704 L 818435.1 -5455334 L 818647.9 -5455650 L 823096.3 -5457174 L 824157.5 -5457304 L 823937.4 -5456630 L 824200.6 -5455956 L 823784.8 -5455630 L 823720.4 -5455397 L 823889 -5455227 L 823961.6 -5455155 L 826979.1 -5455816 L 827236.6 -5455753 L 827380.1 -5455429 L 827215.9 -5454657 L 828389 -5454589 L 828841.9 -5454179 L 828534.1 -5453730 L 827847.1 -5453237 L 827738.4 -5452875 L 827940.3 -5452402 L 828493.6 -5452022 L 829079 -5451008 L 829672.6 -5450834 L 830718.7 -5449257 L 830904.2 -5448604 L 831086.1 -5448394 L 831390.4 -5448043 L 832268.4 -5447273 L 833500.2 -5446545 L 834491.9 -5446544 L 835389.3 -5446895 L 836197.2 -5447012 L 838252.2 -5446097 L 838547.9 -5445781 L 838900.1 -5444347 L 838907.1 -5444341 L 839239.8 -5443214 L 838511.3 -5441909 L 838376.6 -5441560 L 837788.4 -5441155 L 837310.1 -5440195 L 837048.1 -5439946 L 837204.6 -5438899 L 835901.6 -5436665 L 836098.9 -5436351 L 836205.9 -5435995 L 835808.1 -5435331 L 835507.1 -5434218 L 835682.3 -5433873 L 835444.1 -5433367 L 833630.5 -5431121 L 833900.6 -5430449 L 832426.8 -5430077 L 831741.6 -5430960 L 830665.5 -5431043 L 830312.5 -5431066 L 828703.3 -5431688 L 827970.4 -5432917 L 826164.4 -5433189 L 825997.3 -5433523 L 825703.2 -5433293 L 822602.3 -5432244 L 821741.2 -5431584 L 820841.4 -5431364 L 820530.5 -5431372 L 819961.1 -5431576 L 819642.4 -5431748 L 819003.5 -5431623 L 818697.4 -5431422 L 818177.5 -5430908 L 817459.4 -5430846 L 816996.5 -5430279 L 816678.8 -5430476 L 815441.2 -5431303 L 815349.3 -5431663 L 814230.2 -5431587 L 814224.5 -5431887 L 814184.3 -5432760 L 814407.5 -5433387 L 810229.7 -5434834 L 808516.3 -5434014 L 808161.2 -5433875 L 807972 -5434185 L 807094.9 -5435339 L 806389 -5435300 L 806194.8 -5435588 L 805392.8 -5436619 L 805085.8 -5436483 L 804539 -5436109 L 804452.2 -5436471 L 802216.4 -5436370 L 801542.6 -5438315 L 801569 -5438680 L 801059.2 -5439164 L 801251.4 -5439857 L 801027.1 -5440127 L 800244.7 -5440706 L 800258.1 -5441073 L 799826.4 -5442449 L 800682 -5442883 L 800922.9 -5443130 L 799546.6 -5444288 L 798841 -5443417 L 797780.5 -5443554 L 797521.6 -5443277 L 797378.5 -5442562 L 797687.6 -5441895 L 797822.7 -5441628 L 798189.2 -5441156 L 796761.7 -5439168 L 796561.9 -5438875 L 796132.1 -5437216 L 796515.2 -5436413 L 796143.3 -5435439 L 795234.9 -5434274 L 795673.5 -5432829 L 794923.8 -5431991 L 795316.2 -5430519 L 795065.6 -5430505 L 794814 -5430504 L 794543.4 -5430584 L 794269.8 -5430655 L 792398.4 -5430837 L 792098.5 -5430661 L 792077.7 -5429986 L 791997.2 -5429648 L 792005.9 -5429326 L 791695.6 -5428762 L 791457.9 -5427732 L 790610.1 -5426992 L 790250.1 -5426869 L 789293.4 -5427467 L 789168.5 -5427824 L 788993.1 -5427830 L 788831.5 -5426688 L 789856.5 -5426234 L 790543.7 -5424850 L 790173.2 -5423377 L 791282.5 -5423050 L 792040.5 -5423177 L 792428.4 -5423177 L 795325.3 -5422031 L 797498.1 -5420500 L 797203.7 -5419819 L 799284.7 -5420480 L 800016.5 -5420429 L 800384.5 -5420426 L 800773.5 -5419482 L 800334.8 -5418977 L 800042.9 -5418796 L 799813.2 -5418681 L 799556.6 -5418681 L 797751.9 -5418566 L 797382.9 -5418489 L 797490.2 -5417581 L 797609.2 -5417293 L 797340 -5415880 L 797166.2 -5415560 L 797377.4 -5415247 L 797589.6 -5414937 L 799689.9 -5414905 L 800003.5 -5414738 L 800250.5 -5414113 L 798997.6 -5413502 L 798731.7 -5413272 L 799409.1 -5412052 L 799721.7 -5411874 L 800155.5 -5412489 L 801166.7 -5412987 L 801526.8 -5413100 L 801808.7 -5413272 L 802438.5 -5413424 L 802791.6 -5413529 L 803118.6 -5413698 L 802864.3 -5413984 L 802815 -5414716 L 803268.8 -5415327 L 803998.9 -5415572 L 804528.9 -5416126 L 804065.3 -5417582 L 804508.6 -5418612 L 806335.2 -5418423 L 806833.4 -5419228 L 807124.4 -5419394 L 807893.2 -5418193 L 807434.4 -5417659 L 808262.8 -5416950 L 808621.7 -5416872 L 809255.3 -5416815 L 809587.6 -5416240 L 809885.2 -5416065 L 809809.7 -5416719 L 809667.7 -5417057 L 810345.6 -5417136 L 811757.2 -5415974 L 812415.3 -5416294 L 812669.3 -5416561 L 812829.5 -5416360 L 813009.8 -5416178 L 812707.8 -5416051 L 811794.4 -5415163 L 812100 -5414932 L 812757.4 -5414557 L 813016.3 -5413842 L 813243.2 -5414028 L 813670.8 -5414429 L 813983.4 -5414216 L 815248.2 -5413560 L 815285.7 -5412999 L 815278.4 -5412715 L 816691.2 -5410705 L 817058.2 -5410694 L 816905.4 -5410334 L 815578.2 -5408940 L 815267.8 -5406622 L 814060.3 -5404628 L 813874.1 -5403091 L 813694.3 -5402785 L 812267.6 -5402074 L 812496.9 -5401812 L 813484.6 -5399998 L 813821.4 -5399867 L 814213.4 -5398866 L 814573.4 -5398894 L 816680.2 -5398770 L 817034.2 -5398788 L 816102.7 -5397112 L 814835.6 -5395685 L 815153.3 -5394692 L 813970.4 -5391538 L 814545.4 -5391034 L 814237.3 -5390831 L 813909.2 -5390660 L 813723.3 -5390380 L 812885.3 -5388943 L 811447.8 -5386745 L 810813.7 -5386432 L 810061.7 -5386450 L 809482.6 -5386035 L 809260.8 -5384998 L 809097 -5384682 L 807926 -5383965 L 807771.2 -5383657 L 807734 -5383532 L 807344 -5383569 L 806592.2 -5383786 L 805514 -5383497 L 803818.5 -5384348 L 802086.9 -5383477 L 801137.2 -5384163 L 800795.4 -5384236 L 799486.2 -5384385 L 799847.3 -5384508 L 801340.5 -5384760 L 799408.6 -5385745 L 798431.4 -5386897 L 797557.5 -5388869 L 797176.5 -5388827 L 796441.7 -5388864 L 794613.6 -5390210 L 796016.6 -5391421 L 795500.3 -5392256 L 794363.1 -5391983 L 794222.7 -5391929 L 793943.3 -5392203 L 792055 -5391731 L 791710.3 -5391826 L 790389.6 -5392352 L 790575.5 -5392688 L 789560.2 -5394588 L 789221.3 -5394478 L 788764.6 -5393989 L 788698.6 -5393295 L 787828.9 -5392753 L 787501.3 -5392930 L 786908.3 -5393280 L 784286.3 -5392698 L 783563.9 -5392985 L 783158.7 -5393618 L 783130 -5393923 L 782859 -5394460 L 782468.9 -5395138 L 780927.6 -5395409 L 778649.6 -5394841 L 778452.4 -5395048 L 777994.7 -5395386 L 778174.4 -5395681 L 778213.9 -5396015 L 777223.4 -5395813 L 777123.6 -5396179 L 776921.5 -5396468 L 776834.8 -5397748 L 776481 -5397754 L 776293.2 -5397449 L 775270.8 -5397440 L 774367.3 -5397045 L 774180.2 -5397304 L 773052.1 -5397672 L 772721.6 -5397853 L 771984 -5397899 L 771526.2 -5398879 L 770141.1 -5397168 L 769935.1 -5397568 L 770225 -5397806 L 770176.7 -5399292 L 770443 -5399904 L 769401.5 -5401439 L 769110 -5401611 L 768007.9 -5400968 L 767649.2 -5401026 L 766980.7 -5401879 L 766049.2 -5402241 L 764741.4 -5402289 L 764692.7 -5402627 L 763960.9 -5404118 L 763574.1 -5404176 L 762064 -5405914 L 761834.4 -5406647 L 760769.9 -5406432 L 760506.3 -5406324 L 760124.2 -5406044 L 759807.3 -5405830 L 758704.4 -5406129 L 758130.6 -5405669 L 757780.8 -5405615 L 757854.7 -5406271 L 756508.3 -5407387 L 756142.7 -5407470 L 754361.2 -5407554 L 754105.5 -5407380 L 753796.9 -5407369 L 753826.4 -5407742 L 753563.2 -5408824 L 752877.1 -5409005 L 752179.8 -5409876 L 751859.9 -5409703 L 749434.3 -5408161 L 748956.2 -5408788 L 748599.5 -5408790 L 747623.1 -5409187 L 747323.3 -5408976 L 746740.7 -5408584 L 746454.8 -5409952 L 746396.2 -5410315 L 745814.2 -5411245 L 746510.5 -5412013 L 746232.2 -5412239 L 745182.9 -5412006 L 744933.7 -5412208 L 744729.3 -5413035 L 744552.3 -5413340 L 742890.9 -5413032 L 742583.5 -5413158 L 742313.3 -5413352 L 743555.3 -5413973 L 744574.8 -5413613 L 745102.9 -5414499 L 744743.3 -5414608 L 744383.8 -5414715 L 743368 -5414806 L 742732.4 -5414427 L 741263 -5415465 L 741050.4 -5416096 L 741746 -5416389 L 742111.8 -5416485 L 742024 -5416793 L 741854.2 -5418026 L 742806.6 -5417733 L 742813.8 -5418765 L 742592.7 -5419042 L 742607.1 -5419367 L 741776.1 -5419799 L 742768.2 -5420924 L 743460.8 -5421223 L 743803.6 -5421382 L 743885.9 -5422380 L 743644.8 -5422662 L 742631.5 -5423091 L 742613.7 -5424125 L 742313.9 -5423938 L 740964 -5423526 L 740917.3 -5423846 L 740868.3 -5424786 L 740582.9 -5424855 L 740077.9 -5424784 L 739628.8 -5425358 L 739311.1 -5425285 L 738991.6 -5425354 L 738682.8 -5425142 L 737910.5 -5424349 L 737162.2 -5424323 L 736980.3 -5424644 L 736264.2 -5424771 L 735896.7 -5425747 L 734799.9 -5425853 L 734817.7 -5425643 L 734447 -5425565 L 732570.6 -5425388 L 732197.7 -5426031 L 731822 -5426002 L 731533.7 -5426174 L 730713.7 -5425651 L 730717.9 -5424989 L 730487.4 -5424897 L 730119.8 -5424934 L 728886.6 -5425645 L 729074.2 -5426703 L 728704.6 -5426695 L 728788.7 -5427438 L 727970.8 -5428644 L 726891.2 -5428780 L 726537.5 -5428660 L 725576.2 -5428084 L 725413.2 -5428264 L 725262.4 -5428596 L 724781.3 -5429126 L 724960.4 -5429833 L 724287.6 -5430028 L 724052.9 -5429780 L 722739.6 -5429574 L 722573.7 -5429899 L 722010.4 -5430356 L 722719.1 -5430862 L 722620.7 -5432286 L 722720.8 -5433069 L 722397.1 -5433721 L 721640.2 -5433922 L 720790.9 -5434729 L 720237.8 -5436129 L 719983.2 -5435952 L 719722.6 -5435784 L 719439.3 -5435857 L 718940.9 -5436160 L 718720.8 -5436343 L 718225.3 -5436572 L 717910 -5436709 L 717278.8 -5436482 L 716853.8 -5437015 L 716182.9 -5437086 L 716016 -5437373 L 715681.1 -5438654 L 715569.4 -5439009 L 714562.4 -5439415 L 714431.6 -5439764 L 714383 -5440142 L 714864.4 -5440720 L 713649.2 -5442047 L 713781.3 -5442797 L 714019.9 -5443862 L 715206.6 -5443871 L 716660.7 -5443877 L 717024.2 -5443878 L 718565.5 -5443900 L 719208.9 -5444248 L 719362.5 -5444601 L 719144.5 -5444878 L 718256.6 -5446073 L 718478.7 -5446752 L 717888.4 -5447218 L 717748.6 -5447567 L 717579.7 -5447874 L 718439.7 -5448436 L 718126 -5449060 L 718795.2 -5449230 L 719309.7 -5448981 L 719630.2 -5449032 L 720195.1 -5449973 L 720827.5 -5450329 L 721051.2 -5450622 L 720026.2 -5451071 L 719083.2 -5452238 L 717626.3 -5452416 L 717393.3 -5452665 L 717180.8 -5453305 L 717117.9 -5453510 L 717635.6 -5454261 L 717478.2 -5454918 L 717703.9 -5455173 L 718287.5 -5454958 L 718865.6 -5455146 L 718574.4 -5455356 L 719253.8 -5456587 L 719614.4 -5456609 L 720752.6 -5457900 L 720541.3 -5457917 L 720564.5 -5459778 L 718980.3 -5460758 L 719091.4 -5461501 L 718926.7 -5461979 L 719065.2 -5462210 L 718368.5 -5462523 L 718412.9 -5463660 L 718495.4 -5464033 L 718561.2 -5466330 L 717967.9 -5466809 L 717339.1 -5466035 L 717138.5 -5465770 L 715975.6 -5467210 L 714444.7 -5468208 L 713960.2 -5469178 L 713952.6 -5469549 L 715348.1 -5470110 L 716105.1 -5470095 L 716478.7 -5470154 L 716115.2 -5470191 L 715395.3 -5470308 L 714792.4 -5471949 L 714421 -5471983 L 713696.8 -5471809 L 713109.1 -5472755 L 712467.7 -5473133 L 713181.7 -5474037 L 712709.7 -5476301 L 711987.1 -5476618 L 711682.9 -5476761 L 711389.7 -5476924 L 711657.3 -5477154 L 711919.8 -5478122 L 712508.7 -5479070 L 713188.9 -5479347 L 713509.6 -5479539 L 713387.9 -5479919 L 712608.5 -5481306 L 713390.3 -5481991 L 712776.9 -5484107 L 713140.1 -5484752 L 712829.8 -5484840 L 712368.1 -5485608 L 712367.1 -5485608 z " |
id="path664" /> |
<path |
d="M 805075.9 -5361876 L 804191.8 -5362939 L 803852 -5363023 L 801917.8 -5363761 L 802594.7 -5364638 L 802780.6 -5364971 L 803642.4 -5366206 L 804060.8 -5366486 L 804168.5 -5366821 L 803774.6 -5367797 L 802943.1 -5368439 L 802615.4 -5368596 L 802331.9 -5368821 L 802481.7 -5369177 L 803093.9 -5369646 L 802882.2 -5370329 L 803086.4 -5371705 L 802963.5 -5372040 L 803617.7 -5373248 L 803908.7 -5373454 L 803804.6 -5373615 L 803644.7 -5374021 L 803444.5 -5375138 L 804263.3 -5377313 L 804351.9 -5378473 L 803989.1 -5378633 L 802459.5 -5378992 L 802446.9 -5379331 L 802197.4 -5380267 L 802407.7 -5380870 L 802575.7 -5380536 L 804765.2 -5380260 L 804504.3 -5381802 L 803048.9 -5382176 L 801556.6 -5381867 L 801363.7 -5381535 L 801221.6 -5381731 L 801082.5 -5381927 L 800423.5 -5382579 L 800171.1 -5382765 L 800851.3 -5383965 L 801136.3 -5384163 L 802086 -5383477 L 803817.6 -5384348 L 805513.1 -5383498 L 806591.3 -5383787 L 807343.1 -5383569 L 807733.1 -5383532 L 807770.3 -5383657 L 807925.1 -5383965 L 809096.1 -5384682 L 809259.9 -5384998 L 809481.7 -5386035 L 810060.8 -5386450 L 810812.8 -5386432 L 811446.9 -5386745 L 812884.4 -5388943 L 813722.4 -5390380 L 813908.3 -5390660 L 814236.4 -5390831 L 814544.5 -5391034 L 813969.5 -5391538 L 815152.4 -5394692 L 814834.7 -5395685 L 816101.8 -5397112 L 817033.3 -5398788 L 816679.3 -5398770 L 814572.5 -5398894 L 814212.5 -5398866 L 813820.5 -5399867 L 813483.7 -5399998 L 812496 -5401812 L 812266.7 -5402074 L 813693.4 -5402785 L 813873.2 -5403091 L 814059.4 -5404628 L 815266.9 -5406623 L 815577.3 -5408940 L 816904.5 -5410334 L 817057.3 -5410694 L 816690.3 -5410705 L 815277.5 -5412715 L 815284.8 -5412999 L 815247.3 -5413560 L 813982.5 -5414216 L 813669.9 -5414429 L 813242.3 -5414029 L 813015.4 -5413842 L 812756.5 -5414558 L 812099.1 -5414932 L 811793.5 -5415163 L 812706.9 -5416051 L 813008.9 -5416178 L 812828.6 -5416360 L 812668.4 -5416561 L 812414.4 -5416294 L 811756.3 -5415974 L 810344.7 -5417136 L 809666.8 -5417057 L 809808.8 -5416719 L 809884.3 -5416065 L 809586.7 -5416240 L 809254.4 -5416815 L 808620.8 -5416872 L 808261.9 -5416951 L 807433.5 -5417659 L 807892.3 -5418193 L 807123.5 -5419394 L 806832.5 -5419228 L 806334.3 -5418423 L 804507.7 -5418612 L 804064.4 -5417582 L 804528 -5416126 L 803998 -5415572 L 803267.9 -5415327 L 802814.1 -5414716 L 802863.4 -5413984 L 803117.7 -5413698 L 802790.7 -5413529 L 802437.6 -5413424 L 801807.8 -5413272 L 801525.9 -5413100 L 801165.8 -5412988 L 800154.6 -5412489 L 799720.8 -5411874 L 799408.2 -5412053 L 798730.8 -5413272 L 798996.7 -5413502 L 800249.6 -5414113 L 800002.6 -5414738 L 799689 -5414905 L 797588.7 -5414937 L 797376.5 -5415247 L 797165.3 -5415560 L 797339.1 -5415880 L 797608.3 -5417293 L 797489.3 -5417582 L 797382 -5418489 L 797751 -5418566 L 799555.7 -5418681 L 799812.3 -5418682 L 800042 -5418797 L 800333.9 -5418978 L 800772.6 -5419483 L 800383.6 -5420426 L 800015.6 -5420430 L 799283.8 -5420481 L 797202.8 -5419819 L 797497.2 -5420501 L 795324.4 -5422032 L 792427.5 -5423177 L 792039.6 -5423178 L 791281.6 -5423051 L 790172.3 -5423377 L 790542.8 -5424851 L 789855.6 -5426234 L 788830.6 -5426688 L 788992.2 -5427831 L 789167.6 -5427825 L 789292.5 -5427468 L 790249.2 -5426870 L 790609.2 -5426993 L 791457 -5427733 L 791694.7 -5428763 L 792005 -5429326 L 791996.3 -5429649 L 792076.8 -5429987 L 792097.6 -5430661 L 792397.5 -5430838 L 794268.9 -5430655 L 794542.5 -5430585 L 794813.1 -5430504 L 795064.7 -5430505 L 795315.3 -5430520 L 794922.9 -5431992 L 795672.6 -5432830 L 795234 -5434274 L 796142.4 -5435439 L 796514.3 -5436413 L 796131.2 -5437217 L 796561 -5438876 L 796760.8 -5439169 L 798188.3 -5441156 L 797821.8 -5441628 L 797686.7 -5441895 L 797377.6 -5442562 L 797520.7 -5443277 L 797779.6 -5443554 L 798840.1 -5443418 L 799545.7 -5444288 L 800922 -5443130 L 800681.1 -5442884 L 799825.5 -5442449 L 800257.2 -5441074 L 800243.8 -5440706 L 801026.2 -5440127 L 801250.5 -5439857 L 801058.3 -5439165 L 801568.1 -5438680 L 801541.7 -5438316 L 802215.5 -5436370 L 804451.3 -5436472 L 804538.1 -5436110 L 805084.9 -5436484 L 805391.9 -5436620 L 806193.9 -5435588 L 806388.1 -5435301 L 807094 -5435340 L 807971.1 -5434185 L 808160.3 -5433876 L 808515.4 -5434014 L 810228.8 -5434835 L 814406.6 -5433388 L 814183.4 -5432761 L 814223.6 -5431887 L 814229.3 -5431588 L 815348.4 -5431664 L 815440.3 -5431303 L 816677.9 -5430476 L 816995.6 -5430280 L 817458.5 -5430847 L 818176.6 -5430908 L 818696.5 -5431422 L 819002.6 -5431623 L 819641.5 -5431749 L 819960.2 -5431576 L 820529.6 -5431372 L 820840.5 -5431365 L 821740.3 -5431584 L 822601.4 -5432245 L 825702.3 -5433294 L 825996.4 -5433524 L 826163.5 -5433189 L 827969.5 -5432918 L 828702.4 -5431688 L 830311.6 -5431066 L 830664.6 -5431044 L 831740.7 -5430961 L 832425.9 -5430077 L 833899.7 -5430449 L 833629.6 -5431122 L 835443.2 -5433367 L 835681.4 -5433874 L 835506.2 -5434219 L 835807.2 -5435332 L 836205 -5435995 L 836098 -5436352 L 835900.7 -5436666 L 837203.7 -5438899 L 837047.2 -5439947 L 837309.2 -5440195 L 837787.5 -5441156 L 838375.7 -5441561 L 838510.4 -5441910 L 839238.9 -5443215 L 838906.2 -5444342 L 839457.6 -5443866 L 839864.7 -5443861 L 841059.6 -5443361 L 841852.2 -5443274 L 842549 -5443546 L 843348.3 -5443858 L 843432.8 -5444703 L 844497.1 -5444273 L 845104.5 -5444329 L 845449.3 -5444550 L 845832.4 -5444518 L 846289.6 -5443522 L 847807.5 -5443675 L 848459.3 -5443861 L 848970.1 -5444319 L 849345.1 -5444949 L 850014.6 -5445289 L 850361.7 -5445968 L 850792.9 -5445990 L 852939.8 -5444264 L 853230.5 -5444178 L 854411.3 -5443829 L 855189.2 -5443027 L 855650.9 -5442949 L 856445.7 -5443829 L 857269.9 -5444125 L 859277.7 -5444149 L 859852.2 -5444356 L 860357.8 -5445426 L 860884 -5445580 L 861090.8 -5445514 L 861745.6 -5444630 L 862259.4 -5444528 L 862604.5 -5444240 L 863305.1 -5443460 L 863807.7 -5442568 L 865207.9 -5443046 L 866453.6 -5442548 L 866852 -5442212 L 868318.5 -5441878 L 869409.5 -5441423 L 870413.1 -5440684 L 870828.1 -5440017 L 874205.1 -5438606 L 876085.1 -5438140 L 877516.1 -5438007 L 877883.5 -5438018 L 879751 -5438068 L 880051.8 -5437650 L 880601.1 -5437347 L 881009.6 -5437316 L 882007.8 -5438207 L 882312.3 -5438222 L 882890.8 -5437519 L 883097.7 -5437268 L 880563.5 -5436071 L 879520.1 -5433548 L 877335.4 -5429950 L 876685.6 -5428158 L 875430.1 -5424837 L 875529 -5424384 L 875309.8 -5423176 L 874901.8 -5420660 L 874403.6 -5419438 L 873698.6 -5418282 L 872857.9 -5417298 L 872141.4 -5416881 L 871588.4 -5416751 L 870765.3 -5416939 L 870209.8 -5416861 L 869866.2 -5416614 L 869373.1 -5415800 L 869086.7 -5413902 L 868850.9 -5413533 L 867541 -5412780 L 865751.6 -5412971 L 865354.9 -5412774 L 865143.1 -5412432 L 865046.8 -5411816 L 864960.7 -5410997 L 865190.3 -5409964 L 865059.9 -5409016 L 864477.9 -5407943 L 862610.6 -5405125 L 862427.8 -5404888 L 859650.4 -5401286 L 856723 -5399333 L 856513.9 -5398941 L 856127.4 -5397012 L 855255.4 -5395135 L 854423.9 -5393974 L 853990.5 -5391987 L 854501.8 -5389230 L 854833 -5385580 L 854731.7 -5384531 L 854262.7 -5383210 L 853880.7 -5382708 L 853208.6 -5382421 L 852445.8 -5381683 L 852325.5 -5381040 L 852562.6 -5379347 L 852184.8 -5377241 L 851834.9 -5375594 L 851040.1 -5373697 L 850386 -5371018 L 850525.1 -5369113 L 850626.7 -5367721 L 850853.6 -5366739 L 851278 -5365870 L 851797.4 -5363605 L 851361.4 -5362668 L 850523.5 -5362143 L 849228.3 -5361621 L 848521.1 -5361025 L 848151 -5360295 L 848009 -5359575 L 848105.1 -5357646 L 848013 -5357208 L 846769.8 -5351295 L 845424.9 -5349867 L 845266.6 -5349944 L 844870.4 -5349213 L 844523.1 -5348000 L 843350.2 -5345477 L 842279.2 -5344025 L 842163.9 -5343281 L 842433.6 -5342455 L 842324.5 -5341584 L 840963.9 -5340003 L 840238.7 -5340169 L 837602.4 -5340274 L 836159.3 -5340648 L 836054.3 -5340954 L 835884.1 -5341229 L 836091.6 -5342692 L 836153.3 -5343066 L 832714.7 -5343978 L 832348.6 -5344034 L 832368.1 -5344392 L 832407.8 -5346491 L 832570.7 -5346818 L 832369.8 -5348213 L 832587.3 -5348871 L 832244.4 -5348984 L 830576.1 -5349662 L 830113.4 -5350203 L 829413.3 -5350283 L 828068.8 -5350744 L 827796.3 -5350976 L 827410.1 -5350902 L 826593.7 -5351729 L 822991.8 -5353213 L 821059.7 -5352881 L 820110.8 -5353573 L 820194 -5354332 L 820134.3 -5354720 L 820769.3 -5354846 L 821172.1 -5355375 L 821358 -5355650 L 821537.8 -5355919 L 819692.8 -5355371 L 818570.8 -5355559 L 818946.6 -5356925 L 818198.5 -5357760 L 818203 -5358106 L 817866.1 -5358217 L 817549.4 -5358377 L 817407.5 -5358728 L 816913.7 -5359284 L 815815.5 -5359239 L 815441.5 -5359306 L 814763.2 -5358974 L 812723.3 -5359702 L 811615 -5359531 L 811235 -5359575 L 811099.1 -5359930 L 810569.8 -5360919 L 809862.1 -5361170 L 809714.1 -5361520 L 809976.2 -5362613 L 808917.7 -5362990 L 808712.7 -5362650 L 807365.1 -5361902 L 807141.3 -5361768 L 806882.5 -5361738 L 806518.6 -5361762 L 805074.8 -5361876 L 805075.9 -5361876 z " |
id="path665" /> |
<path |
d="M 810668.9 -5269666 L 810670.7 -5269668 L 810675.2 -5269673 L 811220.7 -5270345 L 811545.2 -5272228 L 811298.9 -5272492 L 811190.1 -5272834 L 811081.2 -5273166 L 810759.1 -5273763 L 810660 -5273878 L 810383.4 -5274036 L 809645.1 -5274606 L 809296.2 -5274661 L 808687 -5275004 L 808779.6 -5275265 L 808745.2 -5275812 L 808780.8 -5276173 L 808289.7 -5277124 L 807668.4 -5277415 L 807537.6 -5277790 L 807188.6 -5278507 L 807000.3 -5278649 L 807019.8 -5278954 L 806884.3 -5279549 L 806336.3 -5279942 L 806052.8 -5280150 L 806032.8 -5280150 L 803537 -5280126 L 802371.7 -5279239 L 802313 -5278875 L 801955.9 -5278773 L 801767.8 -5279073 L 801749.6 -5279705 L 801116.2 -5279954 L 801030.6 -5280446 L 801233.4 -5280663 L 800953.9 -5280844 L 800778.2 -5282155 L 800872.8 -5282409 L 800795.3 -5282944 L 801045.5 -5283372 L 801273.1 -5283338 L 801417.8 -5285048 L 801446.3 -5285392 L 801630.2 -5285685 L 802740.1 -5285608 L 803093.2 -5285729 L 802963.3 -5286063 L 802740.6 -5286741 L 803436.1 -5287969 L 803152.6 -5288181 L 802835.1 -5288469 L 803269.1 -5289063 L 802839.1 -5289893 L 802643.2 -5290358 L 802814.7 -5290407 L 802582.4 -5290660 L 801911.1 -5291783 L 802028.9 -5292155 L 802561.3 -5293616 L 802380.2 -5293890 L 802134.9 -5294109 L 801921.6 -5294342 L 801227.6 -5294980 L 801075.6 -5295301 L 800815.8 -5295963 L 800518.7 -5295743 L 799500.6 -5296158 L 799121.7 -5296240 L 797677.5 -5296692 L 794866.9 -5298701 L 793743.8 -5298560 L 793650.8 -5298781 L 793386.4 -5298979 L 792509.6 -5299349 L 792107.4 -5299187 L 791317.6 -5299357 L 790989 -5299522 L 789279.3 -5299953 L 789057.1 -5300257 L 787476.9 -5303096 L 787668.7 -5304137 L 790983.8 -5305479 L 791354.7 -5305436 L 791420.1 -5305641 L 792117.6 -5306927 L 792839.7 -5307135 L 793056.7 -5307447 L 792950.8 -5307728 L 792929.5 -5308301 L 792622 -5308511 L 792080.3 -5308996 L 791977 -5309728 L 791925.3 -5310836 L 791178.5 -5311632 L 792382.7 -5312537 L 792678.8 -5312779 L 793110 -5313635 L 793174.6 -5314695 L 792114.3 -5314971 L 792983.1 -5316213 L 792693.3 -5318429 L 792789 -5318796 L 792882.2 -5319555 L 793227.8 -5320895 L 793939.7 -5321669 L 794128.6 -5321968 L 793994.7 -5322275 L 794011 -5323253 L 794012 -5323997 L 794615.1 -5324443 L 795338.7 -5324263 L 796417.9 -5325294 L 796791.9 -5325333 L 797328.6 -5326337 L 798285.9 -5326948 L 798689.8 -5327595 L 799213.4 -5328546 L 798713.9 -5329155 L 799308.2 -5330538 L 799654.3 -5330715 L 799696.4 -5331484 L 800369.9 -5332854 L 801619.3 -5333722 L 802753.3 -5336081 L 802884.1 -5336439 L 803342.6 -5336691 L 803820.3 -5338622 L 803781.7 -5339019 L 802613.7 -5339129 L 801855.8 -5340026 L 803159.8 -5342856 L 803055.5 -5343619 L 803374.9 -5344064 L 803449.5 -5344365 L 803686 -5345078 L 804809.2 -5346046 L 805061.2 -5346325 L 805197 -5346689 L 804972.8 -5347005 L 805740.9 -5347787 L 806414.3 -5349820 L 806833.5 -5351475 L 806747.7 -5351810 L 807819.7 -5354261 L 808188.9 -5354383 L 808472 -5354650 L 808523.3 -5354744 L 808664.1 -5355089 L 808682 -5355794 L 809579.9 -5356966 L 809391.7 -5358031 L 809664.7 -5358228 L 810937.7 -5358620 L 811235.7 -5359574 L 811615.7 -5359531 L 812724 -5359702 L 814763.9 -5358973 L 815442.2 -5359306 L 815816.2 -5359239 L 816914.4 -5359284 L 817408.2 -5358728 L 817550.1 -5358377 L 817866.8 -5358217 L 818203.7 -5358105 L 818199.2 -5357760 L 818947.3 -5356925 L 818571.5 -5355558 L 819693.5 -5355371 L 821538.5 -5355918 L 821358.7 -5355650 L 821172.8 -5355375 L 820770 -5354846 L 820135 -5354720 L 820194.7 -5354332 L 820111.5 -5353573 L 821060.4 -5352881 L 822992.5 -5353212 L 826594.4 -5351729 L 827410.8 -5350902 L 827797 -5350975 L 828069.5 -5350744 L 829414 -5350283 L 830114.1 -5350203 L 830576.8 -5349662 L 832245.1 -5348984 L 832588 -5348871 L 832370.5 -5348213 L 832571.4 -5346818 L 832408.5 -5346490 L 832368.8 -5344391 L 832349.3 -5344033 L 832715.4 -5343978 L 836154 -5343065 L 836092.3 -5342691 L 835884.8 -5341229 L 836055 -5340953 L 836160 -5340647 L 837603.1 -5340274 L 840239.4 -5340169 L 840964.6 -5340003 L 840884.3 -5339910 L 840801.9 -5339524 L 841004.3 -5338008 L 840913.9 -5336248 L 840580.5 -5335290 L 840915 -5332545 L 840547.4 -5330680 L 841564.6 -5329285 L 842042.1 -5328876 L 842429.6 -5328233 L 843223.7 -5327586 L 843925.1 -5326595 L 844435.5 -5325549 L 844684.5 -5324604 L 844649.1 -5323197 L 844334.8 -5322527 L 842710.7 -5320447 L 842454.4 -5319707 L 842353.1 -5318445 L 842616.2 -5316607 L 842484 -5315649 L 842187.2 -5315057 L 840798.8 -5313666 L 840623.8 -5312626 L 840786.2 -5312030 L 841286.3 -5310369 L 841241.2 -5308551 L 840579.4 -5307284 L 839209.5 -5301936 L 839625.6 -5300024 L 840545.4 -5298155 L 840588.5 -5295952 L 838978.3 -5294378 L 838500.1 -5292882 L 839377.3 -5289402 L 840428.3 -5287810 L 842414 -5285673 L 842606.2 -5285466 L 843358.1 -5284128 L 844431.6 -5280061 L 843551.5 -5280073 L 843327.4 -5280416 L 842251.1 -5280298 L 842152.6 -5280262 L 842057.8 -5280113 L 841250.9 -5278841 L 840559.1 -5277365 L 839933.8 -5276579 L 838613 -5274917 L 838488.4 -5273141 L 839509.9 -5272147 L 839749.7 -5271302 L 838876.3 -5269603 L 837952.4 -5268895 L 837386.4 -5268684 L 836943.6 -5268767 L 836730.4 -5269103 L 834453.9 -5270379 L 833685.2 -5270402 L 832713.1 -5268668 L 833553.3 -5268446 L 834395.4 -5268456 L 835087.3 -5267960 L 835013.7 -5267906 L 834997.4 -5267317 L 834674.5 -5266977 L 834312.8 -5267016 L 832646.8 -5264572 L 831622.3 -5263598 L 830826.8 -5263134 L 829287.1 -5262952 L 827096.1 -5263392 L 825531.1 -5263208 L 825278.3 -5263181 L 822197.6 -5262331 L 820859.8 -5261173 L 820179.3 -5261333 L 819590.4 -5262347 L 818911.9 -5262737 L 817164.8 -5262585 L 816796.6 -5262670 L 815543.1 -5262957 L 814702.7 -5263433 L 814946 -5264302 L 815092.4 -5265620 L 815729.8 -5267882 L 815551.8 -5268374 L 814467.9 -5267983 L 814478.3 -5267882 L 813569.6 -5267953 L 811923.8 -5269385 L 810669.2 -5269665 L 810668.9 -5269666 z " |
id="path666" /> |
<path |
d="M 810668.9 -5269666 L 808143.2 -5268387 L 807134.7 -5268259 L 804400.6 -5268773 L 802778.6 -5269400 L 802118.8 -5269358 L 801403.5 -5269114 L 800095.1 -5268667 L 799785.1 -5268201 L 799795.4 -5266848 L 801223.4 -5264617 L 801106.2 -5263762 L 799590.1 -5263353 L 798520.6 -5262069 L 796923.9 -5261446 L 796544.6 -5261563 L 796350.7 -5262764 L 796115.9 -5263391 L 796104.3 -5263730 L 795905.2 -5264021 L 795060.4 -5265055 L 794128.7 -5265529 L 794305.5 -5265766 L 794731.1 -5266155 L 794547.1 -5266491 L 794032.7 -5267933 L 794952.6 -5268344 L 795161.5 -5268614 L 795796.8 -5268379 L 796408.7 -5267159 L 796728.3 -5266999 L 796919.2 -5267271 L 797210.7 -5267109 L 796817.5 -5268487 L 796930.6 -5269844 L 796750.5 -5270161 L 796431.9 -5270335 L 796168.5 -5270585 L 795943 -5270612 L 795233.4 -5270772 L 794914.7 -5270839 L 793879 -5271542 L 794466 -5271943 L 793991.1 -5272947 L 793729.8 -5273217 L 793671.1 -5273580 L 793132.3 -5274034 L 792395.4 -5274027 L 792192.3 -5274324 L 791930 -5274570 L 791637 -5274387 L 790153.3 -5273635 L 789837.6 -5273662 L 789452.6 -5273665 L 787956.5 -5273402 L 786896 -5273515 L 786722 -5273833 L 786090.2 -5275130 L 786272.5 -5275794 L 786852.4 -5276166 L 787144.4 -5276351 L 787085.4 -5276461 L 787011.4 -5276587 L 786759.1 -5276862 L 785767.4 -5277365 L 785599 -5278091 L 784734.8 -5278787 L 784868.6 -5279126 L 784700.6 -5279416 L 784543.6 -5279713 L 784459.4 -5279729 L 784230.8 -5280439 L 783624.9 -5280860 L 783656 -5281605 L 783764.7 -5281963 L 784559 -5282181 L 784646.7 -5282535 L 785164.1 -5283406 L 785015.7 -5284106 L 784421.8 -5284510 L 784160.7 -5284916 L 783922.5 -5285203 L 783315.7 -5286469 L 783370.3 -5287570 L 783557.5 -5288832 L 783411.5 -5289119 L 783326.7 -5289467 L 782584.4 -5290593 L 782649.9 -5291618 L 781658 -5292707 L 781694 -5294155 L 781612.3 -5294523 L 781548.6 -5294842 L 781421.1 -5295483 L 782347.8 -5297376 L 782594.7 -5297637 L 783389 -5299404 L 784906.3 -5300607 L 786126.9 -5302582 L 786024.2 -5302955 L 787332.2 -5304324 L 787668.8 -5304137 L 787477 -5303096 L 789057.2 -5300257 L 789279.4 -5299953 L 790989.1 -5299522 L 791317.7 -5299357 L 792107.5 -5299187 L 792509.7 -5299348 L 793386.5 -5298979 L 793650.9 -5298781 L 793743.9 -5298560 L 794867 -5298701 L 797677.6 -5296692 L 799121.8 -5296240 L 799500.7 -5296157 L 800518.8 -5295743 L 800815.9 -5295963 L 801075.7 -5295301 L 801227.7 -5294980 L 801921.7 -5294342 L 802135 -5294109 L 802380.3 -5293890 L 802561.4 -5293616 L 802029 -5292155 L 801911.2 -5291783 L 802582.5 -5290660 L 802814.8 -5290406 L 802643.3 -5290358 L 802839.2 -5289892 L 803269.2 -5289063 L 802835.2 -5288469 L 803152.7 -5288181 L 803436.2 -5287969 L 802740.7 -5286741 L 802963.4 -5286062 L 803093.3 -5285729 L 802740.2 -5285607 L 801630.3 -5285685 L 801446.4 -5285392 L 801417.9 -5285047 L 801273.2 -5283338 L 801045.6 -5283372 L 800795.4 -5282944 L 800872.9 -5282409 L 800778.3 -5282155 L 800954 -5280844 L 801233.5 -5280662 L 801030.7 -5280446 L 801116.3 -5279953 L 801749.7 -5279705 L 801767.9 -5279073 L 801956 -5278773 L 802313.1 -5278875 L 802371.8 -5279239 L 803537.1 -5280126 L 806032.9 -5280150 L 806052.9 -5280150 L 806336.4 -5279943 L 806884.4 -5279549 L 807019.9 -5278954 L 807000.4 -5278649 L 807188.7 -5278508 L 807537.7 -5277791 L 807668.5 -5277415 L 808289.8 -5277124 L 808780.9 -5276173 L 808745.3 -5275812 L 808779.7 -5275265 L 808687.1 -5275004 L 809296.3 -5274662 L 809645.2 -5274607 L 810383.5 -5274036 L 810660.1 -5273878 L 810759.2 -5273763 L 811081.3 -5273166 L 811190.2 -5272835 L 811299 -5272492 L 811545.3 -5272228 L 811220.8 -5270345 L 810675.3 -5269673 L 810670.8 -5269668 L 810669 -5269666 L 810668.9 -5269666 z " |
id="path667" /> |
<path |
d="M 796923.8 -5261446 L 796740 -5259741 L 796407.7 -5258992 L 795291.3 -5258419 L 795190.1 -5258409 L 795144.6 -5257101 L 794814.8 -5256327 L 794024.4 -5255812 L 793109 -5254519 L 792355.6 -5253139 L 792539.1 -5252340 L 794838.1 -5253340 L 795465.5 -5253199 L 797192.2 -5253298 L 798623.9 -5253035 L 799917.9 -5253370 L 802444 -5254649 L 803864.9 -5254742 L 805219.1 -5253986 L 805755.1 -5252738 L 806381.4 -5251856 L 806218.7 -5251492 L 806030.3 -5250487 L 805381.7 -5250090 L 804417.5 -5249790 L 803256.7 -5248907 L 803118.5 -5248000 L 802276.1 -5246740 L 801975.9 -5246430 L 801637.6 -5246243 L 800695.9 -5246225 L 799976.6 -5245770 L 799514.7 -5245545 L 799022.3 -5245624 L 798428.9 -5245692 L 798131.1 -5245611 L 797977.3 -5245111 L 798134.3 -5244309 L 798650 -5243492 L 798670.8 -5242523 L 798510 -5241332 L 798631.4 -5240885 L 799091.1 -5240624 L 798399.8 -5239891 L 797960.6 -5239694 L 797693.2 -5239054 L 797095.1 -5238662 L 796752 -5238015 L 796068 -5237717 L 795591.1 -5237133 L 794995.4 -5236716 L 793572.2 -5235144 L 793438.9 -5234186 L 793055.2 -5233942 L 792717.3 -5233245 L 792439.7 -5232962 L 791205.2 -5232558 L 790942.9 -5232122 L 790930.4 -5231993 L 791145.1 -5231632 L 792076.9 -5231495 L 792301.7 -5231287 L 792152.8 -5230991 L 790752 -5229957 L 789245.3 -5228199 L 788667.2 -5227860 L 787814.3 -5226957 L 786711 -5226515 L 786186 -5226157 L 785521.9 -5226167 L 784996.8 -5225808 L 784199.3 -5224860 L 783732.2 -5224686 L 783575.8 -5224211 L 784035.8 -5223184 L 783876.9 -5222733 L 783738.1 -5222592 L 781877.2 -5222330 L 781185.6 -5221853 L 780807.3 -5220283 L 780365.5 -5219856 L 779317.8 -5219369 L 779240.4 -5218568 L 779221.5 -5217748 L 780119.6 -5217456 L 780332.9 -5216864 L 778272.6 -5216272 L 777138.8 -5215110 L 776221 -5213075 L 775431.2 -5211794 L 774746.3 -5211495 L 772672.7 -5211286 L 771136.4 -5210313 L 770236.4 -5210119 L 767979.6 -5208946 L 766968.1 -5208844 L 766184.8 -5208254 L 765853.5 -5208246 L 765357.4 -5208605 L 764624.8 -5208020 L 762870.1 -5205671 L 760991.7 -5203028 L 760969.6 -5202489 L 761446.1 -5201567 L 762906 -5199960 L 763573.3 -5199226 L 763461.2 -5195535 L 763118.3 -5194632 L 762067.6 -5193401 L 761813.1 -5192634 L 761865.1 -5191362 L 761153 -5190319 L 761153.5 -5189808 L 761584.3 -5189085 L 763163.9 -5187863 L 763240.5 -5187105 L 762192.9 -5185338 L 760802.9 -5184176 L 758661.2 -5183628 L 757386 -5181583 L 757054.9 -5181320 L 756918.4 -5181153 L 756031.5 -5180322 L 754684.2 -5179496 L 754717.2 -5179420 L 753013.7 -5178076 L 750154.5 -5176536 L 749656.7 -5175899 L 748699.6 -5174244 L 746033.4 -5171803 L 744176.2 -5169699 L 742288.3 -5167899 L 740625.2 -5166403 L 738199 -5163860 L 737754.4 -5163202 L 737848.5 -5162521 L 739607.6 -5160922 L 739515.5 -5160838 L 739356.9 -5160710 L 739137.3 -5160871 L 736021.9 -5163669 L 735988.8 -5163698 L 735658.8 -5163964 L 735559.3 -5164052 L 732900.5 -5166422 L 732960.6 -5166597 L 733336.9 -5167189 L 734003.2 -5167282 L 733785.9 -5168200 L 733700.1 -5168530 L 733953.8 -5168789 L 735380.6 -5169896 L 735700.4 -5170126 L 736660.9 -5170792 L 736901.2 -5171522 L 734401.4 -5175464 L 735465.5 -5176521 L 736487 -5177136 L 736769.8 -5177416 L 737196 -5177802 L 737467.6 -5177895 L 738510.8 -5178973 L 738769.6 -5179245 L 738805.7 -5179268 L 739275.1 -5179760 L 740380.9 -5180426 L 740600.6 -5180664 L 740935.4 -5180832 L 741270.2 -5181004 L 741569 -5181213 L 742464.4 -5181844 L 742511 -5182215 L 742671.6 -5183318 L 744371.4 -5184689 L 744095.7 -5185384 L 743916.7 -5185666 L 743477.5 -5186168 L 742429.4 -5187719 L 740939.9 -5188718 L 740117.9 -5189950 L 739746.3 -5190020 L 739991.2 -5190423 L 739663.9 -5190637 L 736949.8 -5192157 L 736318.9 -5193140 L 736103.4 -5193077 L 735717.6 -5192996 L 735394.8 -5192772 L 735033.2 -5192793 L 734631.6 -5193745 L 733712.6 -5194319 L 733387.2 -5194504 L 731857.7 -5192999 L 731757.9 -5193352 L 730330.7 -5193615 L 730101.9 -5194138 L 730402 -5194576 L 730498.3 -5195502 L 730619.9 -5195817 L 730446 -5196149 L 729554.8 -5195589 L 728892.1 -5195935 L 728859.6 -5198086 L 728702.7 -5198425 L 728007.7 -5198535 L 726633.8 -5199751 L 726575 -5200839 L 726728.7 -5201174 L 727493.4 -5202323 L 727694.1 -5202603 L 727040.3 -5202842 L 725220.7 -5204059 L 724864 -5203999 L 724535.6 -5204149 L 724753.3 -5204427 L 726244.6 -5205880 L 726038.5 -5206109 L 725854.2 -5206957 L 725690.3 -5207246 L 725356.7 -5207250 L 725362.8 -5207330 L 725324.2 -5207712 L 724175.3 -5207759 L 723828.7 -5207753 L 723503.2 -5208593 L 723049.7 -5208006 L 721987.5 -5207672 L 721218 -5208326 L 721107.3 -5208701 L 721608.4 -5211372 L 721288.9 -5211354 L 720898.5 -5209922 L 719563.5 -5209298 L 718852.5 -5209489 L 718605 -5210215 L 718249.5 -5210282 L 716824.4 -5210504 L 715979.3 -5209895 L 715967.6 -5210200 L 715728.8 -5210656 L 715479.2 -5210479 L 715379.5 -5210850 L 715361.9 -5211234 L 715076.1 -5210997 L 713676.3 -5211315 L 713552.9 -5211972 L 713514.3 -5212347 L 713580.2 -5213828 L 713379.8 -5214555 L 713013.3 -5214645 L 712647.6 -5214512 L 712275.8 -5214395 L 712041.1 -5214085 L 712240.1 -5212946 L 711716 -5211912 L 711436.3 -5211690 L 710066.7 -5211299 L 709667.4 -5210709 L 709370.1 -5210830 L 708516.2 -5211197 L 708264.2 -5211489 L 707871.9 -5212573 L 708471.4 -5213043 L 708536.4 -5213799 L 707650.9 -5214547 L 707526.6 -5215271 L 708242.9 -5215432 L 709417.5 -5214437 L 711050.4 -5215474 L 710886.5 -5215816 L 710511.2 -5217661 L 710363.4 -5218002 L 709826.7 -5218974 L 709832.6 -5219684 L 710383.1 -5220182 L 711110.1 -5220040 L 711287.2 -5220748 L 711381.8 -5221072 L 712141.8 -5221694 L 712338.9 -5222319 L 712387.4 -5222696 L 713166.8 -5224429 L 714013.1 -5225169 L 713671.7 -5225313 L 712886.4 -5226097 L 712953 -5226463 L 712610.3 -5227104 L 712646.7 -5228217 L 712340.5 -5228450 L 711238.1 -5228779 L 710641.6 -5228312 L 710696.1 -5228646 L 710581 -5230306 L 710264.7 -5230446 L 709784.4 -5230815 L 708754.8 -5230869 L 708427.6 -5231137 L 708563.2 -5231475 L 708281.5 -5232097 L 706930.7 -5231592 L 707023.3 -5231937 L 706062.6 -5233377 L 705786.3 -5233456 L 705567.5 -5233916 L 705712.1 -5234232 L 705011.5 -5235384 L 705334.3 -5235621 L 705363.9 -5236002 L 703980.6 -5238259 L 703746.6 -5238560 L 704428.1 -5238921 L 704683.9 -5239213 L 706193.5 -5238603 L 706512.8 -5238485 L 707008.8 -5238673 L 707580.8 -5239529 L 707920.4 -5239588 L 708149.2 -5239977 L 709217.1 -5240170 L 709459.8 -5240456 L 710000.9 -5241416 L 710591 -5241576 L 710961.6 -5241563 L 712106.2 -5242170 L 712434.8 -5242222 L 713337.7 -5242561 L 713645.4 -5242662 L 714347.7 -5242812 L 714684.4 -5242944 L 715210.3 -5243747 L 715250.8 -5244069 L 716048.9 -5244671 L 716754.9 -5244545 L 717174.3 -5245121 L 717450.1 -5245352 L 718404.3 -5244299 L 718939.7 -5244670 L 718450.4 -5245889 L 718479.9 -5246217 L 719038.4 -5246677 L 720373 -5246128 L 720735.6 -5246081 L 721047.4 -5246297 L 720543.3 -5247692 L 720685 -5248044 L 721592.2 -5247819 L 721825.9 -5248026 L 721926.7 -5247708 L 723246.8 -5247535 L 723499.9 -5247319 L 723535 -5247314 L 724677.8 -5246340 L 725013.6 -5246508 L 725315.2 -5246562 L 725402 -5246271 L 725690.7 -5246434 L 725991.8 -5247705 L 726877.8 -5247288 L 727065.8 -5247002 L 728056.5 -5246949 L 728435.7 -5247387 L 729115.1 -5248310 L 729821.7 -5248576 L 730062.5 -5248873 L 730136.1 -5249247 L 730350.4 -5249150 L 730553.5 -5248974 L 731638.6 -5249110 L 732359 -5249922 L 732383.5 -5250289 L 732348.6 -5251192 L 732310.9 -5251493 L 733740.5 -5251458 L 733940 -5250774 L 733901.4 -5250403 L 733946.5 -5250391 L 734575.8 -5250508 L 734981.2 -5250979 L 735171.9 -5251246 L 734460.5 -5251993 L 734149.2 -5252154 L 734532.2 -5252356 L 734135.1 -5252889 L 734973.1 -5254020 L 734907.4 -5254366 L 735562.3 -5254091 L 735867 -5253449 L 737199.3 -5253270 L 737555 -5253306 L 737819.1 -5253733 L 738161.5 -5253596 L 738974 -5254303 L 739049.6 -5254664 L 739563.2 -5255144 L 740262.6 -5255226 L 740265.1 -5255579 L 739969.5 -5255530 L 739400.6 -5255670 L 738868.9 -5255940 L 738825.2 -5256274 L 739344.7 -5256700 L 740024.8 -5256529 L 740579.4 -5256950 L 740926.1 -5256974 L 741140.3 -5258321 L 741445.1 -5258488 L 741578 -5258217 L 741865.1 -5257894 L 742865.6 -5257513 L 743286.7 -5256921 L 743509.8 -5256633 L 744192.7 -5256318 L 744341.4 -5256654 L 743474.8 -5258218 L 743603.5 -5258560 L 744473.5 -5258040 L 744808.9 -5257892 L 745568 -5258350 L 745557.8 -5259003 L 745609.3 -5259339 L 745608.1 -5259992 L 745683.7 -5260309 L 746959 -5260129 L 747308.9 -5260315 L 747623.8 -5260558 L 747353.5 -5260739 L 747127.3 -5260972 L 747786.3 -5262263 L 747919 -5262614 L 748467.7 -5263070 L 748263.7 -5264173 L 748214.1 -5264545 L 748428.7 -5265477 L 748801.3 -5265359 L 749130.7 -5265148 L 749463.2 -5265002 L 749807.1 -5265118 L 750551.5 -5266553 L 750565 -5266895 L 750772.8 -5267187 L 751487.2 -5267164 L 751845 -5267186 L 752967.3 -5267961 L 753271.2 -5268129 L 753790.9 -5267890 L 754080.6 -5267928 L 754679.4 -5267610 L 754940.6 -5267387 L 755427.5 -5268766 L 756477.3 -5269204 L 756753.5 -5268941 L 756901.1 -5269135 L 757198.5 -5268980 L 757813.4 -5268708 L 759917.6 -5268487 L 760253.1 -5268320 L 760486.2 -5268026 L 761191.4 -5265536 L 761501.3 -5265732 L 761477.2 -5266464 L 763032.5 -5267933 L 763270.4 -5268212 L 763736.3 -5267330 L 764628.5 -5266764 L 764979.4 -5266845 L 765520.1 -5267245 L 765726.4 -5267884 L 767237.9 -5266504 L 767381.8 -5266183 L 767706.4 -5266869 L 768464.1 -5266893 L 768839.8 -5266825 L 769030.7 -5267150 L 769532.6 -5268508 L 769121.5 -5269870 L 769149 -5270226 L 769268.8 -5270604 L 768334.9 -5270790 L 769205.3 -5271890 L 769124.6 -5272243 L 770188.8 -5272097 L 770784.6 -5271680 L 771115.2 -5271529 L 771065.6 -5271187 L 771666.6 -5270883 L 772010.4 -5270922 L 772701.9 -5270825 L 773993.6 -5271353 L 774261.5 -5271594 L 774468.5 -5271927 L 774698.4 -5272245 L 775028.9 -5272797 L 775644.6 -5273747 L 775813.5 -5274090 L 775564.3 -5274390 L 774505.3 -5275509 L 774920.6 -5276495 L 775362.5 -5275696 L 777155.6 -5275589 L 777024.9 -5275314 L 776921.9 -5274726 L 778646.3 -5274236 L 779181.9 -5273723 L 779555.7 -5273672 L 779615.5 -5274197 L 779728.1 -5274449 L 779999.9 -5274568 L 781085 -5274220 L 781479.1 -5273570 L 781785.5 -5273344 L 782181.6 -5272734 L 782519.2 -5272594 L 783097.3 -5272346 L 783381.8 -5272208 L 783974.2 -5272152 L 784277.9 -5272102 L 785357.5 -5273554 L 785597.5 -5274633 L 785669.2 -5274997 L 786090.4 -5275130 L 786722.2 -5273832 L 786896.2 -5273515 L 787956.7 -5273402 L 789452.8 -5273664 L 789837.8 -5273661 L 790153.5 -5273635 L 791637.2 -5274387 L 791930.2 -5274570 L 792192.5 -5274323 L 792395.6 -5274026 L 793132.5 -5274034 L 793671.3 -5273579 L 793730 -5273217 L 793991.3 -5272947 L 794466.2 -5271942 L 793879.2 -5271542 L 794914.9 -5270838 L 795233.6 -5270772 L 795943.2 -5270611 L 796168.7 -5270584 L 796432.1 -5270335 L 796750.7 -5270160 L 796930.8 -5269843 L 796817.7 -5268486 L 797210.9 -5267108 L 796919.4 -5267270 L 796728.5 -5266998 L 796408.9 -5267159 L 795797 -5268378 L 795161.7 -5268614 L 794952.8 -5268344 L 794032.9 -5267933 L 794547.3 -5266490 L 794731.3 -5266155 L 794305.7 -5265766 L 794128.9 -5265529 L 795060.6 -5265055 L 795905.4 -5264020 L 796104.5 -5263729 L 796116.1 -5263391 L 796350.9 -5262764 L 796544.8 -5261562 L 796924.1 -5261446 L 796923.8 -5261446 z " |
id="path668" /> |
<path |
d="M 636842.3 -5115677 L 636833.5 -5116049 L 636879.4 -5117162 L 637718 -5118395 L 637733.6 -5119122 L 637829.5 -5120185 L 637916.9 -5120530 L 638086.4 -5121023 L 638297 -5121597 L 638850.2 -5122549 L 639019.5 -5124011 L 639012.8 -5124379 L 639015.1 -5124715 L 639423.1 -5125594 L 640040.3 -5126445 L 640155.6 -5126778 L 640515.7 -5129032 L 640605.1 -5129403 L 641212.8 -5130792 L 641962.8 -5132396 L 642088.2 -5132752 L 642015.4 -5134254 L 641986.7 -5134629 L 641856.2 -5135370 L 642404.1 -5137067 L 642743.9 -5137657 L 642935.3 -5137939 L 643088.7 -5138199 L 643544.8 -5138979 L 644543.4 -5140975 L 644633.6 -5142257 L 644693.9 -5142578 L 644761.6 -5143349 L 644790 -5143736 L 644782.3 -5144042 L 644782.1 -5144962 L 644855.6 -5145409 L 644968 -5145723 L 646318.6 -5147307 L 646461 -5147625 L 646466.5 -5149286 L 646419.7 -5149619 L 646416.8 -5149759 L 647380.5 -5151761 L 647462.9 -5152032 L 647516.2 -5152310 L 647663.9 -5152948 L 647799.3 -5153246 L 647885.5 -5153346 L 648841.6 -5153496 L 648867 -5152827 L 649294 -5152399 L 650044.9 -5152650 L 650591.2 -5153501 L 651369.1 -5153645 L 653390.5 -5153087 L 653710.9 -5153248 L 653875.2 -5152352 L 654019.1 -5152076 L 656872.5 -5150575 L 657173.6 -5150364 L 658125.8 -5150555 L 658451.1 -5150569 L 660244.2 -5151970 L 661606.2 -5151450 L 662830.4 -5152368 L 663209.9 -5152437 L 663737.2 -5153234 L 665522.8 -5152854 L 665603.3 -5154307 L 666840.9 -5153489 L 668347.3 -5153291 L 668536.2 -5152961 L 668296.7 -5152706 L 669028.4 -5151566 L 668831.5 -5150900 L 669332.6 -5150401 L 669534.8 -5149320 L 669528.4 -5148942 L 670261.2 -5148932 L 670954.2 -5148098 L 671188.2 -5147816 L 671764.1 -5148129 L 672085.3 -5148019 L 672743.3 -5147205 L 673776.3 -5147051 L 674090.5 -5146879 L 676929.6 -5146762 L 677843.8 -5144811 L 676935.2 -5144190 L 677162.6 -5143353 L 676851.1 -5143231 L 676200.4 -5143225 L 676935.8 -5142706 L 678887 -5141593 L 679966.3 -5141593 L 681179.8 -5140627 L 681461 -5140447 L 681715 -5140160 L 682310.3 -5139766 L 682109.8 -5139470 L 681354.2 -5138709 L 681241.7 -5138366 L 682269 -5137469 L 682224.6 -5137109 L 682148.2 -5136761 L 682067.8 -5136415 L 684371.9 -5134695 L 684303.5 -5134324 L 684553.4 -5132819 L 684541 -5132429 L 684544.9 -5132329 L 684755.6 -5131796 L 685038.9 -5131715 L 685443.9 -5135479 L 685936 -5136036 L 686988.2 -5132817 L 687092 -5132449 L 688417 -5132811 L 688896.1 -5133323 L 689222.6 -5133453 L 689730.5 -5132690 L 690029.8 -5132572 L 689947.4 -5132213 L 689428.8 -5130092 L 688857.8 -5129772 L 688801.3 -5128249 L 689884.7 -5127214 L 690203.9 -5127003 L 692061.6 -5127394 L 692287.1 -5127625 L 692680.1 -5127112 L 692982.4 -5126997 L 695119.6 -5127572 L 696622.1 -5129246 L 696774.6 -5129591 L 696991.6 -5130286 L 698371.5 -5130384 L 698731.9 -5130316 L 699532.6 -5130942 L 700011.5 -5132239 L 700220 -5132450 L 700076.1 -5132708 L 700575.2 -5134162 L 702271.3 -5134974 L 702441.9 -5135324 L 703083.5 -5136053 L 703343.3 -5135450 L 703400 -5135107 L 703086.5 -5134050 L 704875.9 -5134013 L 705800.6 -5133437 L 706047.7 -5133162 L 706163.3 -5132616 L 708482.3 -5132380 L 708874.3 -5130862 L 708693.5 -5129309 L 709187.3 -5127415 L 709477.4 -5127148 L 709818 -5127299 L 710120.6 -5127514 L 712258.1 -5127966 L 712597.7 -5128109 L 716280.6 -5127715 L 716646.1 -5127647 L 716950.5 -5127562 L 717265.9 -5127542 L 719146.8 -5127609 L 719904.8 -5128423 L 720434.6 -5128380 L 720562.4 -5128025 L 722245.1 -5130157 L 722437.8 -5130499 L 723571.3 -5130246 L 724054.1 -5131249 L 724219.3 -5133087 L 724739.6 -5133605 L 725634.6 -5133194 L 725961.1 -5133150 L 726139.7 -5133484 L 728382.8 -5137804 L 729023.3 -5139201 L 731220.6 -5140770 L 732527.2 -5142167 L 734105.7 -5144819 L 734677.4 -5145520 L 735530.3 -5145223 L 735693.3 -5144850 L 738469.3 -5143416 L 739762.6 -5142497 L 741071.3 -5141172 L 741962.6 -5139895 L 742443.9 -5138958 L 742118.2 -5137878 L 740930.3 -5135969 L 739800.5 -5134246 L 739639.6 -5132543 L 738899 -5131523 L 738524.7 -5131179 L 738545.7 -5129954 L 739510.6 -5128235 L 739576.7 -5127577 L 739192.4 -5127079 L 737275.1 -5126324 L 737014.5 -5126375 L 735094.5 -5125901 L 733997.1 -5124871 L 732633.2 -5125221 L 730888 -5124279 L 730256 -5123193 L 729201.3 -5122755 L 729019.4 -5122277 L 728157.2 -5120938 L 728342.1 -5120369 L 728833.1 -5120060 L 730012.8 -5120031 L 729881.2 -5118530 L 728688.4 -5115394 L 728414.6 -5114946 L 728380.6 -5113947 L 727798.3 -5113525 L 727547.7 -5113324 L 726335.6 -5113087 L 725640.5 -5112988 L 725046.9 -5113304 L 724029.4 -5112321 L 723270 -5111985 L 722979.4 -5111880 L 722490.7 -5110828 L 723082.3 -5109474 L 722869.9 -5108344 L 721042 -5108097 L 720242.9 -5108194 L 719981.8 -5108465 L 718806.4 -5109907 L 718132.7 -5110228 L 717453.4 -5109900 L 717578.2 -5108454 L 716839.9 -5107061 L 716789.5 -5106686 L 716636.9 -5105194 L 716870 -5104981 L 717090.9 -5104481 L 716619.1 -5103300 L 716707.9 -5103005 L 716842.3 -5102099 L 716944.1 -5101762 L 717106.7 -5101091 L 716609.2 -5100177 L 716722.1 -5099874 L 717031.1 -5099349 L 716964.7 -5099025 L 717060.6 -5097709 L 717249.2 -5096967 L 718990.2 -5095405 L 718994.9 -5095020 L 718934.1 -5094256 L 719129.4 -5093217 L 718707.7 -5091888 L 718439.1 -5091656 L 718783.5 -5091568 L 718322.3 -5090981 L 718281.6 -5090250 L 718855.2 -5088904 L 718658 -5087796 L 718559.6 -5087426 L 717894.5 -5084824 L 717366.2 -5082964 L 717211.7 -5082652 L 716925.2 -5081299 L 716871.8 -5080936 L 716578.3 -5079506 L 715910.8 -5078753 L 715797.3 -5078398 L 715828.3 -5075860 L 715805 -5075491 L 715641.6 -5074032 L 715549.2 -5073715 L 715803 -5073107 L 715782.7 -5072715 L 715580.5 -5071570 L 715949.8 -5070082 L 715712.3 -5069819 L 715418.9 -5069771 L 714884.1 -5069556 L 715016 -5069198 L 715345.3 -5067777 L 714473.7 -5067057 L 713750.8 -5065734 L 713030.8 -5065650 L 712014.8 -5066046 L 711739.4 -5065938 L 711396.9 -5065804 L 709623.8 -5065941 L 709580.5 -5065600 L 709911.2 -5064639 L 710121.2 -5064307 L 710411 -5063577 L 710242.2 -5062821 L 708618 -5061133 L 708528.3 -5060372 L 708839.2 -5059655 L 708976.2 -5059307 L 708879.6 -5058581 L 708639.1 -5058290 L 708000.1 -5057894 L 706171.8 -5057678 L 705855.7 -5056637 L 705719.3 -5056337 L 705099.4 -5056124 L 704959.8 -5055494 L 704901.5 -5055119 L 704282.6 -5054760 L 703990.4 -5055002 L 703820.4 -5055341 L 703257.4 -5056327 L 702402.2 -5057495 L 702148.2 -5059313 L 700547 -5060296 L 700305.9 -5060589 L 700336.2 -5060955 L 699378.5 -5061496 L 699049.2 -5061600 L 698444.3 -5061300 L 698164.1 -5061502 L 698022.6 -5062426 L 697774.5 -5062719 L 697741.5 -5064200 L 698458.2 -5064088 L 699215.2 -5062806 L 699866.2 -5063124 L 699789.6 -5063862 L 698175.4 -5064789 L 698105.9 -5065523 L 697843.7 -5065759 L 697539.5 -5065938 L 696111 -5066099 L 695888 -5066411 L 695296.3 -5067819 L 695035.2 -5068055 L 693744.6 -5069236 L 693460.4 -5069473 L 692613 -5070189 L 690692.8 -5072908 L 689901.4 -5073542 L 689630.2 -5073751 L 689412.2 -5074071 L 688984.2 -5074716 L 688712.1 -5074970 L 687650.7 -5076015 L 687612 -5077856 L 688644.4 -5078186 L 688594.6 -5078561 L 688432.6 -5078837 L 688160.5 -5079124 L 687180.9 -5079779 L 687033.3 -5080542 L 686887.4 -5080855 L 686077 -5081494 L 684228.8 -5082582 L 683988.7 -5082849 L 683731.7 -5083139 L 682153.9 -5084252 L 681073.6 -5083967 L 680913.3 -5083739 L 680676.7 -5083236 L 680608.3 -5082874 L 680315.5 -5082196 L 679064.7 -5081433 L 678194 -5080281 L 677397.8 -5076880 L 677378.5 -5076486 L 677248.1 -5076131 L 676455.8 -5075325 L 675612.9 -5073676 L 675324.5 -5073483 L 674752.7 -5073088 L 674448.2 -5072901 L 673575 -5072283 L 673274.5 -5072032 L 672367.2 -5071300 L 670482.6 -5071533 L 670121.2 -5071492 L 669533.9 -5071849 L 669452.3 -5072570 L 669254.4 -5072915 L 668619.5 -5073920 L 668276.3 -5074086 L 667095.8 -5074969 L 666030.9 -5075090 L 665667.7 -5075238 L 664226.8 -5075823 L 663554 -5075562 L 663653.4 -5074478 L 663309 -5074348 L 662653.5 -5075975 L 662324.2 -5075882 L 661996.9 -5075785 L 661607.6 -5075770 L 659329.5 -5075501 L 659023.4 -5075677 L 658324.8 -5075684 L 657752.1 -5075284 L 656427.9 -5075113 L 656119.5 -5074936 L 655779.2 -5074885 L 654903.8 -5075405 L 654576.4 -5075288 L 654266.1 -5075129 L 653294.2 -5074887 L 652515.7 -5075039 L 652243.6 -5075215 L 651046.6 -5075154 L 650681.4 -5075216 L 648961.7 -5074575 L 648485.7 -5075154 L 648525.1 -5077392 L 648621.4 -5077755 L 648432.5 -5078074 L 648187 -5079153 L 646960.9 -5080476 L 647005.1 -5080809 L 647573.5 -5082325 L 647212.3 -5082362 L 645603.4 -5082930 L 645547.6 -5083310 L 645316.4 -5084831 L 645055.2 -5084770 L 644657.7 -5084411 L 644643.9 -5084770 L 644524.3 -5085473 L 643150.5 -5085888 L 642826.6 -5086512 L 642468.2 -5086359 L 639460 -5084595 L 639372 -5084785 L 639853.2 -5086095 L 639762.7 -5087043 L 639599.8 -5087316 L 638137.9 -5087588 L 637970 -5087907 L 637251.3 -5089154 L 636563.8 -5089190 L 635949.1 -5088807 L 635613.8 -5088758 L 634651.3 -5089047 L 634297.1 -5089089 L 633669.9 -5089399 L 633521.5 -5090463 L 634639.9 -5091541 L 634902.3 -5091829 L 635029.5 -5092062 L 635184.8 -5092394 L 635351.4 -5093104 L 634906.7 -5095600 L 634808.1 -5096311 L 634844.2 -5096420 L 634828.5 -5096800 L 634414.2 -5098249 L 634587.8 -5098990 L 634604.2 -5099613 L 634511.3 -5099910 L 634014.8 -5101259 L 635280.6 -5102517 L 635488 -5102815 L 635679.6 -5103514 L 635618.8 -5103847 L 635227.2 -5104784 L 634705.1 -5105155 L 634560.7 -5106144 L 635248.7 -5106928 L 635478.1 -5107198 L 635660.4 -5107412 L 636000 -5107863 L 636325.9 -5108775 L 636356.2 -5109105 L 637271.8 -5110312 L 637515.2 -5110604 L 637941 -5111226 L 638148.4 -5111539 L 638616.2 -5113469 L 638411.3 -5113803 L 637764.1 -5114245 L 637176 -5114760 L 637017.1 -5115120 L 636842.4 -5115676 L 636842.3 -5115677 z " |
id="path669" /> |
<path |
d="M 794859.6 -5077078 L 794678.2 -5077074 L 793482.6 -5076105 L 791628.2 -5075669 L 790562.3 -5074049 L 790406.2 -5073289 L 788307.1 -5070592 L 787964.5 -5070756 L 786546.9 -5071098 L 787169.9 -5072826 L 786206.1 -5073955 L 786344.1 -5074672 L 786401.4 -5075804 L 785276.1 -5076805 L 783822.3 -5078976 L 783479.6 -5078905 L 782084.7 -5078886 L 781769.9 -5078712 L 779363.6 -5078205 L 779182 -5077896 L 778835.4 -5078022 L 778030.6 -5078763 L 777397 -5080412 L 776717.9 -5080625 L 776452.1 -5080369 L 776167.8 -5080632 L 775403.2 -5081504 L 774626.2 -5084044 L 773878.1 -5085400 L 776039.5 -5085601 L 776413.3 -5085608 L 776428.8 -5087033 L 776709.6 -5087281 L 776532.6 -5087597 L 776262.4 -5087865 L 775602.5 -5088239 L 775375.8 -5088946 L 773513.5 -5089279 L 772177.5 -5089902 L 771766.3 -5090542 L 771535.6 -5090219 L 770634.1 -5088492 L 768847.9 -5087651 L 767958 -5085454 L 767313.4 -5085036 L 767607.3 -5084390 L 767032.4 -5083534 L 766949.9 -5083185 L 767159 -5082908 L 767309.7 -5082269 L 766945.4 -5081690 L 766062.5 -5080422 L 765549.8 -5078568 L 765212 -5078376 L 764835.7 -5077746 L 763387.1 -5076679 L 763205.5 -5076358 L 760954.6 -5074377 L 761679.7 -5074176 L 761720.7 -5073088 L 761579.1 -5072733 L 761336.4 -5072473 L 759880.4 -5070907 L 760131.6 -5070673 L 760183.1 -5070060 L 760182.1 -5070040 L 759825.9 -5069409 L 759687.3 -5069056 L 758734.1 -5066229 L 756989.8 -5065868 L 756640.1 -5065690 L 754876.4 -5064875 L 753336 -5065012 L 753150.4 -5064667 L 752022.6 -5064790 L 750944.6 -5064468 L 751003.6 -5066709 L 750729.3 -5066837 L 750455 -5066969 L 749623 -5067346 L 749524.2 -5066625 L 748576.3 -5066154 L 748285.2 -5065488 L 747979.9 -5065683 L 747833.1 -5068510 L 747901.5 -5068851 L 748061.7 -5069878 L 747071.1 -5069941 L 746862 -5070210 L 746660.8 -5071470 L 746315.2 -5071453 L 745674.4 -5071693 L 745678 -5072382 L 745292.4 -5072446 L 743426.8 -5072916 L 743217.9 -5072229 L 742585.5 -5071807 L 740735.7 -5073043 L 740678.3 -5072683 L 740804.3 -5070153 L 740399.3 -5069712 L 740365.5 -5070053 L 740278.9 -5070733 L 739900.5 -5070840 L 738799.5 -5070465 L 737058.6 -5071312 L 736101.2 -5070173 L 735763.8 -5070340 L 733353.1 -5071340 L 732296.2 -5070964 L 732235.4 -5071323 L 732466.6 -5072383 L 732267.6 -5072689 L 731942.2 -5072820 L 730671.7 -5073236 L 730582.8 -5073591 L 731245.8 -5074867 L 731065.7 -5076307 L 730715.2 -5076253 L 729323 -5076101 L 729262.2 -5076444 L 729617.1 -5078093 L 729230.5 -5078005 L 728474.2 -5077802 L 727382 -5078216 L 727327.6 -5077847 L 726564.9 -5077128 L 725856.8 -5076987 L 725678.8 -5077326 L 725107.4 -5077822 L 724984.5 -5079345 L 723476.4 -5079375 L 723205.5 -5079929 L 722929.3 -5080194 L 722568.2 -5080754 L 722760 -5081422 L 722678.6 -5083467 L 722626.8 -5083862 L 721819.7 -5087357 L 721715.1 -5087952 L 721423.9 -5089337 L 721661.5 -5089602 L 721575.7 -5089967 L 721320.3 -5091064 L 719629.9 -5091015 L 718783.2 -5091569 L 718438.8 -5091657 L 718707.4 -5091889 L 719129.1 -5093218 L 718933.8 -5094257 L 718994.6 -5095021 L 718989.9 -5095405 L 717248.9 -5096968 L 717060.3 -5097710 L 716964.4 -5099026 L 717030.8 -5099350 L 716721.8 -5099875 L 716608.9 -5100177 L 717106.4 -5101092 L 716943.8 -5101762 L 716842 -5102099 L 716707.6 -5103005 L 716618.8 -5103301 L 717090.6 -5104481 L 716869.7 -5104981 L 716636.6 -5105194 L 716789.2 -5106687 L 716839.6 -5107062 L 717577.9 -5108455 L 717453.1 -5109900 L 718132.4 -5110229 L 718806.1 -5109907 L 719981.5 -5108465 L 720242.6 -5108195 L 721041.7 -5108098 L 722869.6 -5108344 L 723082 -5109475 L 722490.4 -5110829 L 722979.1 -5111880 L 723269.7 -5111985 L 724029.1 -5112322 L 725046.6 -5113305 L 725640.2 -5112988 L 726335.3 -5113088 L 727547.4 -5113325 L 727798 -5113526 L 728380.3 -5113947 L 728414.3 -5114947 L 728688.1 -5115394 L 729219.4 -5115192 L 731999.9 -5115240 L 733371.4 -5114815 L 734112.7 -5114812 L 734866.1 -5115961 L 735462.9 -5116635 L 736950.7 -5116324 L 738332.1 -5116309 L 741072.5 -5115995 L 742334.5 -5117169 L 744897 -5118371 L 746443.3 -5120591 L 748366 -5122758 L 751641.7 -5124237 L 752461.3 -5124728 L 753283.9 -5125463 L 753659.6 -5126280 L 754013 -5127407 L 753842.8 -5128523 L 753501.1 -5128616 L 753022.5 -5129309 L 752170.2 -5128637 L 751135.8 -5127996 L 750346.3 -5128223 L 749316.9 -5129391 L 749807.4 -5129879 L 749838.5 -5130126 L 749478.9 -5131353 L 748907 -5132500 L 748924.8 -5132530 L 749387.8 -5133777 L 750032.4 -5134479 L 750092.2 -5134685 L 750470.1 -5135979 L 751579.9 -5137647 L 752015 -5138917 L 753243.5 -5140126 L 754744 -5140965 L 756333 -5141158 L 757088.1 -5141002 L 757519.9 -5140508 L 758219 -5138865 L 759136.8 -5138357 L 759433.8 -5138192 L 759522.2 -5138073 L 760420.3 -5138079 L 760542.8 -5138071 L 761351.6 -5139174 L 761894.9 -5139355 L 762267.8 -5140220 L 763496.9 -5140433 L 763990.3 -5140608 L 764949.8 -5140960 L 766559.3 -5141962 L 766734.6 -5142195 L 767092.6 -5142500 L 767458.5 -5144150 L 768054.5 -5144687 L 769501 -5145473 L 770640.3 -5145304 L 771567.3 -5144961 L 771602 -5145002 L 773219.5 -5145022 L 777425 -5146002 L 777981.8 -5146132 L 778144.3 -5146152 L 779065.7 -5146265 L 781450.6 -5146143 L 781487.2 -5146148 L 782313.1 -5146259 L 785000.5 -5146621 L 787213.6 -5146176 L 788340.6 -5146204 L 788459.2 -5146222 L 790444.1 -5145562 L 791074.1 -5145331 L 792153 -5145514 L 792818.9 -5145302 L 792841 -5144980 L 792632.4 -5144464 L 792627.4 -5144222 L 792830.1 -5143822 L 792917.1 -5143573 L 792944.8 -5143346 L 792718 -5143034 L 792472.2 -5142769 L 792096.8 -5142076 L 791113.4 -5141885 L 790936.1 -5141755 L 789513.2 -5141541 L 789270.6 -5141158 L 789438.2 -5140511 L 790446.6 -5139384 L 791416.1 -5138894 L 791581.5 -5138016 L 792169.1 -5137512 L 792824.7 -5137348 L 793564.5 -5136604 L 794015 -5136445 L 794507 -5135370 L 796190.7 -5134644 L 796624.4 -5133895 L 796217 -5131092 L 795170.7 -5129299 L 794144.2 -5128327 L 793662.1 -5126769 L 793240.2 -5125883 L 793135.3 -5124389 L 793536.9 -5122179 L 793244 -5121536 L 792020 -5120236 L 791502.1 -5119034 L 791632.2 -5117743 L 792060.4 -5117300 L 793566.8 -5116556 L 796677.2 -5116894 L 797636.8 -5116761 L 800186 -5116326 L 800619.2 -5115833 L 800657.7 -5115197 L 800516.9 -5114057 L 800257 -5113085 L 800553.8 -5112169 L 799484.8 -5110092 L 799414.8 -5109011 L 799734.5 -5108122 L 800521.8 -5107920 L 801174.8 -5108037 L 802967.6 -5110544 L 803569.8 -5110656 L 804224.1 -5109238 L 804913.5 -5108759 L 805736.1 -5108188 L 806446.1 -5106725 L 807877.5 -5105206 L 808400 -5104082 L 809735 -5103014 L 811139.4 -5100495 L 810148.2 -5099168 L 810297.8 -5098697 L 810921 -5098350 L 812343.8 -5098186 L 812966.9 -5097839 L 813218.3 -5096866 L 812879.9 -5095656 L 812876.8 -5094967 L 812875.6 -5094683 L 812559.6 -5094012 L 811201.1 -5092520 L 811211.3 -5092419 L 810910.8 -5091339 L 811015.5 -5090046 L 810730.1 -5089071 L 809874.8 -5088422 L 808639.4 -5088247 L 807247.4 -5087596 L 806587 -5087043 L 805450.4 -5086648 L 804780.2 -5085685 L 803448.8 -5085194 L 801938 -5084199 L 800728.2 -5083770 L 800298 -5083216 L 800399.2 -5083226 L 799987.1 -5082238 L 799055.6 -5082094 L 797353.9 -5082741 L 796232.4 -5082706 L 795288.4 -5082176 L 794871.4 -5080983 L 795114.9 -5080342 L 794859.1 -5077078 L 794859.6 -5077078 z " |
id="path670" /> |
<path |
d="M 794859.6 -5077078 L 794745.6 -5075625 L 794989.5 -5073961 L 795671 -5073031 L 796072.1 -5070564 L 797141.1 -5069086 L 798580 -5067491 L 800327.6 -5066130 L 800317.4 -5066232 L 802049.4 -5066047 L 802725.3 -5066192 L 803145.7 -5065825 L 804207.7 -5063399 L 804914.4 -5062983 L 806296.8 -5063224 L 806960.1 -5063495 L 808254.1 -5063343 L 809647.1 -5062715 L 811523.2 -5063134 L 811571.5 -5062652 L 811381.9 -5061994 L 809693.5 -5060980 L 809678.4 -5060876 L 809377.5 -5059798 L 809570.9 -5057617 L 809540.8 -5056897 L 810633.2 -5054423 L 810385.8 -5052556 L 810520.4 -5051470 L 811118.4 -5050352 L 812027.7 -5049957 L 812455.9 -5049258 L 813008.6 -5047573 L 814082.5 -5046811 L 815908.4 -5046712 L 815918.6 -5046610 L 816627.7 -5046426 L 816701.3 -5045947 L 816309.1 -5045268 L 816453.6 -5044591 L 816955.1 -5044182 L 818900 -5044427 L 819943.6 -5043969 L 820587.4 -5042396 L 822128 -5040297 L 823237.4 -5039437 L 824724.4 -5038894 L 824739.6 -5038743 L 825889.8 -5037988 L 826832 -5037775 L 827171.7 -5036939 L 827068.1 -5036186 L 826966.8 -5036176 L 825432.7 -5033874 L 825276.2 -5032118 L 824944.5 -5031598 L 824164.5 -5031469 L 823797.4 -5031049 L 823473.7 -5029430 L 822108.7 -5028500 L 821972.2 -5027310 L 822676.5 -5026407 L 822816.1 -5025270 L 824039.8 -5023268 L 823705.9 -5021751 L 823906.2 -5020773 L 823435.2 -5019856 L 822128.4 -5019367 L 821505.5 -5018179 L 820652.1 -5017761 L 819849.4 -5016325 L 819421.4 -5016001 L 817671.1 -5016620 L 816245.4 -5015786 L 814427 -5015554 L 813804 -5015644 L 812269.2 -5014622 L 811134.6 -5014202 L 810524.4 -5013654 L 810385.2 -5012745 L 809661 -5011803 L 809762.2 -5011813 L 809526.7 -5010842 L 809020.3 -5010280 L 807440 -5009714 L 805439.3 -5009258 L 804968.4 -5008597 L 804849.2 -5007741 L 805241.9 -5006885 L 804887.4 -5006337 L 803892 -5006059 L 802922.1 -5005527 L 801830.6 -5005444 L 800161.7 -5006020 L 798925.8 -5007125 L 795390.7 -5007694 L 794843.6 -5007536 L 794000.4 -5005995 L 793276.1 -5005564 L 792412.6 -5005504 L 791219.9 -5006178 L 789969 -5005900 L 788763.5 -5005422 L 787082.1 -5003310 L 784746.5 -5002427 L 784732.7 -5002441 L 783650.4 -5003406 L 781804 -5003127 L 780729.4 -5003513 L 780508.8 -5003224 L 779781 -5002439 L 779614.2 -5001707 L 777974.7 -5000768 L 777208.3 -5000683 L 775596.3 -5001717 L 775401.8 -5001374 L 773541.8 -4999937 L 774076 -4997330 L 774013.9 -4995796 L 773625.2 -4995761 L 771358.2 -4995232 L 769869.5 -4996350 L 768734.5 -4996102 L 767600.9 -4996392 L 766882.6 -4996109 L 764323.1 -4996911 L 765032 -4998290 L 763989.9 -5000775 L 761665.5 -5002669 L 761574.1 -5002296 L 760362.7 -5001389 L 758513.6 -5000947 L 757190 -5001592 L 755851.8 -5002863 L 756041.5 -5003606 L 756109.1 -5004352 L 755260.3 -5005155 L 754518.3 -5005231 L 752752.3 -5004486 L 751568.5 -5006001 L 749423.9 -5006828 L 748530.9 -5005600 L 748193.4 -5005478 L 747925.9 -5005240 L 746544.1 -5005568 L 746778.6 -5005877 L 746701.9 -5006624 L 747745.6 -5008646 L 747821.2 -5009384 L 747531.7 -5010923 L 745966.2 -5012050 L 745935.8 -5013188 L 745036 -5013945 L 744860.5 -5015103 L 744732.5 -5015473 L 745796.3 -5017463 L 745233.1 -5018444 L 745046 -5020338 L 745821.7 -5021201 L 745715.8 -5021574 L 746606.4 -5022149 L 746953.6 -5023127 L 748649.5 -5023807 L 749020.1 -5023837 L 749027 -5025216 L 749216.5 -5025526 L 749471.4 -5026264 L 749676.7 -5027678 L 749347.3 -5027849 L 748244.7 -5027951 L 747705.2 -5028410 L 748098.8 -5028427 L 749255.2 -5029414 L 747980.3 -5032264 L 745592.2 -5034302 L 744254.9 -5036667 L 743550.1 -5037000 L 742101.6 -5036431 L 741809.1 -5036272 L 741479.6 -5036226 L 741470.9 -5036608 L 741418.4 -5037366 L 741077 -5037540 L 740732.4 -5037421 L 740005.3 -5037414 L 739282.3 -5037474 L 738305.6 -5037068 L 737912.8 -5036726 L 737586.5 -5036905 L 734602.4 -5038411 L 734731.8 -5038679 L 734862.2 -5038947 L 734639.1 -5039267 L 734624.9 -5040400 L 733135.1 -5040816 L 732246.8 -5042069 L 731573.2 -5042442 L 727319.3 -5040639 L 727284.2 -5040620 L 727444.2 -5040268 L 728102.4 -5039366 L 727821.5 -5037078 L 727274.1 -5036071 L 726608 -5035688 L 726650.9 -5035432 L 726614.6 -5033473 L 727245.3 -5033250 L 727901.5 -5033693 L 728144.5 -5033271 L 727277.3 -5031485 L 726002.2 -5030739 L 725727.9 -5030867 L 725396.4 -5032316 L 721242.3 -5034147 L 721192.2 -5034144 L 720808.8 -5034229 L 719351.3 -5034653 L 718128.7 -5036018 L 717029.6 -5036318 L 715544.6 -5036056 L 715345.2 -5035732 L 715112.8 -5035564 L 714755.4 -5035568 L 713720.3 -5035809 L 713640.4 -5036172 L 713052.5 -5037470 L 713320.2 -5039605 L 713093.1 -5039899 L 711964.4 -5040842 L 711921.5 -5041169 L 711459.8 -5042390 L 711300.8 -5042730 L 710374.9 -5044597 L 710165.7 -5044725 L 709947.5 -5044836 L 709594.2 -5045029 L 709658.5 -5045370 L 709560.6 -5045703 L 708458.5 -5046011 L 708031.7 -5047007 L 708115 -5047384 L 708391.2 -5047192 L 708726.6 -5047174 L 708089.5 -5048109 L 708224.9 -5048423 L 707908.7 -5048624 L 707878.1 -5049363 L 705929 -5051040 L 705828.3 -5051693 L 705353 -5052145 L 705161 -5052416 L 704052.8 -5053906 L 703912.1 -5054637 L 703990.5 -5055004 L 704282.7 -5054762 L 704901.6 -5055120 L 704959.9 -5055496 L 705099.5 -5056126 L 705719.4 -5056339 L 705855.8 -5056638 L 706171.9 -5057680 L 708000.2 -5057896 L 708639.2 -5058292 L 708879.7 -5058582 L 708976.3 -5059309 L 708839.3 -5059657 L 708528.4 -5060374 L 708618.1 -5061135 L 710242.3 -5062823 L 710411.1 -5063579 L 710121.3 -5064309 L 709911.3 -5064641 L 709580.6 -5065602 L 709623.9 -5065942 L 711397 -5065806 L 711739.5 -5065940 L 712014.9 -5066048 L 713030.9 -5065652 L 713750.9 -5065736 L 714473.8 -5067059 L 715345.4 -5067778 L 715016.1 -5069200 L 714884.2 -5069558 L 715419 -5069773 L 715712.4 -5069820 L 715949.9 -5070084 L 715580.6 -5071572 L 715782.8 -5072717 L 715803.1 -5073108 L 715549.3 -5073717 L 715641.7 -5074034 L 715805.1 -5075493 L 715828.4 -5075861 L 715797.4 -5078400 L 715910.9 -5078754 L 716578.4 -5079508 L 716871.9 -5080938 L 716925.3 -5081300 L 717211.8 -5082654 L 717366.3 -5082966 L 717894.6 -5084826 L 718559.7 -5087427 L 718658.1 -5087797 L 718855.3 -5088906 L 718281.7 -5090252 L 718322.4 -5090983 L 718783.6 -5091570 L 719630.3 -5091016 L 721320.7 -5091065 L 721576.1 -5089968 L 721661.9 -5089603 L 721424.3 -5089338 L 721715.5 -5087953 L 721820.1 -5087358 L 722627.2 -5083863 L 722679 -5083468 L 722760.4 -5081423 L 722568.6 -5080755 L 722929.7 -5080195 L 723205.9 -5079930 L 723476.8 -5079376 L 724984.9 -5079346 L 725107.8 -5077823 L 725679.2 -5077327 L 725857.2 -5076988 L 726565.3 -5077129 L 727328 -5077848 L 727382.4 -5078217 L 728474.6 -5077803 L 729230.9 -5078006 L 729617.5 -5078094 L 729262.6 -5076445 L 729323.4 -5076102 L 730715.6 -5076255 L 731066.1 -5076308 L 731246.2 -5074868 L 730583.2 -5073592 L 730672.1 -5073237 L 731942.6 -5072821 L 732268 -5072690 L 732467 -5072385 L 732235.8 -5071324 L 732296.6 -5070965 L 733353.5 -5071342 L 735764.2 -5070341 L 736101.6 -5070174 L 737059 -5071313 L 738799.9 -5070466 L 739900.9 -5070841 L 740279.3 -5070734 L 740365.9 -5070054 L 740399.7 -5069713 L 740804.7 -5070154 L 740678.7 -5072684 L 740736.1 -5073044 L 742585.9 -5071808 L 743218.3 -5072230 L 743427.2 -5072917 L 745292.8 -5072447 L 745678.4 -5072383 L 745674.8 -5071694 L 746315.6 -5071454 L 746661.2 -5071471 L 746862.4 -5070211 L 747071.5 -5069942 L 748062.1 -5069879 L 747901.9 -5068852 L 747833.5 -5068512 L 747980.3 -5065684 L 748285.6 -5065489 L 748576.7 -5066155 L 749524.6 -5066626 L 749623.4 -5067347 L 750455.4 -5066970 L 750729.7 -5066838 L 751004 -5066710 L 750945 -5064469 L 752023 -5064791 L 753150.8 -5064668 L 753336.4 -5065013 L 754876.8 -5064877 L 756640.5 -5065691 L 756990.2 -5065869 L 758734.5 -5066230 L 759687.7 -5069057 L 759826.3 -5069410 L 760182.5 -5070041 L 760183.5 -5070061 L 760132 -5070674 L 759880.8 -5070909 L 761336.8 -5072474 L 761579.5 -5072734 L 761721.1 -5073089 L 761680.1 -5074177 L 760955 -5074378 L 763205.9 -5076359 L 763387.5 -5076680 L 764836.1 -5077747 L 765212.4 -5078377 L 765550.2 -5078569 L 766062.9 -5080423 L 766945.8 -5081691 L 767310.1 -5082270 L 767159.4 -5082910 L 766950.3 -5083186 L 767032.8 -5083535 L 767607.7 -5084391 L 767313.8 -5085037 L 767958.4 -5085455 L 768848.3 -5087652 L 770634.5 -5088493 L 771536 -5090220 L 771766.7 -5090543 L 772177.9 -5089903 L 773513.9 -5089280 L 775376.2 -5088948 L 775602.9 -5088240 L 776262.8 -5087866 L 776533 -5087598 L 776710 -5087282 L 776429.2 -5087034 L 776413.7 -5085609 L 776039.9 -5085602 L 773878.5 -5085401 L 774626.6 -5084045 L 775403.6 -5081505 L 776168.2 -5080633 L 776452.5 -5080370 L 776718.3 -5080626 L 777397.4 -5080413 L 778031 -5078764 L 778835.8 -5078023 L 779182.4 -5077897 L 779364 -5078206 L 781770.3 -5078713 L 782085.1 -5078887 L 783480 -5078906 L 783822.7 -5078977 L 785276.5 -5076807 L 786401.8 -5075806 L 786344.5 -5074673 L 786206.5 -5073956 L 787170.3 -5072827 L 786547.3 -5071099 L 787964.9 -5070757 L 788307.5 -5070593 L 790406.6 -5073290 L 790562.7 -5074051 L 791628.6 -5075670 L 793483 -5076106 L 794678.6 -5077075 L 794860 -5077079 L 794859.6 -5077078 z " |
id="path671" /> |
<path |
d="M 721378 -4954836 L 722129.8 -4955669 L 722661.7 -4957536 L 723446.7 -4958874 L 723167.8 -4960395 L 723198.9 -4960784 L 724314.9 -4960454 L 724885.3 -4959936 L 726429.9 -4959933 L 727485.9 -4959508 L 727869.3 -4959573 L 728444.1 -4960514 L 729151.9 -4960810 L 730548.2 -4960281 L 731940 -4961516 L 732676.7 -4961307 L 733018 -4961133 L 733068.3 -4962112 L 733131.5 -4962437 L 734937.8 -4963441 L 735236.2 -4963612 L 735161.2 -4963974 L 734998.2 -4964694 L 732852.2 -4965778 L 732706.1 -4966115 L 734719.8 -4967529 L 734994.2 -4967763 L 736903.5 -4968032 L 737852.2 -4969728 L 738947.6 -4970082 L 740780.9 -4967825 L 741120.3 -4967687 L 743942.6 -4970082 L 744253.1 -4970301 L 745473 -4971159 L 746766.4 -4973099 L 748955.1 -4972716 L 749537.6 -4972217 L 749910.1 -4972099 L 751700.7 -4972654 L 751992.2 -4972914 L 754610.4 -4972244 L 756170.6 -4972369 L 757536.3 -4974264 L 759684.6 -4974895 L 760463.6 -4974796 L 761736.5 -4972885 L 763103.1 -4972189 L 764326.1 -4972736 L 764578.6 -4972968 L 764096.9 -4975207 L 764186.4 -4975979 L 764678.4 -4976588 L 764325.4 -4977660 L 764537.3 -4978803 L 764159.7 -4980678 L 764419.9 -4982220 L 764395 -4982611 L 764015.5 -4982704 L 762149 -4983205 L 761634.5 -4983775 L 761569.6 -4984160 L 761915.7 -4985261 L 760883 -4986870 L 760867.4 -4987650 L 761333.7 -4988717 L 760952.5 -4989394 L 760556.9 -4989382 L 755992.7 -4988328 L 751969.9 -4989974 L 751772.2 -4991123 L 752201.1 -4991747 L 752211 -4993304 L 752850.1 -4995527 L 752941.4 -4995907 L 754748.3 -4996489 L 753576.4 -4999762 L 753618.1 -5000901 L 755703.1 -5002502 L 755851.5 -5002863 L 757189.7 -5001593 L 758513.3 -5000947 L 760362.4 -5001390 L 761573.8 -5002296 L 761665.2 -5002669 L 763989.6 -5000775 L 765031.7 -4998290 L 764322.8 -4996912 L 766882.3 -4996109 L 767600.6 -4996392 L 768734.2 -4996102 L 769869.2 -4996350 L 771357.9 -4995233 L 773624.9 -4995761 L 774013.6 -4995797 L 774075.7 -4997331 L 773541.5 -4999938 L 775401.5 -5001374 L 775596 -5001717 L 777208 -5000683 L 777974.4 -5000769 L 779613.9 -5001707 L 779780.7 -5002439 L 780508.5 -5003224 L 780729.1 -5003513 L 781803.7 -5003128 L 783650.1 -5003407 L 784732.4 -5002441 L 784746.2 -5002428 L 784691.4 -5002407 L 784461 -5002154 L 784357.1 -5001657 L 784448.2 -5001001 L 786372.4 -4998891 L 787542.2 -4997165 L 788116.6 -4993718 L 789063.5 -4992430 L 790319.7 -4992913 L 791081.9 -4992708 L 793239.6 -4993127 L 793875.1 -4992654 L 794616.9 -4990859 L 794707.9 -4989947 L 794576.3 -4989750 L 794196.3 -4989180 L 795191.3 -4987923 L 795548.3 -4986654 L 795124.9 -4984232 L 795484.4 -4982682 L 795473.8 -4980736 L 795975.1 -4980069 L 797507.2 -4979582 L 798537.8 -4978482 L 799778.7 -4977838 L 800399 -4976748 L 804944.7 -4974258 L 806416.3 -4974378 L 807084.8 -4973831 L 808817.4 -4973901 L 810279.2 -4975914 L 810651.6 -4976027 L 812029.1 -4974784 L 813455.1 -4974336 L 815681.5 -4974072 L 815742.3 -4973975 L 816428.5 -4972738 L 817266.8 -4972284 L 817545.2 -4971289 L 816501 -4968933 L 816457.8 -4968083 L 817995 -4966778 L 818329.2 -4965992 L 818108.3 -4964102 L 818310.6 -4963099 L 819690.5 -4960805 L 820794.7 -4959993 L 821476 -4959830 L 821749.4 -4959141 L 822348.9 -4956462 L 820446.7 -4957067 L 819301.7 -4957260 L 817308.1 -4956985 L 815666.4 -4956259 L 813611.5 -4954802 L 813342.7 -4953649 L 812642.5 -4952926 L 812136.4 -4952403 L 810490.9 -4952917 L 809905 -4953314 L 809315.6 -4952906 L 809285.3 -4952519 L 807448.6 -4950033 L 805601 -4949577 L 805165.5 -4948108 L 804623.3 -4947556 L 802727.8 -4947218 L 801801.8 -4946511 L 801042.5 -4946684 L 800655.3 -4945615 L 799569.3 -4945440 L 798685.5 -4944691 L 798896.4 -4943561 L 797583.8 -4942806 L 796383 -4940845 L 793826.1 -4939163 L 791897 -4939301 L 792010 -4938942 L 792140 -4938217 L 791146.1 -4934683 L 790850.6 -4934486 L 789087.3 -4932948 L 788932.8 -4932252 L 788538.1 -4928624 L 788145.5 -4928620 L 786207.6 -4928632 L 785086.8 -4928319 L 784826.5 -4928356 L 784453.9 -4928457 L 782586.1 -4928257 L 780775.6 -4928832 L 779733 -4928364 L 778981 -4928543 L 778620.5 -4928625 L 777907.4 -4928432 L 776509.5 -4928886 L 776179 -4928686 L 775437 -4928655 L 774656.2 -4929953 L 773539.7 -4930209 L 772986.1 -4930749 L 771204.6 -4930341 L 770657 -4930849 L 770550 -4931575 L 770377.9 -4931882 L 769724.3 -4933062 L 769386.9 -4933212 L 767392.6 -4934768 L 766664.9 -4936039 L 766294.4 -4936085 L 765554.2 -4935254 L 764553.8 -4934764 L 764367.5 -4934600 L 764630.8 -4934309 L 765601.8 -4933159 L 765131.8 -4931284 L 765096.6 -4930942 L 764969.3 -4930266 L 764327.4 -4930028 L 764164.1 -4929414 L 763780.6 -4929466 L 761796.3 -4930578 L 761408 -4931245 L 761104.6 -4931003 L 759740.8 -4930261 L 758985.7 -4929449 L 756714.9 -4929144 L 756658.8 -4929043 L 756956.1 -4928819 L 757323.3 -4927388 L 757657.7 -4927228 L 759255.1 -4923518 L 757927.1 -4920701 L 756539.4 -4919976 L 756336.2 -4920314 L 754509.5 -4923326 L 753013 -4924583 L 752081.1 -4926271 L 751807.8 -4926025 L 751181 -4925662 L 750966.8 -4925921 L 750661.6 -4926496 L 750643.6 -4926868 L 750455.6 -4928713 L 750061.2 -4928735 L 748597.6 -4929311 L 748267.2 -4929304 L 747256.2 -4930086 L 746810.7 -4930064 L 746264 -4929636 L 745361.1 -4930154 L 744669.4 -4930138 L 744462.2 -4929842 L 744177.8 -4929177 L 744640.2 -4928699 L 744093.5 -4927293 L 744134.4 -4926538 L 743548.8 -4926399 L 742667.9 -4927003 L 742449.6 -4926672 L 740830.8 -4925530 L 740239.2 -4925036 L 740049.9 -4923880 L 737724.5 -4922617 L 737416.2 -4922495 L 736584.4 -4922075 L 736116.9 -4921633 L 735812.6 -4921475 L 734719.6 -4920653 L 734590.5 -4920292 L 733841.7 -4918134 L 733804.7 -4917767 L 733583.5 -4916706 L 732714.7 -4915531 L 732460.5 -4915242 L 732230.3 -4914507 L 731588.7 -4914163 L 730943.2 -4913935 L 731128.4 -4913204 L 730542.9 -4911887 L 731469.7 -4911276 L 732464.6 -4911691 L 732792.9 -4911505 L 732801.9 -4911195 L 732709.9 -4910285 L 732798 -4909940 L 732926.2 -4909236 L 731967.4 -4908680 L 732209.7 -4907955 L 732087.7 -4906483 L 732967.5 -4905983 L 732663.3 -4905290 L 732708.4 -4904614 L 732796.5 -4904278 L 732025.8 -4904373 L 731774.5 -4904673 L 729374.3 -4906684 L 728945.9 -4907332 L 728922.8 -4908871 L 728645.6 -4909078 L 726773 -4909873 L 726419.7 -4909783 L 725755.2 -4909490 L 725762.3 -4908748 L 724925.7 -4907462 L 724798.7 -4906715 L 725124.1 -4905628 L 725289.2 -4905399 L 725516.4 -4905231 L 725854.7 -4905032 L 727815.4 -4903766 L 728056.7 -4902634 L 728682.3 -4902161 L 728969.6 -4901450 L 729023.7 -4901067 L 729332 -4900364 L 729968.6 -4899928 L 732219.5 -4899406 L 732077.6 -4897936 L 731314 -4897828 L 730935.7 -4897781 L 727998.3 -4898187 L 727621 -4898306 L 725713.5 -4898691 L 724085.1 -4899782 L 722565 -4899851 L 722254.8 -4899666 L 721338.2 -4899110 L 719585.9 -4899522 L 719227.7 -4899412 L 718463.3 -4898627 L 716641.1 -4898289 L 716127.9 -4897756 L 715079.2 -4897373 L 714709.1 -4896738 L 714415.9 -4896948 L 713382.2 -4897267 L 714148.6 -4897934 L 713354.7 -4899712 L 713640.5 -4901641 L 713700.5 -4901974 L 712979.9 -4902672 L 712905.7 -4903281 L 712995.6 -4904416 L 713437.8 -4905043 L 713947.1 -4905583 L 713763.9 -4905885 L 713028.3 -4906645 L 712721.1 -4906450 L 710760 -4905592 L 710714.9 -4905957 L 709589.9 -4907303 L 709544.7 -4908031 L 709786.8 -4908289 L 710090.9 -4908840 L 709597.5 -4909310 L 709239.2 -4909328 L 708150.3 -4910207 L 707545 -4909825 L 707900.1 -4910909 L 709210.8 -4912295 L 709032.6 -4912966 L 708671.3 -4913097 L 708407.1 -4912836 L 705843.5 -4912667 L 705743.4 -4912647 L 705427.2 -4912666 L 704492.6 -4912766 L 704131.4 -4912686 L 703448.9 -4912808 L 702827.6 -4912413 L 702089.2 -4912423 L 701660.7 -4913722 L 700923.2 -4913879 L 700388.8 -4914419 L 699018.1 -4913782 L 698230.8 -4912975 L 698021.6 -4913255 L 697279 -4914399 L 696260.4 -4914493 L 696105.2 -4914840 L 695720.8 -4916242 L 694216 -4916252 L 693846.8 -4916264 L 693496.6 -4916383 L 693187.3 -4917064 L 694065.7 -4917751 L 693956.5 -4918905 L 693181.7 -4921102 L 692158 -4922172 L 691986.8 -4922522 L 693180.3 -4923491 L 693563.5 -4923546 L 696325.3 -4922229 L 697017.6 -4922467 L 697357.8 -4923154 L 697963.1 -4923090 L 698066.2 -4923397 L 698075.1 -4924270 L 695600.5 -4925288 L 695508.4 -4925663 L 695164 -4927490 L 695671.3 -4928054 L 695218.9 -4929074 L 695113.8 -4929439 L 694990.7 -4929700 L 694871.6 -4930767 L 695541 -4931030 L 695900.2 -4931004 L 696244.4 -4930376 L 696907.8 -4930059 L 698756 -4930207 L 699125.3 -4930162 L 701946.2 -4929208 L 702243.4 -4928971 L 703116 -4928377 L 703451.2 -4928493 L 703797.4 -4928652 L 706211.1 -4927584 L 706585.4 -4927511 L 707674.1 -4928562 L 708175.4 -4930779 L 708271.5 -4931155 L 708800.9 -4931653 L 710247 -4931392 L 710915.5 -4931709 L 711291.8 -4931713 L 711164.7 -4932048 L 709778.7 -4933684 L 709482.5 -4933895 L 708241.6 -4935219 L 707240.9 -4935011 L 707030.8 -4935318 L 705792.9 -4936131 L 706294.3 -4938392 L 706441.4 -4938751 L 706487.4 -4938941 L 707010.8 -4939345 L 707602.3 -4940924 L 707942.5 -4941021 L 708003.6 -4941950 L 708709.2 -4943558 L 709425.8 -4943660 L 709658.1 -4944718 L 709114.7 -4945242 L 708825.7 -4947852 L 708925.8 -4948218 L 709516.3 -4948440 L 709690.5 -4948703 L 710321 -4948262 L 712243.6 -4948207 L 715613.4 -4947222 L 717447.2 -4948507 L 717776.6 -4949570 L 719176.8 -4948924 L 720337.9 -4948837 L 720727.2 -4948868 L 721467.3 -4951288 L 722107 -4951677 L 722419.3 -4951887 L 722721.6 -4952118 L 723604.6 -4952824 L 723301.6 -4954260 L 722272.7 -4954671 L 721975.4 -4954749 L 721377.9 -4954838 L 721378 -4954836 z " |
id="path672" /> |
<path |
d="M 809458.3 -4920175 L 809318.8 -4920028 L 809011.2 -4919779 L 808096.4 -4919052 L 807905 -4918788 L 807445 -4918326 L 807168.4 -4918059 L 805691.9 -4918143 L 804362.3 -4916760 L 803304.4 -4916318 L 802923.5 -4915248 L 802330.4 -4914761 L 802204.1 -4914408 L 802355 -4912923 L 801649.5 -4911620 L 802047.7 -4909809 L 801682.1 -4909932 L 799839.3 -4910385 L 799432.2 -4908565 L 798374.4 -4908118 L 797932.6 -4907497 L 797195.5 -4907385 L 796889 -4907183 L 796918.6 -4904354 L 796239.4 -4903519 L 796552.7 -4902466 L 795138.3 -4900344 L 795468.6 -4899323 L 795424.5 -4898951 L 795170.1 -4898664 L 794352.8 -4897875 L 795891.8 -4895329 L 796239.1 -4893073 L 797162.4 -4892438 L 797434.7 -4891905 L 797602 -4891655 L 798998.9 -4890329 L 799512.6 -4889299 L 799789 -4889030 L 800061.4 -4888426 L 800360.8 -4888276 L 800196.5 -4887926 L 799740.7 -4886453 L 799689.5 -4884153 L 801816.6 -4882432 L 803275.7 -4881919 L 803873.6 -4880481 L 804090.9 -4880184 L 807383.9 -4878607 L 807147.5 -4877869 L 807388.8 -4877596 L 808043.8 -4877281 L 808318.2 -4875912 L 808271.1 -4875530 L 808444.4 -4874790 L 810367.4 -4874686 L 811190.7 -4872999 L 812015 -4872189 L 812302.5 -4871936 L 812672.1 -4871833 L 813740.8 -4871920 L 816317.9 -4869107 L 816258.8 -4868722 L 815887.2 -4868599 L 815542.6 -4868413 L 814382.8 -4868221 L 814024.2 -4868175 L 812305.5 -4867722 L 811564.4 -4867788 L 810845.3 -4868692 L 809191.7 -4869618 L 808742 -4870227 L 807614.3 -4870335 L 807314.8 -4870631 L 806955.3 -4870511 L 804872.2 -4869638 L 803419.3 -4866592 L 803069.8 -4866432 L 800783.6 -4865169 L 798205.9 -4865912 L 797850.4 -4866027 L 794554.9 -4866662 L 794645 -4866286 L 795140.7 -4865722 L 796594.7 -4865321 L 796891.3 -4863427 L 797228.8 -4863238 L 796862.3 -4863162 L 795433.4 -4862724 L 794551.6 -4860297 L 797190.2 -4859766 L 798135.7 -4858607 L 798029.6 -4858232 L 797741.3 -4857978 L 792658.9 -4856270 L 792195.4 -4855691 L 792230.5 -4855556 L 791536.5 -4855871 L 790853.4 -4857251 L 788163.1 -4857199 L 788121.1 -4856877 L 787737.7 -4856383 L 787527.5 -4856096 L 785629.6 -4854653 L 785395.4 -4854400 L 784722.7 -4853774 L 784750.7 -4854167 L 784887.7 -4854914 L 784562.1 -4855634 L 784312.7 -4855941 L 782791.6 -4857146 L 780190 -4855400 L 778787.3 -4855928 L 777752.3 -4855396 L 777113.6 -4855423 L 776277.6 -4855848 L 776295.7 -4855455 L 774467.9 -4854915 L 774355.7 -4851818 L 772133.4 -4848629 L 771736.8 -4849163 L 771509.5 -4849480 L 769783 -4848765 L 767699.6 -4849761 L 766318.8 -4851104 L 762600.5 -4853151 L 761652.9 -4855234 L 761032.2 -4855652 L 760680.9 -4855729 L 759709.1 -4855310 L 758992.4 -4855378 L 758615 -4855356 L 757655.3 -4854818 L 756217.8 -4852632 L 755983.9 -4851748 L 755925 -4851449 L 755826.1 -4851063 L 754479.5 -4849595 L 752542.5 -4848203 L 752233.3 -4848096 L 751580.8 -4848076 L 751232.5 -4848234 L 750504.6 -4849010 L 750122.3 -4849006 L 748927.2 -4847176 L 748526.9 -4847089 L 748664.2 -4846742 L 748233.4 -4845709 L 747029.1 -4844359 L 746693.8 -4844331 L 745933.5 -4843777 L 745541.4 -4843500 L 745178.2 -4843411 L 744196.8 -4842893 L 744589.8 -4841449 L 743263.6 -4840142 L 743022.3 -4840449 L 742382.6 -4840896 L 741760.4 -4842310 L 740408.1 -4843055 L 740315.8 -4843402 L 740065.7 -4845164 L 739687.4 -4845261 L 738476.2 -4846030 L 737757.8 -4845769 L 736735.9 -4846284 L 736365.3 -4846945 L 736525 -4847705 L 736174.2 -4848815 L 735470.7 -4848944 L 735147.2 -4849598 L 734898.9 -4849765 L 734591.8 -4849525 L 733496.3 -4849185 L 733418.2 -4847262 L 732286.1 -4846204 L 731200.7 -4845790 L 729649.8 -4845758 L 729129.8 -4845183 L 729080.5 -4845565 L 728577.4 -4847017 L 727287.9 -4848399 L 723524.4 -4849157 L 723049.5 -4848541 L 721694.1 -4846175 L 721559.8 -4846538 L 720895.9 -4847491 L 718277.7 -4849120 L 717966.1 -4851800 L 717308.9 -4851606 L 716460.2 -4852093 L 716109 -4852183 L 715578.5 -4852646 L 714720 -4854609 L 714363.8 -4854748 L 713272.7 -4855801 L 713040.2 -4856528 L 712730 -4856533 L 712430.8 -4856617 L 712119.6 -4856698 L 711171.1 -4856851 L 710866.8 -4857088 L 708612.1 -4856608 L 706383.1 -4856783 L 705772.4 -4855821 L 704768.3 -4855383 L 704501.3 -4855284 L 704230.1 -4855368 L 704584.1 -4859119 L 705131 -4859645 L 705431 -4859879 L 706326 -4860579 L 707649.2 -4863258 L 707723 -4863644 L 708849.1 -4866505 L 706987.3 -4866426 L 705784.5 -4869014 L 705625.3 -4869354 L 705249.1 -4869321 L 703820.7 -4868898 L 703507.5 -4869085 L 702204.6 -4869714 L 701203.3 -4869521 L 701104.1 -4869865 L 700781.5 -4870886 L 701142.8 -4872627 L 701217.6 -4873011 L 701579.9 -4874931 L 703333.2 -4878365 L 703307.2 -4883402 L 702954.1 -4883255 L 701153.5 -4882645 L 700006 -4882635 L 699877.8 -4882990 L 699582.4 -4883684 L 699481.6 -4888400 L 700180.9 -4888648 L 700436.8 -4889346 L 702888.6 -4890458 L 703564.4 -4892255 L 703564.4 -4892301 L 705095.2 -4892235 L 705932.5 -4892987 L 704836.4 -4894462 L 704530.2 -4894694 L 705469.2 -4896641 L 707237.2 -4896793 L 707467.3 -4897078 L 708051.7 -4897009 L 708706.4 -4895687 L 709748.1 -4895217 L 710497.7 -4894374 L 710002.8 -4892986 L 709944.8 -4892610 L 710712.3 -4892486 L 711088.6 -4892382 L 713391 -4892362 L 713759.2 -4892237 L 713934.9 -4893860 L 714022.9 -4894181 L 711057 -4894522 L 710890.8 -4894859 L 711502.7 -4896626 L 711433.6 -4896994 L 713381.8 -4897265 L 714415.5 -4896947 L 714708.7 -4896736 L 715078.8 -4897371 L 716127.5 -4897754 L 716640.7 -4898288 L 718462.9 -4898625 L 719227.3 -4899410 L 719585.5 -4899521 L 721337.8 -4899109 L 722254.4 -4899664 L 722564.6 -4899850 L 724084.7 -4899780 L 725713.1 -4898689 L 727620.6 -4898305 L 727997.9 -4898185 L 730935.3 -4897779 L 731313.6 -4897826 L 732077.2 -4897935 L 732219.1 -4899405 L 729968.2 -4899926 L 729331.6 -4900363 L 729023.3 -4901065 L 728969.2 -4901448 L 728681.9 -4902160 L 728056.3 -4902632 L 727815 -4903765 L 725854.3 -4905031 L 725516 -4905229 L 725288.8 -4905398 L 725123.7 -4905626 L 724798.3 -4906714 L 724925.3 -4907460 L 725761.9 -4908747 L 725754.8 -4909488 L 726419.3 -4909782 L 726772.6 -4909872 L 728645.2 -4909076 L 728922.4 -4908870 L 728945.5 -4907331 L 729373.9 -4906682 L 731774.1 -4904672 L 732025.4 -4904372 L 732796.1 -4904277 L 732708 -4904613 L 732662.9 -4905288 L 732967.1 -4905982 L 732087.3 -4906482 L 732209.3 -4907954 L 731967 -4908678 L 732925.8 -4909235 L 732797.6 -4909938 L 732709.5 -4910283 L 732801.5 -4911193 L 732792.5 -4911503 L 732464.2 -4911690 L 731469.3 -4911274 L 730542.5 -4911886 L 731128 -4913203 L 730942.8 -4913934 L 731588.3 -4914162 L 732229.9 -4914506 L 732460.1 -4915241 L 732714.3 -4915530 L 733583.1 -4916704 L 733804.3 -4917766 L 733841.3 -4918133 L 734590.1 -4920291 L 734719.2 -4920651 L 735812.2 -4921473 L 736116.5 -4921632 L 736584 -4922074 L 737415.8 -4922493 L 737724.1 -4922615 L 740049.5 -4923879 L 740238.8 -4925035 L 740830.4 -4925528 L 742449.2 -4926671 L 742667.5 -4927002 L 743548.4 -4926397 L 744134 -4926537 L 744093.1 -4927292 L 744639.8 -4928697 L 744177.4 -4929176 L 744461.8 -4929841 L 744669 -4930137 L 745360.7 -4930153 L 746263.6 -4929635 L 746810.3 -4930063 L 747255.8 -4930084 L 748266.8 -4929302 L 748597.2 -4929309 L 750060.8 -4928734 L 750455.2 -4928712 L 750643.2 -4926867 L 750661.2 -4926494 L 750966.4 -4925919 L 751180.6 -4925660 L 751807.4 -4926023 L 752080.7 -4926269 L 753012.6 -4924582 L 754509.1 -4923325 L 756335.8 -4920312 L 756539 -4919975 L 757926.7 -4920700 L 759254.7 -4923516 L 757657.3 -4927226 L 757322.9 -4927387 L 756955.7 -4928818 L 756658.4 -4929042 L 756714.5 -4929142 L 758985.3 -4929447 L 759740.4 -4930259 L 761104.2 -4931002 L 761407.6 -4931243 L 761795.9 -4930577 L 763780.2 -4929465 L 764163.7 -4929413 L 764327 -4930026 L 764968.9 -4930265 L 765096.2 -4930940 L 765131.4 -4931282 L 765601.4 -4933158 L 764630.4 -4934308 L 764367.1 -4934599 L 764553.4 -4934763 L 765553.8 -4935252 L 766294 -4936084 L 766664.5 -4936038 L 767392.2 -4934766 L 769386.5 -4933211 L 769723.9 -4933061 L 770377.5 -4931880 L 770549.6 -4931574 L 770656.6 -4930847 L 771204.2 -4930339 L 772985.7 -4930747 L 773539.3 -4930207 L 774655.8 -4929952 L 775436.6 -4928653 L 776178.6 -4928685 L 776509.1 -4928885 L 777907 -4928431 L 778620.1 -4928623 L 778980.6 -4928542 L 779732.6 -4928363 L 780775.2 -4928831 L 782585.7 -4928256 L 784453.5 -4928455 L 784826.1 -4928354 L 785086.4 -4928317 L 786207.2 -4928631 L 788145.1 -4928618 L 788537.7 -4928622 L 788932.4 -4932251 L 789086.9 -4932946 L 790850.2 -4934484 L 791145.7 -4934681 L 792139.6 -4938216 L 792009.6 -4938941 L 791896.6 -4939299 L 793825.7 -4939162 L 796382.6 -4940843 L 797583.4 -4942805 L 798896 -4943560 L 798685.1 -4944689 L 799568.9 -4945439 L 800654.9 -4945614 L 801042.1 -4946682 L 801801.4 -4946510 L 802727.4 -4947216 L 804622.9 -4947554 L 805165.1 -4948107 L 805600.6 -4949575 L 807448.2 -4950031 L 809284.9 -4952518 L 809315.2 -4952905 L 809904.6 -4953312 L 810490.5 -4952915 L 812136 -4952402 L 813586.8 -4950677 L 813933.2 -4949253 L 813130.2 -4949096 L 812924.7 -4948334 L 811872.1 -4945543 L 811666.3 -4943757 L 810934 -4943146 L 810051.8 -4941728 L 809081.7 -4941708 L 807934.1 -4941416 L 807115.3 -4939876 L 807150.7 -4939777 L 805837.9 -4938316 L 806201.7 -4936459 L 808269.3 -4932903 L 809958.5 -4932123 L 810381.2 -4931474 L 811254.3 -4929897 L 812654.3 -4928680 L 813456.8 -4927812 L 813416.1 -4927450 L 811361.7 -4927272 L 810908.2 -4927201 L 809947.7 -4926569 L 809646 -4926002 L 809951.1 -4923703 L 810020.7 -4921459 L 809457.6 -4920174 L 809458.3 -4920175 z " |
id="path673" /> |
<path |
d="M 809458.3 -4920175 L 810982.6 -4919251 L 812226.1 -4918836 L 812807.4 -4916847 L 813845.2 -4915670 L 814756.7 -4914993 L 815295.8 -4914202 L 815262.4 -4913507 L 816246.7 -4911839 L 816282.1 -4911740 L 817379 -4911772 L 818214.5 -4911087 L 818515.5 -4910374 L 818489.3 -4909092 L 818762.2 -4908147 L 819632.4 -4906339 L 820604.4 -4905309 L 821556.7 -4904994 L 822689.3 -4905183 L 823804.4 -4905805 L 824070.4 -4905703 L 825355.1 -4906163 L 827565.8 -4904769 L 829196.9 -4904060 L 829184.3 -4904187 L 830845.4 -4902918 L 831511.7 -4902907 L 832484.9 -4903413 L 834706.5 -4902942 L 835022.9 -4902589 L 835260.3 -4901486 L 836427.6 -4900553 L 837635.8 -4899981 L 838902.6 -4900106 L 839269.2 -4898990 L 839919.7 -4898107 L 840793.6 -4897810 L 840783.6 -4897912 L 841999 -4897008 L 842655.2 -4896842 L 843428.7 -4897815 L 845022.3 -4897486 L 847219.4 -4897779 L 847472.6 -4897549 L 847983.2 -4896012 L 848848.6 -4894511 L 850995.9 -4895824 L 851766.2 -4895797 L 852267.4 -4895131 L 854035.7 -4894588 L 854766.6 -4895992 L 854731.3 -4896090 L 855686.7 -4896262 L 855696.8 -4896160 L 857011.9 -4896060 L 859222.8 -4897507 L 860201.8 -4898474 L 860473 -4898579 L 861960.4 -4898290 L 862716.3 -4899184 L 864990.1 -4899998 L 865089.1 -4900289 L 866158.3 -4899831 L 867810.7 -4899944 L 869405.1 -4900383 L 869766.4 -4902159 L 870314.5 -4903084 L 873986.6 -4902705 L 874082.8 -4902510 L 873189.4 -4900681 L 873730.8 -4899351 L 873349.6 -4898034 L 873248.1 -4898024 L 873688.3 -4896940 L 874397.4 -4896242 L 875448.1 -4894938 L 875346.7 -4894928 L 876473.7 -4893887 L 877152.1 -4892982 L 877247.7 -4892018 L 877323.2 -4891257 L 876616.7 -4889088 L 876182.6 -4888302 L 874313.8 -4887273 L 873456.3 -4886369 L 873219.8 -4885398 L 873616.6 -4884234 L 873717 -4883220 L 872173.6 -4880456 L 870243.3 -4878755 L 869304.9 -4878150 L 868105.9 -4877853 L 866972.6 -4877408 L 866016.3 -4876469 L 865813.6 -4876009 L 865936 -4874694 L 865681.8 -4873902 L 865802.2 -4872684 L 863020.5 -4871053 L 862794.7 -4870882 L 862092.2 -4870347 L 861059.5 -4869144 L 860434.5 -4867700 L 860522.7 -4867069 L 861423.9 -4865159 L 863501.1 -4860758 L 863952.5 -4858470 L 863832.2 -4858450 L 861624.4 -4856726 L 861010.3 -4855950 L 860805.2 -4854965 L 860749.3 -4854697 L 860506.1 -4854571 L 858594.9 -4855307 L 858398.5 -4855068 L 857760.9 -4855661 L 857104.5 -4855848 L 856391.5 -4855587 L 855615.6 -4854988 L 854621.5 -4853932 L 853949.5 -4852893 L 854053.7 -4852453 L 854492.2 -4851807 L 854914.1 -4851548 L 854660.7 -4851113 L 853599 -4851523 L 852812.1 -4851472 L 851585.7 -4850689 L 850741.9 -4851221 L 850217.8 -4851094 L 849747 -4850582 L 849132.2 -4849914 L 848595.3 -4849657 L 848520.1 -4848856 L 848849.7 -4848095 L 849665 -4847330 L 849682.3 -4847152 L 848925.1 -4846798 L 848708.4 -4846137 L 848399.8 -4846158 L 847878.3 -4847054 L 848075.7 -4848174 L 847882 -4848590 L 847472.7 -4848857 L 847138.9 -4848877 L 846791.4 -4848510 L 846345.2 -4847060 L 845942.8 -4846996 L 845544.7 -4847673 L 844970.7 -4847797 L 844703.5 -4848180 L 842567.4 -4847820 L 841926.8 -4847579 L 839926.7 -4843726 L 839718.6 -4843502 L 838263.4 -4843233 L 836866.2 -4842893 L 835735.6 -4842963 L 835568.3 -4842845 L 834589 -4841624 L 834126.1 -4840608 L 833395.4 -4839719 L 832961.6 -4838141 L 832898.5 -4837214 L 833222.4 -4835198 L 832937.9 -4834710 L 833063.6 -4834379 L 833453.2 -4833353 L 833798.7 -4832951 L 833675.9 -4832377 L 833856.6 -4831831 L 834091.1 -4831521 L 834323.7 -4831493 L 834408.8 -4831143 L 833650.3 -4830276 L 833379.3 -4830173 L 832770.3 -4830396 L 832474.1 -4830290 L 832256.9 -4830423 L 832522.9 -4831626 L 832297.1 -4832371 L 830894.5 -4832876 L 829760.9 -4832714 L 828821.6 -4832394 L 828294.6 -4832036 L 827636.7 -4830924 L 826002.5 -4828821 L 825729.7 -4828999 L 825273.7 -4829748 L 824305.5 -4829987 L 823594.6 -4829945 L 823079.4 -4830253 L 821986.6 -4830198 L 820614.2 -4829606 L 819851.4 -4829046 L 819141.1 -4828209 L 818182.1 -4827043 L 818223.4 -4826356 L 818790.3 -4825515 L 819376.5 -4825265 L 819501.7 -4824765 L 818937.4 -4822690 L 818082.1 -4822556 L 817952 -4822333 L 817892.2 -4822340 L 817523.7 -4822417 L 816413 -4822599 L 816087.2 -4823656 L 815396.2 -4823893 L 815037.7 -4823981 L 813761.7 -4824647 L 814542 -4826843 L 814151.2 -4827456 L 813386.1 -4827615 L 813184.7 -4827951 L 813236.6 -4828324 L 813723.7 -4830133 L 814856.8 -4831572 L 815233.3 -4831578 L 815292.2 -4832336 L 814616.9 -4833665 L 815476.7 -4835396 L 815138.2 -4835492 L 813991.2 -4836739 L 813697.8 -4836567 L 813147.1 -4836196 L 812746.5 -4836195 L 811624 -4835975 L 810965 -4836301 L 810679.7 -4836070 L 809468.8 -4836837 L 809432.7 -4837178 L 808282.9 -4837827 L 807357.5 -4838511 L 806257.1 -4838309 L 805359.4 -4839939 L 805134 -4840234 L 804086.2 -4841689 L 803353.2 -4841756 L 802929.4 -4842337 L 803041.1 -4844251 L 803874.9 -4845492 L 803735.6 -4845849 L 803049.1 -4848369 L 802287.9 -4849207 L 801984.3 -4850305 L 798609.8 -4850430 L 798658.8 -4850813 L 797606.2 -4851886 L 796103.2 -4852237 L 794131.9 -4851162 L 794042.7 -4851500 L 793691.9 -4852848 L 792776.6 -4853269 L 792765.5 -4853630 L 792986.6 -4854284 L 792384.8 -4854673 L 792224.5 -4855252 L 792230.4 -4855556 L 792195.3 -4855691 L 792658.8 -4856270 L 797741.2 -4857978 L 798029.5 -4858232 L 798135.6 -4858607 L 797190.1 -4859766 L 794551.5 -4860297 L 795433.3 -4862724 L 796862.2 -4863162 L 797228.7 -4863238 L 796891.2 -4863427 L 796594.6 -4865321 L 795140.6 -4865722 L 794644.9 -4866286 L 794554.8 -4866662 L 797850.3 -4866027 L 798205.8 -4865912 L 800783.5 -4865169 L 803069.7 -4866432 L 803419.2 -4866592 L 804872.1 -4869638 L 806955.2 -4870511 L 807314.7 -4870631 L 807614.2 -4870335 L 808741.9 -4870227 L 809191.6 -4869618 L 810845.2 -4868692 L 811564.3 -4867788 L 812305.4 -4867722 L 814024.1 -4868175 L 814382.7 -4868221 L 815542.5 -4868413 L 815887.1 -4868599 L 816258.7 -4868722 L 816317.8 -4869107 L 813740.7 -4871920 L 812672 -4871833 L 812302.4 -4871936 L 812014.9 -4872189 L 811190.6 -4872999 L 810367.3 -4874686 L 808444.3 -4874790 L 808271 -4875530 L 808318.1 -4875912 L 808043.7 -4877281 L 807388.7 -4877596 L 807147.4 -4877869 L 807383.8 -4878607 L 804090.8 -4880184 L 803873.5 -4880481 L 803275.6 -4881919 L 801816.5 -4882432 L 799689.4 -4884153 L 799740.6 -4886453 L 800196.4 -4887926 L 800360.7 -4888276 L 800061.3 -4888426 L 799788.9 -4889030 L 799512.5 -4889299 L 798998.8 -4890329 L 797601.9 -4891655 L 797434.6 -4891905 L 797162.3 -4892438 L 796239 -4893073 L 795891.7 -4895329 L 794352.7 -4897875 L 795170 -4898664 L 795424.4 -4898951 L 795468.5 -4899323 L 795138.2 -4900344 L 796552.6 -4902466 L 796239.3 -4903519 L 796918.5 -4904354 L 796888.9 -4907183 L 797195.4 -4907384 L 797932.5 -4907497 L 798374.3 -4908118 L 799432.1 -4908565 L 799839.2 -4910385 L 801682 -4909932 L 802047.6 -4909809 L 801649.4 -4911619 L 802354.9 -4912923 L 802204 -4914408 L 802330.3 -4914761 L 802923.4 -4915248 L 803304.3 -4916318 L 804362.2 -4916760 L 805691.8 -4918143 L 807168.3 -4918059 L 807444.9 -4918326 L 807904.9 -4918788 L 808096.3 -4919052 L 809011.1 -4919779 L 809318.7 -4920028 L 809458.2 -4920175 L 809458.3 -4920175 z M 827752 -4826585 L 827059.6 -4826877 L 826136.4 -4826916 L 825707.6 -4827386 L 826135.2 -4827452 L 826318 -4827675 L 828461.6 -4827166 L 828463.4 -4826884 L 827751.9 -4826585 L 827752 -4826585 z " |
id="path674" /> |
<path |
d="M 716863.3 -4784714 L 716930.7 -4784844 L 717057.4 -4785147 L 717218.3 -4786117 L 717334.8 -4788455 L 717323.4 -4788846 L 717559.4 -4790715 L 717566 -4791095 L 719077.8 -4791547 L 719346.6 -4791837 L 719227.2 -4792141 L 719089.9 -4792439 L 722003.8 -4794202 L 723807.7 -4794851 L 723797.3 -4795195 L 723897 -4796547 L 723549.8 -4796704 L 721748.3 -4798657 L 720870.4 -4800341 L 718291.1 -4799841 L 717940.1 -4799705 L 717027.2 -4800368 L 716247 -4800344 L 717319.9 -4800710 L 717797 -4801735 L 717612.9 -4802837 L 718796.8 -4804305 L 718795.4 -4804694 L 718026.4 -4805577 L 717127 -4808941 L 716962.7 -4809295 L 718554.2 -4810345 L 720106.6 -4810457 L 721961.7 -4809869 L 722325 -4809723 L 723713 -4810198 L 725243.7 -4811212 L 725431.2 -4811925 L 725391.2 -4811940 L 724244.7 -4812052 L 722337.8 -4813443 L 720362.2 -4816831 L 718339 -4818587 L 717947.9 -4818546 L 718241.8 -4820029 L 719112.6 -4820720 L 719254.6 -4824512 L 719839.5 -4826287 L 718567.8 -4826562 L 718310.5 -4826785 L 717063.5 -4827542 L 715601.9 -4827617 L 715233.7 -4827639 L 714226.4 -4828832 L 716698.5 -4829935 L 716042 -4832944 L 717653.2 -4836504 L 718687.4 -4836913 L 718913.3 -4837234 L 723001.4 -4838553 L 724960.3 -4838647 L 725346.6 -4838574 L 725476.7 -4840129 L 726159.2 -4841513 L 726362.1 -4841848 L 726006.8 -4842003 L 724334.5 -4842646 L 723949.9 -4843319 L 723868 -4844827 L 723307.4 -4845335 L 721396.2 -4845612 L 721543.1 -4845894 L 721694 -4846175 L 723049.4 -4848541 L 723524.3 -4849157 L 727287.8 -4848399 L 728577.3 -4847017 L 729080.4 -4845565 L 729129.7 -4845183 L 729649.7 -4845758 L 731200.6 -4845790 L 732286 -4846204 L 733418.1 -4847262 L 733496.2 -4849185 L 734591.7 -4849525 L 734898.8 -4849765 L 735147.1 -4849598 L 735470.6 -4848944 L 736174.1 -4848815 L 736524.9 -4847705 L 736365.2 -4846945 L 736735.8 -4846284 L 737757.7 -4845769 L 738476.1 -4846030 L 739687.3 -4845261 L 740065.6 -4845164 L 740315.7 -4843402 L 740408 -4843055 L 741760.3 -4842310 L 742382.5 -4840896 L 743022.2 -4840449 L 743263.5 -4840142 L 744589.7 -4841449 L 744196.7 -4842893 L 745178.1 -4843411 L 745541.3 -4843500 L 745933.4 -4843777 L 746693.7 -4844331 L 747029 -4844359 L 748233.3 -4845709 L 748664.1 -4846742 L 748526.8 -4847089 L 748927.1 -4847176 L 750122.2 -4849006 L 750504.5 -4849010 L 751232.4 -4848234 L 751580.7 -4848076 L 752233.2 -4848096 L 752542.4 -4848203 L 754479.4 -4849595 L 755826 -4851063 L 755924.9 -4851449 L 755983.8 -4851748 L 756217.7 -4852632 L 757655.2 -4854818 L 758614.9 -4855356 L 758992.3 -4855378 L 759709 -4855310 L 760680.8 -4855729 L 761032.1 -4855652 L 761652.8 -4855234 L 762600.4 -4853151 L 766318.7 -4851104 L 767699.5 -4849761 L 769782.9 -4848765 L 771509.4 -4849480 L 771736.7 -4849163 L 772133.3 -4848629 L 774355.6 -4851818 L 774467.8 -4854915 L 776295.6 -4855455 L 776277.5 -4855848 L 777113.5 -4855423 L 777752.2 -4855396 L 778787.2 -4855928 L 780189.9 -4855400 L 782791.5 -4857146 L 784312.6 -4855941 L 784562 -4855634 L 784887.6 -4854914 L 784750.6 -4854167 L 784722.6 -4853774 L 785395.3 -4854400 L 785629.5 -4854653 L 787527.4 -4856096 L 787737.6 -4856383 L 788121 -4856877 L 788163 -4857199 L 790853.3 -4857251 L 791536.4 -4855871 L 792230.4 -4855556 L 792224.5 -4855252 L 792384.8 -4854673 L 792986.6 -4854284 L 792765.5 -4853630 L 792776.6 -4853269 L 793691.9 -4852848 L 794042.7 -4851501 L 794131.9 -4851162 L 796103.2 -4852237 L 797606.2 -4851886 L 798658.8 -4850813 L 798609.8 -4850430 L 801984.3 -4850305 L 802287.9 -4849207 L 803049.1 -4848369 L 803735.6 -4845849 L 803874.9 -4845492 L 803041.1 -4844251 L 802929.4 -4842337 L 803353.2 -4841756 L 804086.2 -4841689 L 805134 -4840234 L 805359.4 -4839939 L 806257.1 -4838309 L 807357.5 -4838511 L 808282.9 -4837827 L 809432.7 -4837178 L 809468.8 -4836837 L 810679.7 -4836070 L 810965 -4836301 L 811624 -4835975 L 812746.5 -4836195 L 813147.1 -4836196 L 813697.8 -4836567 L 813991.2 -4836739 L 815138.2 -4835492 L 815476.7 -4835396 L 814616.9 -4833665 L 815292.2 -4832336 L 815233.3 -4831578 L 814856.8 -4831572 L 813723.7 -4830133 L 813236.6 -4828324 L 813184.7 -4827951 L 813386.1 -4827616 L 814151.2 -4827456 L 814542 -4826843 L 813761.7 -4824648 L 815037.7 -4823981 L 815396.2 -4823893 L 816087.2 -4823656 L 816413 -4822599 L 817523.7 -4822417 L 817892.2 -4822340 L 817952 -4822333 L 817403.8 -4821391 L 817424 -4820395 L 817041.2 -4819079 L 816204.9 -4818487 L 815328.5 -4816995 L 815196 -4816932 L 813449.5 -4816098 L 813110.8 -4816167 L 812732.6 -4816643 L 812343.3 -4816707 L 812243.9 -4816416 L 812424.6 -4815871 L 811793 -4814224 L 810768.4 -4815046 L 809541.8 -4815056 L 808316.4 -4814529 L 807334.7 -4814382 L 806981.7 -4813811 L 806314.9 -4814105 L 804924.6 -4815252 L 804843.6 -4815319 L 804472.3 -4815462 L 803662 -4815128 L 802110.9 -4813778 L 802075.4 -4812800 L 801679.2 -4812149 L 801947.4 -4811228 L 801322.2 -4810042 L 801138.1 -4809308 L 801319.2 -4807970 L 800989 -4807427 L 801162.3 -4806957 L 800938.2 -4806373 L 800553.1 -4806131 L 799736.3 -4806130 L 799292.7 -4805703 L 798392.6 -4805769 L 797898.3 -4805338 L 797411.8 -4804038 L 797448.6 -4803659 L 797897 -4802985 L 797838.4 -4802964 L 796218.9 -4802388 L 795334.8 -4801766 L 794735.8 -4801888 L 794290.3 -4801742 L 793961.9 -4800917 L 793508.4 -4800592 L 792668.4 -4799514 L 791179.7 -4798808 L 790765.5 -4798078 L 791352.6 -4797290 L 791670.8 -4797167 L 793957.2 -4797435 L 794169.9 -4797459 L 794844.5 -4798138 L 795097.4 -4798162 L 795610.7 -4798135 L 796962.1 -4797626 L 797415 -4797695 L 797732.1 -4798110 L 797931.6 -4798947 L 798680 -4798865 L 799710 -4798249 L 800164 -4797781 L 799863.9 -4797190 L 799412.8 -4796839 L 799484.8 -4796360 L 798832.3 -4795454 L 798202.5 -4795367 L 797650.3 -4795006 L 797480.9 -4794121 L 797531.7 -4792989 L 797590.4 -4791676 L 797814.3 -4791212 L 798258.4 -4790845 L 799134.8 -4790495 L 799207.5 -4790272 L 798791.6 -4789823 L 797274 -4789676 L 796432.3 -4788879 L 796053.9 -4788306 L 795803.7 -4787463 L 796150.8 -4786781 L 795801.7 -4786695 L 795291.6 -4786953 L 794665.1 -4786305 L 794400.2 -4785615 L 794119.5 -4785613 L 793933.3 -4785953 L 793210.3 -4786037 L 793003.7 -4786325 L 793100.8 -4786640 L 792986.6 -4786705 L 792560.5 -4786946 L 792650.8 -4787595 L 792517.7 -4787914 L 791972.5 -4788270 L 791166.2 -4788423 L 788783.8 -4788245 L 787880 -4787825 L 787331.3 -4786903 L 787228.1 -4786125 L 786999.6 -4785848 L 786440.8 -4785820 L 785634.2 -4784924 L 784355.2 -4784161 L 783844.5 -4784164 L 783021.2 -4784493 L 782461.6 -4784209 L 782310.8 -4784226 L 780887 -4784390 L 780375.5 -4784136 L 780053.4 -4783772 L 779760.8 -4783105 L 779411.7 -4783020 L 779231.1 -4783566 L 778549 -4783756 L 778243.1 -4783752 L 777819.8 -4783378 L 776485.1 -4783454 L 775922.4 -4782940 L 775052 -4782703 L 773891.5 -4781773 L 773104 -4780418 L 773353.9 -4779420 L 773142.2 -4778709 L 773389 -4778348 L 774242.5 -4777101 L 774210.8 -4776638 L 773711.7 -4776258 L 773283.3 -4776728 L 771273.2 -4776662 L 770467.9 -4777071 L 770156.8 -4777910 L 769720.2 -4778200 L 768113 -4778455 L 767775.2 -4778780 L 767239.3 -4778781 L 766958.4 -4779572 L 766385.6 -4779951 L 764139.8 -4779684 L 762977.6 -4779035 L 762423.7 -4778956 L 760784 -4779284 L 760111.1 -4779117 L 759315.9 -4778631 L 756967.7 -4776002 L 756486.9 -4774907 L 756315.8 -4774303 L 756238.6 -4773784 L 756117.4 -4772928 L 756109.3 -4772749 L 756463.6 -4771991 L 756625.8 -4770318 L 756890.3 -4769960 L 757618.8 -4770081 L 758042.2 -4769662 L 756680.2 -4768969 L 756013 -4769006 L 755405 -4769485 L 755161 -4769896 L 754587.5 -4770019 L 753982.4 -4769680 L 753631.6 -4769877 L 752905.7 -4769731 L 752330 -4769087 L 751908.3 -4769225 L 751701.5 -4770304 L 751803.4 -4770569 L 752069.2 -4770723 L 752865.9 -4770506 L 753248.9 -4770402 L 753782.3 -4770428 L 753849 -4770792 L 754421.5 -4771205 L 754714 -4771873 L 754119.9 -4774577 L 753782.1 -4774902 L 751724.9 -4775062 L 750570.5 -4775385 L 749768.7 -4775231 L 747949.2 -4774519 L 745967 -4774400 L 745817.9 -4774390 L 745366 -4774577 L 745228 -4774947 L 745513.8 -4775947 L 745325.2 -4776312 L 744245.7 -4777179 L 743035.2 -4777293 L 742255.2 -4777703 L 742155.9 -4777412 L 739153.4 -4777583 L 738898.1 -4777585 L 738416.3 -4777027 L 738052.6 -4777094 L 738138.6 -4778048 L 738372.5 -4778530 L 738251.6 -4778724 L 737662.8 -4778744 L 737509.4 -4779010 L 737017.8 -4778554 L 736650.4 -4779183 L 736350.2 -4779384 L 736284.5 -4778483 L 735985.3 -4778147 L 734885.9 -4778169 L 734445.2 -4776925 L 734628.9 -4776611 L 735039 -4776855 L 736239.7 -4776842 L 736476.4 -4776507 L 736374.6 -4776242 L 736904.1 -4775781 L 736079.6 -4775600 L 735974.5 -4775438 L 735635.5 -4774918 L 735204.9 -4774620 L 736205 -4774308 L 736871.8 -4775063 L 737596.9 -4774953 L 738141.9 -4774597 L 739163.8 -4774849 L 739860.5 -4774507 L 740205 -4773850 L 740032.3 -4773527 L 739419.9 -4773263 L 738932.1 -4773293 L 738546.2 -4773588 L 738220 -4773531 L 738090.5 -4773289 L 736841 -4773015 L 736619.1 -4773198 L 736711.1 -4773564 L 735882.4 -4773689 L 735206 -4774084 L 734636.8 -4773901 L 734598.6 -4773857 L 733216.8 -4772230 L 732522.5 -4770707 L 731883.8 -4770977 L 731034 -4770793 L 730572.3 -4771081 L 729942.7 -4770995 L 729534.1 -4771262 L 728622.5 -4772503 L 727583.1 -4773222 L 728333.4 -4774956 L 728466.8 -4775684 L 728094.5 -4776364 L 728513.4 -4776975 L 728564 -4777048 L 728471.6 -4777474 L 728015.4 -4777967 L 726663.3 -4777965 L 726454.4 -4778276 L 724869.7 -4778303 L 725270.6 -4778904 L 725114.7 -4779195 L 725470 -4779741 L 725491.2 -4780050 L 725024.5 -4780388 L 723562.4 -4779941 L 721962.9 -4780119 L 721107.2 -4780522 L 720714.6 -4781148 L 720310.8 -4781365 L 719749.7 -4781363 L 718909.9 -4781077 L 718607.2 -4781303 L 718464.2 -4781724 L 718005.6 -4782242 L 717780.8 -4783243 L 718070.1 -4783680 L 718741 -4784128 L 718257 -4784644 L 717204.2 -4784697 L 716863.3 -4784714 L 716863.3 -4784714 z M 726278.5 -4772993 L 726189.9 -4773905 L 726367.6 -4774178 L 727036.5 -4773859 L 726278.5 -4772993 L 726278.5 -4772993 z M 781314.6 -4769191 L 780342.6 -4767896 L 779930.6 -4767932 L 779596.8 -4768744 L 779958.6 -4769751 L 780483.1 -4770134 L 781290 -4770237 L 781599.5 -4770680 L 782343.5 -4771745 L 782180.3 -4772112 L 782636.9 -4772668 L 783440.6 -4772541 L 784602.2 -4772935 L 785588.7 -4773029 L 785898.9 -4772726 L 785429.8 -4772298 L 784091.2 -4771888 L 783571.6 -4771454 L 782837.7 -4770335 L 782510.9 -4769229 L 781744.1 -4768977 L 781314.8 -4769191 L 781314.6 -4769191 z M 760762.9 -4764503 L 760254.7 -4764480 L 760032.7 -4764663 L 760054.5 -4765228 L 757365.6 -4766375 L 758171.3 -4767015 L 758876.9 -4767108 L 759270.3 -4766737 L 759789 -4766915 L 760061.4 -4766737 L 760820 -4766810 L 761585 -4767344 L 761703 -4767968 L 762707.7 -4767964 L 763164.8 -4768160 L 763614.1 -4768792 L 763981.1 -4768955 L 764628.9 -4766486 L 764395.6 -4766259 L 763793.7 -4766150 L 763459.3 -4765913 L 762037.6 -4765571 L 761598.2 -4764839 L 760763 -4764503 L 760762.9 -4764503 z M 774193.8 -4767867 L 773952.5 -4767460 L 773657.9 -4767866 L 773874 -4768270 L 773773.6 -4768516 L 774134 -4769011 L 774381.2 -4768830 L 774193.9 -4767866 L 774193.8 -4767867 z M 776880.7 -4766744 L 776318.6 -4766486 L 775948.2 -4766885 L 774974.9 -4766919 L 774482.9 -4767255 L 775346.7 -4767824 L 775426.5 -4768318 L 776405.4 -4768489 L 777724.3 -4769101 L 778199.2 -4768942 L 778157.7 -4768581 L 778769.5 -4768588 L 778842.2 -4768365 L 778312.8 -4768033 L 777267.4 -4766705 L 776880.7 -4766744 L 776880.7 -4766744 z " |
id="path675" /> |
<path |
d="M 588733 -4823910 L 587870 -4824150 L 586491.2 -4824426 L 583870.6 -4824095 L 579337.8 -4822711 L 577702.4 -4821721 L 577627.6 -4821676 L 573935.5 -4820041 L 570779.3 -4817359 L 569825.9 -4816935 L 568494.8 -4815937 L 566544.7 -4813644 L 564444.6 -4811176 L 563457.4 -4810313 L 561902 -4809524 L 560934 -4809251 L 558811.7 -4807998 L 557316.1 -4806857 L 556692.6 -4805927 L 556401.6 -4806819 L 556147.1 -4806770 L 556070.8 -4805765 L 555713.9 -4805500 L 553002.4 -4805059 L 550013.3 -4802496 L 547607.8 -4799963 L 546343.6 -4798282 L 546138 -4798142 L 544861 -4797270 L 544210.4 -4796618 L 543705.8 -4795778 L 543177.1 -4795445 L 542153.8 -4794171 L 541379.4 -4792436 L 540876 -4792106 L 540148.3 -4791984 L 538362.9 -4792245 L 535283.3 -4793225 L 533099.8 -4793908 L 532415.1 -4793867 L 530025 -4792485 L 529348.9 -4792880 L 529175.8 -4792301 L 528771 -4792006 L 528192.3 -4791924 L 526965.3 -4792214 L 527040 -4791711 L 526900.2 -4791313 L 526388.8 -4790804 L 523881.7 -4789054 L 521174.4 -4787003 L 519134.3 -4785069 L 518322.9 -4785670 L 516078.3 -4788838 L 515403.6 -4789129 L 514655.6 -4789096 L 513775.2 -4788395 L 512643.8 -4788323 L 511613.2 -4788782 L 511651.6 -4789534 L 511212 -4790127 L 509367.1 -4790257 L 509025.9 -4789592 L 507951 -4789747 L 507628 -4789942 L 507317 -4790156 L 506712.9 -4790594 L 505965.1 -4790493 L 504123.6 -4792388 L 502640.2 -4792594 L 500617.9 -4792115 L 500697 -4792482 L 500179.5 -4793071 L 500102.2 -4794240 L 500220.3 -4794613 L 500065 -4796785 L 499324 -4796767 L 498954.6 -4796729 L 496611.2 -4796043 L 496265.8 -4795980 L 495337.2 -4795921 L 495011.2 -4796111 L 493322.6 -4797488 L 493089.5 -4797203 L 492491.1 -4796819 L 491189.5 -4797508 L 490861.5 -4797693 L 490393.9 -4798284 L 490884.3 -4799232 L 490747.2 -4800338 L 490625.7 -4800655 L 490779.9 -4800958 L 490708.3 -4801310 L 490602.1 -4801984 L 489352.3 -4802688 L 489212.7 -4803584 L 489100.3 -4803875 L 488096.3 -4803060 L 488003.1 -4802749 L 489133.5 -4800859 L 489471.9 -4798992 L 489050.7 -4797931 L 487222.3 -4797438 L 486894.2 -4797223 L 484967.8 -4797257 L 483991.3 -4796730 L 484841.6 -4795558 L 484280.4 -4795084 L 483960.3 -4794861 L 483643.2 -4794634 L 482459.9 -4793235 L 482424.4 -4792134 L 482437.2 -4791765 L 482446.3 -4791720 L 482129.5 -4790899 L 481871.2 -4790745 L 481327 -4790301 L 481261.9 -4789946 L 480938.6 -4789860 L 479641.1 -4789567 L 479442.7 -4789878 L 478689 -4790677 L 478456.7 -4790973 L 476822 -4791898 L 476106.5 -4791690 L 475803.7 -4791782 L 475623.4 -4792041 L 475409.2 -4792708 L 475833.3 -4793756 L 475320.1 -4795540 L 475449.2 -4795858 L 474400.9 -4797169 L 474219.7 -4796458 L 473543.4 -4796130 L 473350.1 -4795031 L 472123.7 -4794217 L 472082.6 -4793844 L 471153.7 -4793982 L 470839.1 -4794018 L 470502.3 -4794136 L 469808.3 -4794180 L 469273.1 -4793259 L 468649.8 -4792909 L 468722.9 -4793268 L 467375.3 -4794446 L 467356.6 -4794797 L 467261.7 -4796175 L 466996.9 -4796255 L 466638.6 -4796638 L 466556.9 -4797017 L 465957.7 -4798407 L 463690.2 -4798811 L 463363.1 -4798632 L 462441.2 -4799678 L 462916.2 -4800699 L 463677.2 -4802018 L 463450.1 -4803134 L 463833.3 -4804615 L 464585.3 -4805477 L 464806.4 -4805772 L 465166.1 -4805687 L 466251.5 -4805700 L 466691.6 -4806306 L 466754 -4807037 L 466008.8 -4807146 L 464875.4 -4808101 L 464552.4 -4808294 L 465643.8 -4808326 L 467161.5 -4809365 L 467500.3 -4809211 L 467838.7 -4809284 L 467817.3 -4809953 L 468041.4 -4810216 L 468752.8 -4810006 L 470651.2 -4811892 L 470935.3 -4812150 L 470939.5 -4812521 L 470696.5 -4813165 L 472477.7 -4812839 L 472832.9 -4813490 L 472598.6 -4813782 L 471997.6 -4814703 L 471790.9 -4816171 L 472186.3 -4817199 L 472105.4 -4818694 L 473127.8 -4818333 L 473491.4 -4818305 L 473264.1 -4818617 L 469900.5 -4822180 L 468711.4 -4824081 L 468820.5 -4824451 L 469876 -4826060 L 469574.3 -4827165 L 469196 -4827085 L 468997.6 -4827414 L 468639 -4827981 L 469624.5 -4829152 L 471067.3 -4834648 L 471413.1 -4834511 L 471715.7 -4833461 L 472820.4 -4833397 L 474224.7 -4833878 L 474435 -4833558 L 477303.2 -4832614 L 478752.5 -4830922 L 479202.9 -4829877 L 479846.9 -4829464 L 480214.3 -4829546 L 482038.8 -4830763 L 483122.7 -4830623 L 483644.1 -4831166 L 483894.3 -4831457 L 484701.8 -4832269 L 485807.9 -4832041 L 487135.8 -4832852 L 489060.5 -4832875 L 490311.6 -4834225 L 491814.3 -4833949 L 492204.8 -4833961 L 493066.4 -4834766 L 493153.6 -4837494 L 494391.6 -4838396 L 494976.5 -4838070 L 496002.4 -4838599 L 496213.6 -4838923 L 497159.7 -4839432 L 497531.2 -4839498 L 498184.8 -4839877 L 499305.8 -4839708 L 500702.2 -4839149 L 501132.7 -4838546 L 501454.6 -4838365 L 502158.2 -4838152 L 503513.9 -4838655 L 504517.6 -4838198 L 504612.9 -4838553 L 504650.7 -4839262 L 505197.3 -4839756 L 504051.9 -4840767 L 504264.9 -4841852 L 503931.2 -4842546 L 504218.7 -4843261 L 503898.9 -4843963 L 504063.5 -4844716 L 504146.8 -4845094 L 504881.9 -4845179 L 505530.1 -4846498 L 504343.2 -4847838 L 504201.8 -4848185 L 504308.1 -4848551 L 503515.3 -4850257 L 503642.6 -4850605 L 504738.1 -4851496 L 504321.6 -4852092 L 504325.9 -4853198 L 504933.1 -4854009 L 505323.8 -4853961 L 506491.5 -4854044 L 508652.7 -4853108 L 509814.1 -4852068 L 511722.9 -4851641 L 511783.7 -4851755 L 512067 -4852008 L 514269.5 -4851545 L 516112.7 -4851566 L 517507.6 -4852106 L 518235.6 -4853029 L 518598 -4853183 L 519273.1 -4853338 L 519619.6 -4853425 L 519712.4 -4854908 L 518651.9 -4855992 L 518504.5 -4857094 L 519116 -4858457 L 520172.5 -4858836 L 520622.7 -4859870 L 520678.1 -4860247 L 521600.1 -4861086 L 521866.1 -4860893 L 522541 -4860511 L 523287.1 -4860700 L 525178 -4860284 L 527095.9 -4860633 L 527037.5 -4861689 L 528089.3 -4862671 L 528374.8 -4862897 L 528474.2 -4862565 L 529283.8 -4863123 L 530192.6 -4862670 L 531246.9 -4862497 L 531830.8 -4862939 L 533614.8 -4862572 L 534574.6 -4861363 L 534685.5 -4859856 L 534211.8 -4858396 L 533457.6 -4858242 L 534203.1 -4857371 L 534555 -4857211 L 535509.3 -4857873 L 536610 -4858160 L 538299.8 -4860288 L 539062.1 -4860387 L 539428.9 -4860331 L 540310.4 -4860960 L 541400.6 -4860085 L 541631.8 -4859795 L 541498.9 -4857480 L 541936.4 -4856828 L 543687 -4856025 L 544717.7 -4856438 L 545753.4 -4855290 L 546119.3 -4855143 L 546348.7 -4855436 L 547766.1 -4855831 L 547794.6 -4856201 L 545936.4 -4857459 L 546085.3 -4858209 L 546412.2 -4858905 L 547810.5 -4860193 L 547940.5 -4860911 L 549435.8 -4863006 L 549635.3 -4863323 L 550759.7 -4863105 L 550808.8 -4861331 L 551391.9 -4861721 L 551342.6 -4862858 L 552759.8 -4862718 L 553125.6 -4862643 L 553638.9 -4862946 L 554044.9 -4864376 L 553871.2 -4865075 L 554430.7 -4865993 L 554651.7 -4865869 L 554899.5 -4865921 L 554485.3 -4867217 L 555677.6 -4867959 L 557104.3 -4868278 L 558205.4 -4869366 L 562717 -4868990 L 562689.4 -4868627 L 562712.6 -4867543 L 563403.6 -4866268 L 565392.3 -4866304 L 565634.5 -4866016 L 566056.2 -4864274 L 565720.2 -4863604 L 565475.1 -4862920 L 563790.9 -4860558 L 564282.2 -4859206 L 565644.9 -4858721 L 566098.3 -4858156 L 566332.5 -4857879 L 566623 -4858130 L 567684.3 -4858138 L 568764.6 -4859048 L 571814.4 -4859285 L 572974.6 -4860259 L 573441 -4859688 L 573338.5 -4859319 L 573313.8 -4858173 L 573759.8 -4857118 L 574618.8 -4856626 L 574955.7 -4856555 L 575294.5 -4856537 L 576650.6 -4856568 L 576555.1 -4856226 L 576595.9 -4855527 L 578317 -4855388 L 577860 -4854765 L 577912.2 -4853665 L 576954.2 -4852453 L 576811.6 -4851300 L 577094.6 -4851134 L 577962.5 -4850808 L 578319.1 -4850968 L 579659.4 -4851766 L 580115.7 -4852122 L 582330.8 -4850875 L 582565 -4850586 L 584050.6 -4849346 L 584324.8 -4849070 L 584244.8 -4848286 L 584232.3 -4847872 L 584885.2 -4847663 L 585303.6 -4847115 L 585494.9 -4846804 L 586825.7 -4847180 L 587415.9 -4846754 L 587795.3 -4845397 L 588094.4 -4845186 L 588462.3 -4845083 L 589113 -4844156 L 589317.2 -4843880 L 589989.9 -4843828 L 590866 -4844231 L 591711.2 -4843673 L 591811.5 -4843336 L 592364.1 -4841712 L 592554.3 -4841412 L 593246.8 -4840617 L 593452.2 -4839313 L 593433.7 -4838963 L 593383.1 -4838663 L 595885.8 -4834438 L 595830.2 -4833340 L 594042.7 -4829863 L 592418.9 -4828207 L 592487.9 -4827427 L 592486.4 -4827037 L 590274.4 -4827314 L 588424.1 -4826946 L 587475.9 -4827561 L 586765.5 -4827481 L 586418.9 -4827330 L 586383 -4827285 L 587095.5 -4827269 L 588968.8 -4825410 L 589165.1 -4825086 L 588733.2 -4823911 L 588733 -4823910 z " |
id="path676" /> |
<path |
d="M 507499.6 -4709217 L 507925.9 -4709028 L 509307.2 -4708983 L 510883.5 -4707986 L 510192.8 -4707485 L 509908.4 -4706742 L 510023.6 -4706345 L 510288.6 -4706243 L 510472.2 -4705929 L 510251.1 -4705320 L 510273 -4703790 L 511392.5 -4704076 L 512008 -4703779 L 512789.6 -4702353 L 512845.6 -4702251 L 512884.5 -4701590 L 513254.9 -4701192 L 513041.9 -4700763 L 513407.3 -4700414 L 513313 -4700074 L 513925.4 -4699546 L 513942.1 -4699113 L 513554.9 -4698732 L 513058.9 -4698898 L 512722.9 -4699015 L 511819.9 -4699054 L 510669.5 -4699068 L 509806.5 -4699210 L 509385.8 -4699169 L 508910.7 -4699173 L 508466.5 -4698856 L 508079.1 -4698469 L 507996.7 -4698286 L 507639.7 -4698102 L 507256.6 -4698190 L 506848.6 -4698276 L 506408.8 -4698434 L 505597.4 -4699079 L 505335.6 -4699204 L 504765.5 -4700198 L 504471.8 -4700394 L 503904.4 -4700839 L 503709.8 -4701045 L 503320.1 -4701981 L 503050.7 -4702705 L 502806.1 -4703431 L 502621 -4703537 L 502247.4 -4703526 L 501704.3 -4703199 L 500878.3 -4702696 L 500549.4 -4702739 L 500297.1 -4702765 L 499999.5 -4703000 L 497119.7 -4702149 L 496427.2 -4702462 L 495290.2 -4702504 L 493367.3 -4701361 L 492814.1 -4701185 L 491934.4 -4701082 L 489017.2 -4701525 L 488372.7 -4701459 L 488059.6 -4701250 L 487636 -4700968 L 484652.1 -4698089 L 483886.6 -4696503 L 483313.9 -4696124 L 481627.2 -4696108 L 478959.7 -4696773 L 478165.6 -4696747 L 476572.5 -4696345 L 475601.4 -4696100 L 474130.6 -4695144 L 472548.3 -4693560 L 471864.7 -4693089 L 471532.8 -4692560 L 471952.8 -4691089 L 473201.8 -4689744 L 473552.7 -4689148 L 473635.4 -4688681 L 473477.2 -4688364 L 472934.8 -4688033 L 471923.9 -4687875 L 470953.1 -4688026 L 470213.6 -4688142 L 467398.1 -4689127 L 465037.5 -4689533 L 463965.3 -4689534 L 461760.4 -4688112 L 460623.1 -4687966 L 459711.9 -4688212 L 458612.9 -4688246 L 457785.3 -4688740 L 454639.8 -4690615 L 454442.5 -4691009 L 453934.7 -4691417 L 452037.3 -4693718 L 446402.9 -4695756 L 446185.3 -4695874 L 445198.4 -4696409 L 443242 -4697790 L 439105.6 -4698356 L 437453.4 -4698080 L 436523.9 -4697675 L 435757.6 -4696993 L 434615.4 -4696589 L 433903 -4696558 L 433307.5 -4696806 L 432233.8 -4697254 L 430131.7 -4697431 L 428625.5 -4695839 L 426818.1 -4692974 L 425308.5 -4691612 L 423420.9 -4690568 L 422509.5 -4690358 L 421541.2 -4690135 L 420358 -4690044 L 419019.7 -4690198 L 418183.6 -4690474 L 417645.8 -4691045 L 415387.9 -4692258 L 414839.4 -4692806 L 414401.5 -4693879 L 414503.4 -4695205 L 413845.5 -4697461 L 413570.4 -4698002 L 413413.4 -4698311 L 413280.7 -4699022 L 412462.3 -4700071 L 411516 -4700851 L 410546 -4700974 L 409747.1 -4700510 L 409038.7 -4700578 L 405938 -4702586 L 404762 -4703899 L 403338.8 -4704867 L 398440.7 -4704907 L 398188.4 -4704993 L 395782.4 -4705814 L 395121.1 -4706510 L 394962.7 -4707547 L 395161.6 -4709086 L 395929.6 -4711234 L 395836.2 -4711856 L 395965.5 -4712405 L 396495.2 -4713195 L 396792.3 -4713371 L 399050.1 -4713982 L 399902.4 -4713969 L 401426.5 -4714489 L 403158 -4715262 L 403489.6 -4715449 L 404594.2 -4715737 L 406821.8 -4715261 L 407569.6 -4715416 L 407498.2 -4716171 L 408578.9 -4716443 L 409069.9 -4717011 L 409161 -4718128 L 409596 -4718746 L 409727.5 -4719104 L 410577.2 -4718335 L 411741.5 -4718372 L 412448.1 -4718036 L 413146.5 -4718355 L 413841.9 -4719281 L 415713.4 -4719419 L 415968.9 -4719714 L 415955.6 -4720420 L 417177.1 -4722536 L 417781.8 -4724111 L 418120 -4724127 L 419188.8 -4723484 L 419449.9 -4723289 L 419807.3 -4723252 L 421489.3 -4723693 L 421802.5 -4724365 L 422948.7 -4724160 L 424005.2 -4724568 L 426680 -4724454 L 428433.9 -4725236 L 429675.2 -4724316 L 430425.3 -4724111 L 431166 -4724345 L 431553.3 -4724306 L 432130 -4723380 L 432365.4 -4723088 L 432370.5 -4723043 L 432373.8 -4722633 L 433346.7 -4722972 L 433699.1 -4722939 L 433613.6 -4723479 L 433688.6 -4723747 L 435869.6 -4725211 L 437698.2 -4725762 L 439001.6 -4728052 L 439642 -4728474 L 439666.6 -4729241 L 440535.9 -4728557 L 441615.5 -4728298 L 444071.7 -4728921 L 444395.5 -4729101 L 446074.3 -4730731 L 447096.6 -4731295 L 447248.9 -4732444 L 446963.2 -4733572 L 446874 -4733696 L 446820.3 -4733977 L 446717.9 -4734542 L 446891.6 -4734857 L 446633.1 -4735897 L 446140.6 -4736411 L 446218.4 -4737127 L 446202.3 -4737509 L 446205.8 -4739418 L 445830.4 -4739455 L 445256.4 -4739829 L 445245.1 -4741323 L 444461.3 -4742117 L 444683.8 -4743198 L 445590.4 -4743802 L 448074.3 -4744323 L 448432.4 -4744409 L 449357 -4744638 L 450623.7 -4744259 L 450922.5 -4744117 L 455068.1 -4743324 L 455450.2 -4743382 L 455889.1 -4743498 L 458708 -4744574 L 459019.8 -4744799 L 459967.9 -4744491 L 460225.1 -4744242 L 460494.3 -4743983 L 463404.1 -4744316 L 463767.7 -4744231 L 464510.9 -4744026 L 464894.3 -4743989 L 467412 -4743176 L 470029.8 -4743367 L 470407 -4743401 L 472404 -4743226 L 472468.9 -4743216 L 473846.3 -4742554 L 477557.8 -4742953 L 478627.9 -4743337 L 479560.1 -4744538 L 479757.9 -4744867 L 480375.5 -4747264 L 482438.9 -4749600 L 483927.4 -4749983 L 484312.6 -4750042 L 486405.4 -4751503 L 488511.6 -4752033 L 488812.6 -4752248 L 490058.3 -4750363 L 491846.8 -4749809 L 492220.4 -4749732 L 492821.7 -4748818 L 493048.1 -4748531 L 498574.3 -4746498 L 498911.3 -4746287 L 500518.4 -4745235 L 500837.4 -4745021 L 503065.5 -4743564 L 503129.1 -4743522 L 502729.1 -4742398 L 502832.3 -4741080 L 502543.4 -4740643 L 502389.7 -4737256 L 502659 -4732147 L 502453.3 -4731642 L 501965.3 -4731416 L 501886.5 -4731178 L 501979.1 -4730753 L 502706.7 -4730875 L 502891 -4730815 L 502923.1 -4730487 L 502701.5 -4729622 L 502464.6 -4726304 L 502603 -4724887 L 502418.7 -4722595 L 502573.9 -4718396 L 502939.5 -4717000 L 503105.4 -4716608 L 503035.7 -4714711 L 503263.8 -4711591 L 504047.1 -4710619 L 505008.8 -4710432 L 506492.6 -4709860 L 506747.1 -4709604 L 506524.1 -4709276 L 506720.6 -4709091 L 507498.7 -4709218 L 507499.6 -4709217 z M 417948.7 -4700151 L 418169.7 -4700589 L 418026.6 -4700960 L 417828.1 -4701286 L 416684.2 -4702136 L 416336.8 -4703037 L 416373.3 -4703417 L 416634.1 -4705333 L 416224 -4705459 L 415915 -4705555 L 415778.8 -4705466 L 415601.2 -4704946 L 413941.7 -4703089 L 413571.5 -4701362 L 414527.5 -4700683 L 415122.6 -4700498 L 417948.7 -4700151 L 417948.7 -4700151 z " |
id="path677" /> |
<path |
d="M 399902.8 -4713968 L 399392.3 -4714790 L 399133.3 -4715207 L 398570.6 -4715706 L 395867.9 -4717014 L 395681.5 -4717466 L 395830.4 -4717982 L 396365.7 -4718682 L 396352.8 -4719138 L 396055.3 -4719368 L 394845.9 -4719665 L 393530.8 -4720328 L 393037.4 -4721039 L 392609.7 -4721106 L 390744.9 -4720356 L 390405 -4720219 L 389777.1 -4720195 L 387570.6 -4721282 L 386336.9 -4721270 L 384810 -4721743 L 382872.4 -4722882 L 382208.1 -4723747 L 381521.6 -4723929 L 378815.3 -4723340 L 378458.8 -4723458 L 377971.4 -4723351 L 376684.6 -4723066 L 375591.5 -4723480 L 374992.6 -4723349 L 374589.9 -4723058 L 373872.6 -4719045 L 373601.5 -4718555 L 372889.9 -4718223 L 372030.7 -4718297 L 370105.4 -4723513 L 367825 -4727690 L 366087 -4729006 L 365650 -4729508 L 365672.3 -4730272 L 365384.7 -4730733 L 364733 -4731128 L 363693 -4731202 L 359674.1 -4731291 L 357049.2 -4731069 L 355488.9 -4731685 L 354791.3 -4731751 L 353085.4 -4731326 L 352261.8 -4730978 L 350813.3 -4730367 L 350293 -4730322 L 349352.7 -4730552 L 347797 -4731965 L 347131.3 -4733356 L 346736.9 -4734946 L 346207.7 -4735539 L 344309.2 -4737860 L 343449.2 -4738591 L 340396.3 -4738809 L 339583.3 -4739144 L 337271.4 -4739010 L 335992.4 -4739130 L 334412.9 -4739795 L 334224.9 -4740366 L 334029.8 -4740958 L 333381.8 -4741300 L 332954.4 -4741246 L 331628.9 -4740128 L 331167.3 -4739960 L 328998 -4740843 L 327037.1 -4742324 L 324834.1 -4743575 L 324882.7 -4744053 L 325044.3 -4745444 L 324787 -4745697 L 324162.5 -4748464 L 323453.2 -4748725 L 323127.5 -4749406 L 323791.7 -4751163 L 323421.9 -4752199 L 323115.8 -4752423 L 322539.3 -4754070 L 323421.4 -4754606 L 323704 -4754835 L 323955.5 -4755107 L 325046.6 -4754949 L 325679.9 -4755315 L 326399.6 -4755220 L 327298.5 -4755830 L 327377.1 -4756193 L 326644.5 -4758288 L 326581.4 -4758659 L 329283.4 -4758653 L 329659.2 -4758763 L 330002 -4758903 L 330901.8 -4759543 L 331186.3 -4759508 L 331749.4 -4759407 L 333647.4 -4759664 L 333929.9 -4759927 L 334838.2 -4760148 L 335111.1 -4760303 L 335235.6 -4760661 L 336454.1 -4762091 L 337340.6 -4763763 L 338410.6 -4763966 L 338723.2 -4764187 L 337997.8 -4764184 L 337568.5 -4765163 L 336674.4 -4765763 L 336360.3 -4765703 L 336041 -4765712 L 335721.7 -4767803 L 335694.6 -4768160 L 336181 -4767724 L 336415.3 -4767497 L 336515 -4767526 L 336446 -4768480 L 336093.9 -4768425 L 335684.8 -4769010 L 335723.4 -4769720 L 335856 -4770051 L 335448 -4770920 L 335288.3 -4771233 L 337032.5 -4771581 L 337478.8 -4772137 L 336421.5 -4773223 L 336472.9 -4773980 L 336816.2 -4773984 L 337440.3 -4774791 L 337227.6 -4775767 L 337567.3 -4775650 L 337925.5 -4775663 L 339198 -4774377 L 340228.6 -4774149 L 341300.5 -4776290 L 341451.6 -4777742 L 341146.4 -4778326 L 341440.8 -4778959 L 341581 -4779127 L 342326.9 -4778357 L 344041.7 -4777958 L 344350.6 -4777776 L 344374.4 -4778465 L 345681.5 -4778871 L 346039.7 -4778893 L 346327.7 -4779032 L 346341.7 -4779350 L 346663.6 -4779505 L 347336.9 -4780272 L 349060.8 -4778208 L 350406.4 -4777448 L 351435.3 -4778418 L 351634.9 -4778105 L 353303 -4776652 L 353372.8 -4776340 L 354284.6 -4775487 L 354243.5 -4774580 L 355150.9 -4772584 L 355263.8 -4772233 L 356695.4 -4772382 L 357052.5 -4772435 L 357384.5 -4772536 L 358388.6 -4772805 L 358332.1 -4774619 L 359815.4 -4774841 L 360050 -4775140 L 360133.8 -4775473 L 360756.1 -4776284 L 361773.4 -4776171 L 361506.1 -4776438 L 359700.8 -4778363 L 359484.1 -4779077 L 357981.2 -4779058 L 357610.9 -4779081 L 356538.3 -4779311 L 355087.9 -4779745 L 354797.3 -4780447 L 355791.6 -4781992 L 356030.6 -4783472 L 356778.6 -4783644 L 357432.2 -4783351 L 357569 -4782989 L 357884.2 -4783036 L 358816.8 -4783566 L 359107.6 -4783787 L 358963.6 -4783868 L 359458.2 -4784342 L 361388.7 -4783577 L 361864.4 -4784044 L 362166.4 -4784186 L 362640.6 -4783815 L 362877.7 -4783627 L 363511.2 -4783724 L 363803 -4784289 L 364109.1 -4784382 L 363949.8 -4784934 L 363979.9 -4785222 L 365979.7 -4786006 L 366336.7 -4786115 L 367430.4 -4785835 L 368070.4 -4786774 L 368246.1 -4787115 L 368497.8 -4787755 L 368086 -4788662 L 367867.6 -4788930 L 367729.9 -4789625 L 367090 -4789319 L 366407.7 -4789518 L 366069 -4789626 L 365719.1 -4789468 L 364789.1 -4790069 L 363311.9 -4790404 L 364260.2 -4791060 L 364309 -4791435 L 361369 -4791969 L 361436.8 -4792337 L 361963.3 -4792844 L 361289.6 -4794571 L 362019.5 -4794467 L 362518.7 -4795474 L 363264.1 -4795535 L 363880.2 -4796855 L 364482.7 -4797335 L 365636.1 -4797498 L 367855.8 -4796863 L 367253.2 -4796415 L 368322.6 -4794493 L 370135.8 -4793213 L 370200 -4793093 L 371870.5 -4791100 L 372113.1 -4790383 L 371279.8 -4787529 L 372422.4 -4786574 L 373250.6 -4786308 L 373486.7 -4786098 L 374076.2 -4785888 L 375088 -4785647 L 375573.4 -4785883 L 375987.2 -4786384 L 376080 -4786754 L 376939.5 -4787423 L 378306.7 -4786783 L 378304.5 -4787218 L 378324.4 -4787586 L 378046.2 -4788208 L 377398.4 -4788561 L 377670.2 -4788792 L 378400.6 -4789952 L 378271.2 -4790189 L 377855 -4790531 L 377499.8 -4790488 L 377261.4 -4791145 L 377461.2 -4791441 L 377310.6 -4791768 L 377150 -4792089 L 377680.5 -4793000 L 377805.4 -4794760 L 378046.7 -4794497 L 378636.6 -4794128 L 379054.2 -4794704 L 379382.1 -4793805 L 379455.9 -4793449 L 379502.8 -4792387 L 379846.5 -4792268 L 381119.2 -4792963 L 381463.9 -4792848 L 381458.2 -4792738 L 381762.1 -4792922 L 382684.6 -4791411 L 383352.8 -4790523 L 383857.4 -4791062 L 383773.6 -4792502 L 384140.9 -4792508 L 384470.8 -4792692 L 384764.2 -4791994 L 386247.4 -4791677 L 386665.4 -4791047 L 388879.8 -4790529 L 389164 -4790277 L 388923.5 -4788780 L 388969.5 -4788403 L 389726 -4788444 L 390619.4 -4789156 L 390671.2 -4789918 L 390264.3 -4790904 L 391981.7 -4792929 L 392164.5 -4793264 L 393054.7 -4792606 L 393352.8 -4792383 L 393610.1 -4792095 L 394353.4 -4790755 L 394270.6 -4789258 L 395526.5 -4787338 L 396156.6 -4786893 L 395902.8 -4786626 L 396165.2 -4785566 L 394989.2 -4784182 L 394946.3 -4783091 L 395116 -4782737 L 396262.7 -4782814 L 397370.7 -4782423 L 398004.2 -4781446 L 400206.5 -4779859 L 400574.2 -4779723 L 400918.4 -4779066 L 402351 -4779328 L 403621.8 -4778559 L 403968.5 -4778418 L 404349.8 -4778045 L 406154 -4778207 L 405955.6 -4779227 L 406304.6 -4779342 L 406462.4 -4779673 L 406839.6 -4777895 L 408555.4 -4777898 L 408777.2 -4778195 L 408751.4 -4776310 L 409515.2 -4775515 L 409716.8 -4774810 L 410688.8 -4776355 L 411654.4 -4776595 L 412555 -4776147 L 412596.5 -4775558 L 412949 -4775517 L 414250.7 -4775108 L 414491 -4774107 L 414410.8 -4773119 L 414780.2 -4771621 L 414809.2 -4771235 L 414517.2 -4771084 L 414317.3 -4770823 L 414611.3 -4770623 L 415385.1 -4769469 L 415227.3 -4769151 L 413847.8 -4769194 L 413530 -4768603 L 413961 -4767246 L 414626.6 -4766947 L 415199.7 -4767249 L 416398.7 -4766431 L 416681.5 -4765940 L 417091.3 -4765385 L 417186.1 -4765053 L 417155.2 -4764334 L 416033.3 -4762917 L 415817.5 -4762626 L 416510.5 -4762515 L 417259.1 -4761793 L 417258 -4761120 L 416936.5 -4760450 L 417118.5 -4758234 L 417586.2 -4757675 L 418670.8 -4757450 L 417680.2 -4756591 L 417332 -4756556 L 416589.1 -4757356 L 415146.4 -4757539 L 414298.9 -4757225 L 414336.9 -4756874 L 413061.6 -4756441 L 412843.1 -4755029 L 413225.7 -4754923 L 416651.9 -4753924 L 416673 -4753539 L 417344.8 -4751799 L 417488.5 -4751465 L 417068.8 -4750948 L 416680.9 -4748476 L 416703.9 -4748114 L 416951.5 -4747408 L 415258.4 -4746546 L 414916.6 -4746379 L 413840.3 -4745871 L 409489.2 -4745506 L 409093.1 -4745486 L 408376.5 -4745492 L 407943.6 -4745108 L 407939.7 -4744749 L 407976.8 -4744035 L 406704.5 -4742713 L 406630.9 -4741979 L 406815.5 -4741654 L 409241.1 -4740797 L 409759.6 -4740302 L 409795.7 -4739931 L 410044.9 -4739699 L 411936.4 -4736970 L 412261.3 -4736784 L 412022.6 -4736519 L 410667.7 -4736122 L 410617.9 -4735767 L 410938.3 -4735104 L 411938.7 -4734635 L 412308.9 -4734633 L 412451.3 -4734416 L 412446.1 -4734158 L 413427.7 -4733622 L 413960.6 -4732668 L 416950.3 -4732363 L 417326.7 -4732312 L 417611.8 -4732394 L 417906.1 -4732433 L 418164.8 -4732366 L 418335.1 -4732160 L 419285.2 -4732787 L 419667.2 -4732865 L 420551.9 -4733018 L 420897.4 -4733607 L 421632.7 -4733663 L 422802.6 -4734548 L 424627 -4734168 L 424993.5 -4734101 L 425109.1 -4734145 L 425215.1 -4732758 L 425934.8 -4732038 L 426249.7 -4731876 L 427105.6 -4731327 L 427329 -4731065 L 429524.8 -4729333 L 429505.9 -4728973 L 430074.3 -4728459 L 430846.6 -4728499 L 431482.5 -4728094 L 432206.2 -4726748 L 432241.4 -4726014 L 431616.6 -4725068 L 431554.1 -4724306 L 431166.8 -4724345 L 430426.1 -4724111 L 429676 -4724316 L 428434.7 -4725236 L 426680.8 -4724455 L 424006 -4724569 L 422949.5 -4724160 L 421803.3 -4724366 L 421490.1 -4723693 L 419808.1 -4723252 L 419450.7 -4723289 L 419189.6 -4723484 L 418120.8 -4724127 L 417782.6 -4724111 L 417177.9 -4722536 L 415956.4 -4720420 L 415969.7 -4719714 L 415714.2 -4719419 L 413842.7 -4719281 L 413147.3 -4718355 L 412448.9 -4718037 L 411742.3 -4718373 L 410578 -4718335 L 409728.3 -4719104 L 409596.8 -4718746 L 409161.8 -4718128 L 409070.7 -4717012 L 408579.7 -4716444 L 407499 -4716171 L 407570.4 -4715416 L 406822.6 -4715261 L 404595 -4715737 L 403490.4 -4715449 L 403158.8 -4715262 L 401427.3 -4714489 L 399903.2 -4713969 L 399902.8 -4713968 z " |
id="path678" /> |
<path |
d="M 324834.2 -4743576 L 324009.4 -4744045 L 322410.2 -4744589 L 319656.5 -4745526 L 317918.7 -4745760 L 312369.5 -4748658 L 311193.5 -4748341 L 310267.7 -4746747 L 310179 -4746594 L 309332.8 -4746030 L 309342.8 -4743200 L 309159.2 -4742198 L 307585.9 -4740328 L 307532.5 -4739771 L 308778.4 -4738911 L 308445.2 -4737783 L 308198 -4737479 L 308111.2 -4736807 L 308760.2 -4735479 L 308837.2 -4734782 L 308912.2 -4734104 L 309451.6 -4732857 L 309370.6 -4730753 L 309888.9 -4729531 L 309806.7 -4728705 L 309309 -4728718 L 307321.8 -4729572 L 304059 -4730408 L 302411.1 -4730305 L 301816.6 -4730267 L 297207.2 -4730654 L 296212 -4730317 L 295361.6 -4730241 L 293507.6 -4730486 L 293007.7 -4730454 L 293423.5 -4730957 L 293875 -4731556 L 293785.3 -4732283 L 291363.8 -4734694 L 292268 -4735341 L 292243.1 -4736099 L 292146.9 -4736474 L 292440.8 -4737585 L 292342.7 -4737938 L 291800.4 -4738872 L 291896 -4739940 L 292415 -4740904 L 292509.5 -4740983 L 292573.1 -4742340 L 292533.3 -4742585 L 292288.7 -4742636 L 292137.8 -4742968 L 292261.7 -4744731 L 292306.2 -4745099 L 292747.8 -4746502 L 293044.2 -4747247 L 292825.1 -4747410 L 292467.4 -4747818 L 293231.2 -4748436 L 293505.8 -4748626 L 293513.4 -4748993 L 293471.7 -4749725 L 293946.8 -4750714 L 294321.1 -4750672 L 295725.4 -4750253 L 296093 -4749602 L 296468 -4749634 L 297844.6 -4749415 L 298013.3 -4749111 L 298529.6 -4748697 L 299596.8 -4749039 L 300146.4 -4748522 L 300479.2 -4748629 L 300825.6 -4748577 L 300979.2 -4748857 L 301964.9 -4749661 L 302123.1 -4750309 L 302082.8 -4750686 L 302297.1 -4750997 L 302420.6 -4751316 L 302828.2 -4752246 L 302887.8 -4752584 L 303411.1 -4753803 L 303676.9 -4753966 L 303871.2 -4754844 L 303847.8 -4755226 L 304112.6 -4755945 L 304469.3 -4756348 L 304575.2 -4756597 L 304862.3 -4756667 L 305375.3 -4756886 L 305603.7 -4757180 L 306308.2 -4757419 L 307219.9 -4758588 L 307592 -4758607 L 307749.3 -4759809 L 307177.7 -4760342 L 307113.6 -4760402 L 306191.4 -4760749 L 305867.9 -4760824 L 305520.2 -4761529 L 305389.2 -4761901 L 305565.9 -4762151 L 305208.1 -4762601 L 305508.1 -4762688 L 306368.5 -4762893 L 306375.3 -4763222 L 306355.1 -4764125 L 306144.7 -4764377 L 305623.2 -4765118 L 305530.2 -4765463 L 305713.4 -4766151 L 305649.1 -4766276 L 305453.4 -4766609 L 305067.5 -4767677 L 304765 -4767722 L 303865.5 -4767870 L 303928.6 -4767521 L 303790.4 -4766828 L 303712 -4766424 L 303466.4 -4766475 L 303223.7 -4766542 L 303165.1 -4766179 L 302104.9 -4766348 L 301442.3 -4766084 L 301212.8 -4765797 L 300113.9 -4764787 L 299916.5 -4764462 L 299595.3 -4764170 L 299283.7 -4764244 L 298392.7 -4765082 L 298929.6 -4765614 L 299143.9 -4768181 L 299302.4 -4768503 L 300244.8 -4768919 L 301385.4 -4768048 L 301730.3 -4768149 L 301627.1 -4768535 L 301496.2 -4768881 L 301152.5 -4770988 L 300840.6 -4771151 L 301414.2 -4772033 L 301594.1 -4772238 L 299055.5 -4773413 L 299116.6 -4774486 L 298834.3 -4774447 L 298276.8 -4774366 L 296841.7 -4774716 L 296511.7 -4776058 L 295795.7 -4776224 L 295660.5 -4776950 L 295334.6 -4776841 L 293651.2 -4776583 L 292697.7 -4776745 L 293024.3 -4776936 L 293604.4 -4777411 L 292890.9 -4778271 L 291896.2 -4778806 L 291812.3 -4778837 L 292027.9 -4779099 L 293114 -4780395 L 293295.5 -4780718 L 293620 -4780947 L 296641.9 -4783474 L 298476 -4785554 L 297263 -4786282 L 298117.6 -4787340 L 298245.3 -4787659 L 298569.1 -4787514 L 299564.3 -4787144 L 300486.6 -4787671 L 301033 -4787221 L 301356.8 -4787375 L 302546.9 -4788089 L 302786.5 -4788370 L 302806.6 -4789830 L 302428.5 -4789782 L 301409.9 -4790299 L 301041 -4790200 L 301304.6 -4790472 L 302373.4 -4791972 L 303124.6 -4792044 L 303153.5 -4792350 L 303198.4 -4792653 L 303491 -4792906 L 304870.8 -4794250 L 306326.4 -4794693 L 306393.3 -4794993 L 306715.1 -4796080 L 308082.6 -4796623 L 307818 -4797271 L 306159.1 -4798250 L 305794.4 -4798376 L 306071.2 -4798580 L 306216.9 -4798893 L 306601.2 -4798867 L 308851.1 -4798455 L 309862.4 -4798972 L 310111.2 -4799197 L 311348.3 -4800291 L 311405.2 -4800600 L 312670.7 -4802512 L 312946.3 -4802782 L 313246 -4803328 L 313420.8 -4803593 L 313491.2 -4803742 L 313738.6 -4804110 L 314849.7 -4805656 L 316113.8 -4804839 L 316839.8 -4805687 L 317129.5 -4805938 L 317639.9 -4806478 L 317412.1 -4807519 L 317635.7 -4807823 L 318054 -4808459 L 318255.7 -4808773 L 317869.3 -4809808 L 319340.7 -4809768 L 321961 -4808036 L 322275.1 -4807798 L 322305.9 -4807846 L 323187.5 -4809416 L 323440.2 -4809692 L 324982.4 -4808991 L 325297.2 -4808855 L 326047.6 -4809257 L 326339.8 -4809332 L 326945.3 -4809472 L 327854.3 -4808886 L 328228.7 -4808860 L 328434.4 -4808830 L 328637.2 -4808782 L 329621.6 -4808361 L 329967.4 -4808225 L 330176.2 -4808501 L 331186.9 -4808292 L 331189.9 -4807941 L 332015 -4807391 L 331967.1 -4807043 L 333134.8 -4805723 L 333335.4 -4805406 L 333479.4 -4805642 L 333528.5 -4805914 L 334884.6 -4806042 L 335163.2 -4804660 L 334947.5 -4804357 L 335877.4 -4803467 L 336194 -4803390 L 336898.9 -4803660 L 337264.9 -4803753 L 337701.9 -4804824 L 338036.1 -4804880 L 338217.8 -4805224 L 337735.2 -4805724 L 337968.6 -4806454 L 337388.4 -4808270 L 337650.1 -4808546 L 338243.7 -4808979 L 339732.7 -4808709 L 339799.5 -4809071 L 340224 -4809667 L 339634.4 -4810587 L 339466 -4810818 L 339700.9 -4811061 L 340571.7 -4811964 L 340716.5 -4812632 L 340830.5 -4813274 L 341149.1 -4813202 L 340996.5 -4813496 L 341556.5 -4813846 L 341379 -4814121 L 341157.6 -4814390 L 339490.2 -4815575 L 339669 -4815886 L 341100.7 -4816873 L 340802.8 -4817020 L 342208.6 -4817281 L 342909.9 -4818898 L 344006 -4818901 L 343763.6 -4819193 L 342588 -4820141 L 342493.2 -4820860 L 343000 -4821326 L 343693.6 -4821023 L 344358.5 -4821362 L 344080.3 -4821630 L 342291.7 -4823002 L 343020 -4822792 L 344261.8 -4823556 L 345012.5 -4823546 L 345592.7 -4823092 L 346027.8 -4822052 L 346724.6 -4822413 L 347756.2 -4823381 L 347451.3 -4824289 L 347318.6 -4824631 L 348366.6 -4824341 L 350531.2 -4824595 L 350892.7 -4824546 L 351463.6 -4826113 L 351383.9 -4826441 L 351746.7 -4826292 L 354361.4 -4825867 L 354585.2 -4826565 L 354512.5 -4828809 L 353564.2 -4829927 L 353370.7 -4830245 L 352975.7 -4830879 L 352195 -4830095 L 351162.2 -4829927 L 350175.8 -4831484 L 349905.6 -4831744 L 350270.8 -4832960 L 350328.9 -4833273 L 350131.5 -4833548 L 349655.1 -4834026 L 348986.9 -4834132 L 348727.8 -4833927 L 347798.6 -4833818 L 347754.5 -4833501 L 346079.5 -4834169 L 345616.8 -4834718 L 346516.4 -4835832 L 346677.3 -4836168 L 346048.2 -4836606 L 344916.5 -4836424 L 344541.3 -4836342 L 343573.1 -4837413 L 343209.8 -4837385 L 343122.1 -4837720 L 342498.5 -4837975 L 342691.4 -4838262 L 342701.5 -4838624 L 343900.4 -4840631 L 343762.9 -4840934 L 343139.3 -4841150 L 342814.3 -4841337 L 341920.1 -4842000 L 340842.3 -4841831 L 340603.9 -4842121 L 340436.3 -4842461 L 340551.5 -4843108 L 339645.3 -4843775 L 339311.5 -4843904 L 337590.9 -4845611 L 337842.5 -4845610 L 338095.1 -4845608 L 336721.9 -4847348 L 336033.9 -4847395 L 336346.9 -4847588 L 335506.2 -4848766 L 335099.4 -4850135 L 335135.4 -4850502 L 335307.6 -4850715 L 337268.1 -4850474 L 337435 -4850791 L 337855.9 -4851351 L 338534.3 -4851553 L 338888.5 -4851635 L 341826.8 -4852086 L 342477.8 -4851682 L 343612.4 -4851554 L 343853.3 -4851855 L 345501 -4853383 L 345597.6 -4853477 L 346683.2 -4852552 L 347378.6 -4852369 L 347309.1 -4851784 L 347513.5 -4851488 L 348105.9 -4851365 L 348248.8 -4851720 L 348976.5 -4852608 L 350332.8 -4853295 L 350534.7 -4854034 L 351548.3 -4853572 L 351983.2 -4852512 L 352962.9 -4851996 L 353291.7 -4851038 L 353568.8 -4850839 L 356177.9 -4850363 L 356340.4 -4849637 L 355448.4 -4848944 L 355675.7 -4848243 L 355889.1 -4847924 L 361129.8 -4850118 L 360358.3 -4850828 L 360303.5 -4851208 L 360638.1 -4851140 L 361201.4 -4851522 L 361500.4 -4850920 L 361846.6 -4851019 L 362890.4 -4851285 L 363121.9 -4851339 L 363378.3 -4851430 L 363905.6 -4851383 L 364178.6 -4851625 L 365100.8 -4852213 L 366474.3 -4852410 L 366616.4 -4852720 L 367143.7 -4853126 L 367827.7 -4853126 L 367935.7 -4853487 L 367416.4 -4855267 L 365589.8 -4855418 L 364199.9 -4854961 L 363306.4 -4856175 L 362570 -4856377 L 362802 -4856658 L 364650.9 -4857721 L 364997.8 -4857560 L 365911.9 -4856940 L 367805.9 -4857042 L 368027.2 -4857658 L 367078.1 -4859213 L 367364.2 -4859432 L 367639.3 -4859662 L 367631.7 -4860379 L 368389.9 -4861147 L 370444 -4860221 L 371533.7 -4860537 L 371860.7 -4860335 L 372602.3 -4859105 L 373630.4 -4858819 L 374982.5 -4859245 L 375071.1 -4858890 L 376572.1 -4861563 L 376804.1 -4861875 L 377234.6 -4862766 L 377396.7 -4863064 L 378244.1 -4862329 L 378555.8 -4860877 L 378936.3 -4860851 L 380562.7 -4862388 L 380456.1 -4862755 L 380787.9 -4862637 L 381103.8 -4862482 L 381747.1 -4863353 L 381975.6 -4864408 L 383355.5 -4864042 L 383720.9 -4864072 L 383038.2 -4862019 L 383277.2 -4860923 L 383959.1 -4860033 L 383707.9 -4859351 L 384311 -4858909 L 384117.7 -4858701 L 383611.2 -4858803 L 383588.8 -4858544 L 384785.1 -4856676 L 384957.6 -4856338 L 385241.5 -4856183 L 386446.7 -4855734 L 386601.6 -4855683 L 386188.4 -4852808 L 389127.9 -4851056 L 390675.1 -4850862 L 390799.7 -4850506 L 390427 -4848807 L 391176.4 -4848146 L 391504.1 -4847147 L 391135.6 -4845792 L 391028.5 -4845455 L 391644.2 -4844718 L 391780.7 -4844402 L 393357 -4843664 L 394095.7 -4842845 L 394438.9 -4842976 L 395268.4 -4841766 L 395497.7 -4841466 L 395156.7 -4840814 L 394397.9 -4840788 L 393255.7 -4839855 L 392201.3 -4840276 L 391824.7 -4840347 L 392097.8 -4840116 L 392016.5 -4839414 L 392010.3 -4839058 L 396232.2 -4838478 L 396601.9 -4838357 L 396452.9 -4838012 L 396555.3 -4836893 L 397352.9 -4835661 L 397336.8 -4835286 L 396843.5 -4834850 L 395078.7 -4834218 L 394171.9 -4833018 L 393857.8 -4831969 L 394716.2 -4830810 L 395334.9 -4830945 L 396365.1 -4830597 L 396680 -4830412 L 396731.7 -4830082 L 398075.7 -4829194 L 398208.9 -4829041 L 398409.6 -4829013 L 398433.8 -4828913 L 399816.1 -4828709 L 399855.8 -4828813 L 400163.5 -4828713 L 400622.8 -4828290 L 400638.3 -4827649 L 400896.4 -4827437 L 402305 -4826674 L 402728.7 -4826531 L 403040.6 -4826373 L 403675.1 -4826146 L 404580.2 -4826359 L 404930.9 -4826255 L 405985.9 -4825964 L 406802.3 -4824816 L 406984 -4823112 L 406879.9 -4822779 L 407611.4 -4822483 L 407966.2 -4822307 L 408941.6 -4821904 L 409265.4 -4821765 L 408669.3 -4821345 L 409824.6 -4819165 L 409958.6 -4819079 L 410134 -4818769 L 412175.9 -4817420 L 412462.5 -4817823 L 414713.4 -4816357 L 415024.3 -4816164 L 415411.9 -4816520 L 416757.3 -4815854 L 417861.9 -4814843 L 418529.1 -4815158 L 419650.4 -4815116 L 419870.4 -4815422 L 420041 -4817627 L 419850.6 -4817959 L 420182.7 -4818133 L 421690.6 -4817151 L 422299.9 -4818357 L 422755.4 -4816950 L 422531.4 -4815784 L 422757.6 -4815556 L 422487.7 -4815278 L 421999.9 -4814677 L 420871.3 -4814427 L 420401.4 -4813829 L 420025.3 -4811566 L 420626.3 -4811176 L 421155.9 -4810155 L 421291.5 -4809803 L 421893.7 -4808881 L 421799.7 -4808516 L 421109.5 -4808239 L 420476.5 -4808642 L 419801.7 -4807743 L 418049 -4807132 L 416594.8 -4808214 L 416016.8 -4807777 L 415790.8 -4808329 L 415852 -4808644 L 415611.1 -4808781 L 415404 -4808965 L 414460.8 -4808421 L 413347.9 -4808741 L 412595.6 -4808549 L 411603.1 -4806547 L 411851.4 -4806249 L 411529.8 -4805881 L 410949.7 -4805513 L 410305.1 -4805804 L 410493 -4807765 L 408601.7 -4809562 L 408526 -4810306 L 407201.4 -4811044 L 407094.4 -4810719 L 406095.2 -4809847 L 406338.3 -4809643 L 406207.7 -4808743 L 405865.9 -4808097 L 404765.4 -4808222 L 403987.6 -4807445 L 403970.5 -4807083 L 404323.3 -4806123 L 404680.8 -4805662 L 403579.8 -4805609 L 402970.8 -4805224 L 402932.5 -4801812 L 403607.7 -4800886 L 403629.5 -4800163 L 403585.6 -4799778 L 402559.2 -4799846 L 402247.1 -4799692 L 401955 -4799918 L 401278.4 -4800214 L 400594.3 -4799936 L 400241.5 -4799321 L 399954.3 -4799592 L 398393.1 -4800732 L 398168.2 -4800071 L 397257.4 -4799443 L 396250 -4799882 L 396483.4 -4799582 L 396518.1 -4798897 L 396354.3 -4798563 L 397268.7 -4797037 L 396580.6 -4796775 L 394937.9 -4795883 L 394661.1 -4795610 L 394949.1 -4795404 L 395484.3 -4794960 L 394848.7 -4793745 L 394406.8 -4793269 L 394177 -4792986 L 393352.1 -4792382 L 393054 -4792605 L 392163.8 -4793264 L 391981 -4792928 L 390263.6 -4790904 L 390670.5 -4789917 L 390618.7 -4789156 L 389725.3 -4788444 L 388968.8 -4788403 L 388922.8 -4788780 L 389163.3 -4790277 L 388879.1 -4790528 L 386664.7 -4791047 L 386246.7 -4791677 L 384763.5 -4791994 L 384470.1 -4792691 L 384140.2 -4792508 L 383772.9 -4792502 L 383856.7 -4791062 L 383352.1 -4790523 L 382683.9 -4791411 L 381761.4 -4792922 L 381457.5 -4792737 L 381463.2 -4792847 L 381118.5 -4792963 L 379845.8 -4792268 L 379502.1 -4792387 L 379455.2 -4793448 L 379381.4 -4793805 L 379053.5 -4794703 L 378635.9 -4794127 L 378046 -4794496 L 377804.7 -4794759 L 377679.8 -4793000 L 377149.3 -4792089 L 377309.9 -4791768 L 377460.5 -4791441 L 377260.7 -4791145 L 377499.1 -4790488 L 377854.3 -4790530 L 378270.5 -4790188 L 378399.9 -4789952 L 377669.5 -4788792 L 377397.7 -4788561 L 378045.5 -4788207 L 378323.7 -4787586 L 378303.8 -4787218 L 378306 -4786783 L 376938.8 -4787422 L 376079.3 -4786753 L 375986.5 -4786384 L 375572.7 -4785882 L 375087.3 -4785647 L 374075.5 -4785888 L 373486 -4786097 L 373249.9 -4786307 L 372421.7 -4786573 L 371279.1 -4787528 L 372112.4 -4790383 L 371869.8 -4791100 L 370199.3 -4793093 L 370135.1 -4793213 L 368321.9 -4794493 L 367252.5 -4796414 L 367855.1 -4796862 L 365635.4 -4797497 L 364482 -4797335 L 363879.5 -4796855 L 363263.4 -4795534 L 362518 -4795474 L 362018.8 -4794467 L 361288.9 -4794571 L 361962.6 -4792843 L 361436.1 -4792337 L 361368.3 -4791969 L 364308.3 -4791435 L 364259.5 -4791059 L 363311.2 -4790404 L 364788.4 -4790068 L 365718.4 -4789468 L 366068.3 -4789625 L 366407 -4789517 L 367089.3 -4789318 L 367729.2 -4789625 L 367866.9 -4788930 L 368085.3 -4788662 L 368497.1 -4787755 L 368245.4 -4787115 L 368069.7 -4786774 L 367429.7 -4785835 L 366336 -4786115 L 365979 -4786006 L 363979.2 -4785222 L 363949.1 -4784934 L 364108.4 -4784382 L 363802.3 -4784288 L 363510.5 -4783724 L 362877 -4783627 L 362639.9 -4783815 L 362165.7 -4784186 L 361863.7 -4784044 L 361388 -4783577 L 359457.5 -4784342 L 358962.9 -4783868 L 359106.9 -4783787 L 358816.1 -4783566 L 357883.5 -4783036 L 357568.3 -4782988 L 357431.5 -4783350 L 356777.9 -4783643 L 356029.9 -4783472 L 355790.9 -4781992 L 354796.6 -4780446 L 355087.2 -4779745 L 356537.6 -4779311 L 357610.2 -4779081 L 357980.5 -4779058 L 359483.4 -4779077 L 359700.1 -4778363 L 361505.4 -4776438 L 361772.7 -4776171 L 360755.4 -4776283 L 360133.1 -4775473 L 360049.3 -4775140 L 359814.7 -4774841 L 358331.4 -4774618 L 358387.9 -4772805 L 357383.8 -4772535 L 357051.8 -4772435 L 356694.7 -4772382 L 355263.1 -4772232 L 355150.2 -4772584 L 354242.8 -4774580 L 354283.9 -4775487 L 353372.1 -4776340 L 353302.3 -4776652 L 351634.2 -4778105 L 351434.6 -4778418 L 350405.7 -4777448 L 349060.1 -4778208 L 347336.2 -4780272 L 346662.9 -4779505 L 346341 -4779350 L 346327 -4779032 L 346039 -4778892 L 345680.8 -4778870 L 344373.7 -4778464 L 344349.9 -4777776 L 344041 -4777958 L 342326.2 -4778357 L 341580.3 -4779127 L 341440.1 -4778959 L 341145.7 -4778326 L 341450.9 -4777742 L 341299.8 -4776289 L 340227.9 -4774149 L 339197.3 -4774376 L 337924.8 -4775663 L 337566.6 -4775650 L 337226.9 -4775767 L 337439.6 -4774791 L 336815.5 -4773983 L 336472.2 -4773980 L 336420.8 -4773222 L 337478.1 -4772137 L 337031.8 -4771581 L 335287.6 -4771233 L 335447.3 -4770920 L 335855.3 -4770051 L 335722.7 -4769720 L 335684.1 -4769010 L 336093.2 -4768425 L 336445.3 -4768479 L 336514.3 -4767526 L 336414.6 -4767497 L 336180.3 -4767723 L 335693.9 -4768159 L 335721 -4767803 L 336040.3 -4765712 L 336359.6 -4765703 L 336673.7 -4765763 L 337567.8 -4765162 L 337997.1 -4764184 L 338722.5 -4764187 L 338409.9 -4763966 L 337339.9 -4763763 L 336453.4 -4762091 L 335234.9 -4760661 L 335110.4 -4760302 L 334837.5 -4760147 L 333929.2 -4759927 L 333646.7 -4759664 L 331748.7 -4759407 L 331185.6 -4759507 L 330901.1 -4759542 L 330001.3 -4758903 L 329658.5 -4758763 L 329282.7 -4758652 L 326580.7 -4758659 L 326643.8 -4758288 L 327376.4 -4756192 L 327297.8 -4755830 L 326398.9 -4755219 L 325679.2 -4755314 L 325045.9 -4754949 L 323954.8 -4755107 L 323703.3 -4754835 L 323420.7 -4754606 L 322538.6 -4754069 L 323115.1 -4752423 L 323421.2 -4752199 L 323791 -4751162 L 323126.8 -4749406 L 323452.5 -4748724 L 324161.8 -4748464 L 324786.3 -4745696 L 325043.6 -4745444 L 324882 -4744052 L 324833.4 -4743575 L 324834.2 -4743576 z " |
id="path679" /> |
<path |
d="M 228720 -4748489 L 229159.8 -4749362 L 229340.8 -4749713 L 229514.9 -4750051 L 229924.1 -4751865 L 229290 -4753647 L 229323.1 -4754780 L 228679.7 -4755725 L 228528.7 -4757234 L 228907.6 -4757276 L 229664.3 -4757378 L 230957.6 -4758704 L 232000.6 -4758579 L 232501.4 -4759542 L 232512.8 -4759906 L 232197.3 -4761409 L 231747.8 -4762019 L 231662.8 -4765466 L 232091.7 -4766937 L 233633.2 -4767170 L 233977.6 -4767359 L 234459.2 -4767912 L 234714.3 -4768979 L 234464.1 -4770409 L 235454 -4770871 L 237114.3 -4770101 L 237390.7 -4769857 L 240571.8 -4771749 L 240956.9 -4771758 L 239549.3 -4772969 L 239611.1 -4773744 L 240589.7 -4775825 L 239809.4 -4777103 L 240282.3 -4777629 L 240188.2 -4778738 L 241562 -4778272 L 242416.7 -4779402 L 243729.6 -4779981 L 244081.4 -4780094 L 244749.7 -4781965 L 244717.4 -4782311 L 245109.2 -4782667 L 245816.9 -4783392 L 245802.3 -4784071 L 245942.8 -4784379 L 246725.3 -4785651 L 247088.9 -4785538 L 247847.1 -4784269 L 248744.1 -4785345 L 250261.1 -4785268 L 250641.2 -4785286 L 250490 -4789962 L 250322 -4790320 L 250998.3 -4790383 L 251309.4 -4790189 L 251953.4 -4789827 L 252418.6 -4790040 L 252535.1 -4790391 L 252721.6 -4791501 L 254353.4 -4793607 L 254993.7 -4795361 L 254998.3 -4795743 L 254424.7 -4796246 L 254599.1 -4796587 L 254249.6 -4796655 L 253250.4 -4797008 L 253011.5 -4797656 L 253017.1 -4799149 L 253629.3 -4799589 L 253879.8 -4799871 L 254437.5 -4801305 L 254598.4 -4801812 L 254676.3 -4802067 L 256477.2 -4802206 L 257405.6 -4801578 L 257755.4 -4801728 L 258417.7 -4802682 L 258721.2 -4802924 L 258837.4 -4803098 L 259043.8 -4803425 L 258835 -4804060 L 257290.4 -4805684 L 257468 -4805994 L 257276 -4806659 L 256925.2 -4806512 L 256529.9 -4807117 L 257046.3 -4808127 L 256853.7 -4808405 L 257186 -4808994 L 256626.8 -4809074 L 256953.1 -4809381 L 256683.9 -4809591 L 257703.9 -4811903 L 257864.5 -4812231 L 257013.4 -4813042 L 256733 -4813317 L 256869.5 -4813680 L 256971.5 -4814803 L 256596.6 -4814697 L 255832 -4814716 L 255353 -4813829 L 255109.7 -4813197 L 254840.5 -4813412 L 254350.8 -4813310 L 253989.1 -4811997 L 253618.9 -4811402 L 253563.2 -4811051 L 251601.7 -4811145 L 252774.9 -4812447 L 251504.7 -4813790 L 251769.5 -4814848 L 252199 -4815919 L 251932.7 -4817023 L 252268.5 -4816912 L 254659.9 -4817210 L 255685.8 -4817266 L 255740.5 -4817618 L 255647.7 -4817895 L 255155.7 -4818171 L 254797.6 -4818090 L 254397.7 -4819752 L 253381.3 -4820139 L 253603.5 -4820827 L 253775.1 -4821434 L 253849.9 -4821739 L 254193 -4822396 L 253938.6 -4823240 L 253945.5 -4823557 L 253601.5 -4824035 L 253525.7 -4824322 L 252978.4 -4824706 L 252849.4 -4825065 L 251949 -4826264 L 250529 -4825851 L 250173.6 -4825857 L 249911 -4826487 L 250349.8 -4827792 L 250084.9 -4828216 L 250200.6 -4828558 L 249899.3 -4830299 L 249876.1 -4830689 L 249868.8 -4831079 L 250226.7 -4831208 L 251355.9 -4831147 L 251648.6 -4831389 L 251812.4 -4832868 L 253283.8 -4832855 L 254266.5 -4833336 L 254705.6 -4832761 L 255048.5 -4832895 L 255060.5 -4832592 L 255380.8 -4832617 L 256579.6 -4832627 L 257047.5 -4831473 L 257209.1 -4831194 L 257499.6 -4828131 L 258285 -4827594 L 258367.9 -4827269 L 258462.8 -4826940 L 258822.4 -4825650 L 259978 -4825740 L 260475.1 -4825147 L 260739.5 -4824863 L 261781.4 -4822814 L 262923.2 -4822846 L 263975.7 -4823314 L 264066 -4822580 L 264837.3 -4821764 L 266195.1 -4822291 L 266506.8 -4822498 L 267493.8 -4820718 L 267667.5 -4820418 L 267621.6 -4819495 L 267796.2 -4818016 L 267840.3 -4817646 L 268054.1 -4816989 L 268606.3 -4816620 L 268916.2 -4816466 L 269220.1 -4816614 L 269516.5 -4816016 L 269764.8 -4815785 L 269769.1 -4815691 L 269981.7 -4815383 L 270578 -4814038 L 270230.9 -4813953 L 268236.3 -4813185 L 268285.5 -4813079 L 267959 -4811918 L 269018.3 -4810349 L 269010.6 -4809960 L 269694.6 -4809282 L 270713.8 -4809532 L 271060.8 -4809627 L 271442.7 -4807369 L 271482.9 -4806987 L 271160 -4807145 L 271224.2 -4806765 L 271612.7 -4806103 L 272923.9 -4806474 L 273357.9 -4805941 L 273567.4 -4805661 L 274256.3 -4805867 L 275618.6 -4805587 L 276322.2 -4805896 L 276641.9 -4806110 L 278517.1 -4807044 L 278865.1 -4807138 L 280726.8 -4807652 L 281114.8 -4807728 L 281212.7 -4806200 L 281198 -4805814 L 282103.9 -4805318 L 282950.3 -4805896 L 283223 -4806130 L 283574 -4802923 L 283595.2 -4802554 L 284286.5 -4802656 L 284811.9 -4803125 L 286250.7 -4803239 L 287217.6 -4803589 L 287457.3 -4803846 L 288182 -4803819 L 288711.6 -4803324 L 289072.8 -4803360 L 288618.8 -4801821 L 288784.7 -4801461 L 290620.5 -4800722 L 292192.4 -4800719 L 292581.9 -4800646 L 292664.2 -4801711 L 292788.9 -4802048 L 293770.1 -4801716 L 294080 -4801561 L 294787.2 -4801363 L 295025.7 -4801079 L 295302.3 -4801044 L 295579.6 -4801075 L 296668.1 -4800255 L 297008.3 -4800302 L 298057.5 -4801142 L 298406 -4801076 L 299878.6 -4800618 L 300194.7 -4800385 L 300409.5 -4800329 L 300706.4 -4800483 L 301015.4 -4800610 L 302567.7 -4799569 L 302930.4 -4799449 L 303628.6 -4799581 L 304933.1 -4798941 L 305227.3 -4798699 L 305500.3 -4798519 L 305795.2 -4798377 L 306159.9 -4798251 L 307818.8 -4797271 L 308083.4 -4796623 L 306715.9 -4796080 L 306394.1 -4794994 L 306327.2 -4794693 L 304871.6 -4794250 L 303491.8 -4792906 L 303199.2 -4792654 L 303154.3 -4792350 L 303125.4 -4792045 L 302374.2 -4791972 L 301305.4 -4790472 L 301041.8 -4790200 L 301410.7 -4790299 L 302429.3 -4789782 L 302807.4 -4789830 L 302787.3 -4788370 L 302547.7 -4788089 L 301357.6 -4787375 L 301033.8 -4787222 L 300487.4 -4787671 L 299565.1 -4787144 L 298569.9 -4787514 L 298246.1 -4787659 L 298118.4 -4787341 L 297263.8 -4786283 L 298476.8 -4785554 L 296642.7 -4783474 L 293620.8 -4780947 L 293296.3 -4780718 L 293114.8 -4780396 L 292028.7 -4779099 L 291813.1 -4778837 L 291897 -4778807 L 292891.7 -4778271 L 293605.2 -4777412 L 293025.1 -4776936 L 292698.5 -4776746 L 293652 -4776584 L 295335.4 -4776841 L 295661.3 -4776950 L 295796.5 -4776224 L 296512.5 -4776058 L 296842.5 -4774717 L 298277.6 -4774366 L 298835.1 -4774448 L 299117.4 -4774486 L 299056.3 -4773413 L 301594.9 -4772239 L 301415 -4772034 L 300841.4 -4771151 L 301153.3 -4770988 L 301497 -4768882 L 301627.9 -4768535 L 301731.1 -4768149 L 301386.2 -4768049 L 300245.6 -4768919 L 299303.2 -4768503 L 299144.7 -4768181 L 298930.4 -4765615 L 298393.5 -4765082 L 299284.5 -4764244 L 299596.1 -4764170 L 299917.3 -4764462 L 300114.7 -4764787 L 301213.6 -4765797 L 301443.1 -4766084 L 302105.7 -4766348 L 303165.9 -4766179 L 303224.5 -4766543 L 303467.2 -4766475 L 303712.8 -4766424 L 303791.2 -4766828 L 303929.4 -4767522 L 303866.3 -4767871 L 304765.8 -4767722 L 305068.3 -4767677 L 305454.2 -4766609 L 305649.9 -4766276 L 305714.2 -4766151 L 305531 -4765463 L 305624 -4765118 L 306145.5 -4764377 L 306355.9 -4764125 L 306376.1 -4763222 L 306369.3 -4762893 L 305508.9 -4762688 L 305208.9 -4762601 L 305566.7 -4762151 L 305390 -4761902 L 305521 -4761529 L 305868.7 -4760825 L 306192.2 -4760750 L 307114.4 -4760402 L 307178.5 -4760342 L 307750.1 -4759809 L 307592.8 -4758607 L 307220.7 -4758588 L 306309 -4757419 L 305604.5 -4757180 L 305376.1 -4756886 L 304863.1 -4756667 L 304576 -4756597 L 304470.1 -4756348 L 304113.4 -4755945 L 303848.6 -4755227 L 303872 -4754844 L 303677.7 -4753967 L 303411.9 -4753803 L 302888.6 -4752585 L 302829 -4752246 L 302421.4 -4751316 L 302297.9 -4750998 L 302083.6 -4750686 L 302123.9 -4750309 L 301965.7 -4749662 L 300980 -4748857 L 300826.4 -4748577 L 300480 -4748630 L 300147.2 -4748522 L 299597.6 -4749039 L 298530.4 -4748697 L 298014.1 -4749111 L 297845.4 -4749416 L 296468.8 -4749634 L 296093.8 -4749602 L 295726.2 -4750253 L 294321.9 -4750673 L 293947.6 -4750714 L 293472.5 -4749725 L 293514.2 -4748993 L 293506.6 -4748626 L 293232 -4748436 L 292468.2 -4747819 L 292825.9 -4747410 L 293045 -4747247 L 292748.6 -4746503 L 292307 -4745099 L 292262.5 -4744731 L 292138.6 -4742968 L 292289.5 -4742637 L 292534.1 -4742586 L 292573.9 -4742340 L 292510.3 -4740983 L 292415.8 -4740904 L 291896.8 -4739940 L 291801.2 -4738873 L 292343.5 -4737938 L 292441.6 -4737585 L 292147.7 -4736474 L 292243.9 -4736099 L 292268.8 -4735341 L 291364.6 -4734694 L 293786.1 -4732283 L 293875.8 -4731556 L 293424.3 -4730957 L 293008.5 -4730454 L 290301.1 -4730280 L 288529.6 -4730405 L 288245.7 -4730425 L 287439.4 -4730809 L 285712.8 -4732787 L 284649.9 -4733425 L 283923.1 -4733572 L 283332.2 -4733270 L 281339.4 -4730599 L 279905.4 -4729229 L 279126.2 -4728765 L 277845.7 -4728465 L 277321.9 -4728794 L 276606.2 -4730259 L 276417.3 -4731223 L 275595.3 -4732443 L 274762.7 -4733085 L 272959.4 -4733461 L 270890.2 -4735065 L 270086.2 -4735473 L 269319.6 -4735470 L 268110.2 -4734844 L 265269 -4732381 L 265059.7 -4732336 L 264538.4 -4732221 L 263159.3 -4732225 L 261329.5 -4732860 L 260273.6 -4733037 L 257962.1 -4732108 L 256895.3 -4732440 L 256434.7 -4732433 L 254915.3 -4731505 L 254264.2 -4731409 L 253127.4 -4731241 L 251763.5 -4731603 L 249893.8 -4732099 L 249556.5 -4732506 L 249173.7 -4734250 L 248879.8 -4734917 L 248043.2 -4735253 L 246358.9 -4735541 L 245917.1 -4735734 L 245650.2 -4736146 L 245214.5 -4738538 L 243708.5 -4741128 L 243546.8 -4741406 L 243076.1 -4743700 L 242759.2 -4744395 L 242531.3 -4744417 L 241710 -4743575 L 240760.8 -4743001 L 239675.5 -4742875 L 239176.4 -4742999 L 237491.1 -4744080 L 236984.9 -4744665 L 235648.5 -4746991 L 234667.6 -4746922 L 234568.1 -4746915 L 233303.3 -4747317 L 231141.9 -4749031 L 229897.3 -4748843 L 228721 -4748489 L 228720 -4748489 z M 248210.1 -4806863 L 249060.2 -4807199 L 249369.7 -4807170 L 249987.5 -4806885 L 250210 -4806349 L 250492.1 -4806159 L 250572 -4806149 L 251709.8 -4804444 L 251733 -4804099 L 251611.4 -4803774 L 251499.8 -4803447 L 251554.9 -4803100 L 251272.1 -4802090 L 251174.8 -4801382 L 251065.3 -4801039 L 251000.8 -4800671 L 250568.1 -4799719 L 250503.3 -4799699 L 250146.7 -4799786 L 248858 -4800435 L 247766.2 -4800448 L 247408.2 -4801487 L 247469.9 -4802636 L 247982.8 -4803216 L 249321 -4802694 L 249683.2 -4802715 L 249729.8 -4803075 L 249544.3 -4805552 L 249212.5 -4805390 L 248481.6 -4805505 L 248240.5 -4806514 L 248210.3 -4806863 L 248210.1 -4806863 z M 245436.6 -4797531 L 246069.7 -4797950 L 246419.1 -4798999 L 246725.7 -4799225 L 247440.3 -4800041 L 249017.4 -4799128 L 249390.8 -4799087 L 249240.4 -4798726 L 248867.6 -4797238 L 249664.9 -4796430 L 250054.4 -4795789 L 250021.2 -4795043 L 249451.9 -4794089 L 248806.5 -4794024 L 247960 -4793010 L 248044.1 -4792671 L 247895.3 -4792687 L 247527.2 -4792663 L 246797.1 -4792557 L 246353.9 -4793122 L 246270.6 -4793509 L 245117.8 -4795981 L 245318.7 -4796693 L 245429.1 -4797058 L 245618.8 -4797291 L 245436.3 -4797531 L 245436.6 -4797531 z " |
id="path680" /> |
<path |
d="M 228720 -4748489 L 226739 -4747892 L 226177.1 -4747895 L 225674.2 -4747713 L 223060.4 -4745764 L 222215.7 -4745474 L 221660.1 -4745284 L 220688.1 -4745275 L 218991.3 -4744900 L 217798.6 -4744988 L 217417.7 -4745280 L 216648.7 -4746861 L 215197.9 -4746923 L 214184 -4747812 L 213654.6 -4747888 L 212999.6 -4747720 L 212065.8 -4746506 L 211389.5 -4744928 L 211276.6 -4744664 L 210797.7 -4744199 L 210167.9 -4744033 L 208735.1 -4743784 L 208103.2 -4744125 L 207725.9 -4744723 L 207277.6 -4746453 L 205737.6 -4746651 L 205381.9 -4746941 L 205055.5 -4748072 L 204532.3 -4749016 L 204095.8 -4749262 L 201332.1 -4752885 L 200120.7 -4754473 L 198940.2 -4755225 L 197615.8 -4755275 L 196618.4 -4755804 L 195370.3 -4758415 L 195139.6 -4760456 L 194414.3 -4762731 L 193981 -4763412 L 193594.6 -4764018 L 192781.9 -4764607 L 192151 -4764693 L 191602.2 -4764567 L 189939.6 -4763754 L 188819 -4763529 L 185519.9 -4763511 L 183972.2 -4763633 L 182040.9 -4764022 L 180816.7 -4763733 L 180576.3 -4763676 L 179278.5 -4763589 L 176291.8 -4765044 L 175534.4 -4766023 L 173114.9 -4767993 L 169685 -4768218 L 168516 -4768857 L 167814.1 -4769241 L 165272.8 -4771810 L 164411.5 -4771893 L 163918.9 -4771019 L 163159.3 -4770246 L 162631.2 -4770625 L 161980.4 -4772406 L 161342.4 -4772953 L 160059.8 -4773177 L 158285 -4773971 L 157877.4 -4774153 L 157579.5 -4774514 L 157144.2 -4775578 L 156666.6 -4775931 L 156286.4 -4775967 L 154809.3 -4775494 L 153552.1 -4775717 L 152240.8 -4776711 L 150118.6 -4777784 L 149459 -4778448 L 149980.7 -4779962 L 150754.7 -4781352 L 150589.9 -4781596 L 150695.4 -4782387 L 151361.7 -4782937 L 151428.3 -4783366 L 151012 -4783559 L 148410 -4782554 L 147746.1 -4782029 L 147213.4 -4780469 L 146435.9 -4775811 L 145802.6 -4774857 L 145509.9 -4774416 L 145093.4 -4774072 L 142715.4 -4774625 L 140123.7 -4775458 L 138692.1 -4776459 L 136906.2 -4778118 L 136074.2 -4779964 L 135841.6 -4781441 L 137375.1 -4782150 L 139220.8 -4783534 L 139803.9 -4784015 L 140642 -4785291 L 141399.5 -4787597 L 141331.3 -4788755 L 141588.9 -4790111 L 143146.6 -4791958 L 143266.4 -4792343 L 143626.3 -4793498 L 143581.6 -4795702 L 143841.5 -4796547 L 143775.7 -4797730 L 143449.2 -4798861 L 142998.1 -4799493 L 142156.2 -4800315 L 141481.7 -4800482 L 139637.6 -4800453 L 138223 -4800102 L 137548.4 -4800269 L 136963.2 -4800648 L 134811.3 -4802936 L 134007.5 -4803090 L 131162.7 -4803029 L 130656.9 -4802822 L 130045.3 -4801243 L 129325.4 -4800135 L 127955.2 -4799447 L 126346.2 -4799473 L 125885.4 -4799649 L 125186.5 -4799916 L 124662.9 -4800325 L 124389.6 -4802014 L 124452.2 -4804003 L 124604.5 -4804526 L 124518 -4805225 L 124432.5 -4805668 L 123878.6 -4806028 L 121133.9 -4806214 L 118768 -4806082 L 117478.6 -4805512 L 116577.9 -4805114 L 116101.9 -4805832 L 115957.4 -4806513 L 115891.8 -4807146 L 116107.1 -4808545 L 115838.5 -4809238 L 115018.7 -4809399 L 114937.5 -4809865 L 114600.2 -4810273 L 113956.1 -4810083 L 113380.6 -4810179 L 112592.1 -4810670 L 111927.3 -4811441 L 113308.4 -4812537 L 113316.8 -4812895 L 112544.7 -4813634 L 112706.1 -4813721 L 114490.7 -4813960 L 115049.9 -4814469 L 115360.9 -4814516 L 115847.6 -4814265 L 116406.7 -4814237 L 117188.7 -4814674 L 120009.6 -4815608 L 120966.1 -4815464 L 121524.9 -4814899 L 122463.4 -4814835 L 122240.7 -4815445 L 122758.9 -4816061 L 124670.2 -4817362 L 127161.4 -4819404 L 127578.1 -4819745 L 130166 -4823592 L 130333.8 -4824549 L 130688.2 -4825052 L 131216 -4825232 L 131816.2 -4826172 L 132348.9 -4826403 L 133987.3 -4829394 L 134435.6 -4829811 L 135385.8 -4829637 L 136402.3 -4829242 L 136718.9 -4829447 L 138245.7 -4830501 L 139507.7 -4829758 L 139227.1 -4827933 L 139549.7 -4828117 L 142028.9 -4827527 L 142982.7 -4825554 L 143262.1 -4825573 L 143617.7 -4825508 L 146844.5 -4825143 L 149319.1 -4825841 L 149690.2 -4825899 L 149765.8 -4825953 L 150710.7 -4826046 L 153176.9 -4825189 L 155463.2 -4826528 L 155801.9 -4826700 L 156308.9 -4826961 L 156574 -4827069 L 159304.3 -4828462 L 160168.6 -4829228 L 160463.1 -4829474 L 160931.6 -4829881 L 161161.4 -4830089 L 161505.5 -4830157 L 162888.7 -4829998 L 163245.5 -4829898 L 164031.3 -4829121 L 164418.9 -4828063 L 165999.5 -4826986 L 166212 -4826291 L 165667.9 -4825824 L 163816.4 -4825787 L 163432.1 -4825783 L 163150.3 -4825617 L 162858.4 -4825467 L 162974.9 -4824558 L 162966.8 -4824103 L 163279.1 -4823894 L 164267.2 -4824391 L 164662 -4823786 L 164922.6 -4823514 L 165284.5 -4823615 L 165585.6 -4824681 L 165961.8 -4824697 L 166318.9 -4824751 L 167328.9 -4825045 L 168108.7 -4826215 L 169527.5 -4825882 L 170064.5 -4826365 L 170271.3 -4827075 L 170533.7 -4826865 L 171169.4 -4825416 L 173035 -4825671 L 174391.8 -4825116 L 174541 -4824764 L 174789.6 -4824492 L 175270.9 -4824943 L 177326.4 -4824629 L 177240.3 -4825190 L 177661.5 -4826200 L 177668.6 -4827677 L 176789.7 -4828315 L 177850.6 -4828623 L 179923.5 -4827972 L 180919.2 -4827596 L 181747.1 -4828256 L 182071.2 -4828093 L 182668.9 -4827641 L 183023.8 -4827761 L 183435 -4828790 L 184036.2 -4829238 L 184390.1 -4829371 L 185521 -4829384 L 187288.2 -4828767 L 187585 -4828674 L 187886.8 -4828597 L 188191 -4828404 L 189588.4 -4828436 L 189681.7 -4829619 L 190065.8 -4829665 L 191439.8 -4830327 L 192832.6 -4829707 L 193475.3 -4830266 L 193611 -4830536 L 194620.6 -4830702 L 194623.6 -4831769 L 195252.4 -4832058 L 195608.5 -4832136 L 198101.4 -4829649 L 198413.7 -4829410 L 198508.7 -4829095 L 198809.5 -4828219 L 199383.1 -4827772 L 200078.7 -4827812 L 200430.4 -4827718 L 200328.8 -4828453 L 200566.3 -4829544 L 201153.6 -4829991 L 201412.2 -4829713 L 202065.2 -4829386 L 204337.6 -4830598 L 205643.1 -4831181 L 206003.4 -4831196 L 204574.9 -4829585 L 204744.8 -4829255 L 206127.9 -4828813 L 206494 -4828876 L 206676.2 -4828465 L 207617.6 -4827884 L 207970.4 -4827771 L 207925.9 -4827381 L 207979.2 -4826993 L 209139.9 -4827047 L 211888.3 -4829103 L 212292.9 -4828471 L 212491.2 -4827731 L 212615.3 -4827361 L 212972.6 -4827386 L 213328.3 -4827557 L 215241.9 -4828911 L 215586.6 -4829092 L 216752.1 -4830039 L 216727.8 -4830125 L 216978.3 -4830407 L 220236.9 -4832243 L 220501.3 -4832008 L 221557.2 -4832929 L 222175.3 -4832594 L 222198.4 -4832273 L 222919.9 -4831782 L 222912 -4831462 L 221441.3 -4829873 L 220515.5 -4829446 L 221312 -4827787 L 221584.7 -4828020 L 222292.2 -4828073 L 222602 -4828254 L 224913.7 -4829680 L 225121.3 -4829395 L 225324 -4829107 L 225609.6 -4829365 L 226284.5 -4829620 L 227420.9 -4829481 L 227978.8 -4828950 L 229113.3 -4828797 L 229239.3 -4828448 L 229472.9 -4828160 L 230442.2 -4827572 L 232581.9 -4828248 L 233128.3 -4828713 L 233272.8 -4829064 L 233377.4 -4829687 L 233918.8 -4829290 L 234523.2 -4830008 L 234872.9 -4831057 L 237029.8 -4831422 L 237418.3 -4830793 L 237788.7 -4830781 L 238139.2 -4831022 L 238448.4 -4830795 L 239289.5 -4831497 L 240770.7 -4831839 L 241100.4 -4831165 L 241183.5 -4830797 L 241540.4 -4830943 L 243498.9 -4832110 L 244403.1 -4830670 L 244631.6 -4830409 L 244976.1 -4830372 L 245541.6 -4830798 L 246918.8 -4830301 L 247302.2 -4830286 L 247584 -4830503 L 248228.2 -4830705 L 249193 -4830256 L 249899.6 -4830299 L 250200.9 -4828558 L 250085.2 -4828216 L 250350.1 -4827792 L 249911.3 -4826487 L 250173.9 -4825857 L 250529.3 -4825851 L 251949.3 -4826264 L 252849.7 -4825065 L 252978.7 -4824706 L 253526 -4824322 L 253601.8 -4824035 L 253945.8 -4823557 L 253938.9 -4823240 L 254193.3 -4822396 L 253850.2 -4821739 L 253775.4 -4821433 L 253603.8 -4820827 L 253381.6 -4820139 L 254398 -4819751 L 254797.9 -4818090 L 255156 -4818171 L 255648 -4817894 L 255740.8 -4817617 L 255686.1 -4817266 L 254660.2 -4817210 L 252268.8 -4816912 L 251933 -4817023 L 252199.3 -4815919 L 251769.8 -4814848 L 251505 -4813790 L 252775.2 -4812447 L 251602 -4811145 L 253563.5 -4811051 L 253619.2 -4811401 L 253989.4 -4811997 L 254351.1 -4813310 L 254840.8 -4813412 L 255110 -4813197 L 255353.3 -4813829 L 255832.3 -4814716 L 256596.9 -4814696 L 256971.8 -4814803 L 256869.8 -4813680 L 256733.3 -4813317 L 257013.7 -4813042 L 257864.8 -4812231 L 257704.2 -4811903 L 256684.2 -4809591 L 256953.4 -4809381 L 256627.1 -4809074 L 257186.3 -4808994 L 256854 -4808405 L 257046.6 -4808127 L 256530.2 -4807117 L 256925.5 -4806512 L 257276.3 -4806659 L 257468.3 -4805994 L 257290.7 -4805684 L 258835.3 -4804060 L 259044.1 -4803425 L 258837.7 -4803098 L 258721.5 -4802924 L 258418 -4802682 L 257755.7 -4801728 L 257405.9 -4801578 L 256477.5 -4802206 L 254676.6 -4802067 L 254598.7 -4801812 L 254437.8 -4801305 L 253880.1 -4799871 L 253629.6 -4799589 L 253017.4 -4799149 L 253011.8 -4797656 L 253250.7 -4797008 L 254249.9 -4796655 L 254599.4 -4796587 L 254425 -4796246 L 254998.6 -4795743 L 254994 -4795360 L 254353.7 -4793607 L 252721.9 -4791501 L 252535.4 -4790391 L 252418.9 -4790040 L 251953.7 -4789827 L 251309.7 -4790189 L 250998.6 -4790383 L 250322.3 -4790320 L 250490.3 -4789962 L 250641.5 -4785286 L 250261.4 -4785268 L 248744.4 -4785345 L 247847.4 -4784269 L 247089.2 -4785538 L 246725.6 -4785651 L 245943.1 -4784379 L 245802.6 -4784071 L 245817.2 -4783392 L 245109.5 -4782667 L 244717.7 -4782311 L 244750 -4781965 L 244081.7 -4780094 L 243729.9 -4779981 L 242417 -4779402 L 241562.3 -4778272 L 240188.5 -4778738 L 240282.6 -4777629 L 239809.7 -4777103 L 240590 -4775825 L 239611.4 -4773744 L 239549.6 -4772969 L 240957.2 -4771758 L 240572.1 -4771749 L 237391 -4769857 L 237114.6 -4770101 L 235454.3 -4770871 L 234464.4 -4770409 L 234714.6 -4768979 L 234459.5 -4767912 L 233977.9 -4767359 L 233633.5 -4767170 L 232092 -4766937 L 231663.1 -4765466 L 231748.1 -4762019 L 232197.6 -4761409 L 232513.1 -4759906 L 232501.7 -4759541 L 232000.9 -4758579 L 230957.9 -4758704 L 229664.6 -4757378 L 228907.9 -4757275 L 228529 -4757234 L 228680 -4755725 L 229323.4 -4754780 L 229290.3 -4753647 L 229924.4 -4751865 L 229515.2 -4750051 L 229341.1 -4749713 L 229160.1 -4749362 L 228720.3 -4748488 L 228720 -4748489 z M 245436.6 -4797531 L 245619.1 -4797291 L 245429.4 -4797058 L 245319 -4796693 L 245118.1 -4795981 L 246270.9 -4793509 L 246354.2 -4793122 L 246797.4 -4792557 L 247527.5 -4792663 L 247895.6 -4792687 L 248044.4 -4792671 L 247960.3 -4793010 L 248806.8 -4794024 L 249452.2 -4794089 L 250021.5 -4795043 L 250054.7 -4795789 L 249665.2 -4796430 L 248867.9 -4797238 L 249240.7 -4798726 L 249391.1 -4799087 L 249017.7 -4799128 L 247440.6 -4800041 L 246726 -4799225 L 246419.4 -4798999 L 246070 -4797950 L 245436.9 -4797531 L 245436.6 -4797531 z M 248210.1 -4806863 L 248240.3 -4806514 L 248481.4 -4805505 L 249212.3 -4805390 L 249544.1 -4805552 L 249729.6 -4803075 L 249683 -4802715 L 249320.8 -4802694 L 247982.6 -4803216 L 247469.7 -4802636 L 247408 -4801487 L 247766 -4800448 L 248857.8 -4800435 L 250146.5 -4799786 L 250503.1 -4799699 L 250567.9 -4799719 L 251000.6 -4800671 L 251065.1 -4801039 L 251174.6 -4801382 L 251271.9 -4802090 L 251554.7 -4803100 L 251499.6 -4803447 L 251611.2 -4803774 L 251732.8 -4804099 L 251709.6 -4804444 L 250571.8 -4806149 L 250491.9 -4806159 L 250209.8 -4806349 L 249987.3 -4806885 L 249369.5 -4807170 L 249060 -4807199 L 248209.9 -4806863 L 248210.1 -4806863 z " |
id="path681" /> |
<path |
d="M 135385.6 -4829637 L 135474.8 -4829786 L 134878.9 -4830179 L 134920 -4830610 L 139219.5 -4838207 L 140704 -4841187 L 140972.1 -4841939 L 141401.5 -4843142 L 141688.4 -4843473 L 142136.3 -4843353 L 142656.5 -4842919 L 143249.7 -4843783 L 142859.4 -4843974 L 143041.1 -4845390 L 142876 -4845951 L 142551.3 -4844490 L 142135.5 -4844146 L 141650 -4844141 L 141621.3 -4844374 L 142102.8 -4847809 L 142652.3 -4850085 L 142928.4 -4852438 L 143894.9 -4854802 L 143894.2 -4855596 L 144378.6 -4857724 L 146262.1 -4865399 L 147462.2 -4868867 L 149367.9 -4876233 L 149582.6 -4877360 L 149779.4 -4878394 L 151088.7 -4882464 L 153148 -4890890 L 153234.4 -4891184 L 154436.4 -4895270 L 155388 -4901191 L 156151.2 -4904086 L 156442.6 -4903930 L 156838.9 -4904071 L 156242.3 -4904769 L 156124.6 -4905138 L 157025 -4907866 L 157185.9 -4909539 L 157814.8 -4911561 L 158035.8 -4912272 L 158053.8 -4914318 L 158596 -4915442 L 159083.1 -4917852 L 158961 -4919501 L 159494.1 -4921061 L 159738.1 -4923597 L 160101.8 -4925211 L 160183.9 -4925575 L 161261.5 -4932444 L 161603.7 -4932501 L 165600.2 -4933519 L 165962.6 -4933613 L 173082.3 -4935689 L 173455.7 -4935803 L 175184 -4938664 L 175346.9 -4938997 L 175687.2 -4938802 L 179593.4 -4936164 L 181100.7 -4936292 L 182279.5 -4936354 L 182894.8 -4936054 L 183354.1 -4933338 L 182482.1 -4931155 L 182324.3 -4930795 L 180978.4 -4928084 L 179496.3 -4926879 L 179203.3 -4926635 L 179591.8 -4926677 L 183867.4 -4927138 L 185708.8 -4927791 L 186032.2 -4927908 L 188011.6 -4928491 L 188806.2 -4927673 L 194187.3 -4925452 L 196508.5 -4925616 L 197868.1 -4926360 L 198638.1 -4926443 L 199003.1 -4926312 L 199566.9 -4927621 L 203338.4 -4928266 L 205184 -4927756 L 205550.9 -4927643 L 205882 -4927475 L 206905.9 -4927859 L 206859.3 -4928479 L 207743.9 -4929040 L 209943.7 -4928306 L 210282.8 -4928119 L 210577.1 -4927883 L 211166.8 -4927413 L 211160.9 -4925905 L 211165.2 -4923567 L 210253 -4922892 L 209896.8 -4922731 L 212576.7 -4921730 L 212901.8 -4921570 L 215455 -4920492 L 216251.5 -4919614 L 218386 -4918573 L 218742.1 -4918401 L 219356.3 -4915888 L 219456.2 -4915532 L 222433.5 -4913850 L 225830.7 -4913457 L 226208.4 -4913417 L 226289.7 -4911076 L 228401.8 -4909396 L 229548.4 -4909400 L 229903.4 -4909238 L 229819.5 -4908853 L 228655.6 -4903862 L 229064.8 -4900736 L 229395.6 -4900658 L 230386 -4900412 L 230755.8 -4900305 L 235340.6 -4899774 L 235700.6 -4899624 L 238249.1 -4898656 L 239008.7 -4898819 L 239373.9 -4898933 L 242301.8 -4899821 L 242287.8 -4900206 L 242131.5 -4905224 L 242347.2 -4906360 L 243901.6 -4906236 L 244534.7 -4906677 L 245218.8 -4906708 L 246278.6 -4905548 L 246968.6 -4903713 L 248688.7 -4902105 L 248987 -4901847 L 249770.1 -4899175 L 249614.2 -4894003 L 249603.3 -4893606 L 250750.2 -4893453 L 251416.3 -4893821 L 252923.2 -4893881 L 254768.2 -4893363 L 255129.1 -4893228 L 255503.6 -4893213 L 259601.9 -4892968 L 259621.9 -4892964 L 262397.3 -4891049 L 262591.9 -4890724 L 270266.1 -4889776 L 270649.7 -4889731 L 270313.6 -4889186 L 270615.9 -4888550 L 270679.7 -4888202 L 269648.6 -4887635 L 267715.4 -4885674 L 267804.3 -4885296 L 267176.6 -4883647 L 266562.7 -4883182 L 265536.1 -4879525 L 265003.3 -4878994 L 264233.6 -4878920 L 264330.5 -4878545 L 264368.5 -4878161 L 264271.6 -4877794 L 264361.7 -4876285 L 265340.9 -4874248 L 264809.7 -4873534 L 264625.7 -4873283 L 264564.9 -4872521 L 263587.5 -4871412 L 264653.9 -4868954 L 264990.8 -4867047 L 265003.9 -4866658 L 264487.6 -4865639 L 263622.1 -4864896 L 261897.4 -4865370 L 261588.5 -4865143 L 261278.3 -4865382 L 260257.5 -4866552 L 257445 -4868541 L 259536 -4870240 L 259590.6 -4871390 L 259087.7 -4871964 L 258778.5 -4872188 L 256359.1 -4874628 L 255667.4 -4872444 L 254283.9 -4871926 L 253134.9 -4870432 L 251525.8 -4870601 L 251257 -4870328 L 251402.8 -4868951 L 251127.9 -4868726 L 250815.9 -4868558 L 250486.9 -4868744 L 249058 -4870434 L 248242.5 -4869655 L 246831.8 -4869941 L 245903.6 -4868805 L 244766.4 -4869772 L 243068.9 -4867792 L 242909.2 -4867448 L 242671 -4867318 L 242168.3 -4867153 L 241575.5 -4866719 L 240703.6 -4867104 L 240269.4 -4866093 L 239686.6 -4865657 L 240013.8 -4865120 L 240675.5 -4864893 L 241597.7 -4864680 L 242403 -4864173 L 242732.4 -4864193 L 243298.8 -4863762 L 243769.1 -4862441 L 243901.9 -4862108 L 243778.1 -4861779 L 243106.7 -4862561 L 242384.3 -4861429 L 242003.7 -4861156 L 243099.2 -4859486 L 243173.1 -4859151 L 243433.9 -4858440 L 242893.3 -4857952 L 242943.1 -4855739 L 241503.2 -4855801 L 241246.4 -4856172 L 240346.4 -4855666 L 240967.4 -4854411 L 240648.2 -4853370 L 241206 -4852850 L 241119.7 -4851719 L 241684.4 -4850287 L 241175.6 -4849859 L 240757.1 -4849283 L 242547.6 -4848831 L 242561 -4848086 L 242688.9 -4847732 L 240681.8 -4846015 L 240355 -4845805 L 240019.2 -4845608 L 238292.7 -4844814 L 238719.1 -4842958 L 237603.5 -4841885 L 237401.3 -4841135 L 237978.8 -4840674 L 238748.8 -4840578 L 238433 -4839780 L 238153.8 -4838791 L 237106.1 -4838633 L 236874.4 -4838063 L 236736.7 -4837740 L 236710.1 -4837044 L 236413.2 -4836859 L 235218.8 -4837585 L 235291.6 -4835825 L 235209.9 -4835478 L 235262.1 -4835108 L 235702.2 -4834559 L 237915.6 -4834470 L 237732.7 -4833348 L 237282.6 -4832737 L 237286.9 -4832358 L 237651.3 -4832339 L 238137.9 -4831022 L 237787.4 -4830781 L 237417 -4830793 L 237028.5 -4831423 L 234871.6 -4831058 L 234521.9 -4830009 L 233917.5 -4829290 L 233376.1 -4829688 L 233271.5 -4829065 L 233127 -4828714 L 232580.6 -4828249 L 230440.9 -4827573 L 229471.6 -4828161 L 229238 -4828448 L 229112 -4828798 L 227977.5 -4828951 L 227419.6 -4829482 L 226283.2 -4829620 L 225608.3 -4829366 L 225322.7 -4829108 L 225120 -4829395 L 224912.4 -4829680 L 222600.7 -4828255 L 222290.9 -4828074 L 221583.4 -4828021 L 221310.7 -4827788 L 220514.2 -4829446 L 221440 -4829874 L 222910.7 -4831462 L 222918.6 -4831783 L 222197.1 -4832274 L 222174 -4832594 L 221555.9 -4832930 L 220500 -4832009 L 220235.6 -4832244 L 216977 -4830408 L 216726.5 -4830125 L 216750.8 -4830040 L 215585.3 -4829093 L 215240.6 -4828912 L 213327 -4827557 L 212971.3 -4827386 L 212614 -4827361 L 212489.9 -4827731 L 212291.6 -4828472 L 211887 -4829104 L 209138.6 -4827048 L 207977.9 -4826993 L 207924.6 -4827382 L 207969.1 -4827772 L 207616.3 -4827885 L 206674.9 -4828466 L 206492.7 -4828876 L 206126.6 -4828814 L 204743.5 -4829256 L 204573.6 -4829586 L 206002.1 -4831196 L 205641.8 -4831181 L 204336.3 -4830599 L 202063.9 -4829387 L 201410.9 -4829713 L 201152.3 -4829992 L 200565 -4829545 L 200327.5 -4828454 L 200429.1 -4827718 L 200077.4 -4827812 L 199381.8 -4827773 L 198808.2 -4828219 L 198507.4 -4829096 L 198412.4 -4829411 L 198100.1 -4829650 L 195607.2 -4832137 L 195251.1 -4832058 L 194622.3 -4831770 L 194619.3 -4830703 L 193609.7 -4830537 L 193474 -4830267 L 192831.3 -4829708 L 191438.5 -4830327 L 190064.5 -4829666 L 189680.4 -4829620 L 189587.1 -4828437 L 188189.7 -4828405 L 187885.5 -4828598 L 187583.7 -4828674 L 187286.9 -4828768 L 185519.7 -4829385 L 184388.8 -4829371 L 184034.9 -4829238 L 183433.7 -4828791 L 183022.5 -4827761 L 182667.6 -4827641 L 182069.9 -4828093 L 181745.8 -4828256 L 180917.9 -4827597 L 179922.2 -4827973 L 177849.3 -4828624 L 176788.4 -4828315 L 177667.3 -4827678 L 177660.2 -4826200 L 177239 -4825191 L 177325.1 -4824630 L 175269.6 -4824944 L 174788.3 -4824493 L 174539.7 -4824765 L 174390.5 -4825116 L 173033.7 -4825672 L 171168.1 -4825416 L 170532.4 -4826866 L 170270 -4827076 L 170063.2 -4826366 L 169526.2 -4825882 L 168107.4 -4826216 L 167327.6 -4825045 L 166317.6 -4824752 L 165960.5 -4824698 L 165584.3 -4824682 L 165283.2 -4823616 L 164921.3 -4823515 L 164660.7 -4823786 L 164265.9 -4824392 L 163277.8 -4823895 L 162965.5 -4824104 L 162973.6 -4824559 L 162857.1 -4825467 L 163149 -4825617 L 163430.8 -4825784 L 163815.1 -4825788 L 165666.6 -4825825 L 166210.7 -4826291 L 165998.2 -4826986 L 164417.6 -4828063 L 164030 -4829121 L 163244.2 -4829899 L 162887.4 -4829998 L 161504.2 -4830157 L 161160.1 -4830089 L 160930.3 -4829882 L 160461.8 -4829475 L 160167.3 -4829229 L 159303 -4828463 L 156572.7 -4827070 L 156307.6 -4826962 L 155800.6 -4826701 L 155461.9 -4826529 L 153175.6 -4825190 L 150709.4 -4826047 L 149764.5 -4825953 L 149688.9 -4825899 L 149317.8 -4825841 L 146843.2 -4825144 L 143616.4 -4825508 L 143260.8 -4825574 L 142981.4 -4825555 L 142027.6 -4827528 L 139548.4 -4828117 L 139225.8 -4827934 L 139506.4 -4829758 L 138244.4 -4830501 L 136717.6 -4829447 L 136401 -4829243 L 135384.5 -4829638 L 135385.6 -4829637 z " |
id="path682" /> |
<path |
d="M 285823.2 -4960109 L 285750.9 -4959763 L 283763.7 -4959165 L 283428.3 -4959010 L 281973.6 -4959004 L 280979.7 -4960477 L 280240.3 -4960497 L 280101.1 -4960155 L 279556.5 -4959639 L 278985.5 -4957805 L 279472.8 -4956352 L 278105.8 -4955932 L 278001.2 -4956304 L 277578 -4958186 L 277245 -4958887 L 276860.2 -4958928 L 276523.2 -4958547 L 276350.9 -4958243 L 275871 -4957358 L 275226.3 -4957500 L 274970 -4957264 L 274269.1 -4956992 L 273391.4 -4957763 L 273201.2 -4957437 L 272971.7 -4955227 L 272451.1 -4954248 L 272240.7 -4954567 L 271610.4 -4954993 L 270862.3 -4954865 L 270394.6 -4953900 L 270020.1 -4953820 L 270491.2 -4952076 L 271151.3 -4951703 L 272280.1 -4951770 L 272646 -4951668 L 272596.7 -4951329 L 272329.2 -4950701 L 272519.3 -4950060 L 273187.2 -4949799 L 274215.6 -4950127 L 274871.7 -4950260 L 275219.8 -4950022 L 276220.9 -4949526 L 276412.4 -4949184 L 276291.1 -4948907 L 275907.4 -4948438 L 275655.2 -4948154 L 275193.8 -4947551 L 274896.1 -4946088 L 274505.5 -4946083 L 273413.9 -4946415 L 273025.9 -4947089 L 272797.6 -4946843 L 272819.3 -4945521 L 273969.1 -4944123 L 273667.8 -4943437 L 273301.2 -4943427 L 272253.7 -4943210 L 270964.6 -4941927 L 270899.7 -4941893 L 270664.4 -4941659 L 270382 -4941486 L 270001.6 -4941393 L 268135.5 -4940878 L 268302.6 -4939806 L 268017.2 -4938750 L 267350.7 -4937910 L 266923.2 -4936955 L 266636.9 -4937200 L 264501 -4937685 L 264079.2 -4937309 L 263779 -4937095 L 263113.3 -4936336 L 262786.3 -4936469 L 261409.3 -4937542 L 261390.1 -4937169 L 262825.3 -4935075 L 262126 -4934209 L 261754.3 -4934227 L 261482.9 -4934090 L 261342.6 -4933821 L 261020.1 -4933729 L 260068.2 -4932370 L 260010 -4932023 L 259970.1 -4930697 L 260055.9 -4928152 L 260543.4 -4927291 L 260895.8 -4927393 L 261470.1 -4926982 L 261673.3 -4925953 L 261447.2 -4925681 L 260822.5 -4925432 L 260421.2 -4924473 L 260494.8 -4923764 L 260586.5 -4923419 L 260034.1 -4922985 L 261404.7 -4920386 L 262111.5 -4919724 L 262300.9 -4919455 L 262143.9 -4919110 L 261645.7 -4918589 L 262430.6 -4917851 L 261674.3 -4917079 L 260659.3 -4917549 L 259913.2 -4917534 L 258438.7 -4916364 L 258152.8 -4916445 L 257855.1 -4916458 L 257488.7 -4916391 L 256016.3 -4916428 L 255172.1 -4915699 L 254434.7 -4915788 L 253817.8 -4914023 L 254229.3 -4913643 L 254432.5 -4913449 L 256013.6 -4911885 L 257496.4 -4909658 L 257708.9 -4909341 L 257051.6 -4908973 L 257714.3 -4906819 L 256412.5 -4906185 L 256107.4 -4905960 L 255177.2 -4904145 L 254959.1 -4903879 L 254475.3 -4904422 L 253198.5 -4903033 L 251867.9 -4902349 L 251165.2 -4902579 L 250751.2 -4903160 L 250441 -4903376 L 250196.1 -4902688 L 249298.9 -4902045 L 248986.8 -4901847 L 248688.5 -4902104 L 246968.4 -4903713 L 246278.4 -4905548 L 245218.6 -4906708 L 244534.5 -4906677 L 243901.4 -4906236 L 242347 -4906360 L 242131.3 -4905224 L 242287.6 -4900206 L 242301.6 -4899821 L 239373.7 -4898933 L 239008.5 -4898819 L 238248.9 -4898656 L 235700.4 -4899624 L 235340.4 -4899774 L 230755.6 -4900304 L 230385.8 -4900412 L 229395.4 -4900658 L 229064.6 -4900736 L 228655.4 -4903862 L 229819.3 -4908853 L 229903.2 -4909238 L 229548.2 -4909400 L 228401.6 -4909396 L 226289.5 -4911076 L 226208.2 -4913417 L 225830.5 -4913457 L 222433.3 -4913850 L 219456 -4915532 L 219356.1 -4915888 L 218741.9 -4918401 L 218385.8 -4918573 L 216251.3 -4919614 L 215454.8 -4920492 L 212901.6 -4921570 L 212576.5 -4921730 L 209896.6 -4922731 L 210252.8 -4922892 L 211165 -4923567 L 211160.7 -4925905 L 211166.6 -4927413 L 210576.9 -4927883 L 210282.6 -4928119 L 209943.5 -4928306 L 207743.7 -4929040 L 206859.1 -4928479 L 206905.7 -4927859 L 205881.8 -4927475 L 205550.7 -4927643 L 205183.8 -4927756 L 203338.2 -4928266 L 199566.7 -4927621 L 199002.9 -4926312 L 198637.9 -4926443 L 197867.9 -4926360 L 196508.3 -4925616 L 194187.1 -4925452 L 188806 -4927673 L 188011.4 -4928490 L 186032 -4927908 L 185708.6 -4927791 L 183867.2 -4927138 L 179591.6 -4926677 L 179203.1 -4926635 L 179496.1 -4926879 L 180978.2 -4928084 L 182324.1 -4930794 L 182481.9 -4931155 L 183353.9 -4933338 L 182894.6 -4936054 L 182279.3 -4936354 L 181100.5 -4936292 L 179593.2 -4936164 L 175687 -4938802 L 175346.7 -4938997 L 175183.8 -4938663 L 173455.5 -4935803 L 173082.1 -4935689 L 165962.4 -4933613 L 165600 -4933519 L 161603.5 -4932501 L 161261.3 -4932444 L 161373.8 -4933162 L 161234.1 -4934890 L 161496.6 -4935760 L 161613.7 -4937771 L 161204.8 -4939090 L 161885.7 -4940328 L 162113.1 -4941893 L 163316.2 -4943516 L 165935.2 -4948176 L 166347.7 -4951129 L 166544.6 -4951661 L 167107.1 -4953179 L 167488.8 -4953961 L 167849.4 -4954259 L 169449.8 -4954181 L 170439.2 -4953854 L 171466.2 -4952859 L 170739.4 -4952469 L 170601.5 -4952098 L 170703.6 -4951833 L 171442.6 -4952350 L 171940.2 -4952481 L 172663.6 -4952308 L 173114.7 -4951958 L 173621.3 -4949273 L 173653.9 -4949033 L 173856.8 -4949182 L 173514.3 -4951868 L 173816.1 -4952350 L 174873.3 -4952196 L 176247.6 -4951628 L 177417.3 -4951847 L 178797.4 -4952660 L 179421.3 -4952779 L 179475.1 -4952543 L 179261.4 -4952180 L 179828.2 -4951972 L 180022.3 -4952925 L 180360 -4953251 L 181259.7 -4952524 L 181285 -4953315 L 181004.3 -4954109 L 179399.9 -4955467 L 179275.2 -4955761 L 179415.4 -4956157 L 178579.4 -4955956 L 178343.7 -4956158 L 177829.9 -4957180 L 177922.1 -4957606 L 178603.1 -4957259 L 179123.5 -4957362 L 177060.8 -4959787 L 176007.1 -4960504 L 175455 -4961658 L 174760.1 -4962390 L 173755.2 -4962820 L 173110.9 -4963548 L 172252.9 -4964706 L 171665.6 -4964967 L 170782.3 -4966128 L 170483.8 -4966208 L 169863.9 -4965603 L 169578.2 -4964760 L 169187.6 -4964415 L 169503.1 -4963719 L 168985.1 -4962848 L 168296.6 -4962326 L 167076.2 -4960526 L 166116.1 -4959570 L 165094 -4958236 L 164583.4 -4956648 L 164080 -4955929 L 163956.1 -4955287 L 163876.2 -4954874 L 163829.7 -4952806 L 163601.3 -4952291 L 162881.1 -4951440 L 162839.5 -4951009 L 163202.4 -4951332 L 163449.5 -4951212 L 162981.5 -4949306 L 162752.2 -4949047 L 162436.6 -4948950 L 162165.8 -4949053 L 161865.6 -4949645 L 161822.4 -4950519 L 162244.3 -4954668 L 162322.3 -4955435 L 162858.3 -4957020 L 162864 -4958401 L 163279.4 -4961380 L 164727.7 -4968398 L 166303.1 -4976030 L 167172.6 -4982174 L 167270.9 -4982869 L 167891.5 -4985854 L 168465.5 -4990992 L 168589.2 -4991556 L 168877.1 -4992871 L 168955.1 -4994731 L 169197.3 -4996000 L 170095.7 -5000709 L 170247.1 -5004378 L 171495.9 -5009766 L 172265.2 -5013085 L 172901.5 -5017014 L 173355.8 -5021958 L 173722.7 -5023561 L 174020.4 -5024861 L 174263.5 -5029468 L 174213.4 -5034205 L 174488 -5036506 L 174723.6 -5037471 L 175293.4 -5039804 L 175140 -5044526 L 175559.2 -5045687 L 176773 -5047410 L 177212.5 -5048518 L 178559.5 -5049512 L 178824.4 -5050115 L 180176.4 -5051707 L 180835.4 -5052973 L 182745.7 -5053989 L 183109.4 -5054056 L 183277.2 -5053681 L 182912.9 -5052822 L 183005.4 -5052199 L 183739 -5051871 L 184235.9 -5051209 L 184009.1 -5050975 L 183410.4 -5050854 L 183054.8 -5050608 L 182461.8 -5049233 L 182325.1 -5048352 L 182553.8 -5047818 L 183149.4 -5047120 L 184055.6 -5046469 L 184339.3 -5046236 L 184670.3 -5046230 L 185055.1 -5045987 L 186424.5 -5044063 L 187324 -5043080 L 189788.2 -5040870 L 191582.2 -5039902 L 192176.5 -5039716 L 192924.3 -5038748 L 193690.8 -5037446 L 194842 -5035901 L 196020.3 -5034635 L 197672.5 -5033784 L 198714.7 -5032690 L 200358.5 -5030964 L 201243.3 -5029829 L 202445.9 -5028024 L 203183 -5026418 L 204549.6 -5022883 L 205240.8 -5020540 L 205613.6 -5018831 L 205965.1 -5017221 L 206704.7 -5010371 L 208160.2 -5005114 L 209008.9 -5001758 L 210545.8 -4998131 L 213284.5 -4994002 L 215090.1 -4991832 L 216404.2 -4990912 L 217382.7 -4991533 L 216702.1 -4992673 L 216571.7 -4993171 L 216803.3 -4993456 L 217180 -4993394 L 218104.5 -4992664 L 219212.4 -4992250 L 219150.5 -4992665 L 218692.3 -4992940 L 218734.7 -4993115 L 219697.6 -4993047 L 219821.6 -4993802 L 218163.3 -4994066 L 217090.4 -4994579 L 215198.3 -4996118 L 214437.8 -4996959 L 212700.8 -5002139 L 211977 -5003695 L 211739.3 -5008091 L 211393.5 -5010580 L 210216.4 -5015810 L 209502 -5021864 L 208906.5 -5025195 L 208793.8 -5025898 L 208914.3 -5025880 L 209157.3 -5025852 L 213665.3 -5025112 L 214642.1 -5024435 L 214985.7 -5024602 L 217044.2 -5025132 L 217691.5 -5024807 L 218058.5 -5024769 L 218147.5 -5025928 L 218883.3 -5027152 L 219818.8 -5026035 L 220104.1 -5025803 L 219622 -5023542 L 219824.9 -5022374 L 220043.4 -5022045 L 221277.5 -5021744 L 221506.8 -5021504 L 223976.9 -5020917 L 224202.3 -5020623 L 226082.8 -5021137 L 226416.3 -5021346 L 227437 -5021311 L 228267.7 -5020714 L 228612.6 -5020675 L 230171.3 -5019917 L 230470.5 -5019731 L 231609.4 -5018910 L 231629.1 -5017884 L 231504.7 -5017549 L 231061.2 -5016149 L 232164.9 -5016037 L 232427.5 -5014997 L 231774 -5013672 L 231793.6 -5013298 L 231265.2 -5011896 L 231371.4 -5011167 L 232469.7 -5009545 L 232594 -5008774 L 232667.6 -5008390 L 233648.6 -5004704 L 233764.2 -5004337 L 234208.4 -5005815 L 235225.9 -5006972 L 235490.3 -5007258 L 237370.3 -5006739 L 238541.5 -5005682 L 238988.5 -5003811 L 239214.9 -5003486 L 239589 -5004470 L 239745.4 -5004793 L 241882.7 -5004003 L 242208.9 -5003805 L 242318.1 -5003054 L 243577.3 -5000774 L 244421.2 -5000009 L 246338.4 -4999886 L 247005.1 -4999246 L 247210.4 -4999015 L 248622.7 -4998352 L 250544.1 -4998057 L 250932 -4998014 L 251598.3 -4997626 L 252369.7 -4997722 L 255031.7 -5000420 L 256480 -5000978 L 256873.7 -5001009 L 258826.8 -4998419 L 259195.6 -4998428 L 259468.1 -4998653 L 260054.4 -4998264 L 260536.3 -4998759 L 261773.4 -5000086 L 263958.5 -5000483 L 264304.5 -5000335 L 266254.6 -5000193 L 267335.7 -4999748 L 268530.2 -4997748 L 268911 -4995852 L 269139.4 -4995532 L 269268.6 -4995372 L 269325.4 -4994862 L 267849.4 -4991796 L 266949.1 -4991112 L 266743.5 -4990370 L 266571.9 -4989625 L 266458.6 -4989871 L 266143.7 -4988774 L 266412.5 -4986453 L 266131.1 -4986234 L 265513.4 -4984588 L 264598.2 -4985082 L 264275.8 -4984890 L 264313.1 -4984141 L 263859.2 -4983124 L 263468.7 -4981300 L 264282.2 -4979599 L 264427.7 -4979242 L 264720 -4978930 L 265612.5 -4977748 L 264479.8 -4975821 L 264214.5 -4975555 L 264114.7 -4975506 L 264025.4 -4975167 L 263816.8 -4974504 L 262871.3 -4973546 L 262880.3 -4973521 L 262641.6 -4972934 L 262375.2 -4972710 L 261927.4 -4971748 L 260132.6 -4971311 L 259989.4 -4970964 L 262976.7 -4970129 L 263364.3 -4970155 L 264432.8 -4970505 L 265710.4 -4969145 L 265557.9 -4968401 L 266002.6 -4967819 L 266351.6 -4967661 L 266590.4 -4967643 L 267700.5 -4967627 L 268152.3 -4967013 L 268532.9 -4967036 L 269128 -4968298 L 269815.2 -4968455 L 270166.9 -4968463 L 271175.7 -4968152 L 271186.8 -4967014 L 271558.7 -4966929 L 271621.6 -4966973 L 272398.3 -4967850 L 274342.6 -4967907 L 275048.6 -4967574 L 276598.5 -4967504 L 276960.5 -4967355 L 277103.7 -4967190 L 277504.1 -4966796 L 277785.7 -4966871 L 278924.2 -4968843 L 279195.5 -4969109 L 279835.5 -4969374 L 280182.1 -4969422 L 281501.1 -4970540 L 281779.5 -4970750 L 281946.9 -4971039 L 281620.7 -4972431 L 285146.5 -4971541 L 285454.6 -4971329 L 287280.2 -4969561 L 287520.5 -4969285 L 286264.4 -4968224 L 286334.6 -4967526 L 285688.6 -4967810 L 285128.7 -4966879 L 283763.1 -4967292 L 283401.4 -4967311 L 283409.1 -4966920 L 283529.1 -4965772 L 284166.4 -4964216 L 284129 -4963873 L 283883.1 -4962843 L 284059.5 -4962535 L 284516 -4961496 L 285544.2 -4960372 L 285823.4 -4960109 L 285823.2 -4960109 z M 208688 -5015180 L 208550 -5015461 L 208555.1 -5016276 L 208590.7 -5017299 L 208336.7 -5018526 L 208250.5 -5020783 L 208797.3 -5017429 L 208913 -5015784 L 208688 -5015180 L 208688 -5015180 z M 209168.5 -5009467 L 208847.3 -5009576 L 208340.7 -5010929 L 208430.2 -5013171 L 208779.4 -5013879 L 209037.8 -5013649 L 209458.1 -5012457 L 209437.2 -5010925 L 209168.5 -5009467 L 209168.5 -5009467 z M 210683.4 -5003770 L 210180 -5005686 L 209743.1 -5009079 L 209934 -5009470 L 210408.3 -5008836 L 211053.2 -5006011 L 211190.6 -5004795 L 210925.4 -5003900 L 210683.2 -5003770 L 210683.4 -5003770 z M 216537 -4991527 L 215196.3 -4992666 L 214293.3 -4994672 L 212427.1 -4997173 L 211041.1 -4999030 L 210824.3 -4999690 L 210878.2 -5000247 L 212546.8 -4998244 L 216537.1 -4991527 L 216537 -4991527 z M 169546.5 -4957293 L 169021.2 -4957140 L 168062 -4957514 L 167778.2 -4958539 L 167876.1 -4958760 L 168469.9 -4958831 L 169577.6 -4958672 L 169629.8 -4958155 L 169970 -4957713 L 169546.6 -4957293 L 169546.5 -4957293 z " |
id="path683" /> |
<path |
d="M 208794.1 -5025899 L 208557.1 -5027379 L 208054.8 -5029039 L 207736.5 -5029965 L 206764 -5033614 L 204776.8 -5037849 L 203632.4 -5039725 L 203624.9 -5039948 L 203599.5 -5040700 L 203160.5 -5041434 L 202362.7 -5042151 L 201844.8 -5043122 L 201298 -5043533 L 201184.4 -5044465 L 199493.9 -5046497 L 198767.1 -5047156 L 197927.5 -5047443 L 197362.9 -5047933 L 197057 -5048986 L 196655.1 -5049050 L 196088.1 -5048466 L 195297.7 -5049096 L 194880.5 -5049428 L 194675 -5050727 L 194302.1 -5051352 L 193847.3 -5051396 L 193421.3 -5052000 L 193145.7 -5052053 L 192785.2 -5051756 L 192494.2 -5051912 L 192263.1 -5051372 L 190866.2 -5052224 L 190022.9 -5052997 L 189248.6 -5054479 L 188897.2 -5054539 L 188716.6 -5055043 L 188946.5 -5056095 L 188748 -5056677 L 188296.6 -5057284 L 187543.7 -5057401 L 187417 -5057421 L 187055.3 -5057635 L 187085.4 -5058732 L 186950.4 -5059180 L 186580.5 -5059574 L 186112.7 -5059748 L 185365.5 -5059412 L 184766.4 -5059547 L 184158.5 -5060118 L 183736.3 -5060236 L 181706.5 -5061662 L 180058.2 -5062028 L 177059.2 -5064620 L 174786.8 -5066585 L 173573.1 -5068008 L 172596.1 -5068718 L 171928.5 -5068937 L 170771.5 -5068845 L 170585.2 -5068505 L 171258.8 -5066777 L 171173.7 -5066427 L 170628.8 -5067120 L 170275 -5068203 L 170058.1 -5069611 L 169946.8 -5070333 L 169974.8 -5075855 L 170377.8 -5077632 L 170905.8 -5078859 L 171387.4 -5079349 L 172203.5 -5079346 L 173213.2 -5079758 L 173868.3 -5079413 L 175159.7 -5079312 L 176781.7 -5080508 L 177272.3 -5080307 L 178006.3 -5079724 L 179506.2 -5077837 L 181175 -5076114 L 182335.7 -5075719 L 183003.8 -5075244 L 185283.5 -5072719 L 185488.1 -5072725 L 185229.3 -5073211 L 183392.7 -5075309 L 183460.6 -5075481 L 183230.7 -5075478 L 181540.7 -5076462 L 179638.9 -5078413 L 178936.4 -5079582 L 178532.2 -5080669 L 178495.4 -5081338 L 178870.3 -5082043 L 178699.7 -5082648 L 178060.1 -5083263 L 177930 -5083388 L 177594.3 -5084393 L 176766.1 -5085318 L 176992.4 -5085808 L 176910.5 -5086276 L 177776.7 -5086523 L 177654.8 -5086843 L 177886.6 -5087127 L 180050.5 -5086557 L 180531.5 -5087302 L 181283 -5087945 L 184035.9 -5091843 L 184232.8 -5093077 L 183946.6 -5094589 L 183604.1 -5095261 L 182875.8 -5095640 L 182678 -5095966 L 182846.5 -5096384 L 183171.9 -5096583 L 185129.9 -5096518 L 186786 -5097021 L 187892.3 -5097117 L 188629.4 -5097352 L 189305 -5098002 L 190355.3 -5098308 L 190521.5 -5097396 L 189480.5 -5095095 L 189441 -5094689 L 189684.9 -5094028 L 190216.1 -5093744 L 189930.4 -5094999 L 190870.2 -5097311 L 190898.2 -5098383 L 190693.1 -5098632 L 190271 -5098751 L 189723.1 -5098626 L 188188.9 -5097804 L 186731.9 -5097512 L 185477.6 -5096945 L 184840.9 -5096956 L 184410.8 -5097254 L 183984.6 -5098114 L 183970.1 -5099011 L 183837.7 -5099484 L 181903.7 -5101361 L 181703 -5101918 L 181859.1 -5102210 L 182646.5 -5101391 L 183204.8 -5101361 L 184075.8 -5101660 L 185566.5 -5101514 L 185949.9 -5101783 L 186211.4 -5102371 L 186260.3 -5103133 L 185872.3 -5103862 L 185741.9 -5104616 L 185919.7 -5105392 L 185958.7 -5106052 L 185585.1 -5107189 L 184876 -5108026 L 184145.3 -5108378 L 183684.5 -5108884 L 183041.8 -5111965 L 182560.3 -5112779 L 181758.1 -5113446 L 180613.3 -5113737 L 180208.5 -5114033 L 179970.2 -5114465 L 180197.2 -5114699 L 180995.2 -5114774 L 181330.7 -5115073 L 181063.7 -5115665 L 180617.8 -5116652 L 179551.7 -5116706 L 179270.9 -5116963 L 178984 -5117682 L 177824.2 -5117822 L 177520.5 -5118107 L 177787.6 -5118490 L 178405.8 -5118813 L 178843.8 -5119639 L 177456.6 -5119801 L 175737.5 -5119177 L 175068.1 -5119115 L 174686.2 -5119383 L 173930.8 -5120787 L 173695.6 -5120989 L 172851.9 -5120970 L 172720.1 -5121188 L 172989.7 -5121596 L 173610.8 -5121688 L 174150.8 -5121993 L 174339.6 -5122403 L 174410 -5122556 L 174897.1 -5122840 L 175326.7 -5124102 L 176142.8 -5125403 L 176529.1 -5125441 L 176700.1 -5125885 L 175702.8 -5125599 L 175636.9 -5125708 L 176009.6 -5126388 L 176380.2 -5126786 L 176872.5 -5126865 L 177316.4 -5127231 L 178586.2 -5127694 L 179243.7 -5128678 L 180452 -5129556 L 180869.7 -5130436 L 181707.3 -5130916 L 182356.4 -5132335 L 183010.4 -5133804 L 183047.2 -5134440 L 182849.2 -5135022 L 181624.4 -5136319 L 181559.6 -5136390 L 181801.2 -5136580 L 182246.1 -5137049 L 182459.5 -5137988 L 182795.7 -5137975 L 183016.3 -5137268 L 184441.4 -5136837 L 185793.7 -5137379 L 185663.4 -5137727 L 186206.4 -5138207 L 187707.8 -5140308 L 187844.6 -5140654 L 188036.2 -5139940 L 190633.9 -5140897 L 193643.6 -5140546 L 194577.3 -5141730 L 194784.2 -5142073 L 195761 -5141545 L 197670.3 -5142548 L 197193.6 -5141683 L 197081.7 -5141371 L 196968.9 -5141004 L 196224.9 -5138834 L 194993.2 -5137380 L 196844.9 -5136095 L 198313.4 -5136347 L 198525.7 -5136027 L 199830 -5136420 L 200357.8 -5137175 L 200541.7 -5137484 L 201792.6 -5136951 L 201943.5 -5137282 L 202536.8 -5137252 L 202333.1 -5136556 L 203407.7 -5136414 L 203755.4 -5137098 L 203659.7 -5138171 L 204498.6 -5138928 L 205102 -5138651 L 205315.3 -5138332 L 206419.7 -5138468 L 207013.7 -5138930 L 207454.2 -5138465 L 206695.3 -5137711 L 206994.8 -5137021 L 207754.2 -5136878 L 208647 -5136172 L 209033.2 -5136166 L 210693.7 -5134806 L 210909 -5134497 L 210577 -5134309 L 211182.8 -5131738 L 211366.1 -5131403 L 211827.9 -5130387 L 210335.5 -5128659 L 210525 -5127925 L 210858.3 -5127706 L 214164.9 -5125474 L 214445.2 -5125246 L 215379.2 -5124210 L 215448.5 -5123844 L 215599.5 -5122419 L 214615.3 -5122274 L 214490.5 -5121917 L 215049.5 -5120722 L 216866.1 -5120593 L 217541.2 -5119243 L 217842.4 -5119053 L 218427.9 -5118654 L 219121 -5118702 L 220008.7 -5118128 L 220765.9 -5118161 L 221397.3 -5117789 L 221445.6 -5117421 L 219646.3 -5117167 L 219507 -5116233 L 220422.7 -5115601 L 221490.6 -5116013 L 222965.2 -5115620 L 223046 -5115949 L 223297.6 -5116574 L 224279.3 -5115979 L 225780.6 -5115977 L 226445 -5115598 L 226807.2 -5115470 L 227287.6 -5114987 L 227276.9 -5114621 L 227738.3 -5114159 L 228465.5 -5114114 L 228200.6 -5113865 L 227878.6 -5113697 L 228510.3 -5112845 L 227977.5 -5112382 L 228312.7 -5112244 L 228795.1 -5111765 L 229860.3 -5111807 L 231242.8 -5111390 L 232984.4 -5111007 L 233514.9 -5110502 L 233677.2 -5110169 L 233873.5 -5111150 L 235009.1 -5112004 L 235326 -5112168 L 235216.5 -5109952 L 236422.3 -5109114 L 236715.5 -5108878 L 237933.7 -5110233 L 238921.1 -5109879 L 239771 -5108743 L 239548.4 -5108125 L 239664.7 -5107788 L 242104.5 -5108459 L 242436.6 -5108315 L 243904 -5107921 L 244824.7 -5108509 L 245078.5 -5108799 L 245416.6 -5108621 L 246440.1 -5106629 L 246501.9 -5105484 L 246848 -5105373 L 249558.9 -5104379 L 249861 -5104306 L 250908.3 -5103969 L 252237 -5104490 L 252551.2 -5104204 L 252788.6 -5103713 L 252814.7 -5102158 L 252854 -5101767 L 254799.4 -5102763 L 254476 -5101777 L 254822.4 -5101265 L 254845.7 -5100899 L 254723.2 -5100207 L 255158.6 -5099683 L 255128.8 -5099332 L 256187.9 -5099250 L 256737.2 -5097507 L 257057.3 -5097320 L 256785 -5096321 L 258194.1 -5096152 L 258928.7 -5095351 L 259274.8 -5095240 L 259153.6 -5094173 L 259866.6 -5094175 L 260118.4 -5093138 L 260472.4 -5093087 L 260336.6 -5092770 L 259623.5 -5091603 L 259662 -5090913 L 259177.2 -5090702 L 258944.4 -5090502 L 258640.3 -5090719 L 257175.5 -5090543 L 256206.1 -5091095 L 255982.3 -5090842 L 255358.5 -5090601 L 255618.7 -5090349 L 255694.5 -5089332 L 256618.9 -5088842 L 256137.7 -5087950 L 255853.8 -5087787 L 255569.1 -5087404 L 255664.4 -5087054 L 256060.8 -5086514 L 256767.7 -5086586 L 256927.2 -5084793 L 258076.7 -5084125 L 257810.9 -5083870 L 257036.7 -5081855 L 256670.8 -5081810 L 255986.1 -5081570 L 255380 -5080650 L 255753 -5080616 L 256003.3 -5079155 L 256065.6 -5078786 L 254801.9 -5076450 L 254980.9 -5075319 L 254818.1 -5075060 L 254338.9 -5074277 L 253867.5 -5074728 L 254254.9 -5075335 L 252531.1 -5075363 L 252270.9 -5075616 L 251930.1 -5075470 L 250653.4 -5074227 L 249271.8 -5073994 L 249242.8 -5074009 L 249051.5 -5074314 L 248542.6 -5075264 L 248421.3 -5075595 L 248156.7 -5076205 L 247804.7 -5076223 L 247711.4 -5076550 L 247931.8 -5077189 L 247314.6 -5077436 L 245222.6 -5077604 L 244947.9 -5077375 L 243919.7 -5077591 L 243326.1 -5077216 L 243406.8 -5076474 L 242249.9 -5075503 L 241649.1 -5075357 L 240157.9 -5075671 L 239811.1 -5075547 L 238040.7 -5075050 L 237746.7 -5075076 L 237436.5 -5075283 L 235279.1 -5075812 L 234979 -5074028 L 233935.2 -5073914 L 233332.7 -5073466 L 231507.5 -5073686 L 231435.9 -5073297 L 230372.2 -5072138 L 230488.6 -5071806 L 230551.8 -5070751 L 233994.4 -5070875 L 234931.1 -5070220 L 234847.5 -5069842 L 233648.6 -5068906 L 233495.4 -5067368 L 233413.8 -5067007 L 233823 -5065976 L 233181.6 -5064670 L 234133.8 -5064385 L 234355.2 -5064064 L 236231.9 -5061580 L 236194.4 -5061192 L 235822.5 -5061183 L 235134.9 -5060918 L 234132.5 -5061359 L 233960.9 -5061035 L 232195 -5057911 L 232501.3 -5057676 L 233467.9 -5057040 L 234208.5 -5057249 L 234540.4 -5057307 L 235677.4 -5057991 L 236151.9 -5057509 L 236171.3 -5057172 L 236448.6 -5056090 L 237314.3 -5055383 L 237677 -5054728 L 238669.3 -5054349 L 239075.9 -5053770 L 239076.3 -5053416 L 239823.1 -5053487 L 240038.4 -5053180 L 240433.9 -5052720 L 240719 -5052601 L 241354.3 -5052228 L 242115.7 -5050974 L 242449.8 -5050815 L 241331.5 -5048891 L 240414.3 -5048378 L 240369.3 -5047608 L 240499.3 -5047608 L 241749 -5046836 L 242852.6 -5046941 L 243443 -5046491 L 243277.9 -5045792 L 243619.6 -5045970 L 244655.8 -5046353 L 245474.5 -5045615 L 244769.2 -5044440 L 245346.7 -5043945 L 246095.7 -5043822 L 246518.8 -5042883 L 246346.5 -5042404 L 246033.3 -5042608 L 245154.3 -5042035 L 245012.3 -5041302 L 244342.7 -5040406 L 243278.5 -5040753 L 242853.8 -5039122 L 242785.3 -5038787 L 243153.1 -5038879 L 244177.1 -5038678 L 244340 -5037940 L 245196.8 -5037203 L 245200.2 -5036923 L 245442.5 -5036629 L 245215 -5034846 L 245728.4 -5034401 L 246486.1 -5034444 L 246648.5 -5033390 L 245497.9 -5033399 L 245259 -5032666 L 243411 -5032397 L 243102.1 -5031702 L 242470.9 -5031274 L 241341.2 -5031328 L 241206.7 -5031052 L 240600.8 -5031138 L 240506.4 -5030767 L 240518.5 -5030004 L 240994.1 -5029462 L 241697.1 -5029329 L 242046.8 -5028794 L 242715 -5028538 L 242851.5 -5027488 L 243527.8 -5027800 L 245426.2 -5027715 L 245425.8 -5026590 L 245306.4 -5026241 L 244000.6 -5025756 L 242945.6 -5026728 L 242932.2 -5026359 L 242538.3 -5025736 L 242622.4 -5025661 L 242795.8 -5025372 L 241862.6 -5024402 L 242190.6 -5024301 L 242354.6 -5022314 L 242640.9 -5022055 L 244328.5 -5021205 L 244264.4 -5021964 L 244702.3 -5022572 L 246524.1 -5022910 L 246680.9 -5023656 L 248764.9 -5022400 L 249167.6 -5021793 L 250576.7 -5022003 L 251859.5 -5021775 L 252375.9 -5021357 L 252683 -5021203 L 252936.3 -5020940 L 253148.6 -5020006 L 253070.1 -5019686 L 254281.6 -5020349 L 255603.7 -5019887 L 255931.8 -5019749 L 255549.3 -5016167 L 255480.9 -5015809 L 255216.4 -5015534 L 254857.8 -5015404 L 255134 -5015187 L 256512.7 -5014952 L 256905.5 -5014939 L 258461 -5014780 L 260388.7 -5015044 L 260604.6 -5015013 L 260811.6 -5014940 L 261140.7 -5014761 L 261667.5 -5013393 L 264623.7 -5012274 L 264637.3 -5011899 L 263903.6 -5009313 L 263904.2 -5008921 L 264131.4 -5008708 L 264394.5 -5008542 L 264153 -5007634 L 263851.5 -5007398 L 262450.9 -5005672 L 262820.6 -5005075 L 263949.3 -5004868 L 264124.3 -5004172 L 260964.9 -5002990 L 261062.4 -5002617 L 261469.9 -5001550 L 260474.1 -4999908 L 260535.9 -4998761 L 260054 -4998267 L 259467.7 -4998656 L 259195.2 -4998431 L 258826.4 -4998421 L 256873.3 -5001012 L 256479.6 -5000981 L 255031.3 -5000422 L 252369.3 -4997724 L 251597.9 -4997628 L 250931.6 -4998016 L 250543.7 -4998059 L 248622.3 -4998354 L 247210 -4999017 L 247004.7 -4999249 L 246338 -4999888 L 244420.8 -5000012 L 243576.9 -5000777 L 242317.7 -5003056 L 242208.5 -5003807 L 241882.3 -5004005 L 239745 -5004796 L 239588.6 -5004472 L 239214.5 -5003489 L 238988.1 -5003813 L 238541.1 -5005685 L 237369.9 -5006741 L 235489.9 -5007260 L 235225.5 -5006974 L 234208 -5005817 L 233763.8 -5004339 L 233648.2 -5004706 L 232667.2 -5008392 L 232593.6 -5008777 L 232469.3 -5009548 L 231371 -5011170 L 231264.8 -5011898 L 231793.2 -5013301 L 231773.6 -5013675 L 232427.1 -5014999 L 232164.5 -5016040 L 231060.8 -5016151 L 231504.3 -5017552 L 231628.7 -5017886 L 231609 -5018913 L 230470.1 -5019733 L 230170.9 -5019919 L 228612.2 -5020678 L 228267.3 -5020716 L 227436.6 -5021313 L 226415.9 -5021349 L 226082.4 -5021139 L 224201.9 -5020626 L 223976.5 -5020919 L 221506.4 -5021507 L 221277.1 -5021746 L 220043 -5022048 L 219824.5 -5022376 L 219621.6 -5023544 L 220103.7 -5025806 L 219818.4 -5026037 L 218882.9 -5027155 L 218147.1 -5025930 L 218058.1 -5024772 L 217691.1 -5024810 L 217043.8 -5025134 L 214985.3 -5024604 L 214641.7 -5024437 L 213664.9 -5025115 L 209156.9 -5025855 L 208913.9 -5025882 L 208793.4 -5025901 L 208794.1 -5025899 z M 166236.7 -5119319 L 164636 -5120167 L 163512.8 -5121174 L 161306.1 -5123154 L 160535.1 -5123358 L 159545.8 -5124197 L 156023.5 -5126002 L 154944.4 -5126184 L 154138.7 -5126034 L 153298.3 -5125528 L 152889 -5125517 L 151847.2 -5126080 L 151386.5 -5126234 L 150537.6 -5126516 L 149965.5 -5127186 L 149072.3 -5129525 L 148345.7 -5130441 L 148250.8 -5131294 L 150451.3 -5131359 L 151143.1 -5131649 L 151657.2 -5132468 L 152240.4 -5132691 L 152829 -5132710 L 154072.6 -5132383 L 154538.2 -5131928 L 154554.3 -5131312 L 155005.4 -5130450 L 154698.5 -5129661 L 153981.4 -5129374 L 153440.5 -5129581 L 152841.1 -5129506 L 152407.4 -5129452 L 151965.8 -5129112 L 152323.3 -5128335 L 153122.4 -5127898 L 153484.9 -5127172 L 154851.4 -5127319 L 155603.6 -5127705 L 156523.5 -5129021 L 157185 -5129263 L 159530.1 -5129441 L 160231.1 -5128893 L 159477.3 -5128705 L 159228.5 -5127988 L 158983.6 -5127833 L 158162.7 -5127795 L 157215.3 -5127751 L 157989.6 -5127061 L 159117.6 -5126336 L 163761 -5126339 L 164653.2 -5126073 L 165561.3 -5125446 L 166621.7 -5124293 L 168233.4 -5124339 L 168600.1 -5124175 L 168812.2 -5123829 L 169149.9 -5123277 L 169688.2 -5121741 L 170020 -5121223 L 170394.1 -5121134 L 171045.2 -5121531 L 171495.5 -5121180 L 171203.2 -5120799 L 170012.1 -5120098 L 169344.1 -5119269 L 169025.5 -5119402 L 166236.6 -5119319 L 166236.7 -5119319 z M 170894.6 -5080574 L 170452.1 -5080745 L 170037.6 -5081988 L 169963.5 -5085934 L 169423 -5088238 L 169329.2 -5088446 L 168856.9 -5089496 L 168061.5 -5090494 L 165028.5 -5093401 L 164330.8 -5093572 L 163768.8 -5094087 L 162822.8 -5094589 L 161807.4 -5095687 L 160294.5 -5097958 L 160191 -5098536 L 159717.2 -5101187 L 160313.3 -5102586 L 160327.2 -5103249 L 159523 -5104940 L 158930 -5108528 L 159162 -5108812 L 159563.8 -5108747 L 160199.1 -5108199 L 161083 -5108367 L 161596.3 -5108138 L 161811.5 -5107652 L 162390.5 -5106346 L 163448.3 -5105424 L 164128.6 -5105076 L 164880.8 -5104158 L 165618.5 -5102832 L 166501.6 -5102208 L 167138.7 -5101941 L 168617.3 -5101668 L 169584.5 -5101905 L 171325.5 -5101709 L 171637.2 -5101244 L 171891.2 -5100166 L 172106.1 -5099254 L 171459.1 -5098115 L 171723.8 -5097169 L 172174.8 -5096562 L 172348.3 -5095726 L 171924.3 -5094259 L 172077.5 -5093477 L 172827.4 -5092533 L 173753.6 -5091829 L 174465.6 -5090900 L 174508.1 -5089888 L 174734.1 -5089329 L 174586.6 -5088601 L 174691.2 -5088105 L 174429.2 -5087773 L 173969 -5086718 L 173918.8 -5085419 L 174169 -5085368 L 174379.7 -5084913 L 173887.3 -5084636 L 173764.3 -5084360 L 174028.6 -5083669 L 173666.1 -5083090 L 172597 -5082070 L 171290 -5081226 L 171265.9 -5080717 L 170894.7 -5080574 L 170894.6 -5080574 z M 176965.4 -5104185 L 176690.4 -5103612 L 176510.1 -5104115 L 177015.8 -5105114 L 177374 -5105386 L 177651.9 -5105359 L 177983.4 -5105096 L 178082.5 -5104805 L 177926.4 -5104513 L 177170.8 -5104613 L 176965.3 -5104185 L 176965.4 -5104185 z M 181253.8 -5097052 L 180963 -5097208 L 180704.2 -5097694 L 180784.4 -5097993 L 181297.2 -5098019 L 181679.2 -5097752 L 181821.4 -5097380 L 181589.6 -5097096 L 181253.7 -5097052 L 181253.8 -5097052 z " |
id="path684" /> |
<path |
d="M 181560.4 -5136389 L 181394.9 -5136571 L 180467.2 -5136995 L 179459.2 -5137120 L 178143.6 -5136968 L 177161.7 -5136579 L 176702.4 -5136317 L 176236.2 -5135724 L 175871.5 -5134865 L 175779.1 -5134184 L 176158.4 -5132586 L 175711.1 -5132707 L 171358.4 -5136180 L 171287.1 -5136237 L 170302.2 -5137638 L 170011.4 -5137794 L 169229.1 -5137360 L 169050.1 -5137096 L 169038.7 -5136458 L 169210.9 -5136134 L 170156.5 -5135632 L 170187.1 -5135424 L 169394 -5135400 L 168457.5 -5136515 L 167977 -5138378 L 167477.9 -5139271 L 166951.5 -5139886 L 165996 -5140287 L 165122.9 -5141268 L 164331.4 -5141780 L 163591.3 -5141777 L 163333.6 -5141639 L 163025.9 -5141474 L 161899.3 -5141432 L 161295.4 -5141517 L 160354.9 -5142070 L 159703 -5142186 L 158226 -5141692 L 157217.9 -5141817 L 156257.4 -5142167 L 155920.7 -5142635 L 155396.9 -5144835 L 154364 -5146266 L 153864.7 -5147416 L 153344.4 -5147882 L 151684.1 -5149370 L 150012 -5149228 L 148371.9 -5149671 L 145031.4 -5150206 L 142715.4 -5151560 L 142737.5 -5152043 L 143078 -5152393 L 143294.5 -5153037 L 142642.9 -5152897 L 142094.9 -5152772 L 141202.6 -5153039 L 139607.3 -5153938 L 138575.3 -5154859 L 138251.8 -5154942 L 138026.2 -5155502 L 137646.9 -5155795 L 136936.8 -5155840 L 136273.9 -5156621 L 135196.7 -5157342 L 133777.3 -5158991 L 132965.6 -5159557 L 132177 -5159840 L 132113.3 -5160230 L 132345 -5160599 L 131773.9 -5162958 L 131562.4 -5162407 L 132058.2 -5161132 L 131716.5 -5160346 L 131826.4 -5159389 L 131659.8 -5159252 L 131265.4 -5159393 L 130658 -5160220 L 130014.5 -5161716 L 129977.4 -5163153 L 129655.3 -5164284 L 129524.7 -5165806 L 128314.5 -5170351 L 127718.1 -5172840 L 126629.5 -5174994 L 125073.7 -5177066 L 124053.7 -5178881 L 122901.8 -5181425 L 122165.6 -5182495 L 121609.6 -5182806 L 121258.7 -5182611 L 120829.2 -5182654 L 120174.5 -5183000 L 119595 -5184106 L 119543.6 -5185134 L 119100.6 -5186073 L 114217.3 -5192160 L 111636.7 -5193925 L 110592.5 -5194975 L 110152.4 -5195289 L 109591.5 -5195689 L 108279.3 -5197124 L 108001 -5197663 L 107939.6 -5198846 L 108161.1 -5200051 L 107883.4 -5203685 L 107599.7 -5204941 L 107902.5 -5205423 L 108374.8 -5205555 L 109135.3 -5205504 L 109802 -5205796 L 110385.6 -5205508 L 110365.1 -5206073 L 110602.3 -5206407 L 110071.5 -5206971 L 110248 -5207466 L 111484.8 -5208876 L 113222 -5210187 L 114270 -5210722 L 115090.8 -5210768 L 115573.1 -5211001 L 116459 -5212217 L 116772.5 -5215894 L 117019.4 -5217097 L 117571.9 -5218039 L 118142.4 -5218647 L 118743.4 -5218792 L 119478.1 -5219255 L 120271.1 -5219279 L 120733.1 -5219565 L 121031.6 -5220157 L 121355.4 -5220164 L 121665.8 -5220127 L 121975.2 -5220089 L 122488 -5219508 L 123481.7 -5216901 L 124258.9 -5216031 L 125863.1 -5215803 L 125896.5 -5213926 L 127697.3 -5211928 L 129082.2 -5211220 L 131019.7 -5211219 L 132460.6 -5210777 L 132558.8 -5210399 L 132202.6 -5208977 L 131955.3 -5208700 L 134543.7 -5208084 L 135298.6 -5208198 L 135892.4 -5207707 L 137786.6 -5208079 L 138169 -5208145 L 138710.9 -5207052 L 138458.7 -5206835 L 138999.4 -5206254 L 139106.6 -5205974 L 138927.5 -5205301 L 139268.3 -5203593 L 139460.6 -5203296 L 140526.9 -5202899 L 142412 -5203384 L 144034.2 -5201785 L 144348.6 -5201555 L 145798.1 -5201962 L 146176.6 -5201871 L 148191 -5201165 L 148480.4 -5200927 L 149156.1 -5201082 L 150851.1 -5200104 L 153059.6 -5199420 L 153313.6 -5200849 L 154051.3 -5201057 L 154800.1 -5200855 L 156855.1 -5201805 L 156627.7 -5202879 L 154991.7 -5204402 L 153851.2 -5206338 L 153673 -5206678 L 155140.6 -5206569 L 155702.1 -5207550 L 155621 -5208303 L 154738 -5208989 L 154018.1 -5210320 L 154130.2 -5210688 L 153379.2 -5212627 L 153717.5 -5214031 L 154347.2 -5215373 L 153600.3 -5216667 L 155179.1 -5217519 L 156282.4 -5217706 L 157557.9 -5219130 L 157906.3 -5219289 L 158217.7 -5219362 L 159186.8 -5218954 L 159331.9 -5218622 L 159875.5 -5218111 L 159674.2 -5217061 L 160244.8 -5214544 L 160436 -5214220 L 160413 -5213496 L 159668.2 -5213247 L 159365.9 -5212563 L 159554.1 -5211398 L 160514.2 -5209722 L 159500.3 -5207545 L 159364.2 -5207215 L 160022 -5206452 L 160342.3 -5206342 L 163714.7 -5208218 L 165637.7 -5208522 L 166633.7 -5209107 L 166960 -5208901 L 167536.6 -5209383 L 167524.6 -5210448 L 168066.2 -5210961 L 168226.4 -5212071 L 167027.2 -5213001 L 167985.2 -5214609 L 167905.1 -5214989 L 167848.1 -5216127 L 167264.6 -5217536 L 168325.8 -5218608 L 169696.2 -5218818 L 169635.2 -5219198 L 170326.9 -5218974 L 171672.2 -5217812 L 172768.3 -5217762 L 173134.7 -5217779 L 173116.8 -5218797 L 174146 -5220355 L 173930.9 -5221359 L 173987 -5221714 L 174295.4 -5222365 L 175221.4 -5222749 L 175403.6 -5223060 L 175774 -5223162 L 177148.1 -5221336 L 178529.4 -5220726 L 179460.1 -5219533 L 180006.6 -5219072 L 180903.3 -5217927 L 184501.5 -5216599 L 185721.5 -5215803 L 186053.8 -5215615 L 188445.8 -5214749 L 188822.1 -5214788 L 189036.3 -5214537 L 189358.6 -5214468 L 190034.2 -5214092 L 190774.9 -5214163 L 191379.4 -5213678 L 194410 -5213204 L 195334 -5214812 L 195561.2 -5215113 L 196775.1 -5214103 L 197374.6 -5214285 L 198706.4 -5212375 L 200103.6 -5212745 L 200601.1 -5213332 L 202051 -5211911 L 203062.7 -5211415 L 203552.9 -5209999 L 203686 -5209644 L 203353.7 -5209533 L 202876.3 -5209069 L 203168.5 -5208806 L 204308.4 -5208801 L 204670.6 -5207738 L 205415.2 -5207726 L 205586.2 -5206990 L 204278.2 -5206724 L 204358.2 -5206340 L 204721.5 -5206186 L 206562.9 -5205982 L 206469.8 -5205322 L 208107.9 -5204453 L 208531.1 -5203381 L 209619.8 -5203106 L 209291.5 -5202484 L 208768.1 -5201950 L 208890.1 -5201232 L 207715.1 -5199301 L 208718.8 -5198850 L 210433.9 -5196531 L 210518.9 -5196171 L 210914.1 -5195757 L 211018.2 -5195487 L 211640.6 -5194238 L 211991.8 -5194154 L 212841.4 -5193389 L 213103.6 -5193095 L 214565.6 -5192755 L 215210 -5191909 L 216325.7 -5191859 L 216701.9 -5191842 L 217337.3 -5190703 L 217470.4 -5190390 L 217118.2 -5190250 L 215937.5 -5189350 L 215728.4 -5188290 L 215348.2 -5187599 L 215167.2 -5186031 L 215618.6 -5184558 L 215844.8 -5184240 L 216504.2 -5183843 L 217238.6 -5184025 L 217415.7 -5183321 L 217170.6 -5182282 L 217835.1 -5181128 L 218170.3 -5181313 L 218996.8 -5180515 L 220209.7 -5178178 L 218445.9 -5176751 L 219943.9 -5175558 L 220216.1 -5175297 L 221461 -5174001 L 221175.9 -5173768 L 220600.7 -5173309 L 220307.8 -5171915 L 219686.6 -5171528 L 219775.8 -5170804 L 220864.3 -5171185 L 221623.7 -5170984 L 223001.7 -5169120 L 222706.6 -5168948 L 221919.5 -5167551 L 222685.1 -5166768 L 222484.1 -5166119 L 222878.4 -5165504 L 221964.2 -5164413 L 222091.3 -5164056 L 222399.8 -5162619 L 222768 -5162698 L 223259.3 -5162337 L 223441.9 -5160490 L 223442 -5160136 L 223469.2 -5159429 L 222943.1 -5158879 L 221446.4 -5158950 L 220354 -5158620 L 220598.3 -5157999 L 220120.4 -5157086 L 220856 -5156365 L 220955.2 -5155994 L 221491.6 -5155452 L 221174.1 -5153592 L 221949.7 -5152797 L 222034.2 -5151649 L 222604.8 -5150663 L 222378.8 -5150366 L 221820.6 -5150112 L 221607 -5149039 L 220297.7 -5148328 L 220035.2 -5146888 L 220473.2 -5145091 L 220042.3 -5144465 L 221311.2 -5143622 L 221469.1 -5143968 L 222183.4 -5146100 L 222929.7 -5146020 L 224356.8 -5144799 L 225086.2 -5144598 L 225314.6 -5143904 L 226794.3 -5143632 L 227415.7 -5143186 L 227671.9 -5142899 L 227443.9 -5142612 L 226064.4 -5140473 L 225871.5 -5140135 L 224399.2 -5139651 L 222541.3 -5140130 L 222076.8 -5138712 L 221168.9 -5137979 L 219771.7 -5137471 L 219756.3 -5136366 L 219211.4 -5135811 L 218902.4 -5135630 L 218545.3 -5135621 L 218267.3 -5135447 L 216985.8 -5135551 L 216695.6 -5135768 L 215104.5 -5136634 L 214845.5 -5136375 L 214316.6 -5135871 L 213599.4 -5135779 L 213321.4 -5135535 L 213397 -5134486 L 212767.9 -5134293 L 210910.1 -5134497 L 210694.8 -5134806 L 209034.3 -5136166 L 208648.1 -5136172 L 207755.3 -5136878 L 206995.9 -5137020 L 206696.4 -5137711 L 207455.3 -5138465 L 207014.8 -5138930 L 206420.8 -5138468 L 205316.4 -5138332 L 205103.1 -5138651 L 204499.7 -5138928 L 203660.8 -5138171 L 203756.5 -5137097 L 203408.8 -5136414 L 202334.2 -5136555 L 202537.9 -5137252 L 201944.6 -5137281 L 201793.7 -5136951 L 200542.8 -5137484 L 200358.9 -5137175 L 199831.1 -5136420 L 198526.8 -5136026 L 198314.5 -5136347 L 196846 -5136095 L 194994.3 -5137380 L 196226 -5138834 L 196970 -5141004 L 197082.8 -5141370 L 197194.7 -5141683 L 197671.4 -5142548 L 195762.1 -5141545 L 194785.3 -5142072 L 194578.4 -5141730 L 193644.7 -5140546 L 190635 -5140897 L 188037.3 -5139940 L 187845.7 -5140654 L 187708.9 -5140308 L 186207.5 -5138207 L 185664.5 -5137726 L 185794.8 -5137379 L 184442.5 -5136837 L 183017.4 -5137268 L 182796.8 -5137975 L 182460.6 -5137987 L 182247.2 -5137049 L 181802.3 -5136580 L 181560.7 -5136390 L 181560.4 -5136389 z M 107441.9 -5206696 L 106966.6 -5207306 L 106068.2 -5210336 L 105073.9 -5212340 L 104397 -5213035 L 103179 -5213872 L 102100.1 -5214313 L 101387.8 -5214333 L 100433 -5213967 L 99952.9 -5214271 L 99368.9 -5215326 L 97425.4 -5217336 L 97306.4 -5217937 L 97685.1 -5218666 L 97796 -5219269 L 97565.6 -5220545 L 97183.9 -5221165 L 96994.4 -5221472 L 97186.2 -5221862 L 97519.7 -5221880 L 98398.9 -5221485 L 99318.4 -5221752 L 100220.2 -5221585 L 101192.9 -5221104 L 101956 -5220312 L 103242 -5219902 L 103351.5 -5217666 L 103038.6 -5217084 L 102449.9 -5217321 L 102035.7 -5217004 L 102164.7 -5216762 L 102020.8 -5216597 L 101990.7 -5216037 L 102134.9 -5215690 L 102407.7 -5215612 L 103092.2 -5215825 L 103832.8 -5215061 L 106276.2 -5213717 L 106357.2 -5213630 L 107636 -5212252 L 108137.1 -5210616 L 107781.2 -5210115 L 108071.9 -5209702 L 108075 -5208705 L 107442.1 -5206696 L 107441.9 -5206696 z M 92160.8 -5183813 L 91756.1 -5184365 L 91005.5 -5184517 L 90421.3 -5185061 L 89898.2 -5185189 L 89738.8 -5185385 L 89316.7 -5185503 L 89013.5 -5185278 L 88700 -5185463 L 88654.2 -5186030 L 88463.8 -5186347 L 87756.1 -5187526 L 87697.5 -5188479 L 88440.4 -5188507 L 89086.8 -5189364 L 89369.7 -5189387 L 89807.1 -5189164 L 90421.1 -5189180 L 91998.6 -5188102 L 93072.8 -5187867 L 93788.2 -5187361 L 94097 -5186614 L 94423.1 -5186556 L 95088 -5186055 L 95351.3 -5185363 L 96246.9 -5184098 L 96166.1 -5183798 L 93939.2 -5184762 L 93378.6 -5184255 L 92845.4 -5184282 L 92161 -5183813 L 92160.8 -5183813 z " |
id="path685" /> |
<path |
d="M 121031.6 -5220156 L 121114 -5220320 L 121318.3 -5220836 L 120031.6 -5223035 L 119250.7 -5224162 L 118505.5 -5224619 L 117752.4 -5225513 L 117211.3 -5226999 L 116208 -5228454 L 113816 -5229280 L 112648.8 -5230113 L 112110.8 -5230345 L 109804.8 -5230499 L 107794.1 -5231569 L 105457.6 -5232186 L 103851.1 -5232960 L 103146.3 -5233056 L 102752.3 -5232942 L 102421.3 -5233461 L 103320.2 -5234803 L 104313.4 -5235578 L 104481.7 -5235710 L 106151.1 -5235568 L 107674 -5235749 L 107918.9 -5235903 L 109647.7 -5239950 L 109584.4 -5240595 L 108700 -5242985 L 107944.8 -5243597 L 107639 -5244113 L 107990 -5244564 L 108448.4 -5244837 L 108749.9 -5245281 L 108767.4 -5246737 L 108989.5 -5247174 L 109714.1 -5247792 L 111438.6 -5248464 L 117231 -5249009 L 119010.8 -5249982 L 119846.6 -5249857 L 120041.1 -5249828 L 120586.6 -5249415 L 122108.8 -5250874 L 121289.7 -5251561 L 121160.5 -5251962 L 121477.2 -5252471 L 120065.7 -5252638 L 118965.1 -5252083 L 117558.8 -5251789 L 113826.9 -5252213 L 112761.3 -5252524 L 111794.3 -5251777 L 110764 -5252187 L 110228.6 -5252189 L 109612.5 -5251893 L 108822.2 -5251128 L 108170.9 -5250478 L 107345.4 -5248847 L 106661.2 -5248379 L 105151.1 -5247814 L 104785 -5247211 L 104161.2 -5246839 L 103118.2 -5246611 L 102759.7 -5246340 L 102181.5 -5245401 L 100908.6 -5244915 L 99870.7 -5245060 L 98996.8 -5245182 L 96569.4 -5247446 L 95753.6 -5248729 L 94303.9 -5249795 L 93253.3 -5250258 L 91177.2 -5250415 L 90856.5 -5250268 L 90460 -5249873 L 90326.1 -5249298 L 90558.4 -5248303 L 90017.9 -5247999 L 89931.9 -5248028 L 87671.5 -5248771 L 87125.9 -5249440 L 86398.5 -5249564 L 86047.4 -5249880 L 85332.6 -5250131 L 84660.8 -5249789 L 84352.7 -5250792 L 84067.3 -5251000 L 83377.7 -5250992 L 82940.7 -5251215 L 82420.4 -5251881 L 81180.3 -5251980 L 80935.4 -5252593 L 81167.9 -5253132 L 81652.9 -5253390 L 82499 -5253433 L 83145.5 -5253142 L 83744.2 -5252873 L 84398.2 -5252271 L 85828.2 -5251972 L 85464.2 -5253238 L 85454.2 -5254415 L 85674 -5254572 L 85494.7 -5254820 L 84358.1 -5254934 L 84401.3 -5256899 L 83830.8 -5258849 L 83396.5 -5259608 L 82252.6 -5260925 L 82109.1 -5260972 L 81116.1 -5261295 L 80954.6 -5261720 L 81235.1 -5262229 L 81593.8 -5262500 L 82510.6 -5262485 L 82907.2 -5262624 L 83387.2 -5263343 L 84917.9 -5264621 L 86274.4 -5265687 L 87317.5 -5266170 L 88923.4 -5265395 L 89224.1 -5265595 L 89744.2 -5265441 L 90214 -5265547 L 90186.2 -5265780 L 89474.2 -5266567 L 88693.8 -5266671 L 88542.4 -5266942 L 88701.6 -5267514 L 89148.7 -5267904 L 89312.9 -5268271 L 89469.5 -5268818 L 89201.8 -5269203 L 88795.4 -5269474 L 88404.1 -5269493 L 88815.2 -5270594 L 89795.3 -5271068 L 90830.7 -5272111 L 91186.4 -5272234 L 91329.2 -5271082 L 91996.1 -5270134 L 93114.1 -5269803 L 94497.9 -5270399 L 95281.4 -5270394 L 96077.6 -5269533 L 99122.4 -5270055 L 99482 -5272328 L 100401.2 -5273581 L 100891.8 -5275072 L 100879.1 -5275855 L 100928.2 -5275854 L 102244.4 -5275248 L 103753.1 -5275243 L 104004.4 -5274958 L 103507.1 -5273999 L 104448.5 -5273358 L 104765 -5273147 L 106930.5 -5274505 L 107978.5 -5274819 L 108343.2 -5274866 L 109294.7 -5274572 L 108959.6 -5273512 L 109119.6 -5272813 L 110619 -5272451 L 111282.4 -5272840 L 111495.9 -5273168 L 111694.8 -5274324 L 111656.3 -5275494 L 112176.5 -5276000 L 112544.2 -5276133 L 115998.6 -5276854 L 116174.3 -5277599 L 115733.1 -5278621 L 116359.4 -5280828 L 116441.8 -5281202 L 115974.2 -5281516 L 115851.1 -5281789 L 116205.8 -5281914 L 116171.9 -5283753 L 117433.6 -5284559 L 117546.1 -5284919 L 117657.5 -5285293 L 117576.4 -5286838 L 116844.7 -5287738 L 118100.3 -5289677 L 120362.2 -5289636 L 120802.1 -5291102 L 121140.8 -5291294 L 121743 -5291566 L 123112.1 -5291293 L 123457.6 -5291228 L 126274.4 -5293864 L 126571.1 -5294124 L 126596.1 -5294109 L 126853 -5293397 L 126738.6 -5291888 L 127311.2 -5291482 L 127688.8 -5291487 L 129288.7 -5293098 L 132975.4 -5293866 L 133349.9 -5293787 L 133712.5 -5293788 L 135299.2 -5295146 L 135658.8 -5295100 L 136537.9 -5294762 L 136827.5 -5294885 L 137548.9 -5295151 L 138148.4 -5294674 L 140641.6 -5293881 L 141733.1 -5293679 L 143389.3 -5294479 L 144430.6 -5294126 L 144679.8 -5293852 L 144878.8 -5293562 L 145928.3 -5293510 L 146268.9 -5293598 L 146710.4 -5294524 L 148211.9 -5294840 L 150091.4 -5294461 L 151083.8 -5295528 L 151427.5 -5295708 L 151897.2 -5295693 L 152126.5 -5297862 L 153026.3 -5299461 L 152970.6 -5299829 L 153556.8 -5300211 L 154900.8 -5300241 L 155188.4 -5300446 L 155472.5 -5301187 L 155547.9 -5301485 L 156228.2 -5301766 L 156966.2 -5301648 L 158421.8 -5302175 L 160375.6 -5302179 L 161821 -5303485 L 162460.3 -5303879 L 163115.9 -5303553 L 164930.8 -5303957 L 165150.4 -5304262 L 164828.1 -5306300 L 164381.1 -5306850 L 164312.4 -5307201 L 164499 -5307526 L 165585.4 -5307468 L 166203.8 -5307086 L 168387.7 -5307009 L 168976.1 -5306626 L 169298.3 -5306436 L 169520.7 -5306540 L 169723.8 -5306401 L 169978.8 -5306118 L 171015.6 -5306454 L 171774.7 -5305617 L 172174.7 -5304189 L 172852.2 -5303840 L 172891.5 -5303127 L 174696.2 -5302529 L 174905.4 -5302452 L 181249.1 -5300205 L 181627.4 -5300084 L 181436.6 -5298566 L 182200.7 -5297716 L 181732.7 -5296300 L 180682.4 -5296324 L 180692 -5295949 L 180720.3 -5295219 L 182184 -5294100 L 183558.1 -5293519 L 185056.1 -5293761 L 185014 -5292682 L 186065.6 -5290927 L 186447.8 -5290659 L 186183.8 -5289941 L 186327.2 -5289190 L 185809.3 -5287797 L 186389.1 -5286847 L 187143 -5286820 L 187539.9 -5285124 L 187394.1 -5284428 L 187413.8 -5284073 L 187642.8 -5283795 L 188812 -5282455 L 188776.7 -5282098 L 189846.9 -5282073 L 191393.7 -5282145 L 193422.5 -5280427 L 196732.3 -5279503 L 197120.7 -5279442 L 197383.7 -5279174 L 198279.1 -5278496 L 198339.8 -5278124 L 197375.8 -5276991 L 196383.3 -5276464 L 196066.8 -5276316 L 195640.7 -5275528 L 194641.9 -5275807 L 194279.6 -5275904 L 191317.5 -5276030 L 190942 -5275997 L 189564.9 -5276544 L 185870.2 -5277107 L 185315.4 -5274372 L 187082.9 -5273643 L 187057.6 -5273257 L 185980.6 -5272227 L 186754.9 -5270072 L 187430.4 -5269695 L 187732.6 -5269453 L 190364.1 -5268856 L 192674.7 -5268996 L 192993.9 -5268779 L 194772 -5269110 L 195137.4 -5269116 L 196509.4 -5268447 L 197520.6 -5267252 L 200615.8 -5267365 L 201003.1 -5267290 L 201301.7 -5266382 L 201431.6 -5266090 L 201168.2 -5265875 L 200688.8 -5264659 L 201648.6 -5262957 L 201640.3 -5261015 L 201959.9 -5259933 L 201903.6 -5259545 L 202269.6 -5259067 L 203508.6 -5257147 L 203645.5 -5256787 L 203353.1 -5256532 L 202648.8 -5255611 L 201894.1 -5255564 L 201609.6 -5255287 L 200947.7 -5254851 L 200605.3 -5254670 L 200283.8 -5254455 L 200047.4 -5254238 L 199508.7 -5253900 L 199135.3 -5253901 L 198437.8 -5254132 L 196727.7 -5253448 L 195258.2 -5253443 L 194896.8 -5253427 L 192884.2 -5254144 L 191790.1 -5254268 L 190006.1 -5253897 L 189625.7 -5253831 L 189240.3 -5253857 L 189071.2 -5253990 L 186762.9 -5254217 L 184845.7 -5253945 L 183800 -5252835 L 183479.6 -5252667 L 182073.9 -5252343 L 180361.1 -5252547 L 180053.6 -5252334 L 179710.1 -5252136 L 178189.2 -5251690 L 176212 -5251764 L 175817.6 -5251741 L 174366.7 -5251143 L 174067.2 -5250888 L 173060.5 -5249696 L 171941.1 -5249378 L 170581.9 -5247967 L 171687 -5247552 L 173232.8 -5247716 L 173626.2 -5247667 L 175053.7 -5247410 L 175934.4 -5246741 L 176101.4 -5246409 L 176336.4 -5245857 L 176261.2 -5245508 L 176248.5 -5243804 L 176742.7 -5242866 L 177819.3 -5241542 L 179170.3 -5240467 L 179479.5 -5240281 L 180824.2 -5240915 L 181197.8 -5241550 L 181552.2 -5241673 L 182230.9 -5241540 L 182991.2 -5240423 L 183280.4 -5240227 L 182650 -5238277 L 182599.8 -5237932 L 183398.5 -5237465 L 183624.7 -5237253 L 183550.5 -5236947 L 183107.9 -5236501 L 183519 -5235482 L 183324.6 -5234844 L 184158.3 -5234288 L 184417.5 -5234027 L 183895.5 -5232683 L 183738.2 -5232354 L 183533.9 -5232073 L 182241.3 -5231064 L 182020 -5230762 L 180590.3 -5229625 L 179849.5 -5229639 L 178325.7 -5228670 L 178535.9 -5228390 L 178852.2 -5228240 L 178742 -5227877 L 179051 -5226442 L 178622.4 -5225863 L 177479.1 -5224872 L 177235.8 -5224572 L 177881.4 -5224198 L 178881.5 -5224723 L 182551 -5224029 L 182866.2 -5223822 L 183205.5 -5223735 L 183387.6 -5223454 L 183782.7 -5222212 L 184738.4 -5221053 L 186862.2 -5220330 L 187200.5 -5220153 L 186748.9 -5219161 L 186891.8 -5217670 L 184854.8 -5216733 L 184500.5 -5216598 L 180902.3 -5217926 L 180005.6 -5219071 L 179459.1 -5219532 L 178528.4 -5220725 L 177147.1 -5221335 L 175773 -5223161 L 175402.6 -5223058 L 175220.4 -5222748 L 174294.4 -5222363 L 173986 -5221712 L 173929.9 -5221358 L 174145 -5220354 L 173115.8 -5218796 L 173133.7 -5217778 L 172767.3 -5217760 L 171671.2 -5217811 L 170325.9 -5218972 L 169634.2 -5219197 L 169695.2 -5218816 L 168324.8 -5218606 L 167263.6 -5217535 L 167847.1 -5216126 L 167904.1 -5214988 L 167984.2 -5214608 L 167026.2 -5213000 L 168225.4 -5212070 L 168065.2 -5210959 L 167523.6 -5210447 L 167535.6 -5209382 L 166959 -5208900 L 166632.7 -5209106 L 165636.7 -5208521 L 163713.7 -5208217 L 160341.3 -5206340 L 160021 -5206451 L 159363.2 -5207214 L 159499.3 -5207544 L 160513.2 -5209720 L 159553.1 -5211397 L 159364.9 -5212562 L 159667.2 -5213246 L 160412 -5213495 L 160435 -5214219 L 160243.8 -5214542 L 159673.2 -5217060 L 159874.5 -5218110 L 159330.9 -5218621 L 159185.8 -5218952 L 158216.7 -5219361 L 157905.3 -5219288 L 157556.9 -5219129 L 156281.4 -5217705 L 155178.1 -5217518 L 153599.3 -5216666 L 154346.2 -5215372 L 153716.5 -5214030 L 153378.2 -5212626 L 154129.2 -5210687 L 154017.1 -5210319 L 154737 -5208988 L 155620 -5208302 L 155701.1 -5207549 L 155139.6 -5206567 L 153672 -5206677 L 153850.2 -5206337 L 154990.7 -5204401 L 156626.7 -5202878 L 156854.1 -5201804 L 154799.1 -5200854 L 154050.3 -5201056 L 153312.6 -5200848 L 153058.6 -5199419 L 150850.1 -5200103 L 149155.1 -5201081 L 148479.4 -5200926 L 148190 -5201163 L 146175.6 -5201870 L 145797.1 -5201961 L 144347.6 -5201553 L 144033.2 -5201784 L 142411 -5203382 L 140525.9 -5202898 L 139459.6 -5203295 L 139267.3 -5203592 L 138926.5 -5205300 L 139105.6 -5205973 L 138998.4 -5206253 L 138457.7 -5206834 L 138709.9 -5207050 L 138168 -5208144 L 137785.6 -5208078 L 135891.4 -5207706 L 135297.6 -5208197 L 134542.7 -5208083 L 131954.3 -5208698 L 132201.6 -5208975 L 132557.8 -5210397 L 132459.6 -5210776 L 131018.7 -5211217 L 129081.2 -5211219 L 127696.3 -5211927 L 125895.5 -5213925 L 125862.1 -5215801 L 124257.9 -5216029 L 123480.7 -5216900 L 122487 -5219507 L 121974.2 -5220087 L 121664.8 -5220125 L 121354.4 -5220163 L 121030.6 -5220156 L 121031.6 -5220156 z " |
id="path686" /> |
<path |
d="M 73378.6 -5278030 L 73325.1 -5277243 L 73173.4 -5276747 L 72195.4 -5275387 L 70880.1 -5276517 L 69885.4 -5277027 L 68796.8 -5277111 L 67475.6 -5276400 L 65316.1 -5276489 L 65162.7 -5276423 L 64836.1 -5276282 L 63825.3 -5275361 L 62340.2 -5275562 L 61711.5 -5276162 L 60471.6 -5276517 L 59759.8 -5277305 L 59712.8 -5278870 L 59521 -5279247 L 58962.8 -5279278 L 57612.6 -5281077 L 56627.6 -5281176 L 56241.5 -5281650 L 55829.7 -5281615 L 55706.1 -5281908 L 55327.6 -5282048 L 55259.4 -5282286 L 55529.9 -5282693 L 55416.7 -5283344 L 55861.9 -5284220 L 56114.3 -5283939 L 56387.2 -5284116 L 56707.8 -5283751 L 56856.9 -5283966 L 57566.7 -5283920 L 57599.8 -5284249 L 57867.6 -5284376 L 57970.6 -5283624 L 58440.5 -5283730 L 58351.3 -5282588 L 58525.6 -5282545 L 58897.2 -5282942 L 59230.6 -5282960 L 59576.1 -5282336 L 59399 -5281843 L 59542.7 -5281496 L 60055.5 -5281521 L 59836.1 -5281875 L 60045.9 -5282187 L 60917.1 -5281971 L 61488.2 -5282322 L 61786.2 -5282241 L 61886.4 -5281670 L 61932.2 -5281408 L 62261 -5282142 L 61978.8 -5283143 L 62206.3 -5283376 L 62458.6 -5283094 L 63180.9 -5282919 L 63361.8 -5281418 L 63591.5 -5281164 L 63962.9 -5281306 L 63958.3 -5282022 L 64173.2 -5282384 L 64494 -5282531 L 64887.9 -5282389 L 65044.1 -5281657 L 65509.1 -5281969 L 65554 -5281146 L 66200.7 -5281490 L 66450.3 -5280672 L 66778.6 -5280638 L 67943.3 -5281314 L 68559.5 -5281098 L 68673.3 -5281289 L 68804.7 -5281508 L 68706.7 -5282311 L 69199.7 -5283156 L 69119.3 -5283881 L 69278.6 -5284197 L 69700.4 -5284333 L 70013.8 -5284660 L 70062.5 -5285908 L 70438.7 -5285844 L 70895.4 -5285057 L 71173.3 -5285284 L 71307.5 -5285859 L 71714.1 -5285844 L 72133.7 -5286466 L 72392 -5287770 L 72948 -5288481 L 73884.8 -5288412 L 74233 -5288070 L 74566.4 -5288087 L 74935.3 -5288459 L 74887.8 -5289257 L 74551.8 -5288958 L 74215.9 -5288916 L 73531.7 -5289215 L 72842.3 -5289207 L 72393 -5289560 L 72325.3 -5290154 L 72050.3 -5290463 L 71455.2 -5291904 L 71243 -5291823 L 71131.3 -5290965 L 71489.4 -5290213 L 71403.4 -5289864 L 70848 -5290175 L 70446.4 -5289986 L 70474.1 -5289753 L 70887.9 -5289302 L 71902.7 -5288740 L 71460.2 -5287889 L 71149.8 -5288100 L 70622.6 -5288945 L 69743.2 -5288062 L 69025.8 -5287777 L 68450.1 -5287886 L 67879.6 -5288301 L 67253.9 -5289183 L 66584.8 -5289378 L 66201.3 -5289877 L 66355.4 -5290143 L 66734.3 -5290105 L 68599.6 -5289105 L 68791.7 -5289002 L 68923.2 -5289296 L 68820 -5289792 L 69070.4 -5290253 L 69053 -5290587 L 68206.8 -5290289 L 67795.2 -5290509 L 67904 -5290830 L 67617 -5291664 L 67654.6 -5292499 L 67415.4 -5291900 L 67020.6 -5291431 L 66439.5 -5291234 L 65869 -5291394 L 65339 -5291959 L 65301.5 -5292601 L 64928 -5292946 L 64766.1 -5292604 L 64856.2 -5291470 L 65476.7 -5290538 L 65236.6 -5290179 L 64291.9 -5289916 L 64078.9 -5289971 L 63322.3 -5290167 L 61571.9 -5289756 L 60928.2 -5290204 L 60329.7 -5290086 L 60173.4 -5290562 L 59910.7 -5290486 L 59241.6 -5290681 L 59077.4 -5290570 L 59067 -5290213 L 59652.5 -5289694 L 59692.7 -5289332 L 59263 -5288863 L 59264.9 -5288122 L 59103.2 -5288036 L 58497.4 -5288608 L 58128.8 -5288748 L 57598.3 -5288546 L 57236 -5286971 L 57275.8 -5286098 L 56944.7 -5285850 L 56889.5 -5286316 L 56833.2 -5286409 L 56627.1 -5286751 L 55963.1 -5286997 L 55849.9 -5287648 L 55655.5 -5287745 L 55167.5 -5286950 L 54793.7 -5287039 L 55153.7 -5288670 L 54681.8 -5288214 L 54506.6 -5288244 L 54625.8 -5288923 L 54429.2 -5289505 L 54168.8 -5289199 L 53907.6 -5287870 L 53647.2 -5287564 L 53495.9 -5287835 L 53336.4 -5290562 L 53634.9 -5291248 L 53945.6 -5291293 L 54150.5 -5291554 L 54032.5 -5291811 L 53941.2 -5292010 L 53079.9 -5291815 L 52913.7 -5292446 L 53273 -5293228 L 54233.4 -5293898 L 54541.5 -5293918 L 54950.5 -5293672 L 55193.3 -5294644 L 55666.5 -5295211 L 55502.7 -5295611 L 55573.5 -5295809 L 55353.9 -5295907 L 54972.1 -5295409 L 54975.9 -5294812 L 54765 -5294525 L 52995.9 -5294023 L 52333.5 -5293272 L 51827.5 -5295088 L 51507.1 -5295453 L 51311.1 -5293759 L 51838.5 -5293168 L 51863.1 -5292399 L 52297.3 -5292150 L 52594.1 -5290790 L 52467.4 -5290291 L 52111 -5290046 L 51860.6 -5289586 L 51817.3 -5289155 L 52054.3 -5288722 L 52458.3 -5288426 L 52425.2 -5288096 L 52020.9 -5287882 L 51833.6 -5287542 L 52173.9 -5286613 L 52971.5 -5285918 L 52862.4 -5285341 L 53213.1 -5284769 L 53942.7 -5284158 L 53980.3 -5283770 L 53874.3 -5283763 L 52772.8 -5283688 L 52361.2 -5283908 L 52164.6 -5284491 L 51987.8 -5284509 L 51558 -5284040 L 51267.5 -5283942 L 50972 -5284049 L 50664.2 -5284540 L 50889.8 -5285515 L 50723.3 -5285890 L 50301.6 -5286009 L 50014 -5286447 L 50393.2 -5286920 L 50209.4 -5287630 L 49706.6 -5287450 L 49426.6 -5287965 L 49178.8 -5287529 L 49692.4 -5285533 L 49540.6 -5285293 L 49169.4 -5285407 L 48858.5 -5285106 L 48638.8 -5285205 L 48252.9 -5285934 L 48243.7 -5286158 L 48215.8 -5286833 L 47880.7 -5287814 L 48053 -5288512 L 47712.4 -5288931 L 47479 -5290668 L 47810.6 -5291427 L 47760.3 -5291688 L 47224.8 -5291691 L 47016.2 -5292914 L 46763.7 -5292939 L 46493.1 -5292532 L 46157.1 -5292489 L 45972.4 -5292176 L 46487.7 -5292226 L 47239 -5290564 L 47254.7 -5288184 L 47132.3 -5287994 L 46619.9 -5287199 L 46589.3 -5286895 L 47268.3 -5286290 L 47439.4 -5285454 L 47146.2 -5285330 L 46537.9 -5285878 L 45868.6 -5286073 L 46089 -5286741 L 45935.3 -5287243 L 45394.5 -5286939 L 45341.9 -5287431 L 45076.8 -5287585 L 44747 -5285828 L 44415.8 -5285580 L 43575.1 -5286100 L 43034.5 -5286052 L 42319.1 -5285537 L 41576.3 -5285509 L 41015.9 -5286026 L 40884.3 -5286373 L 40753.8 -5286718 L 40974 -5287131 L 41542.7 -5287457 L 39861.4 -5288752 L 39415.5 -5287365 L 39460.5 -5286797 L 39892.4 -5286779 L 39988.1 -5286463 L 39489.1 -5285055 L 39151.4 -5282966 L 39298.8 -5281134 L 39204.6 -5280197 L 39651 -5279308 L 39616.5 -5279109 L 39529.2 -5278604 L 39947.4 -5277181 L 40828.6 -5276554 L 41595.6 -5275044 L 40426.1 -5275597 L 39999.2 -5275666 L 39678.2 -5275519 L 38936 -5276259 L 37832.1 -5276448 L 37345 -5277188 L 37181.4 -5277844 L 37227.7 -5278811 L 37020.9 -5279293 L 37077.5 -5280617 L 36787 -5281135 L 36666.4 -5281350 L 37859.5 -5282048 L 38150.3 -5282402 L 38406.3 -5283425 L 38350.2 -5285656 L 37648.3 -5288822 L 37212.5 -5290069 L 37445.4 -5290608 L 37218.4 -5290887 L 35677.7 -5291299 L 34686.7 -5292440 L 34557.4 -5292589 L 33803.7 -5294225 L 33844.6 -5294631 L 34244.5 -5295306 L 34174.7 -5296132 L 34354.4 -5296395 L 34804 -5296298 L 35207.8 -5296002 L 35670.1 -5296032 L 35882.6 -5296368 L 35487 -5297253 L 34744.1 -5296970 L 34446.1 -5297051 L 34146.1 -5297619 L 35726 -5298610 L 35840 -5298982 L 36188.8 -5299151 L 36557.1 -5298755 L 37590.1 -5298625 L 37868.8 -5299364 L 37954.8 -5299416 L 38194.8 -5299561 L 38467.6 -5299483 L 39024 -5300194 L 39481.6 -5300429 L 39347.9 -5300621 L 38034 -5300243 L 37811.8 -5300316 L 37665.7 -5300638 L 38739.8 -5301169 L 39147.5 -5302176 L 39511.3 -5302242 L 39435 -5301738 L 39533.2 -5301446 L 39922 -5301253 L 39994.6 -5300709 L 40757.2 -5300427 L 40934.2 -5300665 L 40878.8 -5300876 L 40464.8 -5301071 L 40089.3 -5301902 L 40077.1 -5302287 L 40997.3 -5303063 L 41361.1 -5303128 L 41834.8 -5302603 L 42098.3 -5302849 L 41851.4 -5303437 L 41566.2 -5303645 L 40664.4 -5303557 L 40138.6 -5303150 L 39353.2 -5303204 L 38174.7 -5301891 L 37940 -5302094 L 38547.6 -5303311 L 39622.2 -5304353 L 39251 -5304468 L 39124.9 -5304736 L 39632.9 -5304966 L 40027.7 -5305591 L 39318.1 -5305638 L 38782.2 -5305385 L 38341.8 -5304560 L 38094 -5304380 L 37717.8 -5304444 L 37243.6 -5305055 L 36774 -5305205 L 36493.9 -5305463 L 36421.3 -5306008 L 36146.1 -5306061 L 36381.8 -5304605 L 36775.8 -5304463 L 37005.1 -5303954 L 36920.8 -5303118 L 37102.1 -5302639 L 36929.9 -5302196 L 37500 -5301525 L 36910.8 -5300996 L 36603.1 -5301488 L 36165.9 -5301199 L 35746.7 -5301344 L 35094.8 -5301206 L 34867.3 -5300973 L 34892.3 -5300715 L 35619.3 -5300334 L 35689.7 -5300020 L 35348.3 -5299671 L 34432 -5300199 L 34146.5 -5300151 L 34133.4 -5299769 L 34514.3 -5299244 L 34685.5 -5298664 L 33585.8 -5297880 L 33390.9 -5297465 L 33440.8 -5297186 L 33651.9 -5296006 L 33436.2 -5295132 L 33208.9 -5295155 L 31792.9 -5296296 L 29661.3 -5298943 L 29143.9 -5299379 L 24455.1 -5301466 L 23934.6 -5301365 L 23856.3 -5301292 L 23173.2 -5300649 L 23140.9 -5301088 L 23609.1 -5301680 L 24038.8 -5301892 L 25056.9 -5301865 L 25953.5 -5301646 L 26846.9 -5300891 L 27359.5 -5300659 L 28450.4 -5300344 L 28678.1 -5300577 L 28030.3 -5301743 L 26962.3 -5302286 L 24234.6 -5302818 L 23334.7 -5302500 L 23037.1 -5302838 L 23093 -5303139 L 23813.1 -5303194 L 24253.5 -5303763 L 23938.5 -5304435 L 24282.6 -5304809 L 24184.4 -5305100 L 24338.8 -5305366 L 25389.5 -5305157 L 26188.2 -5305485 L 26532.2 -5305860 L 27013.8 -5307090 L 27597.6 -5307312 L 28013.6 -5308651 L 28327.3 -5308977 L 29022 -5309035 L 29492.3 -5309396 L 29715.2 -5309834 L 29095.7 -5311278 L 29176.9 -5311577 L 28461.8 -5311317 L 28363.1 -5311058 L 28950.1 -5310091 L 28843.6 -5309795 L 28202 -5309758 L 27983.9 -5309115 L 26909 -5308073 L 26310.4 -5308210 L 26294.4 -5307547 L 25578.5 -5306775 L 24333.2 -5306825 L 24205.7 -5307835 L 23863.3 -5308740 L 23406.8 -5309272 L 22889.4 -5311474 L 22360.5 -5312551 L 22221.3 -5312437 L 22225.3 -5311720 L 22663.6 -5310755 L 22748.3 -5309825 L 23105.6 -5308817 L 23751.4 -5308137 L 23910.8 -5306433 L 23384.5 -5305770 L 23146.2 -5305180 L 22648.7 -5305307 L 22181.2 -5305227 L 21843.3 -5305671 L 19462.2 -5306603 L 19434.1 -5306325 L 19905.6 -5305689 L 20398 -5305511 L 20598 -5305515 L 21241.8 -5305527 L 21623 -5305258 L 21930.5 -5304767 L 22048.4 -5304166 L 22550.7 -5303834 L 20987.7 -5302509 L 20456.9 -5302307 L 18610.6 -5302725 L 18136.1 -5303080 L 16593.7 -5302213 L 16116.2 -5302287 L 15173 -5303559 L 13969.5 -5304782 L 13799 -5305180 L 13659.7 -5305504 L 13162.5 -5305887 L 12004.1 -5308564 L 11013.8 -5310379 L 11196.5 -5310923 L 10962.7 -5311637 L 11715.9 -5313531 L 11906.8 -5314407 L 11851.9 -5314873 L 11641.5 -5315047 L 11639.9 -5315048 L 11410.7 -5315189 L 10690.9 -5315625 L 10994.6 -5316117 L 10744 -5317507 L 11096 -5318226 L 11495.4 -5318727 L 11802.1 -5319112 L 12000 -5319360 L 12059.6 -5319383 L 12028.9 -5318873 L 12705.4 -5317977 L 13990.7 -5317138 L 14374.9 -5317131 L 15448.8 -5318221 L 16211.1 -5318279 L 16589.2 -5318215 L 17351.3 -5319477 L 17399.5 -5320915 L 19608.5 -5321546 L 20493.6 -5320868 L 21262.8 -5320790 L 20899.2 -5321412 L 21164.4 -5323293 L 20673.7 -5325514 L 21165.2 -5326874 L 22272.7 -5327138 L 22615.3 -5327843 L 21789.4 -5329589 L 22451.2 -5330528 L 22507.7 -5330882 L 21933.7 -5331676 L 21836.1 -5332388 L 21462 -5332449 L 21178.8 -5333153 L 18920.9 -5331865 L 17429.2 -5331707 L 17138.4 -5330607 L 16817.3 -5330406 L 16630 -5330726 L 15977.3 -5331065 L 15725.1 -5332887 L 14909.7 -5334062 L 14543.5 -5333943 L 13405.1 -5334109 L 12511.5 -5335331 L 11409.3 -5335607 L 10824.9 -5336112 L 9303.1 -5336097 L 8690.7 -5335631 L 8121.3 -5336054 L 7372.1 -5336213 L 6369.5 -5335736 L 5679.1 -5335539 L 4286 -5335995 L 3883.8 -5338299 L 3105.6 -5339662 L 2441.5 -5343910 L 532.5 -5345194 L 399.4 -5345565 L 550.9 -5347415 L 985 -5348072 L 1289.3 -5348324 L 364.9 -5348943 L -1134.3 -5348805 L -1508.5 -5348897 L -1201.7 -5349607 L -1311.8 -5350752 L -337.9 -5351342 L -558 -5351969 L 437.6 -5353070 L 418.4 -5353833 L 1730.5 -5354484 L 1775.1 -5354863 L 3587.9 -5354643 L 4992 -5355051 L 7197.8 -5356375 L 7550.1 -5356483 L 9765.9 -5356947 L 11464.4 -5357753 L 11843.6 -5357768 L 12312.4 -5357187 L 12643.3 -5357015 L 14171.8 -5356735 L 16514.4 -5356870 L 16878.7 -5357014 L 17809.8 -5357152 L 18113.8 -5357242 L 18810.9 -5356414 L 20273.2 -5356227 L 20602.5 -5356411 L 20749.9 -5357138 L 22335.7 -5355481 L 21038 -5354124 L 21297.9 -5353409 L 22223.9 -5352706 L 22414.1 -5352367 L 23105.6 -5352678 L 23519.6 -5353325 L 24563.5 -5353075 L 25785.4 -5354005 L 27674.3 -5354212 L 28266.7 -5354697 L 28645.9 -5354751 L 29459.4 -5353218 L 29491.3 -5352222 L 29829.2 -5352101 L 30094.8 -5352798 L 31184.9 -5352686 L 31833.4 -5352352 L 32278.4 -5351334 L 32960.1 -5351101 L 33265.8 -5350889 L 33400.6 -5351231 L 34376.9 -5351560 L 34697 -5351738 L 35783.2 -5351781 L 37704.4 -5350742 L 37545.3 -5351814 L 38619.6 -5352795 L 39328.9 -5353010 L 39979.3 -5352660 L 40348.3 -5352622 L 40650.9 -5352395 L 41651.4 -5352911 L 42604.5 -5352434 L 43843.7 -5353771 L 44054.7 -5354085 L 43627.3 -5354721 L 43726.6 -5355490 L 44268.5 -5356510 L 45005.9 -5356712 L 45422.9 -5357324 L 46788.4 -5357096 L 46916.3 -5356786 L 47554.2 -5356918 L 47950.1 -5357487 L 48300 -5357445 L 48772.6 -5356884 L 49908.7 -5356932 L 51278.6 -5356362 L 51616.6 -5355680 L 52351.5 -5355644 L 52713.6 -5355760 L 52476 -5355030 L 52855.5 -5353192 L 53793.7 -5352238 L 53610.2 -5351513 L 55123.2 -5351462 L 56025.4 -5352127 L 56372.5 -5352263 L 57857.6 -5352412 L 61343 -5351205 L 61694.1 -5351333 L 61924.3 -5351021 L 62581.2 -5349717 L 64230 -5348632 L 64592.7 -5348477 L 67186.7 -5348876 L 67566.6 -5348848 L 69259.1 -5346040 L 69464.3 -5345768 L 69276.5 -5344778 L 69631.6 -5344159 L 69687.1 -5342024 L 70758 -5343075 L 71705 -5345171 L 71924.1 -5344859 L 73411.9 -5345042 L 74827.6 -5344535 L 75199.4 -5344453 L 75375.7 -5345145 L 77158.3 -5346217 L 77422.2 -5346457 L 78424.3 -5346224 L 78798.8 -5345177 L 79128.4 -5345006 L 79027.2 -5344285 L 79065.9 -5343962 L 78979.2 -5343588 L 78593.6 -5341462 L 77226.1 -5338758 L 77497.9 -5338045 L 77293.1 -5336949 L 77941.3 -5336686 L 78088.3 -5336400 L 77803.9 -5335822 L 78139.1 -5335294 L 78905.8 -5336080 L 79109.9 -5335752 L 80591.1 -5335601 L 83812.7 -5338324 L 83989.5 -5338668 L 84139.2 -5339017 L 85231.5 -5338876 L 86088.3 -5339578 L 86467.2 -5339602 L 86389.8 -5341763 L 86813.5 -5342328 L 87752.5 -5342996 L 88897.1 -5344536 L 89413.6 -5345515 L 89429.7 -5346263 L 88230.5 -5348111 L 88173.9 -5348482 L 91602.3 -5348344 L 91871.9 -5349066 L 93686.5 -5348794 L 94436.2 -5349584 L 94786.2 -5349750 L 96732.4 -5349694 L 97712.6 -5349042 L 98170.5 -5347559 L 99518.4 -5346131 L 99846.8 -5345916 L 99880.5 -5345612 L 99851.2 -5344737 L 100386 -5343016 L 100643.2 -5342748 L 100966.5 -5342468 L 101866.6 -5344093 L 103075.1 -5343332 L 103678.9 -5343768 L 104161.3 -5344796 L 104917.1 -5344926 L 105988.7 -5344518 L 106363.6 -5344602 L 108638.9 -5341477 L 108425.9 -5340328 L 108599.6 -5339822 L 108534.1 -5339540 L 108823.8 -5338884 L 108154.8 -5337626 L 108145.4 -5336553 L 109691.5 -5336529 L 109798.1 -5337622 L 110777.8 -5338177 L 113481.2 -5338284 L 113840.1 -5338434 L 114540.7 -5337830 L 114770.8 -5337596 L 114499.9 -5337318 L 114454.3 -5336161 L 112890.8 -5335066 L 109087.7 -5335340 L 108509.9 -5334834 L 108258 -5334559 L 106625.9 -5333101 L 106070.8 -5332349 L 106010.3 -5332034 L 105846.5 -5331693 L 106186.9 -5330645 L 105350.3 -5329899 L 105263.8 -5328770 L 109002 -5329391 L 110387 -5328776 L 110728.5 -5328593 L 111084.4 -5328743 L 112441.2 -5328023 L 113441.9 -5326935 L 115331.8 -5327206 L 115998.8 -5326953 L 116298.1 -5326709 L 117076.7 -5325079 L 117368 -5324863 L 117549.9 -5324525 L 118174.8 -5324275 L 118305.3 -5323607 L 118610.7 -5323451 L 118985.3 -5321610 L 120293.6 -5319709 L 119880.9 -5318863 L 119987.8 -5318550 L 119372 -5317911 L 119065.4 -5317851 L 118318.9 -5317767 L 118071.7 -5317070 L 117443.1 -5316688 L 117405.5 -5315181 L 118431.7 -5313585 L 117760.1 -5312275 L 117499.3 -5311997 L 118215 -5311381 L 118524.5 -5311305 L 120522 -5312139 L 121453.3 -5313713 L 121737 -5313949 L 121923.3 -5312974 L 121935 -5312634 L 121665.8 -5311961 L 121906.7 -5310482 L 122569.5 -5310144 L 122875.8 -5309927 L 122111.3 -5308726 L 121971.7 -5308390 L 120425.4 -5307828 L 120142.7 -5307640 L 120113.3 -5307270 L 119924 -5306219 L 119567.4 -5305194 L 118039.7 -5304155 L 117301.5 -5304280 L 116937.8 -5304184 L 116795.9 -5303489 L 115556.3 -5303071 L 115424.4 -5302363 L 118440.8 -5302297 L 118807.2 -5300921 L 119939.2 -5300890 L 120316.9 -5300909 L 120406.8 -5299456 L 117013.9 -5299595 L 116674.1 -5299428 L 116806 -5299069 L 115166.3 -5298196 L 115070.6 -5297487 L 115720.7 -5296182 L 115264.7 -5294717 L 115295.9 -5293573 L 116398.4 -5292946 L 116659.7 -5292759 L 116030 -5290658 L 115807.9 -5289614 L 117087.8 -5289106 L 117049.5 -5288741 L 116373.2 -5288522 L 116409 -5288158 L 116592.2 -5287911 L 116845.5 -5287738 L 117577.2 -5286838 L 117658.3 -5285293 L 117546.9 -5284919 L 117434.4 -5284559 L 116172.7 -5283753 L 116206.6 -5281914 L 115851.9 -5281789 L 115975 -5281516 L 116442.6 -5281202 L 116360.2 -5280828 L 115733.9 -5278621 L 116175.1 -5277599 L 115999.4 -5276854 L 112545 -5276133 L 112177.3 -5276000 L 111657.1 -5275494 L 111695.6 -5274324 L 111496.7 -5273168 L 111283.2 -5272840 L 110619.8 -5272451 L 109120.4 -5272813 L 108960.4 -5273512 L 109295.5 -5274572 L 108344 -5274866 L 107979.3 -5274819 L 106931.3 -5274505 L 104765.8 -5273147 L 104449.3 -5273358 L 103507.9 -5273999 L 104005.2 -5274958 L 103753.9 -5275243 L 102245.2 -5275248 L 100929 -5275854 L 100879.9 -5275855 L 100892.6 -5275072 L 100402 -5273581 L 99482.8 -5272328 L 99123.2 -5270055 L 96078.4 -5269533 L 95282.2 -5270394 L 94498.7 -5270399 L 93114.9 -5269803 L 91996.9 -5270134 L 91330 -5271082 L 91187.2 -5272234 L 90831.5 -5272111 L 89796.1 -5271068 L 88816 -5270594 L 88404.9 -5269493 L 88288.6 -5269499 L 87763.3 -5269347 L 87053.5 -5268882 L 86556 -5269008 L 86167.3 -5269457 L 85907.5 -5270685 L 85922.8 -5271347 L 86483.6 -5272109 L 86463.5 -5272418 L 86021.7 -5273102 L 85784.7 -5274302 L 86375.8 -5274856 L 87027.2 -5274740 L 87606.1 -5276701 L 86461.6 -5276909 L 85997.8 -5277195 L 85200.1 -5277889 L 84563.9 -5278158 L 83978.1 -5278166 L 83041.1 -5277723 L 82134.2 -5276817 L 80722.7 -5276984 L 78589 -5277583 L 78265.8 -5277410 L 77871.5 -5276785 L 77333.5 -5276507 L 76444.6 -5276290 L 76048.1 -5276406 L 75889.1 -5276601 L 76278.4 -5277431 L 77422.6 -5277904 L 77447.5 -5278153 L 77483.5 -5278512 L 77738.7 -5278768 L 78812 -5279043 L 80001.7 -5279716 L 80542.5 -5280531 L 80345.5 -5280602 L 79426 -5279825 L 78557 -5279299 L 78087.4 -5279193 L 77569.9 -5279628 L 77054.6 -5279322 L 76668.1 -5279284 L 75877.9 -5279543 L 75266.8 -5279553 L 76223.5 -5278920 L 76382.4 -5278469 L 76248.5 -5278150 L 75569.1 -5277989 L 74225.6 -5278072 L 73841.9 -5278571 L 73364.6 -5278645 L 72808.8 -5279102 L 72707.1 -5279075 L 72879.6 -5278643 L 73379.3 -5278030 L 73378.6 -5278030 z M 17107.1 -5293411 L 16481.6 -5294292 L 16059.7 -5294412 L 15369.3 -5293894 L 14977.8 -5294061 L 14651.5 -5293864 L 12245.6 -5295567 L 11231.5 -5296898 L 11282.7 -5297404 L 11482.7 -5297614 L 12154.9 -5297700 L 13841.8 -5296966 L 14768.9 -5296795 L 15427.7 -5296242 L 16452.2 -5295959 L 17190.7 -5295756 L 17521.1 -5295236 L 17920.2 -5295145 L 17957.2 -5294501 L 17671 -5293942 L 17106.8 -5293411 L 17107.1 -5293411 z M 60055.1 -5284820 L 59220.7 -5284118 L 59074.2 -5284184 L 59130.6 -5284760 L 60282 -5287840 L 60926.6 -5288670 L 61148.9 -5288597 L 60910.9 -5287751 L 61496.6 -5287488 L 61877.6 -5286963 L 61440.5 -5286675 L 60940.4 -5286776 L 60639.7 -5286576 L 60048.1 -5285766 L 59929.2 -5285344 L 60055.1 -5284820 L 60055.1 -5284820 z M 63306.1 -5285694 L 63064 -5286076 L 63375 -5286633 L 63165.6 -5287089 L 63249.2 -5287413 L 64029.6 -5287564 L 64530.2 -5288230 L 64709.5 -5288237 L 64966.5 -5287495 L 65602.7 -5287227 L 65842.3 -5286819 L 65440.4 -5286374 L 64925.4 -5286579 L 64263.7 -5286595 L 63305.9 -5285694 L 63306.1 -5285694 z M 69590 -5286544 L 69585.1 -5286749 L 69971.5 -5286787 L 70249.4 -5287014 L 70252.2 -5287551 L 70383.5 -5287589 L 70729.3 -5287221 L 71226.8 -5287350 L 71350.5 -5287057 L 70400.6 -5286488 L 69590 -5286544 L 69590 -5286544 z M 50751.4 -5264068 L 48286.6 -5265953 L 47998.9 -5266391 L 48107.7 -5266713 L 48863.2 -5266867 L 49037.4 -5266568 L 50234.5 -5265783 L 50684.1 -5265686 L 51856.5 -5265926 L 50918.6 -5264972 L 51191.2 -5264381 L 51011.7 -5264118 L 50751.5 -5264068 L 50751.4 -5264068 z M 39434 -5254283 L 39201.8 -5254767 L 38699.2 -5255099 L 37642.9 -5255257 L 37183.3 -5255763 L 36743.3 -5255449 L 35952.2 -5255196 L 35755.4 -5255779 L 33891.1 -5257042 L 33666.3 -5257090 L 32556.4 -5256460 L 31947.4 -5256496 L 31470.1 -5257081 L 30238.9 -5256514 L 29675.9 -5257262 L 28991.2 -5257562 L 28708.7 -5258307 L 28605.7 -5258428 L 28160.6 -5258950 L 28315.2 -5259472 L 29243.3 -5260325 L 28937.7 -5260586 L 28485.3 -5260658 L 28303.9 -5261393 L 27995.8 -5261628 L 27905.6 -5262763 L 27602.5 -5263050 L 27514.4 -5263443 L 27762.4 -5263878 L 27689.4 -5264423 L 28818.3 -5266765 L 29202.5 -5266778 L 30207.7 -5266113 L 30869.8 -5266098 L 30922.7 -5265862 L 30700 -5265424 L 30283 -5265338 L 30136.1 -5264893 L 30204 -5264553 L 30492.1 -5264626 L 31217.8 -5265244 L 31890.1 -5265330 L 32349.8 -5265079 L 33059.3 -5264265 L 34079.8 -5263752 L 34767.2 -5263734 L 35593.8 -5264086 L 35456.3 -5262462 L 35594.9 -5261809 L 36157.9 -5261061 L 36051.4 -5260509 L 36506 -5259951 L 37476.3 -5259956 L 37885.1 -5259198 L 38726.6 -5259190 L 38745.7 -5258980 L 38799.5 -5258389 L 39208.7 -5258143 L 40841.3 -5258388 L 42369.7 -5257851 L 42392.3 -5257567 L 41625.8 -5256032 L 41168.3 -5255797 L 40824.3 -5255166 L 39434 -5254283 L 39434 -5254283 z M 55415.3 -5258917 L 55541.9 -5259671 L 55860.4 -5260049 L 56497.1 -5260035 L 57553.3 -5260390 L 57694.6 -5260017 L 57479.6 -5259400 L 57103.1 -5259207 L 56342.6 -5259258 L 55897.8 -5258894 L 55415.3 -5258917 L 55415.3 -5258917 z " |
id="path687" /> |
<path |
d="M -15931.4 -5423051 L -16610.9 -5422572 L -16879.4 -5422722 L -16955.1 -5423035 L -17731.1 -5423228 L -17777.2 -5423589 L -16966.9 -5423802 L -16602.7 -5424179 L -15560.2 -5424116 L -15104.2 -5423465 L -14131.7 -5423179 L -14089.9 -5422767 L -14289 -5422528 L -14529.9 -5422702 L -15037.4 -5422745 L -15371.5 -5422722 L -15629.2 -5422999 L -15931.5 -5423051 L -15931.4 -5423051 z M 9815.5 -5412068 L 9488.9 -5411392 L 9372.9 -5411120 L 9224.7 -5410807 L 8997.4 -5410545 L 9338.6 -5407171 L 9335.1 -5406418 L 9663.9 -5405752 L 10310.4 -5405413 L 10131.9 -5403961 L 10390.1 -5403632 L 10891.6 -5403031 L 12047.5 -5403027 L 13047.6 -5402419 L 13426.1 -5402516 L 13604.1 -5402199 L 14003.5 -5401229 L 13586.2 -5400232 L 12810.2 -5399524 L 14073.2 -5398891 L 14765 -5399145 L 16010.6 -5397299 L 17055.3 -5396868 L 15758.4 -5396012 L 12739.7 -5392955 L 12368.2 -5392825 L 11845.6 -5392362 L 11928.9 -5391273 L 11640.8 -5390606 L 12104.4 -5390077 L 11962.3 -5389741 L 12302.3 -5389671 L 12451.6 -5388993 L 13430.3 -5388707 L 13386.6 -5388352 L 14058.4 -5387554 L 15251.7 -5387206 L 15373.5 -5386867 L 15077.1 -5386618 L 12679.2 -5385438 L 11565.7 -5384372 L 11266 -5382115 L 10988.8 -5381936 L 10991.2 -5381561 L 10579.3 -5380607 L 10886.9 -5380360 L 14417.3 -5379021 L 14435.1 -5378233 L 13511.2 -5375717 L 13961.8 -5375162 L 14168.9 -5372148 L 14808.5 -5371826 L 15709.5 -5372524 L 16223 -5372458 L 16512.6 -5372209 L 15772 -5372105 L 14802.5 -5370506 L 14192.1 -5370237 L 13843.2 -5370377 L 13727.7 -5369639 L 15366.8 -5368773 L 15851.5 -5368188 L 16231.7 -5368217 L 15534.7 -5366991 L 15394.7 -5365915 L 15579.9 -5365595 L 15661.7 -5365235 L 14267.1 -5365127 L 14291.6 -5364740 L 13900.5 -5364077 L 13185.9 -5363837 L 12885.4 -5362723 L 12886.9 -5362336 L 13814.1 -5360229 L 15151.5 -5359524 L 15184.6 -5358763 L 15243.8 -5358027 L 13530.9 -5358501 L 11746.9 -5358257 L 11842.6 -5357768 L 11463.4 -5357753 L 9764.9 -5356948 L 7549.1 -5356483 L 7196.8 -5356376 L 4991 -5355052 L 3586.9 -5354643 L 1774.1 -5354863 L 1729.5 -5354484 L 417.4 -5353834 L 436.6 -5353070 L -559 -5351969 L -338.9 -5351342 L -1312.8 -5350752 L -1202.7 -5349607 L -1509.5 -5348898 L -1135.3 -5348805 L 363.9 -5348944 L 1288.3 -5348325 L 984 -5348073 L 549.9 -5347415 L 398.4 -5345566 L 531.5 -5345194 L 2440.5 -5343911 L 3104.6 -5339662 L 3882.8 -5338299 L 4285 -5335995 L 5678.1 -5335540 L 6368.5 -5335736 L 7371.1 -5336213 L 8120.3 -5336055 L 8689.7 -5335632 L 9302.1 -5336098 L 10823.9 -5336112 L 11408.3 -5335607 L 12510.5 -5335332 L 13404.1 -5334110 L 14542.5 -5333944 L 14908.7 -5334063 L 15724.1 -5332887 L 15976.3 -5331066 L 16629 -5330726 L 16816.3 -5330406 L 17137.4 -5330608 L 17428.2 -5331707 L 18919.9 -5331866 L 21177.8 -5333154 L 21461 -5332449 L 21835.1 -5332388 L 21932.7 -5331676 L 22506.7 -5330883 L 22450.2 -5330528 L 21788.4 -5329590 L 22614.3 -5327843 L 22271.7 -5327138 L 21164.2 -5326874 L 20672.7 -5325514 L 21163.4 -5323293 L 20898.2 -5321413 L 21261.8 -5320791 L 20492.6 -5320869 L 19607.5 -5321546 L 17398.5 -5320916 L 17350.3 -5319477 L 16588.2 -5318216 L 16210.1 -5318280 L 15447.8 -5318221 L 14373.9 -5317132 L 13989.7 -5317139 L 12704.4 -5317978 L 12027.9 -5318874 L 12058.6 -5319383 L 11999 -5319360 L 11801.1 -5319112 L 11494.4 -5318727 L 11095 -5318227 L 10743 -5317507 L 10993.6 -5316118 L 10689.9 -5315626 L 11409.7 -5315190 L 11638.9 -5315048 L 11212.3 -5313608 L 10658.2 -5313178 L 10910.1 -5312641 L 10562.6 -5311730 L 10558.5 -5310681 L 10165.9 -5310081 L 9238.9 -5310252 L 8747 -5310686 L 8156.1 -5310900 L 7294.2 -5310706 L 6705.9 -5310828 L 6569.3 -5310857 L 5852.5 -5311339 L 4806.4 -5311343 L 4021.1 -5311653 L 2927.1 -5311688 L 2404.6 -5312074 L 2001.2 -5312627 L 1251 -5312780 L 584.8 -5313257 L 144.1 -5312688 L -1746.3 -5313930 L -2271 -5314546 L -2879.4 -5314838 L -3078.1 -5315396 L -2842.2 -5315960 L -1709.1 -5316562 L -1583.9 -5316516 L -1413.7 -5316454 L -1173.5 -5316558 L -1117 -5317115 L 796.6 -5317611 L 1254 -5317590 L 1937.8 -5317034 L 2135.2 -5317219 L 1098.2 -5318067 L 620.7 -5318141 L -583.2 -5317458 L -762.2 -5317591 L -770.8 -5318513 L -1046.6 -5318311 L -1250.4 -5317308 L -1802 -5316904 L -2555.2 -5316776 L -3499.1 -5316028 L -4019.7 -5315927 L -4309.7 -5316341 L -5091.7 -5319951 L -5603.6 -5319185 L -4983.6 -5318252 L -4941.2 -5317914 L -5366.9 -5317241 L -4825.5 -5316994 L -4585.1 -5316394 L -4629.6 -5315452 L -4786.9 -5315161 L -5469.8 -5314719 L -6670.1 -5314713 L -7244.5 -5314336 L -8125.7 -5314708 L -8881.7 -5314554 L -9863.1 -5315448 L -10466.9 -5315535 L -11043.4 -5315389 L -11975.2 -5315766 L -12417.7 -5315683 L -13088.4 -5315112 L -13347.9 -5315573 L -13150 -5316014 L -13600.3 -5317109 L -14352 -5318080 L -14525.5 -5318304 L -14930 -5319599 L -15999.1 -5320885 L -15684.5 -5321467 L -15014.2 -5321783 L -15243.1 -5322293 L -14501.2 -5323061 L -14726 -5323110 L -15788.6 -5322450 L -16296.5 -5322477 L -17026.2 -5322833 L -17048.4 -5323117 L -15976.9 -5323110 L -15728.3 -5323545 L -16776.1 -5324036 L -16874.1 -5324327 L -17799.1 -5324268 L -18220.3 -5324644 L -18233.3 -5325771 L -18848 -5326756 L -18694.8 -5327508 L -19080.9 -5327726 L -19041.7 -5328362 L -19715.6 -5327510 L -20769.1 -5327694 L -20634.5 -5328013 L -20770 -5328437 L -21325.3 -5328749 L -21395 -5328065 L -21870.4 -5327428 L -22292.6 -5328081 L -21694.6 -5326126 L -21754.1 -5325651 L -21966.9 -5323952 L -21548.8 -5323295 L -21945.8 -5323157 L -22592.5 -5323325 L -23092.1 -5323683 L -23549.5 -5323704 L -23777.5 -5323472 L -24085.9 -5323452 L -24325.1 -5323860 L -24874.3 -5323482 L -25182.7 -5323462 L -25576.6 -5323605 L -25952.1 -5324181 L -26155.3 -5323689 L -26055.8 -5322912 L -26261 -5322651 L -28149.5 -5323663 L -29161.7 -5324502 L -28125.2 -5324343 L -27918.9 -5324368 L -27523.3 -5324300 L -27920.3 -5324683 L -28423.7 -5325500 L -28668.7 -5325585 L -28573.7 -5326266 L -28727.6 -5326670 L -29175.2 -5325124 L -29966.8 -5324873 L -30739.3 -5325310 L -31341.6 -5326165 L -31580.2 -5326830 L -31433.2 -5327020 L -31076.9 -5327008 L -30790.6 -5327312 L -30966.9 -5327586 L -31806 -5327621 L -32232.4 -5327946 L -31533.5 -5328540 L -32035 -5328665 L -32230.8 -5328714 L -32569.6 -5328646 L -33230.1 -5329430 L -33202.5 -5330452 L -32632.8 -5332031 L -31779.7 -5332635 L -31039.2 -5332636 L -30147.4 -5333619 L -29258.4 -5333324 L -28334.2 -5334125 L -28204.2 -5334649 L -28397.9 -5335002 L -29499.1 -5334218 L -29911.1 -5334184 L -30072.5 -5334354 L -29613.3 -5335100 L -29350.6 -5336174 L -29477.7 -5336929 L -29906.1 -5337485 L -30474.3 -5337671 L -30722.3 -5337492 L -30312.7 -5336503 L -30661.1 -5336590 L -30856.1 -5336431 L -30828.6 -5335199 L -31016.9 -5334605 L -30849.6 -5333743 L -30969.3 -5333320 L -31331.4 -5333024 L -32143.2 -5332826 L -32359 -5332656 L -32948.4 -5332192 L -33567.5 -5331129 L -33718.9 -5330146 L -33594.3 -5329366 L -33997.1 -5328921 L -34644.5 -5328833 L -35081.3 -5329057 L -35653 -5329960 L -35790.3 -5329616 L -35450.6 -5328942 L -34928.2 -5328555 L -34099.4 -5328419 L -33343.4 -5328572 L -31782.2 -5325852 L -31674.5 -5325406 L -31925.7 -5324945 L -32592.6 -5325167 L -33282.7 -5325161 L -34968.9 -5323901 L -35572.5 -5322989 L -36015.1 -5322907 L -35458.3 -5324360 L -35573.2 -5324986 L -35775.4 -5325007 L -35861.9 -5325912 L -36093.9 -5326140 L -36039 -5326928 L -36313.3 -5327494 L -36904.3 -5327708 L -36979.3 -5326973 L -37414.1 -5326967 L -37624.6 -5326655 L -37479.3 -5326077 L -37908.6 -5325123 L -38043.4 -5324804 L -37314.7 -5323936 L -37361.3 -5323480 L -36760.5 -5323111 L -37292.4 -5322653 L -37153.2 -5322605 L -36133 -5322253 L -35759.6 -5321908 L -35640.1 -5321077 L -36163.2 -5319952 L -36953 -5319470 L -37050.5 -5318763 L -37334.3 -5318485 L -38358.8 -5318205 L -39058.6 -5318354 L -39399.5 -5318700 L -39681.5 -5320261 L -39901.2 -5320360 L -40306.7 -5319890 L -39882.7 -5319539 L -39604.2 -5318710 L -39570.2 -5318539 L -39946.4 -5318163 L -41385.2 -5318367 L -41910.2 -5318441 L -43478.4 -5318089 L -44873.2 -5318437 L -45429.9 -5318238 L -45728 -5318320 L -46229.9 -5318909 L -47812 -5319174 L -49573.1 -5319687 L -50492 -5319192 L -51083.2 -5319407 L -51558.9 -5319250 L -51735.3 -5319525 L -51485.9 -5320216 L -51509.3 -5320986 L -51819.9 -5321197 L -52138.9 -5322075 L -51351.6 -5322532 L -50114.9 -5322636 L -49788.3 -5322833 L -49625.7 -5323174 L -49930.5 -5323692 L -49474.9 -5323902 L -49312.3 -5324243 L -49857.5 -5328908 L -50366.5 -5330676 L -51474.5 -5333542 L -51861.1 -5334542 L -52850.7 -5336103 L -53375.6 -5337463 L -54606.7 -5339407 L -55391.6 -5339974 L -56213.2 -5340929 L -57110.1 -5341149 L -58475.9 -5342775 L -59297.6 -5343579 L -59328.2 -5343895 L -60723.8 -5344624 L -61582.3 -5344746 L -62149.2 -5345304 L -61834.3 -5346324 L -61738.7 -5347509 L -62198 -5346864 L -62088 -5346345 L -62334.7 -5345852 L -62517.1 -5345488 L -63198 -5345595 L -63730.8 -5345334 L -63919 -5345222 L -63859.7 -5344706 L -64574.4 -5344409 L -65593.7 -5345055 L -66509.4 -5345412 L -66477.8 -5345791 L -66890.3 -5346362 L -68410.8 -5346820 L -68880.4 -5347318 L -69147.1 -5348106 L -69802.6 -5347599 L -70663.2 -5347390 L -71458.6 -5347966 L -71896.3 -5347926 L -73112.1 -5348319 L -73489 -5348441 L -73787.1 -5348236 L -74880.7 -5349221 L -75906.5 -5349178 L -76602.7 -5350027 L -76325.7 -5350285 L -75088.3 -5350105 L -74272 -5350395 L -74200.2 -5350950 L -74538.7 -5351182 L -74526.1 -5351641 L -74720.7 -5351759 L -74617.2 -5352082 L -74849.9 -5352356 L -74792.9 -5352735 L -74549.6 -5352893 L -74052.5 -5352418 L -73585 -5352507 L -73233.9 -5352120 L -72732.6 -5352308 L -71599 -5352112 L -71298.5 -5352798 L -71157.1 -5353121 L -70945.6 -5353206 L -70841.9 -5352916 L -70522.6 -5352762 L -69951.5 -5352868 L -69496.8 -5352498 L -68441.5 -5352589 L -68566.3 -5352931 L -68409.8 -5352969 L -67959.3 -5352549 L -66633.4 -5353128 L -65618.3 -5353043 L -65518.9 -5353316 L -65138.2 -5353590 L -64668.8 -5353704 L -63875.7 -5353714 L -62841.5 -5352939 L -62247.4 -5353017 L -62300.2 -5353303 L -61983 -5353429 L -61706 -5353993 L -61312.7 -5354113 L -61006 -5353807 L -60123.5 -5353917 L -58914.6 -5354066 L -58633.4 -5353762 L -57789.6 -5353462 L -56738.7 -5354420 L -56237.5 -5354302 L -55880.1 -5354604 L -55313.5 -5354353 L -54685.4 -5354530 L -53994 -5354243 L -52224.1 -5355243 L -51691.2 -5354893 L -51168.9 -5355028 L -50672 -5354859 L -49274.4 -5355380 L -48525.8 -5355164 L -47766.8 -5354463 L -46964.5 -5354185 L -46518.6 -5353440 L -46558.6 -5353810 L -45818 -5353913 L -45608.2 -5353084 L -44601.8 -5352592 L -44193.8 -5352583 L -43853.4 -5352988 L -43422 -5353564 L -42838.5 -5353822 L -42248.3 -5355686 L -42525.3 -5356040 L -42565.4 -5356478 L -41838 -5356927 L -41484.8 -5357484 L -41285.9 -5358335 L -41435.9 -5359291 L -41480.2 -5359678 L -41793.4 -5359734 L -42285.8 -5359822 L -42442.2 -5360090 L -42926.4 -5360105 L -42892.5 -5360816 L -43082.7 -5360985 L -42981.1 -5361283 L -42704.1 -5361234 L -42585.7 -5361428 L -42431.2 -5362053 L -43048.1 -5364146 L -43665.4 -5364402 L -43866.1 -5365056 L -44942.4 -5365325 L -45124.2 -5365595 L -47054.8 -5365731 L -48078.2 -5366021 L -47775.8 -5366276 L -47955.4 -5366878 L -48338 -5367191 L -49099.5 -5367359 L -49266.3 -5367396 L -50919.9 -5368095 L -51556.3 -5368735 L -52074.4 -5368651 L -52336.5 -5368877 L -51898.7 -5369224 L -51860.6 -5369680 L -53869.6 -5369796 L -54271.4 -5370187 L -54802.2 -5370257 L -55206.2 -5370010 L -56650.7 -5370156 L -56919.2 -5370000 L -57323.3 -5369447 L -57496.7 -5368901 L -56775.6 -5368662 L -57067.6 -5368227 L -58049 -5367798 L -58190.5 -5367554 L -58556.6 -5366922 L -58465.7 -5366481 L -59045.3 -5365968 L -59020 -5365353 L -59244.2 -5365423 L -60633.8 -5364391 L -60892 -5363136 L -61725.2 -5362951 L -62192.5 -5364087 L -61532.6 -5364338 L -61431 -5364636 L -61676.3 -5365065 L -61331.6 -5365214 L -61549.4 -5365667 L -61331.5 -5365827 L -61231.9 -5367631 L -61724.6 -5368769 L -61647.4 -5369153 L -61593.3 -5369421 L -61802.7 -5369669 L -61694.7 -5370043 L -61980.3 -5370296 L -62388.5 -5370304 L -62422.4 -5370511 L -62225.6 -5370725 L -61643.9 -5370650 L -61235.7 -5370948 L -60241.5 -5371223 L -60154.7 -5371649 L -60457 -5372619 L -61169.6 -5373265 L -62045.3 -5372879 L -62527.6 -5372919 L -62967.6 -5372548 L -63428.7 -5372841 L -63925.8 -5372704 L -64094.9 -5372821 L -63889.7 -5373135 L -64401.5 -5373433 L -64549.5 -5373803 L -65277.1 -5373966 L -65539.4 -5373885 L -65778.5 -5373165 L -65909.6 -5373125 L -66125.3 -5373296 L -66062.8 -5373634 L -66032.2 -5373799 L -65300.2 -5374912 L -65302.2 -5375499 L -65532.7 -5375799 L -66078.4 -5375998 L -66004.3 -5376272 L -65657.4 -5376141 L -65183.6 -5376306 L -64906.6 -5375951 L -64491.9 -5376631 L -64132.3 -5376652 L -63838.4 -5376193 L -63307.5 -5375817 L -63703.1 -5375672 L -63574.1 -5375380 L -63146.8 -5375293 L -62431.9 -5375591 L -62201.3 -5375903 L -61784.6 -5375996 L -61444 -5376401 L -61393 -5377010 L -61598 -5377614 L -61923.7 -5377998 L -61574.5 -5378505 L -61792.3 -5378957 L -61625.1 -5379428 L -61839.1 -5379681 L -62229.8 -5380142 L -61956.9 -5380349 L -61880.7 -5380649 L -61282 -5380777 L -61245.9 -5381208 L -60598.6 -5381307 L -59716.3 -5382076 L -58990.7 -5382193 L -58366.7 -5382014 L -59321.1 -5380690 L -59780.6 -5378865 L -60428.1 -5378154 L -60504.4 -5377548 L -59679.7 -5376713 L -59307.4 -5376886 L -59531.8 -5376344 L -59206.2 -5375959 L -58538.9 -5376250 L -58224.7 -5376387 L -58044.9 -5376704 L -58508 -5376973 L -58412.8 -5377194 L -58188.6 -5377125 L -57735.9 -5377342 L -57693.8 -5376624 L -57260.2 -5376307 L -57154.5 -5376043 L -57262.6 -5375669 L -57649.6 -5375319 L -57554.5 -5375234 L -56723.3 -5375394 L -56321.5 -5375310 L -53768.5 -5375887 L -53637.3 -5376233 L -50985.4 -5375858 L -50558 -5376077 L -50429.1 -5375786 L -50714.8 -5375427 L -50630.2 -5375216 L -50346.8 -5375243 L -50178.9 -5374768 L -50160.8 -5374718 L -50560.6 -5374215 L -50220.2 -5374008 L -49905.1 -5374109 L -48536.9 -5373663 L -46572.3 -5373932 L -46341.6 -5374245 L -45305.3 -5374719 L -44580 -5374531 L -43135.4 -5375303 L -42116 -5375575 L -40316.5 -5375398 L -39620.9 -5375162 L -39229.9 -5374644 L -39272.4 -5374137 L -39418.4 -5373920 L -39630.4 -5373951 L -40064.7 -5373545 L -39524.3 -5373265 L -39072.2 -5373323 L -38801.1 -5373358 L -37430.5 -5374162 L -37523.4 -5374577 L -37210.4 -5374653 L -36561.3 -5374471 L -36341.6 -5374045 L -35303.3 -5374238 L -34605.4 -5374639 L -34184.7 -5374476 L -33017.4 -5374684 L -35379 -5375163 L -36307.3 -5375062 L -36941.5 -5375421 L -37152.7 -5375950 L -37103.8 -5376226 L -35799 -5376857 L -35989.1 -5377026 L -36090.8 -5376999 L -37452.5 -5376638 L -37791.4 -5375646 L -37947.8 -5375608 L -38398 -5376335 L -39027.9 -5376745 L -39710.9 -5376828 L -40085 -5377242 L -39670.4 -5377615 L -37910.7 -5378182 L -37933.8 -5378515 L -38210.9 -5378564 L -38301.9 -5378393 L -39082.3 -5378229 L -39255.8 -5377988 L -39714.7 -5378001 L -40177.6 -5378270 L -40365.9 -5378158 L -40340.6 -5377850 L -40643.1 -5377594 L -40776.5 -5377223 L -41442.7 -5377202 L -42642.7 -5377491 L -44047.8 -5377828 L -44102.7 -5378089 L -43345.5 -5378280 L -43294.7 -5378582 L -42791.4 -5378489 L -42575.6 -5378624 L -42664.4 -5378784 L -42869.6 -5378776 L -42888.4 -5379160 L -42575.3 -5379236 L -42213.7 -5378976 L -41594 -5379358 L -41858.2 -5379559 L -42604.7 -5379494 L -42496.7 -5379868 L -42194.4 -5379817 L -41788.3 -5380089 L -41016.4 -5380152 L -39673.3 -5380626 L -39686 -5380780 L -40506.2 -5381359 L -38687.4 -5381717 L -38188 -5382185 L -39679.2 -5381774 L -40093.5 -5382014 L -40349.6 -5381703 L -40730.1 -5382041 L -41472.3 -5382027 L -41428.1 -5381641 L -41618.7 -5381197 L -41145.1 -5381055 L -41214.9 -5380832 L -42473.3 -5380759 L -43160.8 -5380485 L -43408.1 -5380582 L -43420.4 -5381348 L -43151.8 -5381505 L -42463.9 -5382697 L -42656.9 -5382713 L -42717.6 -5382718 L -43506.8 -5381841 L -44219.7 -5381568 L -44327.7 -5381195 L -44573.2 -5381011 L -44795.2 -5381107 L -45194.9 -5380910 L -45260.5 -5381043 L -45201.1 -5381447 L -43995.2 -5382417 L -44181.1 -5382637 L -46218.4 -5381201 L -46347.9 -5380267 L -46567.9 -5380081 L -46561.6 -5379851 L -46739.3 -5379560 L -47215.3 -5379370 L -49006.6 -5379341 L -49875.7 -5379644 L -49366.8 -5380123 L -48432.8 -5381003 L -48265.8 -5380861 L -47999.3 -5380992 L -48049.9 -5381303 L -49065.1 -5381082 L -52210.6 -5379840 L -52862 -5379996 L -52299.3 -5380306 L -52068.6 -5380619 L -52284.2 -5381097 L -50957.8 -5381674 L -51623.9 -5381960 L -51678.7 -5382526 L -50959.3 -5383180 L -50770.7 -5383905 L -50046.5 -5384186 L -49528.9 -5384387 L -48754.3 -5385700 L -45665.8 -5386870 L -44785.6 -5387613 L -43867.6 -5387587 L -42443.9 -5388412 L -41333.3 -5388854 L -40861.4 -5389300 L -40114.7 -5389670 L -40139.8 -5389979 L -39530.3 -5390540 L -38885.2 -5390614 L -38578.4 -5390919 L -38749.6 -5391011 L -39853.8 -5390644 L -40452.8 -5389903 L -41102.2 -5389779 L -41478.9 -5389249 L -41526.5 -5389249 L -42092.3 -5389250 L -43067.5 -5388898 L -43930.6 -5388358 L -44922.5 -5388416 L -45582.6 -5388165 L -45697 -5387715 L -46031.1 -5387692 L -46077.5 -5388053 L -46817.1 -5389289 L -47026.6 -5389230 L -46466.9 -5387371 L -47368 -5387294 L -48267.3 -5386629 L -48641.6 -5386737 L -49305.5 -5387354 L -49956.8 -5387511 L -50739.6 -5387015 L -51073.6 -5386088 L -51844.3 -5385921 L -52718.3 -5386696 L -53126.3 -5386324 L -53744.4 -5386170 L -53767.9 -5385868 L -55518 -5385449 L -56012 -5385917 L -57619.2 -5384835 L -58239.2 -5384147 L -58713.1 -5383983 L -59260.7 -5384463 L -59620.3 -5384442 L -60223.3 -5383956 L -60627.3 -5384015 L -60781.8 -5383697 L -61211.2 -5383452 L -62068 -5383294 L -64177.4 -5382220 L -64534.8 -5382224 L -64504.5 -5382404 L -64484 -5382526 L -64873.2 -5382457 L -65550.1 -5382616 L -65909.7 -5383207 L -66400.4 -5383453 L -66912.4 -5383444 L -67593.3 -5384165 L -68771.6 -5384748 L -70034.6 -5384624 L -70603.7 -5384238 L -70716 -5383507 L -70460.2 -5382899 L -71215.4 -5382732 L -71200.8 -5382297 L -72561.1 -5382232 L -73235.9 -5382722 L -74907.4 -5382301 L -75138.2 -5382374 L -76003.3 -5382647 L -75918.6 -5383355 L -76134.4 -5383526 L -75865.6 -5383989 L -75848.5 -5384804 L -76440.8 -5385364 L -76197.5 -5385523 L -76267.3 -5385911 L -75823.4 -5386208 L -74671.6 -5385883 L -74348 -5385979 L -74441.4 -5386336 L -74965.5 -5386430 L -75592.6 -5386237 L -75943.2 -5386399 L -76680.4 -5386261 L -76583.8 -5386637 L -76705 -5386983 L -76430 -5387023 L -75808 -5386511 L -75154.2 -5386686 L -74809.2 -5387142 L -74745.5 -5387903 L -74969.6 -5388279 L -74779.2 -5388416 L -75386.4 -5388799 L -75599.9 -5389608 L -75275.7 -5391036 L -75387.9 -5391224 L -75959.2 -5391119 L -76090.2 -5391692 L -76693.1 -5392125 L -76324.8 -5392554 L -76341.5 -5392964 L -76034.6 -5393270 L -75975.3 -5393673 L -75645.1 -5393952 L -75846 -5394301 L -75776.1 -5394525 L -75090.2 -5395386 L -75263.4 -5396065 L -74764 -5396227 L -74376.6 -5396884 L -74393.3 -5397294 L -73510.7 -5397756 L -73424.2 -5397264 L -72960.7 -5397608 L -72954.4 -5397977 L -73243.5 -5398315 L -73491.6 -5397984 L -73876.5 -5398578 L -73810.6 -5399058 L -73941.7 -5399324 L -74426.2 -5399645 L -74495.8 -5400034 L -74191.1 -5400009 L -74454.2 -5400998 L -74579.9 -5401471 L -74173.5 -5401743 L -74222 -5402386 L -73697.1 -5402546 L -73517.1 -5402863 L -73737.2 -5402983 L -73743.4 -5403214 L -73148.6 -5403598 L -72902.9 -5404088 L -73099.3 -5404794 L -72491.9 -5405024 L -72310 -5404753 L -72153.4 -5404791 L -72034.2 -5406211 L -71018.2 -5406738 L -70342.8 -5407473 L -69511.1 -5407633 L -69445.7 -5407193 L -69172.8 -5407094 L -68906 -5407225 L -68758.1 -5406855 L -68514.9 -5406707 L -68152.8 -5407366 L -68518.6 -5407575 L -68241.3 -5407833 L -68282.4 -5408009 L -68429.2 -5408640 L -67563.8 -5408593 L -67007.1 -5408827 L -66992.6 -5408392 L -66673.1 -5408237 L -66124.9 -5408676 L -66037.8 -5409103 L -65877 -5409191 L -65720.6 -5408923 L -65160 -5408595 L -64191 -5408565 L -63837.5 -5408816 L -63240.8 -5408919 L -62870.2 -5409373 L -62709.6 -5409156 L -62747.9 -5408699 L -61979.8 -5408711 L -61827.7 -5408392 L -60729.8 -5408070 L -60360.5 -5406686 L -60584.9 -5406449 L -60555.4 -5406192 L -59700.5 -5406324 L -59701.5 -5406666 L -59834 -5407062 L -60156.8 -5407588 L -60154.4 -5407919 L -60769.1 -5408438 L -61495.4 -5408696 L -61524.9 -5408954 L -60985.1 -5409291 L -60735.2 -5409832 L -60781.4 -5410193 L -60943.7 -5410252 L -61242 -5409872 L -61288.7 -5410306 L -60838.2 -5410734 L -61206 -5411225 L -60742.4 -5411569 L -60826.6 -5412086 L -60479.5 -5412261 L -59549 -5411468 L -60031.6 -5411202 L -60252 -5410710 L -59928.4 -5410606 L -58066.3 -5410858 L -57639.2 -5410465 L -56703.9 -5410642 L -55478.8 -5410163 L -55717.9 -5410501 L -57003.6 -5411637 L -57344.4 -5411538 L -57539 -5411657 L -57198 -5412062 L -57272.7 -5412249 L -57324.8 -5412379 L -57851.7 -5412194 L -58143.6 -5412371 L -57895.6 -5412887 L -58162.1 -5413062 L -58166.1 -5413318 L -57790 -5413660 L -56985.3 -5413678 L -56807.4 -5413969 L -56219.4 -5413665 L -56134.7 -5413760 L -56434.4 -5414755 L -56131.6 -5415010 L -55892.5 -5415118 L -55909.9 -5414609 L -55355.8 -5414205 L -54890.3 -5414267 L -54682.6 -5414607 L -54242.5 -5414673 L -53631.4 -5414340 L -53972.3 -5413935 L -53763.3 -5413382 L -53092.8 -5413146 L -52307.7 -5413361 L -51118.9 -5413210 L -50515.4 -5413373 L -49967.7 -5413522 L -48985.3 -5414562 L -48562 -5414731 L -48295.6 -5414555 L -48393.3 -5414002 L -48247.4 -5413913 L -47883.5 -5413984 L -47756 -5414586 L -47599.4 -5414624 L -47309.7 -5414421 L -46000.4 -5414183 L -46031.9 -5414415 L -46742.4 -5414781 L -46989.6 -5415185 L -47586 -5415389 L -47794.7 -5416249 L -47659.2 -5416339 L -46809.2 -5415808 L -46483.2 -5416036 L -45463.6 -5416001 L -43965.3 -5416487 L -43566.3 -5416759 L -43531.4 -5416783 L -43425.3 -5417131 L -42779.9 -5417204 L -42005.3 -5417598 L -41639 -5418001 L -40868.9 -5418039 L -40143.5 -5417849 L -39739.8 -5417484 L -40004.9 -5416766 L -39287.8 -5416782 L -39135.1 -5417076 L -38701.5 -5417064 L -38488.4 -5416561 L -37644.6 -5416261 L -37598.4 -5415899 L -37903.3 -5415619 L -37814.9 -5415152 L -38392.8 -5414665 L -39099.6 -5414469 L -39302.9 -5414180 L -39248.4 -5413614 L -38618.7 -5412897 L -38092.1 -5412776 L -37577.8 -5413116 L -37784.9 -5413388 L -37636.7 -5413631 L -36595.8 -5413849 L -36009.3 -5414438 L -35539.6 -5414552 L -33352.5 -5414418 L -32931.8 -5414255 L -32561.5 -5414403 L -31804.7 -5413981 L -30321.8 -5414290 L -30376.5 -5414550 L -31218 -5414876 L -31581.9 -5414805 L -31979.4 -5414940 L -31636.3 -5415371 L -31517.2 -5415726 L -31328.6 -5416289 L -30907.6 -5416432 L -29252 -5417875 L -28128.9 -5417857 L -26609.8 -5418290 L -25349.1 -5418388 L -24974.5 -5418585 L -24253.5 -5418346 L -23407.5 -5418377 L -22458.1 -5418118 L -22427 -5417579 L -22027 -5417775 L -21280.4 -5417840 L -21173.2 -5417295 L -20581.7 -5416734 L -20387.6 -5416309 L -20180.3 -5416343 L -20439.5 -5417207 L -19697.5 -5416915 L -19384.4 -5416990 L -19769 -5417278 L -19745.1 -5417863 L -19450.2 -5418629 L -18901.9 -5419068 L -18443.4 -5418748 L -18019.9 -5419223 L -18006.7 -5419681 L -16532.7 -5419582 L -16067.1 -5419951 L -16067.5 -5420257 L -15630 -5421115 L -15434.6 -5421039 L -15530.3 -5420263 L -15338.7 -5419507 L -14667.9 -5419883 L -14377.7 -5420293 L -14334.4 -5421106 L -13919.8 -5421173 L -13843.2 -5421086 L -13406.5 -5420593 L -12885.8 -5421009 L -12757.2 -5420717 L -12836.2 -5420086 L -13275.5 -5418821 L -13452.4 -5417637 L -12892.4 -5417309 L -12943.5 -5417007 L -13191.2 -5416798 L -13179.7 -5415726 L -13451 -5415239 L -13366.7 -5415027 L -12882.1 -5415318 L -12516.5 -5415108 L -12224.6 -5415237 L -12080.9 -5415123 L -12248.8 -5414346 L -12151.9 -5413711 L -11764.5 -5413333 L -11321.8 -5413221 L -10968.7 -5413166 L -10520.2 -5413332 L -9935.1 -5414507 L -10000.2 -5414946 L -9171.5 -5414774 L -8848.4 -5414364 L -8194.8 -5414539 L -7757.4 -5414272 L -7833.9 -5413973 L -8604 -5413629 L -8744.1 -5413182 L -8565.4 -5412274 L -7843.6 -5411141 L -5891.1 -5410057 L -5620.9 -5409626 L -5491.2 -5408442 L -5279.3 -5408832 L -4873.1 -5409104 L -3665.7 -5409181 L -4703.4 -5409600 L -4711.3 -5410111 L -5297 -5411946 L -5310.1 -5413300 L -5634.6 -5414297 L -5086.8 -5414429 L -4935 -5414110 L -5003.6 -5413299 L -4646.5 -5412989 L -4458.2 -5413100 L -4332 -5414289 L -4444.8 -5415370 L -4894.6 -5415791 L -4170.3 -5416801 L -3925.1 -5416678 L -3567.4 -5416980 L -3604.5 -5417748 L -2931.2 -5418457 L -2608.2 -5418047 L -2575 -5417533 L -2237 -5417300 L -2046.5 -5417437 L -1782.6 -5419015 L -1440.3 -5418560 L -1026.1 -5418321 L -470.1 -5418248 L 160.8 -5417251 L 710.3 -5417102 L 1389.2 -5417274 L 2087.5 -5417674 L 2358 -5417549 L 2571.6 -5417659 L 3338.7 -5417364 L 4055.5 -5417380 L 4744.3 -5417067 L 5253.8 -5417049 L 5439.5 -5416829 L 5396.6 -5416323 L 5952.2 -5415904 L 6885.7 -5415201 L 7283.5 -5415372 L 8098.7 -5414741 L 8936.3 -5414977 L 9937.2 -5415632 L 10342.7 -5415291 L 10835.5 -5415377 L 10930.5 -5415292 L 10083.6 -5414343 L 10007.1 -5414044 L 10754.4 -5413215 L 10777.2 -5412882 L 9814.2 -5412071 L 9815.5 -5412068 z M -9807.5 -5415693 L -10070.1 -5417119 L -9809.9 -5417174 L -9583.1 -5415930 L -9807.5 -5415693 L -9807.5 -5415693 z M -98946.6 -5397252 L -99776.3 -5397117 L -100316 -5397392 L -99594.3 -5397460 L -99727.5 -5397701 L -99613.2 -5397844 L -98993 -5397920 L -98294.4 -5398322 L -98283.8 -5398755 L -98550.5 -5398930 L -98698.6 -5399300 L -99335.7 -5399022 L -100150.7 -5399064 L -100713.8 -5398754 L -101780.7 -5398843 L -101708.7 -5399092 L -101283.2 -5399287 L -101113.8 -5399783 L -100864 -5400017 L -99693.4 -5400252 L -99391.2 -5400269 L -99153.6 -5400283 L -99090 -5400431 L -99305.9 -5400602 L -99225.4 -5400953 L -98186.1 -5401147 L -97961.6 -5401384 L -97707.7 -5401056 L -97284.3 -5400919 L -96401.5 -5401381 L -96655.5 -5401709 L -96304.1 -5401935 L -95753.9 -5401174 L -95455.4 -5401072 L -95112.5 -5401197 L -94848 -5400996 L -95512.9 -5400081 L -95172.1 -5399874 L -95177.3 -5399597 L -94092.7 -5399630 L -93986.8 -5399366 L -94158.3 -5399150 L -94577.4 -5399032 L -94975.3 -5399167 L -95686.6 -5398614 L -96012.6 -5398079 L -96571.4 -5398433 L -96983.4 -5398241 L -97130.2 -5398173 L -97434.9 -5398505 L -97966.4 -5397655 L -98343.1 -5397432 L -98641.6 -5397533 L -98946.4 -5397252 L -98946.6 -5397252 z M -88976.9 -5390776 L -89171.6 -5390894 L -89438.1 -5391070 L -89459.2 -5391736 L -88953.4 -5391974 L -88625.5 -5391002 L -88976.9 -5390776 z M -82114.9 -5384718 L -82488.7 -5384681 L -82675.5 -5384804 L -82660.4 -5385000 L -82296.6 -5385190 L -81992.5 -5385734 L -81326.5 -5386162 L -81069.6 -5386099 L -81049.9 -5385792 L -81400.2 -5385775 L -81909.4 -5385400 L -82115.1 -5384717 L -82114.9 -5384718 z M -57426.7 -5377366 L -57629.8 -5377383 L -56973.7 -5378502 L -56432.2 -5378558 L -56358.2 -5378220 L -57426.7 -5377365 L -57426.7 -5377366 z M -85329.5 -5350190 L -85702 -5350936 L -86717.4 -5351020 L -86351.6 -5351423 L -86042.7 -5351449 L -85545.4 -5350974 L -85044 -5350856 L -85022.7 -5350497 L -85329.4 -5350190 L -85329.5 -5350190 z M -36694.3 -5324715 L -36800.7 -5324158 L -37294 -5325136 L -37328 -5325805 L -37009.2 -5325926 L -36694.3 -5324715 L -36694.3 -5324715 z " |
id="path688" /> |
<path |
d="M 130112.2 -5391627 L 130418.3 -5391626 L 131145 -5390876 L 131221.9 -5390121 L 131693.7 -5389836 L 131611.4 -5389292 L 131807.8 -5389289 L 132564.4 -5389277 L 132694.7 -5389011 L 132637.7 -5388647 L 132549.2 -5387939 L 132327.2 -5387716 L 131600.3 -5386938 L 131563.3 -5386230 L 131864.4 -5385872 L 131509.2 -5385597 L 131504.4 -5384350 L 131133.9 -5384261 L 130801 -5384180 L 130768.4 -5384146 L 129880 -5383202 L 129791.2 -5382518 L 129451.8 -5382130 L 129216.1 -5381463 L 128303.1 -5380929 L 128264.8 -5380780 L 129301.9 -5381085 L 129337.8 -5381096 L 129883.3 -5381507 L 129901.2 -5382016 L 130579.9 -5382492 L 130283.7 -5383205 L 130382 -5383292 L 131241.6 -5383964 L 131835 -5383947 L 132240.3 -5384006 L 131981.2 -5384257 L 131906.7 -5384743 L 131929.7 -5384848 L 132087.3 -5385497 L 132355.7 -5385652 L 132700.3 -5385493 L 132748.8 -5385539 L 133111.2 -5385536 L 132894.1 -5386001 L 132957.5 -5386722 L 133293.9 -5387075 L 133621 -5387021 L 133935.4 -5386408 L 134050.7 -5386135 L 134193.4 -5386074 L 134427.3 -5386010 L 134476.4 -5386023 L 134923.7 -5386146 L 134837.5 -5386331 L 134310 -5386428 L 134146.4 -5386900 L 134398.8 -5387417 L 134430 -5387621 L 134415.3 -5388001 L 134493.9 -5388016 L 134805.4 -5388041 L 134818.4 -5388192 L 135494.7 -5389003 L 135666.6 -5389312 L 135810.7 -5389245 L 136254.2 -5388615 L 136150.5 -5387859 L 136613.1 -5387245 L 137035.2 -5385369 L 136983.6 -5384605 L 136088.9 -5383512 L 136851 -5381822 L 136966.5 -5381455 L 135965.9 -5381045 L 135607.2 -5381013 L 135279.3 -5380311 L 135617.6 -5379613 L 135547 -5378850 L 134510 -5377751 L 134311 -5377934 L 133828.7 -5377722 L 133417.6 -5375906 L 134374.2 -5374725 L 134078.8 -5373706 L 134282.6 -5373387 L 134043.9 -5372680 L 134491.6 -5372085 L 134784.7 -5371845 L 134139.6 -5371300 L 133997.8 -5370979 L 133371 -5368896 L 134357.2 -5367430 L 134437.1 -5366703 L 133103.8 -5366169 L 131689.4 -5366287 L 132299.4 -5363903 L 132364.9 -5363557 L 131564.3 -5361667 L 131988.5 -5360711 L 131273.1 -5360622 L 130674.6 -5361592 L 129549.2 -5361435 L 129197.3 -5361286 L 128715.4 -5360699 L 128473.1 -5359598 L 127733.5 -5359469 L 125385.2 -5360769 L 124891.9 -5361783 L 123125.4 -5361124 L 123133.2 -5360353 L 122450.4 -5359453 L 120553.7 -5359444 L 120571.6 -5358727 L 121269.8 -5358039 L 120542.1 -5357181 L 120668.8 -5356819 L 119428.9 -5357758 L 117492.2 -5357821 L 117314.4 -5358169 L 117011.5 -5357948 L 115394 -5357094 L 115089 -5356881 L 114631.3 -5356368 L 114253.2 -5354182 L 114655.4 -5353145 L 114612.8 -5352781 L 114010 -5352410 L 113278.6 -5352445 L 112420.9 -5353126 L 111353.4 -5352892 L 111979.3 -5351998 L 111444.1 -5349866 L 111290.6 -5348387 L 110851.8 -5347759 L 109518.2 -5347105 L 109464.6 -5346725 L 109970.8 -5346170 L 109811.7 -5345622 L 109056.3 -5345718 L 108170.5 -5346412 L 107105.7 -5346010 L 106749.8 -5345869 L 106680.2 -5345540 L 106362.2 -5344604 L 105987.3 -5344519 L 104915.7 -5344928 L 104159.9 -5344797 L 103677.5 -5343769 L 103073.7 -5343333 L 101865.2 -5344095 L 100965.1 -5342469 L 100641.8 -5342749 L 100384.6 -5343017 L 99849.8 -5344738 L 99879.1 -5345613 L 99845.4 -5345917 L 99517 -5346132 L 98169.1 -5347560 L 97711.2 -5349043 L 96731 -5349695 L 94784.8 -5349751 L 94434.8 -5349586 L 93685.1 -5348795 L 91870.5 -5349068 L 91600.9 -5348345 L 88172.5 -5348483 L 88229.1 -5348112 L 89428.3 -5346264 L 89412.2 -5345516 L 88895.7 -5344537 L 87751.1 -5342997 L 86812.1 -5342329 L 86388.4 -5341765 L 86465.8 -5339603 L 86086.9 -5339579 L 85230.1 -5338877 L 84137.8 -5339018 L 83988.1 -5338669 L 83811.3 -5338325 L 80589.7 -5335602 L 79108.5 -5335753 L 78904.4 -5336081 L 78137.7 -5335295 L 77802.5 -5335824 L 78086.9 -5336401 L 77939.9 -5336687 L 77291.7 -5336951 L 77496.5 -5338046 L 77224.7 -5338760 L 78592.2 -5341463 L 78977.8 -5343589 L 79064.5 -5343963 L 79025.8 -5344286 L 79127 -5345007 L 78797.4 -5345178 L 78422.9 -5346225 L 77420.8 -5346459 L 77156.9 -5346218 L 75374.3 -5345146 L 75198 -5344454 L 74826.2 -5344536 L 73410.5 -5345044 L 71922.7 -5344860 L 71703.6 -5345173 L 70756.6 -5343076 L 69685.7 -5342025 L 69630.2 -5344160 L 69275.1 -5344780 L 69462.9 -5345769 L 69257.7 -5346041 L 67565.2 -5348850 L 67185.3 -5348877 L 64591.3 -5348478 L 64228.6 -5348634 L 62579.8 -5349718 L 61922.9 -5351022 L 61692.7 -5351334 L 61341.6 -5351206 L 57856.2 -5352413 L 56371.1 -5352264 L 56024 -5352128 L 55121.8 -5351463 L 53608.8 -5351514 L 53792.3 -5352240 L 52854.1 -5353193 L 52474.6 -5355032 L 52712.2 -5355762 L 52350.1 -5355645 L 51615.2 -5355681 L 51277.2 -5356363 L 49907.3 -5356933 L 48771.2 -5356885 L 48298.6 -5357446 L 47948.7 -5357488 L 47552.8 -5356919 L 46914.9 -5356787 L 46787 -5357097 L 45421.5 -5357326 L 45004.5 -5356713 L 44267.1 -5356511 L 43725.2 -5355491 L 43625.9 -5354722 L 44053.3 -5354086 L 43842.3 -5353773 L 42603.1 -5352435 L 41650 -5352912 L 40649.5 -5352396 L 40346.9 -5352623 L 39977.9 -5352661 L 39327.5 -5353011 L 38618.2 -5352796 L 37543.9 -5351815 L 37703 -5350743 L 35781.8 -5351782 L 34695.6 -5351739 L 34375.5 -5351561 L 33399.2 -5351233 L 33264.4 -5350890 L 32958.7 -5351103 L 32277 -5351335 L 31832 -5352353 L 31183.5 -5352687 L 30093.4 -5352799 L 29827.8 -5352102 L 29489.9 -5352223 L 29458 -5353219 L 28644.5 -5354753 L 28265.3 -5354698 L 27672.9 -5354213 L 25784 -5354006 L 24562.1 -5353076 L 23518.2 -5353326 L 23104.2 -5352679 L 22412.7 -5352368 L 22222.5 -5352707 L 21296.5 -5353410 L 21036.6 -5354126 L 22334.3 -5355482 L 20748.5 -5357139 L 20601.1 -5356413 L 20271.8 -5356228 L 18809.5 -5356415 L 18112.4 -5357243 L 17808.4 -5357154 L 16877.3 -5357015 L 16513 -5356871 L 14170.4 -5356736 L 12641.9 -5357016 L 12311 -5357188 L 11842.2 -5357769 L 11746.5 -5358258 L 13530.5 -5358501 L 15243.4 -5358028 L 15184.2 -5358763 L 15151.1 -5359524 L 13813.7 -5360229 L 12886.5 -5362336 L 12885 -5362723 L 13185.5 -5363837 L 13900.1 -5364077 L 14291.2 -5364741 L 14266.7 -5365127 L 15661.3 -5365236 L 15579.5 -5365596 L 15394.3 -5365915 L 15534.3 -5366991 L 16231.3 -5368217 L 15851.1 -5368188 L 15366.4 -5368774 L 13727.3 -5369640 L 13842.8 -5370378 L 14191.7 -5370238 L 14802.1 -5370507 L 15771.6 -5372106 L 16512.2 -5372210 L 16222.6 -5372458 L 15709.1 -5372524 L 14808.1 -5371827 L 14168.5 -5372149 L 13961.4 -5375163 L 13510.8 -5375718 L 14434.7 -5378233 L 14416.9 -5379022 L 10886.5 -5380361 L 10578.9 -5380607 L 10990.8 -5381561 L 10988.4 -5381936 L 11265.6 -5382116 L 11565.3 -5384373 L 12678.8 -5385438 L 15076.7 -5386618 L 15373.1 -5386868 L 15251.3 -5387206 L 14058 -5387554 L 13386.2 -5388352 L 13429.9 -5388708 L 12451.2 -5388993 L 12301.9 -5389672 L 11961.9 -5389741 L 12104 -5390078 L 11640.4 -5390607 L 11928.5 -5391274 L 11845.2 -5392363 L 12367.8 -5392825 L 12739.3 -5392956 L 15758 -5396012 L 17054.9 -5396869 L 16010.2 -5397299 L 14764.6 -5399146 L 14072.8 -5398892 L 12809.8 -5399524 L 13585.8 -5400233 L 14003.1 -5401229 L 13603.7 -5402199 L 13425.7 -5402516 L 13047.2 -5402420 L 12047.1 -5403027 L 10891.2 -5403032 L 10389.7 -5403633 L 10131.5 -5403962 L 10310 -5405413 L 9663.5 -5405753 L 9334.7 -5406418 L 9338.2 -5407171 L 8997 -5410545 L 9224.3 -5410807 L 9372.5 -5411120 L 9488.5 -5411393 L 9815.1 -5412068 L 10034.3 -5412025 L 10041.3 -5412023 L 11221.8 -5412689 L 11189.1 -5413508 L 12128.5 -5414041 L 12506.8 -5413983 L 13008.1 -5412665 L 13244.6 -5412441 L 14136.3 -5412110 L 14707.5 -5412521 L 15028.7 -5412391 L 15392.4 -5412463 L 15705.4 -5412538 L 16279.3 -5413280 L 16392.3 -5414010 L 15640.4 -5414482 L 15625.9 -5417621 L 15966.8 -5418026 L 16840.5 -5418386 L 17103.1 -5418771 L 17812.9 -5418405 L 19220.9 -5418439 L 20445.3 -5418718 L 19407.9 -5419137 L 18374.4 -5419301 L 18351.3 -5420834 L 17779.2 -5421316 L 17366.1 -5422167 L 17066 -5422244 L 16255.9 -5422070 L 16129.1 -5422043 L 16040.5 -5422203 L 16419.8 -5422758 L 16027.3 -5423250 L 16151.7 -5424413 L 16574.8 -5424582 L 16653.4 -5424906 L 16417.5 -5425437 L 17377.6 -5425610 L 17304.2 -5425948 L 17685.1 -5426222 L 18544.9 -5425817 L 19840 -5426626 L 19971.6 -5426972 L 19769.7 -5427601 L 19530.6 -5427494 L 19226.7 -5427826 L 19813.3 -5428414 L 19867.1 -5429047 L 20125.1 -5429076 L 21240.2 -5428369 L 21447.4 -5428402 L 21131.1 -5428888 L 21087.8 -5429581 L 22054.8 -5430136 L 22312.3 -5429859 L 22184.9 -5429564 L 22279.4 -5429174 L 22570.8 -5428996 L 22778.1 -5429029 L 22696.5 -5429572 L 23129.9 -5429560 L 23258.4 -5429269 L 23928.1 -5429033 L 23671.2 -5429616 L 23980.3 -5429947 L 24449.8 -5430060 L 24727.3 -5429118 L 25758.8 -5427729 L 26437.1 -5427595 L 27272.5 -5427805 L 28001.6 -5427666 L 28060.5 -5427457 L 27311 -5426756 L 27143.2 -5426285 L 26971 -5426210 L 26851.3 -5426157 L 26863.3 -5425697 L 27452.6 -5425417 L 30179.9 -5425644 L 30784.8 -5425848 L 30938 -5426447 L 30812.2 -5427070 L 32541.6 -5427280 L 32922.5 -5427554 L 33419 -5427384 L 33681.2 -5427464 L 34536.4 -5428207 L 34953 -5428299 L 35869.8 -5429165 L 36355.9 -5429175 L 37399.5 -5428831 L 37920.1 -5428362 L 38087.5 -5428211 L 38715 -5429280 L 39089.5 -5429477 L 39945.9 -5428435 L 40316 -5428582 L 40930.6 -5429499 L 40933.3 -5429830 L 41433 -5430298 L 41662.3 -5430891 L 42396.7 -5431415 L 42513.8 -5431889 L 43397.6 -5432069 L 43901.5 -5431388 L 44236.5 -5429626 L 43867.4 -5428892 L 43446 -5428443 L 43509.2 -5428285 L 44346.6 -5428519 L 44483.6 -5428390 L 45290.5 -5427965 L 46196.7 -5428948 L 46623.5 -5428861 L 46616.5 -5428479 L 46745.4 -5428494 L 47269.8 -5429799 L 48781.2 -5429901 L 49403.4 -5430307 L 50048.1 -5430380 L 50126.9 -5430705 L 50507.9 -5430978 L 51509.8 -5431046 L 52068.2 -5431304 L 52174.5 -5431652 L 52567.3 -5431466 L 53229.3 -5431741 L 53754.4 -5432155 L 54543.6 -5432776 L 54481.6 -5432348 L 52481.9 -5431065 L 52775.4 -5430913 L 53562 -5431151 L 53576 -5430717 L 54082 -5430061 L 53870.5 -5429978 L 53431.9 -5430525 L 52776.4 -5430326 L 53168.6 -5429833 L 53157.2 -5429401 L 53454.4 -5428993 L 53458.1 -5428737 L 52792.8 -5427825 L 52312.6 -5427585 L 52322.3 -5427100 L 52867.7 -5427206 L 53055.5 -5427012 L 53419.1 -5427083 L 53482.2 -5426925 L 53154.1 -5426191 L 53679.3 -5425439 L 54579.4 -5426015 L 54864.2 -5425761 L 55255.3 -5425855 L 55265 -5425370 L 55763.5 -5425226 L 57869.1 -5425658 L 58418.3 -5425509 L 58595.2 -5425188 L 58023.3 -5424472 L 58043.8 -5424113 L 58687.3 -5423574 L 58720.7 -5423367 L 57676.2 -5423099 L 57153 -5422353 L 55958.5 -5422124 L 55708.8 -5421890 L 55860.3 -5421571 L 57649.7 -5421255 L 58099.5 -5421176 L 58141.6 -5421070 L 57511.5 -5420869 L 57008.7 -5420963 L 56906.7 -5420666 L 57823.7 -5419440 L 58459.7 -5419411 L 59238.6 -5418962 L 60639 -5418613 L 61482.1 -5418618 L 61967.7 -5419520 L 62365.2 -5419690 L 62216.3 -5419142 L 62473 -5418559 L 62913.7 -5418037 L 63636 -5417823 L 62790.1 -5416288 L 62838 -5415952 L 63184.3 -5415821 L 63012.2 -5415301 L 62167.4 -5414378 L 62426.4 -5413821 L 62785.1 -5413535 L 63311.5 -5413719 L 63333.6 -5413080 L 63788.3 -5412124 L 64820.6 -5411653 L 65339.5 -5411150 L 65808.7 -5411263 L 66042.8 -5411014 L 66288.7 -5410304 L 66283.8 -5408750 L 66423 -5408585 L 67731.9 -5408065 L 68028 -5408244 L 68300.4 -5408144 L 68512.8 -5407642 L 69004.7 -5407422 L 69204 -5406921 L 69446.3 -5406314 L 69728.9 -5406034 L 70037.4 -5406059 L 70239.6 -5405736 L 70482.4 -5404390 L 70388.5 -5403888 L 70677.6 -5403685 L 70719.1 -5403274 L 70470.5 -5402453 L 70899.8 -5401499 L 70873.4 -5400889 L 70553.6 -5400432 L 70568.9 -5399937 L 70112.7 -5399674 L 70479.3 -5398960 L 71290.4 -5398891 L 72353.3 -5397883 L 72944.8 -5397934 L 73231.7 -5397706 L 73518.1 -5397172 L 73441 -5396567 L 74214.9 -5395762 L 75189.9 -5395220 L 76066.1 -5395018 L 77855.8 -5394152 L 77234.1 -5393746 L 76971.5 -5393361 L 77409.4 -5392508 L 76712.7 -5391522 L 77002.2 -5391625 L 77439 -5391358 L 77521.5 -5390230 L 78152.4 -5389845 L 79124.6 -5387774 L 79571.6 -5387328 L 80189.4 -5389187 L 80258.9 -5390303 L 80003.3 -5391497 L 80929.1 -5391877 L 81517.3 -5391291 L 81603.1 -5390800 L 82065.1 -5390531 L 82814.6 -5390340 L 83387.2 -5390470 L 83839 -5390380 L 83580.2 -5390938 L 83645.5 -5391365 L 83695.6 -5391692 L 84173.8 -5392212 L 86142.4 -5393446 L 86546.8 -5393998 L 87170.7 -5394429 L 87304.4 -5394800 L 87680.8 -5395023 L 88286.4 -5395838 L 88700.5 -5395904 L 88756.1 -5396256 L 89911.1 -5397228 L 90049.2 -5397650 L 89906.4 -5398070 L 90115.6 -5398128 L 91358.8 -5397742 L 92411.3 -5398111 L 93821.3 -5398680 L 94182.6 -5398826 L 96094.7 -5400294 L 96224.2 -5400614 L 96095.9 -5400906 L 96453.4 -5401207 L 96557.5 -5401529 L 96382.9 -5401875 L 95707.3 -5402035 L 95178.6 -5402718 L 95195.9 -5402920 L 95998.1 -5402749 L 96913.7 -5403308 L 97375.7 -5403039 L 98214.1 -5402993 L 98945.9 -5403492 L 99371.7 -5403098 L 100370.1 -5402835 L 100043.2 -5401996 L 100403.8 -5401736 L 100240.3 -5401317 L 100599.4 -5401337 L 100741.2 -5401503 L 100765 -5401781 L 100510.1 -5402084 L 102058.5 -5402283 L 102934.8 -5403278 L 103359.1 -5403165 L 104137.2 -5403609 L 104375.4 -5403410 L 104656.3 -5403411 L 105572.5 -5404276 L 106901.3 -5404963 L 107094.7 -5405063 L 107410.2 -5405469 L 107422.3 -5406207 L 107876.9 -5406449 L 107930.4 -5406776 L 108165 -5406832 L 108356.9 -5406688 L 108627.8 -5405977 L 108286.3 -5405267 L 108722.3 -5404694 L 110280.1 -5404408 L 110197 -5404033 L 109571 -5403577 L 109322.1 -5402758 L 108518.1 -5402011 L 108194.8 -5400917 L 107452.2 -5400292 L 106737.9 -5399997 L 105766.7 -5399086 L 105886.9 -5398999 L 106539.8 -5399173 L 107310.1 -5398929 L 107351.5 -5398517 L 107612.9 -5398291 L 107919.1 -5398291 L 108979.9 -5399652 L 109220.9 -5399785 L 109450.4 -5399485 L 109943.9 -5400182 L 110552.4 -5400732 L 111050.4 -5401183 L 112466.1 -5401623 L 113074.2 -5401570 L 113054.7 -5401343 L 112621.2 -5401049 L 112514.9 -5400701 L 112785.8 -5399990 L 113443.3 -5399322 L 113085.7 -5399021 L 112856.4 -5398429 L 113545.7 -5397836 L 114126.3 -5397760 L 114112.6 -5397303 L 114416 -5396971 L 114431.5 -5396256 L 114213.7 -5396097 L 114274.5 -5395913 L 115010.7 -5395570 L 115212.7 -5395247 L 115006.8 -5393736 L 114169.6 -5393196 L 114612.6 -5393005 L 114414.5 -5392181 L 114793 -5392429 L 114944.7 -5393308 L 115410 -5393676 L 115486.6 -5393975 L 115789.1 -5394229 L 115849.1 -5394632 L 116375.8 -5395122 L 116744.8 -5395855 L 116530.4 -5396332 L 116858.9 -5396890 L 116601.9 -5397167 L 116657.5 -5397518 L 117165.7 -5397194 L 117204.1 -5397118 L 117405.5 -5396715 L 117328.4 -5395219 L 117051.3 -5394962 L 117033.3 -5394454 L 117171.6 -5393984 L 117587.1 -5393770 L 118668.4 -5393881 L 118606 -5394345 L 119219 -5394649 L 119310.2 -5394820 L 118041.1 -5395794 L 118362.5 -5395971 L 118808 -5397003 L 119348.7 -5397059 L 119674.4 -5397286 L 119777 -5397888 L 120132.3 -5398164 L 120507.3 -5397775 L 120514.6 -5397265 L 121754 -5396241 L 122017 -5396181 L 121801 -5395426 L 121847.1 -5394963 L 123939.9 -5392396 L 124928.8 -5391916 L 126455 -5392045 L 127347.2 -5391318 L 126861.6 -5389985 L 127491.5 -5388840 L 127819.1 -5388813 L 128248.9 -5389809 L 129165.7 -5390314 L 129366.7 -5390621 L 130061.2 -5391213 L 130068.5 -5391274 L 130111 -5391628 L 130112.2 -5391627 z M 46565.6 -5431468 L 46070.8 -5431357 L 46265.6 -5431544 L 46258.1 -5432055 L 46116.7 -5432194 L 45856.7 -5432140 L 45506.4 -5432527 L 45602 -5432748 L 45868 -5432573 L 46377.3 -5432555 L 46662.2 -5432301 L 46565.6 -5431468 L 46565.6 -5431468 z M 60074.2 -5429040 L 59801.2 -5428834 L 59541.8 -5429086 L 59011.5 -5429156 L 58747.7 -5429357 L 58868.6 -5429576 L 59384.3 -5429634 L 60344.7 -5430114 L 60722.8 -5430056 L 60686.1 -5429625 L 60271.7 -5429559 L 60074.2 -5429040 L 60074.2 -5429040 z M 59253.4 -5427503 L 58845 -5427207 L 58655.1 -5427376 L 58778.8 -5427927 L 58674.8 -5428803 L 59232.6 -5428755 L 59460.2 -5428429 L 60066.6 -5428352 L 59735.8 -5427768 L 59874.4 -5427298 L 59658.5 -5427163 L 59253.4 -5427503 L 59253.4 -5427503 z M 16688 -5426511 L 16383.1 -5426230 L 16221.6 -5427035 L 16401.8 -5427351 L 16714.7 -5427426 L 16976.6 -5427200 L 17556.2 -5427406 L 17828.7 -5427306 L 17963.2 -5426785 L 17550.4 -5426437 L 16975.2 -5426282 L 16688 -5426511 L 16688 -5426511 z " |
id="path689" /> |
<path |
d="M 146292.4 -5424748 L 145461.3 -5424780 L 145070.1 -5425645 L 145254.7 -5425694 L 146119.5 -5425065 L 146292.4 -5424748 L 146292.4 -5424748 z M 181628.3 -5300084 L 181250 -5300206 L 174906.3 -5302452 L 174697.1 -5302530 L 172892.4 -5303128 L 172853.1 -5303841 L 172175.6 -5304190 L 171775.6 -5305617 L 171016.5 -5306455 L 169979.7 -5306119 L 169724.7 -5306402 L 169521.6 -5306541 L 169299.2 -5306436 L 168977 -5306627 L 168388.6 -5307010 L 166204.7 -5307087 L 165586.3 -5307469 L 164499.9 -5307527 L 164313.3 -5307202 L 164382 -5306851 L 164829 -5306301 L 165151.3 -5304263 L 164931.7 -5303958 L 163116.8 -5303554 L 162461.2 -5303879 L 161821.9 -5303486 L 160376.5 -5302180 L 158422.7 -5302176 L 156967.1 -5301649 L 156229.1 -5301767 L 155548.8 -5301486 L 155473.4 -5301188 L 155189.3 -5300447 L 154901.7 -5300241 L 153557.7 -5300212 L 152971.5 -5299830 L 153027.2 -5299462 L 152127.4 -5297863 L 151898.1 -5295694 L 151428.4 -5295708 L 151084.7 -5295529 L 150092.3 -5294461 L 148212.8 -5294841 L 146711.3 -5294525 L 146269.8 -5293599 L 145929.2 -5293511 L 144879.7 -5293563 L 144680.7 -5293853 L 144431.5 -5294127 L 143390.2 -5294480 L 141734 -5293680 L 140642.5 -5293881 L 138149.3 -5294675 L 137549.8 -5295152 L 136828.4 -5294885 L 136538.8 -5294763 L 135659.7 -5295101 L 135300.1 -5295147 L 133713.4 -5293789 L 133350.8 -5293790 L 132976.3 -5293868 L 129289.6 -5293101 L 127689.7 -5291489 L 127312.1 -5291484 L 126739.5 -5291890 L 126853.9 -5293400 L 126597 -5294111 L 126572 -5294126 L 126275.3 -5293867 L 123458.5 -5291231 L 123113 -5291296 L 121743.9 -5291568 L 121141.7 -5291297 L 120803 -5291104 L 120363.1 -5289638 L 118101.2 -5289679 L 116845.6 -5287740 L 116592.3 -5287913 L 116409.1 -5288160 L 116373.3 -5288524 L 117049.6 -5288744 L 117087.9 -5289108 L 115808 -5289617 L 116030.1 -5290661 L 116659.8 -5292762 L 116398.5 -5292948 L 115296 -5293576 L 115264.8 -5294720 L 115720.8 -5296185 L 115070.7 -5297489 L 115166.4 -5298198 L 116806.1 -5299072 L 116674.2 -5299431 L 117014 -5299598 L 120406.9 -5299458 L 120317 -5300912 L 119939.3 -5300893 L 118807.3 -5300924 L 118440.9 -5302300 L 115424.5 -5302366 L 115556.4 -5303073 L 116796 -5303492 L 116937.9 -5304187 L 117301.6 -5304283 L 118039.8 -5304158 L 119567.5 -5305197 L 119924.1 -5306221 L 120113.4 -5307273 L 120142.8 -5307643 L 120425.5 -5307830 L 121971.8 -5308393 L 122111.4 -5308728 L 122875.9 -5309929 L 122569.6 -5310147 L 121906.8 -5310484 L 121665.9 -5311963 L 121935.1 -5312636 L 121923.4 -5312977 L 121737.1 -5313952 L 121453.4 -5313716 L 120522.1 -5312142 L 118524.6 -5311308 L 118215.1 -5311384 L 117499.4 -5312000 L 117760.2 -5312278 L 118431.8 -5313588 L 117405.6 -5315184 L 117443.2 -5316690 L 118071.8 -5317073 L 118319 -5317769 L 119065.5 -5317853 L 119372.1 -5317914 L 119987.9 -5318552 L 119881 -5318865 L 120293.7 -5319712 L 118985.4 -5321613 L 118610.8 -5323454 L 118305.4 -5323610 L 118174.9 -5324278 L 117550 -5324527 L 117368.1 -5324866 L 117076.8 -5325081 L 116298.2 -5326711 L 115998.9 -5326956 L 115331.9 -5327208 L 113442 -5326938 L 112441.3 -5328025 L 111084.5 -5328745 L 110728.6 -5328595 L 110387.1 -5328778 L 109002.1 -5329394 L 105263.9 -5328773 L 105350.4 -5329902 L 106187 -5330648 L 105846.6 -5331695 L 106010.4 -5332037 L 106070.9 -5332352 L 106626 -5333104 L 108258.1 -5334562 L 108510 -5334837 L 109087.8 -5335343 L 112890.9 -5335069 L 114454.4 -5336164 L 114500 -5337321 L 114770.9 -5337599 L 114540.8 -5337833 L 113840.2 -5338437 L 113481.3 -5338286 L 110777.9 -5338179 L 109798.2 -5337624 L 109691.6 -5336532 L 108145.5 -5336556 L 108154.9 -5337628 L 108823.9 -5338886 L 108534.2 -5339542 L 108599.7 -5339824 L 108426 -5340330 L 108639 -5341480 L 106363.7 -5344605 L 106681.7 -5345541 L 106751.3 -5345870 L 107107.2 -5346011 L 108172 -5346413 L 109057.8 -5345719 L 109813.2 -5345623 L 109972.3 -5346171 L 109466.1 -5346726 L 109519.7 -5347106 L 110853.3 -5347761 L 111292.1 -5348389 L 111445.6 -5349867 L 111980.8 -5352000 L 111354.9 -5352893 L 112422.4 -5353127 L 113280.1 -5352446 L 114011.5 -5352412 L 114614.3 -5352782 L 114656.9 -5353146 L 114254.7 -5354183 L 114632.8 -5356369 L 115090.5 -5356882 L 115395.5 -5357096 L 117013 -5357950 L 117315.9 -5358170 L 117493.7 -5357823 L 119430.4 -5357759 L 120670.3 -5356820 L 120543.6 -5357183 L 121271.3 -5358040 L 120573.1 -5358728 L 120555.2 -5359445 L 122451.9 -5359455 L 123134.7 -5360355 L 123126.9 -5361126 L 124893.4 -5361784 L 125386.7 -5360771 L 127735 -5359470 L 128474.6 -5359599 L 128716.9 -5360700 L 129198.8 -5361288 L 129550.7 -5361436 L 130676.1 -5361593 L 131274.6 -5360624 L 131990 -5360712 L 131565.8 -5361669 L 132366.4 -5363558 L 132300.9 -5363904 L 131690.9 -5366288 L 133105.3 -5366171 L 134438.6 -5366704 L 134358.7 -5367431 L 133372.5 -5368897 L 133999.3 -5370980 L 134141.1 -5371301 L 134786.2 -5371846 L 134493.1 -5372086 L 134045.4 -5372681 L 134284.1 -5373388 L 134080.3 -5373707 L 134375.7 -5374726 L 133419.1 -5375907 L 133830.2 -5377723 L 134312.5 -5377935 L 134511.5 -5377753 L 135548.5 -5378852 L 135619.1 -5379614 L 135280.8 -5380313 L 135608.7 -5381014 L 135967.4 -5381047 L 136968 -5381456 L 136852.5 -5381824 L 136090.4 -5383514 L 136985.1 -5384607 L 137036.7 -5385371 L 136614.6 -5387246 L 136152 -5387860 L 136255.7 -5388616 L 135812.2 -5389247 L 135668.1 -5389313 L 135496.2 -5389004 L 134819.9 -5388194 L 134732.6 -5388252 L 134554.3 -5388370 L 134390.6 -5388358 L 133078.2 -5388262 L 133057.8 -5388472 L 133627.9 -5389468 L 133669.8 -5390254 L 132695.7 -5390796 L 132928.7 -5391133 L 132927.8 -5391718 L 132327.8 -5392458 L 132122.1 -5393036 L 132125.6 -5393673 L 132777.6 -5393540 L 133439.7 -5392898 L 134332.3 -5392031 L 134697.1 -5391822 L 134940.2 -5391979 L 134413.3 -5392381 L 134435.6 -5392940 L 133706.8 -5393665 L 133950.6 -5394128 L 133716.8 -5394377 L 133220.4 -5394241 L 132492.9 -5394685 L 131739.5 -5394827 L 131261.8 -5394613 L 131034.5 -5394789 L 131317.4 -5395856 L 131204.7 -5395905 L 130630 -5395278 L 130017.8 -5395280 L 130175.5 -5395928 L 130781.1 -5396743 L 130294.6 -5396934 L 130173.8 -5397049 L 129847.5 -5397460 L 129802.1 -5397778 L 130045.7 -5398284 L 129540.4 -5398939 L 129584.4 -5399409 L 128891.9 -5399327 L 128819.1 -5399561 L 129015.4 -5399729 L 129518.9 -5399734 L 129835 -5400258 L 130142.2 -5400096 L 130380.3 -5400215 L 130249.2 -5400866 L 129231.3 -5400718 L 129183.9 -5401271 L 129289.3 -5401446 L 129963.7 -5401300 L 130891.2 -5401600 L 132242.4 -5402478 L 132782.2 -5403119 L 132997.2 -5403840 L 132471 -5404548 L 132543.3 -5404796 L 132804.6 -5404570 L 133034.8 -5404576 L 133691.9 -5404752 L 134549.7 -5404981 L 134559.1 -5404496 L 134771.9 -5404300 L 135944.4 -5404581 L 135928.4 -5404990 L 135595.5 -5405273 L 135107.7 -5405239 L 135458.7 -5405464 L 136259.2 -5405573 L 136479.2 -5405758 L 136609.4 -5406384 L 136896.8 -5406461 L 136977.1 -5405614 L 137116.1 -5405449 L 137466.3 -5405368 L 138054 -5405674 L 138325.4 -5405269 L 138793.6 -5405076 L 139471.8 -5405247 L 140005.2 -5405813 L 140609.5 -5406015 L 141041.5 -5405698 L 141601.7 -5405981 L 142142.4 -5406037 L 142430 -5406336 L 142618.5 -5406531 L 143123.7 -5406768 L 143443.6 -5407225 L 143563.7 -5407138 L 143403 -5406158 L 143138.8 -5406053 L 143068.6 -5405830 L 143219.8 -5405511 L 143091.7 -5404911 L 143630.1 -5404049 L 143688 -5403535 L 141818.7 -5402268 L 141621.9 -5401165 L 141075.5 -5400447 L 141087.1 -5399987 L 141951.2 -5398461 L 142532.3 -5396908 L 142747.2 -5396737 L 143274 -5396335 L 145155.5 -5395664 L 147756.8 -5395059 L 148096.2 -5394852 L 148236.5 -5395298 L 148110.7 -5395615 L 148298.8 -5395726 L 148447.8 -5395382 L 149086.8 -5395098 L 150526.7 -5395229 L 153206.9 -5394948 L 158593.9 -5395886 L 159491.8 -5396242 L 160531.7 -5397010 L 160635.9 -5397086 L 160571.6 -5397525 L 161329.1 -5397434 L 161651.2 -5397916 L 161955.1 -5397890 L 162258.1 -5397558 L 162668.3 -5397523 L 162899.9 -5396036 L 163193.6 -5394722 L 163741.5 -5394287 L 163995.4 -5394048 L 164652.6 -5393657 L 165080.2 -5392668 L 164739.9 -5390834 L 165780 -5390572 L 165756.2 -5390205 L 166197.8 -5389205 L 165708.9 -5388658 L 165188.3 -5387297 L 166108.4 -5386149 L 166190.3 -5385047 L 166375.7 -5385087 L 167488 -5382867 L 167676.6 -5382555 L 167665.9 -5382191 L 167979.9 -5380421 L 168290.6 -5380555 L 169085.6 -5379965 L 169729.9 -5380163 L 170345.2 -5379842 L 170958.3 -5379955 L 171909.7 -5378912 L 171532 -5378293 L 172400.1 -5377145 L 174132.2 -5376942 L 174488.6 -5376892 L 175675.3 -5376344 L 176283.6 -5376576 L 178471.4 -5377999 L 178370.7 -5378761 L 178951.5 -5379768 L 179590.3 -5379694 L 179743.9 -5379361 L 180125.1 -5380743 L 180466.8 -5380865 L 180675.5 -5380573 L 181735.2 -5380683 L 182846.3 -5381513 L 183052.2 -5381808 L 183359.4 -5381679 L 183686.9 -5381732 L 184480.2 -5383382 L 184501.7 -5384129 L 184290 -5384440 L 185728.9 -5385426 L 186080.4 -5385454 L 186115.4 -5385447 L 187297.5 -5384709 L 189095 -5384773 L 189214.8 -5385113 L 190149 -5383615 L 190499.3 -5383534 L 192105.5 -5383601 L 192420.6 -5382933 L 193582.5 -5382133 L 194606.6 -5382534 L 195336.4 -5382454 L 195704.9 -5382466 L 196839.2 -5381427 L 199104.8 -5380816 L 199287.4 -5380485 L 198708.8 -5380015 L 198467.3 -5378907 L 198652 -5377089 L 199265 -5376166 L 199040.3 -5375443 L 199121.5 -5374426 L 198855.6 -5374152 L 197965.2 -5373443 L 197750.6 -5372711 L 197994.1 -5371221 L 197956.3 -5370830 L 197855 -5370711 L 197853.3 -5370324 L 198891.6 -5368708 L 199632.6 -5366549 L 199341.9 -5366370 L 199272.2 -5365999 L 198659.8 -5365072 L 199035.1 -5365006 L 199176.2 -5362132 L 199319.8 -5361789 L 199845.7 -5360816 L 198750.1 -5358924 L 198614.7 -5358809 L 198242 -5358671 L 196452.2 -5356584 L 195964.4 -5354685 L 195471 -5354207 L 195462.8 -5352304 L 196615.3 -5348693 L 196452.5 -5348336 L 196075 -5347666 L 196272.8 -5347395 L 196434.5 -5347101 L 196736.5 -5346862 L 196557.2 -5344284 L 196420.5 -5343946 L 196884.1 -5342685 L 196754.8 -5341968 L 197126.2 -5341967 L 197677 -5340739 L 197643 -5338147 L 197794.7 -5337802 L 198002.2 -5335960 L 198116.8 -5335604 L 198188.7 -5334114 L 198311.4 -5333775 L 198776.5 -5332799 L 199832.3 -5331824 L 200122.4 -5331650 L 199578.6 -5330855 L 199149.6 -5329813 L 199417.9 -5328360 L 199037.5 -5327699 L 199832.1 -5325978 L 199947.8 -5325632 L 199978.9 -5324196 L 199681.7 -5323528 L 199015.5 -5323236 L 198657 -5323211 L 197481.6 -5322436 L 196094.8 -5322324 L 195834.4 -5322240 L 195366.2 -5322526 L 195027 -5322688 L 194319.5 -5322926 L 193943 -5322886 L 193249.5 -5323140 L 192137.9 -5322917 L 191466.9 -5321260 L 190048.8 -5321000 L 189757.2 -5320807 L 189018.4 -5319350 L 189018.9 -5318964 L 189068.5 -5317817 L 188816 -5317686 L 188468.1 -5317287 L 188731.6 -5316593 L 188244.3 -5315212 L 187689 -5314737 L 187575.1 -5313266 L 187281.5 -5313042 L 186059.2 -5312348 L 185863.1 -5311640 L 186423.8 -5309980 L 186140.1 -5309726 L 185302.2 -5309009 L 184572.2 -5308909 L 184286.8 -5308879 L 184139.3 -5308632 L 183851.7 -5308445 L 184366.4 -5307581 L 184220.1 -5306577 L 183774.8 -5304990 L 183587.2 -5304699 L 183242 -5304860 L 182402.7 -5303757 L 182107.1 -5303566 L 182210.5 -5302906 L 182428.4 -5302596 L 181628.7 -5300086 L 181628.3 -5300084 z M 121755.1 -5396240 L 121830.3 -5396820 L 121383.6 -5397266 L 121354.7 -5397523 L 121073.8 -5397522 L 120888.4 -5397742 L 120719.6 -5398750 L 119975.4 -5399297 L 120016.5 -5399778 L 120198.2 -5399814 L 120510.2 -5399583 L 121283.8 -5399975 L 122090.2 -5399855 L 122744.4 -5400640 L 123180.2 -5400068 L 123790.3 -5400041 L 124078.5 -5399532 L 124591.6 -5399565 L 125659.1 -5400111 L 126002.9 -5399954 L 126503.7 -5400140 L 126879.4 -5400057 L 127132 -5399729 L 127727.7 -5399831 L 127790.7 -5399673 L 127701.8 -5399604 L 127435.4 -5399398 L 127055.5 -5398539 L 127401.5 -5398407 L 128305.5 -5398533 L 128721 -5398320 L 128739.2 -5397770 L 128756.6 -5397247 L 128514.9 -5396809 L 128629.4 -5396060 L 129070.2 -5395844 L 129075.3 -5395308 L 129506.8 -5394686 L 129636.5 -5394114 L 129675 -5394068 L 129891.2 -5393812 L 130231.4 -5393910 L 130798.1 -5393378 L 131191 -5393497 L 131238.2 -5392856 L 130665.8 -5392727 L 129674.4 -5392175 L 130112.3 -5391627 L 130069.8 -5391273 L 130062.5 -5391213 L 129368 -5390621 L 129167 -5390313 L 128250.2 -5389808 L 127820.4 -5388812 L 127492.8 -5388839 L 126862.9 -5389984 L 127348.5 -5391317 L 126456.3 -5392044 L 124930.1 -5391916 L 123941.2 -5392395 L 121848.4 -5394962 L 121802.3 -5395425 L 122018.3 -5396180 L 121755.3 -5396241 L 121755.1 -5396240 z " |
id="path690" /> |
<path |
d="M 406576.1 -5473892 L 406260.7 -5473707 L 405692.4 -5473588 L 405120.3 -5472319 L 404954.9 -5472589 L 404258.4 -5473203 L 404147.3 -5473556 L 403412.4 -5473619 L 402571.7 -5472923 L 401973.6 -5473283 L 401763.6 -5473305 L 401530.2 -5473563 L 400337.8 -5474249 L 400351.7 -5474598 L 400015.7 -5474601 L 398815.7 -5474211 L 398049.6 -5474978 L 397275.5 -5476566 L 397050 -5476781 L 396589 -5477196 L 396649.8 -5477502 L 394771 -5477580 L 393797.2 -5476446 L 393682.1 -5476812 L 393125.5 -5477792 L 391256.9 -5477549 L 391018.7 -5477860 L 390511.2 -5478449 L 389425.3 -5478896 L 387515 -5478793 L 386523.4 -5479368 L 384778.6 -5479473 L 382730 -5478884 L 383355.3 -5480171 L 383164.6 -5480298 L 382945.8 -5480365 L 381625.4 -5479036 L 379830.1 -5478538 L 380236.9 -5477656 L 380148.2 -5477361 L 379332.1 -5477724 L 379195.2 -5477361 L 379346.3 -5476619 L 378685.9 -5476878 L 377284.2 -5476642 L 377377.4 -5476318 L 377655.3 -5474672 L 377078.3 -5473091 L 376309.7 -5472871 L 375935.7 -5472480 L 375466.5 -5472029 L 375459.7 -5471698 L 375658.4 -5470751 L 375411.7 -5470473 L 375409.9 -5469362 L 375109.5 -5469223 L 374368.4 -5468416 L 374344.5 -5467650 L 372451.4 -5467711 L 372098.5 -5467747 L 369995.9 -5468013 L 369810.6 -5468315 L 369453.5 -5468281 L 369153.4 -5468661 L 369035.5 -5468308 L 369133.8 -5466828 L 368023.5 -5466744 L 367973.5 -5466765 L 367835.1 -5467411 L 367502.7 -5467261 L 366785.9 -5466559 L 366654.7 -5466885 L 366199.1 -5467078 L 365799.6 -5466507 L 365104.6 -5466549 L 365042.8 -5466224 L 364452.9 -5465488 L 364279.1 -5465167 L 364195.5 -5463713 L 363875.5 -5463722 L 363517.4 -5463689 L 361359.3 -5463774 L 361008.3 -5463788 L 359660.2 -5463433 L 359342.6 -5463208 L 357939.7 -5462532 L 359138.1 -5460611 L 358168.7 -5459704 L 358929.8 -5458470 L 358737.2 -5458222 L 358197.8 -5458515 L 358052.1 -5458237 L 358069 -5458592 L 357109.7 -5458130 L 357092.1 -5458310 L 356708.2 -5458369 L 354207.6 -5457525 L 353876 -5458115 L 354274.4 -5458644 L 353546.6 -5458786 L 353277.3 -5459474 L 352935.5 -5459579 L 352216 -5460656 L 351113.6 -5459768 L 351106.4 -5460109 L 350897.9 -5460725 L 351152.5 -5460932 L 351658.6 -5461332 L 351535.1 -5461927 L 351531 -5462293 L 350868.8 -5462666 L 349924.1 -5465214 L 349060.1 -5464505 L 348714.6 -5464354 L 347770.9 -5463770 L 347834 -5463019 L 347136.4 -5462845 L 346698.8 -5463446 L 346667.5 -5464896 L 345004.3 -5465725 L 344634 -5465646 L 344522.8 -5465973 L 343196.8 -5466095 L 343483.3 -5466667 L 344339.4 -5468177 L 344694.6 -5468213 L 345231.7 -5467829 L 346244 -5468247 L 348731.1 -5467319 L 349389.2 -5467703 L 349636 -5467995 L 349254.1 -5468436 L 348996.4 -5468571 L 348915.3 -5468916 L 349106 -5469566 L 348951.8 -5469867 L 348690.1 -5471528 L 348676 -5471865 L 348740.8 -5472538 L 348380.5 -5472451 L 347075.5 -5471782 L 346855.7 -5471107 L 346519.1 -5471269 L 345859.8 -5471206 L 345967.8 -5471571 L 346261.5 -5471813 L 346264.5 -5472568 L 345744.8 -5473105 L 345896.7 -5473820 L 345542.3 -5473712 L 344846.5 -5473467 L 344615.2 -5473755 L 344297.7 -5473604 L 342592.4 -5473623 L 342229.7 -5473752 L 341577.6 -5474157 L 341319.3 -5474447 L 340515 -5477405 L 340315 -5477417 L 340370.1 -5477061 L 340492.2 -5476350 L 339357.7 -5475855 L 339042.1 -5475639 L 337928.4 -5476581 L 336181.4 -5475985 L 335761.8 -5475430 L 334118.4 -5475790 L 334018 -5475651 L 333603.1 -5475341 L 333055.9 -5474924 L 331984.6 -5475288 L 330859.8 -5475078 L 330498.4 -5474966 L 329881.2 -5475333 L 329563.5 -5475456 L 329345.1 -5475718 L 329879.6 -5476228 L 329672.2 -5476850 L 328939.1 -5476892 L 328651.8 -5477559 L 327925.3 -5477453 L 328020.3 -5477824 L 329124.7 -5479337 L 328943.6 -5479671 L 328648.9 -5479448 L 326861.9 -5478144 L 325760.4 -5478064 L 325410.5 -5478153 L 324460.7 -5478668 L 323025.8 -5480290 L 322826.5 -5480564 L 321821 -5481923 L 321657.6 -5482139 L 321490.2 -5482353 L 321426.5 -5482463 L 321217.3 -5482754 L 320344.2 -5483890 L 319423.5 -5484434 L 319040.7 -5484532 L 318253.4 -5484484 L 317257.1 -5483886 L 317151.1 -5483812 L 316459.6 -5483341 L 312903.8 -5481396 L 310368.7 -5480803 L 306518 -5480573 L 305383.8 -5480869 L 303103.3 -5481014 L 301456.5 -5481119 L 300163.5 -5481534 L 298093 -5481755 L 297052.1 -5482209 L 295976.8 -5482355 L 295108.3 -5482436 L 294483.7 -5481789 L 293799.3 -5482551 L 292442.9 -5482898 L 291215.6 -5482979 L 290349.9 -5483521 L 290226.7 -5483694 L 290025.5 -5483977 L 289402.4 -5484427 L 289149.1 -5484870 L 289540.4 -5485112 L 290440.8 -5484898 L 291441.4 -5483827 L 291916.5 -5483828 L 293393.6 -5483134 L 295142.4 -5483227 L 295376.8 -5483596 L 296085.3 -5483848 L 296627.5 -5483588 L 297080.4 -5483584 L 297906.9 -5483201 L 298402.9 -5483299 L 298694.8 -5483602 L 298575 -5483845 L 297507 -5484067 L 296269.6 -5484650 L 295773.6 -5484253 L 294173.9 -5483507 L 293043.9 -5483644 L 292111.7 -5484287 L 291808.9 -5484246 L 291437.8 -5484532 L 291161.7 -5484466 L 290193.6 -5485458 L 290065.1 -5485774 L 289221.6 -5487469 L 287919 -5488061 L 287864.6 -5489076 L 288179.5 -5490315 L 289100.5 -5492579 L 291801.9 -5497835 L 293710 -5501546 L 294607.9 -5503667 L 295623.3 -5507973 L 297724.3 -5510044 L 298947 -5510950 L 299495.2 -5511157 L 300812 -5511252 L 301571.9 -5511674 L 304762.1 -5513447 L 305766.2 -5513680 L 306285.5 -5513470 L 306594.9 -5513547 L 308665 -5514621 L 310315.6 -5516083 L 310676.9 -5516459 L 312320.1 -5517106 L 315906.3 -5518976 L 316140.7 -5519117 L 319428.4 -5521097 L 320232.5 -5521751 L 321527.7 -5522252 L 323003.7 -5523654 L 324161.3 -5524352 L 326642.2 -5525501 L 327430.7 -5525492 L 328189.3 -5525752 L 330622.6 -5526653 L 335283.7 -5527434 L 336369.9 -5527084 L 338047.2 -5527140 L 340246.5 -5527214 L 341749.9 -5527724 L 344003.9 -5528835 L 346387.7 -5529419 L 347751 -5529593 L 349052.9 -5529966 L 349998.6 -5530347 L 350437.3 -5530701 L 351315 -5530926 L 353551.8 -5531884 L 354616.4 -5531940 L 358418.6 -5531656 L 358817.5 -5531938 L 359545.6 -5532453 L 361495.9 -5532581 L 362646.9 -5533406 L 363025.8 -5533451 L 363931.5 -5533626 L 364823.8 -5534054 L 371477.5 -5537542 L 373389.8 -5539142 L 374534.1 -5540100 L 374965.5 -5540461 L 376466.1 -5541717 L 378494.7 -5543733 L 379457.8 -5544267 L 381299.6 -5545967 L 383679.2 -5547594 L 383890.1 -5547452 L 384155.1 -5547263 L 385765.7 -5546430 L 386111.5 -5546406 L 386892.3 -5547428 L 387045.1 -5547728 L 387752.5 -5547937 L 389103.7 -5547472 L 389285.7 -5547151 L 389698.9 -5546932 L 389155.4 -5544619 L 389614.7 -5544090 L 390635.3 -5543704 L 390815.3 -5543367 L 391547.6 -5542495 L 392023 -5541979 L 392360.2 -5542082 L 393542.6 -5541302 L 394172 -5540101 L 394281 -5539762 L 394398.2 -5539495 L 396552.4 -5537652 L 396817.7 -5537415 L 397444.6 -5537072 L 397747 -5536876 L 397982.9 -5535780 L 399790 -5533468 L 400120.4 -5533286 L 401259.7 -5532425 L 402611.1 -5531956 L 402911.5 -5531758 L 403228.9 -5531586 L 405095.6 -5530557 L 405099.1 -5530012 L 405946.3 -5528710 L 406002.4 -5528382 L 406114.4 -5528032 L 406376.6 -5527773 L 407030.8 -5527552 L 407445.2 -5526983 L 407556.4 -5525937 L 407399.6 -5525623 L 407467.6 -5525250 L 407879 -5524672 L 407964.8 -5524222 L 407864.9 -5522740 L 408308.3 -5522162 L 408364.3 -5521797 L 408320.3 -5521421 L 408858.4 -5518845 L 409453.2 -5518042 L 409596.3 -5517727 L 409974.7 -5516750 L 410172.9 -5516446 L 410562.3 -5515477 L 410619.4 -5515131 L 411651 -5514664 L 412066.3 -5514029 L 412155.3 -5513661 L 412322.4 -5513329 L 412418.5 -5512597 L 410887.6 -5512552 L 409907.2 -5513108 L 409371.6 -5512086 L 409188.9 -5511799 L 409539.4 -5510493 L 409354.4 -5510495 L 408071.6 -5509739 L 407369.1 -5509897 L 407298.5 -5507746 L 407231.7 -5507041 L 406564.3 -5506847 L 405345.2 -5505573 L 406700.4 -5504177 L 407381.2 -5504520 L 408553 -5506057 L 409291.4 -5506242 L 409531.6 -5505930 L 409801.1 -5505731 L 409849.7 -5504406 L 409906.8 -5504076 L 409536.6 -5503984 L 407862.5 -5503092 L 407742.6 -5501964 L 407648.7 -5501622 L 407077.8 -5501224 L 406648.4 -5500256 L 405967 -5500068 L 406155.3 -5499799 L 406371.6 -5499550 L 406572 -5499325 L 407284.5 -5498781 L 407384.6 -5498420 L 407584.8 -5497701 L 407150.2 -5496664 L 405516.8 -5495260 L 406340.1 -5494610 L 406473.4 -5493920 L 407089 -5493793 L 407403.4 -5493957 L 407508.1 -5493861 L 407332.3 -5493139 L 405536 -5492974 L 405742.7 -5492045 L 406673 -5492588 L 407201.6 -5492064 L 407379.7 -5491726 L 407794.1 -5491080 L 408045.4 -5490790 L 407899.6 -5490452 L 407756.2 -5488689 L 409090.3 -5488348 L 409135.2 -5488308 L 408610.1 -5486250 L 407219 -5484974 L 407073.4 -5484735 L 407156.3 -5484309 L 407600.4 -5483953 L 408687.8 -5483734 L 408991.1 -5483033 L 410017.8 -5484962 L 410713.5 -5485262 L 411828.2 -5484753 L 412112.8 -5484595 L 412169.3 -5483174 L 412159.4 -5482804 L 411420.3 -5482759 L 411196.6 -5482454 L 411194 -5480960 L 410425 -5480137 L 410077.6 -5479987 L 409111.3 -5479439 L 409286.6 -5479140 L 409197.2 -5478545 L 408545.7 -5478318 L 408284.1 -5478082 L 408055.5 -5477428 L 407518.7 -5477085 L 407189.3 -5475247 L 406577 -5473893 L 406576.1 -5473892 z " |
id="path691" /> |
<path |
d="M 508562.7 -5506077 L 508177.8 -5506119 L 507019.8 -5506079 L 506679.4 -5505384 L 506507.8 -5505074 L 505713.7 -5504498 L 505956.7 -5505455 L 506013.5 -5506815 L 505661.2 -5506647 L 503785.1 -5506955 L 503897.3 -5506588 L 504154.8 -5505885 L 503990.4 -5504758 L 503626.4 -5504717 L 502920.8 -5504866 L 502412.1 -5503543 L 502037.4 -5503206 L 501707.8 -5503370 L 500964.5 -5504592 L 500597.6 -5504614 L 500374.2 -5504901 L 500315.7 -5505624 L 499449.2 -5506275 L 499276.7 -5506037 L 498729.4 -5505860 L 498370.6 -5505942 L 497809.7 -5505043 L 496402 -5504619 L 496293.7 -5503515 L 496821.6 -5503014 L 496599.1 -5502746 L 496616.9 -5501706 L 496129 -5502656 L 495551 -5503068 L 495283.5 -5502828 L 493752.6 -5506486 L 493486.1 -5506228 L 493276.7 -5505569 L 492224.2 -5505285 L 492040.9 -5505601 L 491616.9 -5506969 L 491465.9 -5506951 L 491571.1 -5506586 L 490342.4 -5505712 L 490548.7 -5505403 L 491820.8 -5504144 L 491938.3 -5503433 L 491960.6 -5502173 L 491659.1 -5502380 L 491007.9 -5503629 L 489932.3 -5503754 L 489652.8 -5503518 L 489909.3 -5503297 L 488975.4 -5502340 L 488808.1 -5502172 L 488916.4 -5501861 L 489166.1 -5501254 L 488673.2 -5500827 L 488405.8 -5501076 L 485574.3 -5501150 L 485505.9 -5500940 L 485711.7 -5500859 L 485377.4 -5500696 L 485088.9 -5500460 L 484833 -5498641 L 485261.7 -5497624 L 485156.6 -5496199 L 484832.2 -5495991 L 483783.3 -5495987 L 483474.2 -5495911 L 482606.2 -5496308 L 482454 -5496669 L 482121.3 -5496797 L 481502.1 -5497143 L 480118.2 -5497094 L 479768.3 -5496689 L 479529 -5496978 L 478173.8 -5497273 L 477835.7 -5497231 L 477496.7 -5497208 L 477415.1 -5496919 L 477377.8 -5496340 L 477355 -5495988 L 476399 -5494579 L 476406.5 -5494364 L 476051.5 -5494352 L 476149 -5492296 L 475805.7 -5492121 L 474615.9 -5491230 L 474297.4 -5491439 L 473341.8 -5492054 L 473046.4 -5492743 L 473271.6 -5494187 L 472823.9 -5495181 L 473011.6 -5495504 L 472932.8 -5495596 L 472553.9 -5495640 L 471506.3 -5495292 L 470528.5 -5495761 L 470759.9 -5495512 L 470153.3 -5495217 L 469716.3 -5494319 L 469505.8 -5494093 L 468993.8 -5494075 L 468801.6 -5494415 L 468101.7 -5495319 L 468287.3 -5495616 L 468639.3 -5496517 L 467192.8 -5496205 L 465766.4 -5497694 L 465351.8 -5497418 L 465104.5 -5497715 L 464239.3 -5498461 L 464252.2 -5498848 L 463946.8 -5498636 L 462253.7 -5496755 L 461962.2 -5496963 L 461442.4 -5497457 L 461925.4 -5498373 L 461607.6 -5498455 L 461364.1 -5498675 L 460724.5 -5498359 L 460452.1 -5499032 L 460329.9 -5499370 L 460188.7 -5499699 L 459936.3 -5500352 L 457545.8 -5501288 L 456808.7 -5501216 L 456491.3 -5501041 L 455845.6 -5500712 L 454761.8 -5500734 L 454431.3 -5500924 L 453918.7 -5501932 L 453406.1 -5501641 L 453059.9 -5501534 L 451986.3 -5502501 L 451785.8 -5503536 L 451442.3 -5503734 L 450585.3 -5504526 L 450515.4 -5504150 L 449491.4 -5503658 L 448778.2 -5503928 L 448582 -5504250 L 446604.6 -5505188 L 446290.8 -5505234 L 445667.5 -5505892 L 444606.8 -5505952 L 444326.9 -5505984 L 443970 -5505989 L 442618.2 -5505580 L 441690.6 -5506073 L 441556.9 -5506184 L 441208.7 -5506058 L 439059 -5506015 L 438449.2 -5505643 L 438260.5 -5505330 L 437787.3 -5504800 L 436760.7 -5504476 L 436396.1 -5504617 L 435825.5 -5505135 L 434676.5 -5505047 L 434429.1 -5504859 L 434142.9 -5504740 L 433824.5 -5504958 L 432592.7 -5504136 L 431482.4 -5504364 L 431323.9 -5504541 L 432068.9 -5504600 L 432067.7 -5505320 L 430573.5 -5506372 L 430300.3 -5507070 L 429925.3 -5507065 L 429900.4 -5507085 L 429531.6 -5507123 L 428857 -5506820 L 427982.6 -5507407 L 427334.8 -5507045 L 426237.4 -5507206 L 425803.9 -5508167 L 425485.4 -5507937 L 424155.9 -5506062 L 424032.7 -5506387 L 423033.4 -5508201 L 422742.9 -5507986 L 421769.9 -5507523 L 420233.3 -5506007 L 419903.2 -5505931 L 419240 -5505806 L 418937.6 -5506010 L 417983 -5506492 L 416933.6 -5506261 L 416691.4 -5506553 L 416151.8 -5507070 L 416174.7 -5507426 L 416053.3 -5508039 L 415043.1 -5508286 L 414922 -5508622 L 415262.5 -5508822 L 416395 -5509864 L 416108.9 -5510572 L 414947.8 -5510458 L 414780.7 -5510781 L 414194.2 -5512116 L 413120.7 -5511868 L 412818.3 -5512083 L 412947 -5512355 L 412417.7 -5512597 L 412321.6 -5513329 L 412154.5 -5513661 L 412065.5 -5514029 L 411650.2 -5514663 L 410618.6 -5515130 L 410561.5 -5515477 L 410172.1 -5516445 L 409973.9 -5516750 L 409595.5 -5517727 L 409452.4 -5518042 L 408857.6 -5518844 L 408319.5 -5521420 L 408363.5 -5521796 L 408307.5 -5522162 L 407864.1 -5522739 L 407964 -5524221 L 407878.2 -5524672 L 407466.8 -5525249 L 407398.8 -5525622 L 407555.6 -5525937 L 407444.4 -5526983 L 407030 -5527551 L 406375.8 -5527773 L 406113.6 -5528031 L 406001.6 -5528382 L 405945.5 -5528709 L 405098.3 -5530011 L 405094.8 -5530557 L 403228.1 -5531585 L 402910.7 -5531758 L 402610.3 -5531956 L 401258.9 -5532425 L 400119.6 -5533286 L 399789.2 -5533468 L 397982.1 -5535780 L 397746.2 -5536876 L 397443.8 -5537072 L 396816.9 -5537415 L 396551.6 -5537652 L 394397.4 -5539495 L 394280.2 -5539762 L 394171.2 -5540101 L 393541.8 -5541302 L 392359.4 -5542081 L 392022.2 -5541978 L 391546.8 -5542495 L 390814.5 -5543367 L 390634.5 -5543704 L 389613.9 -5544090 L 389154.6 -5544618 L 389698.1 -5546931 L 389284.9 -5547151 L 389102.9 -5547472 L 387751.7 -5547936 L 387044.3 -5547727 L 386891.5 -5547428 L 386110.7 -5546405 L 385764.9 -5546430 L 384154.3 -5547262 L 383889.3 -5547452 L 385440.5 -5548882 L 388672.5 -5551216 L 389504.8 -5552303 L 390167.5 -5553712 L 390695.5 -5555751 L 391737.7 -5558397 L 392466.5 -5560248 L 393388.1 -5562053 L 394324.5 -5563095 L 395699.8 -5564006 L 397730.2 -5564545 L 398245.3 -5564420 L 397891.8 -5563892 L 398741.7 -5562714 L 399023.2 -5562678 L 400072 -5561588 L 400729.7 -5561647 L 403441.4 -5560848 L 403834.4 -5560129 L 404103.8 -5560322 L 405208.5 -5560100 L 405095.1 -5560323 L 404522.8 -5560573 L 404586.8 -5560805 L 405135.1 -5561012 L 405407.6 -5561509 L 403313.2 -5561082 L 403109.6 -5561641 L 403531.5 -5561539 L 404089.1 -5562052 L 403515.5 -5562327 L 402960.5 -5562247 L 402701.6 -5562819 L 402989.7 -5563140 L 404331.8 -5563236 L 404301.1 -5563819 L 403316.6 -5563692 L 402614.8 -5563986 L 402400 -5563720 L 402015.8 -5563776 L 401492.8 -5564538 L 401081.8 -5565586 L 400297.2 -5566487 L 400358.6 -5566770 L 399964.9 -5567488 L 399967.6 -5567921 L 399751.4 -5568164 L 399346.2 -5567402 L 399083 -5568307 L 399469.9 -5568684 L 399407.1 -5568910 L 398913.5 -5569113 L 398481.7 -5569068 L 397447.2 -5568960 L 397004.2 -5569166 L 396781.3 -5570020 L 396198.2 -5570957 L 396266 -5572023 L 396323.4 -5572924 L 397183.6 -5577348 L 397275.5 -5578982 L 397674.3 -5580098 L 397975.3 -5580301 L 398042.5 -5580346 L 399039.2 -5580245 L 399524.8 -5580678 L 400009.1 -5580653 L 400501.4 -5580958 L 400782.9 -5580438 L 401373.9 -5580800 L 402288.3 -5581008 L 402857.2 -5580263 L 402739.4 -5579961 L 403412.9 -5578907 L 403738.7 -5577556 L 404103.4 -5577518 L 404995.1 -5576915 L 404844.2 -5576575 L 405218.7 -5576489 L 406876.7 -5577453 L 407023.7 -5577809 L 407179.3 -5577358 L 407829.3 -5577809 L 409383.2 -5578080 L 409706.7 -5578308 L 410453.4 -5579040 L 411506.6 -5579303 L 411999.8 -5579801 L 413775.1 -5579552 L 414138.8 -5579525 L 414741.5 -5579526 L 415045.3 -5579526 L 416018.3 -5578689 L 416253.5 -5578468 L 417978.3 -5577695 L 418360.9 -5577612 L 418388.3 -5577406 L 419586.4 -5576652 L 420007.4 -5575339 L 420906.4 -5574805 L 421277.2 -5574811 L 421651.3 -5574554 L 421666.5 -5574267 L 423134.4 -5574161 L 424709.2 -5576149 L 425071.2 -5576235 L 426345.2 -5575073 L 426311.2 -5574722 L 426009.4 -5574010 L 424156.6 -5572677 L 424953.5 -5571368 L 425213.9 -5571192 L 425673.7 -5571558 L 425972.8 -5571659 L 426661.9 -5570753 L 428389.8 -5569978 L 428846.5 -5569607 L 429029.8 -5569377 L 429640.7 -5569099 L 430669.6 -5569260 L 431237.2 -5568880 L 431483.4 -5568639 L 432248.7 -5567816 L 432986.9 -5567651 L 433369.8 -5567674 L 434140 -5567167 L 434316.2 -5566894 L 433353.2 -5566000 L 433293.4 -5565319 L 433585.8 -5565151 L 433615 -5564496 L 434451.2 -5563630 L 434678.3 -5563355 L 434745.4 -5561935 L 434803.4 -5561577 L 435592.7 -5562192 L 436564.5 -5561943 L 436866.9 -5561757 L 437404.8 -5562576 L 438584.6 -5561962 L 438802.8 -5561689 L 439167.9 -5560661 L 439363 -5560343 L 441070.3 -5562265 L 441440.9 -5562194 L 441800.5 -5562494 L 442104.2 -5562452 L 442947.6 -5562746 L 442980.4 -5563054 L 443333.8 -5562913 L 443975.5 -5563285 L 444735.1 -5563277 L 444934.4 -5562301 L 445181.9 -5562523 L 445823.3 -5562799 L 446803.2 -5562957 L 447957.4 -5564387 L 449261.8 -5563673 L 449468.9 -5563361 L 449908.3 -5562815 L 450247.9 -5562729 L 451448.1 -5563405 L 451929.9 -5563043 L 452064 -5562726 L 452373.3 -5563683 L 451637.9 -5564926 L 451310.7 -5564769 L 451208.6 -5565107 L 452218.9 -5565408 L 452507.3 -5565613 L 452644.6 -5565387 L 452771.9 -5565155 L 454527.9 -5562032 L 454965 -5562133 L 455768.5 -5563640 L 455921.3 -5563959 L 456202.4 -5564057 L 456531 -5563982 L 457476.9 -5564914 L 457794 -5565032 L 458528.9 -5564358 L 459573.2 -5564291 L 459915.9 -5564231 L 460639.1 -5564457 L 461006.2 -5564551 L 461333.7 -5563626 L 461532.9 -5563360 L 461871.2 -5562765 L 463004.9 -5562077 L 463349.6 -5562038 L 463612.6 -5561710 L 463871.8 -5561444 L 464044.9 -5561116 L 464018.2 -5560834 L 464085.5 -5560560 L 463827.4 -5560466 L 463345 -5560208 L 463047.1 -5560199 L 462521.6 -5559915 L 462217.4 -5559776 L 460862.6 -5558801 L 460479 -5558883 L 459733.5 -5558932 L 458716.6 -5558387 L 458285.4 -5558221 L 458332.5 -5557872 L 458252.9 -5557226 L 457986.8 -5557121 L 457448.5 -5557303 L 457338.8 -5556994 L 457123.3 -5556374 L 456481.3 -5556243 L 456600.3 -5555092 L 456148 -5554492 L 455717.5 -5552244 L 455394.9 -5551142 L 456787.5 -5551234 L 456962.4 -5550822 L 457823.5 -5550225 L 458181.2 -5550160 L 458385.5 -5549128 L 458896.3 -5548711 L 459252.3 -5548765 L 460324.1 -5551650 L 460462.9 -5552008 L 460557.5 -5552266 L 460746.7 -5552781 L 461085.7 -5553239 L 461115.4 -5553532 L 461827.2 -5553587 L 462144.6 -5553798 L 462618.3 -5554153 L 463700 -5554234 L 465058.2 -5554566 L 465410 -5554572 L 466629.4 -5551700 L 467563.6 -5552344 L 467770.3 -5552664 L 467651.7 -5554031 L 468013.1 -5554652 L 468964.7 -5554261 L 469227 -5554006 L 469879.6 -5554350 L 470229.2 -5554231 L 470534.9 -5554153 L 470270.6 -5553575 L 469306.4 -5552520 L 469282.8 -5552275 L 469540.3 -5551724 L 469729.6 -5551485 L 470803 -5551009 L 470957.2 -5550723 L 472307.6 -5551111 L 473382.9 -5551019 L 473665.2 -5550789 L 473657.6 -5550548 L 473797.8 -5550238 L 474021.1 -5549979 L 474634 -5549639 L 474859.2 -5549352 L 475316 -5549752 L 475506.5 -5550000 L 476411 -5549531 L 476615.3 -5549255 L 477353.4 -5549410 L 478011.3 -5549071 L 478689.9 -5548164 L 478882.1 -5547839 L 479731.9 -5548322 L 479970.4 -5548574 L 479703.2 -5548850 L 478447 -5550241 L 478874.2 -5550807 L 479593.6 -5551084 L 479147.1 -5552891 L 480439.5 -5552879 L 480778.2 -5552822 L 482003.9 -5551665 L 482173.1 -5551363 L 483196.1 -5551104 L 484206.5 -5551462 L 484416.7 -5551171 L 484239.5 -5550199 L 484212.7 -5549868 L 484350.9 -5549544 L 484472.4 -5548941 L 483937.5 -5547622 L 483211.9 -5546801 L 482960.4 -5546530 L 483038.8 -5545868 L 483159 -5545553 L 481871.8 -5544394 L 481617.3 -5544159 L 482082.8 -5543591 L 482319 -5543301 L 484008 -5543571 L 484382.3 -5544187 L 485357.4 -5544373 L 485443.7 -5544507 L 486058.6 -5545444 L 486273.2 -5545750 L 486508.5 -5545461 L 487744.5 -5546098 L 487995.8 -5545823 L 488470.9 -5546806 L 489360.1 -5547477 L 489734.9 -5547467 L 489693.4 -5545941 L 489819.5 -5545576 L 490111.3 -5545537 L 490394 -5545456 L 491221.7 -5543708 L 490757.5 -5542677 L 490037.4 -5542537 L 489544.4 -5542037 L 489711.5 -5541693 L 489778.9 -5541416 L 490838.9 -5541135 L 491370.6 -5541517 L 491169.3 -5541793 L 491669.2 -5542259 L 492637.2 -5542852 L 494131.4 -5542737 L 494362.6 -5544188 L 495116.2 -5543679 L 495413.4 -5543813 L 495689.8 -5544046 L 495785.5 -5544395 L 496078 -5544642 L 496458.9 -5544678 L 497051.2 -5544465 L 497345.8 -5544355 L 497825 -5543638 L 498040.4 -5543380 L 499277.9 -5544261 L 499643 -5544384 L 500276.4 -5544670 L 500574.7 -5544849 L 500943.4 -5545231 L 501656.8 -5545098 L 501870.1 -5544798 L 501965.7 -5545091 L 502264.8 -5545168 L 503949 -5544601 L 504261.5 -5544430 L 505216.4 -5544088 L 505421.7 -5543815 L 506340.8 -5544437 L 506552.4 -5544754 L 506947.3 -5543863 L 508181.3 -5543140 L 508273.9 -5542508 L 508790.1 -5541780 L 508938.4 -5541502 L 510755 -5541593 L 510643.5 -5540869 L 511733.3 -5540932 L 512050.6 -5541118 L 512354.1 -5540467 L 512461.3 -5540119 L 512367.8 -5539896 L 511490.2 -5538110 L 511239.7 -5537867 L 511911.5 -5537856 L 512820.1 -5537298 L 513535.2 -5537440 L 513883.3 -5537551 L 514314.3 -5537123 L 514615.3 -5537176 L 513896.6 -5536291 L 512296.8 -5535228 L 511810.8 -5534711 L 511702.7 -5533711 L 511664.9 -5533349 L 512019.6 -5533251 L 511901 -5532952 L 511573.8 -5532842 L 509959.7 -5531650 L 509108.3 -5530411 L 508937.7 -5529666 L 508502.8 -5529215 L 508682.1 -5528910 L 508860.2 -5527598 L 508518.1 -5526580 L 508610 -5526058 L 508609.4 -5525775 L 506356.8 -5523846 L 506023.1 -5523944 L 506151.3 -5524965 L 505982 -5525269 L 505358.5 -5524990 L 505139.9 -5524703 L 505754.8 -5523815 L 506010.9 -5522032 L 506107.1 -5521684 L 505915 -5521143 L 505618.6 -5520954 L 505333.5 -5520867 L 505040.1 -5520675 L 504159.2 -5520160 L 504312.8 -5519506 L 504399.2 -5518776 L 505719.2 -5518902 L 505974.7 -5518681 L 506147.3 -5518505 L 505953.8 -5518237 L 505807.6 -5517643 L 506227.2 -5517042 L 506090 -5515974 L 506211.2 -5515625 L 505883 -5515490 L 504437.1 -5514472 L 504872.1 -5513581 L 504724.4 -5513259 L 505334.3 -5512807 L 506870 -5512780 L 507254.9 -5512756 L 506836.9 -5511792 L 506987.7 -5510770 L 507173.4 -5509695 L 507267.6 -5509343 L 508203.2 -5508260 L 508688.5 -5506066 L 508562.5 -5506077 L 508562.7 -5506077 z " |
id="path692" /> |
<path |
d="M 506552.1 -5544754 L 506238.6 -5544932 L 506236.8 -5545919 L 506800.2 -5546211 L 507115.5 -5546387 L 506886.2 -5546677 L 506369.5 -5547179 L 506455.1 -5547914 L 507520.4 -5547781 L 508260.9 -5549051 L 508191.7 -5549403 L 507945.1 -5550430 L 507585.2 -5550413 L 507656 -5550790 L 507563.9 -5551162 L 507525.7 -5551521 L 506799.7 -5552304 L 506969.3 -5552623 L 509452.9 -5554250 L 509787.2 -5554429 L 509801 -5554815 L 509422.2 -5554854 L 508368.5 -5555261 L 508137.2 -5555987 L 507330.3 -5556788 L 508221.1 -5557310 L 509615.3 -5557224 L 509944.4 -5557342 L 510945.3 -5558826 L 511293.5 -5558970 L 511206.3 -5559314 L 510627.4 -5559713 L 510330.6 -5560629 L 510052 -5560738 L 509494.7 -5560962 L 509592.4 -5561305 L 510324.2 -5563158 L 510693 -5563149 L 512901 -5563143 L 513026.2 -5563717 L 513275.6 -5563939 L 513492.1 -5564212 L 513470.6 -5564907 L 513151.4 -5564763 L 512572.5 -5565574 L 511903.1 -5565702 L 510637.7 -5566159 L 510807.2 -5567789 L 511135.9 -5567714 L 510897.5 -5567929 L 509995.7 -5568274 L 509616.1 -5568383 L 509248.3 -5568399 L 507812.5 -5568640 L 507446.9 -5568726 L 505667 -5569285 L 504573.9 -5569002 L 504549 -5569032 L 504250.4 -5569151 L 504038.1 -5569392 L 503763.7 -5569597 L 502734.3 -5568734 L 502265 -5568487 L 501467.7 -5568177 L 501236.3 -5568371 L 501011.9 -5568575 L 501287.3 -5569266 L 501231.8 -5570332 L 502721 -5570750 L 503303.6 -5570258 L 504072 -5570165 L 503884.5 -5570755 L 504080.9 -5570996 L 503825.6 -5571242 L 503540.2 -5571451 L 503748.7 -5571700 L 504312 -5572388 L 504817 -5572946 L 505900.9 -5573148 L 506199.3 -5573385 L 506005 -5573667 L 505794.7 -5573938 L 505468.1 -5574037 L 504455.7 -5575350 L 504509.7 -5575780 L 504299.5 -5576071 L 503484.6 -5577229 L 503205.5 -5577123 L 502922.5 -5577030 L 502665.2 -5577287 L 501120.4 -5578742 L 500900.4 -5578672 L 500684.7 -5578751 L 500751.4 -5579087 L 500363.8 -5580020 L 500285.6 -5580355 L 499736 -5581230 L 499489.6 -5582696 L 499027.3 -5583285 L 498787.1 -5583579 L 499584.3 -5583447 L 499849.7 -5583251 L 501237.7 -5583601 L 502133.6 -5584203 L 502275.3 -5584539 L 502841.1 -5585478 L 502950.9 -5585833 L 504604.5 -5586104 L 504866.8 -5585874 L 505260 -5586069 L 505491.2 -5587537 L 505998.2 -5588117 L 505673.7 -5588257 L 505005.6 -5588464 L 504915.7 -5589762 L 504662.5 -5589589 L 504367.5 -5589502 L 504024.4 -5589358 L 503142.3 -5588205 L 502924.8 -5587942 L 502306.9 -5588225 L 501341.8 -5587917 L 501372.6 -5588290 L 501371.9 -5589036 L 500773.3 -5589467 L 501408.5 -5590569 L 501579 -5590854 L 501429.3 -5591356 L 501682.8 -5591643 L 501920.9 -5592603 L 500965.2 -5593295 L 500788 -5593573 L 500507.8 -5593823 L 499786.7 -5594007 L 499476.5 -5594252 L 497695.4 -5595802 L 496698.9 -5595707 L 496383.7 -5595542 L 495007 -5595254 L 494714.7 -5595025 L 493816.8 -5594370 L 493604.4 -5594549 L 493441 -5594774 L 493213.5 -5594502 L 491827.3 -5595254 L 491776 -5596360 L 492342.9 -5597722 L 492190.8 -5598060 L 492187.1 -5598580 L 491869.9 -5598394 L 491582.7 -5598248 L 490416.2 -5597708 L 490063.3 -5597650 L 489713.4 -5597580 L 489325.5 -5597505 L 487768 -5597253 L 487031.2 -5597536 L 486766.6 -5597615 L 486278.4 -5597404 L 485929.9 -5597518 L 486110.4 -5598562 L 485779.1 -5599565 L 485631 -5599886 L 486645.7 -5600062 L 486957 -5599892 L 487101.5 -5601747 L 486622.4 -5603181 L 485567.9 -5603448 L 485267.6 -5603653 L 485481.3 -5604012 L 486625.3 -5606372 L 487797.7 -5607301 L 488074.1 -5607556 L 488285.4 -5607753 L 488999.9 -5608600 L 490110.9 -5608558 L 490481.6 -5608551 L 490755.9 -5608749 L 491007.3 -5608976 L 490801.2 -5609277 L 489301.5 -5611337 L 489098.4 -5611627 L 488271.7 -5612279 L 487591.4 -5612345 L 487373.1 -5612567 L 486740.4 -5613248 L 486511.8 -5612929 L 485847.4 -5612539 L 483941.2 -5612619 L 483215.4 -5611264 L 483189.2 -5611183 L 485253.3 -5609536 L 485535.4 -5609280 L 484981.6 -5608784 L 483568 -5609258 L 483258.7 -5609046 L 482553.2 -5607056 L 482620.3 -5606314 L 482312.1 -5606134 L 480821.8 -5607098 L 480302.6 -5608826 L 478851.8 -5608808 L 477870.8 -5609256 L 477787.8 -5609624 L 477118.8 -5609395 L 476848.4 -5608396 L 475041.1 -5608099 L 474056.6 -5607592 L 473057.1 -5608616 L 472864.1 -5609328 L 471451.8 -5609127 L 471381.8 -5609473 L 470847.9 -5609723 L 470658.2 -5609419 L 469676.6 -5609241 L 469371.5 -5608344 L 469190.5 -5608682 L 468471.8 -5608582 L 467782.2 -5608888 L 467251.3 -5610277 L 466880.9 -5610380 L 465309.5 -5609375 L 464964.4 -5609214 L 464227 -5609193 L 462934.2 -5609969 L 462719.3 -5610293 L 461367.1 -5611634 L 461031.9 -5611822 L 459910.4 -5612019 L 459307.6 -5612995 L 458925 -5613035 L 458815.2 -5613436 L 458471 -5613605 L 457925.2 -5614611 L 456272.2 -5613737 L 455772.2 -5614317 L 455548.1 -5614572 L 455226 -5615163 L 455486.5 -5615430 L 456840.8 -5616698 L 455457.5 -5617927 L 455457.4 -5617947 L 455168.1 -5618109 L 454552.8 -5618881 L 454370.8 -5619167 L 454356.7 -5619836 L 453596.7 -5620301 L 453786.6 -5621415 L 455314.5 -5622609 L 456624.3 -5622976 L 458710.9 -5624264 L 458404.3 -5624316 L 458211.9 -5624815 L 457956.9 -5625078 L 456963 -5625482 L 456604.7 -5625614 L 456106.6 -5626103 L 455490.9 -5625268 L 455109.3 -5625263 L 453721.4 -5625890 L 452205.4 -5626077 L 451756.4 -5626612 L 451507 -5626374 L 450046.9 -5625498 L 450029.9 -5625862 L 449992 -5626588 L 449003.8 -5626200 L 447679.7 -5626749 L 447414.5 -5626931 L 446839.3 -5627703 L 446637.3 -5627986 L 445723.1 -5628975 L 445440 -5629206 L 444789.9 -5629289 L 444762.9 -5629628 L 444656.9 -5630291 L 444752.8 -5630626 L 444400.9 -5631223 L 444488.8 -5632244 L 444323 -5632598 L 444076.1 -5632903 L 444154.2 -5633655 L 443229.2 -5635695 L 443250.3 -5636079 L 443144.5 -5636444 L 441657.3 -5640224 L 441564.5 -5640582 L 441502.7 -5640948 L 440594.6 -5642924 L 440205.3 -5644324 L 439949.4 -5644591 L 439540.1 -5646335 L 439009.2 -5646822 L 438811.4 -5647129 L 438643.5 -5647436 L 438581.7 -5648132 L 437718.4 -5648706 L 437807.4 -5649065 L 437537.6 -5649351 L 436338.7 -5650876 L 436203.9 -5650980 L 436534.1 -5650997 L 437206.7 -5651261 L 440222.8 -5652411 L 442163.2 -5652741 L 444017 -5653754 L 445378.2 -5653977 L 446636.7 -5654705 L 447687 -5655039 L 448906.7 -5655052 L 453520.3 -5656284 L 453780.5 -5656170 L 454449.2 -5656511 L 455256.4 -5656145 L 455908.9 -5655823 L 456234.5 -5655916 L 456816.2 -5655488 L 457827.8 -5656075 L 460037.8 -5656597 L 464219.1 -5658316 L 468271.4 -5660244 L 468770 -5658823 L 469324.7 -5657451 L 470150.2 -5652453 L 469896 -5651497 L 470382.8 -5649995 L 470991.6 -5649544 L 472491.8 -5649063 L 472661.4 -5648741 L 472571.2 -5648049 L 472939 -5646872 L 473071.7 -5646680 L 473517.4 -5646037 L 473980.2 -5644508 L 473388.4 -5643687 L 473261.9 -5643197 L 471193.9 -5640974 L 471545.1 -5640585 L 472285.7 -5640523 L 472438.4 -5639563 L 472807.2 -5638845 L 472612.2 -5637256 L 472919.5 -5636737 L 472597 -5636109 L 472803.2 -5635101 L 472778.7 -5635051 L 471978.5 -5633402 L 472895.2 -5633375 L 473110.2 -5633157 L 473415.2 -5632206 L 474000.3 -5631244 L 474345.7 -5629531 L 475672 -5629448 L 475993.5 -5629618 L 476682.7 -5630520 L 477338.1 -5630148 L 477777.5 -5629534 L 478217.9 -5629380 L 479277.2 -5629538 L 480097.9 -5629403 L 480370.2 -5629197 L 480601.1 -5629022 L 480777.5 -5628573 L 480627.4 -5627573 L 480717 -5627322 L 481173.6 -5626863 L 481362.2 -5626186 L 482522.2 -5625407 L 483312.8 -5624405 L 483673.7 -5623355 L 483499.3 -5622811 L 484744.5 -5622342 L 485063.9 -5621595 L 485044.6 -5620525 L 485560.4 -5619432 L 487073.3 -5618463 L 487139.4 -5618421 L 487717 -5618553 L 489177.6 -5619293 L 489755.6 -5618941 L 490181.8 -5618098 L 490972.3 -5617096 L 492194.4 -5617060 L 492522.9 -5616618 L 493033 -5616447 L 493648.1 -5616695 L 494666 -5617020 L 494760.7 -5617826 L 494912.8 -5619123 L 495105.1 -5619566 L 495528.5 -5619733 L 495788.8 -5620252 L 495666.6 -5621182 L 496554.2 -5622095 L 498207 -5622184 L 498966.5 -5622802 L 499226.8 -5623320 L 499937.6 -5623503 L 500976.8 -5624280 L 502126.5 -5624342 L 503385.1 -5625058 L 504028 -5625165 L 504443.8 -5625013 L 505571.9 -5624600 L 506218.7 -5624636 L 507801.8 -5626018 L 509862.5 -5626562 L 510684 -5626030 L 510650.9 -5625307 L 511848.9 -5623139 L 512678.1 -5622463 L 512948 -5621469 L 513262.6 -5620981 L 514084.8 -5620357 L 514294.6 -5619757 L 513874.7 -5619047 L 514683.4 -5618657 L 515156.2 -5617893 L 516482.4 -5617810 L 517121 -5617586 L 518132.7 -5616200 L 518118.3 -5615249 L 518939.4 -5614147 L 518724.8 -5613881 L 517238.9 -5613140 L 517021.3 -5612753 L 516924.1 -5611883 L 517193.9 -5610889 L 517512.3 -5610329 L 517331.6 -5609671 L 517923.7 -5608046 L 519306.2 -5606463 L 519383.7 -5605026 L 519618.6 -5604679 L 519453.4 -5603733 L 519874.6 -5602603 L 519733.2 -5602037 L 519637.5 -5601653 L 520043.2 -5600811 L 519555.7 -5600496 L 519938.2 -5600084 L 519678 -5599566 L 519607.9 -5598193 L 520767 -5596743 L 523889.4 -5594966 L 525134.2 -5594600 L 526580.7 -5593166 L 527083.7 -5593193 L 527248.7 -5593391 L 527963.6 -5594249 L 528606.4 -5594356 L 529332.7 -5594251 L 530179.5 -5594585 L 530379.5 -5594884 L 531608.7 -5594806 L 532032.1 -5594973 L 532401.3 -5596146 L 533265.8 -5597490 L 534934 -5597291 L 536190.3 -5596711 L 536648.6 -5596231 L 535443.9 -5594685 L 535300.4 -5594501 L 535051.7 -5593767 L 535253.4 -5592697 L 536395.3 -5592903 L 537945.2 -5593563 L 539023 -5593621 L 539941.7 -5593959 L 540607.7 -5593635 L 541296.9 -5592879 L 541792.2 -5593050 L 542763.4 -5593751 L 543206.1 -5593559 L 544592.2 -5591904 L 544813.9 -5591087 L 544861.8 -5590910 L 545921.8 -5589958 L 546360.7 -5589838 L 546822.7 -5589286 L 546828.2 -5587846 L 547536.7 -5586731 L 547522.8 -5585650 L 547876 -5584443 L 547801.8 -5583143 L 547976.5 -5582576 L 547142.8 -5580657 L 546917.2 -5579493 L 547016.1 -5578993 L 547318.9 -5578722 L 547452.6 -5577576 L 548001.9 -5576741 L 548211.3 -5575528 L 548908.1 -5574628 L 548791.4 -5574118 L 549476.7 -5573434 L 550290.3 -5573046 L 550573.8 -5573133 L 550447.9 -5574135 L 550651.8 -5574362 L 551847.8 -5573562 L 552044 -5573933 L 551906.5 -5575150 L 552328.4 -5576686 L 552924.8 -5577655 L 553661.9 -5577819 L 554010.3 -5577569 L 555049.5 -5578346 L 556797 -5578008 L 557791.3 -5578277 L 557738.8 -5577914 L 558276.4 -5577295 L 558556.1 -5577454 L 558672.8 -5577965 L 560457.5 -5578277 L 561907.6 -5576770 L 562422.2 -5576581 L 562909.7 -5576896 L 563212.6 -5576624 L 563394.8 -5575913 L 564578 -5575570 L 566480.5 -5576151 L 568147.1 -5577322 L 568646.3 -5577421 L 569028.7 -5577009 L 569652.3 -5577475 L 570246.4 -5577147 L 570902.9 -5577539 L 571573 -5577938 L 572291.6 -5577977 L 572616.1 -5578643 L 573111.4 -5578814 L 573414.3 -5578542 L 573903.1 -5577488 L 574357.4 -5577080 L 575091.3 -5576831 L 575357 -5575908 L 576090.9 -5575660 L 576545.2 -5575252 L 577272.8 -5573778 L 577896.3 -5574244 L 578486.6 -5573987 L 579781.2 -5572688 L 580047.7 -5571716 L 580229 -5571055 L 580123.8 -5570329 L 580298.3 -5569762 L 580729.4 -5569785 L 580968.1 -5569365 L 581006.6 -5568647 L 581396.7 -5568092 L 582262.8 -5568066 L 583393.2 -5568487 L 583498.4 -5569213 L 582226.9 -5570081 L 582335.9 -5570736 L 582740.1 -5571262 L 583235.3 -5571433 L 583685.6 -5571097 L 583935.9 -5570462 L 584462 -5570058 L 585475.6 -5569968 L 585944.6 -5569732 L 585993.9 -5569708 L 586459.6 -5569084 L 586785.5 -5568381 L 586695.7 -5567368 L 586295.4 -5566770 L 584148.8 -5565141 L 584043.6 -5564415 L 583583.1 -5563598 L 582513 -5563397 L 582316.7 -5563026 L 583055.8 -5561336 L 582894.1 -5560319 L 582493.8 -5559721 L 582180.7 -5558839 L 582238.4 -5558624 L 582333 -5558269 L 582541.2 -5557490 L 581233.9 -5556339 L 581287.8 -5555333 L 580770.8 -5554225 L 581228.8 -5553745 L 581954.9 -5553640 L 582593.8 -5553818 L 583421.4 -5554511 L 584490.3 -5554445 L 585300.9 -5554396 L 585887.2 -5554211 L 585782 -5553485 L 585983.4 -5552415 L 585734.5 -5551681 L 586122.1 -5551235 L 586272 -5551062 L 586071.8 -5550763 L 586087.2 -5550475 L 586760.8 -5550007 L 587533 -5549040 L 588085.9 -5548134 L 588116.7 -5547559 L 587860.1 -5546969 L 585906.2 -5545783 L 585434 -5545181 L 584874.7 -5544863 L 584144.7 -5545040 L 583282.6 -5544994 L 582938.8 -5544687 L 582025.3 -5542909 L 581832.9 -5542466 L 581831.4 -5541961 L 581849.5 -5540811 L 582190.7 -5539820 L 582765.5 -5539851 L 583277.1 -5539277 L 583378.6 -5539164 L 582181.6 -5537298 L 581956.3 -5536991 L 581633.6 -5536847 L 579384.4 -5536155 L 579015.6 -5536234 L 577914.3 -5536032 L 577578.1 -5537061 L 577220.3 -5537173 L 575048.3 -5537682 L 574071.6 -5537249 L 573802.8 -5537347 L 573380.4 -5537690 L 572651.4 -5537674 L 572233.2 -5538685 L 570786.2 -5538618 L 570446 -5538482 L 570387 -5539591 L 571439.9 -5542369 L 571146.9 -5543448 L 571016.5 -5543798 L 570494.1 -5544117 L 568185.8 -5542155 L 568073.4 -5542451 L 567693.5 -5542459 L 566252.9 -5542063 L 566034.4 -5541766 L 563718.8 -5540193 L 563722.5 -5540580 L 563661.6 -5541729 L 563056.6 -5542208 L 563413.8 -5542337 L 563338.5 -5542708 L 562361.7 -5543281 L 560878.5 -5543590 L 560078.1 -5544389 L 559732.9 -5544273 L 558564.5 -5543400 L 558216.9 -5543573 L 556961.7 -5544412 L 555841.4 -5544145 L 555645.1 -5544487 L 555337.6 -5544701 L 553528.4 -5544966 L 553303 -5545245 L 551761 -5546124 L 551325.2 -5546692 L 550981.7 -5546379 L 550639.6 -5546281 L 548089.8 -5545087 L 547791.8 -5545041 L 547255.5 -5544336 L 547215.7 -5543405 L 547543.4 -5543264 L 547239.1 -5542590 L 546191.2 -5543061 L 545256.3 -5542501 L 544896.1 -5542359 L 544638.7 -5542140 L 544113 -5541717 L 543875.5 -5541967 L 543724.1 -5542275 L 543649.9 -5542650 L 542674.4 -5543803 L 541598.3 -5544150 L 541335.8 -5544387 L 540774.8 -5544797 L 539960.2 -5544895 L 539590.3 -5544878 L 538909.1 -5544673 L 538065.4 -5543213 L 536509 -5542827 L 536431.5 -5542588 L 536301.9 -5542274 L 535222.6 -5540980 L 534848.8 -5541051 L 530752.3 -5541303 L 530799.9 -5541602 L 530544.5 -5541879 L 529860.6 -5541817 L 528645.7 -5542682 L 528217 -5542297 L 527836.1 -5542287 L 526905.6 -5542876 L 525392.9 -5542794 L 525186.3 -5542475 L 525291.6 -5542127 L 524714.9 -5541741 L 524250 -5540753 L 523573.8 -5540579 L 522256 -5540963 L 521939.9 -5540862 L 521623.8 -5540763 L 520556.5 -5540492 L 519689.9 -5541057 L 520006.1 -5541191 L 519487.1 -5542078 L 519232.3 -5542150 L 518972.5 -5542207 L 518631.8 -5542293 L 518421.4 -5541628 L 517767.1 -5541877 L 517631.8 -5542201 L 517576.9 -5542231 L 516852.5 -5541951 L 516520 -5542149 L 514671.6 -5540777 L 512459.8 -5540119 L 512352.6 -5540467 L 512049.1 -5541118 L 511731.8 -5540932 L 510642 -5540869 L 510753.5 -5541593 L 508936.9 -5541502 L 508788.6 -5541779 L 508272.4 -5542508 L 508179.8 -5543140 L 506945.8 -5543863 L 506550.9 -5544754 L 506552.1 -5544754 z M 500376.4 -5555474 L 500667.9 -5555310 L 501177.6 -5555725 L 501480.8 -5555869 L 501708.3 -5555673 L 501988.9 -5555569 L 502677.8 -5555628 L 502904 -5556202 L 502999.7 -5556535 L 504412.1 -5557441 L 504598.5 -5558098 L 506230.1 -5557789 L 506552.2 -5557876 L 506707.6 -5557173 L 506967.9 -5556917 L 506695.4 -5556643 L 504956.8 -5555177 L 505257.4 -5553702 L 505281.5 -5553323 L 504918.1 -5553091 L 504574.7 -5553279 L 503835.5 -5553499 L 502753.5 -5553297 L 502592.8 -5552970 L 501863.3 -5551719 L 500859.8 -5551321 L 500660.6 -5551634 L 500138.9 -5552133 L 500274.3 -5553228 L 499726.6 -5554140 L 500376.4 -5555474 L 500376.4 -5555474 z " |
id="path693" /> |
<path |
d="M 506552.1 -5544754 L 506340.5 -5544437 L 505421.4 -5543815 L 505216.1 -5544088 L 504261.2 -5544430 L 503948.7 -5544601 L 502264.5 -5545168 L 501965.4 -5545091 L 501869.8 -5544798 L 501656.5 -5545098 L 500943.1 -5545231 L 500574.4 -5544849 L 500276.1 -5544669 L 499642.7 -5544384 L 499277.6 -5544261 L 498040.1 -5543380 L 497824.7 -5543638 L 497345.5 -5544355 L 497050.9 -5544465 L 496458.6 -5544678 L 496077.7 -5544642 L 495785.2 -5544394 L 495689.5 -5544046 L 495413.1 -5543813 L 495115.9 -5543679 L 494362.3 -5544188 L 494131.1 -5542737 L 492636.9 -5542852 L 491668.9 -5542259 L 491169 -5541793 L 491370.3 -5541517 L 490838.6 -5541135 L 489778.6 -5541416 L 489711.2 -5541693 L 489544.1 -5542037 L 490037.1 -5542537 L 490757.2 -5542677 L 491221.4 -5543708 L 490393.7 -5545456 L 490111 -5545537 L 489819.2 -5545576 L 489693.1 -5545941 L 489734.6 -5547467 L 489359.8 -5547477 L 488470.6 -5546806 L 487995.5 -5545823 L 487744.2 -5546098 L 486508.2 -5545461 L 486272.9 -5545750 L 486058.3 -5545444 L 485443.4 -5544507 L 485357.1 -5544373 L 484382 -5544187 L 484007.7 -5543571 L 482318.7 -5543301 L 482082.5 -5543591 L 481617 -5544159 L 481871.5 -5544394 L 483158.7 -5545553 L 483038.5 -5545868 L 482960.1 -5546530 L 483211.6 -5546801 L 483937.2 -5547622 L 484472.1 -5548941 L 484350.6 -5549544 L 484212.4 -5549868 L 484239.2 -5550199 L 484416.4 -5551171 L 484206.2 -5551462 L 483195.8 -5551104 L 482172.8 -5551363 L 482003.6 -5551665 L 480777.9 -5552821 L 480439.2 -5552879 L 479146.8 -5552891 L 479593.3 -5551083 L 478873.9 -5550807 L 478446.7 -5550241 L 479702.9 -5548850 L 479970.1 -5548574 L 479731.6 -5548322 L 478881.8 -5547839 L 478689.6 -5548164 L 478011 -5549071 L 477353.1 -5549409 L 476615 -5549255 L 476410.7 -5549531 L 475506.2 -5550000 L 475315.7 -5549752 L 474858.9 -5549351 L 474633.7 -5549639 L 474020.8 -5549979 L 473797.5 -5550237 L 473657.3 -5550548 L 473664.9 -5550789 L 473382.6 -5551019 L 472307.3 -5551111 L 470956.9 -5550723 L 470802.7 -5551009 L 469729.3 -5551485 L 469540 -5551724 L 469282.5 -5552275 L 469306.1 -5552520 L 470270.3 -5553575 L 470534.6 -5554153 L 470228.9 -5554231 L 469879.3 -5554350 L 469226.7 -5554006 L 468964.4 -5554261 L 468012.8 -5554652 L 467651.4 -5554031 L 467770 -5552664 L 467563.3 -5552344 L 466629.1 -5551700 L 465409.7 -5554572 L 465057.9 -5554566 L 463699.7 -5554234 L 462618 -5554153 L 462144.3 -5553798 L 461826.9 -5553587 L 461115.1 -5553532 L 461085.4 -5553239 L 460746.4 -5552781 L 460557.2 -5552266 L 460462.6 -5552008 L 460323.8 -5551650 L 459252 -5548765 L 458896 -5548710 L 458385.2 -5549128 L 458180.9 -5550160 L 457823.2 -5550225 L 456962.1 -5550822 L 456787.2 -5551234 L 455394.6 -5551142 L 455717.2 -5552244 L 456147.7 -5554492 L 456600 -5555092 L 456481 -5556243 L 457123 -5556374 L 457338.5 -5556994 L 457448.2 -5557303 L 457986.5 -5557121 L 458252.6 -5557226 L 458332.2 -5557872 L 458285.1 -5558220 L 458716.3 -5558387 L 459733.2 -5558932 L 460478.7 -5558883 L 460862.3 -5558801 L 462217.1 -5559776 L 462521.3 -5559915 L 463046.8 -5560199 L 463344.7 -5560208 L 463827.1 -5560466 L 464085.2 -5560560 L 464017.9 -5560834 L 464044.6 -5561116 L 463871.5 -5561444 L 463612.3 -5561710 L 463349.3 -5562038 L 463004.6 -5562077 L 461870.9 -5562765 L 461532.6 -5563360 L 461333.4 -5563626 L 461005.9 -5564550 L 460638.8 -5564457 L 459915.6 -5564231 L 459572.9 -5564290 L 458528.6 -5564357 L 457793.7 -5565032 L 457476.6 -5564914 L 456530.7 -5563982 L 456202.1 -5564057 L 455921 -5563959 L 455768.2 -5563640 L 454964.7 -5562133 L 454527.6 -5562032 L 452771.6 -5565155 L 452644.3 -5565386 L 452507 -5565612 L 452218.6 -5565408 L 451208.3 -5565107 L 451310.4 -5564769 L 451637.6 -5564926 L 452373 -5563683 L 452063.7 -5562726 L 451929.6 -5563043 L 451447.8 -5563405 L 450247.6 -5562728 L 449908 -5562815 L 449468.6 -5563361 L 449261.5 -5563673 L 447957.1 -5564387 L 446802.9 -5562956 L 445823 -5562799 L 445181.6 -5562523 L 444934.1 -5562301 L 444734.8 -5563277 L 443975.2 -5563285 L 443333.5 -5562913 L 442980.1 -5563054 L 442947.3 -5562746 L 442103.9 -5562452 L 441800.2 -5562494 L 441440.6 -5562194 L 441070 -5562265 L 439362.7 -5560343 L 439167.6 -5560661 L 438802.5 -5561688 L 438584.3 -5561962 L 437404.5 -5562576 L 436866.6 -5561757 L 436564.2 -5561943 L 435592.4 -5562192 L 434803.1 -5561577 L 434745.1 -5561935 L 434678 -5563355 L 434450.9 -5563630 L 433614.7 -5564496 L 433585.5 -5565151 L 433293.1 -5565318 L 433352.9 -5566000 L 434315.9 -5566894 L 434139.7 -5567167 L 433369.5 -5567674 L 432986.6 -5567651 L 432248.4 -5567816 L 431483.1 -5568638 L 431236.9 -5568880 L 430669.3 -5569260 L 429640.4 -5569099 L 429029.5 -5569377 L 428846.2 -5569607 L 428389.5 -5569978 L 426661.6 -5570753 L 425972.5 -5571659 L 425673.4 -5571558 L 425213.6 -5571192 L 424953.2 -5571368 L 424156.3 -5572677 L 426009.1 -5574010 L 426310.9 -5574722 L 426344.9 -5575073 L 425070.9 -5576235 L 424708.9 -5576149 L 423134.1 -5574161 L 421666.2 -5574267 L 421651 -5574554 L 421276.9 -5574811 L 420906.1 -5574805 L 420007.1 -5575339 L 419586.1 -5576652 L 418388 -5577406 L 418360.6 -5577612 L 417978 -5577695 L 416253.2 -5578468 L 416018 -5578689 L 415045 -5579526 L 414741.2 -5579526 L 414138.5 -5579527 L 413774.8 -5579554 L 411999.5 -5579803 L 411506.3 -5579305 L 410453.1 -5579042 L 409706.4 -5578310 L 409382.9 -5578082 L 407829 -5577811 L 407179 -5577360 L 407023.4 -5577811 L 406876.4 -5577455 L 405218.4 -5576491 L 404843.9 -5576577 L 404994.8 -5576917 L 404103.1 -5577520 L 403738.4 -5577558 L 403412.6 -5578909 L 402739.1 -5579964 L 402856.9 -5580265 L 402288 -5581010 L 401373.6 -5580802 L 401363 -5580818 L 401070.8 -5581245 L 400498.4 -5581495 L 400811.9 -5581817 L 399588.4 -5581880 L 398204.7 -5583539 L 397657.6 -5583791 L 397513.5 -5584114 L 397567.8 -5584340 L 398387.1 -5587737 L 398744.6 -5589219 L 399300.9 -5593628 L 399346.1 -5596634 L 399618.1 -5597947 L 399853.1 -5599080 L 400184 -5599556 L 400558.9 -5599677 L 400868.4 -5599108 L 401343.4 -5599260 L 401587.6 -5598967 L 402019.9 -5599448 L 401539.5 -5599881 L 401156.6 -5600879 L 400195.9 -5601746 L 399664.7 -5602660 L 399477.9 -5603313 L 399707.4 -5607653 L 399552.6 -5609147 L 399646.7 -5609925 L 399676.7 -5610172 L 399553.9 -5610573 L 399720.7 -5610786 L 399488.5 -5611334 L 399046.8 -5614901 L 398653.2 -5616103 L 398634.5 -5616942 L 398670.5 -5617708 L 399476.5 -5619303 L 398997.2 -5620228 L 399256.3 -5620306 L 399616.6 -5620023 L 400473.3 -5621137 L 400752.2 -5620668 L 401203.2 -5620794 L 400955 -5621163 L 400840.3 -5621895 L 401067.2 -5622900 L 400948.4 -5623225 L 401513 -5624095 L 401743.9 -5625507 L 401562.5 -5627025 L 401870.8 -5628900 L 401773.4 -5629303 L 401425.1 -5629641 L 400802 -5631824 L 400025.5 -5635476 L 400296.5 -5636611 L 400651.9 -5636905 L 402591.9 -5636959 L 403789 -5637404 L 405838.8 -5638554 L 406969.3 -5639785 L 407720.1 -5640916 L 408123.8 -5641525 L 409587.9 -5643180 L 410902.5 -5644293 L 412553.4 -5645296 L 414296.4 -5645997 L 415281.2 -5646125 L 416051.3 -5646471 L 417062.8 -5646574 L 419000.7 -5647439 L 419327.5 -5647023 L 419450.4 -5647589 L 421577.6 -5648235 L 421749.7 -5647862 L 422170.1 -5648088 L 422426.4 -5648534 L 423668.2 -5649128 L 423741 -5649162 L 424805.9 -5649218 L 425778.8 -5649574 L 426093.7 -5649386 L 427158.6 -5649442 L 430763.2 -5650520 L 433839.2 -5650528 L 434430.4 -5650889 L 436204.6 -5650982 L 436339.4 -5650878 L 437538.3 -5649353 L 437808.1 -5649067 L 437719.1 -5648708 L 438582.4 -5648134 L 438644.2 -5647438 L 438812.1 -5647131 L 439009.9 -5646824 L 439540.8 -5646337 L 439950.1 -5644593 L 440206 -5644326 L 440595.3 -5642926 L 441503.4 -5640950 L 441565.2 -5640584 L 441658 -5640226 L 443145.2 -5636446 L 443251 -5636081 L 443229.9 -5635697 L 444154.9 -5633657 L 444076.8 -5632905 L 444323.7 -5632600 L 444489.5 -5632246 L 444401.6 -5631225 L 444753.5 -5630628 L 444657.6 -5630293 L 444763.6 -5629630 L 444790.6 -5629291 L 445440.7 -5629208 L 445723.8 -5628977 L 446638 -5627988 L 446840 -5627705 L 447415.2 -5626933 L 447680.4 -5626751 L 449004.5 -5626203 L 449992.7 -5626590 L 450030.6 -5625864 L 450047.6 -5625501 L 451507.7 -5626376 L 451757.1 -5626615 L 452206.1 -5626079 L 453722.1 -5625892 L 455110 -5625265 L 455491.6 -5625270 L 456107.3 -5626105 L 456605.4 -5625616 L 456963.7 -5625484 L 457957.6 -5625081 L 458212.6 -5624817 L 458405 -5624318 L 458711.6 -5624266 L 456625 -5622978 L 455315.2 -5622611 L 453787.3 -5621417 L 453597.4 -5620303 L 454357.4 -5619838 L 454371.5 -5619169 L 454553.5 -5618883 L 455168.8 -5618111 L 455458.1 -5617949 L 455458 -5617929 L 456841.3 -5616700 L 455487 -5615432 L 455226.5 -5615165 L 455548.6 -5614574 L 455772.7 -5614319 L 456272.7 -5613739 L 457925.7 -5614613 L 458471.5 -5613607 L 458815.7 -5613438 L 458925.5 -5613037 L 459308.1 -5612997 L 459910.9 -5612021 L 461032.4 -5611824 L 461367.6 -5611636 L 462719.8 -5610295 L 462934.7 -5609971 L 464227.5 -5609195 L 464964.9 -5609216 L 465310 -5609377 L 466881.4 -5610382 L 467251.8 -5610279 L 467782.7 -5608890 L 468472.3 -5608584 L 469191 -5608684 L 469372 -5608346 L 469677.1 -5609243 L 470658.7 -5609421 L 470848.4 -5609725 L 471382.3 -5609475 L 471452.3 -5609129 L 472864.6 -5609330 L 473057.6 -5608618 L 474057.1 -5607594 L 475041.6 -5608101 L 476848.9 -5608398 L 477119.3 -5609397 L 477788.3 -5609626 L 477871.3 -5609258 L 478852.3 -5608810 L 480303.1 -5608829 L 480822.3 -5607100 L 482312.6 -5606136 L 482620.8 -5606316 L 482553.7 -5607058 L 483259.2 -5609048 L 483568.5 -5609260 L 484982.1 -5608786 L 485535.9 -5609282 L 485253.8 -5609538 L 483189.7 -5611185 L 483215.9 -5611266 L 483941.7 -5612621 L 485847.9 -5612541 L 486512.3 -5612931 L 486740.9 -5613250 L 487373.6 -5612569 L 487591.9 -5612347 L 488272.2 -5612281 L 489098.9 -5611629 L 489302 -5611340 L 490801.7 -5609279 L 491007.8 -5608978 L 490756.4 -5608751 L 490482.1 -5608553 L 490111.4 -5608560 L 489000.4 -5608602 L 488285.9 -5607755 L 488074.6 -5607558 L 487798.2 -5607303 L 486625.8 -5606374 L 485481.8 -5604014 L 485268.1 -5603655 L 485568.4 -5603451 L 486622.9 -5603183 L 487102 -5601749 L 486957.5 -5599894 L 486646.2 -5600064 L 485631.5 -5599889 L 485779.6 -5599567 L 486110.9 -5598564 L 485930.4 -5597520 L 486278.9 -5597406 L 486767.1 -5597617 L 487031.7 -5597538 L 487768.5 -5597255 L 489326 -5597507 L 489713.9 -5597582 L 490063.8 -5597652 L 490416.7 -5597710 L 491583.2 -5598250 L 491870.4 -5598396 L 492187.6 -5598582 L 492191.3 -5598062 L 492343.4 -5597724 L 491776.5 -5596362 L 491827.8 -5595257 L 493214 -5594504 L 493441.5 -5594776 L 493604.9 -5594551 L 493817.3 -5594372 L 494715.2 -5595027 L 495007.5 -5595256 L 496384.2 -5595544 L 496699.4 -5595709 L 497695.9 -5595804 L 499477 -5594254 L 499787.2 -5594009 L 500508.3 -5593825 L 500788.5 -5593575 L 500965.7 -5593297 L 501921.4 -5592605 L 501683.3 -5591645 L 501429.8 -5591358 L 501579.5 -5590857 L 501409 -5590571 L 500773.8 -5589469 L 501372.4 -5589038 L 501371.7 -5588292 L 501340.9 -5587919 L 502306 -5588227 L 502923.9 -5587944 L 503141.4 -5588207 L 504023.5 -5589360 L 504366.6 -5589504 L 504661.6 -5589591 L 504914.8 -5589764 L 505004.7 -5588466 L 505672.8 -5588259 L 505997.3 -5588119 L 505490.3 -5587539 L 505259.1 -5586072 L 504865.9 -5585876 L 504603.6 -5586106 L 502950 -5585835 L 502840.2 -5585480 L 502274.4 -5584541 L 502132.7 -5584205 L 501236.8 -5583603 L 499848.8 -5583253 L 499583.4 -5583449 L 498786.2 -5583581 L 499026.4 -5583287 L 499488.7 -5582698 L 499735.1 -5581232 L 500284.7 -5580357 L 500362.9 -5580022 L 500750.5 -5579089 L 500683.8 -5578753 L 500899.5 -5578675 L 501119.5 -5578744 L 502664.3 -5577289 L 502921.6 -5577032 L 503204.6 -5577125 L 503483.7 -5577231 L 504298.6 -5576073 L 504508.8 -5575782 L 504454.8 -5575353 L 505467.2 -5574039 L 505793.8 -5573940 L 506004.1 -5573669 L 506198.4 -5573387 L 505900 -5573150 L 504816.1 -5572948 L 504311.1 -5572390 L 503747.8 -5571702 L 503539.3 -5571453 L 503824.7 -5571244 L 504080 -5570998 L 503883.6 -5570757 L 504071.1 -5570167 L 503302.7 -5570260 L 502720.1 -5570752 L 501230.9 -5570334 L 501286.4 -5569268 L 501011 -5568578 L 501235.4 -5568374 L 501466.8 -5568179 L 502264.1 -5568489 L 502733.4 -5568736 L 503762.8 -5569599 L 504037.2 -5569394 L 504249.5 -5569153 L 504548.1 -5569034 L 504573 -5569004 L 505666.1 -5569287 L 507446 -5568728 L 507811.6 -5568642 L 509247.4 -5568401 L 509615.2 -5568385 L 509994.8 -5568276 L 510896.6 -5567931 L 511135 -5567716 L 510806.3 -5567791 L 510636.8 -5566161 L 511902.2 -5565704 L 512571.6 -5565576 L 513150.5 -5564765 L 513469.7 -5564909 L 513491.2 -5564214 L 513274.7 -5563941 L 513025.3 -5563719 L 512900.1 -5563145 L 510692.1 -5563151 L 510323.3 -5563160 L 509591.5 -5561307 L 509493.8 -5560964 L 510051.1 -5560740 L 510329.7 -5560631 L 510626.5 -5559715 L 511205.4 -5559316 L 511292.6 -5558972 L 510944.4 -5558828 L 509943.5 -5557344 L 509614.4 -5557226 L 508220.2 -5557312 L 507329.4 -5556790 L 508136.3 -5555989 L 508367.6 -5555263 L 509421.3 -5554856 L 509800.1 -5554817 L 509786.3 -5554432 L 509452 -5554252 L 506968.4 -5552625 L 506798.8 -5552306 L 507524.8 -5551523 L 507563 -5551164 L 507655.1 -5550792 L 507584.3 -5550415 L 507944.2 -5550432 L 508190.8 -5549405 L 508260 -5549053 L 507519.5 -5547783 L 506454.2 -5547916 L 506368.6 -5547181 L 506885.3 -5546679 L 507114.6 -5546389 L 506799.3 -5546213 L 506235.9 -5545921 L 506237.7 -5544934 L 506551.2 -5544756 L 506552.1 -5544754 z M 500376.4 -5555474 L 499726.6 -5554140 L 500274.3 -5553228 L 500138.9 -5552133 L 500660.6 -5551634 L 500859.8 -5551321 L 501863.3 -5551719 L 502592.8 -5552970 L 502753.5 -5553297 L 503835.5 -5553499 L 504574.7 -5553280 L 504918.1 -5553092 L 505281.5 -5553323 L 505257.4 -5553702 L 504956.8 -5555177 L 506695.4 -5556643 L 506967.9 -5556917 L 506707.6 -5557173 L 506552.2 -5557876 L 506230.1 -5557789 L 504598.5 -5558098 L 504412.1 -5557441 L 502999.7 -5556535 L 502904 -5556202 L 502677.8 -5555628 L 501988.9 -5555569 L 501708.3 -5555673 L 501480.8 -5555869 L 501177.6 -5555725 L 500667.9 -5555310 L 500376.4 -5555474 L 500376.4 -5555474 z " |
id="path694" /> |
<path |
d="M 1030964 -4654937 L 1030001 -4654713 L 1026445 -4651214 L 1024984 -4650699 L 1024881 -4651446 L 1024295 -4651912 L 1022761 -4651877 L 1021700 -4651407 L 1019519 -4652172 L 1018764 -4652006 L 1018289 -4652589 L 1017979 -4652827 L 1018143 -4653180 L 1018518 -4655087 L 1018550 -4655823 L 1019494 -4657515 L 1019346 -4658644 L 1018052 -4659484 L 1016536 -4659371 L 1016244 -4659632 L 1017553 -4661422 L 1017192 -4661532 L 1016332 -4662233 L 1016740 -4663250 L 1016816 -4665803 L 1016461 -4665923 L 1016105 -4667341 L 1016180 -4667707 L 1015748 -4668273 L 1015912 -4671571 L 1015912 -4671939 L 1015529 -4671930 L 1012967 -4672072 L 1010819 -4671468 L 1010630 -4671805 L 1010042 -4672799 L 1008279 -4674232 L 1008368 -4674968 L 1008096 -4675217 L 1008105 -4678436 L 1007819 -4678691 L 1007142 -4680032 L 1006527 -4680488 L 1005548 -4681070 L 1004429 -4681109 L 1003657 -4681956 L 1002650 -4682473 L 1002940 -4683180 L 1001762 -4686425 L 1000670 -4686774 L 1000273 -4687422 L 1000317 -4687757 L 1000195 -4689351 L 1000088 -4689669 L 999800.7 -4690972 L 997975.3 -4690381 L 996930.5 -4690846 L 996544.2 -4690857 L 996472.7 -4691209 L 995504.4 -4691433 L 994549.5 -4692499 L 994204.4 -4692406 L 993983.5 -4692700 L 993654 -4693313 L 991458.1 -4693305 L 990808.8 -4693653 L 990351.5 -4694695 L 989765.3 -4695152 L 989550.4 -4695467 L 989248.2 -4695716 L 988122.9 -4695407 L 987745.9 -4695308 L 987457.8 -4695577 L 985709.1 -4697164 L 985753 -4697547 L 985861.4 -4698653 L 985122.5 -4699504 L 983726.7 -4700101 L 983530.4 -4703498 L 983165.2 -4703624 L 980231.7 -4701876 L 977648.4 -4702662 L 976499.1 -4702528 L 976109.9 -4702529 L 974771.8 -4703898 L 972471.1 -4703939 L 972140 -4704141 L 971237.9 -4704783 L 969042.7 -4704681 L 968684.7 -4704569 L 968419.1 -4705688 L 966133.4 -4705920 L 964664.3 -4707107 L 963517.2 -4706889 L 962760 -4707079 L 961700.5 -4706581 L 960488.4 -4707451 L 959720.2 -4707622 L 959333.1 -4707693 L 958702.4 -4707850 L 959074.6 -4708261 L 959841.7 -4708258 L 960094.6 -4708819 L 960888.5 -4708536 L 961227.1 -4709003 L 961487.7 -4708952 L 961675.7 -4709123 L 961154.2 -4709765 L 961140.7 -4710173 L 961552.9 -4710673 L 961500.8 -4710950 L 961171.6 -4710919 L 961048.4 -4711137 L 961306.2 -4711649 L 962558.6 -4712715 L 963125.6 -4712666 L 963334 -4712892 L 963919.6 -4712788 L 964374 -4712708 L 964575.9 -4711934 L 964907.7 -4711939 L 964815.7 -4712366 L 965364.3 -4712777 L 965500.2 -4713225 L 965601.2 -4713772 L 965236.1 -4714915 L 964775.3 -4714923 L 964723.3 -4715200 L 965092.1 -4715618 L 964946.1 -4715809 L 964995.3 -4716096 L 965284.7 -4716277 L 965391.2 -4715699 L 965744.8 -4715476 L 965912.4 -4715594 L 965869.3 -4716845 L 966033.9 -4717583 L 966137.3 -4718048 L 966699.1 -4718588 L 966300.7 -4719011 L 964674.7 -4718908 L 964242.7 -4719148 L 965336.9 -4720533 L 965414.9 -4721052 L 965161.8 -4722360 L 965310.8 -4722937 L 966664.7 -4724013 L 967073.9 -4723745 L 967323.3 -4724076 L 967695.9 -4724188 L 968127.1 -4725023 L 968543.2 -4725217 L 968793 -4725010 L 969256.3 -4724977 L 969505.8 -4725308 L 969383.1 -4725481 L 969062.5 -4725932 L 969367.1 -4726754 L 969071.6 -4729569 L 968646.8 -4729733 L 969356.2 -4731132 L 969627.5 -4731235 L 969766.8 -4730583 L 970294.3 -4730146 L 969988.3 -4729605 L 970056 -4729433 L 970392.7 -4729387 L 970812.2 -4729812 L 971162 -4729896 L 972437.4 -4729659 L 973300.6 -4728922 L 974845.9 -4729069 L 975477.8 -4729411 L 975745.3 -4729820 L 975622.1 -4731371 L 976439.8 -4733242 L 975985.7 -4733711 L 976219.5 -4733937 L 977768.4 -4734315 L 978235.6 -4733976 L 978768.6 -4734283 L 979579.9 -4735154 L 979914.2 -4735134 L 980062.6 -4734918 L 981108.7 -4734941 L 981604.2 -4735373 L 981982.3 -4736228 L 982132.4 -4737062 L 982258.7 -4737180 L 982437.4 -4737348 L 983838.2 -4737404 L 985395 -4738500 L 985536.8 -4739154 L 986114.8 -4739260 L 986791.1 -4738607 L 987471.7 -4738442 L 988847.3 -4738496 L 990798 -4739219 L 991645.9 -4739710 L 992487.1 -4739739 L 992813 -4739540 L 994422.6 -4741153 L 995447.1 -4741404 L 996485.5 -4742041 L 996482.6 -4742604 L 995983 -4743812 L 996132 -4744390 L 996487.7 -4744680 L 996134 -4744902 L 995975.5 -4745221 L 996063.2 -4745639 L 997352.3 -4745530 L 997816.2 -4746292 L 998122.3 -4746337 L 998320.5 -4746366 L 998535 -4746797 L 998365.4 -4747497 L 998668.9 -4748065 L 999403.9 -4748135 L 999547.2 -4748507 L 1000564 -4749373 L 1000939 -4749459 L 1000938 -4749203 L 1001148 -4749147 L 1001482 -4749665 L 1001799 -4749823 L 1002555 -4749409 L 1002720 -4749553 L 1002840 -4750435 L 1004940 -4750943 L 1005870 -4750314 L 1006064 -4750690 L 1006345 -4750692 L 1006834 -4750124 L 1007792 -4750010 L 1008192 -4750637 L 1008782 -4750617 L 1009065 -4751131 L 1009291 -4751178 L 1009563 -4750743 L 1009915 -4750545 L 1010273 -4749478 L 1011180 -4749359 L 1011392 -4749815 L 1011602 -4749758 L 1012267 -4748951 L 1011986 -4748155 L 1012230 -4747743 L 1013503 -4747275 L 1013613 -4746926 L 1014033 -4746812 L 1014246 -4746192 L 1014534 -4746117 L 1015019 -4745599 L 1015364 -4744940 L 1015874 -4744681 L 1015791 -4745288 L 1015927 -4745737 L 1016749 -4746225 L 1017797 -4747299 L 1017990 -4747958 L 1017778 -4748835 L 1017806 -4749606 L 1018318 -4749604 L 1019135 -4751219 L 1019177 -4752120 L 1018842 -4753472 L 1018803 -4754416 L 1018887 -4755936 L 1018608 -4756704 L 1018870 -4758241 L 1016773 -4760629 L 1016478 -4761832 L 1015850 -4762515 L 1016652 -4764283 L 1017180 -4764641 L 1017641 -4765965 L 1017668 -4766481 L 1017465 -4766677 L 1017161 -4766971 L 1016751 -4768572 L 1016277 -4769244 L 1016411 -4769974 L 1018913 -4772418 L 1018892 -4772903 L 1018450 -4773245 L 1018597 -4774105 L 1018416 -4775189 L 1017881 -4775702 L 1017660 -4776399 L 1017651 -4777551 L 1017154 -4778195 L 1017173 -4778625 L 1017201 -4779302 L 1016819 -4780085 L 1016888 -4780425 L 1017827 -4781566 L 1018338 -4781846 L 1018998 -4781627 L 1019834 -4782245 L 1021698 -4782552 L 1022204 -4782344 L 1022575 -4782482 L 1023145 -4783203 L 1023622 -4782761 L 1024110 -4783013 L 1024402 -4781836 L 1025687 -4780985 L 1026292 -4780800 L 1026451 -4780751 L 1026819 -4780120 L 1026488 -4778781 L 1026879 -4776050 L 1027475 -4775440 L 1027708 -4774873 L 1027684 -4774333 L 1028352 -4772705 L 1028247 -4771669 L 1028652 -4770914 L 1028602 -4770370 L 1028853 -4769625 L 1028652 -4768529 L 1028705 -4767970 L 1028922 -4767739 L 1029276 -4767359 L 1030136 -4764801 L 1029916 -4763627 L 1030101 -4763567 L 1030300 -4763099 L 1030478 -4760707 L 1030953 -4759496 L 1030465 -4757912 L 1030391 -4757085 L 1029810 -4756209 L 1029735 -4755125 L 1029379 -4754041 L 1029368 -4752553 L 1028946 -4750822 L 1029016 -4747163 L 1028743 -4746804 L 1028736 -4744215 L 1028386 -4743054 L 1028682 -4742108 L 1028656 -4741311 L 1029365 -4740584 L 1030199 -4739356 L 1030600 -4738113 L 1030722 -4737100 L 1031418 -4736243 L 1032024 -4734994 L 1033354 -4734198 L 1034275 -4733926 L 1034547 -4734029 L 1034685 -4734452 L 1034468 -4735124 L 1032995 -4737288 L 1032193 -4738114 L 1032128 -4738182 L 1031844 -4738206 L 1031800 -4737868 L 1032077 -4737382 L 1031918 -4736906 L 1031665 -4737138 L 1031146 -4738550 L 1031357 -4739287 L 1031045 -4739873 L 1030509 -4740129 L 1030146 -4740710 L 1029723 -4741768 L 1029210 -4742466 L 1029088 -4742941 L 1029176 -4743359 L 1030681 -4740735 L 1031869 -4739468 L 1032733 -4738547 L 1033183 -4737590 L 1034077 -4736804 L 1035280 -4734919 L 1036016 -4733118 L 1036676 -4731028 L 1036753 -4729420 L 1036720 -4728700 L 1036580 -4727225 L 1036626 -4724872 L 1036830 -4723533 L 1038020 -4721518 L 1038190 -4719741 L 1038085 -4718706 L 1038324 -4718344 L 1037977 -4716081 L 1038162 -4713869 L 1037785 -4712732 L 1039012 -4708722 L 1039936 -4706273 L 1040535 -4703484 L 1040901 -4702597 L 1040868 -4702132 L 1041145 -4701646 L 1040532 -4700025 L 1040836 -4698977 L 1040637 -4696498 L 1041579 -4694127 L 1041371 -4693364 L 1041290 -4692870 L 1041888 -4691696 L 1041516 -4690226 L 1041457 -4688965 L 1041260 -4688613 L 1040838 -4689547 L 1040441 -4689689 L 1040275 -4689289 L 1040670 -4688635 L 1040650 -4688300 L 1041273 -4688204 L 1041378 -4687907 L 1041248 -4687664 L 1040526 -4687724 L 1040038 -4687472 L 1040359 -4686785 L 1040027 -4686242 L 1040216 -4685875 L 1040049 -4685475 L 1039064 -4685075 L 1038936 -4684865 L 1038865 -4684748 L 1039497 -4684014 L 1039984 -4684008 L 1040655 -4685020 L 1040924 -4685148 L 1041164 -4686119 L 1041137 -4686680 L 1041646 -4686164 L 1041699 -4685605 L 1041446 -4683968 L 1041207 -4683253 L 1039920 -4683336 L 1039589 -4683049 L 1040703 -4682897 L 1040866 -4682529 L 1040450 -4680723 L 1040413 -4680565 L 1039618 -4679516 L 1039263 -4678406 L 1038088 -4677040 L 1037803 -4675732 L 1037165 -4674647 L 1036600 -4674133 L 1033975 -4669453 L 1033748 -4669688 L 1033429 -4669273 L 1033382 -4668962 L 1032364 -4668107 L 1032331 -4667863 L 1032853 -4668360 L 1033143 -4668247 L 1032036 -4666170 L 1031527 -4664252 L 1031313 -4664360 L 1031219 -4665351 L 1030988 -4665355 L 1030661 -4665836 L 1030505 -4665591 L 1030731 -4665100 L 1030700 -4664354 L 1031087 -4663237 L 1031471 -4663504 L 1031854 -4663233 L 1031604 -4660212 L 1031228 -4659588 L 1031271 -4658593 L 1030716 -4656363 L 1031144 -4655353 L 1030964 -4654937 L 1030964 -4654937 z " |
id="path695" /> |
<path |
d="M 1030964 -4654937 L 1030913 -4654819 L 1030937 -4654565 L 1031200 -4654488 L 1031365 -4654093 L 1031357 -4653375 L 1031697 -4651944 L 1031952 -4650870 L 1031938 -4649665 L 1031343 -4648123 L 1031798 -4647090 L 1031598 -4645970 L 1031666 -4645515 L 1032517 -4645441 L 1032370 -4644557 L 1032914 -4642328 L 1032608 -4640968 L 1032918 -4639306 L 1032778 -4639165 L 1033076 -4638450 L 1032934 -4637515 L 1032648 -4637565 L 1032499 -4638063 L 1032269 -4637785 L 1032657 -4636925 L 1032468 -4636498 L 1032420 -4636459 L 1031969 -4636092 L 1031515 -4636024 L 1030905 -4635173 L 1030541 -4635241 L 1030201 -4635055 L 1030660 -4634791 L 1030655 -4634304 L 1031028 -4633878 L 1031385 -4633886 L 1031460 -4633637 L 1030961 -4633231 L 1030929 -4633024 L 1031547 -4632979 L 1032214 -4632683 L 1031878 -4631909 L 1031931 -4631350 L 1031633 -4631527 L 1031410 -4631455 L 1031290 -4630829 L 1030759 -4629960 L 1030227 -4629910 L 1029836 -4630257 L 1029062 -4630057 L 1028673 -4629303 L 1028340 -4629042 L 1028537 -4628855 L 1028976 -4629076 L 1029177 -4628838 L 1029117 -4628398 L 1029328 -4628071 L 1029476 -4627842 L 1029306 -4627749 L 1029033 -4627929 L 1027917 -4628106 L 1027120 -4627340 L 1026609 -4627343 L 1026651 -4627706 L 1027275 -4627867 L 1027180 -4628062 L 1026376 -4627910 L 1025263 -4628600 L 1025119 -4628228 L 1025296 -4627706 L 1025197 -4627134 L 1023785 -4626387 L 1023565 -4626008 L 1023796 -4625185 L 1023656 -4624505 L 1023776 -4624312 L 1024355 -4624136 L 1024389 -4622961 L 1024594 -4622955 L 1024996 -4624119 L 1025500 -4624730 L 1025703 -4625568 L 1026519 -4626131 L 1027044 -4625975 L 1027968 -4626215 L 1028561 -4625349 L 1029817 -4625313 L 1030568 -4626024 L 1030869 -4625540 L 1030668 -4624958 L 1029914 -4624016 L 1029388 -4622814 L 1029452 -4621591 L 1029364 -4621455 L 1029207 -4621210 L 1027559 -4620799 L 1026955 -4620154 L 1026559 -4620014 L 1026286 -4619656 L 1026358 -4619432 L 1026110 -4619358 L 1024440 -4617281 L 1024086 -4617504 L 1023168 -4617213 L 1022818 -4616310 L 1023892 -4616307 L 1024142 -4616101 L 1024275 -4615499 L 1024048 -4614658 L 1023160 -4614037 L 1023791 -4613551 L 1023960 -4613420 L 1024348 -4613636 L 1024683 -4613616 L 1024804 -4613141 L 1024673 -4611823 L 1024291 -4611531 L 1024063 -4610972 L 1023469 -4610763 L 1023318 -4610467 L 1024098 -4610053 L 1024171 -4609830 L 1023901 -4609702 L 1023151 -4610068 L 1022848 -4609758 L 1022826 -4608910 L 1022489 -4608956 L 1020960 -4607558 L 1019028 -4607173 L 1018816 -4606718 L 1019664 -4606387 L 1020123 -4605585 L 1019698 -4605213 L 1020054 -4604964 L 1020068 -4604274 L 1019455 -4604268 L 1019348 -4604053 L 1019384 -4603391 L 1019689 -4603138 L 1020159 -4603310 L 1020847 -4604142 L 1021882 -4605076 L 1022685 -4605799 L 1023127 -4605712 L 1023227 -4605466 L 1023033 -4605089 L 1023026 -4604346 L 1022504 -4603913 L 1022481 -4603347 L 1021320 -4601831 L 1021089 -4600760 L 1020692 -4600364 L 1020476 -4598859 L 1019554 -4598875 L 1019041 -4598623 L 1016952 -4598555 L 1016470 -4598792 L 1016251 -4599349 L 1015966 -4600076 L 1015605 -4600375 L 1014198 -4600397 L 1012909 -4601327 L 1012330 -4601503 L 1012047 -4602065 L 1011314 -4601715 L 1010437 -4601530 L 1009863 -4600837 L 1009267 -4602010 L 1009474 -4603335 L 1009775 -4603670 L 1010233 -4603687 L 1010501 -4604096 L 1010514 -4604507 L 1010151 -4604832 L 1010809 -4605545 L 1011728 -4606541 L 1011595 -4606861 L 1011286 -4606884 L 1010984 -4606292 L 1010607 -4606231 L 1010395 -4606314 L 1010039 -4607100 L 1009760 -4606536 L 1009329 -4606777 L 1009194 -4607660 L 1009016 -4607926 L 1008445 -4606669 L 1007723 -4606192 L 1007417 -4606189 L 1007005 -4606483 L 1006480 -4607176 L 1006822 -4608975 L 1007487 -4609779 L 1007293 -4610478 L 1005818 -4609316 L 1005241 -4608391 L 1004397 -4608133 L 1003987 -4609221 L 1003653 -4609241 L 1002965 -4608409 L 1002797 -4609110 L 1002045 -4609500 L 1002168 -4610356 L 1001834 -4610004 L 1001448 -4609598 L 1001088 -4609615 L 1000171 -4610400 L 999821.1 -4610316 L 999460 -4609540 L 999128.7 -4610072 L 998524.6 -4610246 L 998410.2 -4610644 L 998170.3 -4610750 L 997618.8 -4610366 L 997671.2 -4611164 L 997234.8 -4611456 L 996820 -4611519 L 995654.6 -4610873 L 995086.8 -4611204 L 994812.6 -4610589 L 994448.4 -4610657 L 994131.2 -4610500 L 994031.2 -4610746 L 994219.8 -4611455 L 993653.7 -4612580 L 994008.7 -4613150 L 993199.5 -4613331 L 992842.3 -4612785 L 992469.5 -4612673 L 991752.1 -4612964 L 991113.8 -4612418 L 990830.4 -4612443 L 990707.6 -4612661 L 991158 -4613574 L 990735 -4613995 L 990281.9 -4614464 L 989250.4 -4613753 L 988871.8 -4613974 L 987688.7 -4613786 L 987360.9 -4614011 L 987577.2 -4614697 L 988140.8 -4615492 L 987749.2 -4616121 L 988024.6 -4616991 L 987743.6 -4616992 L 987342.9 -4616366 L 987142.7 -4616322 L 986846.2 -4616755 L 986623 -4616682 L 986350.6 -4616862 L 985723.4 -4616470 L 985225.4 -4616602 L 984279.3 -4617691 L 983185.5 -4617640 L 982729.8 -4618134 L 982712 -4618593 L 983550.6 -4619722 L 983455.4 -4619918 L 982753.8 -4620312 L 982539.4 -4620958 L 981989.5 -4620829 L 981425.4 -4621391 L 981598.4 -4621521 L 982236 -4622004 L 981949.2 -4622335 L 982428.7 -4624019 L 981973.1 -4624514 L 982467.7 -4625226 L 982489.5 -4625535 L 983255.7 -4626349 L 983280.1 -4627170 L 983447.7 -4627289 L 984661.8 -4626071 L 985275.9 -4626872 L 987619.7 -4628295 L 988119 -4628418 L 988879.9 -4628209 L 989068.1 -4628380 L 989375.4 -4630533 L 989783.1 -4631084 L 990381.4 -4631242 L 990920.7 -4631753 L 991648.1 -4631899 L 991981 -4632160 L 992229.7 -4632773 L 991998.2 -4633058 L 991907.8 -4633203 L 990015.4 -4632948 L 989547.4 -4633032 L 988949.3 -4633411 L 988154.5 -4633439 L 987561.3 -4633767 L 986403.4 -4633582 L 985725.6 -4633723 L 984487.3 -4634656 L 984589.9 -4634921 L 984292 -4635098 L 983822.9 -4634926 L 983163.3 -4635146 L 982863 -4634810 L 982450.4 -4634849 L 982117.5 -4634587 L 981958.2 -4634111 L 981278 -4633740 L 981139.3 -4633855 L 981357.8 -4634515 L 981172.2 -4634856 L 980448.7 -4634942 L 980201.5 -4635123 L 980147.3 -4635425 L 980405.9 -4636003 L 981032.9 -4637403 L 980736.3 -4637836 L 979995.9 -4638099 L 977867.1 -4637105 L 977043.3 -4636362 L 975614.2 -4636074 L 975081.2 -4635767 L 974618.1 -4635801 L 974366.1 -4636033 L 974039.7 -4637589 L 973739.5 -4637791 L 971129.9 -4637827 L 970968.6 -4637615 L 970663.2 -4637629 L 970903.9 -4638308 L 971136.1 -4638570 L 972266.1 -4638779 L 972590.4 -4638323 L 973025.8 -4638850 L 973405.6 -4638886 L 974102.8 -4639617 L 974873.5 -4639843 L 975098.5 -4640372 L 975270.4 -4640777 L 976219.6 -4641813 L 976321 -4642360 L 975850.7 -4642469 L 975725.4 -4643251 L 975183.8 -4643302 L 974987.3 -4643489 L 974987.3 -4644026 L 974675.1 -4644355 L 975015.2 -4644541 L 975536.1 -4644437 L 976257.3 -4643839 L 976719.2 -4644625 L 977435.7 -4645153 L 977707.1 -4645793 L 978006.2 -4645872 L 978339 -4645596 L 978640.4 -4645651 L 978937.4 -4646830 L 979797.4 -4647731 L 979979.6 -4648234 L 979848.7 -4648248 L 978947.2 -4648342 L 978492.5 -4648555 L 978257.4 -4649147 L 977504.8 -4648999 L 977384.2 -4649192 L 977527.7 -4649564 L 979783.1 -4650033 L 980088.2 -4650318 L 980216.1 -4651124 L 979792.9 -4652620 L 979631.3 -4652707 L 979797.8 -4653107 L 979332.4 -4653703 L 980285.1 -4654433 L 980881 -4654617 L 981064.3 -4654839 L 981092 -4655354 L 980756.7 -4656192 L 980414.6 -4656657 L 980052.3 -4657150 L 979048.9 -4658028 L 978594.1 -4658241 L 977360.2 -4658048 L 976623.3 -4658542 L 975967.2 -4658454 L 975835.7 -4657955 L 976027.5 -4657282 L 975927.4 -4656991 L 975144.7 -4656892 L 974624.9 -4656177 L 972505.9 -4656157 L 971753.3 -4656009 L 971209.5 -4655548 L 970783.7 -4655456 L 969274.3 -4655747 L 968578 -4655811 L 967323.8 -4655565 L 966425.4 -4655071 L 965811.6 -4654271 L 965313.6 -4654403 L 965710.8 -4655093 L 965796 -4655242 L 965564.4 -4656064 L 965612.6 -4656632 L 965987.7 -4657257 L 966219.1 -4658584 L 965844 -4659035 L 965122.9 -4659094 L 964720 -4660106 L 964153.2 -4660155 L 964211 -4660622 L 964048.2 -4660990 L 963591.1 -4661227 L 963688.7 -4661544 L 964390.5 -4661688 L 964746.3 -4661977 L 966570.8 -4662405 L 967072.6 -4661967 L 968039.8 -4662007 L 968615.9 -4662785 L 969328.8 -4663230 L 969645.9 -4663924 L 969712.2 -4664571 L 969560.1 -4665094 L 968855.9 -4664976 L 968367.3 -4666082 L 968426.7 -4666353 L 968527.6 -4666814 L 971267.5 -4669173 L 973106.7 -4669448 L 973671 -4669963 L 973980.8 -4670734 L 974920.4 -4670797 L 975066.2 -4671144 L 974984 -4672544 L 974702.8 -4673081 L 974137 -4673386 L 973020.2 -4673306 L 972367.4 -4674524 L 971623.1 -4675093 L 971309.3 -4675704 L 971469.5 -4676436 L 971090.3 -4678269 L 970715 -4678721 L 970395.5 -4678588 L 969646.7 -4677596 L 968651.7 -4677578 L 968317.8 -4677060 L 967953.6 -4677127 L 967165.5 -4678263 L 966900.2 -4678795 L 966599.8 -4678996 L 966060.8 -4679023 L 965536 -4679433 L 964929.3 -4679094 L 963448 -4680157 L 961963.5 -4679914 L 961670.4 -4680040 L 961730.5 -4680481 L 962040.4 -4680715 L 962263.3 -4681325 L 961896.6 -4681418 L 960964.1 -4682354 L 960358.7 -4682271 L 959817.4 -4681785 L 959467.7 -4681700 L 959797.8 -4682525 L 959912.3 -4682549 L 960699.8 -4682712 L 961042 -4683411 L 961538.8 -4683561 L 961736.3 -4684168 L 961527.5 -4684481 L 959582.3 -4684245 L 959444.6 -4684616 L 960843.5 -4684954 L 960986.9 -4685325 L 960365.4 -4686214 L 960351.3 -4688236 L 960058.3 -4688361 L 959282.8 -4688185 L 959632.2 -4688808 L 960101.3 -4688980 L 960135 -4689162 L 959728.5 -4689405 L 959775.3 -4690015 L 959819.6 -4690592 L 958933 -4691045 L 958518.4 -4690570 L 958308.5 -4690628 L 957928.4 -4691129 L 957397.7 -4691335 L 957269.7 -4691605 L 957533.7 -4691783 L 957955.9 -4691643 L 958667.5 -4691685 L 959200.5 -4691992 L 959930.1 -4692112 L 960672.6 -4692899 L 961926.9 -4693147 L 962739.1 -4694274 L 963661.7 -4694514 L 963958.7 -4694082 L 964586 -4693936 L 965037 -4694030 L 965317.8 -4694569 L 965625.2 -4694671 L 966697.4 -4695110 L 967538.1 -4695138 L 968108.2 -4695858 L 968469 -4695559 L 969319.2 -4696024 L 969039.2 -4696279 L 968927.9 -4696908 L 968696.2 -4697193 L 968392.2 -4697165 L 967957.9 -4697431 L 967953.9 -4698276 L 967170.8 -4698714 L 966508.2 -4699496 L 965965.5 -4699290 L 965601.2 -4699358 L 965212.7 -4699059 L 964024.3 -4700079 L 963442.8 -4700280 L 962779.4 -4700268 L 962212.9 -4699779 L 961840.2 -4699667 L 961223.1 -4701042 L 961371.3 -4701363 L 961921.2 -4701493 L 963185.9 -4702432 L 963418.5 -4702940 L 963400.1 -4703323 L 963392.7 -4703476 L 962883.7 -4703453 L 962712.3 -4703641 L 962810.8 -4704215 L 962627.4 -4704529 L 962016 -4704241 L 961109.8 -4704897 L 960694.8 -4704960 L 960285 -4704435 L 959796.5 -4704466 L 958965.2 -4703004 L 958532.2 -4702988 L 957929.5 -4702342 L 957594.1 -4702643 L 957727.7 -4703117 L 957317 -4704204 L 957585.5 -4704870 L 957202.5 -4705934 L 956787.5 -4705998 L 956448.2 -4706605 L 956566.1 -4706975 L 956860.3 -4707105 L 956933.8 -4707138 L 957403.3 -4706772 L 958079.8 -4706914 L 958240.4 -4706570 L 958486.4 -4706671 L 958996.1 -4707487 L 958543.6 -4707675 L 958702.9 -4707851 L 959333.6 -4707694 L 959720.7 -4707624 L 960488.9 -4707452 L 961701 -4706582 L 962760.5 -4707080 L 963517.7 -4706890 L 964664.8 -4707108 L 966133.9 -4705921 L 968419.6 -4705689 L 968685.2 -4704570 L 969043.2 -4704682 L 971238.4 -4704784 L 972140.5 -4704142 L 972471.6 -4703941 L 974772.3 -4703899 L 976110.4 -4702530 L 976499.6 -4702529 L 977648.9 -4702663 L 980232.2 -4701877 L 983165.7 -4703625 L 983530.9 -4703499 L 983727.2 -4700102 L 985123 -4699505 L 985861.9 -4698654 L 985753.5 -4697548 L 985709.6 -4697165 L 987458.3 -4695578 L 987746.4 -4695309 L 988123.4 -4695408 L 989248.7 -4695717 L 989550.9 -4695468 L 989765.8 -4695153 L 990352 -4694696 L 990809.3 -4693654 L 991458.6 -4693306 L 993654.5 -4693314 L 993984 -4692701 L 994204.9 -4692407 L 994550 -4692500 L 995504.9 -4691434 L 996473.2 -4691211 L 996544.7 -4690858 L 996931 -4690847 L 997975.8 -4690383 L 999801.2 -4690973 L 1000088 -4689670 L 1000196 -4689352 L 1000318 -4687759 L 1000274 -4687423 L 1000671 -4686775 L 1001763 -4686426 L 1002940 -4683181 L 1002651 -4682474 L 1003658 -4681958 L 1004429 -4681111 L 1005549 -4681071 L 1006527 -4680489 L 1007143 -4680033 L 1007819 -4678692 L 1008106 -4678437 L 1008097 -4675218 L 1008369 -4674970 L 1008279 -4674233 L 1010043 -4672801 L 1010631 -4671807 L 1010820 -4671469 L 1012967 -4672074 L 1015530 -4671931 L 1015912 -4671940 L 1015912 -4671573 L 1015748 -4668274 L 1016180 -4667708 L 1016105 -4667342 L 1016461 -4665924 L 1016816 -4665804 L 1016739 -4663251 L 1016331 -4662234 L 1017192 -4661533 L 1017552 -4661423 L 1016244 -4659634 L 1016535 -4659372 L 1018051 -4659485 L 1019346 -4658645 L 1019493 -4657516 L 1018550 -4655825 L 1018518 -4655088 L 1018143 -4653181 L 1017979 -4652829 L 1018288 -4652590 L 1018764 -4652007 L 1019519 -4652174 L 1021699 -4651408 L 1022760 -4651878 L 1024295 -4651914 L 1024881 -4651447 L 1024983 -4650700 L 1026445 -4651215 L 1030001 -4654714 L 1030964 -4654938 L 1030964 -4654937 z M 1024146 -4598690 L 1023826 -4598557 L 1023537 -4598914 L 1023168 -4599034 L 1023022 -4599225 L 1023262 -4599657 L 1023611 -4599485 L 1023921 -4599719 L 1024262 -4599622 L 1024114 -4599301 L 1024264 -4598924 L 1024146 -4598690 L 1024146 -4598690 z M 1023939 -4595726 L 1023774 -4595301 L 1022814 -4596005 L 1022868 -4596241 L 1023167 -4596320 L 1023939 -4595726 L 1023939 -4595726 z " |
id="path696" /> |
<path |
d="M 690297.3 -4801372 L 689975 -4801800 L 689613.7 -4801842 L 689632.2 -4802176 L 689961.4 -4802464 L 688626.7 -4803332 L 688057 -4803942 L 687135.4 -4804235 L 685830.7 -4804008 L 684778.4 -4803547 L 683767.2 -4802402 L 682876.5 -4801856 L 682200.1 -4801202 L 681688.9 -4800949 L 680799.3 -4800778 L 680645.6 -4800748 L 680086 -4800641 L 678885.6 -4800653 L 677878.4 -4801041 L 677538.7 -4800599 L 676895.1 -4800920 L 675805.7 -4800841 L 675417.9 -4800368 L 673896.4 -4800273 L 673774.4 -4799954 L 671532.3 -4800709 L 671263.5 -4800325 L 670831.4 -4800309 L 669292.7 -4800390 L 668810.6 -4800624 L 668521.5 -4800188 L 668165.5 -4800420 L 668112.8 -4800455 L 667662.7 -4800360 L 667284.9 -4800835 L 666706 -4800754 L 666232.6 -4800376 L 665777.6 -4800331 L 665419.4 -4800604 L 665049.6 -4800210 L 664686.4 -4800533 L 664317.1 -4800395 L 663039.3 -4801728 L 663230.4 -4802386 L 663699.6 -4803070 L 663177.5 -4803454 L 662011.5 -4804911 L 661754.1 -4805233 L 660917 -4807018 L 660523.1 -4807133 L 660505.9 -4807310 L 660943.6 -4807532 L 660330.8 -4808060 L 660171.1 -4807866 L 659378.9 -4808403 L 659303.8 -4808651 L 659592.8 -4809088 L 659367.8 -4810088 L 659454.7 -4810506 L 658612 -4811038 L 657644.7 -4811276 L 656792.8 -4811118 L 656230.5 -4811651 L 655892.2 -4811720 L 653092.4 -4810606 L 651627.7 -4808880 L 651319.5 -4808901 L 651942.6 -4810821 L 650921.3 -4809323 L 650582.3 -4808089 L 649931.4 -4807439 L 649655.9 -4806339 L 649412.4 -4805957 L 649066 -4805847 L 649036.5 -4806150 L 648809.1 -4806128 L 648165.5 -4805402 L 649063.6 -4804824 L 649420 -4804833 L 649095.1 -4805287 L 649560.4 -4805486 L 650278.1 -4804405 L 650748.4 -4804553 L 650942.6 -4804393 L 651275.5 -4803070 L 651545.1 -4802980 L 651987.5 -4802832 L 652949.1 -4803437 L 654102.4 -4804954 L 654279.3 -4806019 L 654615.2 -4805975 L 654680 -4805572 L 654409.4 -4804421 L 653818.2 -4803418 L 653111.8 -4802813 L 651237.2 -4801891 L 650377.8 -4800760 L 649497.6 -4800368 L 649404.6 -4800538 L 649518.6 -4800677 L 649059.3 -4800939 L 648770.3 -4801550 L 648531.1 -4801910 L 648500.2 -4802751 L 648611.8 -4803963 L 648196.3 -4804562 L 647542.9 -4804984 L 646570.8 -4805273 L 645892.8 -4805949 L 645226.5 -4806242 L 644300.6 -4806843 L 644033 -4806970 L 643429 -4807934 L 642391.5 -4808371 L 641866.9 -4808780 L 641275.1 -4809617 L 640889.3 -4809912 L 640285.7 -4811131 L 640725.7 -4812375 L 641470.2 -4814159 L 641552.6 -4814883 L 641373.2 -4815939 L 640413.9 -4818453 L 640373.8 -4818603 L 640190.6 -4820220 L 639493.9 -4821609 L 639039.5 -4822869 L 638267 -4824251 L 636887.9 -4825574 L 635993.4 -4826638 L 635725.8 -4826765 L 635558.8 -4826646 L 636014.4 -4825899 L 636506.3 -4825563 L 637112.9 -4824574 L 638068.4 -4823670 L 638479 -4823121 L 639075.3 -4820930 L 639084.7 -4820573 L 639483.5 -4820408 L 639743.1 -4820100 L 639918.9 -4818558 L 639954 -4818460 L 640664.3 -4816407 L 641080.5 -4815016 L 640949.2 -4814007 L 639760.3 -4811285 L 641144.2 -4808863 L 643844.8 -4806543 L 644460.6 -4806245 L 645305.7 -4805688 L 647197.6 -4804337 L 647894.7 -4803203 L 647882.3 -4802282 L 648030.3 -4801811 L 648049.3 -4801353 L 648315.7 -4800714 L 648529 -4800096 L 648268.2 -4799892 L 646070.7 -4801238 L 643479.9 -4801908 L 643326.3 -4802174 L 642476.9 -4801989 L 638262 -4801786 L 636955.2 -4801583 L 636391.2 -4801350 L 635678.6 -4801332 L 634681.3 -4801619 L 631889.6 -4801733 L 630705.9 -4801958 L 628510.6 -4802377 L 627044.2 -4803027 L 626366.2 -4803703 L 626173.2 -4804374 L 626241 -4805249 L 626497.4 -4805760 L 626646.6 -4805800 L 626954.2 -4805523 L 626827.2 -4805255 L 626975.8 -4805039 L 626919.1 -4804573 L 627439.4 -4803423 L 627787.6 -4804300 L 628103.2 -4804203 L 628693.5 -4804950 L 628469.2 -4805158 L 628480.3 -4805569 L 629019.6 -4806055 L 629210.5 -4806530 L 629553.4 -4807384 L 629991.7 -4806813 L 630117.5 -4805522 L 628521.8 -4803834 L 628707.3 -4803239 L 629000.1 -4803114 L 629380.4 -4802614 L 629781.7 -4802422 L 630648.3 -4802429 L 631188.3 -4802124 L 631360.8 -4802448 L 631770.1 -4802436 L 632004.3 -4802126 L 632610.2 -4801930 L 633030 -4802072 L 633273.4 -4802454 L 633621 -4802027 L 634058.1 -4801993 L 634248 -4802139 L 634377.4 -4803429 L 634181.9 -4804126 L 634040.7 -4804266 L 633820.7 -4804168 L 633528.5 -4803501 L 632290.3 -4803381 L 630954.6 -4802689 L 630768.5 -4803029 L 630301.3 -4803112 L 630621.1 -4803757 L 630675.3 -4804247 L 630520 -4804794 L 630664.7 -4805140 L 630978.5 -4805324 L 631337.2 -4805308 L 631485.8 -4805092 L 631393.4 -4804470 L 631848.9 -4803722 L 632763.6 -4803759 L 633368.9 -4804355 L 633450.8 -4804823 L 632214.2 -4806517 L 632192.7 -4806738 L 632169.9 -4806973 L 631906.6 -4806794 L 631674.9 -4806030 L 631459.8 -4805881 L 631247.7 -4805963 L 631524.5 -4806526 L 631629.9 -4807278 L 632671 -4807327 L 632570.5 -4807574 L 632333.2 -4807653 L 632336.3 -4807884 L 633359.5 -4807854 L 633678.2 -4807988 L 633658.4 -4808190 L 632035.5 -4808876 L 630910 -4808384 L 630493.9 -4808727 L 630220.8 -4808650 L 630246.7 -4807860 L 630039 -4807635 L 629681.5 -4808163 L 629358.5 -4808336 L 629731.3 -4808960 L 630459.7 -4809163 L 630575.9 -4809195 L 630744.7 -4810080 L 629647.9 -4812172 L 629158.6 -4812483 L 628534.7 -4812601 L 628106.3 -4813071 L 627542.4 -4812837 L 626638.7 -4813210 L 626198.7 -4813014 L 624484.5 -4813589 L 624389.5 -4814041 L 624077 -4814368 L 624070.2 -4814699 L 623506.8 -4814721 L 623137 -4814328 L 621840.1 -4814023 L 620653.7 -4813909 L 619616.3 -4813808 L 618823.6 -4814089 L 617307.4 -4813942 L 616538.2 -4813459 L 618693.6 -4813591 L 620034.9 -4813439 L 620960 -4813631 L 624890 -4813092 L 626048.1 -4812620 L 627121.4 -4812183 L 628070 -4811611 L 628962 -4810572 L 629213.6 -4809038 L 629021.2 -4808917 L 628693.3 -4809141 L 627716.9 -4810784 L 626829.8 -4811772 L 625989.6 -4812278 L 625007.1 -4812413 L 624151.5 -4812816 L 622158.7 -4813087 L 621411 -4813189 L 616736.4 -4812993 L 615272.6 -4812570 L 613569.6 -4812507 L 612871.9 -4812338 L 611899.2 -4812371 L 609957.7 -4812925 L 606108 -4813165 L 605782.5 -4813363 L 604959 -4813437 L 604877.7 -4813225 L 604205.2 -4813057 L 599200.9 -4813557 L 599291.9 -4815526 L 599889.6 -4816954 L 599719.3 -4817302 L 600272.3 -4817797 L 604190.9 -4819279 L 606347.6 -4820843 L 605402.4 -4822909 L 605799.9 -4823886 L 606119.4 -4824101 L 606447 -4823500 L 605955 -4822941 L 607327.8 -4821763 L 609008.2 -4823066 L 610510 -4823348 L 611941.7 -4824617 L 613096.1 -4824598 L 613442.7 -4824767 L 613844.7 -4825407 L 613418.8 -4826335 L 615023.8 -4827382 L 616167.5 -4827170 L 616557.3 -4827174 L 616916.9 -4827335 L 618551.6 -4829484 L 618552.7 -4830239 L 617955.4 -4830728 L 616494.7 -4830189 L 615726.9 -4830293 L 614895.3 -4831128 L 614763.5 -4831877 L 616646.7 -4836177 L 618708.7 -4837180 L 618608 -4838721 L 619376.3 -4840074 L 619725.9 -4840253 L 622443.6 -4840538 L 623482.7 -4841063 L 625250.9 -4840253 L 626800.7 -4840021 L 628382.4 -4838907 L 630689.5 -4839095 L 629552.9 -4841978 L 629430.7 -4843146 L 630587.1 -4846449 L 630653.7 -4846835 L 630758.3 -4847216 L 632375.8 -4849450 L 632578 -4850209 L 632649.8 -4852574 L 631670.7 -4855119 L 632391.8 -4855983 L 633413.2 -4856460 L 633547.9 -4856812 L 633141.5 -4857398 L 631679.9 -4857313 L 631930.2 -4858004 L 631486.4 -4859025 L 633066.4 -4859757 L 633148.7 -4859402 L 633490.1 -4860074 L 635539.9 -4861030 L 636542.8 -4862153 L 636728.5 -4862482 L 636351.6 -4862432 L 635975.7 -4862379 L 637951.5 -4863468 L 638897.4 -4864651 L 639210.9 -4865168 L 639142.6 -4865473 L 641581.6 -4865089 L 641929.6 -4865034 L 644547.7 -4864576 L 644921.7 -4864508 L 648473.7 -4864230 L 650287.2 -4863426 L 650644.3 -4863253 L 652789.4 -4861630 L 653954.3 -4861694 L 654323.4 -4861637 L 654644.5 -4861445 L 657825.7 -4859894 L 659394 -4858137 L 659641.3 -4857830 L 659969.6 -4857393 L 660152.7 -4857191 L 663084.5 -4854860 L 663256.7 -4854524 L 663813.6 -4853344 L 663882.8 -4853024 L 664376.3 -4851173 L 667502.7 -4849490 L 667851.9 -4849306 L 670223 -4848072 L 670559.2 -4847891 L 671477.6 -4847418 L 671784.8 -4847263 L 675660.5 -4845462 L 679272.8 -4846892 L 679661.8 -4846886 L 680031.8 -4846880 L 680401.9 -4846869 L 681905.3 -4846589 L 683343.8 -4846222 L 683713.9 -4846185 L 686054.6 -4845855 L 686650.1 -4845341 L 686934.3 -4845066 L 688069.2 -4844109 L 688402.4 -4843945 L 690282.4 -4843085 L 690597.6 -4842944 L 691728.3 -4842304 L 692039.5 -4842207 L 693725.4 -4841440 L 694039.6 -4841243 L 696357.1 -4839925 L 696737.2 -4839879 L 699829.8 -4838777 L 700177 -4838656 L 703646.6 -4837793 L 704822.8 -4837985 L 705211 -4837898 L 707110.4 -4838197 L 709416.3 -4837973 L 709799.5 -4837923 L 710858.3 -4838691 L 711176.3 -4838794 L 712551.4 -4839503 L 713779.9 -4841018 L 715444 -4841894 L 715836.1 -4841899 L 718195.3 -4841740 L 720152.4 -4844692 L 721168.5 -4845285 L 721395.4 -4845612 L 723306.6 -4845335 L 723867.2 -4844828 L 723949.1 -4843320 L 724333.7 -4842646 L 726006 -4842004 L 726361.3 -4841848 L 726158.4 -4841513 L 725475.9 -4840129 L 725345.8 -4838575 L 724959.5 -4838648 L 723000.6 -4838554 L 718912.5 -4837235 L 718686.6 -4836914 L 717652.4 -4836505 L 716041.2 -4832945 L 716697.7 -4829936 L 714225.6 -4828832 L 715232.9 -4827640 L 715601.1 -4827617 L 717062.7 -4827543 L 718309.7 -4826785 L 718567 -4826562 L 719838.7 -4826288 L 719253.8 -4824513 L 719111.8 -4820721 L 718241 -4820030 L 717947.1 -4818547 L 718338.2 -4818587 L 720361.4 -4816832 L 722337 -4813444 L 724243.9 -4812053 L 725390.4 -4811941 L 725430.4 -4811925 L 725242.9 -4811213 L 723712.2 -4810198 L 722324.2 -4809724 L 721960.9 -4809869 L 720105.8 -4810458 L 718553.4 -4810346 L 716961.9 -4809296 L 717126.2 -4808942 L 718025.6 -4805578 L 718794.6 -4804695 L 718796 -4804305 L 717612.1 -4802838 L 717796.2 -4801736 L 717319.1 -4800711 L 716246.2 -4800345 L 717026.4 -4800368 L 717939.3 -4799706 L 718290.3 -4799842 L 720869.6 -4800342 L 721747.5 -4798657 L 723549 -4796705 L 723896.2 -4796547 L 723796.5 -4795196 L 723806.9 -4794852 L 722003 -4794202 L 719089.1 -4792439 L 719226.4 -4792142 L 719345.8 -4791837 L 719077 -4791548 L 717565.2 -4791096 L 717558.6 -4790716 L 717322.6 -4788847 L 717334 -4788456 L 717217.5 -4786117 L 717056.6 -4785148 L 716929.9 -4784844 L 716862.5 -4784715 L 716691.9 -4784723 L 715590.8 -4785026 L 714934.8 -4785474 L 713473.5 -4785282 L 712289.7 -4784861 L 711825.9 -4784382 L 711678.3 -4783013 L 710515.3 -4782901 L 708301.1 -4784681 L 708037.3 -4785294 L 707063.2 -4785865 L 706660.1 -4786338 L 706558.7 -4786661 L 706512.2 -4786809 L 706751.6 -4787497 L 706323.2 -4787966 L 705936.7 -4788005 L 705313.4 -4788380 L 704443.8 -4787351 L 704054.9 -4787415 L 703686.6 -4786741 L 702513.9 -4786730 L 701474.6 -4787448 L 700498.6 -4787250 L 699577.5 -4787802 L 698245.2 -4787595 L 699037.3 -4787058 L 698852.4 -4786862 L 698518.8 -4786881 L 697885.6 -4787356 L 697256.9 -4787461 L 697107.7 -4787486 L 696917 -4787084 L 696568.1 -4787000 L 696174.9 -4787370 L 694629.3 -4787783 L 693992.5 -4787773 L 692780.9 -4787375 L 691178.6 -4787323 L 689990.1 -4788000 L 689852 -4788370 L 689985.3 -4789099 L 690289.9 -4789639 L 692045.3 -4791266 L 692384 -4792244 L 692431.6 -4793066 L 690158.1 -4795454 L 690355.7 -4795856 L 690711.8 -4796581 L 692077.4 -4796969 L 692206.9 -4797212 L 691565.1 -4797251 L 691388.8 -4797490 L 691380.3 -4799151 L 690532.1 -4800526 L 690296.6 -4801372 L 690297.3 -4801372 z M 627805.9 -4806174 L 627207.7 -4806282 L 627171 -4806419 L 627962.1 -4806754 L 628348.1 -4807144 L 628149.7 -4806514 L 627805.9 -4806174 z M 686819.7 -4795156 L 685962.7 -4795049 L 686735.3 -4795762 L 687462.5 -4795738 L 688066.6 -4795908 L 687949.2 -4795634 L 687541.6 -4795622 L 686819.8 -4795156 L 686819.7 -4795156 z M 685664.8 -4793128 L 685349.9 -4793481 L 685846.8 -4794143 L 686517.6 -4794591 L 687020.6 -4794665 L 687143.9 -4794447 L 686549.6 -4794261 L 686389.2 -4793811 L 685664.8 -4793128 L 685664.8 -4793128 z " |
id="path697" /> |
<path |
d="M 214558.1 -5379230 L 214243.4 -5379071 L 211885.9 -5378629 L 211655.2 -5378933 L 210915.4 -5378947 L 210290.5 -5379364 L 209933.8 -5380768 L 208453.6 -5381012 L 207739.3 -5381289 L 207099.7 -5380873 L 206920.3 -5379757 L 206142.7 -5378919 L 203952.1 -5378391 L 203320.3 -5378861 L 199839.4 -5381544 L 199660.7 -5381297 L 199104.1 -5380814 L 196838.5 -5381425 L 195704.2 -5382465 L 195335.7 -5382452 L 194605.9 -5382532 L 193581.8 -5382132 L 192419.9 -5382931 L 192104.8 -5383599 L 190498.6 -5383533 L 190148.3 -5383613 L 189214.1 -5385111 L 189094.3 -5384771 L 187296.8 -5384707 L 186114.7 -5385446 L 186079.7 -5385452 L 185728.2 -5385424 L 184289.3 -5384438 L 184501 -5384127 L 184479.5 -5383380 L 183686.2 -5381731 L 183358.7 -5381677 L 183051.5 -5381806 L 182845.6 -5381511 L 181734.5 -5380682 L 180674.8 -5380571 L 180466.1 -5380863 L 180124.4 -5380741 L 179743.2 -5379360 L 179589.6 -5379692 L 178950.8 -5379766 L 178370 -5378759 L 178470.7 -5377997 L 176282.9 -5376574 L 175674.6 -5376342 L 174487.9 -5376890 L 174131.5 -5376941 L 172399.4 -5377143 L 171531.3 -5378291 L 171909 -5378910 L 170957.6 -5379953 L 170344.5 -5379841 L 169729.2 -5380161 L 169084.9 -5379963 L 168289.9 -5380554 L 167979.2 -5380420 L 167665.2 -5382189 L 167675.9 -5382553 L 167487.3 -5382866 L 166375 -5385085 L 166189.6 -5385046 L 166107.7 -5386147 L 165187.6 -5387295 L 165708.2 -5388656 L 166197.1 -5389203 L 165755.5 -5390203 L 165779.3 -5390570 L 164739.2 -5390832 L 165079.5 -5392666 L 164651.9 -5393655 L 163994.7 -5394046 L 163740.8 -5394285 L 163192.9 -5394720 L 162899.2 -5396034 L 162667.6 -5397521 L 163498.3 -5397450 L 164738.3 -5397037 L 165504.5 -5397048 L 166449.4 -5396763 L 167319.6 -5396204 L 167431.8 -5396322 L 167619.9 -5396433 L 167556.4 -5397177 L 167670.8 -5397320 L 167881.3 -5397099 L 168096.7 -5396342 L 168669 -5396471 L 168921.4 -5396143 L 168964.7 -5395757 L 169296.8 -5396060 L 169373.5 -5396359 L 169679.6 -5396358 L 170404.4 -5395888 L 170909.4 -5396125 L 170356.1 -5396809 L 170820.6 -5396871 L 171640.2 -5396317 L 172013.7 -5397100 L 173879 -5397729 L 175558.9 -5397686 L 175976.2 -5397498 L 176481.3 -5397734 L 176965.9 -5397438 L 177656.1 -5397455 L 178043.8 -5397218 L 178244.7 -5396589 L 178910.9 -5396328 L 178429.6 -5397847 L 177239.3 -5398479 L 176769.2 -5398607 L 176599.5 -5398514 L 175120.3 -5399405 L 175176.9 -5400063 L 175457 -5400649 L 175334.8 -5400711 L 175216.9 -5400823 L 173324 -5400171 L 173062.6 -5399506 L 172601.7 -5399189 L 172338.4 -5399390 L 172356.8 -5400789 L 172076.9 -5401093 L 171129.9 -5401353 L 170865.3 -5401835 L 168786 -5402574 L 168297.1 -5403462 L 168212.5 -5403616 L 167762.3 -5405795 L 167034.9 -5407717 L 166750.6 -5407971 L 165917 -5408068 L 165004 -5408427 L 163956.7 -5409893 L 164101.5 -5410390 L 163941 -5411193 L 164268.6 -5412923 L 164178.8 -5414841 L 164294.2 -5415325 L 164398.6 -5416504 L 164116.5 -5416783 L 164149.5 -5418054 L 163401.7 -5419443 L 162860.2 -5419632 L 162524.7 -5419961 L 161982.1 -5419964 L 161662.7 -5419695 L 161491.9 -5419785 L 161486.2 -5420016 L 161683.1 -5420228 L 162560.3 -5420636 L 163573.8 -5421441 L 164401.5 -5423051 L 165836 -5430214 L 166134.3 -5430418 L 166254.4 -5430331 L 166125.2 -5429425 L 166219.2 -5428974 L 166341.9 -5428387 L 166638 -5428565 L 166793 -5428883 L 166684.7 -5429402 L 167077.3 -5430107 L 167083.4 -5430769 L 166841.9 -5431223 L 166375.9 -5431442 L 166003.8 -5431270 L 165793.3 -5431492 L 165801.5 -5432179 L 165828.6 -5432355 L 166150 -5434442 L 166042.6 -5435267 L 166189.3 -5436375 L 166426.9 -5436763 L 166431.8 -5437705 L 167111.8 -5438487 L 167017.9 -5438877 L 166623.5 -5439039 L 166591.3 -5439551 L 166920.1 -5440109 L 166871.2 -5440725 L 167026.2 -5441043 L 167584.4 -5441300 L 167895.9 -5441655 L 168567.6 -5441750 L 169224.4 -5441082 L 170775.6 -5440133 L 170288.3 -5440990 L 169647.2 -5441250 L 168600.3 -5442130 L 168015.5 -5442155 L 167970.3 -5442129 L 166674.7 -5441404 L 166379.9 -5440945 L 165524.8 -5440204 L 165395.1 -5439884 L 165535.3 -5439438 L 165475.4 -5438450 L 165289.3 -5438364 L 164998.4 -5438542 L 164687.5 -5439078 L 164185.8 -5441543 L 163697.6 -5445050 L 164279.8 -5445586 L 164831.5 -5445768 L 164887.2 -5446182 L 164902.7 -5446297 L 164731.5 -5446974 L 164457.2 -5447049 L 164274.7 -5446708 L 164025.7 -5446780 L 164007.8 -5447164 L 163504.2 -5447539 L 163579.9 -5449596 L 163795.3 -5450317 L 164238.7 -5451018 L 164459.4 -5452094 L 164962.2 -5452892 L 165536.5 -5452154 L 165823.9 -5452231 L 165972.5 -5452473 L 166035.5 -5453793 L 165793.1 -5453941 L 165206 -5453941 L 165360.5 -5453368 L 165121.6 -5453260 L 164966.1 -5453529 L 164841.9 -5454181 L 164808.2 -5454358 L 164909.7 -5455827 L 164812.3 -5458537 L 164508.5 -5460041 L 164646.4 -5461635 L 164241.6 -5462562 L 164505.9 -5462667 L 164923.4 -5462478 L 165584.3 -5462446 L 166721.9 -5462909 L 167574.9 -5462147 L 168496.9 -5461888 L 168761.2 -5461993 L 168925.1 -5462412 L 168490.9 -5462704 L 168300.5 -5462568 L 167715.6 -5462593 L 165811.4 -5464185 L 165008.5 -5464051 L 164341.9 -5464312 L 163327.9 -5463508 L 163200.6 -5462627 L 163382.6 -5462076 L 163301.3 -5461726 L 162894.7 -5462041 L 161837.4 -5463687 L 161320.9 -5465389 L 161049.1 -5466967 L 160411.7 -5468540 L 159850.2 -5469926 L 160057.3 -5469959 L 160356 -5469576 L 160806.5 -5469767 L 161224.1 -5469577 L 161349.5 -5469847 L 159533.6 -5470692 L 157709.7 -5474393 L 157745.7 -5475104 L 157954.9 -5475162 L 158477.3 -5474709 L 159534.7 -5475127 L 158571.5 -5475797 L 158526.1 -5476280 L 158491.8 -5476645 L 157653.1 -5477278 L 157446 -5477245 L 157453.8 -5477041 L 157893.6 -5476519 L 157934.6 -5476107 L 157319.2 -5475192 L 157080.3 -5475085 L 156726.5 -5475422 L 155070.4 -5478114 L 152813.9 -5480654 L 153074 -5480708 L 154682.9 -5479830 L 154728 -5480055 L 154536.8 -5480302 L 154452.4 -5480410 L 153924.6 -5480507 L 153440.6 -5481110 L 152796.2 -5481038 L 152385.4 -5480717 L 152407.6 -5480383 L 152238 -5480194 L 151951.5 -5480423 L 151484.4 -5480336 L 151117.5 -5480521 L 150649.8 -5481606 L 150099 -5483796 L 150392.5 -5485121 L 150444.9 -5486315 L 150205.5 -5489446 L 150089.1 -5489821 L 149546.8 -5491568 L 149122.5 -5491681 L 148894.2 -5492287 L 149223.9 -5494324 L 149017.5 -5495183 L 148663.4 -5496106 L 147159.1 -5496721 L 146733.6 -5497115 L 146438 -5497829 L 146356.2 -5498652 L 147243.8 -5500054 L 147849.7 -5500562 L 148708.1 -5500743 L 148986.5 -5501891 L 149638.7 -5502345 L 149908.5 -5502806 L 150084.4 -5504244 L 150005.7 -5509223 L 149256.9 -5511481 L 148379.3 -5512551 L 147138.4 -5512965 L 146363.5 -5513746 L 145138 -5513751 L 143978.5 -5514514 L 143388.9 -5514489 L 143140.9 -5514867 L 143038.3 -5515157 L 143629.9 -5515794 L 143572.4 -5516309 L 144024.2 -5516805 L 143274.5 -5518171 L 143274.3 -5518757 L 143614.7 -5519442 L 143300.6 -5519648 L 143897.7 -5520642 L 144109.3 -5520725 L 144757.4 -5520541 L 145355.9 -5520668 L 146004.1 -5520072 L 147044.5 -5519527 L 147126.1 -5519290 L 146975.2 -5519023 L 147494.4 -5518238 L 148144.7 -5518080 L 148637.2 -5518164 L 149180.4 -5518831 L 149971.6 -5519120 L 150293.5 -5518709 L 150701.2 -5518699 L 151137.7 -5518432 L 151786 -5517075 L 151813.7 -5516512 L 152133.4 -5516076 L 153505.5 -5515702 L 153966.1 -5515713 L 155748.2 -5514768 L 156223.8 -5514651 L 157023.3 -5514453 L 158459.2 -5514226 L 159889.4 -5514229 L 160274.1 -5513661 L 160832.8 -5513332 L 161348.5 -5513389 L 161911.5 -5513697 L 162318.1 -5513381 L 162111.1 -5512762 L 162547.6 -5511908 L 164251.1 -5511530 L 165679.4 -5511620 L 165582.4 -5510987 L 165997.8 -5509901 L 166554.2 -5509827 L 167656.6 -5510041 L 167777 -5510398 L 169191.8 -5510796 L 170418.1 -5511097 L 171257.7 -5510769 L 172869.6 -5510807 L 173278.3 -5511103 L 173573.6 -5510976 L 174557.4 -5511426 L 175836.5 -5512334 L 175881.8 -5512334 L 176373.1 -5512339 L 176384 -5513051 L 177203.7 -5513669 L 177372.3 -5514138 L 177092.4 -5514443 L 177243.3 -5515297 L 177530.9 -5515374 L 178445.3 -5514733 L 178871.7 -5514645 L 179910.6 -5515141 L 180040.6 -5515461 L 180606.9 -5515514 L 181201.8 -5515896 L 181624.8 -5515476 L 183474.6 -5515902 L 185005.9 -5515896 L 186226 -5515386 L 186853.4 -5515123 L 187597 -5515161 L 189625.2 -5514117 L 190378.8 -5513975 L 191064 -5514222 L 191352.7 -5514018 L 191486 -5514083 L 191455.1 -5514315 L 191776.8 -5514491 L 192262.6 -5514500 L 192069.8 -5513165 L 191795.6 -5513241 L 191605 -5512518 L 191999.4 -5512356 L 192288 -5511566 L 192213.1 -5511292 L 192671.3 -5511278 L 192999.6 -5510357 L 193594.4 -5509566 L 193667.1 -5509228 L 193401.6 -5508818 L 194297.3 -5505911 L 194105.6 -5504296 L 193949.2 -5504259 L 192737.5 -5505001 L 192551.4 -5504968 L 192452.2 -5504950 L 192133.9 -5503932 L 191592 -5502985 L 191486.2 -5502357 L 191805.7 -5501921 L 191350.8 -5501681 L 190201.8 -5502265 L 189813 -5502197 L 189321.8 -5501832 L 188765.6 -5501013 L 188320.7 -5499421 L 188156.8 -5497829 L 188479.7 -5496552 L 189406.4 -5494585 L 191102.3 -5491082 L 192652.2 -5489053 L 196727.3 -5482717 L 196767.1 -5482655 L 197049.2 -5481790 L 197281.9 -5480062 L 197123.3 -5479999 L 196935.9 -5480780 L 196825.8 -5480688 L 196689.4 -5479706 L 196209.6 -5478295 L 196263.8 -5476863 L 195762.8 -5476677 L 195649.5 -5476254 L 195903.9 -5475952 L 195850.2 -5475039 L 196387.5 -5475935 L 197369.8 -5476079 L 197656.1 -5476437 L 198021.6 -5476532 L 199025.1 -5476037 L 199072.5 -5475702 L 198042.9 -5475307 L 198240.1 -5474933 L 198267.7 -5474370 L 198924.3 -5473702 L 199516.8 -5473472 L 200192.9 -5473617 L 200371.4 -5473321 L 200427.7 -5472501 L 198966.6 -5471252 L 199045.9 -5470990 L 199067.8 -5471002 L 198870.4 -5470749 L 198883.1 -5470291 L 198971.7 -5468429 L 199304.4 -5467496 L 199617.4 -5467361 L 200025.2 -5466780 L 199446.9 -5466569 L 199090.9 -5466022 L 200513.1 -5464827 L 201052.8 -5463836 L 201747.4 -5463768 L 201711.4 -5463091 L 201888.7 -5462796 L 202257.6 -5462949 L 203134.3 -5461454 L 204009.5 -5460828 L 204267 -5460568 L 204608.7 -5460679 L 205072.6 -5460118 L 205812.3 -5460060 L 206636.5 -5458054 L 206672.4 -5457999 L 207805.5 -5457923 L 209175.1 -5457229 L 209260.2 -5456853 L 210355 -5456695 L 211329.6 -5457254 L 213027.7 -5459132 L 213387.4 -5459247 L 213551.4 -5460234 L 213998.4 -5460765 L 214326.4 -5460654 L 214046.3 -5460380 L 214257.4 -5459632 L 215569.3 -5457692 L 216589.3 -5457299 L 214625.1 -5456169 L 214812.3 -5455449 L 213313.7 -5453304 L 212588.5 -5453145 L 211962.9 -5453557 L 211296.8 -5453425 L 211145.7 -5453073 L 212784.3 -5452635 L 213126.5 -5452576 L 212622.6 -5451731 L 214771 -5450324 L 215010.5 -5450037 L 214851.4 -5449694 L 215213.5 -5449582 L 215591.9 -5449587 L 215937.8 -5449402 L 216047.2 -5448765 L 214846.3 -5447783 L 214106 -5447582 L 213430.7 -5446622 L 213273.5 -5446262 L 215673.5 -5447909 L 216387.9 -5447768 L 216747.5 -5447837 L 216783 -5446877 L 216781.1 -5446553 L 216703.2 -5446242 L 216626 -5445075 L 216468.9 -5444716 L 217073.9 -5443343 L 217088.9 -5442961 L 217167.3 -5442702 L 217109.5 -5442439 L 217005.1 -5441964 L 216609.9 -5441285 L 216563.8 -5440894 L 216228 -5440705 L 215389 -5439922 L 215816.8 -5439289 L 216890.2 -5438988 L 217397.3 -5438417 L 217386.4 -5437679 L 217034.2 -5437765 L 215685.6 -5437319 L 214919.6 -5436096 L 214441.6 -5436286 L 214189 -5436167 L 213795.9 -5434757 L 213332.9 -5433772 L 211271.3 -5431679 L 211066.3 -5431371 L 210291.2 -5431292 L 207921.1 -5429960 L 207588.2 -5429751 L 207325.9 -5429767 L 207067.5 -5429715 L 206751.6 -5429904 L 206111.7 -5430222 L 205380.7 -5430147 L 204977.8 -5431176 L 204668 -5431017 L 203664.2 -5431157 L 203119.5 -5430740 L 202797.5 -5430874 L 202651.5 -5430547 L 202856.1 -5429884 L 201653.5 -5429430 L 202136 -5429010 L 201979.1 -5427934 L 201195.2 -5427167 L 201184.3 -5426801 L 201498.3 -5426662 L 201822.4 -5426546 L 202913.7 -5426949 L 205190.9 -5427134 L 205723.2 -5426593 L 205015.9 -5424782 L 202948.7 -5423653 L 202819.6 -5423274 L 202647.5 -5422913 L 202224 -5422110 L 202117.2 -5421825 L 201752.7 -5421777 L 201310.7 -5421188 L 200596.6 -5421085 L 199777.4 -5422241 L 199510.4 -5421983 L 198910.7 -5420780 L 197503.5 -5419747 L 197395.2 -5418837 L 197030 -5418944 L 196372.6 -5418694 L 195420.6 -5417538 L 194687 -5417660 L 194690.6 -5417496 L 194477.7 -5416798 L 194810.6 -5416177 L 196485.6 -5415726 L 196659.1 -5415403 L 196804.3 -5415423 L 197813.8 -5415102 L 198344.5 -5415127 L 198573.4 -5414981 L 198884.2 -5413893 L 199036.6 -5413543 L 199222.2 -5412867 L 198684.4 -5412358 L 199002.2 -5411695 L 199807.4 -5410926 L 201526.9 -5410254 L 202811.7 -5411245 L 203151 -5411223 L 204589 -5410036 L 205913.4 -5410413 L 206287.9 -5410426 L 207678.7 -5410060 L 208337.3 -5411316 L 208674.3 -5411135 L 209331.9 -5411515 L 210135 -5410742 L 210256.3 -5410378 L 211537.8 -5409507 L 213712.5 -5408740 L 214221.9 -5407780 L 215313.8 -5407648 L 216243 -5408169 L 216524.9 -5408418 L 218050.7 -5408484 L 218663.4 -5408941 L 218914.3 -5409231 L 219024 -5409039 L 217668.7 -5407357 L 217409.8 -5407072 L 216575.3 -5406371 L 216831.6 -5404589 L 217166.6 -5404433 L 217952.7 -5404526 L 218178.6 -5404834 L 218910 -5404674 L 219728.1 -5403858 L 219963.9 -5402736 L 220404 -5402107 L 221429.4 -5401350 L 221712.3 -5401180 L 222188.8 -5400713 L 222376.4 -5400432 L 222704.3 -5400243 L 224699.4 -5399345 L 224702.8 -5398595 L 224356.8 -5398754 L 223161.8 -5397917 L 222738.1 -5396874 L 221850.7 -5396191 L 221866.9 -5395811 L 221963.2 -5395453 L 222508.3 -5393362 L 223879.6 -5392839 L 224111.4 -5392174 L 223747 -5392164 L 223140 -5391992 L 223149.2 -5390183 L 222614.7 -5389240 L 222257.1 -5389107 L 221749.4 -5388563 L 221309 -5387147 L 221320.6 -5385987 L 219995.4 -5384608 L 218870.8 -5384403 L 218618.1 -5384207 L 214945.5 -5380409 L 214919.7 -5380025 L 214558.7 -5379231 L 214558.1 -5379230 z " |
id="path698" /> |
<path |
d="M 217409 -5407071 L 217667.9 -5407356 L 219023.2 -5409038 L 218913.5 -5409230 L 218662.6 -5408940 L 218049.9 -5408483 L 216524.1 -5408417 L 216242.2 -5408169 L 215313 -5407647 L 214221.1 -5407779 L 213711.7 -5408739 L 211537 -5409506 L 210255.5 -5410377 L 210134.2 -5410741 L 209331.1 -5411514 L 208673.5 -5411134 L 208336.5 -5411315 L 207677.9 -5410059 L 206287.1 -5410425 L 205912.6 -5410412 L 204588.2 -5410035 L 203150.2 -5411222 L 202810.9 -5411244 L 201526.1 -5410254 L 199806.6 -5410925 L 199001.4 -5411694 L 198683.6 -5412357 L 199221.4 -5412866 L 199035.8 -5413542 L 198883.4 -5413892 L 198572.6 -5414980 L 198343.7 -5415126 L 197813 -5415101 L 196803.5 -5415422 L 196658.3 -5415402 L 196484.8 -5415725 L 194809.8 -5416176 L 194476.9 -5416797 L 194689.8 -5417495 L 194686.2 -5417659 L 195419.8 -5417537 L 196371.8 -5418693 L 197029.2 -5418943 L 197394.4 -5418836 L 197502.7 -5419746 L 198909.9 -5420779 L 199509.6 -5421982 L 199776.6 -5422240 L 200595.8 -5421084 L 201309.9 -5421188 L 201751.9 -5421776 L 202116.4 -5421824 L 202223.2 -5422109 L 202646.7 -5422913 L 202818.8 -5423273 L 202947.9 -5423652 L 205015.1 -5424781 L 205722.4 -5426592 L 205190.1 -5427133 L 202912.9 -5426948 L 201821.6 -5426545 L 201497.5 -5426661 L 201183.5 -5426800 L 201194.4 -5427167 L 201978.3 -5427933 L 202135.2 -5429010 L 201652.7 -5429429 L 202855.3 -5429883 L 202650.7 -5430546 L 202796.7 -5430873 L 203118.7 -5430739 L 203663.4 -5431156 L 204667.2 -5431017 L 204977 -5431175 L 205379.9 -5430146 L 206110.9 -5430222 L 206750.8 -5429903 L 207066.7 -5429714 L 207325.1 -5429766 L 207587.4 -5429750 L 207920.3 -5429959 L 210290.4 -5431291 L 211065.5 -5431370 L 211270.5 -5431678 L 213332.1 -5433771 L 213795.1 -5434756 L 214188.2 -5436166 L 214440.8 -5436285 L 214918.8 -5436095 L 215684.8 -5437318 L 217033.4 -5437764 L 217385.6 -5437679 L 217396.5 -5438416 L 216889.4 -5438987 L 215816 -5439288 L 215388.2 -5439921 L 216227.2 -5440704 L 216563 -5440893 L 216609.1 -5441284 L 217004.3 -5441963 L 217108.7 -5442438 L 217166.5 -5442701 L 217088.1 -5442960 L 217073.1 -5443342 L 216468.1 -5444715 L 216625.2 -5445074 L 216702.4 -5446241 L 216780.3 -5446552 L 216782.2 -5446877 L 216746.7 -5447836 L 216387.1 -5447767 L 215672.7 -5447908 L 213272.7 -5446261 L 213429.9 -5446621 L 214105.2 -5447582 L 214845.5 -5447782 L 216046.4 -5448764 L 215937 -5449401 L 215591.1 -5449586 L 215212.7 -5449581 L 214850.6 -5449693 L 215009.7 -5450037 L 214770.2 -5450324 L 212621.8 -5451730 L 213125.7 -5452575 L 212783.5 -5452634 L 211144.9 -5453072 L 211296 -5453424 L 211962.1 -5453556 L 212587.7 -5453144 L 213312.9 -5453304 L 214811.5 -5455448 L 214624.3 -5456168 L 216588.5 -5457298 L 215568.5 -5457692 L 214256.6 -5459632 L 214045.5 -5460379 L 214325.6 -5460653 L 213997.6 -5460764 L 213550.6 -5460233 L 213386.6 -5459247 L 213026.9 -5459131 L 211328.8 -5457253 L 210354.2 -5456694 L 209259.4 -5456852 L 209174.3 -5457229 L 207804.7 -5457922 L 206671.6 -5457998 L 206635.7 -5458053 L 205811.5 -5460059 L 205071.8 -5460118 L 204607.9 -5460679 L 204266.2 -5460567 L 204008.7 -5460827 L 203133.5 -5461453 L 202256.8 -5462948 L 201887.9 -5462795 L 201710.6 -5463090 L 201746.6 -5463767 L 201052 -5463835 L 200512.3 -5464826 L 199090.1 -5466021 L 199446.1 -5466568 L 200024.4 -5466779 L 199616.6 -5467360 L 199303.6 -5467495 L 198970.9 -5468428 L 198882.3 -5470290 L 198869.6 -5470748 L 199067 -5471001 L 200441.4 -5471785 L 200642.8 -5472048 L 201033.7 -5472142 L 200737.4 -5472550 L 200634.8 -5473425 L 201075.2 -5473794 L 201189.7 -5474524 L 200903.2 -5475338 L 200549.6 -5475675 L 200485.7 -5476114 L 200601.1 -5476233 L 202617.5 -5478324 L 202726.5 -5478697 L 203796.8 -5479266 L 204673.4 -5479368 L 205230.7 -5479320 L 205434.5 -5479022 L 206893.7 -5479073 L 207932.1 -5479569 L 209773.4 -5479613 L 209803.2 -5479374 L 210214.9 -5479270 L 210328.2 -5479371 L 210578.7 -5479595 L 211261.4 -5479199 L 212092.6 -5479345 L 212909.5 -5479287 L 215327.2 -5478781 L 216968.6 -5477112 L 218892.2 -5475865 L 221109.3 -5474943 L 222794.1 -5474241 L 223954.2 -5473947 L 229912.7 -5472841 L 231685.6 -5472904 L 233102.1 -5472630 L 234777 -5472685 L 235018.3 -5472611 L 235733.9 -5472390 L 236573.9 -5471900 L 237981.8 -5471721 L 238995.8 -5471775 L 241889 -5472338 L 243009.8 -5472296 L 245577.6 -5471822 L 248320.7 -5470925 L 248534.4 -5470733 L 248857.1 -5470878 L 249731.3 -5470696 L 252113.9 -5470626 L 252506.6 -5470615 L 253936.2 -5470029 L 256055 -5468921 L 258513.1 -5466935 L 258951.8 -5466581 L 261565.7 -5465244 L 263622 -5464820 L 263787.7 -5464574 L 263732.2 -5464189 L 263891.1 -5464070 L 264449.3 -5463616 L 265141.8 -5463501 L 265154.1 -5463272 L 264295.1 -5463176 L 263976.6 -5462955 L 263830.6 -5462361 L 264327.9 -5462566 L 265100.5 -5462378 L 265223.2 -5462444 L 265471.1 -5462577 L 265745.1 -5463151 L 265828.1 -5463970 L 272414.3 -5464857 L 274960 -5465517 L 275946.3 -5465883 L 280376 -5467573 L 281159.9 -5467783 L 281678.8 -5467923 L 282026.7 -5468115 L 282909 -5468603 L 285603.5 -5470092 L 285715.2 -5470378 L 286283.8 -5470786 L 287477.2 -5471643 L 287800.7 -5472246 L 288141.9 -5472518 L 288837.5 -5473375 L 290630.5 -5475400 L 291875.4 -5476357 L 293724.9 -5476939 L 295388.1 -5477206 L 296346.5 -5477817 L 296904.9 -5478043 L 297938.6 -5478462 L 298852.3 -5478485 L 299172.2 -5478680 L 299711.2 -5478582 L 303624.9 -5478586 L 303835.2 -5478605 L 303798.5 -5476618 L 304486.8 -5474479 L 304523.8 -5474099 L 304331.9 -5473784 L 303925.9 -5472384 L 304038.9 -5472013 L 304331.9 -5470895 L 305392.8 -5468854 L 304099 -5466524 L 303887.5 -5466354 L 303433.5 -5466060 L 303756.4 -5465967 L 304720 -5465668 L 305125.7 -5463985 L 304179.5 -5462910 L 304094.5 -5462560 L 305042.5 -5462029 L 306550.3 -5463619 L 307937.6 -5463915 L 308264.2 -5463738 L 309286.3 -5462882 L 309528.8 -5462653 L 309351.9 -5462344 L 309386.4 -5460234 L 309017.2 -5460232 L 306338.4 -5459187 L 305246.8 -5459139 L 304878.4 -5459051 L 305957.7 -5456692 L 306278.3 -5456472 L 308051.2 -5454996 L 309197.4 -5454893 L 309548.3 -5454787 L 309588.4 -5454423 L 309950 -5453830 L 309609 -5452329 L 309480 -5451961 L 309551.6 -5450986 L 309711.9 -5450697 L 309314.7 -5448308 L 309170.8 -5447987 L 309279.6 -5447886 L 310284.9 -5447443 L 310666 -5447430 L 311133.3 -5447061 L 312123.7 -5447071 L 312170.8 -5446697 L 312518.6 -5446552 L 312333.7 -5446231 L 311771.2 -5445309 L 310708.2 -5445096 L 310786.4 -5444378 L 310760 -5444234 L 310643.1 -5443905 L 309978.2 -5442026 L 310053.4 -5441694 L 310720.6 -5441649 L 310804.9 -5441341 L 310105.9 -5440646 L 311144 -5440490 L 311235.1 -5440105 L 311149.2 -5438927 L 310873.6 -5439162 L 309161.3 -5439335 L 308333.4 -5438728 L 308341.5 -5438365 L 308405.8 -5437672 L 307390 -5436716 L 307663.5 -5436464 L 307981.1 -5436667 L 308644.3 -5434963 L 310424.8 -5434437 L 310794.9 -5434421 L 311519 -5434310 L 313041.1 -5432808 L 312881.5 -5432159 L 312189.4 -5431419 L 312079.6 -5431094 L 311984.9 -5430407 L 311500.7 -5429151 L 311403.9 -5428813 L 311887.9 -5428304 L 311845.2 -5427601 L 311782.3 -5427252 L 310343 -5425280 L 309424.2 -5425548 L 309771.9 -5426650 L 307839.7 -5427809 L 307644.9 -5427486 L 306224.1 -5425310 L 304483.6 -5424607 L 304221.1 -5424888 L 303520.3 -5425116 L 302734.9 -5425945 L 302413.5 -5425835 L 300808.7 -5425420 L 300481.9 -5425565 L 300400.9 -5427270 L 300045.6 -5427225 L 298985.8 -5427105 L 298043.1 -5426594 L 297757.5 -5425151 L 297260 -5424613 L 296518.6 -5424614 L 296349.2 -5424927 L 295837.9 -5425324 L 293789.5 -5424801 L 293585.7 -5424519 L 293144.3 -5423579 L 292519.2 -5423279 L 292145.7 -5423168 L 291059.5 -5423353 L 290762.9 -5424851 L 290672.6 -5425172 L 290092.2 -5425978 L 289464.4 -5426204 L 289286.7 -5425955 L 288981 -5425757 L 287354.7 -5424336 L 285968.9 -5424750 L 285770.1 -5424460 L 284821.2 -5423474 L 284631.6 -5422437 L 284473.7 -5422106 L 284172 -5421455 L 284166.3 -5421151 L 283556.5 -5420528 L 281609.4 -5420146 L 279090.1 -5418978 L 279142.4 -5418652 L 279308.2 -5417679 L 279272.1 -5417654 L 279075.7 -5417955 L 278126.7 -5418239 L 277489.5 -5417918 L 277490.5 -5417473 L 277237.6 -5417168 L 275348.1 -5415747 L 275218.2 -5415387 L 274521.9 -5414573 L 274114.1 -5414366 L 273816.4 -5414580 L 273153.4 -5414786 L 271782.4 -5414344 L 271192.3 -5414486 L 270494.6 -5415267 L 270232 -5414210 L 269157.7 -5413985 L 268952.8 -5413663 L 270248.6 -5411837 L 269909.6 -5411939 L 268645.1 -5412565 L 268386.4 -5412323 L 266780.3 -5413225 L 266356.2 -5414204 L 265021.5 -5414781 L 264627.7 -5415410 L 264374 -5415190 L 263846.7 -5414796 L 262927.8 -5415118 L 262656 -5415296 L 261884.7 -5415833 L 261044.2 -5415895 L 260659 -5415955 L 260011.4 -5416347 L 258886.4 -5416308 L 258583.3 -5416358 L 257752.8 -5415997 L 257580.5 -5416345 L 257142.6 -5416977 L 255594.5 -5417031 L 255455.7 -5416719 L 255009.2 -5415799 L 255144.6 -5415480 L 255402.7 -5414578 L 255075 -5414367 L 254178.4 -5413105 L 254054.5 -5413186 L 252463.7 -5414706 L 252555.4 -5415404 L 253270.4 -5415579 L 252995.6 -5416201 L 252815.4 -5416163 L 251489 -5416029 L 251128 -5416165 L 250265.2 -5417416 L 250037.7 -5417719 L 249938.4 -5418470 L 249618.6 -5418673 L 248545.9 -5418333 L 248583.8 -5418699 L 248032.2 -5419050 L 245670 -5418967 L 245317 -5418654 L 244667.2 -5417719 L 243225.1 -5417382 L 243296.4 -5416628 L 242223.7 -5416335 L 242079.3 -5416622 L 241217.1 -5416864 L 239314.5 -5416502 L 238428.7 -5415209 L 237751.2 -5414817 L 237395.1 -5414901 L 237015.2 -5415526 L 235569.6 -5415412 L 235324.3 -5415379 L 235083.9 -5415321 L 234752.1 -5415123 L 233718.9 -5414612 L 232184.7 -5414713 L 232375.7 -5415060 L 232404.5 -5416235 L 231695.2 -5415992 L 229509.3 -5416525 L 228924.8 -5416992 L 227826.3 -5415991 L 228034.8 -5415694 L 228836.9 -5414559 L 229457.8 -5414244 L 229121 -5414060 L 227438.8 -5412542 L 227197.8 -5412226 L 226950.8 -5411915 L 226556.3 -5411877 L 224757.8 -5411136 L 222033.9 -5410682 L 221957 -5410330 L 221689.2 -5410088 L 221345.5 -5409933 L 219857.1 -5407828 L 219510.3 -5407661 L 218557.9 -5407042 L 217408.7 -5407070 L 217409 -5407071 z " |
id="path699" /> |
</g> |
</svg> |
/tags/v5.12-baouque/services/presentations/images/cartes/grille_utm_100km.svg |
---|
New file |
0,0 → 1,1105 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
<!-- Created with Inkscape (http://www.inkscape.org/) --> |
<svg |
xmlns:dc="http://purl.org/dc/elements/1.1/" |
xmlns:cc="http://creativecommons.org/ns#" |
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
xmlns:svg="http://www.w3.org/2000/svg" |
xmlns="http://www.w3.org/2000/svg" |
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" |
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" |
width="210mm" |
height="297mm" |
id="svg8755" |
version="1.1" |
inkscape:version="0.48.1 r9760" |
sodipodi:docname="Nouveau document 6"> |
<defs |
id="defs8757" /> |
<sodipodi:namedview |
id="base" |
pagecolor="#ffffff" |
bordercolor="#666666" |
borderopacity="1.0" |
inkscape:pageopacity="0.0" |
inkscape:pageshadow="2" |
inkscape:zoom="0.35" |
inkscape:cx="375" |
inkscape:cy="520" |
inkscape:document-units="px" |
inkscape:current-layer="layer1" |
showgrid="false" |
inkscape:window-width="531" |
inkscape:window-height="415" |
inkscape:window-x="1600" |
inkscape:window-y="706" |
inkscape:window-maximized="0" /> |
<metadata |
id="metadata8760"> |
<rdf:RDF> |
<cc:Work |
rdf:about=""> |
<dc:format>image/svg+xml</dc:format> |
<dc:type |
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> |
<dc:title></dc:title> |
</cc:Work> |
</rdf:RDF> |
</metadata> |
<g |
inkscape:label="Calque 1" |
inkscape:groupmode="layer" |
id="layer1"> |
<g |
transform="matrix(6.1963915e-4,0,0,6.1963915e-4,82.591913,3773.4213)" |
id="100kok_tranverse_31t" |
style="fill:none;stroke:#000000;stroke-width:777.70001221;stroke-linecap:round;stroke-linejoin:round"> |
<rect title="648196,5112751" x="648000" y="5113000" width="10" height="10" fill="green"/> |
<path |
d="m -268783.4,-4466744.4 1030.4,-10111.1 1032.3,-10110.9 1034.3,-10110.7 1036.2,-10110.4 1038.1,-10110.2 1040,-10110.1 761.1,-7386.3 3811.7,262.1 10038.7,690 10037.6,689.8 10036.3,689.6 10035,689.4 10033.8,689.1 -688.4,10033.3 -687.2,10033.5 -686,10033.7 -684.8,10033.9 -683.4,10034 -682.2,10034.3 -654.6,9645.1 -5888.2,-555.7 -10061.1,-963.2 -10061.6,-976.8 -10062.1,-990.4 -10062.7,-1004.1 -10063.2,-1017.8 z" |
id="path1983" |
fill="red" /> |
<path |
d="m -112435,-4452466.4 -5453.1,-441.4 -10056.4,-827.4 -10056.8,-841 -10057.3,-854.5 -10057.7,-868.1 -10058.2,-881.6 -10058.7,-895.2 -10059.2,-908.8 -10059.6,-922.4 -10060.1,-936 -4172.4,-393.8 654.6,-9645.1 682.2,-10034.3 683.4,-10034 684.8,-10033.9 686,-10033.7 687.2,-10033.5 688.4,-10033.3 10032.5,689 10031.4,688.8 10030,688.6 10028.8,688.3 10027.6,688.2 10026.3,687.9 10025.1,687.8 10023.9,687.5 10022.6,687.3 10021.3,687.2 -686.4,10020.9 -685.3,10021 -684,10021.1 -682.7,10021.4 -681.5,10021.5 -680.2,10021.8 -679,10021.9 -107.4,1587.4 z" |
id="path1984" |
fill="red" /> |
<path |
d="m -12321.5,-4445036.3 -5026.1,-339.6 -10052.2,-692.6 -10052.7,-706 -10053,-719.5 -10053.4,-732.9 -10053.8,-746.4 -10054.2,-759.9 -10054.6,-773.4 -10055.1,-786.9 -10055.5,-800.4 -4602.8,-372.5 107.4,-1587.4 679,-10021.9 680.2,-10021.8 681.5,-10021.5 682.7,-10021.4 684,-10021.1 685.3,-10021 686.4,-10020.9 10020.1,687.1 10018.9,686.8 10017.5,686.7 10016.4,686.4 10015.1,686.3 10013.9,686.1 10012.6,685.9 10011.4,685.7 10010.1,685.5 10008.9,685.3 -684.7,10008.4 -683.4,10008.5 -682.2,10008.7 -680.9,10008.9 -679.7,10009 -678.4,10009.3 -677.2,10009.4 -151.6,2243.2 z" |
id="path1985" |
inkscape:connector-curvature="0" /> |
<path |
d="m 87755.3,-4438939 -4599.8,-249.5 -10048.8,-558.4 -10049.1,-571.8 -10049.5,-585.2 -10049.8,-598.6 -10050.1,-612 -10050.5,-625.4 -10050.8,-638.8 -10051.1,-652.3 -10051.6,-665.7 -5025.7,-339.5 151.6,-2243.2 677.2,-10009.4 678.4,-10009.3 679.7,-10009 680.9,-10008.9 682.2,-10008.7 683.4,-10008.5 684.7,-10008.4 10007.7,685.2 10006.4,685.1 10005.2,684.9 10003.9,684.7 10002.7,684.5 10001.4,684.3 10000.1,684.3 9999,684 9997.7,683.9 9996.4,683.7 -683,9996 -681.8,9996.1 -680.5,9996.2 -679.4,9996.4 -678,9996.5 -676.8,9996.7 -675.5,9996.8 -106.9,1583.5 z" |
id="path1986" |
inkscape:connector-curvature="0" /> |
<path |
d="m 187794.9,-4434168.2 -4166.6,-170.7 -10046.2,-424.9 -10046.3,-438.2 -10046.6,-451.6 -10046.9,-464.9 -10047.1,-478.3 -10047.4,-491.6 -10047.7,-505 -10047.9,-518.3 -10048.2,-531.7 -5448.8,-295.6 106.9,-1583.5 675.5,-9996.8 676.8,-9996.7 678,-9996.5 679.4,-9996.4 680.5,-9996.2 681.8,-9996.1 683,-9996 9995.3,683.6 9994,683.5 9992.8,683.3 9991.6,683 9990.2,683 9989,682.8 9987.8,682.7 9986.5,682.5 9985.3,682.4 9984.1,682.3 -681.5,9983.5 -680.4,9983.7 -679,9983.8 -677.9,9983.9 -676.6,9984 -675.4,9984.2 -647.9,9596.8 z" |
id="path1987" |
inkscape:connector-curvature="0" /> |
<path |
d="m 246203.2,-4500000 -251.3,7374.2 -343.5,10093.2 -342.9,10093 -342.2,10092.8 -341.6,10092.7 -341,10092.6 -340.3,10092.5 -10044.8,-345 -10045,-358.3 -10045.2,-371.6 -10045.4,-385 -10045.7,-398.3 -5879.3,-240.9 647.9,-9596.8 675.4,-9984.2 676.6,-9984 677.9,-9983.9 679,-9983.8 680.4,-9983.7 681.5,-9983.5 9982.8,682.2 9981.6,682 9980.3,681.9 9979.1,681.8 9977.8,681.6 3787.9,258.7 z" |
id="path1988" |
inkscape:connector-curvature="0" /> |
<path |
d="m -261810.9,-4534794.2 280.8,-2723.5 1043.8,-10109.5 1045.7,-10109.3 1047.6,-10109 1049.5,-10108.8 1051.4,-10108.6 1053.3,-10108.3 1055.2,-10108.1 1057.1,-10107.9 1058.9,-10107.6 676.3,-6445.4 355.4,24.9 10036.6,702.4 10035.4,702.1 10034.1,702 10033,701.8 10031.7,701.5 -700.8,10031.2 -699.6,10031.3 -698.3,10031.6 -697.2,10031.8 -695.9,10032.1 -694.7,10032.2 -693.3,10032.4 -692.2,10032.7 -691,10032.9 -689.7,10033 -10033.8,-689.1 -10035,-689.4 -10036.3,-689.6 -10037.6,-689.8 -10038.7,-690 -3811.7,-262.1 z" |
id="path1989" |
inkscape:connector-curvature="0" /> |
<path |
d="m -207817.9,-4531084.1 689.7,-10033 691,-10032.9 692.2,-10032.7 693.3,-10032.4 694.7,-10032.2 695.9,-10032.1 697.2,-10031.8 698.3,-10031.6 699.6,-10031.3 700.8,-10031.2 10030.4,701.3 10029.3,701.1 10028.1,700.9 10026.8,700.8 10025.5,700.5 10024.4,700.3 10023.1,700.1 10021.9,699.9 10020.6,699.8 10019.5,699.5 -698.8,10018.9 -697.6,10019.1 -696.5,10019.3 -695.1,10019.5 -693.9,10019.7 -692.7,10019.9 -691.4,10020.1 -690.2,10020.2 -688.9,10020.4 -687.8,10020.6 -10021.3,-687.2 -10022.6,-687.3 -10023.9,-687.5 -10025.1,-687.8 -10026.3,-687.9 -10027.6,-688.2 -10028.8,-688.3 -10030,-688.6 -10031.4,-688.8 -10032.5,-689 z" |
id="path1990" |
inkscape:connector-curvature="0" /> |
<path |
d="m -107548.5,-4524203.5 687.8,-10020.6 688.9,-10020.4 690.2,-10020.2 691.4,-10020.1 692.7,-10019.9 693.9,-10019.7 695.1,-10019.5 696.5,-10019.3 697.6,-10019.1 698.8,-10018.9 10018.2,699.4 10017,699.1 10015.7,699 10014.6,698.7 10013.2,698.6 10012.1,698.5 10010.9,698.2 10009.6,698.1 10008.4,697.8 10007.2,697.7 -697,10006.7 -695.8,10006.8 -694.6,10007 -693.3,10007.2 -692.1,10007.3 -690.9,10007.5 -689.6,10007.7 -688.4,10007.9 -687.1,10007.9 -685.9,10008.2 -10008.9,-685.3 -10010.1,-685.5 -10011.4,-685.7 -10012.6,-685.9 -10013.9,-686.1 -10015.1,-686.3 -10016.4,-686.4 -10017.5,-686.7 -10018.9,-686.8 -10020.1,-687.1 z" |
id="path1991" |
inkscape:connector-curvature="0" /> |
<path |
d="m -7403.5,-4517341.8 685.9,-10008.2 687.1,-10007.9 688.4,-10007.9 689.6,-10007.7 690.9,-10007.5 692.1,-10007.3 693.3,-10007.2 694.6,-10007 695.8,-10006.8 697,-10006.7 10005.9,697.6 10004.7,697.4 10003.5,697.1 10002.3,697.1 10001,696.8 9999.8,696.7 9998.6,696.6 9997.4,696.3 9996.2,696.3 9994.9,696 -695.4,9994.4 -694.1,9994.5 -692.9,9994.7 -691.7,9994.8 -690.4,9995 -689.2,9995.1 -688,9995.4 -686.8,9995.5 -685.5,9995.6 -684.3,9995.8 -9996.4,-683.7 -9997.7,-683.9 -9999,-684 -10000.1,-684.3 -10001.4,-684.3 -10002.7,-684.5 -10003.9,-684.7 -10005.2,-684.9 -10006.4,-685.1 -10007.7,-685.2 z" |
id="path1992" |
inkscape:connector-curvature="0" /> |
<path |
d="m 92617.2,-4510497.2 684.3,-9995.8 685.5,-9995.6 686.8,-9995.5 688,-9995.4 689.2,-9995.1 690.4,-9995 691.7,-9994.8 692.9,-9994.7 694.1,-9994.5 695.4,-9994.4 9993.7,696 9992.5,695.7 9991.2,695.6 9990,695.5 9988.8,695.3 9987.5,695.2 9986.3,695 9985.2,694.9 9983.9,694.8 9982.6,694.7 -693.9,9982.1 -692.7,9982.2 -691.5,9982.4 -690.2,9982.6 -689,9982.7 -687.8,9982.8 -686.5,9982.9 -685.2,9983.2 -684.1,9983.2 -682.8,9983.3 -9984.1,-682.3 -9985.3,-682.4 -9986.5,-682.5 -9987.8,-682.7 -9989,-682.8 -9990.2,-683 -9991.6,-683 -9992.8,-683.3 -9994,-683.5 -9995.3,-683.6 z" |
id="path1993" |
inkscape:connector-curvature="0" /> |
<path |
d="m 249645.7,-4600000 -223.4,6437.1 -349.9,10094.2 -349.3,10094.1 -348.6,10094 -348,10093.9 -347.4,10093.8 -346.7,10093.7 -346.1,10093.5 -345.5,10093.4 -344.8,10093.3 -92.9,2719 -3787.9,-258.7 -9977.8,-681.6 -9979.1,-681.8 -9980.3,-681.9 -9981.6,-682 -9982.8,-682.2 682.8,-9983.3 684.1,-9983.2 685.2,-9983.2 686.5,-9982.9 687.8,-9982.8 689,-9982.7 690.2,-9982.6 691.5,-9982.4 692.7,-9982.2 693.9,-9982.1 9981.4,694.5 9980.3,694.3 9979,694.2 9977.7,694.1 9976.5,693.9 353.3,24.5 z" |
id="path1994" |
inkscape:connector-curvature="0" /> |
<path |
d="m -251391.4,-4634940.1 384.5,-3662.1 1062.7,-10107.1 1064.6,-10106.9 1066.4,-10106.7 1068.3,-10106.4 1070.2,-10106.2 1072,-10106 1073.9,-10105.7 1075.7,-10105.5 1077.6,-10105.3 586.7,-5493.4 6873.3,489.4 10033.3,714.4 10032,714.2 10030.8,713.9 10029.6,713.7 -713,10029.1 -711.8,10029.3 -710.6,10029.5 -709.3,10029.7 -708.2,10029.9 -707,10030.2 -705.6,10030.4 -704.6,10030.6 -703.2,10030.7 -702.1,10031.1 -10031.7,-701.5 -10033,-701.8 -10034.1,-702 -10035.4,-702.1 -10036.6,-702.4 -355.4,-24.9 z" |
id="path1995" |
inkscape:connector-curvature="0" /> |
<path |
d="m -200865.2,-4631405.3 702.1,-10031.1 703.2,-10030.7 704.6,-10030.6 705.6,-10030.4 707,-10030.2 708.2,-10029.9 709.3,-10029.7 710.6,-10029.5 711.8,-10029.3 713,-10029.1 10028.3,713.5 10027.2,713.4 10026,713.1 10024.8,712.9 10023.5,712.6 10022.4,712.6 10021.1,712.3 10019.9,712.1 10018.8,711.9 10017.5,711.6 -711.1,10017 -709.8,10017.3 -708.6,10017.4 -707.4,10017.5 -706.2,10017.8 -705,10018 -703.7,10018.2 -702.5,10018.3 -701.3,10018.5 -700,10018.7 -10019.5,-699.5 -10020.6,-699.8 -10021.9,-699.9 -10023.1,-700.1 -10024.4,-700.3 -10025.5,-700.5 -10026.8,-700.8 -10028.1,-700.9 -10029.3,-701.1 -10030.4,-701.3 z" |
id="path1996" |
inkscape:connector-curvature="0" /> |
<path |
d="m -100615.7,-4624401.2 700,-10018.7 701.3,-10018.5 702.5,-10018.3 703.7,-10018.2 705,-10018 706.2,-10017.8 707.4,-10017.5 708.6,-10017.4 709.8,-10017.3 711.1,-10017 10016.3,711.6 10015.2,711.3 10013.9,711.2 10012.7,710.9 10011.5,710.8 10010.3,710.5 10009.1,710.5 10007.9,710.2 10006.6,710 10005.4,709.9 -709.2,10004.9 -708,10005.1 -706.8,10005.3 -705.6,10005.5 -704.3,10005.6 -703.1,10005.7 -701.9,10006 -700.7,10006.1 -699.5,10006.2 -698.2,10006.5 -10007.2,-697.7 -10008.4,-697.8 -10009.6,-698.1 -10010.9,-698.2 -10012.1,-698.5 -10013.2,-698.6 -10014.6,-698.7 -10015.7,-699 -10017,-699.1 -10018.2,-699.4 z" |
id="path1997" |
inkscape:connector-curvature="0" /> |
<path |
d="m -488.8,-4617416 698.2,-10006.5 699.5,-10006.2 700.7,-10006.1 701.9,-10006 703.1,-10005.7 704.3,-10005.6 705.6,-10005.5 706.8,-10005.3 708,-10005.1 709.2,-10004.9 10004.2,709.6 10003.1,709.6 10001.8,709.4 10000.7,709.1 9999.4,709.1 9998.2,708.8 9997,708.8 9995.7,708.5 9994.6,708.4 9993.4,708.2 -707.6,9992.8 -706.3,9993.1 -705.1,9993.2 -703.9,9993.3 -702.7,9993.5 -701.5,9993.7 -700.3,9993.8 -699.1,9993.9 -697.8,9994.1 -696.6,9994.2 -9994.9,-696 -9996.2,-696.3 -9997.4,-696.3 -9998.6,-696.6 -9999.8,-696.7 -10001,-696.8 -10002.3,-697.1 -10003.5,-697.1 -10004.7,-697.4 -10005.9,-697.6 z" |
id="path1998" |
inkscape:connector-curvature="0" /> |
<path |
d="m 99515.6,-4610448.1 696.6,-9994.2 697.8,-9994.1 699.1,-9993.9 700.3,-9993.8 701.5,-9993.7 702.7,-9993.5 703.9,-9993.3 705.1,-9993.2 706.3,-9993.1 707.6,-9992.8 9992.1,708.1 9991,707.9 9989.8,707.8 9988.5,707.6 9987.4,707.4 9986.1,707.4 9984.9,707.2 9983.7,707.1 9982.5,706.9 9981.2,706.8 -706,9980.8 -705,9980.9 -703.6,9981.1 -702.5,9981.1 -701.2,9981.3 -700,9981.5 -698.8,9981.7 -697.6,9981.7 -696.4,9981.8 -695.1,9982.1 -9982.6,-694.7 -9983.9,-694.8 -9985.2,-694.9 -9986.3,-695 -9987.5,-695.2 -9988.8,-695.3 -9990,-695.5 -9991.2,-695.6 -9992.5,-695.7 -9993.7,-696 z" |
id="path1999" |
inkscape:connector-curvature="0" /> |
<path |
d="m 253150,-4700000 -193.8,5488.2 -356.2,10095.4 -355.6,10095.3 -355,10095.2 -354.3,10095 -353.7,10094.9 -353.1,10094.8 -352.4,10094.7 -351.8,10094.6 -351.2,10094.5 -127.2,3657.4 -353.3,-24.5 -9976.5,-693.9 -9977.7,-694.1 -9979,-694.2 -9980.3,-694.3 -9981.4,-694.5 695.1,-9982.1 696.4,-9981.8 697.6,-9981.7 698.8,-9981.7 700,-9981.5 701.2,-9981.3 702.5,-9981.1 703.6,-9981.1 705,-9980.9 706,-9980.8 9980.1,706.7 9978.9,706.5 9977.7,706.3 9976.5,706.2 6833,483.7 z" |
id="path2000" |
inkscape:connector-curvature="0" /> |
<path |
d="m -240788.8,-4735051.3 492.8,-4611.6 1081.3,-10104.9 1083.1,-10104.5 1085,-10104.3 1086.8,-10104.1 1088.7,-10103.8 1090.5,-10103.6 1092.3,-10103.4 1094.2,-10103.1 1096,-10102.9 492.2,-4530.4 3295.3,238.6 10031.1,726.4 10029.9,726.1 10028.7,725.9 10027.5,725.8 -725,10027 -723.8,10027.1 -722.7,10027.5 -721.4,10027.6 -720.2,10027.8 -719.1,10028 -717.8,10028.3 -716.6,10028.5 -715.4,10028.7 -714.2,10028.9 -10029.6,-713.7 -10030.8,-713.9 -10032,-714.2 -10033.3,-714.4 -6873.3,-489.4 z" |
id="path2001" |
inkscape:connector-curvature="0" /> |
<path |
d="m -193789.8,-4731705.8 714.2,-10028.9 715.4,-10028.7 716.6,-10028.5 717.8,-10028.3 719.1,-10028 720.2,-10027.8 721.4,-10027.6 722.7,-10027.5 723.8,-10027.1 725,-10027 10026.3,725.5 10025.1,725.2 10024,725.1 10022.7,724.8 10021.5,724.7 10020.4,724.5 10019.1,724.3 10018,724.1 10016.7,723.8 10015.6,723.7 -723,10015.1 -721.8,10015.3 -720.6,10015.5 -719.5,10015.7 -718.2,10015.8 -717,10016.1 -715.8,10016.2 -714.6,10016.5 -713.5,10016.6 -712.2,10016.8 -10017.5,-711.6 -10018.8,-711.9 -10019.9,-712.1 -10021.1,-712.3 -10022.4,-712.6 -10023.5,-712.6 -10024.8,-712.9 -10026,-713.1 -10027.2,-713.4 -10028.3,-713.5 z" |
id="path2002" |
inkscape:connector-curvature="0" /> |
<path |
d="m -93560.3,-4724579.8 712.2,-10016.8 713.5,-10016.6 714.6,-10016.5 715.8,-10016.2 717,-10016.1 718.2,-10015.8 719.5,-10015.7 720.6,-10015.5 721.8,-10015.3 723,-10015.1 10014.4,723.5 10013.2,723.2 10012,723.1 10010.9,723 10009.6,722.8 10008.5,722.6 10007.3,722.4 10006.1,722.2 10004.9,722 10003.7,721.9 -721.2,10003.2 -720,10003.3 -718.8,10003.6 -717.6,10003.7 -716.4,10003.9 -715.2,10004 -714,10004.3 -712.8,10004.4 -711.6,10004.5 -710.4,10004.8 -10005.4,-709.9 -10006.6,-710 -10007.9,-710.2 -10009.1,-710.5 -10010.3,-710.5 -10011.5,-710.8 -10012.7,-710.9 -10013.9,-711.2 -10015.2,-711.3 -10016.3,-711.6 z" |
id="path2003" |
inkscape:connector-curvature="0" /> |
<path |
d="m 6548.4,-4717473 710.4,-10004.8 711.6,-10004.5 712.8,-10004.4 714,-10004.3 715.2,-10004 716.4,-10003.9 717.6,-10003.7 718.8,-10003.6 720,-10003.3 721.2,-10003.2 10002.5,721.6 10001.3,721.5 10000.2,721.4 9998.9,721.2 9997.8,721 9996.5,720.8 9995.4,720.7 9994.2,720.5 9993,720.4 9991.8,720.2 -719.5,9991.3 -718.3,9991.5 -717.2,9991.6 -715.9,9991.8 -714.7,9991.9 -713.6,9992.1 -712.4,9992.2 -711.2,9992.4 -709.9,9992.5 -708.8,9992.6 -9993.4,-708.2 -9994.6,-708.4 -9995.7,-708.5 -9997,-708.8 -9998.2,-708.8 -9999.4,-709.1 -10000.7,-709.1 -10001.8,-709.4 -10003.1,-709.6 -10004.2,-709.6 z" |
id="path2004" |
inkscape:connector-curvature="0" /> |
<path |
d="m 106536.4,-4710383.5 708.8,-9992.6 709.9,-9992.5 711.2,-9992.4 712.4,-9992.2 713.6,-9992.1 714.7,-9991.9 715.9,-9991.8 717.2,-9991.6 718.3,-9991.5 719.5,-9991.3 9990.6,720 9989.4,720 9988.3,719.7 9987,719.6 9985.9,719.4 9984.7,719.3 9983.5,719.2 9982.3,719 9981.1,719 9979.9,718.8 -718.1,9979.4 -716.9,9979.5 -715.7,9979.7 -714.6,9979.8 -713.2,9979.9 -712.2,9980 -710.9,9980.2 -709.7,9980.4 -708.5,9980.5 -707.3,9980.6 -9981.2,-706.8 -9982.5,-706.9 -9983.7,-707.1 -9984.9,-707.2 -9986.1,-707.4 -9987.4,-707.4 -9988.5,-707.6 -9989.8,-707.8 -9991,-707.9 -9992.1,-708.1 z" |
id="path2005" |
inkscape:connector-curvature="0" /> |
<path |
d="m 256715,-4800000 -162.6,4527.7 -362.4,10096.6 -361.8,10096.4 -361.2,10096.3 -360.6,10096.2 -359.9,10096.1 -359.3,10096 -358.7,10095.9 -358.1,10095.7 -357.5,10095.7 -163,4607.3 -6833,-483.7 -9976.5,-706.2 -9977.7,-706.3 -9978.9,-706.5 -9980.1,-706.7 707.3,-9980.6 708.5,-9980.5 709.7,-9980.4 710.9,-9980.2 712.2,-9980 713.2,-9979.9 714.6,-9979.8 715.7,-9979.7 716.9,-9979.5 718.1,-9979.4 9978.7,718.5 9977.6,718.5 9976.3,718.4 9975.2,718.2 3276.4,235.9 z" |
id="path2006" |
inkscape:connector-curvature="0" /> |
<path |
d="m -230006.1,-4835127.9 605.6,-5572.2 1099.6,-10102.4 1101.4,-10102.3 1103.3,-10101.9 1105.1,-10101.7 1106.9,-10101.5 1108.7,-10101.2 1110.5,-10101 1112.3,-10100.8 1114.1,-10100.5 392.8,-3556.4 9687.8,713.1 10027.7,737.9 10026.5,737.8 10025.3,737.5 -736.8,10024.9 -735.6,10025.1 -734.5,10025.2 -733.3,10025.6 -732.2,10025.7 -730.9,10025.9 -729.8,10026.2 -728.6,10026.4 -727.4,10026.5 -726.2,10026.9 -10027.5,-725.8 -10028.7,-725.9 -10029.9,-726.1 -10031.1,-726.4 -3295.3,-238.6 z" |
id="path2007" |
inkscape:connector-curvature="0" /> |
<path |
d="m -186593.6,-4831985.1 726.2,-10026.9 727.4,-10026.5 728.6,-10026.4 729.8,-10026.2 730.9,-10025.9 732.2,-10025.7 733.3,-10025.6 734.5,-10025.2 735.6,-10025.1 736.8,-10024.9 10024.2,737.3 10023.1,737 10021.8,736.9 10020.7,736.7 10019.6,736.4 10018.4,736.3 10017.1,736.1 10016,735.9 10014.9,735.7 10013.6,735.5 -734.8,10013.1 -733.6,10013.4 -732.5,10013.6 -731.3,10013.8 -730.1,10013.9 -728.9,10014.2 -727.8,10014.3 -726.5,10014.5 -725.4,10014.7 -724.2,10014.9 -10015.6,-723.7 -10016.7,-723.8 -10018,-724.1 -10019.1,-724.3 -10020.4,-724.5 -10021.5,-724.7 -10022.7,-724.8 -10024,-725.1 -10025.1,-725.2 -10026.3,-725.5 z" |
id="path2008" |
inkscape:connector-curvature="0" /> |
<path |
d="m -86384.2,-4824739.4 724.2,-10014.9 725.4,-10014.7 726.5,-10014.5 727.8,-10014.3 728.9,-10014.2 730.1,-10013.9 731.3,-10013.8 732.5,-10013.6 733.6,-10013.4 734.8,-10013.1 10012.5,735.3 10011.4,735 10010.1,734.9 10009,734.8 10007.8,734.5 10006.6,734.4 10005.5,734.3 10004.3,733.9 10003.2,733.8 10001.9,733.6 -733,10001.5 -731.8,10001.6 -730.6,10001.8 -729.5,10002 -728.3,10002.2 -727.1,10002.3 -725.9,10002.5 -724.7,10002.7 -723.5,10002.8 -722.4,10003.1 -10003.7,-721.9 -10004.9,-722 -10006.1,-722.2 -10007.3,-722.4 -10008.5,-722.6 -10009.6,-722.8 -10010.9,-723 -10012,-723.1 -10013.2,-723.2 -10014.4,-723.5 z" |
id="path2009" |
inkscape:connector-curvature="0" /> |
<path |
d="m 13706.3,-4817512.7 722.4,-10003.1 723.5,-10002.8 724.7,-10002.7 725.9,-10002.5 727.1,-10002.3 728.3,-10002.2 729.5,-10002 730.6,-10001.8 731.8,-10001.6 733,-10001.5 10000.8,733.5 9999.7,733.3 9998.5,733.2 9997.3,732.9 9996.1,732.8 9994.9,732.7 9993.8,732.4 9992.6,732.3 9991.5,732.2 9990.2,731.9 -731.4,9989.7 -730.1,9989.9 -729.1,9990.1 -727.8,9990.2 -726.7,9990.3 -725.5,9990.5 -724.2,9990.6 -723.1,9990.9 -721.9,9991 -720.7,9991.2 -9991.8,-720.2 -9993,-720.4 -9994.2,-720.5 -9995.4,-720.7 -9996.5,-720.8 -9997.8,-721 -9998.9,-721.2 -10000.2,-721.4 -10001.3,-721.5 -10002.5,-721.6 z" |
id="path2010" |
inkscape:connector-curvature="0" /> |
<path |
d="m 113678,-4810303.4 720.7,-9991.2 721.9,-9991 723.1,-9990.9 724.2,-9990.6 725.5,-9990.5 726.7,-9990.3 727.8,-9990.2 729.1,-9990.1 730.1,-9989.9 731.4,-9989.7 9989.1,731.9 9987.9,731.7 9986.8,731.5 9985.6,731.4 9984.3,731.2 9983.3,731.2 9982,730.9 9980.9,730.8 9979.7,730.8 9978.6,730.5 -729.9,9978 -728.7,9978.2 -727.5,9978.2 -726.4,9978.5 -725.2,9978.6 -724,9978.6 -722.8,9978.9 -721.7,9979 -720.5,9979.1 -719.3,9979.3 -9979.9,-718.8 -9981.1,-719 -9982.3,-719 -9983.5,-719.2 -9984.7,-719.3 -9985.9,-719.4 -9987,-719.6 -9988.3,-719.7 -9989.4,-720 -9990.6,-720 z" |
id="path2011" |
inkscape:connector-curvature="0" /> |
<path |
d="m 260339.9,-4900000 -129.8,3555.5 -368.5,10097.7 -367.9,10097.6 -367.3,10097.5 -366.7,10097.4 -366.1,10097.3 -365.5,10097.2 -364.9,10097 -364.3,10097 -363.6,10096.8 -200.4,5569 -3276.4,-235.9 -9975.2,-718.2 -9976.3,-718.4 -9977.6,-718.5 -9978.7,-718.5 719.3,-9979.3 720.5,-9979.1 721.7,-9979 722.8,-9978.9 724,-9978.6 725.2,-9978.6 726.4,-9978.5 727.5,-9978.2 728.7,-9978.2 729.9,-9978 9977.3,730.4 9976.2,730.2 9975.1,730.2 9634.6,705.1 z" |
id="path2012" |
inkscape:connector-curvature="0" /> |
<path |
d="m -219045.9,-4935169.8 723.1,-6543.8 1117.7,-10100 1119.4,-10099.8 1121.2,-10099.7 1123,-10099.3 1124.8,-10099.1 1126.6,-10098.9 1128.3,-10098.6 1130.1,-10098.4 1131.9,-10098.1 288.6,-2571.3 5991.7,448.1 10025.6,749.5 10024.5,749.4 10023.2,749.1 -748.5,10022.7 -747.3,10023 -746.1,10023.2 -745,10023.5 -743.8,10023.6 -742.7,10023.9 -741.5,10024 -740.3,10024.2 -739.2,10024.5 -738,10024.7 -10025.3,-737.5 -10026.5,-737.8 -10027.7,-737.9 -9687.8,-713.1 z" |
id="path2013" |
inkscape:connector-curvature="0" /> |
<path |
d="m -179278.5,-4932243.6 738,-10024.7 739.2,-10024.5 740.3,-10024.2 741.5,-10024 742.7,-10023.9 743.8,-10023.6 745,-10023.5 746.1,-10023.2 747.3,-10023 748.5,-10022.7 10022,748.9 10021,748.8 10019.8,748.4 10018.6,748.3 10017.5,748.1 10016.3,747.9 10015.2,747.7 10014,747.4 10012.9,747.4 10011.7,747 -746.4,10011.3 -745.3,10011.5 -744.1,10011.6 -743,10011.8 -741.8,10012 -740.7,10012.2 -739.5,10012.5 -738.3,10012.6 -737.2,10012.7 -736,10013 -10013.6,-735.5 -10014.9,-735.7 -10016,-735.9 -10017.1,-736.1 -10018.4,-736.3 -10019.6,-736.4 -10020.7,-736.7 -10021.8,-736.9 -10023.1,-737 -10024.2,-737.3 z" |
id="path2014" |
inkscape:connector-curvature="0" /> |
<path |
d="m -79089.1,-4924879.8 736,-10013 737.2,-10012.7 738.3,-10012.6 739.5,-10012.5 740.7,-10012.2 741.8,-10012 743,-10011.8 744.1,-10011.6 745.3,-10011.5 746.4,-10011.3 10010.6,746.9 10009.4,746.7 10008.3,746.5 10007.1,746.3 10005.9,746.2 10004.9,745.9 10003.7,745.8 10002.5,745.6 10001.4,745.5 10000.2,745.2 -744.6,9999.7 -743.4,9999.9 -742.3,10000.1 -741.1,10000.3 -740,10000.4 -738.8,10000.5 -737.7,10000.9 -736.5,10000.9 -735.3,10001.1 -734.1,10001.2 -10001.9,-733.6 -10003.2,-733.8 -10004.3,-733.9 -10005.5,-734.3 -10006.6,-734.4 -10007.8,-734.5 -10009,-734.8 -10010.1,-734.9 -10011.4,-735 -10012.5,-735.3 z" |
id="path2015" |
inkscape:connector-curvature="0" /> |
<path |
d="m 20983.2,-4917535.2 734.1,-10001.2 735.3,-10001.1 736.5,-10000.9 737.7,-10000.9 738.8,-10000.5 740,-10000.4 741.1,-10000.3 742.3,-10000.1 743.4,-9999.9 744.6,-9999.7 9999.1,745.1 9997.9,744.9 9996.8,744.7 9995.6,744.6 9994.4,744.5 9993.3,744.2 9992.2,744.1 9991,744 9989.9,743.7 9988.7,743.6 -743,9988.3 -741.8,9988.4 -740.6,9988.5 -739.5,9988.7 -738.4,9988.8 -737.1,9989 -736,9989.2 -734.8,9989.3 -733.7,9989.4 -732.5,9989.6 -9990.2,-731.9 -9991.5,-732.2 -9992.6,-732.3 -9993.8,-732.4 -9994.9,-732.7 -9996.1,-732.8 -9997.3,-732.9 -9998.5,-733.2 -9999.7,-733.3 -10000.8,-733.5 z" |
id="path2016" |
inkscape:connector-curvature="0" /> |
<path |
d="m 120938.4,-4910207.9 732.5,-9989.6 733.7,-9989.4 734.8,-9989.3 736,-9989.2 737.1,-9989 738.4,-9988.8 739.5,-9988.7 740.6,-9988.5 741.8,-9988.4 743,-9988.3 9987.5,743.5 9986.4,743.2 9985.2,743.2 9984.1,743 9983,742.8 9981.8,742.7 9980.6,742.6 9979.5,742.5 9978.4,742.2 9977.2,742.2 -741.6,9976.6 -740.3,9976.8 -739.2,9977 -738,9977.1 -736.9,9977.2 -735.7,9977.4 -734.6,9977.4 -733.4,9977.6 -732.2,9977.8 -731,9977.9 -9978.6,-730.5 -9979.7,-730.8 -9980.9,-730.8 -9982,-730.9 -9983.3,-731.2 -9984.3,-731.2 -9985.6,-731.4 -9986.8,-731.5 -9987.9,-731.7 -9989.1,-731.9 z" |
id="path2017" |
inkscape:connector-curvature="0" /> |
<path |
d="m 264023.9,-5000000 -95.4,2571.6 -374.5,10098.9 -373.9,10098.8 -373.3,10098.7 -372.7,10098.6 -372.1,10098.4 -371.5,10098.3 -370.9,10098.3 -370.3,10098.1 -369.7,10098 -239.3,6542.3 -9634.6,-705.1 -9975.1,-730.2 -9976.2,-730.2 -9977.3,-730.4 731,-9977.9 732.2,-9977.8 733.4,-9977.6 734.6,-9977.4 735.7,-9977.4 736.9,-9977.2 738,-9977.1 739.2,-9977 740.3,-9976.8 741.6,-9976.6 9976,742 9974.9,741.9 9973.7,741.8 5959.7,443.1 z" |
id="path2018" |
inkscape:connector-curvature="0" /> |
<path |
d="m -207911.1,-5035177 845.1,-7526.6 1135.4,-10097.7 1137.2,-10097.4 1138.9,-10097.2 1140.7,-10097.1 1142.4,-10096.7 1144.2,-10096.5 1145.9,-10096.3 1147.7,-10096 1149.4,-10095.8 179.6,-1575.3 2239.3,170.1 10023.4,761 10022.3,760.7 10021.1,760.7 -759.9,10020.6 -758.8,10020.9 -757.6,10021.1 -756.4,10021.3 -755.3,10021.5 -754.2,10021.7 -753.1,10021.9 -751.9,10022.2 -750.7,10022.3 -749.6,10022.6 -10023.2,-749.1 -10024.5,-749.4 -10025.6,-749.5 -5991.7,-448.1 z" |
id="path2019" |
inkscape:connector-curvature="0" /> |
<path |
d="m -171846.1,-5032480.9 749.6,-10022.6 750.7,-10022.3 751.9,-10022.2 753.1,-10021.9 754.2,-10021.7 755.3,-10021.5 756.4,-10021.3 757.6,-10021.1 758.8,-10020.9 759.9,-10020.6 10020,760.3 10018.9,760.2 10017.7,759.9 10016.6,759.6 10015.4,759.5 10014.3,759.4 10013.2,759.1 10012.1,759 10010.9,758.7 10009.8,758.6 -757.8,10009.3 -756.7,10009.5 -755.6,10009.8 -754.5,10009.9 -753.3,10010 -752.1,10010.3 -751,10010.5 -749.9,10010.7 -748.7,10010.8 -747.5,10011.1 -10011.7,-747 -10012.9,-747.4 -10014,-747.4 -10015.2,-747.7 -10016.3,-747.9 -10017.5,-748.1 -10018.6,-748.3 -10019.8,-748.4 -10021,-748.8 -10022,-748.9 z" |
id="path2020" |
inkscape:connector-curvature="0" /> |
<path |
d="m -71677,-5025001 747.5,-10011.1 748.7,-10010.8 749.9,-10010.7 751,-10010.5 752.1,-10010.3 753.3,-10010 754.5,-10009.9 755.6,-10009.8 756.7,-10009.5 757.8,-10009.3 10008.7,758.3 10007.5,758.2 10006.4,757.9 10005.3,757.8 10004.2,757.6 10003,757.4 10001.9,757.3 10000.7,757 9999.6,756.9 9998.5,756.7 -756,9998 -754.9,9998.2 -753.8,9998.3 -752.6,9998.5 -751.5,9998.7 -750.3,9998.9 -749.2,9999.1 -748,9999.2 -746.9,9999.4 -745.7,9999.5 -10000.2,-745.2 -10001.4,-745.5 -10002.5,-745.6 -10003.7,-745.8 -10004.9,-745.9 -10005.9,-746.2 -10007.1,-746.3 -10008.3,-746.5 -10009.4,-746.7 -10010.6,-746.9 z" |
id="path2021" |
inkscape:connector-curvature="0" /> |
<path |
d="m 28377,-5017540.2 745.7,-9999.5 746.9,-9999.4 748,-9999.2 749.2,-9999.1 750.3,-9998.9 751.5,-9998.7 752.6,-9998.5 753.8,-9998.3 754.9,-9998.2 756,-9998 9997.4,756.5 9996.2,756.3 9995.1,756.2 9994,755.9 9992.8,755.9 9991.6,755.7 9990.6,755.5 9989.4,755.4 9988.3,755.1 9987.2,755.1 -754.4,9986.6 -753.3,9986.8 -752.1,9987 -751,9987.1 -749.9,9987.2 -748.7,9987.4 -747.5,9987.6 -746.4,9987.7 -745.3,9987.8 -744.1,9988.1 -9988.7,-743.6 -9989.9,-743.7 -9991,-744 -9992.2,-744.1 -9993.3,-744.2 -9994.4,-744.5 -9995.6,-744.6 -9996.8,-744.7 -9997.9,-744.9 -9999.1,-745.1 z" |
id="path2022" |
inkscape:connector-curvature="0" /> |
<path |
d="m 128315.9,-5010096.9 744.1,-9988.1 745.3,-9987.8 746.4,-9987.7 747.5,-9987.6 748.7,-9987.4 749.9,-9987.2 751,-9987.1 752.1,-9987 753.3,-9986.8 754.4,-9986.6 9986,754.8 9984.8,754.8 9983.8,754.5 9982.6,754.5 9981.5,754.2 9980.4,754.1 9979.2,754.1 9978.1,753.9 9977,753.7 9975.8,753.7 -753,9975.3 -751.8,9975.5 -750.7,9975.6 -749.5,9975.7 -748.4,9975.9 -747.3,9976 -746.1,9976.1 -744.9,9976.4 -743.8,9976.3 -742.6,9976.6 -9977.2,-742.2 -9978.4,-742.2 -9979.5,-742.5 -9980.6,-742.6 -9981.8,-742.7 -9983,-742.8 -9984.1,-743 -9985.2,-743.2 -9986.4,-743.2 -9987.5,-743.5 z" |
id="path2023" |
inkscape:connector-curvature="0" /> |
<path |
d="m 267766.1,-5100000.1 -59.4,1576 -380.5,10100.1 -379.9,10100 -379.3,10099.8 -378.7,10099.7 -378.1,10099.6 -377.5,10099.6 -376.9,10099.4 -376.3,10099.3 -375.7,10099.1 -279.7,7527.4 -5959.7,-443.1 -9973.7,-741.8 -9974.9,-741.9 -9976,-742 742.6,-9976.6 743.8,-9976.3 744.9,-9976.4 746.1,-9976.1 747.3,-9976 748.4,-9975.9 749.5,-9975.7 750.7,-9975.6 751.8,-9975.5 753,-9975.3 9974.7,753.3 9973.5,753.4 9972.4,753.2 2227.7,168.2 z" |
id="path2024" |
inkscape:connector-curvature="0" /> |
<path |
d="m -196604.7,-5135149.4 971.6,-8520.3 1152.9,-10095.3 1154.6,-10095.1 1156.3,-10094.8 1158,-10094.6 1159.8,-10094.5 1161.5,-10094.1 1163.2,-10093.9 1164.9,-10093.7 1166.6,-10093.4 65.7,-568.1 8452.5,651.4 10020.1,772 10019,771.8 -771.2,10018.5 -770,10018.7 -768.9,10019 -767.8,10019.2 -766.7,10019.4 -765.5,10019.6 -764.3,10019.8 -763.3,10020 -762.1,10020.3 -761,10020.5 -10021.1,-760.7 -10022.3,-760.7 -10023.4,-761 -2239.3,-170.1 z" |
id="path2025" |
inkscape:connector-curvature="0" /> |
<path |
d="m -164298.7,-5132697 761,-10020.5 762.1,-10020.3 763.3,-10020 764.3,-10019.8 765.5,-10019.6 766.7,-10019.4 767.8,-10019.2 768.9,-10019 770,-10018.7 771.2,-10018.5 10017.9,771.5 10016.7,771.4 10015.7,771.1 10014.5,770.9 10013.4,770.7 10012.4,770.5 10011.2,770.3 10010,770.2 10009,769.9 10007.9,769.8 -769.1,10007.4 -768,10007.6 -766.9,10007.8 -765.7,10008 -764.6,10008.1 -763.5,10008.4 -762.4,10008.6 -761.3,10008.8 -760.1,10008.9 -759,10009.2 -10009.8,-758.6 -10010.9,-758.7 -10012.1,-759 -10013.2,-759.1 -10014.3,-759.4 -10015.4,-759.5 -10016.6,-759.6 -10017.7,-759.9 -10018.9,-760.2 -10020,-760.3 z" |
id="path2026" |
inkscape:connector-curvature="0" /> |
<path |
d="m -64149.7,-5125102.9 759,-10009.2 760.1,-10008.9 761.3,-10008.8 762.4,-10008.6 763.5,-10008.4 764.6,-10008.1 765.7,-10008 766.9,-10007.8 768,-10007.6 769.1,-10007.4 10006.8,769.5 10005.7,769.3 10004.5,769.2 10003.5,769 10002.3,768.7 10001.2,768.7 10000.1,768.4 9998.9,768.2 9997.8,768.1 9996.8,768 -767.3,9996.3 -766.1,9996.4 -765,9996.6 -763.9,9996.9 -762.8,9996.9 -761.7,9997.2 -760.5,9997.2 -759.4,9997.5 -758.3,9997.7 -757.2,9997.8 -9998.5,-756.7 -9999.6,-756.9 -10000.7,-757 -10001.9,-757.3 -10003,-757.4 -10004.2,-757.6 -10005.3,-757.8 -10006.4,-757.9 -10007.5,-758.2 -10008.7,-758.3 z" |
id="path2027" |
inkscape:connector-curvature="0" /> |
<path |
d="m 35886,-5117528 757.2,-9997.8 758.3,-9997.7 759.4,-9997.5 760.5,-9997.2 761.7,-9997.2 762.8,-9996.9 763.9,-9996.9 765,-9996.6 766.1,-9996.4 767.3,-9996.3 9995.7,767.7 9994.5,767.5 9993.4,767.5 9992.3,767.2 9991.2,767 9990.1,767 9988.9,766.7 9987.8,766.6 9986.7,766.4 9985.6,766.3 -765.7,9985.1 -764.5,9985.3 -763.4,9985.5 -762.3,9985.6 -761.2,9985.7 -760.1,9985.9 -758.9,9986.1 -757.8,9986.2 -756.7,9986.3 -755.5,9986.6 -9987.2,-755.1 -9988.3,-755.1 -9989.4,-755.4 -9990.6,-755.5 -9991.6,-755.7 -9992.8,-755.9 -9994,-755.9 -9995.1,-756.2 -9996.2,-756.3 -9997.4,-756.5 z" |
id="path2028" |
inkscape:connector-curvature="0" /> |
<path |
d="m 135808.5,-5109970.4 755.5,-9986.6 756.7,-9986.3 757.8,-9986.2 758.9,-9986.1 760.1,-9985.9 761.2,-9985.7 762.3,-9985.6 763.4,-9985.5 764.5,-9985.3 765.7,-9985.1 9984.5,766.1 9983.4,766 9982.3,765.8 9981.2,765.7 9980,765.6 9978.9,765.4 9977.9,765.3 9976.7,765.1 9975.6,764.9 9974.5,764.9 -764.1,9974 -763.1,9974 -762,9974.3 -760.8,9974.4 -759.7,9974.5 -758.6,9974.7 -757.5,9974.7 -756.3,9974.9 -755.2,9975.1 -754.1,9975.2 -9975.8,-753.7 -9977,-753.7 -9978.1,-753.9 -9979.2,-754.1 -9980.4,-754.1 -9981.5,-754.2 -9982.6,-754.5 -9983.8,-754.5 -9984.8,-754.8 -9986,-754.8 z" |
id="path2029" |
inkscape:connector-curvature="0" /> |
<path |
d="m 271565.3,-5200000 -21.8,568.6 -386.3,10101.3 -385.7,10101.1 -385.1,10101 -384.6,10100.9 -384,10100.9 -383.4,10100.7 -382.8,10100.6 -382.2,10100.4 -381.6,10100.3 -321.6,8524.2 -2227.7,-168.2 -9972.4,-753.2 -9973.5,-753.4 -9974.7,-753.3 754.1,-9975.2 755.2,-9975.1 756.3,-9974.9 757.5,-9974.7 758.6,-9974.7 759.7,-9974.5 760.8,-9974.4 762,-9974.3 763.1,-9974 764.1,-9974 9973.4,764.7 9972.2,764.6 8410.4,644.7 z" |
id="path2030" |
inkscape:connector-curvature="0" /> |
<path |
d="m -185129.6,-5235087.2 1102.6,-9525.1 1170,-10092.9 1171.7,-10092.7 1173.4,-10092.5 1175.1,-10092.2 1176.8,-10092 1178.5,-10091.9 1180.2,-10091.5 1181.9,-10091.3 1130.7,-9641 4587.8,358.6 10018,783 10016.9,782.8 -782.1,10016.5 -781,10016.6 -780,10016.8 -778.8,10017.1 -777.7,10017.3 -776.6,10017.5 -775.6,10017.7 -774.5,10017.9 -773.3,10018.1 -772.2,10018.4 -10019,-771.8 -10020.1,-772 -8452.5,-651.4 z" |
id="path2031" |
inkscape:connector-curvature="0" /> |
<path |
d="m -156638,-5232892.1 772.2,-10018.4 773.3,-10018.1 774.5,-10017.9 775.6,-10017.7 776.6,-10017.5 777.7,-10017.3 778.8,-10017.1 780,-10016.8 781,-10016.6 782.1,-10016.5 10015.8,782.6 10014.7,782.5 10013.6,782.1 10012.5,781.9 10011.4,781.8 10010.3,781.6 10009.3,781.3 10008.1,781.1 10007,781 10006,780.8 -780.2,10005.4 -779,10005.7 -778,10005.9 -776.8,10006.1 -775.7,10006.2 -774.7,10006.4 -773.5,10006.7 -772.5,10006.8 -771.3,10007.1 -770.2,10007.2 -10007.9,-769.8 -10009,-769.9 -10010,-770.2 -10011.2,-770.3 -10012.4,-770.5 -10013.4,-770.7 -10014.5,-770.9 -10015.7,-771.1 -10016.7,-771.4 -10017.9,-771.5 z" |
id="path2032" |
inkscape:connector-curvature="0" /> |
<path |
d="m -56509.3,-5225185.7 770.2,-10007.2 771.3,-10007.1 772.5,-10006.8 773.5,-10006.7 774.7,-10006.4 775.7,-10006.2 776.8,-10006.1 778,-10005.9 779,-10005.7 780.2,-10005.4 10004.9,780.6 10003.8,780.3 10002.7,780.2 10001.6,780 10000.5,779.8 9999.3,779.7 9998.3,779.4 9997.2,779.3 9996.1,779.2 9995,778.9 -778.3,9994.6 -777.2,9994.7 -776.1,9994.9 -775,9995 -773.9,9995.3 -772.8,9995.4 -771.7,9995.5 -770.6,9995.8 -769.5,9995.9 -768.4,9996.1 -9996.8,-768 -9997.8,-768.1 -9998.9,-768.2 -10000.1,-768.4 -10001.2,-768.7 -10002.3,-768.7 -10003.5,-769 -10004.5,-769.2 -10005.7,-769.3 -10006.8,-769.5 z" |
id="path2033" |
inkscape:connector-curvature="0" /> |
<path |
d="m 43508.3,-5217498.5 768.4,-9996.1 769.5,-9995.9 770.6,-9995.8 771.7,-9995.5 772.8,-9995.4 773.9,-9995.3 775,-9995 776.1,-9994.9 777.2,-9994.7 778.3,-9994.6 9993.9,778.8 9992.8,778.5 9991.8,778.4 9990.6,778.3 9989.6,778.1 9988.5,777.9 9987.3,777.8 9986.3,777.6 9985.2,777.5 9984.1,777.3 -776.7,9983.5 -775.6,9983.8 -774.5,9984 -773.4,9984.1 -772.3,9984.2 -771.2,9984.4 -770.1,9984.6 -769,9984.7 -767.9,9984.9 -766.7,9985 -9985.6,-766.3 -9986.7,-766.4 -9987.8,-766.6 -9988.9,-766.7 -9990.1,-767 -9991.2,-767 -9992.3,-767.2 -9993.4,-767.5 -9994.5,-767.5 -9995.7,-767.7 z" |
id="path2034" |
inkscape:connector-curvature="0" /> |
<path |
d="m 143414.5,-5209828.6 766.7,-9985 767.9,-9984.9 769,-9984.7 770.1,-9984.6 771.2,-9984.4 772.3,-9984.2 773.4,-9984.1 774.5,-9984 775.6,-9983.8 776.7,-9983.5 9983,777.1 9981.9,777 9980.8,776.9 9979.7,776.7 9978.6,776.6 9977.5,776.4 9976.5,776.3 9975.3,776.2 9974.2,775.9 9973.2,775.9 -775.3,9972.7 -774.1,9972.7 -773.1,9972.9 -772,9973.1 -770.9,9973.2 -769.8,9973.3 -768.6,9973.4 -767.5,9973.6 -766.5,9973.6 -765.3,9973.9 -9974.5,-764.9 -9975.6,-764.9 -9976.7,-765.1 -9977.9,-765.3 -9978.9,-765.4 -9980,-765.6 -9981.2,-765.7 -9982.3,-765.8 -9983.4,-766 -9984.5,-766.1 z" |
id="path2035" |
inkscape:connector-curvature="0" /> |
<path |
d="m 275420.8,-5300000 -374.5,9651.8 -391.5,10102.3 -390.9,10102.2 -390.3,10102.2 -389.8,10102 -389.2,10101.8 -388.6,10101.7 -388,10101.6 -387.5,10101.5 -365.1,9532.8 -8410.4,-644.7 -9972.2,-764.6 -9973.4,-764.7 765.3,-9973.9 766.5,-9973.6 767.5,-9973.6 768.6,-9973.4 769.8,-9973.3 770.9,-9973.2 772,-9973.1 773.1,-9972.9 774.1,-9972.7 775.3,-9972.7 9972,775.7 9970.9,775.6 4565.6,355.2 z" |
id="path2036" |
inkscape:connector-curvature="0" /> |
<path |
d="m 243900.4,-4432069.1 340.3,-10092.5 341,-10092.6 341.6,-10092.7 342.2,-10092.8 342.9,-10093 343.5,-10093.2 251.5,-7374.2 3796.6,0.1 10000,0 10000,-0.1 10000,0 10000,0 10000,0 0,10000 0.1,10000 -0.1,10000.1 0,10000 0,9999.9 0,10000 0,9611.9 -5878.2,-155.2 -10044,-278.6 -10044.1,-291.8 -10044.3,-305.1 -10044.5,-318.4 -10044.6,-331.7 z" |
id="path2037" |
inkscape:connector-curvature="0" /> |
<path |
d="m 400000,-4428416.1 -5445.8,-71.9 -10042.8,-145.8 -10042.8,-159.1 -10042.9,-172.4 -10043,-185.6 -10043.2,-198.9 -10043.4,-212.2 -10043.4,-225.4 -10043.4,-238.7 -10043.7,-252 -4165.6,-110.1 0,-9611.9 0,-10000 0,-9999.9 0,-10000 0.1,-10000.1 -0.1,-10000 0,-10000 10000.1,0 10000,0 10000,0 10000,-0.1 9999.9,0.1 10000,0 10000,0.1 10000,0 10000,0 10000.1,0 0,10000.1 0,10000 0,10000 0.1,10000 0,10000 0,10000 0,10000 0,1583.9 z" |
id="path2038" |
inkscape:connector-curvature="0" /> |
<path |
d="m 500000,-4427758.9 -5021.1,0 -10042.4,-13.3 -10042.3,-26.5 -10042.3,-39.8 -10042.4,-53 -10042.4,-66.3 -10042.4,-79.5 -10042.5,-92.8 -10042.6,-106 -10042.6,-119.3 -4596.9,-60.7 0,-1583.9 0,-10000 0,-10000 0,-10000 -0.1,-10000 0,-10000 0,-10000 0,-10000.1 10000,0.1 10000,0 10000,0.1 9999.9,-0.1 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,2241.1 z" |
id="path2039" |
inkscape:connector-curvature="0" /> |
<path |
d="m 600000,-4428416.1 -4596.9,60.7 -10042.6,119.3 -10042.6,106 -10042.5,92.8 -10042.4,79.5 -10042.4,66.3 -10042.4,53 -10042.3,39.8 -10042.4,26.5 -10042.2,13.3 -5021.2,0 0,-2241.1 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0.1 9999.9,-0.1 10000,0 10000,-0.1 0,10000.1 0,10000 0,10000 -0.1,10000 0,10000 0,10000 0,10000 0,1583.9 z" |
id="path2040" |
inkscape:connector-curvature="0" /> |
<path |
d="m 700000,-4430388.1 -4165.6,110.1 -10043.7,252 -10043.5,238.7 -10043.5,225.4 -10043.3,212.2 -10043.2,198.9 -10043,185.6 -10042.9,172.4 -10042.8,159.1 -10042.8,145.8 -5445.8,71.9 0,-1583.9 0,-10000 0,-10000 0,-10000 0.1,-10000 0,-10000 0,-10000 0,-10000.1 10000,0 10000,0 10000,0 10000,-0.1 10000,0 10000,-0.1 10000,0.1 9999.9,0 10000.1,0 10000,0 -0.1,10000 0,10000 0,10000.1 0.1,10000 0,9999.9 0,10000 0,9611.9 z" |
id="path2041" |
inkscape:connector-curvature="0" /> |
<path |
d="m 753796.6,-4500000 251.5,7374.2 343.5,10093.2 342.9,10093 342.2,10092.8 341.6,10092.7 341,10092.6 340.3,10092.5 -10044.6,331.7 -10044.5,318.4 -10044.3,305.1 -10044.1,291.8 -10044,278.6 -5878.2,155.2 0,-9611.9 0,-10000 0,-9999.9 -0.1,-10000 0,-10000.1 0,-10000 0.1,-10000 10000,0 10000,0 10000,0 10000,0.1 10000,0 3796.6,-0.1 z" |
id="path2042" |
inkscape:connector-curvature="0" /> |
<path |
d="m 246203.4,-4500000 92.7,-2719 344.8,-10093.3 345.5,-10093.4 346.1,-10093.5 346.7,-10093.7 347.4,-10093.8 348,-10093.9 348.6,-10094 349.3,-10094.1 349.9,-10094.2 223.5,-6437.1 354.1,0.1 10000,0 10000,-0.1 10000,0 10000,0.1 10000,0 0,10000 0,9999.9 0.1,10000 0,10000 0,10000.1 0,10000 0,9999.9 -0.1,10000.1 0.1,10000 -0.1,9999.9 -10000,0 -10000,0 -10000,0 -10000,0.1 -10000,0 -3796.6,-0.1 z" |
id="path2043" |
inkscape:connector-curvature="0" /> |
<path |
d="m 300000,-4500000 0.1,-9999.9 -0.1,-10000 0.1,-10000.1 0,-9999.9 0,-10000 0,-10000.1 0,-10000 -0.1,-10000 0,-9999.9 0,-10000 10000,-0.1 10000,0 10000.1,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,-0.1 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0.1,10000 0,9999.9 0,10000 -10000.1,0 -10000,0 -10000,0 -10000,-0.1 -10000,0 -9999.9,-0.1 -10000,0.1 -10000,0 -10000,0 -10000.1,0 z" |
id="path2044" |
inkscape:connector-curvature="0" /> |
<path |
d="m 400000.1,-4500000 0,-10000 0,-9999.9 -0.1,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 10000,0.1 10000,0 10000,0.1 10000,0 10000,0 10000,0.1 10000,0 10000,0.1 10000,0 10000,-0.1 0,10000.1 0,10000 0,10000 0,10000 0,10000 0,9999.9 0,10000 0,10000.1 0,9999.9 0,10000 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -9999.9,0.1 -10000,-0.1 -10000,0 -10000,-0.1 z" |
id="path2045" |
inkscape:connector-curvature="0" /> |
<path |
d="m 500000,-4500000.1 0,-10000 0,-9999.9 0,-10000.1 0,-10000 0,-9999.9 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000.1 10000,0.1 10000,0 10000,-0.1 10000,0 10000,-0.1 9999.9,0 10000.1,0 9999.9,-0.1 10000,0 10000,-0.1 0,10000 0,10000 0.1,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,9999.9 0.1,10000 -10000,0.1 -10000,0 -9999.9,0.1 -10000,-0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 z" |
id="path2046" |
inkscape:connector-curvature="0" /> |
<path |
d="m 600000,-4500000 -0.1,-10000 0,-9999.9 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 -0.1,-10000 0,-10000 0,-10000 10000,0.1 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000.1,0 10000,0 10000,0.1 0,10000 0,9999.9 -0.1,10000 0,10000 0,10000.1 0.1,10000 -0.1,9999.9 0.1,10000.1 0,10000 0,9999.9 -10000,0 -10000.1,0 -9999.9,0 -10000,-0.1 -10000,0.1 -10000,0 -10000,0.1 -10000,0 -10000,0 -10000,0 z" |
id="path2047" |
inkscape:connector-curvature="0" /> |
<path |
d="m 750354.1,-4600000 223.5,6437.1 349.9,10094.2 349.3,10094.1 348.6,10094 348,10093.9 347.4,10093.8 346.7,10093.7 346.1,10093.5 345.5,10093.4 344.8,10093.3 92.7,2719 -3796.6,0.1 -10000,0 -10000,-0.1 -10000,0 -10000,0 -10000,0 0,-9999.9 0,-10000 -0.1,-10000.1 0.1,-9999.9 -0.1,-10000 0,-10000.1 0,-10000 0.1,-10000 0,-9999.9 0,-10000 10000,0 10000,-0.1 9999.9,0 10000,0.1 10000,0 354.1,-0.1 z" |
id="path2048" |
inkscape:connector-curvature="0" /> |
<path |
d="m 249645.9,-4600000 127,-3657.4 351.2,-10094.5 351.8,-10094.6 352.4,-10094.7 353.1,-10094.8 353.7,-10094.9 354.3,-10095 355,-10095.2 355.6,-10095.3 356.2,-10095.4 194,-5488.2 6849.9,-0.1 10000,0 10000,0.1 10000,0 10000,0 -0.1,10000 0.1,10000 0,10000 0,9999.9 0,10000 0,10000 0,10000.1 0,10000 0,9999.9 0,10000.1 -10000,0 -10000,-0.1 -10000,0 -10000,0.1 -10000,0 -354.1,-0.1 z" |
id="path2049" |
inkscape:connector-curvature="0" /> |
<path |
d="m 300000,-4600000 0,-10000.1 0,-9999.9 0,-10000 0,-10000.1 0,-10000 0,-10000 0,-9999.9 0,-10000 -0.1,-10000 0.1,-10000 9999.9,0 10000,0.1 10000,0 10000,0 10000,-0.1 10000,0.1 10000,0 10000,0 10000,0 10000,-0.1 0,10000 -0.1,10000 0,10000 0,9999.9 0,10000 0,10000.1 0,10000 0,10000 0,10000 0,10000 -10000,0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000.1,0 -10000,0 -10000,0.1 z" |
id="path2050" |
inkscape:connector-curvature="0" /> |
<path |
d="m 400000,-4600000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000.1 0,-10000 0,-9999.9 0,-10000 0.1,-10000 0,-10000 10000,0 10000,-0.1 9999.9,0.1 10000,0 10000,0.1 10000,0 10000,0.1 9999.9,0 10000.1,-0.1 10000,0.1 0,10000 0,10000 0,10000 0,10000.1 0,10000 0,10000 0,10000 0,10000 0,9999.9 0,10000 -10000,0.1 -10000,0 -10000,-0.1 -10000,0 -10000,-0.1 -10000,0 -10000,0 -10000,-0.1 -10000,0 -10000,-0.1 z" |
id="path2051" |
inkscape:connector-curvature="0" /> |
<path |
d="m 500000,-4600000.1 0,-10000 0,-9999.9 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000.1 0,-10000 0,-10000 0,-10000 10000,-0.1 10000,0.1 10000,0 10000,-0.1 10000,0 10000,-0.1 10000,0.1 10000,-0.1 10000,0.1 10000,0 0,10000 0,10000.1 0,10000 0,9999.9 0,10000 0,10000.1 0,10000 0,10000 0,10000 0,10000 -10000,0.1 -10000,0 -9999.9,0.1 -10000.1,0 -9999.9,0 -10000,0.1 -10000,0 -10000,0.1 -10000,0 -10000,-0.1 z" |
id="path2052" |
inkscape:connector-curvature="0" /> |
<path |
d="m 600000,-4600000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000.1 0,-10000 0,-9999.9 0,-10000 0,-10000.1 0,-10000 10000,0.1 10000,0 10000,0 10000,0 10000,-0.1 10000,0.1 10000,0 10000,0 10000,-0.1 9999.9,0 0,10000 0,10000 0,10000 0,9999.9 0,10000 0,10000 -0.1,10000.1 0.1,10000 0,9999.9 0,10000.1 -10000,-0.1 -10000,0 -10000.1,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,-0.1 z" |
id="path2053" |
inkscape:connector-curvature="0" /> |
<path |
d="m 746849.9,-4700000 194,5488.2 356.2,10095.4 355.6,10095.3 355,10095.2 354.3,10095 353.7,10094.9 353.1,10094.8 352.4,10094.7 351.8,10094.6 351.2,10094.5 127,3657.4 -354.1,0.1 -10000,0 -10000,-0.1 -9999.9,0 -10000,0.1 -10000,0 0,-10000.1 0,-9999.9 -0.1,-10000 0.1,-10000.1 0,-10000 0,-10000 0,-9999.9 0,-10000 0,-10000 0,-10000 10000,0 10000,0 10000,-0.1 10000.1,0 6849.9,0.1 z" |
id="path2054" |
inkscape:connector-curvature="0" /> |
<path |
d="m 253150.1,-4700000 162.8,-4607.3 357.5,-10095.7 358.1,-10095.7 358.7,-10095.9 359.3,-10096 359.9,-10096.1 360.6,-10096.2 361.2,-10096.3 361.8,-10096.4 362.4,-10096.6 162.8,-4527.7 3284.9,0 10000,0 10000,0 10000,0 10000,0.1 0,10000 0,9999.9 0,10000.1 0.1,10000 -0.1,9999.9 0,10000 0,10000 0,10000 0,10000 0,10000 -10000,0 -10000,0 -10000,-0.1 -10000,0 -6849.9,0.1 z" |
id="path2055" |
inkscape:connector-curvature="0" /> |
<path |
d="m 300000,-4700000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0.1,-9999.9 -0.1,-10000 0,-10000.1 0,-9999.9 0,-10000 10000,0 10000,-0.1 10000,0.1 10000,0 10000,0 10000,0 10000,0 10000,0 10000,-0.1 10000,0 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,9999.9 -10000,0.1 -10000,0 -10000,0 -10000,0 -10000,-0.1 -10000,0.1 -10000,0 -10000,0 -10000,-0.1 -9999.9,0 z" |
id="path2056" |
inkscape:connector-curvature="0" /> |
<path |
d="m 400000,-4700000 0,-9999.9 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 10000,0 10000,-0.1 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0.1 0,10000 0,9999.9 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 -10000,-0.1 -10000.1,0.1 -9999.9,0 -10000,-0.1 -10000,0 -10000,-0.1 -10000,0 -9999.9,-0.1 -10000,0.1 -10000,0 z" |
id="path2057" |
inkscape:connector-curvature="0" /> |
<path |
d="m 500000,-4700000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-9999.9 0,-10000 10000,-0.1 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0.1 10000,0 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,9999.9 -10000,0 -10000,-0.1 -10000,0.1 -10000,-0.1 -10000,0.1 -10000,0 -10000,0.1 -10000,0 -10000,-0.1 -10000,0.1 z" |
id="path2058" |
inkscape:connector-curvature="0" /> |
<path |
d="m 600000,-4700000 0,-9999.9 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 10000,0 10000,0.1 10000,0 10000,0 10000,0 10000,0 10000,0 10000.1,-0.1 10000,0.1 10000,0 0,10000 0,9999.9 0.1,10000.1 -0.1,10000 0,9999.9 0,10000 0,10000 0,10000 0,10000 0,10000 -9999.9,0 -10000,0.1 -10000,0 -10000,0 -10000,-0.1 -10000,0.1 -10000,0 -10000,0 -10000,0 -10000,-0.1 z" |
id="path2059" |
inkscape:connector-curvature="0" /> |
<path |
d="m 743284.9,-4800000 162.8,4527.7 362.4,10096.6 361.8,10096.4 361.2,10096.3 360.6,10096.2 359.9,10096.1 359.3,10096 358.7,10095.9 358.1,10095.7 357.5,10095.7 162.8,4607.3 -6849.9,-0.1 -10000.1,0 -10000,0.1 -10000,0 -10000,0 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-9999.9 0.1,-10000 -0.1,-10000.1 0,-9999.9 0,-10000 10000,-0.1 10000,0 10000,0 10000,0 3284.9,0 z" |
id="path2060" |
inkscape:connector-curvature="0" /> |
<path |
d="m 256715.1,-4800000 200.2,-5569 363.6,-10096.8 364.3,-10097 364.9,-10097 365.5,-10097.2 366.1,-10097.3 366.7,-10097.4 367.3,-10097.5 367.9,-10097.6 368.5,-10097.7 130,-3555.5 9659.9,0 10000.1,-0.1 10000,0.1 10000,0 0,10000 0,10000 0,9999.9 0,10000.1 0,10000 0,9999.9 0,10000.1 0,10000 0,9999.9 0,10000.1 -10000,-0.1 -10000,0 -10000,0 -10000,0 -3284.9,0 z" |
id="path2061" |
inkscape:connector-curvature="0" /> |
<path |
d="m 300000,-4800000 0,-10000.1 0,-9999.9 0,-10000 0,-10000.1 0,-9999.9 0,-10000 0,-10000.1 0,-9999.9 0,-10000 0,-10000 10000.1,0 10000,-0.1 10000,0 10000,0 10000,-0.1 9999.9,0 10000.1,0 10000,0 10000,0 10000,0 0,10000 -0.1,10000 0.1,10000.1 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 -10000,0 -10000,0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,-0.1 -10000,0.1 -10000,0 z" |
id="path2062" |
inkscape:connector-curvature="0" /> |
<path |
d="m 400000,-4800000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 -0.1,-10000.1 0.1,-10000 0,-10000 10000,0.1 10000.1,-0.1 10000,0 10000,0.1 10000,-0.1 10000,0 10000,0.1 10000,-0.1 10000,0 10000,0 0,10000 0,10000 0,10000 0,10000 0,10000.1 0,10000 0,10000 0,10000 0,10000 0,10000 -10000,-0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0.1 -10000,0 z" |
id="path2063" |
inkscape:connector-curvature="0" /> |
<path |
d="m 500000,-4800000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000.1 0,-10000 0,-10000 0,-10000 0,-10000 10000,0 10000,0 10000,0.1 10000,-0.1 10000,0 10000,0.1 10000,-0.1 10000,0 10000.1,0.1 10000,-0.1 0,10000 0,10000 0,10000.1 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 -10000,0 -10000,-0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0.1 z" |
id="path2064" |
inkscape:connector-curvature="0" /> |
<path |
d="m 600000,-4800000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000.1 0,-10000 0,-10000 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0.1 10000,0 10000,0 10000.1,0.1 10000,0 0,10000 0,10000 0,9999.9 0,10000.1 0,10000 0,9999.9 0,10000.1 0,10000 0,9999.9 0,10000.1 -10000,0 -10000,-0.1 -10000.1,0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,-0.1 -10000,0 z" |
id="path2065" |
inkscape:connector-curvature="0" /> |
<path |
d="m 739659.9,-4900000 130,3555.5 368.5,10097.7 367.9,10097.6 367.3,10097.5 366.7,10097.4 366.1,10097.3 365.5,10097.2 364.9,10097 364.3,10097 363.6,10096.8 200.2,5569 -3284.9,0 -10000,0 -10000,0 -10000,0 -10000,0.1 0,-10000.1 0,-9999.9 0,-10000 0,-10000.1 0,-9999.9 0,-10000 0,-10000.1 0,-9999.9 0,-10000 0,-10000 10000,0 10000,-0.1 10000,0.1 9659.9,0 z" |
id="path2066" |
inkscape:connector-curvature="0" /> |
<path |
d="m 260340.1,-4900000 239.1,-6542.3 369.7,-10098 370.3,-10098.1 370.9,-10098.3 371.5,-10098.3 372.1,-10098.4 372.7,-10098.6 373.3,-10098.7 373.9,-10098.8 374.5,-10098.9 95.5,-2571.6 5976,0.1 10000,-0.1 10000,0 10000,0 0.1,10000 0,10000 0,10000 0,10000.1 0,10000 0,10000 0.1,9999.9 0,10000 0,10000 0,10000 -10000,0 -10000,-0.1 -10000.1,0.1 -9659.9,0 z" |
id="path2067" |
inkscape:connector-curvature="0" /> |
<path |
d="m 300000,-4900000 0,-10000 0,-10000 0,-10000 -0.1,-9999.9 0,-10000 0,-10000 0,-10000.1 0,-10000 0,-10000 -0.1,-10000 10000,0 10000,0.1 10000,-0.1 9999.9,0 10000,0 10000,0 10000,0 10000,-0.1 10000,0.1 10000,-0.1 0,10000.1 0,10000 0,9999.9 0,10000 0.1,10000 -0.1,10000 0,10000.1 -0.1,10000 0,10000 0,10000 -10000,0 -10000,0 -10000,0 -10000.1,0 -9999.9,0 -10000,0.1 -10000,0 -10000,0 -10000,0.1 -10000.1,0 z" |
id="path2068" |
inkscape:connector-curvature="0" /> |
<path |
d="m 400000,-4900000 0,-10000 0,-10000 0.1,-10000 0,-10000.1 0.1,-10000 -0.1,-10000 0,-10000 0,-9999.9 0,-10000 0,-10000.1 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0.1 10000,0 0,9999.9 0,10000 0,10000.1 0,10000 0,10000 0,9999.9 0,10000.1 0,9999.9 0,10000 0,10000 -10000,0 -10000,0 -10000,0.1 -10000,-0.1 -10000,0 -10000,0.1 -10000,-0.1 -10000,0 -10000.1,0.1 -10000,-0.1 z" |
id="path2069" |
inkscape:connector-curvature="0" /> |
<path |
d="m 500000,-4900000.1 0,-10000 0,-10000 0,-9999.9 0,-10000.1 0,-9999.9 0,-10000 0,-10000 0,-10000.1 0,-10000 0,-9999.9 10000,0 10000,-0.1 10000,0 10000,0 10000,0 9999.9,0 10000,0 10000,0 9999.9,0 10000,0 0,10000.1 0,10000 0,9999.9 0,10000 0,9999.9 0.1,10000 0,10000.1 0,10000 0,10000 0,10000 -10000,0.1 -10000.1,-0.1 -10000,0 -10000,0.1 -10000,-0.1 -10000,0 -10000,0.1 -10000,-0.1 -10000,0 -10000,0 z" |
id="path2070" |
inkscape:connector-curvature="0" /> |
<path |
d="m 600000,-4900000 0,-10000 0,-10000 0,-10000 0,-10000.1 -0.1,-10000 0,-9999.9 0,-10000 0,-9999.9 0,-10000 0,-10000.1 10000,0.1 10000,-0.1 10000,0.1 10000,0 10000,0 10000,0 9999.9,0 10000,0.1 10000,-0.1 9999.9,0 0.1,10000 0,10000 0,10000 0,10000.1 0,10000 0,10000 0,9999.9 -0.1,10000 0,10000 0,10000 -10000,0 -10000.1,-0.1 -10000,0 -10000,0 -10000,-0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 z" |
id="path2071" |
inkscape:connector-curvature="0" /> |
<path |
d="m 735975.9,-5000000 95.5,2571.6 374.5,10098.9 373.9,10098.8 373.3,10098.7 372.7,10098.6 372.1,10098.4 371.5,10098.3 370.9,10098.3 370.3,10098.1 369.7,10098 239.1,6542.3 -9659.9,0 -10000,-0.1 -10000,0.1 -10000,0 0,-10000 0,-10000 0.1,-10000 0,-9999.9 0,-10000 0,-10000 0,-10000.1 0,-10000 0,-10000 -0.1,-10000 10000,0 10000.1,0 10000,0.1 5975.9,-0.1 z" |
id="path2072" |
inkscape:connector-curvature="0" /> |
<path |
d="m 264024.1,-5000000 279.6,-7527.4 375.7,-10099.1 376.3,-10099.3 376.9,-10099.4 377.5,-10099.6 378.1,-10099.6 378.7,-10099.7 379.3,-10099.8 379.9,-10100 380.5,-10100.1 59.4,-1576 2234,0.1 10000,0 10000,-0.1 10000,0.1 0,10000 0,10000 0,10000 -0.1,10000 0,10000 0,10000 0,9999.9 -0.1,10000.1 0,9999.9 -0.1,10000 -10000,0 -10000,0 -10000,0.1 -5976,-0.1 z" |
id="path2073" |
inkscape:connector-curvature="0" /> |
<path |
d="m 300000,-5000000 0.1,-10000 0,-9999.9 0.1,-10000.1 0,-9999.9 0,-10000 0,-10000 0.1,-10000 0,-10000 0,-10000 0,-10000 10000,-0.1 10000,0.1 10000,0 9999.9,-0.1 10000,0 10000,0 10000,-0.1 10000,0.1 9999.9,0 10000,0.1 0,9999.9 0,10000 0,10000.1 0,10000 0,9999.9 0,10000 0,10000.1 0,10000 0,9999.9 0,10000 -10000,0.1 -10000,-0.1 -10000,0.1 -10000,0 -10000,0 -10000,0 -9999.9,0 -10000,0.1 -10000,-0.1 -10000,0 z" |
id="path2074" |
inkscape:connector-curvature="0" /> |
<path |
d="m 400000,-5000000 0,-10000 0,-9999.9 0,-10000 0,-10000.1 0,-10000 0,-9999.9 0,-10000 0,-10000.1 0,-10000 0,-9999.9 10000,-0.1 10000,0 9999.9,-0.1 10000,0 9999.9,0 10000,0 10000,0.1 10000,-0.1 9999.9,0 10000,0 0,10000 0,10000 0,10000 0,9999.9 0,10000 0,10000.1 0,10000 0,10000 0,10000 0,10000 -10000,0 -10000,-0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 z" |
id="path2075" |
inkscape:connector-curvature="0" /> |
<path |
d="m 500000,-5000000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000.1 0,-10000 0,-9999.9 0,-10000 0,-10000 0,-10000 10000,0 10000,0 9999.9,0.1 10000,-0.1 9999.9,0 10000,0 10000,0 10000,0.1 9999.9,0 10000,0.1 0,9999.9 0,10000 0,10000.1 0,10000 0,9999.9 0,10000 0,10000.1 0,10000 0,9999.9 0,10000 -10000,0 -9999.9,0 -10000,0 -10000,0 -9999.9,0 -10000,0 -10000,0 -10000,0 -10000,0.1 -10000,0 z" |
id="path2076" |
inkscape:connector-curvature="0" /> |
<path |
d="m 600000,-5000000 0,-10000 0,-9999.9 0,-10000 0,-10000.1 0,-10000 0,-9999.9 0,-10000 0,-10000.1 0,-10000 0,-9999.9 10000,-0.1 9999.9,0 10000,-0.1 10000,0.1 10000,0 9999.9,0 10000,0.1 10000,0 10000,-0.1 10000,0.1 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0.1,9999.9 0,10000.1 0,9999.9 0,10000 -9999.9,0 -10000,0.1 -10000,-0.1 -9999.9,0 -10000,0 -10000,0 -10000,0 -10000,-0.1 -10000,0.1 -10000,-0.1 z" |
id="path2077" |
inkscape:connector-curvature="0" /> |
<path |
d="m 732233.9,-5100000.1 59.5,1576 380.5,10100.1 379.9,10100 379.3,10099.8 378.7,10099.7 378.1,10099.6 377.5,10099.6 376.9,10099.4 376.3,10099.3 375.7,10099.1 279.6,7527.4 -5975.9,0.1 -10000,-0.1 -10000.1,0 -10000,0 0,-10000 0,-9999.9 0,-10000.1 -0.1,-9999.9 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 10000,-0.1 10000,0.1 10000,0 2233.9,-0.1 z" |
id="path2078" |
inkscape:connector-curvature="0" /> |
<path |
d="m 267766.1,-5100000.1 321.6,-8524.2 381.6,-10100.3 382.2,-10100.4 382.8,-10100.6 383.4,-10100.7 384,-10100.9 384.6,-10100.9 385.1,-10101 385.7,-10101.1 386.3,-10101.3 21.8,-568.6 8434.7,0.1 9999.9,0 10000.1,0 -0.1,10000 0,9999.9 0,10000.1 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000.1 -10000,-0.1 -10000,0.1 -10000,0 -2234,-0.1 z" |
id="path2079" |
inkscape:connector-curvature="0" /> |
<path |
d="m 300000,-5100000 0,-10000.1 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000.1 0,-9999.9 0.1,-10000 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0.1 10000,0 10000,0 0,9999.9 0,10000 0,10000.1 0,10000 0,9999.9 0,10000 0,10000.1 0,10000 0,9999.9 0,10000.1 -10000,-0.1 -9999.9,0 -10000,-0.1 -10000,0.1 -10000,0 -10000,0 -9999.9,0.1 -10000,0 -10000,-0.1 -10000,0.1 z" |
id="path2080" |
inkscape:connector-curvature="0" /> |
<path |
d="m 400000,-5099999.9 0,-10000.1 0,-9999.9 0,-10000 0,-10000.1 0,-10000 0,-9999.9 0,-10000 0,-10000.1 0,-10000 0,-9999.9 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0.1 10000,0 10000,-0.1 10000,0 10000,0 0,10000 0,9999.9 0,10000 0,10000.1 0,9999.9 0,10000.1 0,9999.9 0,10000 0,10000.1 0,10000 -10000,0 -9999.9,0 -10000,0.1 -10000,-0.1 -10000,0 -9999.9,0 -10000,0 -9999.9,0.1 -10000,0 -10000,0.1 z" |
id="path2081" |
inkscape:connector-curvature="0" /> |
<path |
d="m 500000,-5100000 0,-10000 0,-10000.1 0,-10000 0,-9999.9 0,-10000.1 0,-9999.9 0,-10000.1 0,-10000 0,-9999.9 0,-10000 10000,0 10000,0 10000,0.1 10000.1,0 10000,-0.1 9999.9,0.1 10000.1,0 9999.9,0 10000,0 10000,0 0,9999.9 0,10000 0,10000.1 0,10000 0,9999.9 0,10000 0,10000.1 0,10000 0,9999.9 0,10000.1 -10000,-0.1 -9999.9,0 -10000,-0.1 -10000,0 -10000,0 -9999.9,0 -10000,0.1 -9999.9,-0.1 -10000,0 -10000,0 z" |
id="path2082" |
inkscape:connector-curvature="0" /> |
<path |
d="m 600000,-5099999.9 0,-10000.1 0,-9999.9 0,-10000 0,-10000.1 0,-10000 0,-9999.9 0,-10000 0,-10000.1 0,-10000 0,-9999.9 10000,0 10000,0 9999.9,-0.1 10000,0 10000.1,0 10000,0 10000,0 10000,0 10000,0 10000,0 0.1,10000 0,9999.9 0,10000.1 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000.1 -10000,-0.1 -10000,0.1 -10000,0 -10000,-0.1 -9999.9,0 -10000,0 -10000,-0.1 -10000,0.1 -9999.9,0 -10000,0.1 z" |
id="path2083" |
inkscape:connector-curvature="0" /> |
<path |
d="m 728434.7,-5200000 21.8,568.6 386.3,10101.3 385.7,10101.1 385.1,10101 384.6,10100.9 384,10100.9 383.4,10100.7 382.8,10100.6 382.2,10100.4 381.6,10100.3 321.6,8524.2 -2233.9,0.1 -10000,0 -10000,-0.1 -10000,0.1 0,-10000.1 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000.1 0,-9999.9 -0.1,-10000 10000,0 10000,0 8434.7,-0.1 z" |
id="path2084" |
inkscape:connector-curvature="0" /> |
<path |
d="m 271565.3,-5200000 365.1,-9532.8 387.5,-10101.5 388,-10101.6 388.6,-10101.7 389.2,-10101.8 389.8,-10102 390.3,-10102.2 390.9,-10102.2 391.5,-10102.3 374.5,-9651.8 4579.2,-0.1 10000,0 10000,0 0,10000 -0.1,10000 0,10000 0,10000 0,10000 0,10000 0,10000 -0.1,10000 0.1,9999.9 0,10000.1 -10000.1,0 -9999.9,0 -8434.7,-0.1 z" |
id="path2085" |
inkscape:connector-curvature="0" /> |
<path |
d="m 300000,-5200000 0,-10000.1 -0.1,-9999.9 0.1,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0.1,-10000 0,-10000 10000,0 10000,0.1 10000,0 10000,0 10000,0 10000,0 10000,0 10000,-0.1 10000,0 10000,0.1 0,9999.9 0,10000 0,10000.1 0.1,10000 0,9999.9 0,10000 0,10000.1 0,10000 0,10000.1 0,10000 -10000,0 -10000,0 -10000,-0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 z" |
id="path2086" |
inkscape:connector-curvature="0" /> |
<path |
d="m 400000,-5200000 0,-10000 0,-10000.1 0,-10000 0,-10000.1 0,-10000 0,-9999.9 -0.1,-10000 0,-10000.1 0,-10000 0,-9999.9 10000,0 10000,0 10000,0 10000,-0.1 10000,0 10000,0 9999.9,0 10000.1,0 10000,0.1 10000,0 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 -10000,0 -10000,0 -10000,0.1 -10000,0 -10000,-0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 z" |
id="path2087" |
inkscape:connector-curvature="0" /> |
<path |
d="m 500000,-5200000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 10000,0 10000,-0.1 10000.1,0 10000,0 10000,0 10000,0 10000,0.1 10000,0 10000,0 10000,0 0,9999.9 0,10000 0,10000.1 -0.1,10000 0,9999.9 0,10000 0,10000.1 0,10000 0,10000.1 0,10000 -10000,0 -10000,0 -9999.9,0 -10000.1,0 -9999.9,-0.1 -10000,0.1 -10000.1,0 -10000,-0.1 -10000,0 -10000,0 z" |
id="path2088" |
inkscape:connector-curvature="0" /> |
<path |
d="m 600000,-5200000 0,-10000 0,-10000.1 0,-10000 0,-10000.1 0,-10000 0,-9999.9 0.1,-10000 0,-10000.1 0,-10000 0,-9999.9 10000,-0.1 10000,0 9999.9,0.1 10000.1,0 10000,0 10000,0 10000,0 10000,0 10000,-0.1 10000,0 0,10000 0,10000 0.1,10000 0,10000 0,10000 0,10000 0,10000 0.1,10000 -0.1,9999.9 0,10000.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000.1,0 -10000,0 -9999.9,0.1 -10000,0 -10000,0 z" |
id="path2089" |
inkscape:connector-curvature="0" /> |
<path |
d="m 724579.2,-5300000 374.5,9651.8 391.5,10102.3 390.9,10102.2 390.3,10102.2 389.8,10102 389.2,10101.8 388.6,10101.7 388,10101.6 387.5,10101.5 365.1,9532.8 -8434.7,0.1 -10000,0 -10000,0 0,-10000.1 0.1,-9999.9 -0.1,-10000 0,-10000 0,-10000 0,-10000 0,-10000 -0.1,-10000 0,-10000 0,-10000 10000,0 10000,0 4579.2,0.1 z" |
id="path2090" |
inkscape:connector-curvature="0" /> |
<path |
d="m 756099.6,-4432069.1 -340.3,-10092.5 -341,-10092.6 -341.6,-10092.7 -342.2,-10092.8 -342.9,-10093 -343.5,-10093.2 -251.3,-7374.2 3787.9,-258.7 9977.8,-681.6 9979.1,-681.8 9980.3,-681.9 9981.6,-682 9982.8,-682.2 681.6,9983.5 680.3,9983.7 679.1,9983.8 677.9,9983.9 676.5,9984 675.4,9984.2 647.9,9596.8 -5879.3,240.9 -10045.7,398.3 -10045.4,385 -10045.2,371.6 -10045,358.3 -10044.8,345 z" |
id="path2091" |
inkscape:connector-curvature="0" /> |
<path |
d="m 912244.7,-4438939 -5448.8,295.6 -10048.2,531.7 -10047.9,518.3 -10047.7,505 -10047.4,491.6 -10047.1,478.3 -10046.9,464.9 -10046.5,451.6 -10046.4,438.3 -10046.1,424.9 -4166.6,170.7 -647.9,-9596.8 -675.4,-9984.2 -676.5,-9984 -677.9,-9983.9 -679.1,-9983.8 -680.3,-9983.7 -681.6,-9983.5 9984.1,-682.3 9985.2,-682.4 9986.5,-682.5 9987.9,-682.8 9989,-682.8 9990.3,-683 9991.5,-683 9992.8,-683.3 9994,-683.5 9995.2,-683.6 683.1,9996 681.8,9996.1 680.6,9996.2 679.3,9996.4 678,9996.5 676.8,9996.7 675.5,9996.8 106.9,1583.5 z" |
id="path2092" |
inkscape:connector-curvature="0" /> |
<path |
d="m 1012321.5,-4445036.3 -5025.8,339.5 -10051.5,665.7 -10051.1,652.2 -10050.9,638.8 -10050.5,625.4 -10050.1,612 -10049.8,598.6 -10049.5,585.2 -10049.1,571.8 -10048.8,558.4 -4599.8,249.5 -106.9,-1583.5 -675.5,-9996.8 -676.8,-9996.7 -678,-9996.5 -679.3,-9996.4 -680.6,-9996.2 -681.8,-9996.1 -683.1,-9996 9996.5,-683.7 9997.7,-683.9 9998.9,-684 10000.2,-684.3 10001.4,-684.3 10002.7,-684.5 10003.9,-684.7 10005.2,-684.9 10006.4,-685.1 10007.7,-685.2 684.7,10008.4 683.4,10008.5 682.2,10008.7 680.9,10008.9 679.7,10009 678.4,10009.3 677.2,10009.4 151.6,2243.2 z" |
id="path2093" |
inkscape:connector-curvature="0" /> |
<path |
d="m 1112435,-4452466.4 -4602.8,372.5 -10055.5,800.4 -10055.1,786.9 -10054.6,773.4 -10054.2,759.9 -10053.8,746.4 -10053.4,732.9 -10053.1,719.5 -10052.5,706 -10052.2,692.6 -5026.1,339.6 -151.6,-2243.2 -677.2,-10009.4 -678.4,-10009.3 -679.7,-10009 -680.9,-10008.9 -682.2,-10008.7 -683.4,-10008.5 -684.7,-10008.4 10008.9,-685.3 10010.1,-685.5 10011.4,-685.7 10012.6,-685.9 10013.9,-686.1 10015.1,-686.3 10016.4,-686.4 10017.5,-686.7 10018.9,-686.8 10020.1,-687.1 686.4,10020.9 685.3,10021 683.9,10021.2 682.7,10021.4 681.5,10021.5 680.2,10021.8 679,10021.9 107.4,1587.4 z" |
id="path2094" |
inkscape:connector-curvature="0" /> |
<path |
d="m 1212584.4,-4461236.4 -4172.4,393.8 -10060.1,936 -10059.7,922.4 -10059.1,908.8 -10058.7,895.2 -10058.2,881.6 -10057.7,868.1 -10057.3,854.5 -10056.8,841 -10056.4,827.4 -5453.1,441.4 -107.4,-1587.4 -679,-10021.9 -680.2,-10021.8 -681.5,-10021.5 -682.7,-10021.4 -683.9,-10021.2 -685.3,-10021 -686.4,-10020.9 10021.3,-687.2 10022.6,-687.3 10023.9,-687.5 10025,-687.8 10026.4,-687.9 10027.5,-688.2 10028.9,-688.3 10030.1,-688.6 10031.2,-688.8 10032.6,-689 688.4,10033.3 687.2,10033.5 686,10033.7 684.7,10033.9 683.5,10034 682.2,10034.3 654.6,9645.1 z" |
id="path2095" |
inkscape:connector-curvature="0" /> |
<path |
d="m 753796.8,-4500000 -92.9,-2719 -344.8,-10093.3 -345.5,-10093.4 -346.1,-10093.5 -346.7,-10093.7 -347.4,-10093.8 -348,-10093.9 -348.6,-10094 -349.3,-10094.1 -349.9,-10094.2 -223.4,-6437.1 353.3,-24.5 9976.5,-693.9 9977.7,-694.1 9979,-694.2 9980.3,-694.3 9981.4,-694.5 693.9,9982.1 692.8,9982.2 691.4,9982.4 690.2,9982.6 689,9982.7 687.7,9982.8 686.6,9982.9 685.2,9983.2 684.1,9983.2 682.8,9983.3 -9982.8,682.2 -9981.6,682 -9980.3,681.9 -9979.1,681.8 -9977.8,681.6 -3787.9,258.7 z" |
id="path2096" |
inkscape:connector-curvature="0" /> |
<path |
d="m 807486.3,-4503668.1 -682.8,-9983.3 -684.1,-9983.2 -685.2,-9983.2 -686.6,-9982.9 -687.7,-9982.8 -689,-9982.7 -690.2,-9982.6 -691.4,-9982.4 -692.8,-9982.2 -693.9,-9982.1 9982.7,-694.7 9983.8,-694.8 9985.1,-694.9 9986.4,-695 9987.5,-695.2 9988.8,-695.3 9990,-695.5 9991.2,-695.6 9992.5,-695.7 9993.7,-696 695.4,9994.4 694.1,9994.5 692.9,9994.7 691.7,9994.8 690.4,9995 689.2,9995.1 688,9995.4 686.7,9995.5 685.5,9995.6 684.2,9995.8 -9995.2,683.6 -9994,683.5 -9992.8,683.3 -9991.5,683 -9990.3,683 -9989,682.8 -9987.9,682.8 -9986.5,682.5 -9985.2,682.4 -9984.1,682.3 z" |
id="path2097" |
inkscape:connector-curvature="0" /> |
<path |
d="m 907382.8,-4510497.2 -684.2,-9995.8 -685.5,-9995.6 -686.7,-9995.5 -688,-9995.4 -689.2,-9995.1 -690.4,-9995 -691.7,-9994.8 -692.9,-9994.7 -694.1,-9994.5 -695.4,-9994.4 9994.9,-696 9996.2,-696.3 9997.4,-696.3 9998.6,-696.6 9999.8,-696.7 10001,-696.8 10002.3,-697.1 10003.4,-697.1 10004.8,-697.4 10005.9,-697.6 697,10006.7 695.8,10006.8 694.6,10007 693.3,10007.2 692.1,10007.3 690.9,10007.5 689.6,10007.7 688.4,10007.9 687.1,10007.9 685.9,10008.2 -10007.7,685.2 -10006.4,685.1 -10005.2,684.9 -10003.9,684.7 -10002.7,684.5 -10001.4,684.3 -10000.2,684.3 -9998.9,684 -9997.7,683.9 -9996.5,683.7 z" |
id="path2098" |
inkscape:connector-curvature="0" /> |
<path |
d="m 1007403.5,-4517341.8 -685.9,-10008.2 -687.1,-10007.9 -688.4,-10007.9 -689.6,-10007.7 -690.9,-10007.5 -692.1,-10007.3 -693.3,-10007.2 -694.6,-10007 -695.8,-10006.8 -697,-10006.7 10007.2,-697.7 10008.5,-697.8 10009.6,-698.1 10010.9,-698.2 10012,-698.5 10013.3,-698.6 10014.5,-698.7 10015.8,-699 10017,-699.1 10018.2,-699.4 698.8,10018.9 697.6,10019.1 696.4,10019.3 695.1,10019.5 693.9,10019.7 692.7,10019.9 691.4,10020.1 690.2,10020.2 688.9,10020.4 687.8,10020.6 -10020.1,687.1 -10018.9,686.8 -10017.5,686.7 -10016.4,686.4 -10015.1,686.3 -10013.9,686.1 -10012.6,685.9 -10011.4,685.7 -10010.1,685.5 -10008.9,685.3 z" |
id="path2099" |
inkscape:connector-curvature="0" /> |
<path |
d="m 1107548.5,-4524203.5 -687.8,-10020.6 -688.9,-10020.4 -690.2,-10020.2 -691.4,-10020.1 -692.7,-10019.9 -693.9,-10019.7 -695.1,-10019.5 -696.4,-10019.3 -697.6,-10019.1 -698.8,-10018.9 10019.5,-699.5 10020.6,-699.8 10021.9,-699.9 10023.1,-700.1 10024.4,-700.3 10025.5,-700.5 10026.9,-700.8 10028,-700.9 10029.2,-701.1 10030.5,-701.3 700.8,10031.2 699.5,10031.3 698.4,10031.6 697.2,10031.8 695.9,10032.1 694.7,10032.2 693.3,10032.4 692.2,10032.7 690.9,10032.9 689.8,10033 -10032.6,689 -10031.2,688.8 -10030.1,688.6 -10028.9,688.3 -10027.5,688.2 -10026.4,687.9 -10025,687.8 -10023.9,687.5 -10022.6,687.3 -10021.3,687.2 z" |
id="path2100" |
inkscape:connector-curvature="0" /> |
<path |
d="m 750354.3,-4600000 -127.2,-3657.4 -351.2,-10094.5 -351.8,-10094.6 -352.4,-10094.7 -353.1,-10094.8 -353.7,-10094.9 -354.3,-10095 -355,-10095.2 -355.6,-10095.3 -356.2,-10095.4 -193.8,-5488.2 6833,-483.7 9976.5,-706.2 9977.7,-706.3 9978.9,-706.5 9980.1,-706.7 706.1,9980.8 704.9,9980.9 703.6,9981.1 702.4,9981.1 701.3,9981.3 700,9981.5 698.8,9981.7 697.6,9981.7 696.4,9981.8 695.1,9982.1 -9981.4,694.5 -9980.3,694.3 -9979,694.2 -9977.7,694.1 -9976.5,693.9 -353.3,24.5 z" |
id="path2101" |
inkscape:connector-curvature="0" /> |
<path |
d="m 800602.5,-4603495.5 -695.1,-9982.1 -696.4,-9981.8 -697.6,-9981.7 -698.8,-9981.7 -700,-9981.5 -701.3,-9981.3 -702.4,-9981.1 -703.6,-9981.1 -704.9,-9980.9 -706.1,-9980.8 9981.2,-706.8 9982.5,-706.9 9983.7,-707.1 9984.9,-707.2 9986.1,-707.4 9987.4,-707.4 9988.5,-707.6 9989.8,-707.8 9991,-707.9 9992.1,-708.1 707.5,9992.8 706.4,9993 705.1,9993.2 703.9,9993.3 702.7,9993.5 701.5,9993.7 700.3,9993.8 699.1,9993.9 697.8,9994.1 696.6,9994.2 -9993.7,696 -9992.5,695.7 -9991.2,695.6 -9990,695.5 -9988.8,695.3 -9987.5,695.2 -9986.4,695 -9985.1,694.9 -9983.8,694.8 -9982.7,694.7 z" |
id="path2102" |
inkscape:connector-curvature="0" /> |
<path |
d="m 900484.4,-4610448.1 -696.6,-9994.2 -697.8,-9994.1 -699.1,-9993.9 -700.3,-9993.8 -701.5,-9993.7 -702.7,-9993.5 -703.9,-9993.3 -705.1,-9993.2 -706.4,-9993 -707.5,-9992.8 9993.4,-708.2 9994.5,-708.4 9995.8,-708.5 9997,-708.8 9998.2,-708.8 9999.4,-709.1 10000.7,-709.1 10001.8,-709.4 10003.1,-709.6 10004.2,-709.6 709.2,10004.9 708,10005.1 706.8,10005.3 705.6,10005.5 704.3,10005.6 703.1,10005.7 701.9,10006 700.7,10006.1 699.5,10006.2 698.2,10006.5 -10005.9,697.6 -10004.8,697.4 -10003.4,697.1 -10002.3,697.1 -10001,696.8 -9999.8,696.7 -9998.6,696.6 -9997.4,696.3 -9996.2,696.3 -9994.9,696 z" |
id="path2103" |
inkscape:connector-curvature="0" /> |
<path |
d="m 1000488.8,-4617416 -698.2,-10006.5 -699.5,-10006.2 -700.7,-10006.1 -701.9,-10006 -703.1,-10005.7 -704.3,-10005.6 -705.6,-10005.5 -706.8,-10005.3 -708,-10005.1 -709.2,-10004.9 10005.4,-709.9 10006.7,-710 10007.8,-710.2 10009.1,-710.5 10010.3,-710.5 10011.5,-710.8 10012.7,-710.9 10013.9,-711.2 10015.1,-711.3 10016.3,-711.6 711.1,10017 709.8,10017.3 708.6,10017.4 707.4,10017.5 706.2,10017.8 705,10018 703.7,10018.2 702.5,10018.3 701.3,10018.5 700,10018.7 -10018.2,699.4 -10017,699.1 -10015.8,699 -10014.5,698.7 -10013.3,698.6 -10012,698.5 -10010.9,698.2 -10009.6,698.1 -10008.5,697.8 -10007.2,697.7 z" |
id="path2104" |
inkscape:connector-curvature="0" /> |
<path |
d="m 1100615.7,-4624401.2 -700,-10018.7 -701.3,-10018.5 -702.5,-10018.3 -703.7,-10018.2 -705,-10018 -706.2,-10017.8 -707.4,-10017.5 -708.6,-10017.4 -709.8,-10017.3 -711.1,-10017 10017.5,-711.6 10018.8,-711.9 10019.9,-712.1 10021.1,-712.3 10022.4,-712.6 10023.5,-712.6 10024.8,-712.9 10026,-713.1 10027.2,-713.4 10028.3,-713.5 713,10029.1 711.8,10029.3 710.6,10029.5 709.4,10029.7 708.1,10029.9 707,10030.2 705.7,10030.4 704.5,10030.6 703.2,10030.7 702.1,10031.1 -10030.5,701.3 -10029.2,701.1 -10028,700.9 -10026.9,700.8 -10025.5,700.5 -10024.4,700.3 -10023.1,700.1 -10021.9,699.9 -10020.6,699.8 -10019.5,699.5 z" |
id="path2105" |
inkscape:connector-curvature="0" /> |
<path |
d="m 746850,-4700000 -163,-4607.3 -357.5,-10095.7 -358.1,-10095.7 -358.7,-10095.9 -359.3,-10096 -359.9,-10096.1 -360.6,-10096.2 -361.2,-10096.3 -361.8,-10096.4 -362.4,-10096.6 -162.6,-4527.7 3276.4,-235.9 9975.2,-718.2 9976.3,-718.4 9977.5,-718.5 9978.8,-718.5 718.1,9979.4 716.9,9979.5 715.6,9979.8 714.5,9979.8 713.3,9979.9 712.2,9980 710.9,9980.2 709.7,9980.4 708.5,9980.5 707.3,9980.6 -9980.1,706.7 -9978.9,706.5 -9977.7,706.3 -9976.5,706.2 -6833,483.7 z" |
id="path2106" |
inkscape:connector-curvature="0" /> |
<path |
d="m 793596.3,-4703309.4 -707.3,-9980.6 -708.5,-9980.5 -709.7,-9980.4 -710.9,-9980.2 -712.2,-9980 -713.3,-9979.9 -714.5,-9979.8 -715.6,-9979.8 -716.9,-9979.5 -718.1,-9979.4 9979.9,-718.8 9981.1,-719 9982.3,-719 9983.5,-719.2 9984.7,-719.3 9985.9,-719.4 9987,-719.6 9988.3,-719.7 9989.4,-720 9990.6,-720 719.5,9991.3 718.3,9991.5 717.2,9991.6 715.9,9991.8 714.8,9991.9 713.5,9992.1 712.4,9992.2 711.2,9992.4 709.9,9992.5 708.8,9992.6 -9992.1,708.1 -9991,707.9 -9989.8,707.8 -9988.5,707.6 -9987.4,707.4 -9986.1,707.4 -9984.9,707.2 -9983.7,707.1 -9982.5,706.9 -9981.2,706.8 z" |
id="path2107" |
inkscape:connector-curvature="0" /> |
<path |
d="m 893463.6,-4710383.5 -708.8,-9992.6 -709.9,-9992.5 -711.2,-9992.4 -712.4,-9992.2 -713.5,-9992.1 -714.8,-9991.9 -715.9,-9991.8 -717.2,-9991.6 -718.3,-9991.5 -719.5,-9991.3 9991.8,-720.2 9993,-720.4 9994.2,-720.5 9995.3,-720.7 9996.5,-720.8 9997.8,-721 9998.9,-721.2 10000.2,-721.4 10001.3,-721.5 10002.5,-721.6 721.2,10003.2 720,10003.3 718.8,10003.6 717.6,10003.7 716.4,10003.9 715.2,10004 714,10004.3 712.8,10004.4 711.6,10004.5 710.4,10004.8 -10004.2,709.6 -10003.1,709.6 -10001.8,709.4 -10000.7,709.1 -9999.4,709.1 -9998.2,708.8 -9997,708.8 -9995.8,708.5 -9994.5,708.4 -9993.4,708.2 z" |
id="path2108" |
inkscape:connector-curvature="0" /> |
<path |
d="m 993451.6,-4717473 -710.4,-10004.8 -711.6,-10004.5 -712.8,-10004.4 -714,-10004.3 -715.2,-10004 -716.4,-10003.9 -717.6,-10003.7 -718.8,-10003.6 -720,-10003.3 -721.2,-10003.2 10003.7,-721.9 10004.9,-722 10006.1,-722.2 10007.3,-722.4 10008.5,-722.6 10009.6,-722.8 10010.8,-723 10012.1,-723.2 10013.2,-723.2 10014.4,-723.5 723,10015.1 721.8,10015.3 720.6,10015.5 719.5,10015.7 718.1,10015.8 717.1,10016.1 715.8,10016.2 714.6,10016.5 713.5,10016.6 712.2,10016.8 -10016.3,711.6 -10015.1,711.3 -10013.9,711.2 -10012.7,710.9 -10011.5,710.8 -10010.3,710.5 -10009.1,710.5 -10007.8,710.2 -10006.7,710 -10005.4,709.9 z" |
id="path2109" |
inkscape:connector-curvature="0" /> |
<path |
d="m 1093560.3,-4724579.8 -712.2,-10016.8 -713.5,-10016.6 -714.6,-10016.5 -715.8,-10016.2 -717.1,-10016.1 -718.1,-10015.8 -719.5,-10015.7 -720.6,-10015.5 -721.8,-10015.3 -723,-10015.1 10015.6,-723.7 10016.7,-723.8 10018,-724.1 10019.1,-724.3 10020.4,-724.5 10021.5,-724.7 10022.8,-724.9 10023.9,-725.1 10025.1,-725.2 10026.3,-725.5 725,10027 723.8,10027.1 722.7,10027.5 721.4,10027.6 720.2,10027.8 719,10028 717.8,10028.3 716.6,10028.5 715.4,10028.7 714.2,10028.9 -10028.3,713.5 -10027.2,713.4 -10026,713.1 -10024.8,712.9 -10023.5,712.6 -10022.4,712.6 -10021.1,712.3 -10019.9,712.1 -10018.8,711.9 -10017.5,711.6 z" |
id="path2110" |
inkscape:connector-curvature="0" /> |
<path |
d="m 743285,-4800000 -200.4,-5569 -363.6,-10096.8 -364.3,-10097 -364.9,-10097 -365.5,-10097.2 -366.1,-10097.3 -366.7,-10097.4 -367.3,-10097.5 -367.9,-10097.6 -368.5,-10097.7 -129.8,-3555.5 9634.6,-705.1 9975.1,-730.2 9976.2,-730.2 9977.3,-730.4 729.9,9978 728.7,9978.2 727.5,9978.2 726.4,9978.5 725.2,9978.6 724,9978.6 722.8,9978.9 721.7,9979 720.5,9979.1 719.3,9979.3 -9978.8,718.5 -9977.5,718.5 -9976.3,718.4 -9975.2,718.2 -3276.4,235.9 z" |
id="path2111" |
inkscape:connector-curvature="0" /> |
<path |
d="m 786469.3,-4803109.5 -719.3,-9979.3 -720.5,-9979.1 -721.7,-9979 -722.8,-9978.9 -724,-9978.6 -725.2,-9978.6 -726.4,-9978.5 -727.5,-9978.2 -728.7,-9978.2 -729.9,-9978 9978.6,-730.5 9979.7,-730.8 9980.9,-730.8 9982,-730.9 9983.3,-731.2 9984.4,-731.2 9985.5,-731.4 9986.8,-731.5 9987.9,-731.7 9989.1,-731.9 731.4,9989.7 730.2,9989.9 729,9990.1 727.8,9990.2 726.7,9990.3 725.4,9990.5 724.3,9990.6 723.1,9990.9 721.9,9991 720.7,9991.2 -9990.6,720 -9989.4,720 -9988.3,719.7 -9987,719.6 -9985.9,719.4 -9984.7,719.3 -9983.5,719.2 -9982.3,719 -9981.1,719 -9979.9,718.8 z" |
id="path2112" |
inkscape:connector-curvature="0" /> |
<path |
d="m 886322,-4810303.4 -720.7,-9991.2 -721.9,-9991 -723.1,-9990.9 -724.3,-9990.6 -725.4,-9990.5 -726.7,-9990.3 -727.8,-9990.2 -729,-9990.1 -730.2,-9989.9 -731.4,-9989.7 9990.2,-731.9 9991.5,-732.2 9992.6,-732.3 9993.8,-732.4 9994.9,-732.7 9996.1,-732.8 9997.3,-732.9 9998.5,-733.2 9999.7,-733.3 10000.8,-733.5 733,10001.5 731.8,10001.6 730.6,10001.8 729.5,10002 728.3,10002.2 727.1,10002.3 725.9,10002.5 724.7,10002.7 723.5,10002.8 722.4,10003.1 -10002.5,721.6 -10001.3,721.5 -10000.2,721.4 -9998.9,721.2 -9997.8,721 -9996.5,720.8 -9995.3,720.7 -9994.2,720.5 -9993,720.4 -9991.8,720.2 z" |
id="path2113" |
inkscape:connector-curvature="0" /> |
<path |
d="m 986293.7,-4817512.7 -722.4,-10003.1 -723.5,-10002.8 -724.7,-10002.7 -725.9,-10002.5 -727.1,-10002.3 -728.3,-10002.2 -729.5,-10002 -730.6,-10001.8 -731.8,-10001.6 -733,-10001.5 10001.9,-733.6 10003.2,-733.8 10004.3,-733.9 10005.5,-734.3 10006.6,-734.4 10007.8,-734.5 10009,-734.8 10010.1,-734.9 10011.4,-735 10012.5,-735.3 734.8,10013.1 733.6,10013.4 732.5,10013.6 731.3,10013.8 730.1,10013.9 729,10014.1 727.7,10014.3 726.5,10014.5 725.4,10014.7 724.2,10014.9 -10014.4,723.5 -10013.2,723.2 -10012.1,723.2 -10010.8,723 -10009.6,722.8 -10008.5,722.6 -10007.3,722.4 -10006.1,722.2 -10004.9,722 -10003.7,721.9 z" |
id="path2114" |
inkscape:connector-curvature="0" /> |
<path |
d="m 1086384.2,-4824739.4 -724.2,-10014.9 -725.4,-10014.7 -726.5,-10014.5 -727.7,-10014.3 -729,-10014.1 -730.1,-10013.9 -731.3,-10013.8 -732.5,-10013.6 -733.6,-10013.4 -734.8,-10013.1 10013.6,-735.5 10014.9,-735.7 10016,-735.9 10017.1,-736.1 10018.4,-736.3 10019.6,-736.4 10020.7,-736.7 10021.8,-736.9 10023,-737 10024.3,-737.3 736.8,10024.9 735.6,10025.1 734.5,10025.2 733.3,10025.6 732.2,10025.7 730.9,10025.9 729.8,10026.2 728.6,10026.4 727.4,10026.5 726.2,10026.9 -10026.3,725.5 -10025.1,725.2 -10023.9,725.1 -10022.8,724.9 -10021.5,724.7 -10020.4,724.5 -10019.1,724.3 -10018,724.1 -10016.7,723.8 -10015.6,723.7 z" |
id="path2115" |
inkscape:connector-curvature="0" /> |
<path |
d="m 739660.1,-4900000 -239.3,-6542.3 -369.7,-10098 -370.3,-10098.1 -370.9,-10098.3 -371.5,-10098.3 -372.1,-10098.4 -372.7,-10098.6 -373.3,-10098.7 -373.9,-10098.8 -374.5,-10098.9 -95.4,-2571.6 5959.7,-443.1 9973.7,-741.8 9974.9,-741.9 9976,-742 741.5,9976.6 740.4,9976.8 739.2,9977 738,9977.1 736.9,9977.2 735.7,9977.4 734.6,9977.4 733.4,9977.6 732.2,9977.8 731,9977.9 -9977.3,730.4 -9976.2,730.2 -9975.1,730.2 -9634.6,705.1 z" |
id="path2116" |
inkscape:connector-curvature="0" /> |
<path |
d="m 779223.4,-4902896 -731,-9977.9 -732.2,-9977.8 -733.4,-9977.6 -734.6,-9977.4 -735.7,-9977.4 -736.9,-9977.2 -738,-9977.1 -739.2,-9977 -740.4,-9976.8 -741.5,-9976.6 9977.3,-742.2 9978.3,-742.2 9979.5,-742.5 9980.7,-742.6 9981.7,-742.7 9983,-742.8 9984.1,-743 9985.3,-743.2 9986.4,-743.2 9987.5,-743.5 743,9988.3 741.8,9988.4 740.6,9988.5 739.6,9988.7 738.3,9988.8 737.2,9989 736,9989.2 734.9,9989.3 733.6,9989.4 732.5,9989.6 -9989.1,731.9 -9987.9,731.7 -9986.8,731.5 -9985.5,731.4 -9984.4,731.2 -9983.3,731.2 -9982,730.9 -9980.9,730.8 -9979.7,730.8 -9978.6,730.5 z" |
id="path2117" |
inkscape:connector-curvature="0" /> |
<path |
d="m 879061.6,-4910207.9 -732.5,-9989.6 -733.6,-9989.4 -734.9,-9989.3 -736,-9989.2 -737.2,-9989 -738.3,-9988.8 -739.6,-9988.7 -740.6,-9988.5 -741.8,-9988.4 -743,-9988.3 9988.7,-743.6 9989.9,-743.7 9991,-744 9992.2,-744.1 9993.3,-744.2 9994.4,-744.5 9995.6,-744.6 9996.8,-744.7 9997.9,-744.9 9999.1,-745.1 744.6,9999.7 743.4,9999.9 742.3,10000.1 741.1,10000.3 740,10000.4 738.8,10000.5 737.7,10000.9 736.5,10000.9 735.3,10001.1 734.1,10001.2 -10000.8,733.5 -9999.7,733.3 -9998.5,733.2 -9997.3,732.9 -9996.1,732.8 -9994.9,732.7 -9993.8,732.4 -9992.6,732.3 -9991.5,732.2 -9990.2,731.9 z" |
id="path2118" |
inkscape:connector-curvature="0" /> |
<path |
d="m 979016.8,-4917535.2 -734.1,-10001.2 -735.3,-10001.1 -736.5,-10000.9 -737.7,-10000.9 -738.8,-10000.5 -740,-10000.4 -741.1,-10000.3 -742.3,-10000.1 -743.4,-9999.9 -744.6,-9999.7 10000.2,-745.2 10001.4,-745.5 10002.5,-745.6 10003.7,-745.8 10004.8,-745.9 10006,-746.2 10007.1,-746.3 10008.3,-746.5 10009.4,-746.7 10010.6,-746.9 746.4,10011.3 745.3,10011.5 744.1,10011.6 742.9,10011.8 741.9,10012 740.6,10012.2 739.5,10012.5 738.3,10012.6 737.2,10012.7 736,10013 -10012.5,735.3 -10011.4,735 -10010.1,734.9 -10009,734.8 -10007.8,734.5 -10006.6,734.4 -10005.5,734.3 -10004.3,733.9 -10003.2,733.8 -10001.9,733.6 z" |
id="path2119" |
inkscape:connector-curvature="0" /> |
<path |
d="m 1079089.1,-4924879.8 -736,-10013 -737.2,-10012.7 -738.3,-10012.6 -739.5,-10012.5 -740.6,-10012.2 -741.9,-10012 -742.9,-10011.8 -744.1,-10011.6 -745.3,-10011.5 -746.4,-10011.3 10011.7,-747 10012.8,-747.4 10014.1,-747.4 10015.2,-747.7 10016.3,-747.9 10017.4,-748.1 10018.7,-748.3 10019.8,-748.4 10020.9,-748.8 10022.2,-748.9 748.4,10022.7 747.2,10023 746.2,10023.2 745,10023.5 743.8,10023.6 742.7,10023.9 741.4,10024 740.3,10024.2 739.2,10024.5 738,10024.7 -10024.3,737.3 -10023,737 -10021.8,736.9 -10020.7,736.7 -10019.6,736.4 -10018.4,736.3 -10017.1,736.1 -10016,735.9 -10014.9,735.7 -10013.6,735.5 z" |
id="path2120" |
inkscape:connector-curvature="0" /> |
<path |
d="m 735976.1,-5000000 -279.7,-7527.4 -375.7,-10099.1 -376.3,-10099.3 -376.9,-10099.4 -377.5,-10099.6 -378.1,-10099.6 -378.7,-10099.7 -379.3,-10099.8 -379.9,-10100 -380.5,-10100.1 -59.4,-1576 2227.6,-168.2 9972.5,-753.2 9973.5,-753.4 9974.7,-753.3 753,9975.3 751.8,9975.5 750.6,9975.6 749.5,9975.7 748.4,9975.9 747.3,9976 746.1,9976.1 744.9,9976.4 743.8,9976.3 742.6,9976.6 -9976,742 -9974.9,741.9 -9973.7,741.8 -5959.7,443.1 z" |
id="path2121" |
inkscape:connector-curvature="0" /> |
<path |
d="m 771860.4,-5002668.9 -742.6,-9976.6 -743.8,-9976.3 -744.9,-9976.4 -746.1,-9976.1 -747.3,-9976 -748.4,-9975.9 -749.5,-9975.7 -750.6,-9975.6 -751.8,-9975.5 -753,-9975.3 9975.8,-753.7 9977,-753.7 9978.1,-753.9 9979.2,-754.1 9980.4,-754.1 9981.5,-754.2 9982.6,-754.5 9983.7,-754.5 9984.9,-754.8 9986,-754.8 754.4,9986.6 753.3,9986.8 752.1,9987 751,9987.1 749.9,9987.2 748.7,9987.4 747.5,9987.6 746.4,9987.7 745.3,9987.8 744.1,9988.1 -9987.5,743.5 -9986.4,743.2 -9985.3,743.2 -9984.1,743 -9983,742.8 -9981.7,742.7 -9980.7,742.6 -9979.5,742.5 -9978.3,742.2 -9977.3,742.2 z" |
id="path2122" |
inkscape:connector-curvature="0" /> |
<path |
d="m 871684.1,-5010096.9 -744.1,-9988.1 -745.3,-9987.8 -746.4,-9987.7 -747.5,-9987.6 -748.7,-9987.4 -749.9,-9987.2 -751,-9987.1 -752.1,-9987 -753.3,-9986.8 -754.4,-9986.6 9987.2,-755.1 9988.2,-755.1 9989.4,-755.4 9990.6,-755.5 9991.6,-755.7 9992.8,-755.9 9994,-755.9 9995.1,-756.2 9996.2,-756.3 9997.4,-756.5 756,9998 754.9,9998.2 753.8,9998.3 752.6,9998.5 751.5,9998.7 750.3,9998.9 749.2,9999.1 748,9999.2 746.9,9999.4 745.7,9999.5 -9999.1,745.1 -9997.9,744.9 -9996.8,744.7 -9995.6,744.6 -9994.4,744.5 -9993.3,744.2 -9992.2,744.1 -9991,744 -9989.9,743.7 -9988.7,743.6 z" |
id="path2123" |
inkscape:connector-curvature="0" /> |
<path |
d="m 971623,-5017540.2 -745.7,-9999.5 -746.9,-9999.4 -748,-9999.2 -749.2,-9999.1 -750.3,-9998.9 -751.5,-9998.7 -752.6,-9998.5 -753.8,-9998.3 -754.9,-9998.2 -756,-9998 9998.5,-756.7 9999.6,-756.9 10000.8,-757 10001.9,-757.3 10003,-757.4 10004.1,-757.6 10005.3,-757.8 10006.4,-757.9 10007.5,-758.2 10008.7,-758.3 757.8,10009.3 756.7,10009.5 755.6,10009.8 754.5,10009.9 753.3,10010 752.1,10010.3 751,10010.5 749.9,10010.7 748.7,10010.8 747.5,10011.1 -10010.6,746.9 -10009.4,746.7 -10008.3,746.5 -10007.1,746.3 -10006,746.2 -10004.8,745.9 -10003.7,745.8 -10002.5,745.6 -10001.4,745.5 -10000.2,745.2 z" |
id="path2124" |
inkscape:connector-curvature="0" /> |
<path |
d="m 1071677,-5025001 -747.5,-10011.1 -748.7,-10010.8 -749.9,-10010.7 -751,-10010.5 -752.1,-10010.3 -753.3,-10010 -754.5,-10009.9 -755.6,-10009.8 -756.7,-10009.5 -757.8,-10009.3 10009.8,-758.6 10011,-758.7 10012,-759 10013.2,-759.1 10014.3,-759.4 10015.5,-759.5 10016.5,-759.6 10017.7,-759.9 10018.9,-760.2 10020,-760.3 759.9,10020.6 758.8,10020.9 757.6,10021.1 756.4,10021.3 755.3,10021.5 754.2,10021.7 753,10021.9 752,10022.2 750.7,10022.3 749.7,10022.6 -10022.2,748.9 -10020.9,748.8 -10019.8,748.4 -10018.7,748.3 -10017.4,748.1 -10016.3,747.9 -10015.2,747.7 -10014.1,747.4 -10012.8,747.4 -10011.7,747 z" |
id="path2125" |
inkscape:connector-curvature="0" /> |
<path |
d="m 732233.9,-5100000.1 -321.6,-8524.2 -381.6,-10100.3 -382.2,-10100.4 -382.8,-10100.6 -383.4,-10100.7 -384,-10100.9 -384.6,-10100.9 -385.1,-10101 -385.7,-10101.1 -386.3,-10101.3 -21.8,-568.6 8410.4,-644.7 9972.3,-764.6 9973.4,-764.7 764.1,9974 763.1,9974 762,9974.3 760.8,9974.4 759.8,9974.5 758.5,9974.7 757.5,9974.7 756.3,9974.9 755.2,9975.1 754.1,9975.2 -9974.7,753.3 -9973.5,753.4 -9972.5,753.2 -2227.6,168.2 z" |
id="path2126" |
inkscape:connector-curvature="0" /> |
<path |
d="m 764382.2,-5102428.2 -754.1,-9975.2 -755.2,-9975.1 -756.3,-9974.9 -757.5,-9974.7 -758.5,-9974.7 -759.8,-9974.5 -760.8,-9974.4 -762,-9974.3 -763.1,-9974 -764.1,-9974 9974.5,-764.9 9975.6,-764.9 9976.7,-765.1 9977.8,-765.3 9978.9,-765.4 9980,-765.6 9981.2,-765.7 9982.3,-765.8 9983.4,-766 9984.5,-766.1 765.7,9985.1 764.5,9985.3 763.4,9985.5 762.3,9985.6 761.1,9985.7 760.1,9985.9 758.9,9986.1 757.8,9986.2 756.7,9986.3 755.5,9986.6 -9986,754.8 -9984.9,754.8 -9983.7,754.5 -9982.6,754.5 -9981.5,754.2 -9980.4,754.1 -9979.2,754.1 -9978.1,753.9 -9977,753.7 -9975.8,753.7 z" |
id="path2127" |
inkscape:connector-curvature="0" /> |
<path |
d="m 864191.5,-5109970.4 -755.5,-9986.6 -756.7,-9986.3 -757.8,-9986.2 -758.9,-9986.1 -760.1,-9985.9 -761.1,-9985.7 -762.3,-9985.6 -763.4,-9985.5 -764.5,-9985.3 -765.7,-9985.1 9985.6,-766.3 9986.7,-766.4 9987.8,-766.6 9989,-766.7 9990,-766.9 9991.2,-767 9992.3,-767.2 9993.4,-767.5 9994.5,-767.5 9995.7,-767.7 767.3,9996.3 766.1,9996.4 765,9996.6 763.9,9996.9 762.8,9996.9 761.7,9997.2 760.5,9997.2 759.4,9997.5 758.3,9997.7 757.2,9997.8 -9997.4,756.5 -9996.2,756.3 -9995.1,756.2 -9994,755.9 -9992.8,755.9 -9991.6,755.7 -9990.6,755.5 -9989.4,755.4 -9988.2,755.1 -9987.2,755.1 z" |
id="path2128" |
inkscape:connector-curvature="0" /> |
<path |
d="m 964114,-5117528 -757.2,-9997.8 -758.3,-9997.7 -759.4,-9997.5 -760.5,-9997.2 -761.7,-9997.2 -762.8,-9996.9 -763.9,-9996.9 -765,-9996.6 -766.1,-9996.4 -767.3,-9996.3 9996.8,-768 9997.8,-768.1 9999,-768.2 10000.1,-768.4 10001.2,-768.7 10002.3,-768.7 10003.5,-769 10004.5,-769.2 10005.6,-769.3 10006.8,-769.5 769.1,10007.4 768,10007.6 766.9,10007.8 765.7,10008 764.7,10008.1 763.5,10008.4 762.4,10008.6 761.3,10008.8 760.1,10008.9 759,10009.2 -10008.7,758.3 -10007.5,758.2 -10006.4,757.9 -10005.3,757.8 -10004.1,757.6 -10003,757.4 -10001.9,757.3 -10000.8,757 -9999.6,756.9 -9998.5,756.7 z" |
id="path2129" |
inkscape:connector-curvature="0" /> |
<path |
d="m 1064149.7,-5125102.9 -759,-10009.2 -760.1,-10008.9 -761.3,-10008.8 -762.4,-10008.6 -763.5,-10008.4 -764.7,-10008.1 -765.7,-10008 -766.9,-10007.8 -768,-10007.6 -769.1,-10007.4 10007.9,-769.8 10009,-769.9 10010.1,-770.2 10011.2,-770.3 10012.3,-770.5 10013.4,-770.7 10014.5,-770.9 10015.7,-771.1 10016.7,-771.4 10017.9,-771.5 771.2,10018.5 770,10018.7 768.9,10019 767.8,10019.2 766.6,10019.4 765.6,10019.6 764.3,10019.8 763.3,10020 762.1,10020.3 761,10020.5 -10020,760.3 -10018.9,760.2 -10017.7,759.9 -10016.5,759.6 -10015.5,759.5 -10014.3,759.4 -10013.2,759.1 -10012,759 -10011,758.7 -10009.8,758.6 z" |
id="path2130" |
inkscape:connector-curvature="0" /> |
<path |
d="m 728434.7,-5200000 -365.1,-9532.8 -387.5,-10101.5 -388,-10101.6 -388.6,-10101.7 -389.2,-10101.8 -389.8,-10102 -390.3,-10102.2 -390.9,-10102.2 -391.5,-10102.3 -374.5,-9651.8 4565.6,-355.2 9970.9,-775.6 9972,-775.7 775.2,9972.7 774.2,9972.7 773.1,9972.9 772,9973.1 770.9,9973.2 769.7,9973.3 768.7,9973.4 767.5,9973.6 766.5,9973.6 765.3,9973.9 -9973.4,764.7 -9972.3,764.6 -8410.4,644.7 z" |
id="path2131" |
inkscape:connector-curvature="0" /> |
<path |
d="m 756790.7,-5202174 -765.3,-9973.9 -766.5,-9973.6 -767.5,-9973.6 -768.7,-9973.4 -769.7,-9973.3 -770.9,-9973.2 -772,-9973.1 -773.1,-9972.9 -774.2,-9972.7 -775.2,-9972.7 9973.2,-775.9 9974.2,-775.9 9975.3,-776.2 9976.5,-776.3 9977.5,-776.4 9978.6,-776.6 9979.7,-776.7 9980.8,-776.9 9981.9,-777 9983,-777.1 776.7,9983.5 775.6,9983.8 774.5,9984 773.4,9984.1 772.3,9984.1 771.2,9984.4 770.1,9984.6 768.9,9984.7 767.9,9984.9 766.7,9985 -9984.5,766.1 -9983.4,766 -9982.3,765.8 -9981.2,765.7 -9980,765.6 -9978.9,765.4 -9977.8,765.3 -9976.7,765.1 -9975.6,764.9 -9974.5,764.9 z" |
id="path2132" |
inkscape:connector-curvature="0" /> |
<path |
d="m 856585.5,-5209828.6 -766.7,-9985 -767.9,-9984.9 -768.9,-9984.7 -770.1,-9984.6 -771.2,-9984.4 -772.3,-9984.1 -773.4,-9984.1 -774.5,-9984 -775.6,-9983.8 -776.7,-9983.5 9984.1,-777.3 9985.2,-777.5 9986.3,-777.6 9987.3,-777.8 9988.5,-777.9 9989.5,-778.1 9990.7,-778.3 9991.7,-778.4 9992.8,-778.5 9993.9,-778.8 778.3,9994.6 777.2,9994.7 776.1,9994.9 775,9995 773.9,9995.3 772.8,9995.4 771.7,9995.5 770.6,9995.8 769.5,9995.9 768.4,9996.1 -9995.7,767.7 -9994.5,767.5 -9993.4,767.5 -9992.3,767.2 -9991.2,767 -9990,766.9 -9989,766.7 -9987.8,766.6 -9986.7,766.4 -9985.6,766.3 z" |
id="path2133" |
inkscape:connector-curvature="0" /> |
<path |
d="m 956491.7,-5217498.5 -768.4,-9996.1 -769.5,-9995.9 -770.6,-9995.8 -771.7,-9995.5 -772.8,-9995.4 -773.9,-9995.3 -775,-9995 -776.1,-9994.9 -777.2,-9994.7 -778.3,-9994.6 9995,-778.9 9996.1,-779.2 9997.2,-779.3 9998.4,-779.4 9999.3,-779.7 10000.5,-779.8 10001.6,-780 10002.7,-780.2 10003.8,-780.3 10004.9,-780.6 780.1,10005.4 779.1,10005.7 778,10005.9 776.9,10006.1 775.7,10006.2 774.7,10006.4 773.5,10006.7 772.5,10006.8 771.3,10007.1 770.2,10007.2 -10006.8,769.5 -10005.6,769.3 -10004.5,769.2 -10003.5,769 -10002.3,768.7 -10001.2,768.7 -10000.1,768.4 -9999,768.2 -9997.8,768.1 -9996.8,768 z" |
id="path2134" |
inkscape:connector-curvature="0" /> |
<path |
d="m 1056509.3,-5225185.7 -770.2,-10007.2 -771.3,-10007.1 -772.5,-10006.8 -773.5,-10006.7 -774.7,-10006.4 -775.7,-10006.2 -776.9,-10006.1 -778,-10005.9 -779.1,-10005.7 -780.1,-10005.4 10006,-780.8 10007,-781 10008.2,-781.1 10009.2,-781.3 10010.3,-781.6 10011.4,-781.8 10012.5,-781.9 10013.6,-782.1 10014.7,-782.5 10015.8,-782.6 782.2,10016.5 781,10016.6 779.9,10016.8 778.8,10017.1 777.7,10017.3 776.7,10017.4 775.5,10017.7 774.5,10017.9 773.3,10018.1 772.2,10018.4 -10017.9,771.5 -10016.7,771.4 -10015.7,771.1 -10014.5,770.9 -10013.4,770.7 -10012.3,770.5 -10011.2,770.3 -10010.1,770.2 -10009,769.9 -10007.9,769.8 z" |
id="path2135" |
inkscape:connector-curvature="0" /> |
<path |
d="m -141156,-5433394.7 45275.5,3479.6 54981.6,4372.1 -7976,100011.5 -55140.1,-4290.2 -44845.9,-3338.3 0,0 7705,-100234.6 z" |
id="path2136" |
inkscape:connector-curvature="0" /> |
<path |
d="m -40898.9,-5425543.1 48007.8,3834 51842.4,4031.8 -7866.1,100194 -54608,-4518.2 -45352,-3530.1 7976,-100011.5 z" |
id="path2137" |
inkscape:connector-curvature="0" /> |
<path |
d="m 58951.2,-5417677.3 59933.4,4722.9 40007.9,3203.2 -7917.7,99800.4 -46122.6,-3284.9 -53767,-4247.6 7866.1,-100194 z" |
id="path2138" |
inkscape:connector-curvature="0" /> |
<path |
d="m 158892.5,-5409751.2 43258.1,3396.9 36956.4,3077.9 19502.6,1490.9 -7797.3,99780.8 -34326.7,-2506.6 -30174.3,-2485.1 -35336.4,-2954.4 7917.7,-99800.4 z" |
id="path2139" |
inkscape:connector-curvature="0" /> |
<path |
d="m 258609.5,-5401785.5 20728.5,1470.9 -3920.4,100242 -24605.3,-1932.1 7797.3,-99780.8 z" |
id="path2140" |
inkscape:connector-curvature="0" /> |
<path |
d="m 279541.5,-5400306.6 20370.7,148.6 -231,100053.1 -24275.5,339.8 4135.8,-100541.4 z" |
id="path2141" |
inkscape:connector-curvature="0" /> |
<path |
d="m 299912.2,-5400158 44391.5,178.1 55566.7,-269.7 88.6,99979.9 -46803.6,-76.5 -28398.9,439.9 -25075.3,-198.7 0,0 231,-100053.1 z" |
id="path2142" |
inkscape:connector-curvature="0" /> |
<path |
d="m 400073.7,-5400245.9 42108.5,-22.3 57758.1,-9.2 -1.1,100258.2 -58367.7,-295.3 -41612.6,44.8 114.8,-99976.2 z" |
id="path2143" |
inkscape:connector-curvature="0" /> |
<path |
d="m 499940.3,-5400277.4 100070,29.9 -90.8,99979.9 -99980.3,555.9 1.1,-100565.7 z" |
id="path2144" |
inkscape:connector-curvature="0" /> |
<path |
d="m 599806.9,-5400243.8 54337.5,-0.9 45824,91 21.8,100060.2 -54286.7,391.6 -45784,-565.7 -112.6,-99976.2 z" |
id="path2145" |
inkscape:connector-curvature="0" /> |
<path |
d="m 699968.4,-5400153.7 20574.1,-156.2 3918.3,100242 -24667.1,289 174.6,-100374.8 z" |
id="path2146" |
inkscape:connector-curvature="0" /> |
<path |
d="m 720542.5,-5400309.9 20525,-1461.7 7998.6,99772.1 -24410.2,1616.1 -4113.5,-99926.5 z" |
id="path2147" |
inkscape:connector-curvature="0" /> |
<path |
d="m 741067.6,-5401771.6 46510,-3736.9 53410.6,-4235.4 7708.7,99813 -55191.1,4304.1 -44439.5,3627.4 -7998.6,-99772.1 z" |
id="path2148" |
inkscape:connector-curvature="0" /> |
<path |
d="m 840988.2,-5409743.9 99738.1,-7907.9 7860.3,100194.1 -99889.7,7526.7 0,0 -7708.7,-99813 z" |
id="path2149" |
inkscape:connector-curvature="0" /> |
<path |
d="m 940726.3,-5417651.8 100053.4,-7879.7 7767,100031.3 -99960.1,8042.6 -7860.3,-100194.1 z" |
id="path2150" |
inkscape:connector-curvature="0" /> |
<path |
d="m 1040779.7,-5425531.5 49089.6,-3743.2 50964.3,-4082.8 7906,100211.1 -50844.1,3964.8 -49171.2,3354.3 -7944.5,-99704.3 z" |
id="path2151" |
inkscape:connector-curvature="0" /> |
<path |
d="m -140984.9,-5433218.6 794.1,-10014.1 795.1,-10014 796.2,-10013.6 797.3,-10013.5 798.3,-10013.2 799.4,-10013.1 800.5,-10012.8 801.5,-10012.6 802.6,-10012.4 803.5,-10012.2 10011.6,804 10010.5,803.9 10009.5,803.6 10008.4,803.4 10007.3,803.2 10006.3,803.1 10005.2,802.8 10004.2,802.6 10003.2,802.4 10002.1,802.2 -801.6,10001.7 -800.6,10001.8 -799.5,10002 -798.5,10002.2 -797.4,10002.5 -796.3,10002.6 -795.2,10002.8 -794.2,10003 -793.1,10003.2 -792,10003.4 -10004,-791.6 -10005.1,-791.8 -10006.2,-792 -10007.3,-792.2 -10008.3,-792.4 -10009.4,-792.6 -10010.4,-792.7 -10011.5,-793 -10012.6,-793.2 -10013.7,-793.5 z" |
id="path2152" |
inkscape:connector-curvature="0" /> |
<path |
d="m -40896.4,-5425293.6 792,-10003.4 793.1,-10003.2 794.2,-10003 795.2,-10002.8 796.3,-10002.6 797.4,-10002.5 798.5,-10002.2 799.5,-10002 800.6,-10001.8 801.6,-10001.7 10001.1,802.1 9999.9,801.8 9999,801.8 9997.9,801.4 9996.8,801.4 9995.8,801.1 9994.7,800.9 9993.7,800.8 9992.6,800.5 9991.6,800.4 -799.8,9991.2 -798.7,9991.3 -797.7,9991.4 -796.6,9991.6 -795.6,9991.8 -794.5,9992 -793.4,9992.1 -792.4,9992.4 -791.3,9992.5 -790.2,9992.6 -9993.3,-789.8 -9994.3,-789.9 -9995.4,-790.1 -9996.5,-790.3 -9997.6,-790.6 -9998.6,-790.6 -9999.8,-790.9 -10000.8,-791 -10001.9,-791.2 -10002.9,-791.4 z" |
id="path2153" |
inkscape:connector-curvature="0" /> |
<path |
d="m 59084.7,-5417387.8 790.2,-9992.6 791.3,-9992.5 792.4,-9992.4 793.4,-9992.1 794.5,-9992 795.6,-9991.8 796.6,-9991.6 797.7,-9991.4 798.7,-9991.3 799.8,-9991.2 9990.5,800.3 9989.5,800.1 9988.4,799.9 9987.3,799.7 9986.3,799.6 9985.3,799.4 9984.2,799.3 9983.1,799 9982.1,799 9981.1,798.8 -798.3,9980.6 -797.1,9980.7 -796.1,9980.8 -795,9981 -794,9981.2 -792.9,9981.3 -791.9,9981.4 -790.7,9981.6 -789.7,9981.8 -788.6,9981.9 -9982.5,-788.1 -9983.7,-788.3 -9984.7,-788.5 -9985.8,-788.5 -9986.8,-788.9 -9987.9,-788.9 -9989,-789.1 -9990.1,-789.3 -9991.1,-789.4 -9992.2,-789.6 z" |
id="path2154" |
inkscape:connector-curvature="0" /> |
<path |
d="m 158958.4,-5409499.1 788.6,-9981.9 789.7,-9981.8 790.7,-9981.6 791.9,-9981.4 792.9,-9981.3 794,-9981.2 795,-9981 796.1,-9980.8 797.1,-9980.7 798.3,-9980.6 9979.9,798.7 9979,798.5 9977.8,798.4 9976.8,798.2 9975.8,798 9974.7,797.9 9973.6,797.8 9972.6,797.7 9971.5,797.5 9970.5,797.4 -796.8,9970 -795.8,9970.1 -794.7,9970.3 -793.6,9970.3 -792.6,9970.6 -791.5,9970.6 -790.4,9970.8 -789.3,9970.9 -788.3,9971.1 -787.2,9971.2 -9971.7,-786.7 -9972.9,-786.9 -9973.9,-786.9 -9975.1,-787.2 -9976,-787.2 -9977.2,-787.4 -9978.2,-787.6 -9979.4,-787.7 -9980.4,-787.8 -9981.5,-788 z" |
id="path2155" |
inkscape:connector-curvature="0" /> |
<path |
d="m 283296.5,-5500000 -302.4,7580.9 -402.7,10104.8 -402.1,10104.5 -401.6,10104.4 -401,10104.3 -400.5,10104.2 -399.9,10104.1 -399.4,10103.9 -398.8,10103.8 -398.2,10103.7 -58.3,1481.4 -666.4,-52.6 -9969.7,-786.4 -9970.7,-786.7 787.2,-9971.2 788.3,-9971.1 789.3,-9970.9 790.4,-9970.8 791.5,-9970.6 792.6,-9970.6 793.6,-9970.3 794.7,-9970.3 795.8,-9970.1 796.8,-9970 9969.4,797.2 6682.3,534.4 z" |
id="path2156" |
inkscape:connector-curvature="0" /> |
<path |
d="m -132996.4,-5533350 804.7,-10012 805.7,-10011.7 806.8,-10011.6 807.8,-10011.3 808.8,-10011.1 810,-10011 810.9,-10010.8 812,-10010.4 813,-10010.4 814,-10010.1 10009.5,814.5 10008.5,814.2 10007.4,814 10006.4,813.8 10005.3,813.7 10004.3,813.4 10003.3,813.2 10002.3,813.1 10001.2,812.8 10000.2,812.6 -812,9999.8 -811,10000 -810,10000.1 -809,10000.3 -807.8,10000.6 -806.9,10000.7 -805.8,10001 -804.8,10001.1 -803.7,10001.2 -802.7,10001.5 -10002.1,-802.2 -10003.2,-802.4 -10004.2,-802.6 -10005.2,-802.8 -10006.3,-803.1 -10007.3,-803.2 -10008.4,-803.4 -10009.5,-803.6 -10010.5,-803.9 -10011.6,-804 z" |
id="path2157" |
inkscape:connector-curvature="0" /> |
<path |
d="m -32928.1,-5525318.9 802.7,-10001.5 803.7,-10001.2 804.8,-10001.1 805.8,-10001 806.9,-10000.7 807.8,-10000.6 809,-10000.3 810,-10000.1 811,-10000 812,-9999.8 9999.2,812.5 9998.1,812.3 9997.1,812.1 9996,811.9 9995,811.7 9994,811.5 9992.9,811.3 9991.9,811.3 9990.9,811 9989.9,810.9 -810.2,9989.4 -809.2,9989.6 -808.2,9989.8 -807.1,9990 -806.1,9990.1 -805,9990.2 -804,9990.4 -803,9990.7 -801.9,9990.8 -800.9,9990.9 -9991.6,-800.4 -9992.6,-800.5 -9993.7,-800.8 -9994.7,-800.9 -9995.8,-801.1 -9996.8,-801.4 -9997.9,-801.4 -9999,-801.8 -9999.9,-801.8 -10001.1,-802.1 z" |
id="path2158" |
inkscape:connector-curvature="0" /> |
<path |
d="m 67034.9,-5517306.7 800.9,-9990.9 801.9,-9990.8 803,-9990.7 804,-9990.4 805,-9990.2 806.1,-9990.1 807.1,-9990 808.2,-9989.8 809.2,-9989.6 810.2,-9989.4 9988.8,810.6 9987.8,810.5 9986.8,810.3 9985.7,810.2 9984.7,810 9983.7,809.9 9982.6,809.7 9981.6,809.6 9980.5,809.4 9979.5,809.2 -808.6,9979.1 -807.7,9979.2 -806.6,9979.3 -805.5,9979.5 -804.5,9979.7 -803.4,9979.8 -802.3,9980 -801.4,9980.1 -800.2,9980.2 -799.2,9980.4 -9981.1,-798.8 -9982.1,-799 -9983.1,-799 -9984.2,-799.3 -9985.3,-799.4 -9986.3,-799.6 -9987.3,-799.7 -9988.4,-799.9 -9989.5,-800.1 -9990.5,-800.3 z" |
id="path2159" |
inkscape:connector-curvature="0" /> |
<path |
d="m 166892.7,-5509311.7 799.2,-9980.4 800.2,-9980.2 801.4,-9980.1 802.3,-9980 803.4,-9979.8 804.5,-9979.7 805.5,-9979.5 806.6,-9979.3 807.7,-9979.2 808.6,-9979.1 9978.5,809.1 9977.4,809 9976.4,808.8 9975.4,808.6 9974.3,808.5 9973.3,808.3 9972.3,808.2 9971.2,808.2 9970.2,808 9969.2,807.8 -807.3,9968.7 -806.2,9968.9 -805.2,9968.9 -804.2,9969.1 -803,9969.3 -802.1,9969.3 -801,9969.5 -799.9,9969.6 -798.9,9969.7 -797.9,9969.9 -9970.5,-797.4 -9971.5,-797.5 -9972.6,-797.7 -9973.6,-797.8 -9974.7,-797.9 -9975.8,-798 -9976.8,-798.2 -9977.8,-798.4 -9979,-798.5 -9979.9,-798.7 z" |
id="path2160" |
inkscape:connector-curvature="0" /> |
<path |
d="m 287314.9,-5600000 -263.9,6528.2 -408.1,10105.8 -407.6,10105.7 -407.1,10105.6 -406.5,10105.5 -406,10105.3 -405.4,10105.2 -404.9,10105.1 -404.3,10105 -403.8,10104.9 -100.8,2523.8 -6682.3,-534.4 -9969.4,-797.2 797.9,-9969.9 798.9,-9969.7 799.9,-9969.6 801,-9969.5 802.1,-9969.3 803,-9969.3 804.2,-9969.1 805.2,-9968.9 806.2,-9968.9 807.3,-9968.7 9968.2,807.8 2676.2,216.8 z" |
id="path2161" |
inkscape:connector-curvature="0" /> |
<path |
d="m -124902.8,-5633460.5 815,-10009.8 816.2,-10009.7 817.1,-10009.5 818.2,-10009.2 819.2,-10009 820.2,-10008.8 821.2,-10008.7 822.2,-10008.4 823.3,-10008.2 824.3,-10008 10007.4,824.7 10006.4,824.5 10005.4,824.3 10004.4,824 10003.3,823.9 10002.3,823.6 10001.3,823.4 10000.2,823.3 9999.4,823 9998.2,823 -822.3,9997.8 -821.2,9998.1 -820.2,9998.3 -819.2,9998.4 -818.2,9998.6 -817.2,9998.8 -816.2,9999.1 -815.1,9999.2 -814.1,9999.3 -813.1,9999.6 -10000.2,-812.6 -10001.2,-812.8 -10002.3,-813.1 -10003.3,-813.2 -10004.3,-813.4 -10005.3,-813.7 -10006.4,-813.8 -10007.4,-814 -10008.5,-814.2 -10009.5,-814.5 z" |
id="path2162" |
inkscape:connector-curvature="0" /> |
<path |
d="m -24854.5,-5625325.1 813.1,-9999.6 814.1,-9999.3 815.1,-9999.2 816.2,-9999.1 817.2,-9998.8 818.2,-9998.6 819.2,-9998.4 820.2,-9998.3 821.2,-9998.1 822.3,-9997.8 9997.3,822.6 9996.2,822.5 9995.3,822.4 9994.2,822.1 9993.2,822 9992.2,821.7 9991.2,821.6 9990.2,821.4 9989.1,821.2 9988.2,821.1 -820.5,9987.7 -819.5,9988 -818.4,9988 -817.4,9988.3 -816.4,9988.4 -815.4,9988.6 -814.4,9988.7 -813.3,9988.9 -812.3,9989.1 -811.3,9989.3 -9989.9,-810.9 -9990.9,-811 -9991.9,-811.3 -9992.9,-811.3 -9994,-811.5 -9995,-811.7 -9996,-811.9 -9997.1,-812.1 -9998.1,-812.3 -9999.2,-812.5 z" |
id="path2163" |
inkscape:connector-curvature="0" /> |
<path |
d="m 75090.5,-5617208.6 811.3,-9989.3 812.3,-9989.1 813.3,-9988.9 814.4,-9988.7 815.4,-9988.6 816.4,-9988.4 817.4,-9988.3 818.4,-9988 819.5,-9988 820.5,-9987.7 9987.2,820.9 9986.1,820.7 9985.2,820.6 9984.1,820.4 9983.1,820.3 9982.1,820.1 9981.1,820 9980.1,819.7 9979,819.6 9978,819.6 -818.9,9977.5 -817.9,9977.7 -816.9,9977.9 -815.9,9978 -814.8,9978.1 -813.8,9978.3 -812.8,9978.5 -811.7,9978.6 -810.7,9978.7 -809.6,9978.9 -9979.5,-809.2 -9980.5,-809.4 -9981.6,-809.6 -9982.6,-809.7 -9983.7,-809.9 -9984.7,-810 -9985.7,-810.2 -9986.8,-810.3 -9987.8,-810.5 -9988.8,-810.6 z" |
id="path2164" |
inkscape:connector-curvature="0" /> |
<path |
d="m 174932.3,-5609109.2 809.6,-9978.9 810.7,-9978.7 811.7,-9978.6 812.8,-9978.5 813.8,-9978.3 814.8,-9978.1 815.9,-9978 816.9,-9977.9 817.9,-9977.7 818.9,-9977.5 9977,819.2 9976,819.3 9975,819 9974,818.9 9972.9,818.8 9972,818.6 9970.8,818.6 9970,818.3 9968.9,818.2 9967.9,818.1 -817.5,9967.4 -816.6,9967.6 -815.5,9967.7 -814.4,9967.9 -813.5,9967.9 -812.4,9968 -811.4,9968.2 -810.4,9968.3 -809.3,9968.5 -808.3,9968.5 -9969.2,-807.8 -9970.2,-808 -9971.2,-808.2 -9972.3,-808.2 -9973.3,-808.3 -9974.3,-808.5 -9975.4,-808.6 -9976.4,-808.8 -9977.4,-809 -9978.5,-809.1 z" |
id="path2165" |
inkscape:connector-curvature="0" /> |
<path |
d="m 291385.6,-5700000 -223.7,5463.7 -413.5,10106.9 -413,10106.8 -412.4,10106.7 -411.9,10106.6 -411.4,10106.5 -410.8,10106.4 -410.3,10106.3 -409.8,10106.1 -409.2,10106 -144.8,3577.9 -2676.2,-216.8 -9968.2,-807.8 808.3,-9968.5 809.3,-9968.5 810.4,-9968.3 811.4,-9968.2 812.4,-9968 813.5,-9967.9 814.4,-9967.9 815.5,-9967.7 816.6,-9967.6 817.5,-9967.4 8585.8,704.7 z" |
id="path2166" |
inkscape:connector-curvature="0" /> |
<path |
d="m -116706,-5733549.8 825.3,-10007.7 826.2,-10007.5 827.3,-10007.4 828.3,-10007.2 829.3,-10007 830.3,-10006.7 831.3,-10006.5 832.3,-10006.3 833.3,-10006.2 834.3,-10005.9 10005.3,834.7 10004.3,834.4 10003.3,834.2 10002.4,834.1 10001.3,833.9 10000.4,833.6 9999.3,833.5 9998.3,833.2 9997.4,833.1 9996.4,832.9 -832.3,9995.9 -831.3,9996.2 -830.3,9996.4 -829.3,9996.5 -828.3,9996.7 -827.3,9997 -826.3,9997.1 -825.3,9997.3 -824.3,9997.5 -823.3,9997.7 -9998.2,-823 -9999.4,-823 -10000.2,-823.3 -10001.3,-823.4 -10002.3,-823.6 -10003.3,-823.9 -10004.4,-824 -10005.4,-824.3 -10006.4,-824.5 -10007.4,-824.7 z" |
id="path2167" |
inkscape:connector-curvature="0" /> |
<path |
d="m -16677.7,-5725312.2 823.3,-9997.7 824.3,-9997.5 825.3,-9997.3 826.3,-9997.1 827.3,-9997 828.3,-9996.7 829.3,-9996.5 830.3,-9996.4 831.3,-9996.2 832.3,-9995.9 9995.4,832.7 9994.4,832.5 9993.4,832.3 9992.4,832.2 9991.4,831.9 9990.4,831.9 9989.4,831.5 9988.5,831.4 9987.5,831.3 9986.5,831.1 -830.5,9986.1 -829.5,9986.2 -828.5,9986.3 -827.5,9986.7 -826.5,9986.7 -825.5,9986.9 -824.5,9987 -823.5,9987.2 -822.5,9987.4 -821.5,9987.6 -9988.2,-821.1 -9989.1,-821.2 -9990.2,-821.4 -9991.2,-821.6 -9992.2,-821.7 -9993.2,-822 -9994.2,-822.1 -9995.3,-822.4 -9996.2,-822.5 -9997.3,-822.6 z" |
id="path2168" |
inkscape:connector-curvature="0" /> |
<path |
d="m 83249.5,-5717093.6 821.5,-9987.6 822.5,-9987.4 823.5,-9987.2 824.5,-9987 825.5,-9986.9 826.5,-9986.7 827.5,-9986.7 828.5,-9986.3 829.5,-9986.2 830.5,-9986.1 9985.5,830.9 9984.5,830.7 9983.5,830.6 9982.5,830.5 9981.5,830.2 9980.5,830.2 9979.5,829.9 9978.5,829.9 9977.5,829.7 9976.5,829.5 -829,9976.1 -827.9,9976.3 -827,9976.5 -825.9,9976.6 -825,9976.6 -824,9977 -822.9,9976.9 -821.9,9977.1 -821,9977.3 -819.9,9977.4 -9978,-819.6 -9979,-819.6 -9980.1,-819.7 -9981.1,-820 -9982.1,-820.1 -9983.1,-820.3 -9984.1,-820.4 -9985.2,-820.6 -9986.1,-820.7 -9987.2,-820.9 z" |
id="path2169" |
inkscape:connector-curvature="0" /> |
<path |
d="m 183075.3,-5708891.7 819.9,-9977.4 821,-9977.3 821.9,-9977.1 822.9,-9976.9 824,-9977 825,-9976.6 825.9,-9976.6 827,-9976.5 827.9,-9976.3 829,-9976.1 9975.6,829.3 9974.5,829.2 9973.5,829.1 9972.6,828.9 9971.5,828.9 9970.6,828.6 9969.6,828.5 9968.6,828.4 9967.6,828.3 9966.6,828.1 -827.6,9966.2 -826.6,9966.3 -825.6,9966.4 -824.6,9966.5 -823.6,9966.7 -822.6,9966.8 -821.6,9966.9 -820.6,9967.1 -819.6,9967.1 -818.5,9967.3 -9967.9,-818.1 -9968.9,-818.2 -9970,-818.3 -9970.8,-818.6 -9972,-818.6 -9972.9,-818.8 -9974,-818.9 -9975,-819 -9976,-819.3 -9977,-819.2 z" |
id="path2170" |
inkscape:connector-curvature="0" /> |
<path |
d="m 295507.6,-5800000 -181.9,4387.8 -418.7,10108.1 -418.2,10108 -417.7,10107.9 -417.2,10107.8 -416.6,10107.6 -416.1,10107.5 -415.6,10107.4 -415.1,10107.3 -414.5,10107.3 -190.3,4643.4 -8585.8,-704.7 818.5,-9967.3 819.6,-9967.1 820.6,-9967.1 821.6,-9966.9 822.6,-9966.8 823.6,-9966.7 824.6,-9966.5 825.6,-9966.4 826.6,-9966.3 827.6,-9966.2 4476.9,372.1 z" |
id="path2171" |
inkscape:connector-curvature="0" /> |
<path |
d="m -108408.1,-5833618.2 835.3,-10005.7 836.2,-10005.5 837.3,-10005.3 838.2,-10005 839.2,-10004.9 840.1,-10004.6 841.2,-10004.5 842.1,-10004.3 843.1,-10004 844.1,-10003.8 10003.2,844.4 10002.2,844.3 10001.3,844 10000.3,843.8 9999.4,843.7 9998.4,843.5 9997.4,843.2 9996.5,843.1 9995.5,842.8 9994.5,842.7 -842.1,9994.2 -841.1,9994.3 -840.2,9994.4 -839.2,9994.8 -838.2,9994.8 -837.2,9995 -836.2,9995.3 -835.3,9995.4 -834.3,9995.7 -833.3,9995.8 -9996.4,-832.9 -9997.4,-833.1 -9998.3,-833.2 -9999.3,-833.5 -10000.4,-833.6 -10001.3,-833.9 -10002.4,-834.1 -10003.3,-834.2 -10004.3,-834.4 -10005.3,-834.7 z" |
id="path2172" |
inkscape:connector-curvature="0" /> |
<path |
d="m -8399.7,-5825280.5 833.3,-9995.8 834.3,-9995.7 835.3,-9995.4 836.2,-9995.3 837.2,-9995 838.2,-9994.8 839.2,-9994.8 840.2,-9994.4 841.1,-9994.3 842.1,-9994.2 9993.6,842.5 9992.6,842.3 9991.6,842.1 9990.6,842 9989.7,841.8 9988.7,841.6 9987.7,841.5 9986.8,841.3 9985.7,841 9984.8,840.9 -840.3,9984.4 -839.4,9984.6 -838.4,9984.7 -837.4,9984.9 -836.4,9985.1 -835.5,9985.2 -834.5,9985.4 -833.5,9985.6 -832.5,9985.7 -831.5,9985.9 -9986.5,-831.1 -9987.5,-831.3 -9988.5,-831.4 -9989.4,-831.5 -9990.4,-831.9 -9991.4,-831.9 -9992.4,-832.2 -9993.4,-832.3 -9994.4,-832.5 -9995.4,-832.7 z" |
id="path2173" |
inkscape:connector-curvature="0" /> |
<path |
d="m 91509.7,-5816961.7 831.5,-9985.9 832.5,-9985.7 833.5,-9985.6 834.5,-9985.4 835.5,-9985.2 836.4,-9985.1 837.4,-9984.9 838.4,-9984.7 839.4,-9984.6 840.3,-9984.4 9983.8,840.7 9982.9,840.6 9981.9,840.4 9981,840.2 9979.9,840.1 9979,839.9 9978.1,839.8 9977,839.7 9976.1,839.5 9975.1,839.3 -838.8,9974.7 -837.8,9974.8 -836.8,9974.9 -835.9,9975.2 -834.9,9975.2 -833.9,9975.4 -833,9975.6 -831.9,9975.7 -830.9,9975.9 -830,9976 -9976.5,-829.5 -9977.5,-829.7 -9978.5,-829.9 -9979.5,-829.9 -9980.5,-830.2 -9981.5,-830.2 -9982.5,-830.5 -9983.5,-830.6 -9984.5,-830.7 -9985.5,-830.9 z" |
id="path2174" |
inkscape:connector-curvature="0" /> |
<path |
d="m 191319.8,-5808659.5 830,-9976 830.9,-9975.9 831.9,-9975.7 833,-9975.6 833.9,-9975.4 834.9,-9975.2 835.9,-9975.2 836.8,-9974.9 837.8,-9974.8 838.8,-9974.7 9974.1,839.2 9973.1,839.1 9972.2,838.9 9971.2,838.9 9970.2,838.6 9969.3,838.5 9968.2,838.4 9967.3,838.3 9966.3,838.1 9965.3,838 -837.4,9964.9 -836.5,9965 -835.5,9965.2 -834.5,9965.3 -833.6,9965.4 -832.5,9965.6 -831.6,9965.6 -830.6,9965.8 -829.6,9965.9 -828.6,9966.1 -9966.6,-828.1 -9967.6,-828.3 -9968.6,-828.4 -9969.6,-828.5 -9970.6,-828.6 -9971.5,-828.9 -9972.6,-828.9 -9973.5,-829.1 -9974.5,-829.2 -9975.6,-829.3 z" |
id="path2175" |
inkscape:connector-curvature="0" /> |
<path |
d="m 299679.9,-5900000 -138.4,3300.5 -423.9,10109.2 -423.4,10109.1 -422.9,10109 -422.3,10108.9 -421.8,10108.8 -421.3,10108.7 -420.8,10108.5 -420.3,10108.5 -419.8,10108.3 -237.4,5720.4 -4476.9,-372.1 828.6,-9966.1 829.6,-9965.9 830.6,-9965.8 831.6,-9965.6 832.5,-9965.6 833.6,-9965.4 834.5,-9965.3 835.5,-9965.2 836.5,-9965 837.4,-9964.9 318.9,26.9 z" |
id="path2176" |
inkscape:connector-curvature="0" /> |
<path |
d="m -99367.4,-5941290.3 1177.1,-9266.6 1281.5,-10076.8 1283,-10076.7 1284.4,-10076.3 1285.9,-10076.1 1287.4,-10075.9 1288.8,-10075.7 1290.3,-10075.4 1291.8,-10075.2 281.6,-2194.2 6099.1,520.8 10000.2,853.8 9999.3,853.6 9998.3,853.4 9997.4,853.2 9996.4,853 9995.5,852.8 9994.5,852.7 9993.6,852.5 9992.7,852.3 -851.7,9992.2 -850.7,9992.5 -849.8,9992.6 -848.9,9992.9 -847.9,9992.9 -846.9,9993.2 -846,9993.4 -845,9993.5 -844.1,9993.8 -843,9993.9 -9994.5,-842.7 -9995.5,-842.8 -9996.5,-843.1 -9997.4,-843.2 -9998.4,-843.5 -9999.4,-843.7 -10000.3,-843.8 -10001.3,-844 -10002.2,-844.3 -10003.2,-844.4 644,-7624.6 z" |
id="path2177" |
inkscape:connector-curvature="0" /> |
<path |
d="m -22.7,-5925230.1 843,-9993.9 844.1,-9993.8 845,-9993.5 846,-9993.4 846.9,-9993.2 847.9,-9992.9 848.9,-9992.9 849.8,-9992.6 850.7,-9992.5 851.7,-9992.2 9991.7,852 9990.8,851.9 9989.8,851.7 9988.8,851.5 9987.9,851.4 9987,851.2 9986,851.1 9985.1,850.8 9984.1,850.7 9983.1,850.6 -850,9982.8 -849,9982.8 -848.1,9983.2 -847.1,9983.2 -846.1,9983.5 -845.2,9983.5 -844.2,9983.8 -843.3,9983.9 -842.3,9984 -841.3,9984.3 -9984.8,-840.9 -9985.7,-841 -9986.8,-841.3 -9987.7,-841.5 -9988.7,-841.6 -9989.7,-841.8 -9990.6,-842 -9991.6,-842.1 -9992.6,-842.3 -9993.6,-842.5 z" |
id="path2178" |
inkscape:connector-curvature="0" /> |
<path |
d="m 99869.1,-5916813.2 841.3,-9984.3 842.3,-9984 843.3,-9983.9 844.2,-9983.8 845.2,-9983.5 846.1,-9983.5 847.1,-9983.2 848.1,-9983.2 849,-9982.8 850,-9982.8 9982.2,850.3 9981.2,850.2 9980.3,850.1 9979.3,849.8 9978.4,849.7 9977.5,849.5 9976.5,849.4 9975.5,849.3 9974.6,849.1 9973.6,849 -848.4,9973.2 -847.5,9973.5 -846.5,9973.4 -845.6,9973.8 -844.6,9973.7 -843.6,9973.9 -842.7,9974.1 -841.7,9974.2 -840.8,9974.4 -839.7,9974.5 -9975.1,-839.3 -9976.1,-839.5 -9977,-839.7 -9978.1,-839.8 -9979,-839.9 -9979.9,-840.1 -9981,-840.2 -9981.9,-840.4 -9982.9,-840.6 -9983.8,-840.7 z" |
id="path2179" |
inkscape:connector-curvature="0" /> |
<path |
d="m 303901.4,-6000000 -93.4,2201.9 -428.9,10110.4 -428.4,10110.2 -427.9,10110.1 -427.4,10110 -426.9,10109.9 -426.4,10109.8 -425.9,10109.8 -425.4,10109.6 -390.7,9296.4 -639,7595 -9965.3,-838 -9966.3,-838.1 -9967.3,-838.3 -9968.2,-838.4 -9969.3,-838.5 -9970.2,-838.6 -9971.2,-838.9 -9972.2,-838.9 -9973.1,-839.1 -9974.1,-839.2 839.7,-9974.5 840.8,-9974.4 841.7,-9974.2 842.7,-9974.1 843.6,-9973.9 844.6,-9973.7 845.6,-9973.8 846.5,-9973.4 847.5,-9973.5 848.4,-9973.2 9972.7,848.8 9971.7,848.7 9970.8,848.5 9969.8,848.4 9968.9,848.3 9967.9,848.2 9967,848 9966.1,847.9 9965,847.8 6076.7,517 z" |
id="path2180" |
inkscape:connector-curvature="0" /> |
<path |
d="m 300000,-5907621.8 -34.2,813 -286,6808.8 -318.9,-26.9 639,-7595 z" |
id="path2181" |
inkscape:connector-curvature="0" /> |
<path |
d="m 279331.5,-5400000 58.3,-1481.4 398.2,-10103.7 398.8,-10103.8 399.4,-10103.9 399.9,-10104.1 400.5,-10104.2 401,-10104.3 401.6,-10104.4 402.1,-10104.5 402.7,-10104.8 302.5,-7580.9 6703.4,-0.1 10000,0.1 0,10000 0,10000 0,10000 0,9999.9 0,10000.1 0,10000 0,10000 0,9999.9 0,10000.1 0,10000 -10000,0.1 -10000,0 -668.5,0 z" |
id="path2182" |
inkscape:connector-curvature="0" /> |
<path |
d="m 300000,-5400000 0,-10000 0,-10000.1 0,-9999.9 0,-10000 0,-10000 0,-10000.1 0,-9999.9 0,-10000 0,-10000 0,-10000 10000,0 10000,0.1 10000.1,-0.1 10000,0 10000,0 10000,0.1 10000,0 10000,0 10000,0 10000,0 0.1,10000.1 0,10000 0,9999.9 0,10000 0,10000.1 0,10000 0.1,9999.9 -0.1,10000 0,10000.1 0,10000 -10000,0 -10000,0 -10000.1,-0.1 -10000,0 -10000,0 -9999.9,0 -10000,0.1 -10000,-0.1 -10000,0 -9999.9,-0.1 z" |
id="path2183" |
inkscape:connector-curvature="0" /> |
<path |
d="m 400000,-5400000 0,-10000 0,-10000.1 0.1,-10000 -0.1,-9999.9 0,-10000 0,-10000.1 0,-10000 0,-9999.9 0,-10000 -0.1,-10000.1 10000,0 10000,-0.1 10000,0.1 10000,-0.1 10000,0.1 10000,0 10000,0 10000,0 10000,0 10000,0 0,10000 0,10000 0,9999.9 0,10000 0,10000 0,10000 0,10000 0,10000.1 0,10000 0,10000 -10000,0 -10000,0 -10000.1,0.1 -10000,0 -10000,-0.1 -9999.9,0.1 -10000,-0.1 -10000,0.1 -10000,0 -9999.9,0 z" |
id="path2184" |
inkscape:connector-curvature="0" /> |
<path |
d="m 500000,-5400000 0,-10000 0,-10000 0,-10000.1 0,-10000 0,-10000 0,-10000 0,-10000 0,-9999.9 0,-10000 0,-10000 10000,0 10000,0 10000,0 10000,0 10000,0 10000,-0.1 10000,0.1 10000.1,-0.1 9999.9,0.1 10000,0 -0.1,10000.1 0,10000 0,9999.9 0,10000 0,10000.1 0,10000 0,9999.9 0.1,10000 0,10000.1 0,10000 -9999.9,0 -10000,0 -10000,-0.1 -10000,0.1 -9999.9,-0.1 -10000,0.1 -10000,0 -10000,-0.1 -10000,0 -10000,0 z" |
id="path2185" |
inkscape:connector-curvature="0" /> |
<path |
d="m 600000,-5400000 0,-10000 0,-10000.1 -0.1,-10000 0,-9999.9 0,-10000 0,-10000.1 0,-10000 0,-9999.9 0,-10000 0.1,-10000.1 10000,0 10000,0 10000,0 10000,0 10000,-0.1 10000,0 10000,0 10000.1,0.1 10000,-0.1 10000,0 -0.1,10000 0.1,10000 0,10000 0,9999.9 0,10000.1 0,10000 0,10000 0,9999.9 0,10000.1 0,10000 -10000,0.1 -10000,0 -10000,0.1 -10000,-0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 z" |
id="path2186" |
inkscape:connector-curvature="0" /> |
<path |
d="m 716703.3,-5500000 302.5,7580.9 402.7,10104.8 402.1,10104.5 401.6,10104.4 401,10104.3 400.5,10104.2 399.9,10104.1 399.4,10103.9 398.8,10103.8 398.2,10103.7 58.3,1481.4 -668.4,0 -10000,0 -9999.9,-0.1 0,-10000 0,-10000.1 0,-9999.9 0,-10000 0,-10000 0,-10000.1 0,-9999.9 0,-10000 -0.1,-10000 0.1,-10000 10000,-0.1 6703.4,0.1 z" |
id="path2187" |
inkscape:connector-curvature="0" /> |
<path |
d="m 283296.7,-5500000 100.7,-2523.8 403.8,-10104.9 404.3,-10105 404.9,-10105.1 405.4,-10105.2 406,-10105.3 406.5,-10105.5 407.1,-10105.6 407.6,-10105.7 408.1,-10105.8 264,-6528.2 2685,0 10000,0 0,10000 0,10000.1 0,9999.9 0,10000 -0.1,10000.1 0,10000 0,10000 0,10000 0,9999.9 0,10000.1 -10000,-0.1 -6703.4,0.1 z" |
id="path2188" |
inkscape:connector-curvature="0" /> |
<path |
d="m 300000,-5500000 0,-10000.1 0,-9999.9 0,-10000 0,-10000 0,-10000 0.1,-10000.1 0,-10000 0,-9999.9 0,-10000.1 0,-10000 10000,0 10000,0 10000,-0.1 10000,0 10000,0 10000,0 10000,0 10000,0 10000,-0.1 10000,0 0,10000.1 0,10000 0,9999.9 0,10000 0.1,10000.1 0,10000 -0.1,10000.1 0.1,10000 -0.1,9999.9 0,10000 -10000,0 -10000,0 -10000,0 -10000,0 -10000,-0.1 -10000,0 -10000,0 -10000.1,0.1 -10000,-0.1 -10000,0 z" |
id="path2189" |
inkscape:connector-curvature="0" /> |
<path |
d="m 400000,-5500000 0,-10000 0.1,-9999.9 -0.1,-10000 0.1,-10000.1 0,-10000 -0.1,-10000.1 0,-10000 0,-9999.9 0,-10000 0,-10000.1 10000,0.1 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0.1 10000,0 10000,0.1 0,9999.9 0,10000 0,10000.1 0,10000 0,10000 0,9999.9 0,10000 0,10000.1 0,10000 0,10000 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,-0.1 -10000,0.1 -10000,-0.1 -10000,0.1 -10000,0 z" |
id="path2190" |
inkscape:connector-curvature="0" /> |
<path |
d="m 500000,-5500000 0,-10000 0,-10000 0,-10000.1 0,-10000 0,-9999.9 0,-10000 0,-10000 0,-10000.1 0,-10000 0,-9999.9 10000,-0.1 10000,0 10000,-0.1 10000,0 10000,0 10000,0 9999.9,0 10000.1,0 10000,0 10000,-0.1 0,10000.1 0,10000 0,9999.9 0,10000 -0.1,10000.1 0,10000 0,10000.1 0.1,10000 0,9999.9 0,10000 -10000,0 -9999.9,-0.1 -10000.1,0.1 -10000,-0.1 -10000,0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 z" |
id="path2191" |
inkscape:connector-curvature="0" /> |
<path |
d="m 600000,-5500000 0,-10000 0,-9999.9 -0.1,-10000 0,-10000.1 0,-10000 0.1,-10000.1 0,-10000 0,-9999.9 0,-10000 0,-10000.1 10000,0 10000,0.1 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0.1 10000,0 10000,0 0,10000 0,10000.1 0,9999.9 0,10000 0.1,10000.1 0,10000 0,10000 0,10000 0,9999.9 0,10000.1 -10000,0 -10000,0.1 -10000.1,-0.1 -10000,0 -10000,0 -10000,0.1 -10000,0 -10000,0 -10000,0 -10000,0 z" |
id="path2192" |
inkscape:connector-curvature="0" /> |
<path |
d="m 712685,-5600000 264,6528.2 408.1,10105.8 407.6,10105.7 407.1,10105.6 406.5,10105.5 406,10105.3 405.4,10105.2 404.9,10105.1 404.3,10105 403.8,10104.9 100.7,2523.8 -6703.4,-0.1 -10000,0.1 0,-10000.1 0,-9999.9 0,-10000 0,-10000 0,-10000 -0.1,-10000.1 0,-10000 0,-9999.9 0,-10000.1 0,-10000 10000,0 2685,0 z" |
id="path2193" |
inkscape:connector-curvature="0" /> |
<path |
d="m 287315,-5600000 144.7,-3577.9 409.2,-10106 409.8,-10106.1 410.3,-10106.3 410.8,-10106.4 411.4,-10106.5 411.9,-10106.6 412.4,-10106.7 413,-10106.8 413.5,-10106.9 223.8,-5463.7 8614.3,-0.1 0,10000 0.1,10000 0,10000 -0.1,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,9999.9 -10000,0 -2685,0 z" |
id="path2194" |
inkscape:connector-curvature="0" /> |
<path |
d="m 300000,-5600000 0,-9999.9 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0.1,-10000 0,-10000 -0.1,-10000 0,-10000 10000,0 10000,0 10000.1,0 9999.9,-0.1 10000,0 10000,0 10000,0 10000,0.1 10000,-0.1 10000,0.1 0,9999.9 0,10000 0,10000.1 0,10000 0,9999.9 0,10000 0,10000.1 0,10000 0,9999.9 -0.1,10000 -10000,0 -10000,0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0.1 -10000,0 -10000,0 z" |
id="path2195" |
inkscape:connector-curvature="0" /> |
<path |
d="m 400000,-5600000 0.1,-10000 0,-9999.9 0,-10000 0,-10000.1 0,-10000 0,-9999.9 0,-10000 0,-10000.1 0,-10000 0,-9999.9 10000,-0.1 10000,0 10000,0.1 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 0,9999.9 0,10000.1 0,9999.9 0,10000 0,10000 0,10000 0,10000 0,9999.9 0,10000 0,10000.1 -10000,-0.1 -10000,0 -10000,-0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,-0.1 z" |
id="path2196" |
inkscape:connector-curvature="0" /> |
<path |
d="m 500000,-5600000 0,-10000.1 0,-10000 0,-9999.9 0,-10000 0,-10000 0,-10000 0,-10000 0,-9999.9 0,-10000.1 0,-9999.9 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,-0.1 10000,0 10000,0.1 0,9999.9 0,10000 0,10000.1 0,10000 0,9999.9 0,10000 0,10000.1 0,10000 0,9999.9 0.1,10000 -10000,0.1 -10000,0 -10000.1,0 -9999.9,0 -10000,0 -10000,0 -10000,0 -10000,0.1 -10000,0 -10000,0.1 z" |
id="path2197" |
inkscape:connector-curvature="0" /> |
<path |
d="m 600000,-5600000 -0.1,-10000 0,-9999.9 0,-10000 0,-10000.1 0,-10000 0,-9999.9 0,-10000 0,-10000.1 0,-10000 0,-9999.9 10000,-0.1 10000.1,0.1 9999.9,-0.1 10000,0 10000,0 10000,0 10000,0.1 10000.1,0 10000,0 10000,0 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0.1,10000 0,10000 -10000,0 -10000,0 -10000,-0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,-0.1 -10000,0 z" |
id="path2198" |
inkscape:connector-curvature="0" /> |
<path |
d="m 708614.3,-5700000 223.8,5463.7 413.5,10106.9 413,10106.8 412.4,10106.7 411.9,10106.6 411.4,10106.5 410.8,10106.4 410.3,10106.3 409.8,10106.1 409.2,10106 144.7,3577.9 -2685,0 -10000,0 0,-10000 -0.1,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 8614.3,0.1 z" |
id="path2199" |
inkscape:connector-curvature="0" /> |
<path |
d="m 291385.7,-5700000 190.2,-4643.4 414.5,-10107.3 415.1,-10107.3 415.6,-10107.4 416.1,-10107.5 416.6,-10107.6 417.2,-10107.8 417.7,-10107.9 418.2,-10108 418.7,-10108.1 182,-4387.8 4492.3,-0.1 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 -8614.3,0.1 z" |
id="path2200" |
inkscape:connector-curvature="0" /> |
<path |
d="m 300000,-5700000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 10000,0 10000,0 10000,0 10000,0 10000,0 9999.9,-0.1 10000.1,0.1 10000,-0.1 10000,0 10000,0 0,9999.9 0,10000 0,10000 0,10000 0.1,9999.9 0,10000.1 0,9999.9 0,10000 0,10000.1 0,10000 -10000,-0.1 -10000,0.1 -10000,-0.1 -10000,0 -10000,0 -10000,0 -9999.9,0.1 -10000.1,0 -10000,0 -10000,0 z" |
id="path2201" |
inkscape:connector-curvature="0" /> |
<path |
d="m 400000,-5700000 0,-10000 0,-10000.1 0,-10000 0,-9999.9 0,-10000.1 -0.1,-9999.9 0,-10000 0,-10000 0,-10000 0,-9999.9 10000,0 10000,0 10000,0 10000,0 10000,-0.1 10000,0.1 10000,-0.1 10000,0 10000,0.1 10000,0 0,10000 0,10000 0,9999.9 0,10000.1 0,10000 0,10000 0,10000 0,9999.9 0,10000 0,10000.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,-0.1 -10000,0 -10000,0.1 z" |
id="path2202" |
inkscape:connector-curvature="0" /> |
<path |
d="m 500000,-5700000 0,-10000.1 0,-10000 0,-9999.9 0,-10000 0,-10000 0,-10000 0,-10000.1 0,-9999.9 0,-10000 0,-10000 10000,0 10000,-0.1 10000,0 10000,0.1 10000,-0.1 10000,0.1 10000,0 10000,0 10000,0 10000,0 0,9999.9 0,10000 0,10000 0,10000 0,9999.9 0,10000.1 0,9999.9 0,10000 0,10000.1 0,10000 -10000,-0.1 -10000,0 -10000,0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 z" |
id="path2203" |
inkscape:connector-curvature="0" /> |
<path |
d="m 600000,-5700000 0,-10000 0,-10000.1 0,-10000 0,-9999.9 0,-10000.1 0,-9999.9 0,-10000 0,-10000 0,-10000 0,-9999.9 10000,0 10000,0 10000,0.1 10000,-0.1 10000.1,0.1 10000,0 10000,0 10000,0 10000,0 10000,0 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 -10000,0 -10000,0 -10000.1,0 -10000,-0.1 -10000,0 -10000,0 -10000,0 -9999.9,0.1 -10000.1,-0.1 -10000,0.1 z" |
id="path2204" |
inkscape:connector-curvature="0" /> |
<path |
d="m 704492.3,-5800000 182,4387.8 418.7,10108.1 418.2,10108 417.7,10107.9 417.2,10107.8 416.6,10107.6 416.1,10107.5 415.6,10107.4 415.1,10107.3 414.5,10107.3 190.2,4643.4 -8614.3,-0.1 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 4492.3,0.1 z" |
id="path2205" |
inkscape:connector-curvature="0" /> |
<path |
d="m 295507.7,-5800000 237.3,-5720.4 419.8,-10108.3 420.3,-10108.5 420.8,-10108.5 421.3,-10108.7 421.8,-10108.8 422.3,-10108.9 422.9,-10109 423.4,-10109.1 423.9,-10109.2 138.6,-3300.5 320,-0.1 0,10000 0.1,10000 0,10000 0,10000 0,9999.9 0,10000.1 0,10000 0,10000 0,10000 0,10000 -4492.3,0.1 z" |
id="path2206" |
inkscape:connector-curvature="0" /> |
<path |
d="m 300000,-5800000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000.1 0,-9999.9 0,-10000 0,-10000 -0.1,-10000 0,-10000 10000,0 10000,0 10000,0 9999.9,0 10000,0 10000,0 10000,-0.1 10000,0 10000,-0.1 10000,0 0,10000 0,10000 0,9999.9 0,10000.1 0,9999.9 0,10000 0,10000 0,10000 0,10000 0,10000 -10000,0 -10000,0 -10000,0.1 -10000.1,-0.1 -9999.9,0.1 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 z" |
id="path2207" |
inkscape:connector-curvature="0" /> |
<path |
d="m 400000,-5800000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-9999.9 0,-10000.1 0,-9999.9 0,-10000 0,-10000 10000,0 10000,0 10000,0 10000.1,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000 0,10000.1 -10000,0 -10000,-0.1 -10000,0 -10000,0.1 -10000,-0.1 -10000,0.1 -10000,0 -10000,0 -10000,0 -10000,0 z" |
id="path2208" |
inkscape:connector-curvature="0" /> |
<path |
d="m 500000,-5800000 0,-10000.1 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 10000,0 9999.9,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 0,10000 0,10000 0,9999.9 0,10000.1 0,9999.9 0,10000 0,10000 0,10000 0,10000 0,10000 -10000,0 -10000,0 -10000,0 -10000,0 -10000,-0.1 -10000,0.1 -10000,-0.1 -10000,0 -10000,0.1 -10000,0 z" |
id="path2209" |
inkscape:connector-curvature="0" /> |
<path |
d="m 600000,-5800000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-9999.9 0,-10000.1 0,-9999.9 0,-10000 0,-10000 10000,0 10000,0.1 10000,-0.1 10000,0.1 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 0,10000 0,10000 -0.1,10000 0,10000 0,9999.9 0,10000.1 0,10000 0,10000 0,10000 0,10000 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000.1,-0.1 -10000,0.1 -10000,-0.1 -10000,0 -10000,0 z" |
id="path2210" |
inkscape:connector-curvature="0" /> |
<path |
d="m 700320,-5900000 138.6,3300.5 423.9,10109.2 423.4,10109.1 422.9,10109 422.3,10108.9 421.8,10108.8 421.3,10108.7 420.8,10108.5 420.3,10108.5 419.8,10108.3 237.3,5720.4 -4492.3,-0.1 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000.1 0,-9999.9 0,-10000 0.1,-10000 0,-10000 0,-10000 320,0.1 z" |
id="path2211" |
inkscape:connector-curvature="0" /> |
<path |
d="m 299680,-5900000 285.8,-6808.9 34.2,-813 0,7621.8 -320,0.1 z" |
id="path2212" |
inkscape:connector-curvature="0" /> |
<path |
d="m 300000,-5907621.8 390.7,-9296.4 425.4,-10109.6 425.9,-10109.8 426.4,-10109.8 426.9,-10109.9 427.4,-10110 427.9,-10110.1 428.4,-10110.2 428.9,-10110.4 93.5,-2201.9 6098.5,0 9999.9,0 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0.1 10000,0 10000,0 0,9999.9 0,10000.1 0,9999.9 0,10000.1 0,9999.9 0,10000 0,10000 0,10000 0,10000 0,10000 -10000,0 -10000,0.1 -10000,0 -10000,0.1 -10000,0 -10000,0 -9999.9,0 -10000,0 -10000,0 -10000,0 0,-7621.8 z" |
id="path2213" |
inkscape:connector-curvature="0" /> |
<path |
d="m 400000,-5900000 0,-10000 0,-10000 0,-10000 0,-10000 0,-10000 0,-9999.9 0,-10000.1 0,-9999.9 0,-10000.1 0,-9999.9 10000,-0.1 10000,0 10000,0 10000,0 10000,0.1 10000,0 10000,0 10000,0 10000,0 10000,0 0,10000 0,9999.9 0,10000.1 0,9999.9 0,10000.1 0,10000 0,10000 0,10000 0,9999.9 0,10000 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000.1,0 -10000,0 -10000,0 -10000,0 z" |
id="path2214" |
inkscape:connector-curvature="0" /> |
<path |
d="m 500000,-5900000 0,-10000 0,-9999.9 0,-10000 0,-10000 0,-10000 0,-10000.1 0,-9999.9 0,-10000.1 0,-9999.9 0,-10000 10000,0 10000,0 10000,0 10000,0 10000,0 10000,-0.1 10000,0 10000,0 10000,0 10000,0.1 0,9999.9 0,10000.1 0,9999.9 0,10000.1 0,9999.9 0,10000 0.1,10000 0,10000 0,10000 0,10000 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -9999.9,0 -10000,0 z" |
id="path2215" |
inkscape:connector-curvature="0" /> |
<path |
d="m 696098.4,-6000000 93.5,2201.9 428.9,10110.4 428.4,10110.2 427.9,10110.1 427.4,10110 426.9,10109.9 426.4,10109.8 425.9,10109.8 425.4,10109.6 390.7,9296.4 0,7621.8 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,0 -10000,-0.1 -10000,0.1 -10000,-0.1 -10000,0 0,-10000 0,-10000 0,-10000 -0.1,-10000 0,-10000 0,-9999.9 0,-10000.1 0,-9999.9 0,-10000.1 0,-9999.9 10000,0 10000,0 10000,-0.1 10000,0 10000,0 10000,0 10000,0 10000,0 10000,0 6098.5,0 z" |
id="path2216" |
inkscape:connector-curvature="0" /> |
<path |
d="m 700000,-5907621.8 34.2,813 285.8,6808.9 -320,-0.1 0,-7621.8 z" |
id="path2217" |
inkscape:connector-curvature="0" /> |
<path |
d="m 720668.5,-5400000 -58.3,-1481.4 -398.2,-10103.7 -398.8,-10103.8 -399.4,-10103.9 -399.9,-10104.1 -400.5,-10104.2 -401,-10104.3 -401.6,-10104.4 -402.1,-10104.5 -402.7,-10104.8 -302.4,-7580.9 6682.3,-534.4 9969.4,-797.2 796.8,9970 795.8,9970.1 794.7,9970.3 793.6,9970.3 792.6,9970.6 791.5,9970.6 790.4,9970.8 789.3,9970.9 788.3,9971.1 787.2,9971.2 -9970.6,786.7 -9969.7,786.4 -666.4,52.6 z" |
id="path2218" |
inkscape:connector-curvature="0" /> |
<path |
d="m 741275.2,-5401625.6 -787.2,-9971.2 -788.3,-9971.1 -789.3,-9970.9 -790.4,-9970.8 -791.5,-9970.6 -792.6,-9970.6 -793.6,-9970.3 -794.7,-9970.3 -795.8,-9970.1 -796.8,-9970 9970.5,-797.4 9971.6,-797.5 9972.6,-797.7 9973.6,-797.8 9974.7,-797.9 9975.8,-798 9976.8,-798.2 9977.8,-798.4 9979,-798.5 9979.9,-798.7 798.2,9980.6 797.2,9980.7 796.1,9980.8 795,9981 794,9981.2 792.9,9981.3 791.8,9981.4 790.8,9981.6 789.7,9981.8 788.6,9981.9 -9981.5,788 -9980.4,787.8 -9979.3,787.7 -9978.2,787.6 -9977.2,787.4 -9976,787.2 -9975.1,787.2 -9973.9,786.9 -9972.9,786.9 -9971.8,786.7 z" |
id="path2219" |
inkscape:connector-curvature="0" /> |
<path |
d="m 841041.6,-5409499.1 -788.6,-9981.9 -789.7,-9981.8 -790.8,-9981.6 -791.8,-9981.4 -792.9,-9981.3 -794,-9981.2 -795,-9981 -796.1,-9980.8 -797.2,-9980.7 -798.2,-9980.6 9981.1,-798.8 9982.1,-799 9983.1,-799 9984.2,-799.3 9985.3,-799.4 9986.3,-799.6 9987.3,-799.7 9988.4,-799.9 9989.5,-800.1 9990.5,-800.3 799.8,9991.2 798.7,9991.3 797.7,9991.4 796.6,9991.6 795.6,9991.8 794.5,9992 793.4,9992.1 792.4,9992.4 791.3,9992.5 790.2,9992.6 -9992.2,789.6 -9991.1,789.4 -9990,789.3 -9989,789.1 -9987.9,788.9 -9986.9,788.9 -9985.7,788.5 -9984.7,788.5 -9983.6,788.3 -9982.6,788.1 z" |
id="path2220" |
inkscape:connector-curvature="0" /> |
<path |
d="m 940915.3,-5417387.8 -790.2,-9992.6 -791.3,-9992.5 -792.4,-9992.4 -793.4,-9992.1 -794.5,-9992 -795.6,-9991.8 -796.6,-9991.6 -797.7,-9991.4 -798.7,-9991.3 -799.8,-9991.2 9991.6,-800.4 9992.6,-800.5 9993.7,-800.8 9994.7,-800.9 9995.8,-801.1 9996.8,-801.4 9997.9,-801.4 9998.9,-801.8 10000,-801.8 10001.1,-802.1 801.6,10001.7 800.5,10001.9 799.5,10002 798.5,10002.2 797.4,10002.5 796.3,10002.6 795.2,10002.8 794.2,10003 793.1,10003.2 792,10003.4 -10003,791.4 -10001.8,791.2 -10000.8,791 -9999.7,790.9 -9998.7,790.6 -9997.6,790.6 -9996.5,790.3 -9995.4,790.1 -9994.3,789.9 -9993.3,789.8 z" |
id="path2221" |
inkscape:connector-curvature="0" /> |
<path |
d="m 1040896.4,-5425293.6 -792,-10003.4 -793.1,-10003.2 -794.2,-10003 -795.2,-10002.8 -796.3,-10002.6 -797.4,-10002.5 -798.5,-10002.2 -799.5,-10002 -800.5,-10001.9 -801.6,-10001.7 10002.1,-802.2 10003.2,-802.4 10004.2,-802.6 10005.2,-802.8 10006.3,-803.1 10007.3,-803.2 10008.4,-803.4 10009.5,-803.5 10010.6,-803.9 10011.6,-804 803.6,10012.2 802.5,10012.4 801.5,10012.6 800.5,10012.8 799.4,10013.1 798.3,10013.2 797.3,10013.5 796.2,10013.6 795.1,10014 794.1,10014.1 -10013.7,793.5 -10012.6,793.2 -10011.5,793 -10010.5,792.7 -10009.3,792.6 -10008.3,792.4 -10007.2,792.2 -10006.2,792 -10005.1,791.8 -10004,791.6 z" |
id="path2222" |
inkscape:connector-curvature="0" /> |
<path |
d="m 716703.5,-5500000 -100.8,-2523.8 -403.8,-10104.9 -404.3,-10105 -404.9,-10105.1 -405.4,-10105.2 -406,-10105.3 -406.5,-10105.5 -407.1,-10105.6 -407.6,-10105.7 -408.1,-10105.8 -263.9,-6528.2 2676.2,-216.8 9968.2,-807.8 807.3,9968.7 806.2,9968.9 805.2,9968.9 804.1,9969.1 803.1,9969.3 802.1,9969.3 801,9969.5 799.9,9969.6 798.9,9969.7 797.8,9969.9 -9969.4,797.2 -6682.3,534.4 z" |
id="path2223" |
inkscape:connector-curvature="0" /> |
<path |
d="m 733355.1,-5501331.6 -797.8,-9969.9 -798.9,-9969.7 -799.9,-9969.6 -801,-9969.5 -802.1,-9969.3 -803.1,-9969.3 -804.1,-9969.1 -805.2,-9968.9 -806.2,-9968.9 -807.3,-9968.7 9969.2,-807.8 9970.2,-808 9971.2,-808.2 9972.3,-808.2 9973.3,-808.3 9974.3,-808.5 9975.4,-808.6 9976.4,-808.8 9977.4,-809 9978.5,-809.1 808.6,9979.1 807.7,9979.2 806.6,9979.3 805.5,9979.5 804.5,9979.7 803.4,9979.8 802.4,9980 801.3,9980.1 800.3,9980.2 799.2,9980.4 -9979.9,798.7 -9979,798.5 -9977.8,798.4 -9976.8,798.2 -9975.8,798 -9974.7,797.9 -9973.6,797.8 -9972.6,797.7 -9971.6,797.5 -9970.5,797.4 z" |
id="path2224" |
inkscape:connector-curvature="0" /> |
<path |
d="m 833107.3,-5509311.7 -799.2,-9980.4 -800.3,-9980.2 -801.3,-9980.1 -802.4,-9980 -803.4,-9979.8 -804.5,-9979.7 -805.5,-9979.5 -806.6,-9979.3 -807.7,-9979.2 -808.6,-9979.1 9979.5,-809.2 9980.5,-809.4 9981.6,-809.6 9982.6,-809.7 9983.7,-809.9 9984.7,-810 9985.7,-810.2 9986.7,-810.3 9987.9,-810.6 9988.8,-810.6 810.2,9989.4 809.2,9989.6 808.2,9989.8 807.1,9990 806.1,9990.1 805,9990.2 804,9990.4 803,9990.7 801.9,9990.8 800.9,9990.9 -9990.5,800.3 -9989.5,800.1 -9988.4,799.9 -9987.3,799.7 -9986.3,799.6 -9985.3,799.4 -9984.2,799.3 -9983.1,799 -9982.1,799 -9981.1,798.8 z" |
id="path2225" |
inkscape:connector-curvature="0" /> |
<path |
d="m 932965.1,-5517306.7 -800.9,-9990.9 -801.9,-9990.8 -803,-9990.7 -804,-9990.4 -805,-9990.2 -806.1,-9990.1 -807.1,-9990 -808.2,-9989.8 -809.2,-9989.6 -810.2,-9989.4 9989.8,-810.9 9991,-811 9991.9,-811.3 9992.9,-811.3 9994,-811.5 9995,-811.7 9996.1,-811.9 9997.1,-812.1 9998.1,-812.3 9999.2,-812.5 812,9999.8 811,10000 810,10000.1 809,10000.3 807.8,10000.6 806.9,10000.7 805.8,10001 804.8,10001.1 803.7,10001.2 802.7,10001.5 -10001.1,802.1 -10000,801.8 -9998.9,801.8 -9997.9,801.4 -9996.8,801.4 -9995.8,801.1 -9994.7,800.9 -9993.7,800.8 -9992.6,800.5 -9991.6,800.4 z" |
id="path2226" |
inkscape:connector-curvature="0" /> |
<path |
d="m 1032928.1,-5525318.9 -802.7,-10001.5 -803.7,-10001.2 -804.8,-10001.1 -805.8,-10001 -806.9,-10000.7 -807.8,-10000.6 -809,-10000.3 -810,-10000.1 -811,-10000 -812,-9999.8 10000.2,-812.6 10001.2,-812.8 10002.3,-813.1 10003.3,-813.2 10004.3,-813.4 10005.3,-813.7 10006.4,-813.8 10007.4,-814 10008.5,-814.2 10009.5,-814.5 814,10010.1 813,10010.4 812,10010.4 811,10010.8 809.9,10011 808.8,10011.1 807.8,10011.3 806.8,10011.6 805.7,10011.7 804.7,10012 -10011.6,804 -10010.6,803.9 -10009.5,803.5 -10008.4,803.4 -10007.3,803.2 -10006.3,803.1 -10005.2,802.8 -10004.2,802.6 -10003.2,802.4 -10002.1,802.2 z" |
id="path2227" |
inkscape:connector-curvature="0" /> |
<path |
d="m 712685.1,-5600000 -144.8,-3577.9 -409.2,-10106 -409.8,-10106.1 -410.3,-10106.3 -410.8,-10106.4 -411.4,-10106.5 -411.9,-10106.6 -412.4,-10106.7 -413,-10106.8 -413.5,-10106.9 -223.7,-5463.7 8585.8,-704.7 817.5,9967.4 816.5,9967.6 815.5,9967.7 814.5,9967.9 813.4,9967.9 812.4,9968 811.4,9968.2 810.4,9968.3 809.3,9968.5 808.3,9968.5 -9968.2,807.8 -2676.2,216.8 z" |
id="path2228" |
inkscape:connector-curvature="0" /> |
<path |
d="m 725329.5,-5601024.6 -808.3,-9968.5 -809.3,-9968.5 -810.4,-9968.3 -811.4,-9968.2 -812.4,-9968 -813.4,-9967.9 -814.5,-9967.9 -815.5,-9967.7 -816.5,-9967.6 -817.5,-9967.4 9967.9,-818.1 9968.8,-818.2 9969.9,-818.3 9971,-818.6 9971.9,-818.6 9972.9,-818.8 9974,-818.9 9975,-819 9976,-819.3 9977,-819.2 818.9,9977.5 817.9,9977.7 816.9,9977.9 815.8,9978 814.9,9978.1 813.8,9978.3 812.8,9978.5 811.7,9978.6 810.7,9978.7 809.7,9978.9 -9978.5,809.1 -9977.4,809 -9976.4,808.8 -9975.4,808.6 -9974.3,808.5 -9973.3,808.3 -9972.3,808.2 -9971.2,808.2 -9970.2,808 -9969.2,807.8 z" |
id="path2229" |
inkscape:connector-curvature="0" /> |
<path |
d="m 825067.7,-5609109.2 -809.7,-9978.9 -810.7,-9978.7 -811.7,-9978.6 -812.8,-9978.5 -813.8,-9978.3 -814.9,-9978.1 -815.8,-9978 -816.9,-9977.9 -817.9,-9977.7 -818.9,-9977.5 9978,-819.6 9979,-819.6 9980.1,-819.7 9981.1,-820 9982.1,-820.1 9983.1,-820.3 9984.1,-820.4 9985.2,-820.6 9986.1,-820.7 9987.2,-820.9 820.5,9987.7 819.5,9988 818.4,9988 817.4,9988.3 816.4,9988.4 815.4,9988.6 814.4,9988.7 813.3,9988.9 812.3,9989.1 811.3,9989.3 -9988.8,810.6 -9987.9,810.6 -9986.7,810.3 -9985.7,810.2 -9984.7,810 -9983.7,809.9 -9982.6,809.7 -9981.6,809.6 -9980.5,809.4 -9979.5,809.2 z" |
id="path2230" |
inkscape:connector-curvature="0" /> |
<path |
d="m 924909.5,-5617208.6 -811.3,-9989.3 -812.3,-9989.1 -813.3,-9988.9 -814.4,-9988.7 -815.4,-9988.6 -816.4,-9988.4 -817.4,-9988.3 -818.4,-9988 -819.5,-9988 -820.5,-9987.7 9988.2,-821.1 9989.1,-821.2 9990.2,-821.4 9991.2,-821.6 9992.2,-821.7 9993.2,-822 9994.2,-822.1 9995.3,-822.4 9996.2,-822.5 9997.3,-822.6 822.3,9997.8 821.2,9998.1 820.2,9998.3 819.3,9998.4 818.2,9998.6 817.2,9998.8 816.1,9999.1 815.2,9999.2 814.1,9999.3 813.1,9999.6 -9999.2,812.5 -9998.1,812.3 -9997.1,812.1 -9996.1,811.9 -9995,811.7 -9994,811.5 -9992.9,811.3 -9991.9,811.3 -9991,811 -9989.8,810.9 z" |
id="path2231" |
inkscape:connector-curvature="0" /> |
<path |
d="m 708614.4,-5700000 -190.3,-4643.4 -414.5,-10107.3 -415.1,-10107.3 -415.6,-10107.4 -416.1,-10107.5 -416.6,-10107.6 -417.2,-10107.8 -417.7,-10107.9 -418.2,-10108 -418.7,-10108.1 -181.9,-4387.8 4476.9,-372.1 827.6,9966.2 826.6,9966.3 825.6,9966.4 824.6,9966.5 823.6,9966.7 822.6,9966.8 821.6,9966.9 820.6,9967.1 819.6,9967.1 818.5,9967.3 -8585.8,704.7 z" |
id="path2232" |
inkscape:connector-curvature="0" /> |
<path |
d="m 717200.2,-5700704.7 -818.5,-9967.3 -819.6,-9967.1 -820.6,-9967.1 -821.6,-9966.9 -822.6,-9966.8 -823.6,-9966.7 -824.6,-9966.5 -825.6,-9966.4 -826.6,-9966.3 -827.6,-9966.2 9966.6,-828.1 9967.6,-828.3 9968.6,-828.4 9969.6,-828.5 9970.5,-828.6 9971.6,-828.9 9972.6,-828.9 9973.5,-829.1 9974.5,-829.2 9975.6,-829.3 829,9976.1 827.9,9976.3 827,9976.5 825.9,9976.6 825,9976.6 824,9977 822.9,9976.9 821.9,9977.1 821,9977.3 819.9,9977.4 -9977,819.2 -9976,819.3 -9975,819 -9974,818.9 -9972.9,818.8 -9971.9,818.6 -9971,818.6 -9969.9,818.3 -9968.8,818.2 -9967.9,818.1 z" |
id="path2233" |
inkscape:connector-curvature="0" /> |
<path |
d="m 816924.7,-5708891.7 -819.9,-9977.4 -821,-9977.3 -821.9,-9977.1 -822.9,-9976.9 -824,-9977 -825,-9976.6 -825.9,-9976.6 -827,-9976.5 -827.9,-9976.3 -829,-9976.1 9976.5,-829.5 9977.5,-829.7 9978.5,-829.9 9979.5,-829.9 9980.5,-830.2 9981.5,-830.2 9982.5,-830.5 9983.5,-830.6 9984.5,-830.7 9985.5,-830.9 830.5,9986.1 829.5,9986.2 828.5,9986.3 827.5,9986.7 826.5,9986.7 825.5,9986.9 824.5,9987 823.5,9987.2 822.5,9987.4 821.5,9987.6 -9987.2,820.9 -9986.1,820.7 -9985.2,820.6 -9984.1,820.4 -9983.1,820.3 -9982.1,820.1 -9981.1,820 -9980.1,819.7 -9979,819.6 -9978,819.6 z" |
id="path2234" |
inkscape:connector-curvature="0" /> |
<path |
d="m 916750.5,-5717093.6 -821.5,-9987.6 -822.5,-9987.4 -823.5,-9987.2 -824.5,-9987 -825.5,-9986.9 -826.5,-9986.7 -827.5,-9986.7 -828.5,-9986.3 -829.5,-9986.2 -830.5,-9986.1 9986.5,-831.1 9987.5,-831.3 9988.5,-831.4 9989.4,-831.5 9990.4,-831.9 9991.4,-831.9 9992.4,-832.2 9993.4,-832.3 9994.4,-832.5 9995.4,-832.7 832.3,9995.9 831.3,9996.2 830.3,9996.4 829.3,9996.5 828.3,9996.7 827.3,9997 826.3,9997.1 825.3,9997.3 824.3,9997.5 823.3,9997.7 -9997.3,822.6 -9996.2,822.5 -9995.3,822.4 -9994.2,822.1 -9993.2,822 -9992.2,821.7 -9991.2,821.6 -9990.2,821.4 -9989.1,821.2 -9988.2,821.1 z" |
id="path2235" |
inkscape:connector-curvature="0" /> |
<path |
d="m 704492.4,-5800000 -237.4,-5720.4 -419.8,-10108.3 -420.3,-10108.5 -420.8,-10108.5 -421.3,-10108.7 -421.8,-10108.8 -422.3,-10108.9 -422.9,-10109 -423.4,-10109.1 -423.9,-10109.2 -138.4,-3300.5 318.9,-26.9 837.5,9964.9 836.5,9965 835.5,9965.2 834.5,9965.3 833.6,9965.4 832.5,9965.6 831.6,9965.6 830.6,9965.8 829.6,9965.9 828.6,9966.1 -4476.9,372.1 z" |
id="path2236" |
inkscape:connector-curvature="0" /> |
<path |
d="m 708969.4,-5800372 -828.6,-9966.1 -829.6,-9965.9 -830.6,-9965.8 -831.6,-9965.6 -832.5,-9965.6 -833.6,-9965.4 -834.5,-9965.3 -835.5,-9965.2 -836.5,-9965 -837.5,-9964.9 9965.3,-838 9966.3,-838.1 9967.3,-838.3 9968.2,-838.4 9969.3,-838.5 9970.2,-838.6 9971.2,-838.9 9972.2,-838.9 9973.1,-839.1 9974.1,-839.2 838.8,9974.7 837.8,9974.8 836.8,9974.9 835.9,9975.2 834.9,9975.2 833.9,9975.4 833,9975.6 831.9,9975.7 830.9,9975.9 830,9976 -9975.6,829.3 -9974.5,829.2 -9973.5,829.1 -9972.6,828.9 -9971.6,828.9 -9970.5,828.6 -9969.6,828.5 -9968.6,828.4 -9967.6,828.3 -9966.6,828.1 z" |
id="path2237" |
inkscape:connector-curvature="0" /> |
<path |
d="m 808680.2,-5808659.5 -830,-9976 -830.9,-9975.9 -831.9,-9975.7 -833,-9975.6 -833.9,-9975.4 -834.9,-9975.2 -835.9,-9975.2 -836.8,-9974.9 -837.8,-9974.8 -838.8,-9974.7 9975.1,-839.3 9976.1,-839.5 9977,-839.7 9978.1,-839.8 9979,-839.9 9980,-840.1 9980.9,-840.2 9981.9,-840.4 9982.9,-840.6 9983.9,-840.7 840.3,9984.4 839.4,9984.6 838.4,9984.7 837.4,9984.9 836.4,9985.1 835.5,9985.2 834.5,9985.4 833.5,9985.6 832.5,9985.7 831.5,9985.9 -9985.5,830.9 -9984.5,830.7 -9983.5,830.6 -9982.5,830.5 -9981.5,830.2 -9980.5,830.2 -9979.5,829.9 -9978.5,829.9 -9977.5,829.7 -9976.5,829.5 z" |
id="path2238" |
inkscape:connector-curvature="0" /> |
<path |
d="m 908490.3,-5816961.7 -831.5,-9985.9 -832.5,-9985.7 -833.5,-9985.6 -834.5,-9985.4 -835.5,-9985.2 -836.4,-9985.1 -837.4,-9984.9 -838.4,-9984.7 -839.4,-9984.6 -840.3,-9984.4 9984.8,-840.9 9985.8,-841 9986.7,-841.2 9987.7,-841.5 9988.7,-841.6 9989.6,-841.8 9990.7,-842 9991.6,-842.1 9992.6,-842.3 9993.6,-842.5 842.1,9994.2 841.1,9994.3 840.2,9994.4 839.2,9994.8 838.2,9994.8 837.2,9995 836.2,9995.3 835.3,9995.4 834.3,9995.7 833.3,9995.8 -9995.4,832.7 -9994.4,832.5 -9993.4,832.3 -9992.4,832.2 -9991.4,831.9 -9990.4,831.9 -9989.4,831.5 -9988.5,831.4 -9987.5,831.3 -9986.5,831.1 z" |
id="path2239" |
inkscape:connector-curvature="0" /> |
<path |
d="m 700320.1,-5900000 -286,-6808.8 -34.2,-813 639,7595 -318.9,26.9 z" |
id="path2240" |
inkscape:connector-curvature="0" /> |
<path |
d="m 700000,-5907621.8 -390.7,-9296.4 -425.4,-10109.6 -425.9,-10109.8 -426.4,-10109.8 -426.9,-10109.9 -427.4,-10110 -427.9,-10110.1 -428.4,-10110.2 -428.9,-10110.4 -93.5,-2201.9 6076.7,-517 9965.1,-847.8 9966,-847.9 9967,-848 9967.9,-848.2 9968.9,-848.3 9969.8,-848.4 9970.8,-848.5 9971.7,-848.7 9972.7,-848.8 848.5,9973.2 847.4,9973.5 846.5,9973.4 845.6,9973.8 844.6,9973.7 843.7,9973.9 842.6,9974.1 841.7,9974.2 840.8,9974.4 839.7,9974.5 -9974.1,839.2 -9973.1,839.1 -9972.2,838.9 -9971.2,838.9 -9970.2,838.6 -9969.3,838.5 -9968.2,838.4 -9967.3,838.3 -9966.3,838.1 -9965.3,838 -639,-7595 z" |
id="path2241" |
inkscape:connector-curvature="0" /> |
<path |
d="m 800336.3,-5908412.8 -839.7,-9974.5 -840.8,-9974.4 -841.7,-9974.2 -842.6,-9974.1 -843.7,-9973.9 -844.6,-9973.7 -845.6,-9973.8 -846.5,-9973.4 -847.4,-9973.5 -848.5,-9973.2 9973.6,-849 9974.6,-849.1 9975.5,-849.3 9976.5,-849.4 9977.5,-849.5 9978.4,-849.7 9979.3,-849.8 9980.3,-850.1 9981.2,-850.2 9982.2,-850.3 850,9982.8 849,9982.8 848.1,9983.2 847.1,9983.2 846.1,9983.5 845.2,9983.5 844.2,9983.8 843.3,9983.9 842.3,9984 841.3,9984.3 -9983.9,840.7 -9982.9,840.6 -9981.9,840.4 -9980.9,840.2 -9980,840.1 -9979,839.9 -9978.1,839.8 -9977,839.7 -9976.1,839.5 -9975.1,839.3 z" |
id="path2242" |
inkscape:connector-curvature="0" /> |
<path |
d="m 900130.9,-5916813.2 -841.3,-9984.3 -842.3,-9984 -843.3,-9983.9 -844.2,-9983.8 -845.2,-9983.5 -846.1,-9983.5 -847.1,-9983.2 -848.1,-9983.2 -849,-9982.8 -850,-9982.8 9983.1,-850.6 9984.1,-850.7 9985.1,-850.8 9986,-851.1 9987,-851.2 9987.9,-851.4 9988.8,-851.5 9989.8,-851.7 9990.8,-851.9 9991.7,-852 851.7,9992.2 850.8,9992.5 849.8,9992.6 848.9,9992.9 847.9,9992.9 846.9,9993.2 846,9993.4 845,9993.5 844,9993.8 843.1,9993.9 -9993.6,842.5 -9992.6,842.3 -9991.6,842.1 -9990.7,842 -9989.6,841.8 -9988.7,841.6 -9987.7,841.5 -9986.7,841.2 -9985.8,841 -9984.8,840.9 z" |
id="path2243" |
inkscape:connector-curvature="0" /> |
</g> |
</g> |
</svg> |
/tags/v5.12-baouque/services/presentations/images/cartes/france_utm_600x564.txt |
---|
New file |
0,0 → 1,0 |
X131T=188&Y131T=552&X231T=441&Y231T=552&X131TUTM=250000&Y131TUTM=4600000&X231TUTM=750000&Y231TUTM=4600000&X132T=439&Y132T=552&X232T=595&Y232T=551&X132TUTM=249000&Y132TUTM=4600000&angle3132=356&X130T=7&Y130T=552&X230T=188&Y230T=536&X130TUTM=394500&Y130TUTM=4603000&angle3031=364.5&void=0 |
Property changes: |
Added: svn:eol-style |
+native |
\ No newline at end of property |
/tags/v5.12-baouque/services/presentations/images/cartes/test.svg |
---|
New file |
0,0 → 1,110 |
<?xml version="1.0" standalone="no"?> |
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" |
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> |
<svg |
xmlns="http://www.w3.org/2000/svg" |
version="1.0" |
x="0" |
y="0" |
width="900" |
height="1000" |
viewBox="0 0 1800 1700" |
preserveAspectRatio="xMinYMin" |
id="svgFuseau31" |
> |
<style type="text/css"> |
.bordure { |
fill-opacity: 0; |
fill:white; |
stroke:black; |
stroke-opacity: 1; |
stroke-width:1; |
stroke-dasharray: none; |
} |
.carre100k{ |
fill-opacity:0; |
stroke:black; |
stroke-opacity:1; |
stroke-width:100; |
stroke-dasharray: none; |
} |
</style> |
<defs> |
<pattern id="grid100km" width="100" height="100" patternUnits="userSpaceOnUse"> |
<path d="M 0 0, L 100 0, L 100 100,L 0 100, L 0 0" style="fill:white;stroke:lightgray;stroke-width:1"/> |
</pattern> |
<pattern id="grid10km" width="10" height="10" patternUnits="userSpaceOnUse"> |
<path d="M 0 0, L 10 0, L 10 10,L 0 10, L 0 0" style="fill:white;stroke:lightgray;stroke-width:1"/> |
</pattern> |
</defs> |
<g> |
<g title="UTM Fuseau 30 (angle3031=364.5)" |
transform="translate(200,0) rotate(364.5 400 0)"> |
<g |
title="UTM 30 U" |
id="UTM30U"> |
<g transform="translate(0,600) scale(1,-1)"> |
<!--grille 31U : coordonnées en Km--> |
<rect x="0" y="0" stroke="black" width="600" height="600" style="fill:url(#grid10km);fill-opacity:1;stroke:lightgray;stroke-width:10"/> |
<rect x="0" y="0" stroke="black" width="600" height="600" style="fill:url(#grid100km);fill-opacity:0.5;stroke:lightgray;stroke-width:10"/> |
</g> |
</g> |
<g |
transform="translate(0,600)" |
title="UTM 30 T" |
id="UTM30T"> |
<g transform="translate(0,900) scale(1,-1)"> |
<!--grille 31T : coordonnées en Km--> |
<rect x="0" y="0" stroke="black" width="600" height="900" style="fill:url(#grid10km);fill-opacity:1;stroke:lightgray;stroke-width:10"/> |
<rect x="0" y="0" stroke="black" width="600" height="900" style="fill:url(#grid100km);fill-opacity:0.5;stroke:lightgray;stroke-width:10"/> |
</g> |
</g> |
</g> |
<g title="UTM Fuseau 31" |
transform="translate(600,0)" > |
<g |
title="UTM 31 U" |
id="UTM31U"> |
<g transform="translate(0,600) scale(1,-1)"> |
<!--grille 31U : coordonnées en Km--> |
<rect x="0" y="0" stroke="black" width="600" height="600" style="fill:url(#grid10km);fill-opacity:0.3;stroke:lightgray;stroke-width:10"/> |
<rect x="0" y="0" stroke="black" width="600" height="600" style="fill:url(#grid100km);fill-opacity:0.5;stroke:lightgray;stroke-width:10"/> |
</g> |
</g> |
<g |
transform="translate(0,600)" |
title="UTM 31 T" |
id="UTM31T"> |
<g transform="translate(0,900) scale(1,-1)"> |
<!--grille 31T : coordonnées en Km--> |
<rect x="0" y="0" stroke="black" width="600" height="900" style="fill:url(#grid10km);fill-opacity:0.3;stroke:lightgray;stroke-width:10"/> |
<rect x="0" y="0" stroke="black" width="600" height="900" style="fill:url(#grid100km);fill-opacity:0.5;stroke:lightgray;stroke-width:10"/> |
</g> |
</g> |
</g> |
<g title="UTM Fuseau 32 (angle3132=356)" |
transform="translate(1000,0) rotate(356)"> |
<g |
title="UTM 32 U (angle3132=356)" |
id="UTM31U"> |
<g transform="translate(0,600) scale(1,-1)"> |
<!--grille 31U : coordonnées en Km--> |
<rect x="0" y="0" stroke="black" width="600" height="600" style="fill:url(#grid10km);fill-opacity:0.3;stroke:lightgray;stroke-width:10"/> |
<rect x="0" y="0" stroke="black" width="600" height="600" style="fill:url(#grid100km);fill-opacity:0.5;stroke:lightgray;stroke-width:10"/> |
</g> |
</g> |
<g |
transform="translate(0,600)" |
title="UTM 32 T" |
id="UTM31T"> |
<g transform="translate(0,900) scale(1,-1)"> |
<!--grille 31T : coordonnées en Km--> |
<rect x="0" y="0" stroke="black" width="600" height="900" style="fill:url(#grid10km);fill-opacity:1;stroke:lightgray;stroke-width:10"/> |
<rect x="0" y="0" stroke="black" width="600" height="900" style="fill:url(#grid100km);fill-opacity:0.5;stroke:lightgray;stroke-width:10"/> |
</g> |
</g> |
</g> |
</g> |
</svg> |
/tags/v5.12-baouque/services/presentations/images/cartes/france_utm_600x564.jpg |
---|
Cannot display: file marked as a binary type. |
svn:mime-type = image/jpeg |
/tags/v5.12-baouque/services/presentations/images/cartes/france_utm_600x564.jpg |
---|
New file |
Property changes: |
Added: svn:mime-type |
+image/jpeg |
\ No newline at end of property |
/tags/v5.12-baouque/services/presentations/images/cartes/france_utm_miniature.txt |
---|
New file |
0,0 → 1,0 |
X131T=71&Y131T=209&X231T=167&Y231T=209&X131TUTM=250000&Y131TUTM=4600000&X231TUTM=750000&Y231TUTM=4600000&X132T=166&Y132T=209&X232T=226&Y232T=208&X132TUTM=249000&Y132TUTM=4600000&angle3132=356&X130T=3&Y130T=209&X230T=71&Y230T=203&X130TUTM=394500&Y130TUTM=4603000&angle3031=364.5&void=0 |
Property changes: |
Added: svn:eol-style |
+native |
\ No newline at end of property |
/tags/v5.12-baouque/services/presentations/images/cartes/france_utm_miniature.jpg |
---|
Cannot display: file marked as a binary type. |
svn:mime-type = image/jpeg |
/tags/v5.12-baouque/services/presentations/images/cartes/france_utm_miniature.jpg |
---|
New file |
Property changes: |
Added: svn:mime-type |
+image/jpeg |
\ No newline at end of property |
/tags/v5.12-baouque/services/presentations/images/cartes/france_utm_600x564.png |
---|
Cannot display: file marked as a binary type. |
svn:mime-type = image/png |
/tags/v5.12-baouque/services/presentations/images/cartes/france_utm_600x564.png |
---|
New file |
Property changes: |
Added: svn:mime-type |
+image/png |
\ No newline at end of property |
/tags/v5.12-baouque/services/presentations/images/cartes/france_utm_miniature.png |
---|
Cannot display: file marked as a binary type. |
svn:mime-type = image/png |
/tags/v5.12-baouque/services/presentations/images/cartes/france_utm_miniature.png |
---|
New file |
Property changes: |
Added: svn:mime-type |
+image/png |
\ No newline at end of property |
/tags/v5.12-baouque/services/presentations/images/cartes/france_02.tpl.svg |
---|
New file |
0,0 → 1,325 |
<?php echo '<?xml version="1.0" encoding="UTF-8" standalone="no"?>'; ?> |
<svg width="<?= $largeur; ?>" height="<?= $hauteur; ?>" preserveAspectRatio="none" |
xmlns="http://www.w3.org/2000/svg" version="1.1"> |
<title>Carte de France</title> |
<defs> |
<pattern id="fond" x="0" y="0" width="100%" height="100%" patternUnits="objectBoundingBox" > |
<rect x="0" y="0" width="50" height="50" style="fill:#FFFFFF"/> |
</pattern> |
</defs> |
<style id="cssCarte" type="text/css"> |
@CHARSET "UTF-8"; |
/* Pour cacher, une zone de la carte passer son opacity à zéro. |
* |
* Pour modifier le style d'un département utiliser les classe : .departement |
* Par exemple : .departement61, .departement05, .departement972 |
* |
* Pour modifier le style d'une région utiliser les classe : |
* .alsace, .aquitaine, .auvergne, .bretagne, .bourgogne, .centre, .champagne, .corse, .franche-comte, .idf, |
* .languedoc, .limousin, .lorraine, .midi (Midi-Pyrénées), .basse-normandie, .haute-normandie, |
* .npdc (Nord-Pas-de-Calais), .paca (Provence-Alpes-Cote d'Azur), .pdll (Pays de la Loire), .poitou, |
* .rhone-alpes |
*/ |
.bordure { |
fill-opacity: 1; |
fill:white; |
stroke:black; |
stroke-opacity: 1; |
stroke-width:1; |
stroke-miterlimit: 3.97446823; |
stroke-dasharray: none; |
} |
.cadre { |
fill: none; |
fill-rule: evenodd; |
stroke: rgb(51, 51, 51); |
stroke-width: 0.918924px; |
stroke-linecap: butt; |
stroke-linejoin: miter; |
stroke-opacity: 1; |
} |
.txt { |
font-size:9px; |
font-style:normal; |
font-variant:normal; |
font-weight:normal; |
font-stretch:normal; |
fill:#000000; |
fill-opacity:1; |
stroke:none; |
stroke-width:1px; |
stroke-linecap:butt; |
stroke-linejoin:miter; |
stroke-opacity:1; |
font-family:Sans; |
} |
.land { |
fill: #E0E3E5; |
fill-opacity: 1; |
stroke: white; |
stroke-opacity: 1; |
stroke-width:0.5; |
stroke-miterlimit: 3.97446823; |
stroke-dasharray: none; |
} |
.titre{ |
width:50px; |
} |
#couche-num-dep text{ |
font-size:9px; |
font-style:italic; |
font-variant:normal; |
font-weight:bold; |
font-stretch:normal; |
text-align:start; |
line-height:100%; |
text-anchor:start; |
fill:#000000; |
fill-opacity:1; |
stroke:none; |
stroke-width:1px; |
stroke-linecap:butt; |
stroke-linejoin:miter; |
stroke-opacity:1; |
display:inline; |
font-family:Serif; |
} |
.mayotte { |
opacity:1; |
} |
.dom { |
opacity:1; |
} |
.idfbig { |
opacity:1; |
} |
.idfsmall { |
opacity:0; |
} |
<?= $css; ?> |
</style> |
<rect x="0" y="0" width="<?= $largeur; ?>" height="<?= $hauteur; ?>" class="bordure" /> |
<g |
style="font-size:12;fill:none;stroke:#000000;stroke-width:600.4;stroke-linecap:round;stroke-linejoin:round;" |
viewBox="-130372.3 -5686867.2 1200851.3 1118189.4" |
id="fra"> |
<path |
d="M 505115.8 -5440680 L 505491.8 -5441181 L 506226.1 -5441310 L 506660.4 -5441953 L 506726.2 -5443411 L 507554.9 -5442682 L 508149.1 -5442763 L 508402.6 -5443031 L 508157.1 -5443302 L 507689.1 -5443859 L 509145.1 -5443744 L 509124.8 -5444127 L 510256.9 -5445118 L 509897.8 -5445601 L 509132.8 -5445648 L 508159.8 -5446242 L 508235.8 -5448822 L 507352.1 -5449548 L 506201.8 -5446843 L 506754.5 -5445085 L 505985.6 -5445711 L 505820.2 -5446056 L 506115.6 -5448310 L 505857.9 -5449027 L 505188.5 -5449365 L 504493.8 -5449040 L 504264.3 -5449315 L 504344.2 -5450297 L 503686.7 -5450578 L 503051.2 -5450848 L 502425.4 -5450484 L 502133.8 -5451196 L 501093.6 -5451654 L 500336.3 -5451511 L 499998.9 -5451322 L 499786.3 -5450999 L 499919.3 -5449477 L 500334.2 -5448405 L 501737 -5448753 L 502053.7 -5448051 L 502438.7 -5448020 L 502488.1 -5447695 L 502642.7 -5446420 L 501855.8 -5446510 L 501463.9 -5446570 L 501046.9 -5447618 L 499277.3 -5448949 L 498779.2 -5448391 L 498523.6 -5448114 L 498169.9 -5448274 L 497827.2 -5448454 L 497656.8 -5448790 L 497664 -5450946 L 497279.7 -5451819 L 496884.6 -5452799 L 497294.8 -5453388 L 499616.7 -5453765 L 500010.8 -5453804 L 500814.4 -5453065 L 500560.1 -5452388 L 501564.4 -5451985 L 502736.3 -5452887 L 502320.7 -5454659 L 502320.6 -5454709 L 502291.4 -5455099 L 501846.3 -5456575 L 502143.7 -5457270 L 501908.7 -5457791 L 501905.4 -5458167 L 502464.4 -5458668 L 502421.8 -5459389 L 502099.2 -5459579 L 501304.8 -5458892 L 500936.9 -5458935 L 501235.3 -5459635 L 500568.9 -5459972 L 499480.2 -5459652 L 499098 -5460586 L 497729.2 -5461247 L 497977.7 -5461465 L 498349.8 -5462002 L 497526.9 -5463063 L 497312.4 -5463334 L 499789.1 -5465122 L 500045.7 -5465420 L 500559.2 -5465164 L 500838.1 -5465093 L 502445.4 -5464179 L 502554.7 -5463819 L 503409.2 -5465048 L 504906.6 -5466216 L 505203.7 -5466282 L 505506.4 -5467126 L 505814.6 -5469223 L 506778.6 -5469691 L 506524 -5471882 L 506873 -5471853 L 506900.4 -5474068 L 506851.1 -5474438 L 506834.5 -5474637 L 506811.9 -5474838 L 506789 -5475886 L 507214.1 -5476443 L 507955.9 -5476356 L 508759.4 -5475608 L 511584.1 -5476460 L 511918.4 -5476627 L 511683.8 -5476819 L 511995.8 -5477301 L 511756.4 -5477599 L 511199.4 -5478107 L 510877.6 -5478227 L 509352.1 -5478978 L 509003.3 -5479059 L 507709.5 -5479663 L 507649.9 -5480360 L 508886.3 -5481061 L 508740.2 -5482492 L 508393.5 -5482663 L 507721.4 -5483601 L 507377.7 -5483765 L 506933.6 -5485183 L 508827.4 -5485606 L 509221.6 -5486685 L 509079 -5487843 L 509481.3 -5488018 L 509500.1 -5489890 L 509106.4 -5490540 L 509156 -5491300 L 510025.6 -5491628 L 509958.2 -5491933 L 509743.8 -5492242 L 508955.2 -5493897 L 508836.5 -5494537 L 508591.1 -5494811 L 507352.8 -5496066 L 507153.3 -5496318 L 506744.4 -5496816 L 506961.6 -5496919 L 507875.8 -5497522 L 508132.3 -5497794 L 507967 -5498116 L 508126.4 -5498780 L 507640.5 -5499748 L 506955 -5499938 L 507167.3 -5500597 L 507760.7 -5500826 L 507812.1 -5501499 L 508139.3 -5501615 L 508920.2 -5501112 L 509169.1 -5502042 L 509018.9 -5502398 L 508389.9 -5503327 L 509086.4 -5505039 L 508562.6 -5506076 L 508688.6 -5506066 L 508203.3 -5508260 L 507267.7 -5509342 L 507173.5 -5509695 L 506987.8 -5510770 L 506837 -5511791 L 507255 -5512756 L 506870.1 -5512779 L 505334.4 -5512807 L 504724.5 -5513259 L 504872.2 -5513581 L 504437.2 -5514472 L 505883.1 -5515489 L 506211.3 -5515625 L 506090.1 -5515974 L 506227.3 -5517041 L 505807.7 -5517643 L 505953.9 -5518237 L 506147.4 -5518505 L 505974.8 -5518681 L 505719.3 -5518901 L 504399.3 -5518776 L 504312.9 -5519506 L 504159.3 -5520160 L 505040.2 -5520674 L 505333.6 -5520866 L 505618.7 -5520953 L 505915.1 -5521143 L 506107.2 -5521684 L 506011 -5522032 L 505754.9 -5523815 L 505140 -5524703 L 505358.6 -5524990 L 505982.1 -5525269 L 506151.4 -5524965 L 506023.2 -5523943 L 506356.9 -5523846 L 508609.5 -5525775 L 508608.9 -5526058 L 508517 -5526580 L 508859.1 -5527598 L 508681 -5528910 L 508501.7 -5529215 L 508936.6 -5529666 L 509107.2 -5530411 L 509958.6 -5531650 L 511572.7 -5532842 L 511899.9 -5532952 L 512018.5 -5533251 L 511663.8 -5533349 L 511701.6 -5533710 L 511809.7 -5534711 L 512295.7 -5535228 L 513895.5 -5536291 L 514614.2 -5537175 L 514313.2 -5537122 L 513882.2 -5537551 L 513534.1 -5537439 L 512819 -5537298 L 511910.4 -5537855 L 511238.6 -5537867 L 511489.1 -5538109 L 512366.7 -5539896 L 512460.2 -5540119 L 514672 -5540777 L 516520.4 -5542149 L 516852.9 -5541951 L 517577.3 -5542231 L 517632.2 -5542201 L 517767.5 -5541876 L 518421.8 -5541627 L 518632.2 -5542292 L 518972.9 -5542207 L 519232.7 -5542150 L 519487.5 -5542078 L 520006.5 -5541190 L 519690.3 -5541057 L 520556.9 -5540491 L 521624.2 -5540763 L 521940.3 -5540862 L 522256.4 -5540963 L 523574.2 -5540579 L 524250.4 -5540753 L 524715.3 -5541741 L 525292 -5542127 L 525186.7 -5542474 L 525393.3 -5542794 L 526906 -5542876 L 527836.5 -5542286 L 528217.4 -5542297 L 528646.1 -5542682 L 529861 -5541817 L 530544.9 -5541878 L 530800.3 -5541602 L 530752.7 -5541303 L 534849.2 -5541050 L 535223 -5540980 L 536302.3 -5542274 L 536431.9 -5542588 L 536509.4 -5542827 L 538065.8 -5543213 L 538909.5 -5544673 L 539590.7 -5544878 L 539960.6 -5544895 L 540775.2 -5544796 L 541336.2 -5544387 L 541598.7 -5544149 L 542674.8 -5543802 L 543650.3 -5542649 L 543724.5 -5542275 L 543875.9 -5541967 L 544113.4 -5541717 L 544639.1 -5542140 L 544896.5 -5542358 L 545256.7 -5542501 L 546191.6 -5543061 L 547239.5 -5542590 L 547543.8 -5543264 L 547216.1 -5543405 L 547255.9 -5544335 L 547792.2 -5545041 L 548090.2 -5545087 L 550640 -5546281 L 550982.1 -5546379 L 551325.6 -5546691 L 551761.4 -5546123 L 553303.4 -5545245 L 553528.8 -5544966 L 555338 -5544701 L 555645.5 -5544487 L 555841.8 -5544144 L 556962.1 -5544412 L 558217.3 -5543573 L 558564.9 -5543400 L 559733.3 -5544273 L 560078.5 -5544389 L 560878.9 -5543590 L 562362.1 -5543281 L 563338.9 -5542708 L 563414.2 -5542337 L 563057 -5542208 L 563662 -5541729 L 563722.9 -5540580 L 563719.2 -5540193 L 566034.8 -5541766 L 566253.3 -5542063 L 567693.9 -5542458 L 568073.8 -5542450 L 568186.2 -5542155 L 570494.5 -5544117 L 571016.9 -5543798 L 571147.3 -5543448 L 571440.3 -5542368 L 570387.4 -5539591 L 570446.4 -5538482 L 570786.6 -5538617 L 572233.6 -5538685 L 572651.8 -5537673 L 573380.8 -5537689 L 573803.2 -5537347 L 574072 -5537249 L 575048.7 -5537681 L 577220.7 -5537173 L 577578.5 -5537061 L 577914.7 -5536032 L 579016 -5536233 L 579384.8 -5536155 L 581634 -5536847 L 581956.7 -5536991 L 582182 -5537298 L 582348.8 -5536875 L 582795.2 -5536611 L 583929.3 -5536960 L 584439.9 -5536843 L 584606.6 -5536420 L 585257.1 -5536382 L 585779.2 -5536050 L 585693.2 -5534965 L 585999.8 -5534621 L 586634.8 -5534872 L 587568.7 -5534922 L 588355 -5535036 L 588774 -5535225 L 588613.5 -5534765 L 588541.1 -5534556 L 588367.2 -5533411 L 587771.5 -5532443 L 587570.6 -5530128 L 587893.5 -5529487 L 588722.3 -5529354 L 588967.3 -5528765 L 589645.1 -5528607 L 590318.5 -5528809 L 590266.8 -5528428 L 589976.8 -5524276 L 589943.2 -5523927 L 589908.6 -5523577 L 589699.1 -5523273 L 588823.9 -5522634 L 588585.5 -5521237 L 588113.6 -5520761 L 587522.7 -5517889 L 587866.5 -5517770 L 588426.3 -5516467 L 588277.7 -5516134 L 587211 -5515209 L 586954.5 -5514936 L 587371.6 -5514343 L 587539.1 -5514007 L 588274.5 -5514215 L 589550.3 -5513405 L 589914.5 -5512330 L 588749.7 -5511344 L 588451.3 -5509918 L 588563.7 -5509568 L 588410 -5509143 L 588053.7 -5508990 L 586956.9 -5508613 L 586752.4 -5508365 L 585972.3 -5507812 L 586054.7 -5507469 L 585488.5 -5506203 L 585556.1 -5505943 L 585170.9 -5505846 L 584087.9 -5505367 L 583748.7 -5505268 L 583098.1 -5504991 L 582793.8 -5504833 L 582801.6 -5503566 L 581340.4 -5503583 L 581330.7 -5503195 L 581263.1 -5500516 L 580724.2 -5499499 L 580623.6 -5498579 L 580243.4 -5498504 L 579204.5 -5498104 L 577423.5 -5498832 L 575912 -5498698 L 575689.5 -5499015 L 575315.4 -5499021 L 575061.9 -5497612 L 574179.7 -5497005 L 574563.7 -5496366 L 575740.3 -5494887 L 576688.7 -5494424 L 576970.3 -5494181 L 576685 -5493491 L 576867.5 -5492007 L 577893 -5491591 L 576677.6 -5489770 L 576011.9 -5489439 L 576126.7 -5488716 L 577261.6 -5488516 L 577853.9 -5488060 L 577836.6 -5486159 L 577771 -5485795 L 576761.2 -5486078 L 576477.7 -5484693 L 575373.4 -5484628 L 575345.7 -5484271 L 575382.9 -5483199 L 575398.4 -5482880 L 575452.8 -5481925 L 575448.2 -5481560 L 575450.5 -5481186 L 575512.2 -5480446 L 577288.9 -5477662 L 576943 -5477799 L 576610.7 -5477684 L 575912.4 -5477612 L 575224.8 -5476815 L 575360.3 -5476523 L 575654.3 -5475322 L 576100.4 -5473597 L 576020.8 -5473221 L 575468 -5472275 L 575258.4 -5470820 L 575305.7 -5470438 L 575172.7 -5468127 L 574151.4 -5468145 L 573519.8 -5467927 L 573454.4 -5468277 L 573180.5 -5468935 L 571599.3 -5470193 L 571226.3 -5470224 L 569760.5 -5469995 L 569514 -5470286 L 567805.1 -5472311 L 567689.6 -5472611 L 567075.7 -5473336 L 566824.2 -5473071 L 566037 -5471940 L 564980.2 -5471652 L 564639.9 -5471511 L 563450.1 -5470657 L 562383.4 -5470371 L 562184.9 -5470115 L 562364.8 -5469494 L 562122.7 -5468904 L 561944.3 -5468686 L 561502.8 -5468479 L 561606.2 -5468125 L 562134.4 -5467617 L 562198.2 -5466912 L 561801 -5466300 L 560448.7 -5466875 L 560127.9 -5467053 L 559786.8 -5467615 L 559404.7 -5467614 L 558282.8 -5467804 L 557565.3 -5467581 L 557288.8 -5467336 L 556595.3 -5467123 L 556427.9 -5467450 L 556138.5 -5467266 L 555001.9 -5466524 L 554176.8 -5466577 L 553785.6 -5466510 L 553800 -5466189 L 553860.9 -5465550 L 553440.1 -5465169 L 553092.9 -5465097 L 551707.4 -5464987 L 551322.2 -5464903 L 550309 -5464368 L 549892.5 -5464166 L 548573.8 -5463924 L 548380.2 -5463585 L 547011.8 -5462932 L 546819.2 -5462614 L 546653.2 -5461516 L 546348.8 -5461304 L 546499.2 -5460984 L 547636.9 -5460174 L 547862.1 -5459697 L 547335.3 -5458787 L 547989.9 -5457923 L 548320.7 -5457774 L 547981.4 -5457653 L 547607.2 -5457036 L 548716 -5454588 L 549065 -5454520 L 549211.4 -5454187 L 548419.4 -5452627 L 547361.8 -5452446 L 547608.4 -5452189 L 547611.2 -5451488 L 548176.5 -5451055 L 549208.4 -5450873 L 549598.8 -5449931 L 550725.7 -5450817 L 550955.7 -5450244 L 551253.6 -5450158 L 551203.9 -5449782 L 550741.7 -5449182 L 551403.6 -5447898 L 552817.9 -5447324 L 553894.9 -5447737 L 554662.9 -5447640 L 554509.8 -5445870 L 554499.2 -5445507 L 554190.8 -5445332 L 553835.7 -5445319 L 553492.3 -5445120 L 552198.3 -5444209 L 551847 -5444111 L 551200.2 -5443773 L 550809.2 -5444381 L 550632.6 -5444650 L 549771 -5445014 L 549437.6 -5444846 L 547654.3 -5444362 L 545440.2 -5444628 L 545196.8 -5444450 L 545104.3 -5444201 L 545105 -5443479 L 544544 -5443026 L 544433.1 -5441970 L 543675.6 -5441206 L 543790 -5440867 L 544657.9 -5440682 L 545150.4 -5439733 L 545332.9 -5439418 L 546053.5 -5437379 L 546554.7 -5436853 L 546522 -5436469 L 546053.8 -5435860 L 544247.2 -5435784 L 544001.6 -5435480 L 543755.2 -5434747 L 543037.5 -5434470 L 542816.3 -5434383 L 542801.6 -5434002 L 542646.2 -5432105 L 542755.6 -5431769 L 544805.8 -5431532 L 544883.4 -5431852 L 547381.1 -5432429 L 547999.6 -5432027 L 548376.6 -5431981 L 549426.8 -5429624 L 548786 -5428725 L 548518.5 -5428462 L 548172.1 -5428311 L 546665.6 -5428264 L 546522.9 -5427912 L 545545 -5425864 L 545328.8 -5424034 L 544997.5 -5423934 L 543990.2 -5423958 L 543154.9 -5423372 L 543348.5 -5423082 L 543879.6 -5421872 L 543304 -5421641 L 542936.7 -5421535 L 541920.5 -5421004 L 541929.8 -5420621 L 541785.5 -5418736 L 541367.4 -5418164 L 539954.2 -5418323 L 538574.2 -5417993 L 538015.8 -5417261 L 537141.7 -5415647 L 536719.8 -5413463 L 536065.1 -5413193 L 535741.8 -5413044 L 535131.3 -5412893 L 535369.2 -5412203 L 535537.7 -5411878 L 535457.2 -5411582 L 535422.7 -5411277 L 535053.5 -5411240 L 534323.1 -5411119 L 533723.6 -5409772 L 533524 -5410059 L 532503.1 -5410293 L 532532.7 -5410613 L 533001.8 -5411749 L 532725.2 -5412017 L 531599.1 -5412154 L 530856.3 -5412989 L 529790.2 -5412553 L 529083.5 -5412851 L 529239 -5413108 L 529590.5 -5413905 L 529207.4 -5413919 L 528279.1 -5413351 L 527935.3 -5413519 L 527871.9 -5415012 L 526939.6 -5416142 L 527361.3 -5417597 L 526754 -5419771 L 526339.1 -5418742 L 524031.2 -5417441 L 523061.1 -5418646 L 522772.5 -5418908 L 522751.2 -5419303 L 522706.3 -5420486 L 522155.8 -5421967 L 521879.3 -5421731 L 520620.7 -5421004 L 519573.9 -5420700 L 519257.2 -5420877 L 518865.3 -5421554 L 518967.7 -5421769 L 519090.1 -5421973 L 518808.5 -5422231 L 518547.5 -5423347 L 518503.1 -5423716 L 517846.3 -5424984 L 516765.2 -5425056 L 516663.8 -5425382 L 516614.6 -5426352 L 516297.3 -5426230 L 516183.9 -5426577 L 515160.4 -5426944 L 515133 -5427269 L 514403.7 -5428275 L 512397.7 -5429016 L 511770.1 -5429842 L 511800.4 -5430543 L 512759.6 -5431118 L 513093.3 -5432550 L 513787.9 -5432823 L 513791.6 -5433185 L 513073.7 -5433868 L 513136 -5434538 L 513015.7 -5434907 L 512124.9 -5436173 L 511452.5 -5436562 L 511930.6 -5438701 L 511565.5 -5438660 L 510506.9 -5438933 L 509985.8 -5439446 L 508928.8 -5439537 L 508745.2 -5439742 L 508282.7 -5439497 L 505692.6 -5440163 L 505114.5 -5440679 L 505115.8 -5440680 z M 499175.1 -5451027 L 499285.2 -5451056 L 499331.5 -5451186 L 499487.6 -5451214 L 499546.4 -5451099 L 499577.7 -5451239 L 499665 -5451398 L 499734 -5451392 L 499866.3 -5451551 L 499727.6 -5451708 L 499755.1 -5451948 L 499765.1 -5451962 L 500090.1 -5451934 L 500076.3 -5452029 L 499919.9 -5452360 L 499725.1 -5452462 L 499434.8 -5452344 L 499339.9 -5452420 L 499047.6 -5452298 L 499120 -5452007 L 498773.7 -5451860 L 498612.4 -5451717 L 498606.3 -5451652 L 498801.3 -5451646 L 498890.1 -5451520 L 498827.7 -5451295 L 498946.5 -5451204 L 499002.6 -5451234 L 499056.6 -5451218 L 498970.3 -5451054 L 499050.4 -5451103 L 499175.3 -5451027 L 499175.1 -5451027 z " |
id="path604" /> |
</g> |
<path id="INSEE-D2A" title="Corse-du-Sud (2A) <?= !empty($infos_zones['2A']) ? $infos_zones['2A'] : ''; ?>" class="land departement corse departement2a" d="M 530.5446,479.52925 L 530.5446,481.61726 L 532.45105,482.94875 L 535.65872,484.82493 L 535.87055,486.33798 L 533.9641,486.91294 L 530.938,487.4879 L 530.938,488.78912 L 532.05766,489.93904 L 532.26948,493.72167 L 536.41524,495.05316 L 537.9283,495.41629 L 539.25978,497.5043 L 538.32169,498.83579 L 536.80864,499.38048 L 535.65872,501.46849 L 534.53906,502.79998 L 535.08376,506.18922 L 537.9283,506.00765 L 538.68482,506.58261 L 541.34779,505.25112 L 542.10432,506.00765 L 540.77283,508.85219 L 542.10432,510.18367 L 539.83474,511.87829 L 538.32169,515.26752 L 542.46745,516.23588 L 548.33809,516.78058 L 545.88695,519.62511 C 545.88695,519.62511 544.73525,519.18082 544.22259,519.41328 C 544.20743,519.42075 544.176,519.43477 544.16207,519.44355 C 544.15771,519.44677 544.13601,519.47043 544.13181,519.47381 C 544.12775,519.47735 544.10544,519.50037 544.10154,519.50407 C 544.09797,519.5081 544.07468,519.53014 544.07128,519.53433 C 544.06482,519.54305 544.04678,519.55517 544.04102,519.56459 C 544.03833,519.56947 544.04353,519.58979 544.04102,519.59485 C 544.03638,519.60534 544.01463,519.64415 544.01076,519.65537 C 544.00903,519.66117 544.01229,519.67964 544.01076,519.68563 C 544.00812,519.698 543.98229,519.73301 543.9805,519.74616 C 543.97915,519.7597 543.98096,519.79232 543.9805,519.80668 C 543.98051,520.75233 542.67928,523.04461 542.67928,523.04461 L 544.55546,525.10236 L 547.97496,527.19037 L 554.39029,528.88499 L 556.26648,529.64151 L 557.99136,530.39804 L 556.84144,532.48605 L 559.86754,532.30448 L 560.4425,533.63597 L 563.4686,533.63597 L 564.22513,530.03491 L 562.31868,529.64151 L 564.98165,526.82724 L 564.04356,525.85888 L 564.22513,524.16427 L 567.64463,522.28808 L 567.82619,520.20007 L 565.55661,520.01851 L 564.04356,521.31973 L 564.04356,519.44355 L 567.06967,519.26198 L 568.00776,516.9924 L 568.76428,510.36524 L 568.18932,507.5207 L 568.1288,504.79721 L 564.83035,506.976 L 560.89642,507.12731 L 560.56354,504.40381 L 561.07798,503.70781 L 559.86754,502.8605 L 559.53467,498.23056 L 559.02023,497.38326 L 556.96248,497.38326 L 555.93361,496.53595 L 555.93361,493.26776 L 554.57186,492.42045 L 553.54299,491.90601 L 551.48524,489.33382 L 551.63654,487.79051 L 549.09461,487.79051 L 548.21704,485.21832 L 544.61598,485.21832 L 542.7398,482.64613 L 543.25424,481.79883 L 542.07406,481.10282 L 539.3203,481.61726 L 538.29143,480.95152 L 534.53906,480.95152 L 534.17593,479.92264 L 532.05766,479.52925 L 530.5446,479.52925 z "/> |
<path id="INSEE-D2B" title="Haute-Corse (2B) <?= !empty($infos_zones['2B']) ? $infos_zones['2B'] : ''; ?>" class="land departement corse departement2b" d="M 562.13712,441.70296 L 559.29258,443.60941 L 559.68597,445.48559 L 561.19903,447.39204 L 559.50441,448.69326 L 560.26093,450.20631 L 559.11102,451.5378 L 559.11102,453.23242 L 561.01746,454.95729 L 561.01746,457.59 L 559.86754,460.04115 L 558.56632,460.61611 L 557.05327,458.5281 L 554.39029,458.73992 L 553.81534,458.34653 L 551.54576,458.34653 L 549.48801,460.25297 L 548.70122,463.46064 L 543.79893,464.39873 L 540.01631,467.6064 L 539.25978,469.69441 L 537.3836,469.51285 L 536.41524,468.36293 L 535.87055,471.60086 L 534.53906,472.14556 L 534.14567,475.17166 L 534.72063,476.50315 L 532.63262,478.0162 L 532.05766,479.52925 L 534.17593,479.92264 L 534.53906,480.95152 L 538.29143,480.95152 L 539.3203,481.61726 L 542.07406,481.10282 L 543.25424,481.79883 L 542.7398,482.64613 L 544.61598,485.21832 L 548.21704,485.21832 L 549.09461,487.79051 L 551.63654,487.79051 L 551.48524,489.33382 L 553.54299,491.90601 L 554.57186,492.42045 L 555.93361,493.26776 L 555.93361,496.53595 L 556.96248,497.38326 L 559.02023,497.38326 L 559.53467,498.23056 L 559.86754,502.8605 L 561.07798,503.70781 L 560.56354,504.40381 L 560.89642,507.12731 L 564.83035,506.976 L 568.1288,504.79721 L 568.00776,499.19892 L 572.54691,492.78358 L 572.54691,482.19222 L 570.67073,478.59116 L 570.09577,467.24327 L 568.76428,465.15526 L 566.31314,463.27908 L 565.91975,456.25852 L 567.06967,453.05085 L 565.55661,447.93674 L 564.61852,443.79097 L 563.83174,442.64106 L 562.13712,441.70296 z "/> |
<path id="INSEE-D20" title="Corse (20 [2A+2B]) <?= !empty($infos_zones['20']) ? $infos_zones['20'] : ''; ?>" class="land departement corse departement20" d="M 530.5446,479.52925 L 530.5446,481.61726 L 532.45105,482.94875 L 535.65872,484.82493 L 535.87055,486.33798 L 533.9641,486.91294 L 530.938,487.4879 L 530.938,488.78912 L 532.05766,489.93904 L 532.26948,493.72167 L 536.41524,495.05316 L 537.9283,495.41629 L 539.25978,497.5043 L 538.32169,498.83579 L 536.80864,499.38048 L 535.65872,501.46849 L 534.53906,502.79998 L 535.08376,506.18922 L 537.9283,506.00765 L 538.68482,506.58261 L 541.34779,505.25112 L 542.10432,506.00765 L 540.77283,508.85219 L 542.10432,510.18367 L 539.83474,511.87829 L 538.32169,515.26752 L 542.46745,516.23588 L 548.33809,516.78058 L 545.88695,519.62511 C 545.88695,519.62511 544.73525,519.18082 544.22259,519.41328 C 544.20743,519.42075 544.176,519.43477 544.16207,519.44355 C 544.15771,519.44677 544.13601,519.47043 544.13181,519.47381 C 544.12775,519.47735 544.10544,519.50037 544.10154,519.50407 C 544.09797,519.5081 544.07468,519.53014 544.07128,519.53433 C 544.06482,519.54305 544.04678,519.55517 544.04102,519.56459 C 544.03833,519.56947 544.04353,519.58979 544.04102,519.59485 C 544.03638,519.60534 544.01463,519.64415 544.01076,519.65537 C 544.00903,519.66117 544.01229,519.67964 544.01076,519.68563 C 544.00812,519.698 543.98229,519.73301 543.9805,519.74616 C 543.97915,519.7597 543.98096,519.79232 543.9805,519.80668 C 543.98051,520.75233 542.67928,523.04461 542.67928,523.04461 L 544.55546,525.10236 L 547.97496,527.19037 L 554.39029,528.88499 L 556.26648,529.64151 L 557.99136,530.39804 L 556.84144,532.48605 L 559.86754,532.30448 L 560.4425,533.63597 L 563.4686,533.63597 L 564.22513,530.03491 L 562.31868,529.64151 L 564.98165,526.82724 L 564.04356,525.85888 L 564.22513,524.16427 L 567.64463,522.28808 L 567.82619,520.20007 L 565.55661,520.01851 L 564.04356,521.31973 L 564.04356,519.44355 L 567.06967,519.26198 L 568.00776,516.9924 L 568.76428,510.36524 L 568.18932,507.5207 L 568.1288,504.79721 L 564.83035,506.976 L 560.89642,507.12731 L 560.56354,504.40381 L 561.07798,503.70781 L 559.86754,502.8605 L 559.53467,498.23056 L 559.02023,497.38326 L 556.96248,497.38326 L 555.93361,496.53595 L 555.93361,493.26776 L 554.57186,492.42045 L 553.54299,491.90601 L 551.48524,489.33382 L 551.63654,487.79051 L 549.09461,487.79051 L 548.21704,485.21832 L 544.61598,485.21832 L 542.7398,482.64613 L 543.25424,481.79883 L 542.07406,481.10282 L 539.3203,481.61726 L 538.29143,480.95152 L 534.53906,480.95152 L 534.17593,479.92264 L 532.05766,479.52925 L 530.5446,479.52925 z M 562.13712,441.70296 L 559.29258,443.60941 L 559.68597,445.48559 L 561.19903,447.39204 L 559.50441,448.69326 L 560.26093,450.20631 L 559.11102,451.5378 L 559.11102,453.23242 L 561.01746,454.95729 L 561.01746,457.59 L 559.86754,460.04115 L 558.56632,460.61611 L 557.05327,458.5281 L 554.39029,458.73992 L 553.81534,458.34653 L 551.54576,458.34653 L 549.48801,460.25297 L 548.70122,463.46064 L 543.79893,464.39873 L 540.01631,467.6064 L 539.25978,469.69441 L 537.3836,469.51285 L 536.41524,468.36293 L 535.87055,471.60086 L 534.53906,472.14556 L 534.14567,475.17166 L 534.72063,476.50315 L 532.63262,478.0162 L 532.05766,479.52925 L 534.17593,479.92264 L 534.53906,480.95152 L 538.29143,480.95152 L 539.3203,481.61726 L 542.07406,481.10282 L 543.25424,481.79883 L 542.7398,482.64613 L 544.61598,485.21832 L 548.21704,485.21832 L 549.09461,487.79051 L 551.63654,487.79051 L 551.48524,489.33382 L 553.54299,491.90601 L 554.57186,492.42045 L 555.93361,493.26776 L 555.93361,496.53595 L 556.96248,497.38326 L 559.02023,497.38326 L 559.53467,498.23056 L 559.86754,502.8605 L 561.07798,503.70781 L 560.56354,504.40381 L 560.89642,507.12731 L 564.83035,506.976 L 568.1288,504.79721 L 568.00776,499.19892 L 572.54691,492.78358 L 572.54691,482.19222 L 570.67073,478.59116 L 570.09577,467.24327 L 568.76428,465.15526 L 566.31314,463.27908 L 565.91975,456.25852 L 567.06967,453.05085 L 565.55661,447.93674 L 564.61852,443.79097 L 563.83174,442.64106 L 562.13712,441.70296 z "/> |
<path id="INSEE-D82" class="land departement midi departement82" title="Tarn-et-Garonne (82)" d="M 266.55906,372.63392 L 265.22758,376.96124 L 267.31559,379.23082 L 266.3775,382.83188 L 265.22758,384.16337 L 266.01436,386.43295 L 262.4133,387.18947 L 259.56877,387.946 L 260.32529,390.57871 L 258.90302,391.00236 L 259.75033,391.78915 L 262.50409,391.78915 L 263.86583,391.12341 L 265.07627,391.78915 L 262.83696,392.81802 L 262.83696,394.5429 L 260.77921,396.08621 L 260.77921,398.29527 L 264.56184,398.47684 L 265.74202,399.68728 L 265.74202,402.0779 L 267.13402,403.43964 L 265.92358,405.31583 L 266.43802,406.3447 L 268.82864,405.31583 L 273.79145,405.31583 L 275.18346,404.46852 L 276.87807,404.46852 L 278.75426,406.70784 L 283.05132,405.49739 L 284.2315,403.62121 L 282.53689,402.74364 L 283.71707,402.25946 L 284.0802,400.53459 L 285.95638,400.71615 L 286.98526,401.89633 L 287.83257,400.53459 L 290.58632,399.50571 L 291.82702,400.08067 L 292.79538,398.47684 L 291.10076,396.60065 L 294.33869,396.60065 L 295.36756,394.72447 L 297.60688,392.66672 L 295.36756,392.66672 L 296.06357,389.76166 L 301.87368,389.06566 L 304.113,387.70391 L 306.83649,386.67503 L 307.71406,385.79746 L 306.65493,383.07397 L 308.19824,379.98735 L 305.47475,379.80578 L 305.14187,375.53898 L 301.02638,377.41516 L 298.27262,376.74942 L 296.578,378.80717 L 293.67295,378.44403 L 293.15851,381.86353 L 291.7665,381.86353 L 290.91919,379.98735 L 290.40475,379.14004 L 288.86144,379.29134 L 285.95638,382.37797 L 282.35532,382.22666 L 281.84088,379.98735 L 281.84088,378.29273 L 281.50801,377.9296 L 280.29757,379.29134 L 278.75426,379.29134 L 277.05964,377.41516 L 275.51633,377.41516 L 274.48745,375.35741 L 275.8492,373.8141 L 275.69789,372.81548 L 273.27701,372.90627 L 273.57962,373.57201 L 269.4036,374.32853 L 266.55906,372.63392 z "/> |
<path id="INSEE-D85" title="Vendee (85) <?= !empty($infos_zones['85']) ? $infos_zones['85'] : ''; ?>" class="land departement pdll departement85" d="M 187.487,222.41817 L 186.3976,224.44566 L 183.28071,224.44566 L 184.52141,225.71662 L 183.58332,228.83351 L 180.76905,229.7716 L 179.67965,228.98481 L 180.16383,225.86793 L 179.37704,224.14305 L 177.65216,224.14305 L 176.41146,225.53506 L 177.01668,229.92291 L 178.43895,231.95039 L 177.01668,233.52397 L 174.38397,233.03979 L 170.4803,232.1017 L 169.3909,229.13612 L 166.87924,228.83351 L 163.61104,227.41124 L 162.82426,225.53506 L 159.25346,223.20496 L 153.6249,230.4676 L 153.44334,235.00676 L 159.28372,240.66557 L 159.10215,242.36019 L 160.79677,242.36019 L 164.39783,253.16338 L 168.18046,255.03956 L 171.96309,258.82219 L 176.32068,258.82219 L 178.01529,262.60482 L 182.19132,262.60482 L 184.0675,265.44935 L 188.24352,267.53736 L 188.42509,264.87439 L 189.48422,265.87301 L 195.26408,262.36273 L 197.92705,262.18116 L 199.04671,265.20727 L 202.64777,263.69421 L 205.67387,265.96379 L 208.12502,264.81387 L 210.21303,264.23891 L 211.15112,263.11925 L 213.78383,261.42464 L 211.90765,259.51819 L 210.39459,260.66811 L 210.21303,259.15506 L 211.54451,256.67366 L 210.21303,254.40408 L 211.33269,252.89103 L 210.75773,247.59535 L 208.88154,244.78107 L 210.21303,243.05619 L 207.18693,239.66696 L 208.30658,237.21581 L 203.76743,233.43319 L 203.76743,231.16361 L 201.89125,228.50064 L 202.25438,228.34933 L 199.68219,226.17054 L 194.84043,226.17054 L 193.26685,225.23245 L 191.08806,224.92984 L 188.57639,222.56948 L 187.487,222.41817 z "/> |
<path id="INSEE-D56" title="Morbihan (56) <?= !empty($infos_zones['56']) ? $infos_zones['56'] : ''; ?>" class="land departement bretagne departement56" d="M 107.56762,155.63208 L 104.42047,157.14513 L 102.21142,157.14513 L 99.881318,159.02132 L 100.03262,160.41332 L 101.42463,164.01439 L 102.21142,166.82866 L 107.05318,167.61545 L 109.41354,169.49163 L 110.35163,168.37197 L 111.89495,170.42972 L 111.10816,171.36782 L 110.95685,174.15183 L 109.56485,174.15183 L 108.47545,175.87671 L 106.26639,175.87671 L 105.35856,179.59882 L 107.47684,182.98805 L 110.50294,183.74458 L 111.6226,182.04996 L 111.0779,184.10771 L 113.71061,185.25763 L 117.1301,188.64686 L 118.24976,190.73487 L 117.88663,193.18602 L 117.49324,195.66742 L 119.76281,197.36204 L 120.91273,196.03055 L 119.76281,194.5175 L 119.76281,191.12827 L 122.03239,191.67297 L 122.78892,189.40339 L 123.36388,190.73487 L 125.81502,192.82288 L 126.96494,190.91644 L 125.81502,188.28373 L 127.90303,191.12827 L 130.53574,190.73487 L 129.99104,189.40339 L 132.44218,189.97835 L 134.31837,192.24793 L 133.38028,193.76098 L 130.92913,193.00445 L 128.0846,191.67297 L 126.57155,193.57941 L 128.84112,194.33594 L 130.53574,196.96865 L 140.76397,196.03055 L 143.39668,196.60551 L 142.09545,197.72517 L 142.27702,199.45005 L 142.64015,199.7224 L 143.4572,199.57109 L 145.15182,197.87648 L 146.27147,199.1777 L 149.29758,199.1777 L 152.89864,197.30152 L 158.19432,195.21351 L 158.37589,189.91783 L 159.49554,189.31261 L 157.49832,185.56024 L 159.22319,184.16823 L 158.92058,183.23014 L 157.83119,182.59466 L 159.52581,181.80787 L 161.09938,179.93169 L 160.94807,178.0555 L 158.92058,178.0555 L 158.43641,176.20958 L 159.85868,174.3334 L 158.2851,171.51912 L 155.955,170.09685 L 153.29203,170.09685 L 152.35394,169.79424 L 152.35394,168.55354 L 153.74595,167.28258 L 154.53274,164.16569 L 154.07882,162.1382 L 153.44334,162.92499 L 149.69097,162.62238 L 147.96609,159.47523 L 146.57409,159.47523 L 144.39529,160.26202 L 144.39529,162.28951 L 141.42971,164.16569 L 139.06935,163.2276 L 138.13126,161.20011 L 137.37473,162.28951 L 135.16568,162.28951 L 134.07628,160.8975 L 132.98688,160.8975 L 130.65678,158.53714 L 127.99381,159.17262 L 125.17954,156.66096 L 122.66787,156.84252 L 121.91135,158.38583 L 118.94577,159.95941 L 115.3447,158.38583 L 114.40661,157.44774 L 112.83304,158.53714 L 110.95685,158.38583 L 110.65424,156.84252 L 107.68866,156.05573 L 107.56762,155.63208 z "/> |
<path id="INSEE-D53" title="Mayenne (53) <?= !empty($infos_zones['53']) ? $infos_zones['53'] : ''; ?>" class="land departement pdll departement53" d="M 230.06426,141.89357 L 228.18808,142.07514 L 227.40129,143.95132 L 224.58702,145.10124 L 219.4729,144.34472 L 214.35879,147.37082 L 212.48261,146.03933 L 209.63807,147.94578 L 207.55006,146.43273 L 206.21857,144.16315 L 203.4043,143.01323 L 201.49785,144.52628 L 198.29018,144.13289 L 198.10862,149.06544 L 199.04671,149.82196 L 199.04671,153.60459 L 197.14026,155.51104 L 197.14026,158.53714 L 197.71522,160.41332 L 197.71522,165.89057 L 199.04671,167.22205 L 199.04671,172.33617 L 195.83904,171.94277 L 194.50755,172.6993 L 192.05641,178.75151 L 191.08806,182.171 L 190.78545,182.83675 L 194.20494,183.53275 L 197.01922,183.53275 L 200.13611,185.56024 L 201.40707,184.01693 L 207.00536,185.71154 L 209.21441,186.98251 L 214.20748,186.80094 L 216.38628,184.62215 L 219.83604,185.71154 L 221.68196,185.71154 L 221.71222,185.7418 L 222.31744,184.31954 L 222.31744,178.69098 L 221.68196,177.75289 L 222.01483,176.8148 L 224.6778,176.6635 L 225.9185,175.5741 L 226.06981,174.63601 L 224.6778,171.18625 L 225.13172,169.79424 L 228.2486,169.49163 L 227.94599,168.70484 L 228.73278,166.82866 L 228.0973,165.40639 L 228.88408,163.86308 L 231.69836,161.50272 L 231.36549,159.02132 L 231.84966,154.96634 L 232.93906,153.09015 L 236.4796,151.94024 L 235.9349,151.90997 L 234.96655,148.49048 L 232.51541,147.55239 L 231.75888,143.40663 L 230.06426,141.89357 z "/> |
<path id="INSEE-D41" title="Loir-et-Cher (41) <?= !empty($infos_zones['41']) ? $infos_zones['41'] : ''; ?>" class="land departement centre departement41" d="M 268.79838,166.91944 L 267.52742,168.55354 L 266.01436,171.18625 L 267.89055,172.91113 L 267.70898,176.87532 L 266.95246,179.50803 L 265.04601,179.50803 L 265.04601,183.10909 L 262.4133,186.52859 L 259.56877,187.64825 L 258.23728,189.34287 L 258.81224,190.76513 L 267.98133,191.06775 L 268.76812,191.76375 L 268.64707,192.42949 L 267.28533,193.1255 L 267.55768,195.00168 L 268.76812,195.81873 L 270.67456,194.45698 L 271.21926,194.45698 L 273.39806,196.09108 L 275.3045,196.24238 L 275.57685,201.11441 L 277.05964,205.04834 L 277.05964,211.85707 L 278.14904,213.49117 L 281.81062,213.49117 L 284.65516,217.69745 L 285.71429,218.60528 L 285.74456,218.5145 L 287.651,218.24215 L 289.2851,216.8804 L 292.55329,216.7291 L 292.82564,217.2738 L 293.49138,215.79101 L 296.33592,214.82265 L 298.78706,214.97396 L 299.9975,214.5503 L 301.6316,216.06335 L 304.50639,217.69745 L 306.92728,217.54615 L 306.80623,215.095 L 307.89563,213.88456 L 308.98503,213.76352 L 309.92312,214.82265 L 313.73601,214.42926 L 316.15689,213.06751 L 315.88454,212.12942 L 315.2188,211.31237 L 315.33984,209.52697 L 317.12524,206.28904 L 319.42508,205.32069 L 319.42508,203.2932 L 319.96978,202.08276 L 318.48699,201.53806 L 317.51864,199.48031 L 315.06749,198.81457 L 314.94645,197.99752 L 317.39759,195.97003 L 320.15135,194.60829 L 318.60803,192.30845 L 311.67826,192.0361 L 310.74017,193.1255 L 308.83372,193.1255 L 308.16798,192.42949 L 305.17214,192.0361 L 304.35509,193.79124 L 302.44864,194.33594 L 300.6935,192.30845 L 300.26985,189.97835 L 298.66601,188.6166 L 296.21487,188.34425 L 294.42947,187.13381 L 294.42947,185.92337 L 293.37033,183.32092 L 295.51887,181.17239 L 295.24652,180.08299 L 294.30843,178.99359 L 293.21903,178.99359 L 293.21903,178.02524 L 294.30843,176.14906 L 294.42947,175.05966 L 292.82564,175.05966 L 290.37449,174.36366 L 288.07465,176.54245 L 285.47221,176.8148 L 281.26592,175.7254 L 280.05548,173.00191 L 278.42139,172.06382 L 277.48329,169.88503 L 274.7598,169.88503 L 273.67041,169.06798 L 275.3045,168.12989 L 275.42554,167.31284 L 273.67041,167.31284 L 270.67456,167.85754 L 268.79838,166.91944 z "/> |
<path id="INSEE-D21" title="Cote-d'Or (21) <?= !empty($infos_zones['21']) ? $infos_zones['21'] : ''; ?>" class="land departement bourgogne departement21" d="M 405.2151,171.76121 L 404.8217,174.21235 L 402.37056,175.54384 L 396.13679,175.7254 L 396.40914,177.08715 L 396.56044,178.4489 L 394.654,179.81064 L 394.654,182.11048 L 395.04739,182.53414 L 396.56044,182.53414 L 397.49853,184.13797 L 396.95384,186.86146 L 394.77504,188.49556 L 394.77504,190.12965 L 395.47105,190.67435 L 395.31974,191.06775 L 393.95799,191.61244 L 393.5646,193.63993 L 391.38581,198.26987 L 389.90302,200.44866 L 389.90302,202.62746 L 390.44771,203.56555 L 389.63067,204.65495 L 387.72422,205.59304 L 387.84527,207.49948 L 389.63067,208.58888 L 390.29641,210.07167 L 390.02406,212.12942 L 389.63067,213.61221 L 390.56876,215.24631 L 393.29225,215.79101 L 394.50269,217.69745 L 394.50269,218.5145 L 393.68564,218.78685 L 393.68564,220.75381 L 393.83695,220.81434 L 397.49853,224.59696 L 401.31142,224.47592 L 404.70066,227.04811 L 407.1518,228.83351 L 407.27285,231.13335 L 409.84503,231.67805 L 412.02383,233.43319 L 417.74316,231.4057 L 421.6771,230.16499 L 423.43224,229.89264 L 423.97693,229.10586 L 425.88338,229.2269 L 427.36617,230.16499 L 429.54496,229.6203 L 431.72376,228.13751 L 433.35785,228.31907 L 433.38811,228.13751 L 434.68934,227.38098 L 434.50777,226.41263 L 434.14464,225.29297 L 435.08273,223.77992 L 438.2904,222.26687 L 438.2904,220.75381 L 439.44032,219.24076 L 440.55998,217.72771 L 440.19685,216.39623 L 440.74154,214.30822 L 441.13494,211.28211 L 441.89146,211.28211 L 441.7099,210.16245 L 440.95337,209.40593 L 440.74154,205.6233 L 439.04693,205.44173 L 438.68379,202.41563 L 436.59578,201.44728 L 437.35231,200.50919 L 438.50223,200.14605 L 440.95337,197.30152 L 440.74154,195.78847 L 439.22849,192.76236 L 436.98918,192.36897 L 436.20239,194.27541 L 432.05663,195.21351 L 431.66324,194.27541 L 428.63713,190.49279 L 426.94252,191.43088 L 424.67294,191.24931 L 423.91641,189.73626 L 420.89031,189.91783 L 420.70874,186.71016 L 419.01413,185.56024 L 421.46527,182.92753 L 417.10768,177.05689 L 413.71845,173.45583 L 410.69234,171.76121 L 405.2151,171.76121 z "/> |
<path id="INSEE-D43" title="Haute-Loire (43) <?= !empty($infos_zones['43']) ? $infos_zones['43'] : ''; ?>" class="land departement auvergne departement43" d="M 361.09452,316.13658 L 359.73277,316.83258 L 359.73277,318.01276 L 357.67502,318.19433 L 355.79884,319.73764 L 352.37934,320.25208 L 351.59255,321.37173 L 352.19777,321.43226 L 353.04508,323.85314 L 357.34215,323.85314 L 358.18946,326.9095 L 359.3999,328.11994 L 359.73277,331.72101 L 360.76165,333.08275 L 362.8194,333.26432 L 361.60895,334.29319 L 360.58008,334.62606 L 361.45765,335.47337 L 360.42877,337.01669 L 362.48652,338.22713 L 363.5154,339.77044 L 363.5154,341.37427 L 363.96931,341.22297 L 367.38881,349.93815 L 372.2911,348.42509 L 372.65423,346.15552 L 374.56067,346.15552 L 375.3172,348.78823 L 378.82748,347.94092 L 383.18507,353.50895 L 385.90856,349.18162 L 390.81085,345.58056 L 395.35,345.58056 L 396.86305,340.85984 L 399.88916,340.64801 L 400.10098,337.07721 L 402.91526,337.07721 L 402.37056,335.74572 L 401.61403,333.29458 L 402.73369,331.38813 L 405.39666,330.26848 L 406.51632,325.72932 L 404.06518,322.88479 L 401.03907,323.06635 L 401.40221,319.46529 L 395.35,316.83258 L 393.29225,317.01415 L 389.11623,320.43364 L 385.30334,319.19294 L 384.54681,319.9192 L 382.15619,319.2232 L 380.46158,317.49832 L 379.4327,319.55607 L 376.49738,319.40477 L 375.13563,318.19433 L 374.10676,320.58495 L 372.23058,319.73764 L 371.02013,317.49832 L 369.47682,317.49832 L 368.11508,316.31814 L 366.05733,317.16545 L 363.6667,317.34702 L 362.30496,316.46945 L 361.45765,316.98389 L 361.09452,316.13658 z "/> |
<path id="INSEE-D69" title="Rhone (69) <?= !empty($infos_zones['69']) ? $infos_zones['69'] : ''; ?>" class="land departement rhone-alpes departement69" d="M 413.32505,266.72032 L 411.2673,266.90188 L 409.54242,268.5965 L 408.42277,267.08345 L 406.72815,268.5965 L 404.42831,267.08345 L 402.55213,267.08345 L 401.7956,267.65841 L 401.40221,269.8372 L 402.43108,270.65425 L 402.43108,272.50017 L 403.67178,274.55792 L 402.64291,275.79863 L 398.73924,275.79863 L 398.52741,279.49047 L 397.28671,280.73117 L 398.10375,283.8178 L 398.10375,285.66372 L 399.76811,287.29782 L 399.76811,289.56739 L 402.21925,291.83697 L 402.21925,294.49994 L 401.00881,296.34586 L 402.43108,297.19317 L 402.43108,298.61544 L 401.19038,299.64432 L 401.19038,301.30867 L 406.54658,306.24122 L 412.93166,307.27009 L 413.53688,309.11602 L 411.47913,311.56716 L 413.14349,312.59604 L 415.20124,311.77899 L 417.41029,312.11186 L 421.37449,310.14489 L 420.739,308.90419 L 418.07603,306.24122 L 422.19153,304.78869 L 427.54774,303.54799 L 431.66324,298.22205 L 428.97,295.95247 L 429.12131,293.9855 L 425.27816,292.86585 L 422.79675,293.68289 L 422.40336,290.38444 L 420.13378,288.32669 L 418.68125,288.11486 L 414.98941,285.87555 L 415.59463,284.42302 L 415.59463,278.03794 L 416.6235,276.61567 L 416.98664,272.19756 L 416.35116,273.71061 L 415.01967,273.52905 L 414.29341,269.74642 L 413.32505,266.72032 z "/> |
<path id="INSEE-D14" title="Calvados (14) <?= !empty($infos_zones['14']) ? $infos_zones['14'] : ''; ?>" class="land departement basse-normandie departement14" d="M 249.58263,94.807413 L 245.16452,95.5942 L 237.96239,99.770222 L 229.85244,102.97789 L 223.40684,99.376828 L 207.91319,97.107251 L 204.31213,95.231067 L 198.71384,96.653336 L 199.04671,98.741347 L 197.95731,99.830744 L 198.10862,101.37406 L 201.70968,104.97512 L 203.88847,106.21582 L 205.46205,104.18833 L 206.70275,105.76191 L 205.12918,107.78939 L 206.55144,110.11949 L 205.91596,110.90628 L 207.00536,113.11534 L 206.40014,115.59674 L 204.82657,118.10841 L 202.3149,119.65172 L 200.92289,118.56232 L 199.53089,119.80302 L 201.0742,121.22529 L 199.8335,123.55539 L 196.86791,124.64479 L 200.46898,129.18394 L 204.03978,129.48655 L 206.79353,131.27195 L 210.60642,130.12203 L 213.4207,126.85384 L 217.32437,127.94324 L 220.74387,125.58288 L 222.80162,124.82635 L 224.98041,127.00515 L 228.58147,126.36967 L 231.69836,128.09454 L 235.60203,126.85384 L 239.17283,124.19087 L 241.53319,121.5279 L 243.10677,121.22529 L 243.56068,123.25278 L 244.80138,122.95017 L 244.95269,121.5279 L 248.55375,120.92268 L 249.79445,121.67921 L 253.6376,120.8319 L 254.27309,118.98597 L 254.09152,117.29136 L 252.18507,116.53483 L 252.00351,115.20335 L 253.69813,114.08369 L 253.90995,112.17724 L 252.76003,107.63809 L 250.49046,104.43042 L 252.3969,103.31076 L 252.3969,102.55424 L 250.49046,101.97928 L 249.58263,94.807413 z "/> |
<path id="INSEE-D39" title="Jura (39) <?= !empty($infos_zones['39']) ? $infos_zones['39'] : ''; ?>" class="land departement franche-comte departement39" d="M 441.80068,210.76767 L 441.89146,211.28211 L 441.13494,211.28211 L 440.74154,214.30822 L 440.19685,216.39623 L 440.55998,217.72771 L 439.44032,219.24076 L 438.2904,220.75381 L 438.2904,222.26687 L 435.08273,223.77992 L 434.14464,225.29297 L 434.50777,226.41263 L 434.68934,227.38098 L 433.38811,228.13751 L 433.17629,230.58865 L 434.68934,230.77021 L 436.41422,233.61475 L 438.50223,233.61475 L 439.62189,234.94624 L 440.95337,234.94624 L 440.55998,236.45929 L 436.20239,237.00399 L 436.59578,238.51704 L 438.10883,239.48539 L 438.10883,241.36157 L 437.53388,241.93653 L 438.68379,243.44959 L 440.37841,246.47569 L 439.62189,249.68336 L 437.71544,251.01484 L 437.92727,253.64755 L 440.19685,254.40408 L 440.95337,255.554 L 439.04693,257.06705 L 434.08412,257.67227 L 436.41422,258.5801 L 440.19685,263.87578 L 442.64799,264.99544 L 442.64799,267.65841 L 445.49253,267.26502 L 449.09359,263.30082 L 452.11969,264.81387 L 452.11969,267.08345 L 457.59694,267.08345 L 465.4648,258.42879 L 465.13193,258.24723 L 465.49507,254.28303 L 468.3396,250.8938 L 466.43316,250.13727 L 466.61472,248.98735 L 464.31489,248.77553 L 464.16358,247.41378 L 465.64637,245.93099 L 465.25298,244.4482 L 464.43593,242.54175 L 467.82516,241.45236 L 469.06587,239.69722 L 469.33822,237.51842 L 466.61472,234.91598 L 464.70828,234.40154 L 460.502,233.03979 L 460.502,229.2269 L 460.22965,226.38237 L 456.84041,226.65471 L 451.54473,224.86931 L 452.36178,222.99313 L 453.57222,220.11833 L 453.99587,218.24215 L 452.63413,216.45675 L 450.18299,214.82265 L 449.91064,212.79516 L 449.9409,211.64524 L 448.27654,211.58472 L 447.33845,212.52281 L 444.88731,212.52281 L 443.25321,211.16107 L 441.80068,210.76767 z "/> |
<path id="INSEE-D10" title="Aube (10) <?= !empty($infos_zones['10']) ? $infos_zones['10'] : ''; ?>" class="land departement champagne departement10" d="M 391.59763,134.4191 L 387.75448,136.53737 L 384.48629,138.83721 L 381.24836,138.83721 L 375.8619,142.49879 L 371.26222,143.25532 L 367.99403,139.80556 L 367.17698,139.98713 L 367.17698,140.56209 L 364.54427,141.68175 L 364.36271,143.95132 L 363.03122,145.6762 L 362.2747,149.45883 L 361.85104,152.63624 L 363.03122,153.60459 L 365.3008,153.60459 L 370.20309,158.71871 L 369.62813,163.83282 L 373.04762,166.46553 L 374.95407,165.13404 L 377.98017,168.73511 L 378.3433,172.1546 L 380.43131,174.96888 L 381.36941,177.05689 L 388.93466,177.45028 L 392.71729,175.54384 L 393.83695,177.63185 L 395.16844,177.81341 L 396.13679,175.7254 L 402.37056,175.54384 L 404.8217,174.21235 L 405.2151,171.76121 L 410.69234,171.76121 L 411.44887,172.18486 L 410.81339,169.76398 L 409.27007,168.79563 L 411.38835,166.88918 L 414.65654,166.67736 L 415.80646,164.95248 L 415.59463,158.05296 L 414.8381,154.02825 L 411.56991,152.87833 L 408.12016,148.06682 L 408.30172,145.19203 L 409.30034,143.10401 L 407.5452,142.49879 L 402.15873,143.64871 L 398.31558,143.64871 L 394.86582,138.47408 L 394.47243,134.63093 L 391.59763,134.4191 z "/> |
<path id="INSEE-D55" title="Meuse (55) <?= !empty($infos_zones['55']) ? $infos_zones['55'] : ''; ?>" class="land departement lorraine departement55" d="M 431.11854,83.913443 L 429.78705,86.092237 L 428.09243,87.211895 L 426.76095,85.910671 L 423.91641,85.910671 L 423.37171,85.154145 L 421.46527,88.724946 L 420.70874,90.056432 L 422.97832,92.900968 L 422.22179,96.683597 L 420.13378,98.378214 L 420.34561,99.7097 L 421.07188,101.58588 L 419.95222,102.7358 L 417.68264,103.85546 L 418.04577,105.94347 L 419.01413,106.12504 L 417.31951,107.63809 L 418.62073,110.48263 L 419.95222,114.65865 L 418.2576,116.53483 L 421.2837,116.35327 L 419.77065,121.07399 L 417.68264,122.01208 L 416.53272,124.85661 L 417.68264,125.79471 L 416.35116,128.06428 L 416.74455,129.57733 L 420.34561,132.42187 L 420.52718,139.04904 L 424.49137,139.624 L 426.94252,142.25671 L 431.48167,144.52628 L 433.17629,145.10124 L 437.17074,149.45883 L 436.74709,149.88249 L 440.0758,149.45883 L 440.0758,147.79447 L 443.79791,147.03795 L 443.79791,145.76699 L 444.70574,145.76699 L 444.70574,146.85638 L 447.67132,145.94855 L 448.82124,144.40524 L 448.60941,144.46576 L 448.60941,141.86331 L 446.76349,140.19896 L 446.76349,139.0793 L 448.24628,138.35303 L 449.91064,138.35303 L 449.33568,137.41494 L 448.24628,137.41494 L 447.48975,135.75058 L 447.48975,132.42187 L 446.76349,130.36412 L 448.24628,127.03541 L 449.51724,123.52513 L 448.03445,122.04234 L 447.85289,121.10425 L 448.79098,119.80302 L 451.00003,119.80302 L 451.00003,118.86493 L 449.15411,117.9571 L 448.79098,116.65588 L 450.6369,114.62839 L 448.60941,112.7522 L 449.33568,111.26941 L 447.67132,110.54315 L 446.55166,109.60506 L 446.3701,107.21443 L 446.18853,105.73164 L 445.46226,104.61199 L 445.64383,102.1911 L 446.55166,101.07145 L 446.55166,99.800483 L 445.64383,99.043957 L 445.64383,97.3796 L 445.06887,95.715244 L 444.34261,94.232454 L 442.67825,92.931229 L 439.5311,93.869321 L 437.65492,94.050887 L 436.74709,95.715244 L 435.809,96.441509 L 435.62743,95.715244 L 435.99056,94.41402 L 436.38396,93.294362 L 435.2643,91.448439 L 435.38534,89.178862 L 434.47751,89.178862 L 433.72099,85.577799 L 432.20793,84.064748 L 431.11854,83.913443 z "/> |
<path id="INSEE-D03" title="Allier (03) <?= !empty($infos_zones['03']) ? $infos_zones['03'] : ''; ?>" class="land departement auvergne departement03" d="M 345.4193,240.24192 L 342.78659,243.63115 L 341.27354,243.81272 L 339.57893,245.5376 L 337.67248,243.44959 L 332.58863,248.5637 L 332.58863,251.5898 L 333.52672,252.34633 L 333.70829,253.85938 L 331.07558,255.91713 L 328.59417,255.1606 L 323.87345,256.12896 L 321.42231,258.94323 L 320.51448,260.87994 L 320.66578,260.84968 L 322.93536,264.05735 L 322.93536,266.32692 L 324.23658,268.02154 L 325.56807,266.32692 L 327.08112,268.98989 L 329.16913,269.74642 L 331.25714,274.64871 L 331.34793,276.07097 L 334.22272,278.31029 L 335.76604,277.61429 L 336.97648,274.70923 L 338.15666,274.37636 L 338.15666,272.83304 L 340.21441,272.65148 L 340.39597,273.68035 L 342.96816,270.77529 L 345.87322,270.77529 L 346.38766,271.80417 L 345.02591,273.68035 L 347.0534,275.91967 L 347.41653,277.28142 L 352.19777,280.03517 L 358.00789,280.88248 L 359.73277,280.70091 L 362.30496,281.21535 L 364.51401,279.8536 L 366.23889,280.70091 L 366.57176,283.09153 L 368.81108,283.60597 L 371.71614,283.45467 L 372.56345,285.51242 L 375.22642,286.57155 L 375.3172,285.63346 L 379.85635,285.42163 L 379.49322,274.64871 L 378.16174,272.016 L 378.70644,269.92799 L 381.85358,269.38329 L 381.94437,269.17146 L 385.90856,266.14536 L 386.09013,258.76167 L 384.75864,256.88548 L 381.73254,256.88548 L 380.61288,255.37243 L 377.40521,255.37243 L 376.46712,254.22251 L 376.46712,251.37798 L 372.65423,244.20611 L 370.77805,242.87463 L 367.17698,247.80717 L 365.66393,248.17031 L 365.08897,245.71916 L 363.39436,244.96264 L 362.63783,246.47569 L 359.82355,246.47569 L 359.43016,244.78107 L 357.52372,245.90073 L 355.46597,247.05065 L 353.19639,244.56924 L 349.95846,243.05619 L 349.77689,240.60505 L 345.4193,240.24192 z "/> |
<path id="INSEE-D94" title="Val-de-Marne (94) <?= !empty($infos_zones['94']) ? $infos_zones['94'] : ''; ?>" class="land departement idf idfbig departement94" d="M 50.990297,35.820069 L 48.401399,37.911102 L 45.812502,38.309394 L 45.613356,39.703416 L 45.115491,40.997864 L 46.409939,40.997864 L 47.10695,40.400427 L 46.808231,39.404697 L 50.791151,39.205551 L 51.786881,39.603843 L 51.786881,41.694875 L 50.791151,43.785908 L 45.015918,42.989324 L 44.119761,42.19274 L 41.43129,44.084627 L 38.842393,44.781638 L 35.158192,44.582492 L 34.06289,48.465838 L 35.058619,50.158579 L 33.465452,54.838509 L 35.058619,57.825698 L 37.846663,56.431677 L 44.518053,60.115877 L 56.068519,60.115877 L 62.939055,63.302213 L 62.839482,62.605202 L 67.718558,50.357725 L 67.718558,44.781638 L 64.631795,43.985054 L 63.835211,42.491459 L 62.540763,41.894021 L 59.752719,38.807259 L 54.873643,36.019215 L 50.990297,35.820069 z "/> |
<path id="INSEE-D83" title="Var (83) <?= !empty($infos_zones['83']) ? $infos_zones['83'] : ''; ?>" class="land departement paca departement83" d="M 496.63366,400.23197 L 493.75887,400.35302 L 492.39712,401.74503 L 487.25275,401.56346 L 482.80437,404.80139 L 479.74801,402.74364 L 474.93651,404.28695 L 474.0892,406.01183 L 470.6697,408.58402 L 464.49645,404.46852 L 459.50338,406.10261 L 459.26129,407.4341 L 459.35208,407.37358 L 462.4387,409.43133 L 458.3232,412.18508 L 456.62858,415.60458 L 458.68633,417.2992 L 458.50477,420.90026 L 461.77296,423.98688 L 460.89539,424.68289 L 457.14302,424.50132 L 457.14302,425.86307 L 458.83764,426.71037 L 458.83764,427.22481 L 457.29433,428.61682 L 458.1719,429.64569 L 459.53364,429.64569 L 460.89539,431.00744 L 461.07696,432.03632 L 459.35208,433.06519 L 457.99033,434.6085 L 457.80876,438.36087 L 458.3232,439.05687 L 461.71244,440.56993 L 462.65053,444.35255 L 464.73854,444.74595 L 466.64498,443.41446 L 470.03422,441.32645 L 475.90486,441.90141 L 475.72329,443.41446 L 473.81685,444.35255 L 478.356,444.56438 L 477.23634,443.41446 L 476.84295,440.96332 L 479.29409,439.2687 L 482.13863,440.20679 L 483.28855,440.56993 L 484.22664,441.71985 L 485.55813,440.78175 L 485.92126,438.30035 L 487.43431,436.99912 L 491.39851,436.99912 L 492.54843,435.27425 L 495.18113,436.03077 L 498.20724,434.72955 L 498.20724,429.797 L 494.24304,429.97857 L 497.26915,428.10238 L 498.7822,426.01437 L 499.17559,422.98827 L 504.65284,422.23174 L 507.7092,418.81225 L 505.59093,416.63345 L 505.59093,415.42301 L 504.56205,414.39414 L 505.9238,413.21396 L 505.59093,411.30751 L 503.35161,410.4602 L 502.17143,410.4602 L 500.11368,408.40245 L 499.75055,404.80139 L 497.54149,403.77252 L 495.30218,403.62121 L 494.45487,401.56346 L 496.63366,400.23197 z "/> |
<path id="INSEE-D06" title="Alpes-Maritimes (06) <?= !empty($infos_zones['06']) ? $infos_zones['06'] : ''; ?>" class="land departement paca departement06" d="M 502.56483,369.91042 L 502.17143,370.06173 L 499.59924,371.42348 L 499.41768,373.8141 L 497.54149,375.35741 L 496.51262,377.77829 L 495.81662,382.22666 L 497.87437,385.28303 L 498.05593,387.85521 L 499.23611,388.21835 L 502.68587,391.45628 L 505.9238,394.36134 L 504.56205,395.23891 L 502.5043,393.8469 L 499.93212,395.23891 L 499.23611,396.08621 L 496.51262,396.08621 L 496.84549,397.44796 L 495.99818,398.47684 L 496.69419,400.20171 L 494.45487,401.56346 L 495.30218,403.62121 L 497.54149,403.77252 L 499.75055,404.80139 L 500.11368,408.40245 L 502.17143,410.4602 L 503.35161,410.4602 L 505.59093,411.30751 L 505.9238,413.21396 L 504.56205,414.39414 L 505.59093,415.42301 L 505.59093,416.63345 L 507.7092,418.81225 L 507.86051,418.63068 L 508.04207,414.30335 L 511.8247,415.05988 L 513.15619,413.335 L 515.06263,413.72839 L 515.2442,407.85775 L 519.60178,407.49462 L 523.38441,404.07513 L 526.77365,404.07513 L 526.95521,401.98711 L 530.37471,399.92936 L 528.46827,395.57178 L 531.3128,393.12063 L 530.73784,390.2761 L 534.91387,388.94461 L 536.03352,384.79885 L 535.48882,381.95431 L 534.52047,380.2597 L 533.76395,377.77829 L 530.94967,377.99012 L 522.05293,381.19779 L 519.20839,381.19779 L 514.3061,377.23359 L 509.37356,375.90211 L 506.52902,375.90211 L 506.52902,372.48261 L 502.56483,370.03147 L 502.56483,369.91042 z "/> |
<path id="INSEE-D05" title="Hautes-Alpes (05) <?= !empty($infos_zones['05']) ? $infos_zones['05'] : ''; ?>" class="land departement paca departement05" d="M 486.52648,328.5436 L 484.83186,329.30012 L 484.43847,332.14466 L 481.04923,332.53805 L 480.47427,329.87508 L 479.35462,328.75543 L 475.93512,329.11856 L 474.60364,330.26848 L 473.84711,334.23267 L 474.42207,335.17076 L 478.38626,335.56416 L 479.14279,338.0153 L 480.65584,338.77183 L 480.65584,342.91759 L 477.05478,342.73602 L 475.54173,344.43064 L 471.2144,343.67411 L 468.76326,345.76212 L 467.03838,345.0056 L 464.58723,346.91204 L 465.52533,348.60666 L 464.01228,350.11971 L 459.29155,350.11971 L 459.29155,352.38929 L 460.80461,353.14581 L 460.22965,354.4773 L 457.02198,355.77852 L 453.05778,356.17192 L 451.90786,359.77298 L 451.7263,362.04256 L 453.81431,363.73717 L 451.7263,366.18832 L 449.09359,364.85683 L 446.06749,364.67527 L 445.67409,366.36988 L 447.58054,367.70137 L 445.2807,369.21442 L 446.06749,372.42209 L 452.48282,374.14697 L 453.63274,376.59811 L 455.50893,376.96124 L 454.87344,382.86214 L 454.90371,382.89241 L 457.80876,380.16891 L 461.25852,380.16891 L 462.62027,381.01622 L 464.49645,380.32022 L 461.59139,377.08229 L 461.07696,375.53898 L 462.10583,375.35741 L 463.98201,377.08229 L 465.19246,377.08229 L 465.01089,374.32853 L 463.80045,373.99566 L 464.31489,372.30105 L 466.37264,368.85129 L 469.64083,366.9751 L 471.18414,366.64223 L 471.18414,364.91735 L 472.21301,364.91735 L 474.0892,366.46067 L 474.0892,367.67111 L 477.32713,369.72886 L 478.2047,369.36573 L 477.69026,366.1278 L 476.81269,366.1278 L 477.69026,364.91735 L 481.26106,365.09892 L 483.16751,363.73717 L 486.07257,365.28049 L 492.21555,365.43179 L 493.24443,362.8596 L 493.94043,361.83073 L 493.94043,359.95455 L 496.51262,359.80324 L 497.54149,357.74549 L 500.44655,356.02061 L 502.5043,352.93399 L 504.95545,353.05503 L 506.74085,351.11833 L 508.7986,351.29989 L 508.7986,349.60527 L 506.16589,348.27379 L 505.59093,342.79654 L 503.50292,342.04002 L 500.87021,342.43341 L 495.93766,339.95201 L 495.18113,334.29319 L 492.36686,333.3551 L 491.39851,331.44866 L 490.1578,328.72516 L 486.52648,328.5436 z "/> |
<path id="INSEE-D48" title="Lozere (48) <?= !empty($infos_zones['48']) ? $infos_zones['48'] : ''; ?>" class="land departement languedoc departement48" d="M 363.96931,341.22297 L 358.67363,343.12941 L 357.16058,346.51865 L 353.77135,344.24907 L 351.10838,352.57085 L 348.38488,358.83489 L 352.34908,363.70691 L 352.07673,367.45928 L 354.7397,369.33546 L 354.7397,373.87462 L 355.55675,380.28996 L 358.76442,381.6517 L 358.49207,383.76998 L 363.03122,382.98319 L 364.63506,383.76998 L 363.63644,384.64755 L 369.47682,388.55122 L 374.46989,387.52234 L 375.3172,386.3119 L 374.6212,384.61728 L 376.67895,384.10285 L 379.58401,386.82634 L 384.54681,387.34078 L 386.78613,383.92128 L 386.78613,381.01622 L 388.14788,379.47291 L 386.93744,379.14004 L 386.93744,375.2061 L 384.21394,372.30105 L 386.45326,371.93791 L 387.63344,370.90904 L 388.57153,369.09338 L 387.63344,368.51842 L 388.17814,364.52396 L 384.97047,361.04394 L 383.63898,354.08391 L 378.82748,347.94092 L 375.3172,348.78823 L 374.56067,346.15552 L 372.65423,346.15552 L 372.2911,348.42509 L 367.38881,349.93815 L 363.96931,341.22297 z "/> |
<path id="INSEE-D15" title="Cantal (15) <?= !empty($infos_zones['15']) ? $infos_zones['15'] : ''; ?>" class="land departement auvergne departement15" d="M 330.13748,313.59465 L 329.56253,315.68266 L 330.50062,317.95224 L 329.3507,319.28372 L 327.47451,319.28372 L 325.56807,317.19571 L 323.87345,316.25762 L 323.69189,321.5533 L 320.27239,323.64131 L 317.82125,327.03055 L 318.39621,330.45004 L 317.63968,331.96309 L 316.67133,334.9892 L 315.15828,334.9892 L 313.64522,336.86538 L 314.79514,338.0153 L 315.55167,339.89148 L 313.10053,341.61636 L 314.09914,347.94092 L 317.30681,350.33154 L 314.88593,355.96009 L 317.30681,357.01923 L 316.24767,360.2269 L 318.36594,360.49924 L 319.96978,357.83627 L 322.66301,357.83627 L 323.17745,358.62306 L 329.07835,358.62306 L 330.13748,356.23244 L 331.46897,355.68774 L 332.01367,351.42094 L 333.34515,351.42094 L 333.34515,346.88178 L 338.70136,342.31237 L 339.24605,343.12941 L 339.76049,346.60943 L 343.51286,346.06473 L 344.32991,351.42094 L 346.17583,351.42094 L 346.72053,356.77714 L 348.38488,358.83489 L 351.10838,352.57085 L 353.77135,344.24907 L 357.16058,346.51865 L 358.67363,343.12941 L 363.5154,341.37427 L 363.5154,339.77044 L 362.48652,338.22713 L 360.42877,337.01669 L 361.45765,335.47337 L 360.58008,334.62606 L 361.60895,334.29319 L 362.8194,333.26432 L 360.76165,333.08275 L 359.73277,331.72101 L 359.3999,328.11994 L 358.18946,326.9095 L 357.34215,323.85314 L 353.04508,323.85314 L 352.19777,321.43226 L 350.83603,321.28095 L 350.14002,322.6427 L 347.41653,322.46113 L 344.84434,318.5272 L 343.81547,318.37589 L 341.75772,317.34702 L 340.54728,318.5272 L 337.49091,318.5272 L 335.9476,315.28927 L 330.13748,313.59465 z "/> |
<path id="INSEE-D64" title="Pyrenees-Atlantiques (64) <?= !empty($infos_zones['64']) ? $infos_zones['64'] : ''; ?>" class="land departement aquitaine departement64" d="M 220.04786,415.42301 L 217.32437,416.96632 L 211.84712,416.78476 L 211.33269,415.93745 L 207.73162,417.14789 L 204.97787,417.9952 L 202.92012,416.45189 L 200.71107,417.14789 L 200.01506,416.27032 L 197.29157,416.27032 L 195.56669,417.14789 L 191.11832,416.96632 L 188.7277,418.84251 L 184.43063,418.50964 L 183.58332,419.72008 L 182.55445,419.35694 L 183.91619,417.9952 L 181.52557,416.11901 L 178.62051,418.6912 L 173.65771,419.02407 L 168.21072,416.30058 L 167.42393,417.69259 L 163.06635,422.98827 L 159.67711,424.31975 L 157.22597,424.68289 L 157.22597,426.7709 L 159.49554,428.85891 L 162.88478,429.04047 L 163.06635,431.49162 L 165.72932,431.70344 L 166.48584,429.97857 L 170.0869,431.49162 L 172.35648,432.06658 L 172.90118,434.33615 L 171.59996,435.48607 L 171.59996,439.05687 L 168.93699,440.38836 L 168.75542,442.08298 L 170.45004,443.98942 L 173.47614,444.92751 L 174.0511,442.08298 L 175.74572,440.20679 L 175.56415,442.65794 L 176.89564,444.56438 L 180.28487,444.56438 L 181.79792,446.62213 L 186.33708,447.37866 L 190.69466,450.04163 L 197.86653,450.04163 L 198.25992,454.00582 L 203.16221,457.78845 L 205.06865,460.05803 L 207.15666,458.93837 L 209.03285,458.54498 L 209.97094,459.48307 L 211.69582,458.54498 L 214.99427,456.72932 L 215.29688,452.82564 L 216.80993,451.67572 L 217.59672,445.44195 L 220.41099,446.01691 L 221.56091,445.26039 L 220.22943,442.59741 L 225.34354,438.23983 L 228.36965,431.4311 L 230.24583,428.97995 L 227.97625,425.59072 L 226.4632,423.32114 L 228.55121,421.41469 L 225.34354,416.11901 L 220.22943,415.75588 L 220.04786,415.42301 z "/> |
<path id="INSEE-D12" title="Aveyron (12) <?= !empty($infos_zones['12']) ? $infos_zones['12'] : ''; ?>" class="land departement midi departement12" d="M 338.70136,342.31237 L 333.34515,346.88178 L 333.34515,351.42094 L 332.01367,351.42094 L 331.46897,355.68774 L 330.13748,356.23244 L 329.07835,358.62306 L 323.17745,358.62306 L 322.66301,357.83627 L 319.96978,357.83627 L 318.36594,360.49924 L 317.79098,360.43872 L 317.45811,361.49786 L 316.24767,362.8596 L 312.82818,362.8596 L 312.13217,363.73717 L 310.43755,363.55561 L 307.35093,366.9751 L 306.32206,366.64223 L 304.113,368.51842 L 304.77874,371.93791 L 306.50362,374.5101 L 305.17214,375.90211 L 305.47475,379.80578 L 308.19824,379.98735 L 306.65493,383.07397 L 307.86537,386.1606 L 309.40868,385.28303 L 310.10468,386.82634 L 312.31374,384.61728 L 315.58193,384.43572 L 318.81986,386.82634 L 324.47867,387.85521 L 326.53642,391.45628 L 329.44148,392.81802 L 330.98479,396.75196 L 330.80323,398.29527 L 332.67941,401.74503 L 332.67941,403.62121 L 336.09891,408.06958 L 339.3671,409.7642 L 341.42485,409.24976 L 342.45372,407.88802 L 343.99704,408.25115 L 347.53758,410.52072 L 347.56784,410.52072 L 349.14141,410.52072 L 352.34908,410.52072 L 352.07673,404.92243 L 352.07673,403.04625 L 353.68056,403.04625 L 356.61588,404.65009 L 359.5512,404.65009 L 359.03677,401.44242 L 360.6406,400.08067 L 363.84827,399.56623 L 363.84827,396.873 L 367.32829,395.26917 L 366.51124,391.54706 L 363.57592,391.54706 L 360.91295,391.00236 L 360.36825,388.85383 L 362.51679,388.33939 L 362.51679,385.64616 L 364.63506,383.76998 L 363.03122,382.98319 L 358.49207,383.76998 L 358.76442,381.6517 L 355.55675,380.28996 L 354.7397,373.87462 L 354.7397,369.33546 L 352.07673,367.45928 L 352.34908,363.70691 L 346.72053,356.77714 L 346.17583,351.42094 L 344.32991,351.42094 L 343.51286,346.06473 L 339.76049,346.60943 L 339.24605,343.12941 L 338.70136,342.31237 z "/> |
<path id="INSEE-D13" title="Bouches-du-Rhone (13) <?= !empty($infos_zones['13']) ? $infos_zones['13'] : ''; ?>" class="land departement paca departement13" d="M 421.04161,397.05457 L 415.74593,400.08067 L 414.38419,410.24838 L 408.7859,409.46159 L 407.18206,413.72839 L 408.51355,415.60458 L 402.37056,419.35694 L 400.67594,423.29088 L 406.66763,423.56323 L 414.62628,424.13819 L 416.13933,425.65124 L 413.29479,425.65124 L 411.41861,428.85891 L 419.52856,430.55353 L 425.97416,429.43387 L 422.55467,426.19594 L 424.82424,424.31975 L 428.42531,425.83281 L 430.11992,429.43387 L 440.92311,429.61543 L 443.73739,428.46551 L 444.31235,430.19039 L 441.28624,432.8231 L 445.46226,433.00467 L 444.70574,434.91111 L 443.55582,436.2426 L 452.81569,436.2426 L 457.35485,437.75565 L 457.80876,438.36087 L 457.99033,434.6085 L 459.35208,433.06519 L 461.07696,432.03632 L 460.89539,431.00744 L 459.53364,429.64569 L 458.1719,429.64569 L 457.29433,428.61682 L 458.83764,427.22481 L 458.83764,426.71037 L 457.14302,425.86307 L 457.14302,424.50132 L 460.89539,424.68289 L 461.77296,423.98688 L 458.50477,420.90026 L 458.68633,417.2992 L 456.62858,415.60458 L 458.3232,412.18508 L 462.4387,409.43133 L 459.35208,407.37358 L 457.14302,409.09846 L 451.99865,410.27864 L 447.88315,409.7642 L 440.52972,406.70784 L 436.08135,406.85914 L 432.32898,405.16452 L 430.93697,403.25808 L 428.03191,400.02015 L 421.19292,397.11509 L 421.04161,397.05457 z "/> |
<path id="INSEE-D84" title="Vaucluse (84) <?= !empty($infos_zones['84']) ? $infos_zones['84'] : ''; ?>" class="land departement paca departement84" d="M 428.09243,369.39599 L 425.42946,369.60781 L 423.37171,372.81548 L 423.91641,376.20472 L 427.12408,376.59811 L 426.57938,378.11116 L 424.09798,378.29273 L 421.2837,381.13727 L 420.52718,380.19917 L 421.07188,376.41655 L 419.95222,375.08506 L 414.8381,375.84159 L 413.83949,377.86907 L 414.38419,378.17169 L 417.59186,383.49763 L 417.59186,387.79469 L 423.22041,393.39298 L 423.22041,395.81386 L 421.04161,397.05457 L 421.19292,397.11509 L 428.03191,400.02015 L 430.93697,403.25808 L 432.32898,405.16452 L 436.08135,406.85914 L 440.52972,406.70784 L 447.88315,409.7642 L 451.99865,410.27864 L 457.14302,409.09846 L 459.26129,407.4341 L 459.53364,406.01183 L 455.59971,401.56346 L 451.30264,401.56346 L 451.30264,400.02015 L 452.84596,398.29527 L 452.84596,396.41909 L 449.42646,394.72447 L 449.09359,391.97071 L 450.96977,391.12341 L 450.96977,388.73278 L 448.91202,388.36965 L 448.76072,385.79746 L 448.73046,385.6159 L 447.00558,385.49485 L 444.16104,383.40684 L 443.40451,380.9557 L 438.10883,380.56231 L 434.14464,380.19917 L 433.75125,377.9296 L 435.08273,375.08506 L 432.63159,377.17307 L 428.84896,376.77968 L 428.09243,375.44819 L 430.72514,371.87739 L 428.09243,369.39599 z "/> |
<path id="INSEE-D04" title="Alpes-de-Haute-Provence (04) <?= !empty($infos_zones['04']) ? $infos_zones['04'] : ''; ?>" class="land departement paca departement04" d="M 502.5043,352.93399 L 500.44655,356.02061 L 497.54149,357.74549 L 496.51262,359.80324 L 493.94043,359.95455 L 493.94043,361.83073 L 493.24443,362.8596 L 492.21555,365.43179 L 486.07257,365.28049 L 483.16751,363.73717 L 481.26106,365.09892 L 477.69026,364.91735 L 476.81269,366.1278 L 477.69026,366.1278 L 478.2047,369.36573 L 477.32713,369.72886 L 474.0892,367.67111 L 474.0892,366.46067 L 472.21301,364.91735 L 471.18414,364.91735 L 471.18414,366.64223 L 469.64083,366.9751 L 466.37264,368.85129 L 464.31489,372.30105 L 463.80045,373.99566 L 465.01089,374.32853 L 465.19246,377.08229 L 463.98201,377.08229 L 462.10583,375.35741 L 461.07696,375.53898 L 461.59139,377.08229 L 464.49645,380.32022 L 462.62027,381.01622 L 461.25852,380.16891 L 457.80876,380.16891 L 454.90371,382.89241 L 454.87344,382.86214 L 454.7524,383.9818 L 453.63274,382.65032 L 452.11969,381.31883 L 451.15134,384.16337 L 449.45672,385.67642 L 448.73046,385.6159 L 448.76072,385.79746 L 448.91202,388.36965 L 450.96977,388.73278 L 450.96977,391.12341 L 449.09359,391.97071 L 449.42646,394.72447 L 452.84596,396.41909 L 452.84596,398.29527 L 451.30264,400.02015 L 451.30264,401.56346 L 455.59971,401.56346 L 459.53364,406.01183 L 459.50338,406.10261 L 464.49645,404.46852 L 470.6697,408.58402 L 474.0892,406.01183 L 474.93651,404.28695 L 479.74801,402.74364 L 482.80437,404.80139 L 487.25275,401.56346 L 492.39712,401.74503 L 493.75887,400.35302 L 496.63366,400.23197 L 496.69419,400.20171 L 495.99818,398.47684 L 496.84549,397.44796 L 496.51262,396.08621 L 499.23611,396.08621 L 499.93212,395.23891 L 502.5043,393.8469 L 504.56205,395.23891 L 505.9238,394.36134 L 502.68587,391.45628 L 499.23611,388.21835 L 498.05593,387.85521 L 497.87437,385.28303 L 495.81662,382.22666 L 496.51262,377.77829 L 497.54149,375.35741 L 499.41768,373.8141 L 499.59924,371.42348 L 502.17143,370.06173 L 502.56483,369.91042 L 502.56483,366.24884 L 505.2278,365.88571 L 503.71474,364.55422 L 501.8083,363.97926 L 500.87021,361.52812 L 501.62673,359.8335 L 505.01597,356.23244 L 504.47127,353.56947 L 504.95545,353.05503 L 502.5043,352.93399 z "/> |
<path id="INSEE-D30" title="Gard (30) <?= !empty($infos_zones['30']) ? $infos_zones['30'] : ''; ?>" class="land departement languedoc departement30" d="M 388.57153,369.09338 L 387.63344,370.90904 L 386.45326,371.93791 L 384.21394,372.30105 L 386.93744,375.2061 L 386.93744,379.14004 L 388.14788,379.47291 L 386.78613,381.01622 L 386.78613,383.92128 L 384.54681,387.34078 L 379.58401,386.82634 L 376.67895,384.10285 L 374.6212,384.61728 L 375.3172,386.3119 L 374.46989,387.52234 L 369.47682,388.55122 L 363.63644,384.64755 L 362.51679,385.64616 L 362.51679,388.33939 L 360.36825,388.85383 L 360.91295,391.00236 L 363.57592,391.54706 L 366.51124,391.54706 L 367.32829,395.26917 L 363.84827,396.873 L 363.84827,398.56762 L 366.57176,399.50571 L 366.57176,401.04902 L 367.7822,401.74503 L 368.81108,400.86746 L 370.17283,400.86746 L 370.86883,402.41077 L 372.92658,402.41077 L 373.95545,398.80971 L 375.65007,398.80971 L 378.22226,395.57178 L 381.30888,395.90465 L 381.82332,400.35302 L 383.0035,401.74503 L 384.90995,400.71615 L 388.14788,402.41077 L 389.35832,404.46852 L 394.98687,407.88802 L 397.04462,412.69952 L 397.04462,415.24145 L 393.44356,417.2992 L 391.11346,419.38721 L 394.01852,419.59903 L 394.01852,423.38166 L 398.34584,423.16983 L 400.67594,423.29088 L 402.37056,419.35694 L 408.51355,415.60458 L 407.18206,413.72839 L 408.7859,409.46159 L 414.38419,410.24838 L 415.74593,400.08067 L 423.22041,395.81386 L 423.22041,393.39298 L 417.59186,387.79469 L 417.59186,383.49763 L 414.38419,378.17169 L 407.6965,374.41932 L 407.18206,377.35464 L 404.48883,377.62699 L 403.70205,374.69167 L 401.00881,375.2061 L 400.49438,378.95847 L 398.34584,378.17169 L 393.80669,375.2061 L 391.65816,376.2955 L 391.65816,370.9393 L 388.57153,369.09338 z "/> |
<path id="INSEE-D11" title="Aude (11) <?= !empty($infos_zones['11']) ? $infos_zones['11'] : ''; ?>" class="land departement languedoc departement11" d="M 318.91064,424.71315 L 318.63829,428.19317 L 315.15828,427.10377 L 311.40591,427.10377 L 311.67826,425.77228 L 309.80207,426.04463 L 305.80762,427.37612 L 304.47613,424.95524 L 301.7829,427.37612 L 302.59995,429.2523 L 299.63437,430.58379 L 299.11993,433.51911 L 296.69905,434.6085 L 298.84758,436.99912 L 298.30288,438.60296 L 307.6838,443.14211 L 308.47059,449.58771 L 308.47059,453.06773 L 309.01529,457.60689 L 304.20378,457.60689 L 302.8723,459.48307 L 309.01529,464.56692 L 312.4953,462.69074 L 316.76211,467.77459 L 316.12663,467.83511 L 316.94368,468.31929 L 324.62998,464.56692 L 322.75379,461.81317 L 322.60249,458.57524 L 340.54728,458.57524 L 340.21441,456.15436 L 344.32991,453.9453 L 349.11115,457.69767 L 351.59255,458.84759 L 351.44125,453.43086 L 351.65308,447.19709 L 349.3835,447.37866 L 347.47705,444.56438 L 348.99011,442.08298 L 352.19777,445.10908 L 355.04231,442.8395 L 356.94876,440.96332 L 357.19084,438.96609 L 354.76996,438.87531 L 353.92265,436.15182 L 351.53203,435.97025 L 349.29272,432.70206 L 347.56784,432.88362 L 345.54035,431.67318 L 345.17722,428.76812 L 344.14834,429.28256 L 344.66278,431.34031 L 342.27216,431.34031 L 342.09059,434.75981 L 338.51979,435.97025 L 336.79491,432.36919 L 334.40429,433.9125 L 332.34654,432.36919 L 331.31766,429.97857 L 333.04254,427.92082 L 332.2255,425.71176 L 332.01367,425.77228 L 326.38512,425.77228 L 320.51448,424.71315 L 318.91064,424.71315 z "/> |
<path id="INSEE-D34" title="Herault (34) <?= !empty($infos_zones['34']) ? $infos_zones['34'] : ''; ?>" class="land departement languedoc departement34" d="M 378.22226,395.57178 L 375.65007,398.80971 L 373.95545,398.80971 L 372.92658,402.41077 L 370.86883,402.41077 L 370.17283,400.86746 L 368.81108,400.86746 L 367.7822,401.74503 L 366.57176,401.04902 L 366.57176,399.50571 L 363.84827,398.56762 L 363.84827,399.56623 L 360.6406,400.08067 L 359.03677,401.44242 L 359.5512,404.65009 L 356.61588,404.65009 L 353.68056,403.04625 L 352.07673,403.04625 L 352.07673,404.92243 L 352.34908,410.52072 L 349.14141,410.52072 L 347.53758,410.52072 L 346.44818,412.66926 L 339.48814,415.05988 L 336.82517,413.21396 L 335.22134,415.60458 L 334.43455,418.26755 L 337.36987,420.96078 L 336.28047,424.4408 L 332.2255,425.71176 L 333.04254,427.92082 L 331.31766,429.97857 L 332.34654,432.36919 L 334.40429,433.9125 L 336.79491,432.36919 L 338.51979,435.97025 L 342.09059,434.75981 L 342.27216,431.34031 L 344.66278,431.34031 L 344.14834,429.28256 L 345.17722,428.76812 L 345.54035,431.67318 L 347.56784,432.88362 L 349.29272,432.70206 L 351.53203,435.97025 L 353.92265,436.15182 L 354.76996,438.87531 L 357.19084,438.96609 L 357.31189,437.93722 L 364.12062,435.84921 L 364.87715,434.15459 L 370.17283,433.97302 L 371.86744,431.88501 L 382.09567,423.74479 L 388.51101,419.20564 L 391.11346,419.38721 L 393.44356,417.2992 L 397.04462,415.24145 L 397.04462,412.69952 L 394.98687,407.88802 L 389.35832,404.46852 L 388.14788,402.41077 L 384.90995,400.71615 L 383.0035,401.74503 L 381.82332,400.35302 L 381.30888,395.90465 L 378.22226,395.57178 z "/> |
<path id="INSEE-D66" title="Pyrenees-Orientales (66) <?= !empty($infos_zones['66']) ? $infos_zones['66'] : ''; ?>" class="land departement languedoc departement66" d="M 344.32991,453.9453 L 340.21441,456.15436 L 340.54728,458.57524 L 322.60249,458.57524 L 322.75379,461.81317 L 324.62998,464.56692 L 316.94368,468.31929 L 316.12663,467.83511 L 309.80207,468.28903 L 309.01529,469.89286 L 305.80762,470.70991 L 303.65908,472.58609 L 297.78845,473.94784 L 298.12132,475.94507 L 300.96585,478.60804 L 306.62467,480.12109 L 306.80623,483.51033 L 309.83233,486.1733 L 312.10191,485.7799 L 315.33984,481.81571 L 319.30404,481.05918 L 325.53781,483.14719 L 330.83349,487.68635 L 332.34654,485.7799 L 333.67802,485.7799 L 335.00951,486.71799 L 336.12917,486.1733 L 336.31073,483.51033 L 341.99981,482.17884 L 343.87599,479.7277 L 346.72053,478.78961 L 350.68472,478.78961 L 353.16613,481.42231 L 356.19223,481.63414 L 356.19223,478.60804 L 354.67918,476.52003 L 352.01621,475.37011 L 351.59255,458.84759 L 349.11115,457.69767 L 344.32991,453.9453 z "/> |
<path id="INSEE-D63" title="Puy-de-Dome (63) <?= !empty($infos_zones['63']) ? $infos_zones['63'] : ''; ?>" class="land departement auvergne departement63" d="M 342.96816,270.77529 L 340.39597,273.68035 L 340.21441,272.65148 L 338.15666,272.83304 L 338.15666,274.37636 L 336.97648,274.70923 L 335.76604,277.61429 L 334.22272,278.31029 L 331.34793,276.07097 L 331.62028,280.51935 L 333.13333,282.39553 L 333.88985,285.99659 L 331.62028,287.69121 L 331.07558,290.35418 L 328.98757,291.47384 L 325.3865,293.56185 L 325.74964,295.25647 L 330.10722,299.61405 L 330.50062,302.27703 L 328.77574,305.0913 L 328.77574,307.75427 L 329.92566,309.08576 L 330.50062,312.29343 L 330.13748,313.59465 L 335.9476,315.28927 L 337.49091,318.5272 L 340.54728,318.5272 L 341.75772,317.34702 L 343.81547,318.37589 L 344.84434,318.5272 L 347.41653,322.46113 L 350.14002,322.6427 L 350.83603,321.28095 L 351.59255,321.37173 L 352.37934,320.25208 L 355.79884,319.73764 L 357.67502,318.19433 L 359.73277,318.01276 L 359.73277,316.83258 L 361.09452,316.13658 L 361.45765,316.98389 L 362.30496,316.46945 L 363.6667,317.34702 L 366.05733,317.16545 L 368.11508,316.31814 L 369.47682,317.49832 L 371.02013,317.49832 L 372.23058,319.73764 L 374.10676,320.58495 L 375.13563,318.19433 L 376.49738,319.40477 L 379.4327,319.55607 L 380.46158,317.49832 L 382.15619,319.2232 L 384.54681,319.9192 L 385.30334,319.19294 L 383.82055,318.70876 L 383.24559,316.43919 L 386.84665,313.04995 L 385.15203,306.81618 L 380.21949,303.57825 L 378.16174,298.67596 L 375.89216,295.64986 L 376.46712,291.47384 L 378.16174,289.77922 L 375.13563,287.32808 L 375.22642,286.57155 L 372.56345,285.51242 L 371.71614,283.45467 L 368.81108,283.60597 L 366.57176,283.09153 L 366.23889,280.70091 L 364.51401,279.8536 L 362.30496,281.21535 L 359.73277,280.70091 L 358.00789,280.88248 L 352.19777,280.03517 L 347.41653,277.28142 L 347.0534,275.91967 L 345.02591,273.68035 L 346.38766,271.80417 L 345.87322,270.77529 L 342.96816,270.77529 z "/> |
<path id="INSEE-D65" title="Hautes-Pyrenees (65) <?= !empty($infos_zones['65']) ? $infos_zones['65'] : ''; ?>" class="land departement midi departement65" d="M 226.88685,415.09014 L 225.01067,416.08875 L 225.34354,416.11901 L 228.55121,421.41469 L 226.4632,423.32114 L 227.97625,425.59072 L 230.24583,428.97995 L 228.36965,431.4311 L 225.34354,438.23983 L 220.22943,442.59741 L 221.56091,445.26039 L 220.41099,446.01691 L 217.59672,445.44195 L 216.80993,451.67572 L 215.29688,452.82564 L 214.99427,456.72932 L 215.47845,456.45697 L 218.68612,458.36341 L 222.46874,461.20795 L 222.83188,463.47752 L 225.85798,465.92867 L 228.33938,465.92867 L 234.57316,463.2657 L 237.20587,466.2918 L 240.80693,467.26015 L 242.13841,464.99058 L 243.83303,465.7471 L 247.49462,465.98919 L 247.25253,455.82148 L 249.15897,455.82148 L 250.85359,456.66879 L 252.06403,455.48861 L 251.88246,453.61243 L 254.27309,452.22042 L 253.42578,448.64962 L 252.3969,447.77205 L 250.33915,448.46805 L 251.36803,446.74318 L 250.85359,444.53412 L 247.76696,442.2948 L 247.94853,440.75149 L 249.67341,437.84643 L 251.88246,436.99912 L 251.88246,435.78868 L 253.24421,433.73093 L 254.15204,432.45997 L 250.70228,430.67457 L 246.07235,430.67457 L 245.37634,429.28256 L 242.98572,429.28256 L 242.28972,427.73925 L 240.08066,427.73925 L 239.38466,428.43525 L 236.81247,428.43525 L 236.66117,426.89194 L 234.60342,425.53019 L 235.29942,424.83419 L 235.63229,423.13957 L 235.11785,422.62514 L 234.08898,419.87138 L 231.84966,419.53851 L 229.64061,418.32807 L 229.79191,415.09014 L 226.88685,415.09014 z "/> |
<path id="INSEE-D40" title="Landes (40) <?= !empty($infos_zones['40']) ? $infos_zones['40'] : ''; ?>" class="land departement aquitaine departement40" d="M 188.7277,362.7083 L 182.73601,365.79492 L 181.1927,365.85545 L 177.83373,383.8305 L 173.47614,400.47406 L 172.14465,406.91966 L 171.025,411.45882 L 168.21072,416.30058 L 173.65771,419.02407 L 178.62051,418.6912 L 181.52557,416.11901 L 183.91619,417.9952 L 182.55445,419.35694 L 183.58332,419.72008 L 184.43063,418.50964 L 188.7277,418.84251 L 191.11832,416.96632 L 195.56669,417.14789 L 197.29157,416.27032 L 200.01506,416.27032 L 200.71107,417.14789 L 202.92012,416.45189 L 204.97787,417.9952 L 207.73162,417.14789 L 211.33269,415.93745 L 211.84712,416.78476 L 217.32437,416.96632 L 220.04786,415.42301 L 218.71638,413.09291 L 220.04786,409.49185 L 221.92405,407.04071 L 221.34909,403.83304 L 222.86214,402.31999 L 220.62282,398.53736 L 222.49901,396.26778 L 224.58702,395.87439 L 226.4632,396.63091 L 229.12617,394.36134 L 230.06426,397.20587 L 231.00235,398.53736 L 233.09037,397.9624 L 232.9088,395.51125 L 233.51402,394.17977 L 233.0601,392.99959 L 233.57454,389.24722 L 235.63229,387.18947 L 234.60342,385.97903 L 232.3641,385.79746 L 229.79191,384.79885 L 226.03955,385.13172 L 225.34354,381.01622 L 222.95292,378.11116 L 221.92405,377.77829 L 222.28718,381.19779 L 222.28718,382.22666 L 219.01899,382.37797 L 215.59949,381.19779 L 214.90349,376.90072 L 212.51287,374.32853 L 210.81825,374.17723 L 210.63668,372.63392 L 208.7605,371.42348 L 205.67387,370.57617 L 206.52118,369.54729 L 206.52118,368.51842 L 205.49231,367.67111 L 204.31213,366.64223 L 200.86237,367.15667 L 198.83488,368.85129 L 197.44287,369.03285 L 195.23382,367.48954 L 191.96563,368.85129 L 190.42232,367.82241 L 191.81432,366.1278 L 191.96563,363.88848 L 188.7277,362.7083 z "/> |
<path id="INSEE-D33" title="Gironde (33) <?= !empty($infos_zones['33']) ? $infos_zones['33'] : ''; ?>" class="land departement aquitaine departement33" d="M 190.11971,305.36365 L 187.0936,309.9028 L 186.15551,325.78984 L 183.70437,341.85845 L 181.97949,354.32599 L 181.79792,357.56392 L 183.12941,353.20634 L 185.76212,349.78684 L 189.54475,353.20634 L 189.93814,354.32599 L 191.0578,355.83905 L 186.33708,356.05087 L 185.58055,354.90095 L 183.70437,355.65748 L 183.31097,358.50202 L 181.22296,361.34655 L 181.22296,365.67388 L 181.1927,365.85545 L 182.73601,365.79492 L 188.7277,362.7083 L 191.96563,363.88848 L 191.81432,366.1278 L 190.42232,367.82241 L 191.96563,368.85129 L 195.23382,367.48954 L 197.44287,369.03285 L 198.83488,368.85129 L 200.86237,367.15667 L 204.31213,366.64223 L 205.49231,367.67111 L 206.52118,368.51842 L 206.52118,369.54729 L 205.67387,370.57617 L 208.7605,371.42348 L 210.63668,372.63392 L 210.81825,374.17723 L 212.51287,374.32853 L 214.90349,376.90072 L 215.59949,381.19779 L 219.01899,382.37797 L 222.28718,382.22666 L 222.28718,381.19779 L 221.92405,377.77829 L 222.95292,378.11116 L 224.88963,380.47152 L 227.91573,379.98735 L 229.30774,378.6256 L 229.12617,376.74942 L 227.91573,375.72054 L 228.27886,373.8141 L 230.15505,373.8141 L 232.03123,372.63392 L 231.18392,370.90904 L 230.66948,368.33685 L 232.03123,365.94623 L 234.93629,361.49786 L 236.66117,359.44011 L 238.20448,358.92567 L 238.53735,357.23105 L 236.4796,357.04949 L 235.63229,355.1733 L 236.29803,353.29712 L 238.71892,352.78268 L 240.41353,352.26824 L 242.41076,351.9959 L 242.28972,351.90511 L 242.13841,348.15274 L 244.0146,346.791 L 241.62398,345.24769 L 239.23335,348.15274 L 233.39298,348.33431 L 232.87854,346.9423 L 231.18392,346.09499 L 232.54567,344.37012 L 232.54567,342.49393 L 231.84966,341.46506 L 231.84966,340.43618 L 233.57454,339.40731 L 234.08898,336.35094 L 235.11785,333.59719 L 234.08898,332.05388 L 232.2128,332.05388 L 231.21418,330.8737 L 230.24583,332.90119 L 228.36965,331.5697 L 225.70667,332.90119 L 223.4371,332.53805 L 219.10977,328.18047 L 216.4468,327.9989 L 215.69027,321.94669 L 210.75773,321.37173 L 210.57616,318.5272 L 209.63807,319.46529 L 204.03978,319.46529 L 204.31213,320.67573 L 205.64361,326.15298 L 206.00675,331.63022 L 205.06865,333.14327 L 204.13056,328.60412 L 201.46759,318.22459 L 191.81432,309.50941 L 192.02615,305.54522 L 190.11971,305.36365 z "/> |
<path id="INSEE-D24" title="Dordogne (24) <?= !empty($infos_zones['24']) ? $infos_zones['24'] : ''; ?>" class="land departement aquitaine departement24" d="M 256.54266,300.76397 L 254.84805,303.79008 L 252.18507,304.15321 L 252.00351,308.69236 L 243.10677,314.74457 L 242.9252,321.37173 L 239.5057,324.76097 L 237.62952,326.48585 L 233.84689,326.09245 L 231.75888,329.69352 L 231.21418,330.8737 L 232.2128,332.05388 L 234.08898,332.05388 L 235.11785,333.59719 L 234.08898,336.35094 L 233.57454,339.40731 L 231.84966,340.43618 L 231.84966,341.46506 L 232.54567,342.49393 L 232.54567,344.37012 L 231.18392,346.09499 L 232.87854,346.9423 L 233.39298,348.33431 L 239.23335,348.15274 L 241.62398,345.24769 L 244.0146,346.791 L 242.13841,348.15274 L 242.28972,351.90511 L 245.04347,353.81156 L 245.37634,357.38236 L 248.2814,358.41123 L 250.00628,356.86792 L 253.75865,356.86792 L 255.8164,355.1733 L 257.02684,355.35487 L 257.35971,356.71662 L 261.14234,356.71662 L 261.98965,355.68774 L 263.35139,355.86931 L 264.89471,357.56392 L 264.89471,358.77437 L 263.53296,359.62167 L 264.0474,360.83212 L 265.92358,360.98342 L 268.3142,358.77437 L 270.37195,358.77437 L 271.7337,360.31768 L 274.69928,361.55838 L 274.88085,361.0742 L 276.60572,359.37959 L 276.78729,356.53505 L 280.93305,356.17192 L 283.59602,352.38929 L 282.4461,351.9959 L 282.26454,349.93815 L 285.47221,349.54475 L 285.68403,347.66857 L 287.19708,346.70022 L 288.8917,343.67411 L 287.19708,341.79793 L 287.19708,339.70992 L 288.49831,338.59026 L 286.80369,335.92729 L 286.98526,331.78153 L 282.8395,331.96309 L 281.14488,330.81318 L 282.65793,328.93699 L 280.56992,327.24237 L 282.08297,325.33593 L 280.56992,324.5794 L 280.56992,321.94669 L 284.35255,318.5272 L 282.26454,316.83258 L 281.14488,313.98804 L 277.15042,313.41308 L 275.81894,312.47499 L 278.66347,311.14351 L 277.72538,309.84228 L 273.57962,309.26732 L 272.61127,305.48469 L 266.55906,304.90973 L 265.22758,306.81618 L 263.92635,307.17931 L 262.20148,304.90973 L 262.98826,302.82172 L 262.01991,300.94554 L 256.54266,300.76397 z "/> |
<path id="INSEE-D47" title="Lot-et-Garonne (47) <?= !empty($infos_zones['47']) ? $infos_zones['47'] : ''; ?>" class="land departement aquitaine departement47" d="M 242.41076,351.9959 L 240.41353,352.26824 L 238.71892,352.78268 L 236.29803,353.29712 L 235.63229,355.1733 L 236.4796,357.04949 L 238.53735,357.23105 L 238.20448,358.92567 L 236.66117,359.44011 L 234.93629,361.49786 L 232.03123,365.94623 L 230.66948,368.33685 L 231.18392,370.90904 L 232.03123,372.63392 L 230.15505,373.8141 L 228.27886,373.8141 L 227.91573,375.72054 L 229.12617,376.74942 L 229.30774,378.6256 L 227.91573,379.98735 L 224.88963,380.47152 L 225.34354,381.01622 L 226.03955,385.13172 L 229.79191,384.79885 L 232.3641,385.79746 L 234.60342,385.97903 L 235.63229,387.18947 L 233.57454,389.24722 L 233.0601,392.99959 L 233.51402,394.17977 L 234.24028,392.66672 L 236.4796,394.57316 L 239.5057,391.54706 L 240.83719,393.42324 L 244.04486,392.84828 L 247.46435,392.48515 L 248.97741,389.82218 L 254.63622,389.27748 L 257.48075,392.09176 L 258.44911,391.15367 L 260.32529,390.57871 L 259.56877,387.946 L 262.4133,387.18947 L 266.01436,386.43295 L 265.22758,384.16337 L 266.3775,382.83188 L 267.31559,379.23082 L 265.22758,376.96124 L 266.55906,372.63392 L 269.4036,374.32853 L 273.57962,373.57201 L 271.67318,369.39599 L 270.16013,363.73717 L 273.94275,363.55561 L 274.69928,361.55838 L 271.7337,360.31768 L 270.37195,358.77437 L 268.3142,358.77437 L 265.92358,360.98342 L 264.0474,360.83212 L 263.53296,359.62167 L 264.89471,358.77437 L 264.89471,357.56392 L 263.35139,355.86931 L 261.98965,355.68774 L 261.14234,356.71662 L 257.35971,356.71662 L 257.02684,355.35487 L 255.8164,355.1733 L 253.75865,356.86792 L 250.00628,356.86792 L 248.2814,358.41123 L 245.37634,357.38236 L 245.04347,353.81156 L 242.41076,351.9959 z "/> |
<path id="INSEE-D46" title="Lot (46) <?= !empty($infos_zones['46']) ? $infos_zones['46'] : ''; ?>" class="land departement midi departement46" d="M 292.97694,336.44173 L 288.95222,338.31791 L 288.37727,338.40869 L 288.49831,338.59026 L 287.19708,339.70992 L 287.19708,341.79793 L 288.8917,343.67411 L 287.19708,346.70022 L 285.68403,347.66857 L 285.47221,349.54475 L 282.26454,349.93815 L 282.4461,351.9959 L 283.59602,352.38929 L 280.93305,356.17192 L 276.78729,356.53505 L 276.60572,359.37959 L 274.88085,361.0742 L 273.94275,363.55561 L 270.16013,363.73717 L 271.67318,369.39599 L 273.27701,372.90627 L 275.69789,372.81548 L 275.8492,373.8141 L 274.48745,375.35741 L 275.51633,377.41516 L 277.05964,377.41516 L 278.75426,379.29134 L 280.29757,379.29134 L 281.50801,377.9296 L 281.84088,378.29273 L 281.84088,379.98735 L 282.35532,382.22666 L 285.95638,382.37797 L 288.86144,379.29134 L 290.40475,379.14004 L 290.91919,379.98735 L 291.7665,381.86353 L 293.15851,381.86353 L 293.67295,378.44403 L 296.578,378.80717 L 298.27262,376.74942 L 301.02638,377.41516 L 305.14187,375.53898 L 305.17214,375.90211 L 306.50362,374.5101 L 304.77874,371.93791 L 304.113,368.51842 L 306.32206,366.64223 L 307.35093,366.9751 L 310.43755,363.55561 L 312.13217,363.73717 L 312.82818,362.8596 L 316.24767,362.8596 L 317.45811,361.49786 L 317.79098,360.43872 L 316.24767,360.2269 L 317.30681,357.01923 L 314.88593,355.96009 L 317.30681,350.33154 L 314.09914,347.94092 L 313.00974,340.98088 L 310.07442,340.19409 L 307.92589,342.31237 L 306.86675,340.43618 L 303.65908,343.64385 L 301.51055,343.9162 L 297.78845,338.59026 L 292.97694,336.44173 z "/> |
<path id="INSEE-D09" title="Ariege (09) <?= !empty($infos_zones['09']) ? $infos_zones['09'] : ''; ?>" class="land departement midi departement09" d="M 283.05132,432.36919 L 281.84088,433.2165 L 281.32645,434.24537 L 283.71707,435.97025 L 284.41307,437.18069 L 283.89863,438.1793 L 279.78313,438.54244 L 278.60295,440.23705 L 278.75426,440.75149 L 280.29757,441.26593 L 281.17514,442.47637 L 280.14627,444.17099 L 278.93582,444.01968 L 277.05964,442.2948 L 274.82032,441.62906 L 272.61127,441.78037 L 268.67734,444.17099 L 268.82864,447.43918 L 269.85752,448.13518 L 269.19177,450.67711 L 264.71314,451.88755 L 263.01852,453.9453 L 263.01852,457.3648 L 263.71453,458.39367 L 262.11069,459.87646 L 263.13957,460.45142 L 268.97995,461.57108 L 271.46135,461.57108 L 274.66902,465.7471 L 282.80924,465.35371 L 286.0169,470.46782 L 288.86144,469.3179 L 297.18322,470.46782 L 297.78845,473.94784 L 303.65908,472.58609 L 305.80762,470.70991 L 309.01529,469.89286 L 309.80207,468.28903 L 316.76211,467.77459 L 312.4953,462.69074 L 309.01529,464.56692 L 302.8723,459.48307 L 304.20378,457.60689 L 309.01529,457.60689 L 308.47059,453.06773 L 308.47059,449.58771 L 307.6838,443.14211 L 298.30288,438.60296 L 298.84758,436.99912 L 297.06218,435.0019 L 295.54913,435.63738 L 293.49138,435.97025 L 289.70875,434.24537 L 288.67988,433.9125 L 290.22319,435.78868 L 289.55745,437.332 L 286.28925,436.99912 L 286.13795,435.27425 L 284.2315,432.70206 L 283.05132,432.36919 z "/> |
<path id="INSEE-D32" title="Gers (32) <?= !empty($infos_zones['32']) ? $infos_zones['32'] : ''; ?>" class="land departement midi departement32" d="M 254.63622,389.27748 L 248.97741,389.82218 L 247.46435,392.48515 L 244.04486,392.84828 L 240.83719,393.42324 L 239.5057,391.54706 L 236.4796,394.57316 L 234.24028,392.66672 L 232.9088,395.51125 L 233.09037,397.9624 L 231.00235,398.53736 L 230.06426,397.20587 L 229.12617,394.36134 L 226.4632,396.63091 L 224.58702,395.87439 L 222.49901,396.26778 L 220.62282,398.53736 L 222.86214,402.31999 L 221.34909,403.83304 L 221.92405,407.04071 L 220.04786,409.49185 L 218.71638,413.09291 L 220.22943,415.75588 L 225.01067,416.08875 L 226.88685,415.09014 L 229.79191,415.09014 L 229.64061,418.32807 L 231.84966,419.53851 L 234.08898,419.87138 L 235.11785,422.62514 L 235.63229,423.13957 L 235.29942,424.83419 L 234.60342,425.53019 L 236.66117,426.89194 L 236.81247,428.43525 L 239.38466,428.43525 L 240.08066,427.73925 L 242.28972,427.73925 L 242.98572,429.28256 L 245.37634,429.28256 L 246.07235,430.67457 L 250.70228,430.67457 L 254.15204,432.45997 L 254.45465,432.03632 L 256.33084,431.00744 L 259.75033,426.55907 L 266.10515,427.07351 L 268.82864,428.94969 L 269.70621,427.73925 L 271.06796,423.65401 L 272.76257,419.72008 L 276.36364,418.17676 L 278.08852,417.48076 L 277.57408,415.93745 L 275.8492,415.75588 L 275.18346,414.06126 L 273.79145,414.06126 L 271.58239,411.82195 L 271.7337,410.27864 L 268.82864,407.37358 L 268.3142,405.52765 L 266.43802,406.3447 L 265.92358,405.31583 L 267.13402,403.43964 L 265.74202,402.0779 L 265.74202,399.68728 L 264.56184,398.47684 L 260.77921,398.29527 L 260.77921,396.08621 L 262.83696,394.5429 L 262.83696,392.81802 L 265.07627,391.78915 L 263.86583,391.12341 L 262.50409,391.78915 L 259.75033,391.78915 L 258.90302,391.00236 L 258.44911,391.15367 L 257.48075,392.09176 L 254.63622,389.27748 z "/> |
<path id="INSEE-D31" title="Haute-Garonne (31) <?= !empty($infos_zones['31']) ? $infos_zones['31'] : ''; ?>" class="land departement midi departement31" d="M 290.58632,399.50571 L 287.83257,400.53459 L 286.98526,401.89633 L 285.95638,400.71615 L 284.0802,400.53459 L 283.71707,402.25946 L 282.53689,402.74364 L 284.2315,403.62121 L 283.05132,405.49739 L 278.75426,406.70784 L 276.87807,404.46852 L 275.18346,404.46852 L 273.79145,405.31583 L 268.82864,405.31583 L 268.3142,405.52765 L 268.82864,407.37358 L 271.7337,410.27864 L 271.58239,411.82195 L 273.79145,414.06126 L 275.18346,414.06126 L 275.8492,415.75588 L 277.57408,415.93745 L 278.08852,417.48076 L 276.36364,418.17676 L 272.76257,419.72008 L 271.06796,423.65401 L 269.70621,427.73925 L 268.82864,428.94969 L 266.10515,427.07351 L 259.75033,426.55907 L 256.33084,431.00744 L 254.45465,432.03632 L 253.24421,433.73093 L 251.88246,435.78868 L 251.88246,436.99912 L 249.67341,437.84643 L 247.94853,440.75149 L 247.76696,442.2948 L 250.85359,444.53412 L 251.36803,446.74318 L 250.33915,448.46805 L 252.3969,447.77205 L 253.42578,448.64962 L 254.27309,452.22042 L 251.88246,453.61243 L 252.06403,455.48861 L 250.85359,456.66879 L 249.15897,455.82148 L 247.25253,455.82148 L 247.49462,465.98919 L 255.18092,466.50363 L 255.57431,457.21349 L 258.20702,457.60689 L 262.11069,459.87646 L 263.71453,458.39367 L 263.01852,457.3648 L 263.01852,453.9453 L 264.71314,451.88755 L 269.19177,450.67711 L 269.85752,448.13518 L 268.82864,447.43918 L 268.67734,444.17099 L 272.61127,441.78037 L 274.82032,441.62906 L 277.05964,442.2948 L 278.93582,444.01968 L 280.14627,444.17099 L 281.17514,442.47637 L 280.29757,441.26593 L 278.75426,440.75149 L 278.60295,440.23705 L 279.78313,438.54244 L 283.89863,438.1793 L 284.41307,437.18069 L 283.71707,435.97025 L 281.32645,434.24537 L 281.84088,433.2165 L 283.05132,432.36919 L 284.2315,432.70206 L 286.13795,435.27425 L 286.28925,436.99912 L 289.55745,437.332 L 290.22319,435.78868 L 288.67988,433.9125 L 289.70875,434.24537 L 293.49138,435.97025 L 295.54913,435.63738 L 297.06218,435.0019 L 296.69905,434.6085 L 299.11993,433.51911 L 299.63437,430.58379 L 302.59995,429.2523 L 301.7829,427.37612 L 304.47613,424.95524 L 305.80762,427.37612 L 309.80207,426.04463 L 310.5586,425.92359 L 310.61912,424.68289 L 310.61912,422.262 L 308.56137,422.62514 L 305.98918,421.92913 L 303.74987,419.20564 L 302.90256,417.9952 L 298.45419,416.11901 L 297.42531,414.5757 L 298.78706,414.06126 L 298.78706,412.18508 L 297.42531,410.64177 L 295.70043,407.88802 L 295.54913,405.49739 L 295.03469,405.16452 L 292.97694,402.74364 L 292.12963,400.20171 L 290.58632,399.50571 z "/> |
<path id="INSEE-D81" title="Tarn (81) <?= !empty($infos_zones['81']) ? $infos_zones['81'] : ''; ?>" class="land departement midi departement81" d="M 315.58193,384.43572 L 312.31374,384.61728 L 310.10468,386.82634 L 309.40868,385.28303 L 307.86537,386.1606 L 307.71406,385.79746 L 306.83649,386.67503 L 304.113,387.70391 L 301.87368,389.06566 L 296.06357,389.76166 L 295.36756,392.66672 L 297.60688,392.66672 L 295.36756,394.72447 L 294.33869,396.60065 L 291.10076,396.60065 L 292.79538,398.47684 L 291.82702,400.08067 L 292.12963,400.20171 L 292.97694,402.74364 L 295.03469,405.16452 L 295.54913,405.49739 L 295.70043,407.88802 L 297.42531,410.64177 L 298.78706,412.18508 L 298.78706,414.06126 L 297.42531,414.5757 L 298.45419,416.11901 L 302.90256,417.9952 L 303.74987,419.20564 L 305.98918,421.92913 L 308.56137,422.62514 L 310.61912,422.262 L 310.61912,424.68289 L 310.5586,425.92359 L 311.67826,425.77228 L 311.40591,427.10377 L 315.15828,427.10377 L 318.63829,428.19317 L 318.91064,424.71315 L 320.51448,424.71315 L 326.38512,425.77228 L 332.01367,425.77228 L 336.28047,424.4408 L 337.36987,420.96078 L 334.43455,418.26755 L 335.22134,415.60458 L 336.82517,413.21396 L 339.48814,415.05988 L 346.44818,412.66926 L 347.53758,410.52072 L 343.99704,408.25115 L 342.45372,407.88802 L 341.42485,409.24976 L 339.3671,409.7642 L 336.09891,408.06958 L 332.67941,403.62121 L 332.67941,401.74503 L 330.80323,398.29527 L 330.98479,396.75196 L 329.44148,392.81802 L 326.53642,391.45628 L 324.47867,387.85521 L 318.81986,386.82634 L 315.58193,384.43572 z "/> |
<path id="INSEE-D38" title="Isere (38) <?= !empty($infos_zones['38']) ? $infos_zones['38'] : ''; ?>" class="land departement rhone-alpes departement38" d="M 438.65353,289.35557 L 437.41283,290.8081 L 436.17213,294.49994 L 433.69072,295.74064 L 431.02775,293.25924 L 429.18183,293.25924 L 428.97,295.95247 L 431.66324,298.22205 L 427.54774,303.54799 L 422.19153,304.78869 L 418.07603,306.24122 L 420.739,308.90419 L 421.37449,310.14489 L 417.25899,312.20264 L 416.83533,318.16407 L 416.71429,318.22459 L 417.86421,320.61521 L 421.16266,321.64408 L 423.43224,320.82704 L 426.09521,318.98111 L 429.60549,321.85591 L 432.48028,321.85591 L 434.53803,324.73071 L 433.69072,326.78846 L 434.11438,329.69352 L 433.0855,332.56831 L 433.50916,333.59719 L 434.93143,333.17354 L 438.22988,334.20241 L 442.55721,335.44311 L 444.40313,334.20241 L 445.22018,332.78014 L 445.85566,332.78014 L 446.03722,348.18301 L 447.0661,349.21188 L 449.75933,349.21188 L 452.21047,350.66441 L 454.0564,352.11694 L 455.93258,352.29851 L 457.14302,353.32738 L 460.56252,353.72077 L 460.80461,353.14581 L 459.29155,352.38929 L 459.29155,350.11971 L 464.01228,350.11971 L 465.52533,348.60666 L 464.58723,346.91204 L 467.03838,345.0056 L 468.76326,345.76212 L 471.2144,343.67411 L 475.54173,344.43064 L 477.05478,342.73602 L 480.65584,342.91759 L 480.65584,338.77183 L 479.14279,338.0153 L 478.38626,335.56416 L 474.42207,335.17076 L 473.84711,334.23267 L 474.60364,330.26848 L 475.93512,329.11856 L 474.84572,327.63577 L 472.78797,326.39507 L 471.54727,327.63577 L 471.97093,325.97141 L 471.97093,324.33732 L 470.30657,322.67296 L 471.15388,318.76929 L 472.9998,317.74041 L 472.78797,315.07744 L 468.8843,311.17377 L 467.43177,311.17377 L 466.4029,312.59604 L 463.95175,309.32784 L 462.49922,309.50941 L 461.25852,312.20264 L 462.10583,313.83674 L 461.47035,314.47222 L 459.83625,313.23152 L 455.08527,312.20264 L 452.84596,308.08714 L 452.84596,306.42279 L 450.57638,303.97164 L 450.33429,302.91251 L 442.76903,293.68289 L 441.92172,291.01992 L 440.28763,289.56739 L 438.65353,289.35557 z "/> |
<path id="INSEE-D07" title="Ardeche (07) <?= !empty($infos_zones['07']) ? $infos_zones['07'] : ''; ?>" class="land departement rhone-alpes departement07" d="M 416.71429,318.22459 L 412.32644,320.82704 L 411.47913,324.54914 L 408.21094,325.15436 L 406.4558,325.63854 L 406.51632,325.72932 L 405.39666,330.26848 L 402.73369,331.38813 L 401.61403,333.29458 L 402.37056,335.74572 L 402.91526,337.07721 L 400.10098,337.07721 L 399.88916,340.64801 L 396.86305,340.85984 L 395.35,345.58056 L 390.81085,345.58056 L 385.90856,349.18162 L 383.18507,353.50895 L 383.63898,354.08391 L 384.97047,361.04394 L 388.17814,364.52396 L 387.63344,368.51842 L 391.65816,370.9393 L 391.65816,376.2955 L 393.80669,375.2061 L 398.34584,378.17169 L 400.49438,378.95847 L 401.00881,375.2061 L 403.70205,374.69167 L 404.48883,377.62699 L 407.18206,377.35464 L 407.6965,374.41932 L 413.83949,377.86907 L 414.8381,375.84159 L 417.44055,375.44819 L 417.65238,371.45374 L 417.04716,370.60643 L 416.23011,370.42486 L 416.23011,368.97233 L 416.83533,367.5198 L 415.80646,365.88571 L 416.41168,362.19386 L 418.89308,359.2888 L 418.89308,355.20356 L 417.86421,350.45258 L 419.71013,350.05919 L 420.13378,348.00144 L 421.97971,344.49116 L 423.00858,341.82819 L 421.37449,337.71269 L 420.34561,334.41424 L 418.89308,328.66464 L 418.89308,320.94808 L 417.86421,320.61521 L 416.71429,318.22459 z "/> |
<path id="INSEE-D26" title="Drome (26) <?= !empty($infos_zones['26']) ? $infos_zones['26'] : ''; ?>" class="land departement rhone-alpes departement26" d="M 426.09521,318.98111 L 423.43224,320.82704 L 421.16266,321.64408 L 418.89308,320.94808 L 418.89308,328.66464 L 420.34561,334.41424 L 421.37449,337.71269 L 423.00858,341.82819 L 421.97971,344.49116 L 420.13378,348.00144 L 419.71013,350.05919 L 417.86421,350.45258 L 418.89308,355.20356 L 418.89308,359.2888 L 416.41168,362.19386 L 415.80646,365.88571 L 416.83533,367.5198 L 416.23011,368.97233 L 416.23011,370.42486 L 417.04716,370.60643 L 417.65238,371.45374 L 417.44055,375.44819 L 419.95222,375.08506 L 421.07188,376.41655 L 420.52718,380.19917 L 421.2837,381.13727 L 424.09798,378.29273 L 426.57938,378.11116 L 427.12408,376.59811 L 423.91641,376.20472 L 423.37171,372.81548 L 425.42946,369.60781 L 428.09243,369.39599 L 430.72514,371.87739 L 428.09243,375.44819 L 428.84896,376.77968 L 432.63159,377.17307 L 435.08273,375.08506 L 433.75125,377.9296 L 434.14464,380.19917 L 438.10883,380.56231 L 443.40451,380.9557 L 444.16104,383.40684 L 447.00558,385.49485 L 449.45672,385.67642 L 451.15134,384.16337 L 452.11969,381.31883 L 453.63274,382.65032 L 454.7524,383.9818 L 455.50893,376.96124 L 453.63274,376.59811 L 452.48282,374.14697 L 446.06749,372.42209 L 445.2807,369.21442 L 447.58054,367.70137 L 445.67409,366.36988 L 446.06749,364.67527 L 449.09359,364.85683 L 451.7263,366.18832 L 453.81431,363.73717 L 451.7263,362.04256 L 451.90786,359.77298 L 453.05778,356.17192 L 457.02198,355.77852 L 460.22965,354.4773 L 460.56252,353.72077 L 457.14302,353.32738 L 455.93258,352.29851 L 454.0564,352.11694 L 452.21047,350.66441 L 449.75933,349.21188 L 447.0661,349.21188 L 446.03722,348.18301 L 445.85566,332.78014 L 445.22018,332.78014 L 444.40313,334.20241 L 442.55721,335.44311 L 438.22988,334.20241 L 434.93143,333.17354 L 433.50916,333.59719 L 433.0855,332.56831 L 434.11438,329.69352 L 433.69072,326.78846 L 434.53803,324.73071 L 432.48028,321.85591 L 429.60549,321.85591 L 426.09521,318.98111 z "/> |
<path id="INSEE-D19" title="Correze (19) <?= !empty($infos_zones['19']) ? $infos_zones['19'] : ''; ?>" class="land departement limousin departement19" d="M 310.67964,298.01022 L 309.8626,300.06797 L 306.77597,300.67319 L 305.56553,302.73094 L 304.113,302.73094 L 302.05525,302.12572 L 300.60272,304.57686 L 298.3634,304.78869 L 296.91088,307.45166 L 295.06495,307.45166 L 293.61242,308.90419 L 289.92058,308.48054 L 288.67988,310.53829 L 287.25761,310.35672 L 284.7762,313.44334 L 282.50663,312.59604 L 281.44749,314.74457 L 282.26454,316.83258 L 284.35255,318.5272 L 280.56992,321.94669 L 280.56992,324.5794 L 282.08297,325.33593 L 280.56992,327.24237 L 282.65793,328.93699 L 281.14488,330.81318 L 282.8395,331.96309 L 286.98526,331.78153 L 286.80369,335.92729 L 288.37727,338.40869 L 288.95222,338.31791 L 292.97694,336.44173 L 297.78845,338.59026 L 301.51055,343.9162 L 303.65908,343.64385 L 306.86675,340.43618 L 307.92589,342.31237 L 310.07442,340.19409 L 313.00974,340.98088 L 313.10053,341.61636 L 315.55167,339.89148 L 314.79514,338.0153 L 313.64522,336.86538 L 315.15828,334.9892 L 316.67133,334.9892 L 317.63968,331.96309 L 318.39621,330.45004 L 317.82125,327.03055 L 320.27239,323.64131 L 323.69189,321.5533 L 323.87345,316.25762 L 325.56807,317.19571 L 327.47451,319.28372 L 329.3507,319.28372 L 330.50062,317.95224 L 329.56253,315.68266 L 330.50062,312.29343 L 329.92566,309.08576 L 328.77574,307.75427 L 328.77574,305.0913 L 330.50062,302.27703 L 330.10722,299.61405 L 329.68357,299.1904 L 327.77712,300.67319 L 324.05502,300.67319 L 322.84458,302.51911 L 320.575,302.51911 L 318.72908,300.67319 L 317.88177,299.43249 L 313.16105,299.43249 L 312.13217,298.01022 L 310.67964,298.01022 z "/> |
<path id="INSEE-D23" title="Creuse (23) <?= !empty($infos_zones['23']) ? $infos_zones['23'] : ''; ?>" class="land departement limousin departement23" d="M 301.35925,259.51819 L 300.23959,262.54429 L 296.82009,262.36273 L 296.06357,261.96934 L 293.79399,262.18116 L 292.09937,261.03124 L 288.83118,264.78361 L 288.8917,267.56763 L 286.62213,272.07652 L 287.04578,274.3461 L 289.49692,274.95132 L 291.16128,279.06682 L 292.79538,280.73117 L 292.19015,288.53852 L 295.67017,287.50964 L 297.1227,289.35557 L 294.85313,291.20149 L 294.85313,293.07767 L 296.69905,293.25924 L 299.9975,293.07767 L 301.02638,291.62514 L 301.84342,291.62514 L 301.45003,294.10655 L 304.113,295.31699 L 306.5944,296.98135 L 306.5944,298.01022 L 305.14187,298.01022 L 305.56553,300.46136 L 306.53388,301.06658 L 306.77597,300.67319 L 309.8626,300.06797 L 310.67964,298.01022 L 312.13217,298.01022 L 313.16105,299.43249 L 317.88177,299.43249 L 318.72908,300.67319 L 320.575,302.51911 L 322.84458,302.51911 L 324.05502,300.67319 L 327.77712,300.67319 L 329.68357,299.1904 L 325.74964,295.25647 L 325.3865,293.56185 L 328.98757,291.47384 L 331.07558,290.35418 L 331.62028,287.69121 L 333.88985,285.99659 L 333.13333,282.39553 L 331.62028,280.51935 L 331.25714,274.64871 L 329.16913,269.74642 L 327.08112,268.98989 L 325.56807,266.32692 L 324.23658,268.02154 L 322.93536,266.32692 L 322.93536,264.05735 L 320.66578,260.84968 L 314.43201,261.6062 L 310.83095,260.66811 L 301.35925,259.51819 z "/> |
<path id="INSEE-D87" title="Haute-Vienne (87) <?= !empty($infos_zones['87']) ? $infos_zones['87'] : ''; ?>" class="land departement limousin departement87" d="M 285.29064,262.36273 L 283.59602,264.05735 L 278.84504,263.69421 L 278.30034,263.57317 L 274.69928,264.23891 L 272.61127,265.96379 L 272.61127,268.23337 L 268.46551,268.41493 L 266.01436,271.25947 L 264.50131,272.37913 L 265.80254,273.89218 L 265.62097,279.00629 L 264.68288,280.70091 L 266.19593,282.39553 L 268.82864,282.60736 L 269.4036,285.24007 L 269.58517,286.93468 L 266.19593,287.69121 L 264.50131,288.26617 L 264.86445,292.98689 L 262.59487,294.49994 L 260.68842,295.0749 L 259.75033,297.73787 L 258.23728,297.91944 L 257.6018,300.79423 L 262.01991,300.94554 L 262.98826,302.82172 L 262.20148,304.90973 L 263.92635,307.17931 L 265.22758,306.81618 L 266.55906,304.90973 L 272.61127,305.48469 L 273.57962,309.26732 L 277.72538,309.84228 L 278.66347,311.14351 L 275.81894,312.47499 L 277.15042,313.41308 L 281.14488,313.98804 L 281.44749,314.74457 L 282.50663,312.59604 L 284.7762,313.44334 L 287.25761,310.35672 L 288.67988,310.53829 L 289.92058,308.48054 L 293.61242,308.90419 L 295.06495,307.45166 L 296.91088,307.45166 L 298.3634,304.78869 L 300.60272,304.57686 L 302.05525,302.12572 L 304.113,302.73094 L 305.56553,302.73094 L 306.53388,301.06658 L 305.56553,300.46136 L 305.14187,298.01022 L 306.5944,298.01022 L 306.5944,296.98135 L 304.113,295.31699 L 301.45003,294.10655 L 301.84342,291.62514 L 301.02638,291.62514 L 299.9975,293.07767 L 296.69905,293.25924 L 294.85313,293.07767 L 294.85313,291.20149 L 297.1227,289.35557 L 295.67017,287.50964 L 292.19015,288.53852 L 292.79538,280.73117 L 291.16128,279.06682 L 289.49692,274.95132 L 287.04578,274.3461 L 286.62213,272.07652 L 288.8917,267.56763 L 288.83118,264.78361 L 288.31674,265.38883 L 285.29064,262.36273 z "/> |
<path id="INSEE-D16" title="Charente (16) <?= !empty($infos_zones['16']) ? $infos_zones['16'] : ''; ?>" class="land departement poitou departement16" d="M 253.09291,275.98019 L 251.45881,277.22089 L 251.67064,279.91413 L 250.64176,280.73117 L 247.7367,279.06682 L 244.86191,280.09569 L 241.56345,280.30752 L 239.08205,277.28142 L 238.29526,277.43272 L 234.99681,279.06682 L 232.51541,279.7023 L 232.51541,281.12457 L 231.09314,282.78892 L 231.48653,283.8178 L 229.64061,284.84667 L 228.00651,290.8081 L 227.58286,294.71177 L 226.16059,295.31699 L 224.10284,295.13542 L 223.67919,294.10655 L 221.40961,294.10655 L 220.19917,295.13542 L 217.50594,295.13542 L 215.23636,296.34586 L 216.90072,296.98135 L 217.11254,301.30867 L 217.92959,301.49024 L 216.47706,303.1546 L 218.14142,304.18347 L 220.38073,306.24122 L 221.62144,308.29897 L 223.07397,309.72124 L 222.65031,311.77899 L 221.83326,312.59604 L 223.07397,313.83674 L 223.07397,315.28927 L 220.59256,317.34702 L 221.62144,318.16407 L 223.07397,318.58772 L 223.07397,318.98111 L 221.01622,319.79816 L 221.19778,320.82704 L 222.43848,321.46252 L 226.34216,320.82704 L 228.00651,322.67296 L 229.24722,324.33732 L 233.27193,327.06081 L 233.84689,326.09245 L 237.62952,326.48585 L 239.5057,324.76097 L 242.9252,321.37173 L 243.10677,314.74457 L 252.00351,308.69236 L 252.18507,304.15321 L 254.84805,303.79008 L 256.54266,300.76397 L 257.6018,300.79423 L 258.23728,297.91944 L 259.75033,297.73787 L 260.68842,295.0749 L 262.59487,294.49994 L 264.86445,292.98689 L 264.50131,288.26617 L 266.19593,287.69121 L 269.58517,286.93468 L 269.4036,285.24007 L 268.82864,282.60736 L 266.19593,282.39553 L 264.68288,280.70091 L 265.62097,279.00629 L 265.68149,277.46298 L 263.98688,276.61567 L 260.71868,276.61567 L 259.26616,278.24977 L 255.75588,279.7023 L 254.54544,278.4616 L 253.09291,275.98019 z "/> |
<path id="INSEE-D79" title="Deux-Sevres (79) <?= !empty($infos_zones['79']) ? $infos_zones['79'] : ''; ?>" class="land departement poitou departement79" d="M 229.30774,222.26687 L 224.19362,222.44843 L 219.4729,223.38652 L 214.35879,223.77992 L 214.35879,226.41263 L 211.72608,228.13751 L 205.85544,226.80602 L 201.89125,228.50064 L 203.76743,231.16361 L 203.76743,233.43319 L 208.30658,237.21581 L 207.18693,239.66696 L 210.21303,243.05619 L 208.88154,244.78107 L 210.75773,247.59535 L 211.33269,252.89103 L 210.21303,254.40408 L 211.54451,256.67366 L 210.21303,259.15506 L 210.39459,260.66811 L 211.90765,259.51819 L 213.78383,261.42464 L 211.15112,263.11925 L 210.21303,264.23891 L 208.12502,264.81387 L 205.67387,265.96379 L 205.49231,265.81249 L 205.58309,268.5965 L 207.64084,270.83582 L 207.64084,272.07652 L 210.72747,274.3461 L 214.63114,274.55792 L 217.29411,278.03794 L 221.62144,277.64455 L 225.13172,280.09569 L 227.79469,281.33639 L 228.21834,283.39414 L 229.70113,284.81641 L 231.48653,283.8178 L 231.09314,282.78892 L 232.51541,281.12457 L 232.51541,279.7023 L 234.99681,279.06682 L 238.29526,277.43272 L 241.77528,276.8275 L 242.41076,274.95132 L 239.5057,274.13427 L 238.08344,271.86469 L 239.11231,269.41355 L 240.35301,267.96102 L 240.35301,264.87439 L 239.11231,264.05735 L 237.47821,264.87439 L 237.47821,265.90327 L 236.63091,267.14397 L 234.99681,265.29805 L 234.78498,264.05735 L 235.42047,262.63508 L 233.96794,261.6062 L 233.96794,257.27888 L 233.15089,257.06705 L 233.15089,255.61452 L 234.39159,253.55677 L 234.57316,252.52789 L 235.42047,250.28858 L 234.78498,248.83605 L 232.72723,248.019 L 234.78498,244.93238 L 235.42047,243.29828 L 235.42047,242.26941 L 233.96794,240.60505 L 233.96794,239.99983 L 234.78498,238.5473 L 234.17976,237.51842 L 235.42047,236.09616 L 234.39159,233.82658 L 233.75611,230.52813 L 233.54428,228.47038 L 231.91019,228.6822 L 231.60758,224.02201 L 231.21418,224.71801 L 229.8827,223.59835 L 229.30774,222.26687 z "/> |
<path id="INSEE-D22" title="Cotes-d'Armor (22) <?= !empty($infos_zones['22']) ? $infos_zones['22'] : ''; ?>" class="land departement bretagne departement22" d="M 120.91273,119.43989 L 119.18785,120.77138 L 114.86053,121.31607 L 113.89217,122.64756 L 110.86607,120.37798 L 106.90188,123.04095 L 108.41493,125.0987 L 105.78222,128.69977 L 105.66117,128.63924 L 104.57178,133.7231 L 106.90188,133.8744 L 106.75057,135.90189 L 108.47545,136.99129 L 106.90188,138.56486 L 105.81248,139.35165 L 105.96379,141.19757 L 108.32414,141.98436 L 106.11509,142.61984 L 106.11509,144.94994 L 107.53736,146.82612 L 107.83997,152.30337 L 106.90188,153.24146 L 107.68866,156.05573 L 110.65424,156.84252 L 110.95685,158.38583 L 112.83304,158.53714 L 114.40661,157.44774 L 115.3447,158.38583 L 118.94577,159.95941 L 121.91135,158.38583 L 122.66787,156.84252 L 125.17954,156.66096 L 127.99381,159.17262 L 130.65678,158.53714 L 132.98688,160.8975 L 134.07628,160.8975 L 135.16568,162.28951 L 137.37473,162.28951 L 138.13126,161.20011 L 139.06935,163.2276 L 141.42971,164.16569 L 144.39529,162.28951 L 144.39529,160.26202 L 146.57409,159.47523 L 147.96609,159.47523 L 149.69097,162.62238 L 153.44334,162.92499 L 155.31952,160.56463 L 157.34701,156.20704 L 160.00998,155.26895 L 161.40199,153.24146 L 162.82426,154.63347 L 165.78984,154.02825 L 166.72793,145.43411 L 167.66602,141.98436 L 166.72793,140.10817 L 165.15436,139.50295 L 164.09522,133.78362 L 162.88478,135.14536 L 159.28372,134.75197 L 158.92058,136.83998 L 156.65101,137.02155 L 156.46944,134.38884 L 154.563,133.81388 L 153.23151,135.32693 L 153.23151,131.5443 L 150.96193,133.23892 L 147.5727,132.66396 L 146.42278,134.93354 L 139.43248,138.71617 L 139.43248,140.62261 L 137.91943,140.62261 L 137.91943,137.20311 L 133.95524,135.32693 L 134.31837,131.90743 L 130.74757,129.27472 L 130.74757,126.06706 L 128.0846,125.4921 L 128.26616,122.46599 L 126.20841,122.28443 L 126.38998,120.19642 L 122.60735,120.19642 L 122.03239,122.0726 L 120.91273,119.43989 z "/> |
<path id="INSEE-D29" title="Finistere (29) <?= !empty($infos_zones['29']) ? $infos_zones['29'] : ''; ?>" class="land departement bretagne departement29" d="M 92.709454,125.0987 L 90.651704,127.36828 L 88.382127,126.43019 L 84.206105,126.82358 L 83.449579,128.69977 L 80.998436,129.27472 L 80.605043,127.18671 L 76.277716,127.76167 L 76.277716,129.09316 L 73.251613,129.27472 L 71.920127,128.33663 L 70.407076,129.09316 L 70.013683,131.36274 L 64.92983,131.5443 L 62.266859,134.75197 L 64.536436,136.44659 L 61.510334,138.92799 L 62.448425,140.62261 L 61.6919,144.76837 L 64.718003,145.16176 L 65.867922,144.01185 L 66.442881,144.76837 L 73.614745,143.83028 L 78.335465,140.44104 L 74.189705,144.40524 L 74.552837,146.28142 L 78.335465,144.58681 L 77.57894,147.24978 L 81.754962,147.43134 L 81.573396,148.551 L 77.034241,148.36943 L 73.433179,147.43134 L 69.075591,145.34333 L 66.442881,148.36943 L 69.832116,149.51935 L 69.65055,154.60321 L 70.588642,153.84668 L 72.676653,150.63901 L 76.640848,152.90859 L 78.547293,153.30198 L 79.303818,156.32808 L 78.153899,158.38583 L 75.702756,158.20427 L 73.433179,158.20427 L 69.65055,158.77923 L 63.204951,159.14236 L 61.903727,160.86724 L 63.779911,161.9869 L 65.867922,161.80533 L 67.562539,163.31838 L 70.013683,163.13682 L 74.008138,167.67597 L 74.94623,172.57826 L 73.614745,175.24123 L 77.57894,175.99775 L 81.936528,175.78593 L 82.87462,174.09131 L 81.180002,171.82173 L 82.87462,172.57826 L 84.599498,172.39669 L 87.625601,174.09131 L 89.501785,173.72818 L 89.501785,170.49025 L 90.258311,173.72818 L 92.709454,177.69237 L 98.005134,178.0555 L 98.216961,176.93584 L 99.518186,178.81203 L 102.75612,179.38699 L 105.20726,179.38699 L 105.35856,179.59882 L 106.26639,175.87671 L 108.47545,175.87671 L 109.56485,174.15183 L 110.95685,174.15183 L 111.10816,171.36782 L 111.89495,170.42972 L 110.35163,168.37197 L 109.41354,169.49163 L 107.05318,167.61545 L 102.21142,166.82866 L 101.42463,164.01439 L 100.03262,160.41332 L 99.881318,159.02132 L 102.21142,157.14513 L 104.42047,157.14513 L 107.56762,155.63208 L 106.90188,153.24146 L 107.83997,152.30337 L 107.53736,146.82612 L 106.11509,144.94994 L 106.11509,142.61984 L 108.32414,141.98436 L 105.96379,141.19757 L 105.81248,139.35165 L 106.90188,138.56486 L 108.47545,136.99129 L 106.75057,135.90189 L 106.90188,133.8744 L 104.57178,133.7231 L 105.66117,128.63924 L 102.54429,126.82358 L 97.248608,127.00515 L 97.248608,130.78778 L 95.735557,130.78778 L 95.372425,129.09316 L 93.102847,129.45629 L 92.709454,125.0987 z "/> |
<path id="INSEE-D35" title="Ille-et-Villaine (35) <?= !empty($infos_zones['35']) ? $infos_zones['35'] : ''; ?>" class="land departement bretagne departement35" d="M 165.91088,131.72587 L 164.09522,133.78362 L 165.15436,139.50295 L 166.72793,140.10817 L 167.66602,141.98436 L 166.72793,145.43411 L 165.78984,154.02825 L 162.82426,154.63347 L 161.40199,153.24146 L 160.00998,155.26895 L 157.34701,156.20704 L 155.31952,160.56463 L 154.07882,162.1382 L 154.53274,164.16569 L 153.74595,167.28258 L 152.35394,168.55354 L 152.35394,169.79424 L 153.29203,170.09685 L 155.955,170.09685 L 158.2851,171.51912 L 159.85868,174.3334 L 158.43641,176.20958 L 158.92058,178.0555 L 160.94807,178.0555 L 161.09938,179.93169 L 159.52581,181.80787 L 157.83119,182.59466 L 158.92058,183.23014 L 159.22319,184.16823 L 157.49832,185.56024 L 159.49554,189.31261 L 163.30843,187.28512 L 175.01945,186.71016 L 175.77598,184.62215 L 177.68242,182.74596 L 181.82818,182.171 L 182.00975,180.08299 L 184.85429,180.47639 L 186.5489,182.74596 L 190.36179,183.68405 L 191.08806,182.171 L 192.05641,178.75151 L 194.50755,172.6993 L 195.83904,171.94277 L 199.04671,172.33617 L 199.04671,167.22205 L 197.71522,165.89057 L 197.71522,160.41332 L 197.14026,158.53714 L 197.14026,155.51104 L 199.04671,153.60459 L 199.04671,149.82196 L 198.10862,149.06544 L 198.29018,143.76976 L 196.77713,143.01323 L 194.50755,143.01323 L 192.60111,141.50018 L 190.54336,143.95132 L 188.84874,144.16315 L 187.33569,146.2209 L 185.82264,145.85777 L 182.58471,143.01323 L 181.46505,139.41217 L 180.89009,137.02155 L 171.59996,137.02155 L 168.18046,134.93354 L 170.45004,131.90743 L 165.91088,131.72587 z "/> |
<path id="INSEE-D44" title="Loire-Atlantique (44) <?= !empty($infos_zones['44']) ? $infos_zones['44'] : ''; ?>" class="land departement pdll departement44" d="M 182.00975,180.08299 L 181.82818,182.171 L 177.68242,182.74596 L 175.77598,184.62215 L 175.01945,186.71016 L 163.30843,187.28512 L 158.37589,189.91783 L 158.19432,195.21351 L 152.89864,197.30152 L 149.29758,199.1777 L 146.27147,199.1777 L 145.15182,197.87648 L 143.4572,199.57109 L 142.64015,199.7224 L 143.6085,200.38814 L 140.00744,203.59581 L 140.76397,204.35234 L 141.52049,205.86539 L 139.61405,208.52836 L 141.70206,209.64802 L 145.30312,210.40454 L 145.66625,208.89149 L 147.75427,211.55446 L 151.17376,211.55446 L 153.6249,208.89149 L 156.83257,208.89149 L 153.44334,210.58611 L 153.6249,212.49255 L 154.38143,214.18717 L 152.29342,216.27518 L 150.02384,216.27518 L 150.41724,219.11972 L 154.563,218.36319 L 159.49554,222.90235 L 159.25346,223.20496 L 162.82426,225.53506 L 163.61104,227.41124 L 166.87924,228.83351 L 169.3909,229.13612 L 170.4803,232.1017 L 174.38397,233.03979 L 177.01668,233.52397 L 178.43895,231.95039 L 177.01668,229.92291 L 176.41146,225.53506 L 177.65216,224.14305 L 179.37704,224.14305 L 180.16383,225.86793 L 179.67965,228.98481 L 180.76905,229.7716 L 183.58332,228.83351 L 184.52141,225.71662 L 183.28071,224.44566 L 186.3976,224.44566 L 187.487,222.41817 L 188.57639,222.56948 L 191.08806,224.92984 L 192.90372,225.17192 L 192.96424,223.20496 L 191.39067,221.17747 L 189.99866,221.17747 L 189.51448,221.32877 L 188.57639,220.87486 L 189.36318,220.08807 L 189.36318,218.6658 L 190.93675,218.21189 L 191.87484,216.03309 L 191.08806,215.24631 L 190.93675,212.58334 L 188.90926,212.58334 L 186.88178,210.07167 L 186.88178,208.22575 L 189.06057,207.10609 L 192.96424,206.34956 L 199.04671,206.50087 L 200.92289,205.22991 L 200.28741,201.32623 L 197.47314,198.69352 L 194.05364,199.14744 L 193.11555,198.36065 L 192.96424,195.57664 L 195.44565,193.36758 L 193.56946,191.03748 L 192.32876,187.73903 L 190.30127,186.49833 L 190.30127,184.31954 L 190.08944,183.62353 L 186.5489,182.74596 L 184.85429,180.47639 L 182.00975,180.08299 z "/> |
<path id="INSEE-D70" title="Haute-Saone (70) <?= !empty($infos_zones['70']) ? $infos_zones['70'] : ''; ?>" class="land departement franche-comte departement70" d="M 463.43732,170.06659 L 459.86651,170.64155 L 459.29155,172.51773 L 457.38511,173.84922 L 456.08389,172.33617 L 455.14579,172.91113 L 455.87206,174.03079 L 453.99587,175.18071 L 454.57083,176.69376 L 452.48282,177.45028 L 452.48282,179.90143 L 449.81985,179.90143 L 449.63829,181.41448 L 447.00558,181.98944 L 447.18714,184.25901 L 448.88176,184.44058 L 447.94367,185.56024 L 447.36871,189.34287 L 445.67409,189.34287 L 442.82956,190.49279 L 439.80345,189.34287 L 437.17074,190.49279 L 437.17074,192.39923 L 439.22849,192.76236 L 440.74154,195.78847 L 440.95337,197.30152 L 438.50223,200.14605 L 437.35231,200.50919 L 436.59578,201.44728 L 438.68379,202.41563 L 439.04693,205.44173 L 440.74154,205.6233 L 440.95337,209.40593 L 441.7099,210.16245 L 441.80068,210.76767 L 443.25321,211.16107 L 444.88731,212.52281 L 447.33845,212.52281 L 448.27654,211.58472 L 449.9409,211.64524 L 451.66578,211.70577 L 455.47867,208.58888 L 456.56806,208.58888 L 457.7785,207.65079 L 461.71244,207.77183 L 464.70828,205.32069 L 466.88707,204.9273 L 467.70412,202.89981 L 469.45926,202.35511 L 471.2144,199.35927 L 473.66554,197.45282 L 476.23773,197.05943 L 478.14418,198.42118 L 481.68472,197.99752 L 481.68472,196.09108 L 483.10698,195.27403 L 484.22664,193.73072 L 486.40544,193.73072 L 487.61588,192.45975 L 488.06979,189.43365 L 488.06979,187.55747 L 487.25275,184.68267 L 487.25275,182.26179 L 488.73554,181.17239 L 490.49068,180.26456 L 490.30911,179.90143 L 484.2569,176.69376 L 482.56229,174.78731 L 480.86767,173.66765 L 479.35462,174.42418 L 479.14279,175.54384 L 477.62974,176.48193 L 476.69165,176.48193 L 473.84711,173.27426 L 469.88291,173.27426 L 468.1883,174.60575 L 466.67525,174.78731 L 464.2241,172.91113 L 464.40567,170.82312 L 463.43732,170.06659 z "/> |
<path id="INSEE-D76" title="Seine-Maritime (76) <?= !empty($infos_zones['76']) ? $infos_zones['76'] : ''; ?>" class="land departement haute-normandie departement76" d="M 287.62074,59.674359 L 286.38004,61.18741 L 278.27008,67.421182 L 263.89609,71.022245 L 254.42439,74.41148 L 246.67757,78.587502 L 242.13841,85.396233 L 241.20032,90.691913 L 244.98295,93.53645 L 250.4602,94.656108 L 249.58263,94.807413 L 249.61289,94.958718 L 253.84943,94.41402 L 256.02823,92.08392 L 257.66232,91.690527 L 259.5385,94.958718 L 262.14095,94.686369 L 263.23035,96.562553 L 267.83003,96.290203 L 272.45996,99.558395 L 269.46412,100.49649 L 271.64292,102.13058 L 273.00466,102.13058 L 274.2151,104.73303 L 276.3939,104.73303 L 277.05964,103.09893 L 275.42554,102.00954 L 280.05548,100.64779 L 284.92751,100.10309 L 286.16821,96.562553 L 288.46805,94.535064 L 292.82564,94.41402 L 297.84897,96.986207 L 300.84481,97.319078 L 301.35925,95.745505 L 302.69073,93.264101 L 303.44726,91.962876 L 301.54081,91.962876 L 301.54081,88.724946 L 300.42115,86.848763 L 301.17768,83.066134 L 301.93421,81.159689 L 300.42115,81.159689 L 301.17768,79.283505 L 303.05386,77.013928 L 301.17768,73.594432 L 300.60272,70.205197 L 292.28094,62.06498 L 291.34285,60.188796 L 289.25483,60.370362 L 287.62074,59.674359 z "/> |
<path id="INSEE-D27" title="Eure (27) <?= !empty($infos_zones['27']) ? $infos_zones['27'] : ''; ?>" class="land departement haute-normandie departement27" d="M 257.66232,91.690527 L 256.02823,92.08392 L 253.84943,94.41402 L 249.61289,94.958718 L 250.49046,101.97928 L 252.3969,102.55424 L 252.3969,103.31076 L 250.49046,104.43042 L 252.76003,107.63809 L 253.90995,112.17724 L 253.69813,114.08369 L 252.00351,115.20335 L 252.18507,116.53483 L 254.09152,117.29136 L 254.27309,118.98597 L 252.76003,123.34356 L 254.27309,125.25001 L 259.56877,125.43157 L 260.68842,128.06428 L 262.59487,129.97073 L 265.22758,130.90882 L 266.01436,133.75336 L 264.68288,135.62954 L 267.43663,137.47546 L 270.16013,134.87301 L 272.79284,134.87301 L 279.63183,131.30221 L 281.87114,132.24031 L 286.62213,132.24031 L 287.74178,130.90882 L 287.74178,128.06428 L 291.52441,126.1881 L 291.52441,123.162 L 292.55329,122.31469 L 292.4625,121.46738 L 293.43086,120.49903 L 291.73624,120.13589 L 291.73624,118.62284 L 290.76789,117.10979 L 291.52441,116.1717 L 296.82009,114.65865 L 298.15158,112.38907 L 299.3015,108.21305 L 300.6935,106.48817 L 300.99611,104.24885 L 302.69073,105.18695 L 304.02222,104.82381 L 303.05386,103.31076 L 302.50917,98.953174 L 300.81455,97.440123 L 300.84481,97.319078 L 297.84897,96.986207 L 292.82564,94.41402 L 288.46805,94.535064 L 286.16821,96.562553 L 284.92751,100.10309 L 280.05548,100.64779 L 275.42554,102.00954 L 277.05964,103.09893 L 276.3939,104.73303 L 274.2151,104.73303 L 273.00466,102.13058 L 271.64292,102.13058 L 269.46412,100.49649 L 272.45996,99.558395 L 267.83003,96.290203 L 263.23035,96.562553 L 262.14095,94.686369 L 259.5385,94.958718 L 257.66232,91.690527 z "/> |
<path id="INSEE-D37" title="Indre-et-Loire (37) <?= !empty($infos_zones['37']) ? $infos_zones['37'] : ''; ?>" class="land departement centre departement37" d="M 258.81224,190.76513 L 259.17537,191.61244 L 253.69813,193.1255 L 252.3969,195.03194 L 250.09706,193.51889 L 251.24698,197.30152 L 249.15897,197.30152 L 245.37634,194.63855 L 243.50016,198.42118 L 244.43825,199.57109 L 244.43825,200.69075 L 242.53181,203.17216 L 242.74363,207.31792 L 239.71753,210.91898 L 237.569,218.6658 L 237.81109,218.6658 L 238.56761,221.69191 L 242.16867,222.44843 L 242.16867,224.71801 L 246.70783,226.04949 L 246.70783,229.65056 L 246.52626,231.92013 L 252.18507,231.92013 L 257.11762,230.77021 L 256.72423,228.6822 L 258.23728,227.74411 L 259.75033,229.83212 L 261.08182,230.40708 L 262.20148,234.94624 L 265.43941,238.33547 L 265.80254,240.99844 L 268.73786,243.9035 L 270.40221,243.7522 L 272.45996,241.84575 L 273.94275,234.12919 L 274.88085,231.4057 L 275.57685,228.01646 L 278.57269,226.92706 L 280.60018,227.32046 L 281.96193,228.56116 L 283.44472,226.11002 L 284.80646,224.86931 L 284.80646,223.38652 L 286.5616,223.26548 L 286.98526,221.48008 L 285.47221,219.45259 L 285.71429,218.60528 L 284.65516,217.69745 L 281.81062,213.49117 L 278.14904,213.49117 L 277.05964,211.85707 L 277.05964,205.04834 L 275.57685,201.11441 L 275.3045,196.24238 L 273.39806,196.09108 L 271.21926,194.45698 L 270.67456,194.45698 L 268.76812,195.81873 L 267.55768,195.00168 L 267.28533,193.1255 L 268.64707,192.42949 L 268.76812,191.76375 L 267.98133,191.06775 L 258.81224,190.76513 z "/> |
<path id="INSEE-D18" title="Cher (18) <?= !empty($infos_zones['18']) ? $infos_zones['18'] : ''; ?>" class="land departement centre departement18" d="M 320.15135,194.60829 L 317.39759,195.97003 L 314.94645,197.99752 L 315.06749,198.81457 L 317.51864,199.48031 L 318.48699,201.53806 L 319.96978,202.08276 L 319.42508,203.2932 L 319.42508,205.32069 L 317.12524,206.28904 L 315.33984,209.52697 L 315.2188,211.31237 L 315.88454,212.12942 L 316.15689,213.06751 L 313.73601,214.42926 L 309.92312,214.82265 L 308.98503,213.76352 L 307.89563,213.88456 L 306.80623,215.095 L 306.92728,217.54615 L 304.50639,217.69745 L 304.35509,219.84598 L 302.17629,221.63138 L 302.44864,222.44843 L 303.81039,223.53783 L 306.53388,223.93122 L 308.56137,223.11417 L 311.13356,222.99313 L 312.37426,223.93122 L 311.95061,226.50341 L 314.1294,229.37821 L 314.1294,230.58865 L 313.19131,232.22274 L 313.19131,232.88849 L 314.28071,234.12919 L 316.03585,234.12919 L 316.15689,234.91598 L 314.00836,236.70138 L 314.1294,237.91182 L 312.76765,238.60782 L 313.31235,239.54591 L 315.06749,241.0287 L 315.06749,242.1181 L 313.19131,243.2075 L 313.19131,244.84159 L 315.7635,246.20334 L 316.30819,248.10978 L 317.94229,249.59257 L 317.79098,250.13727 L 317.12524,250.95432 L 316.97394,253.40546 L 316.58054,254.22251 L 317.66994,256.37104 L 318.06333,258.00514 L 316.15689,259.91159 L 316.06611,261.42464 L 320.51448,260.87994 L 321.42231,258.94323 L 323.87345,256.12896 L 328.59417,255.1606 L 331.07558,255.91713 L 333.70829,253.85938 L 333.52672,252.34633 L 332.58863,251.5898 L 332.58863,248.5637 L 337.67248,243.44959 L 339.57893,245.5376 L 341.27354,243.81272 L 342.78659,243.63115 L 345.4193,240.24192 L 349.77689,240.60505 L 349.83741,241.63392 L 351.28994,237.00399 L 350.35185,235.30937 L 350.53342,232.85823 L 351.10838,227.92568 L 349.02037,225.86793 L 349.41376,221.32877 L 347.50732,217.33432 L 347.32575,214.70161 L 343.90625,212.03864 L 343.36155,209.76906 L 345.05617,207.31792 L 345.05617,203.71686 L 343.0892,201.41702 L 341.1525,202.2038 L 340.21441,201.81041 L 338.85266,200.02501 L 338.03561,199.90397 L 337.49091,200.17631 L 337.33961,202.89981 L 336.12917,203.02085 L 335.19108,202.2038 L 333.01228,199.20796 L 332.19523,198.14883 L 329.07835,197.99752 L 327.5653,196.09108 L 326.35486,196.09108 L 325.81016,196.78708 L 323.78267,197.05943 L 322.14857,195.54638 L 320.24213,194.72933 L 320.15135,194.60829 z "/> |
<path id="INSEE-D58" title="Nievre (58) <?= !empty($infos_zones['58']) ? $infos_zones['58'] : ''; ?>" class="land departement bourgogne departement58" d="M 350.38211,197.45282 L 349.44402,198.93561 L 347.65862,198.93561 L 345.268,198.39091 L 342.60503,199.1777 L 342.78659,201.08415 L 345.05617,203.71686 L 345.05617,207.31792 L 343.36155,209.76906 L 343.90625,212.03864 L 347.32575,214.70161 L 347.50732,217.33432 L 349.41376,221.32877 L 349.02037,225.86793 L 351.10838,227.92568 L 350.53342,232.85823 L 350.35185,235.30937 L 351.28994,237.00399 L 349.83741,241.63392 L 349.95846,243.05619 L 353.19639,244.56924 L 355.46597,247.05065 L 357.52372,245.90073 L 359.43016,244.78107 L 359.82355,246.47569 L 362.63783,246.47569 L 363.39436,244.96264 L 365.08897,245.71916 L 365.66393,248.17031 L 367.17698,247.80717 L 370.77805,242.87463 L 372.65423,244.20611 L 372.95684,244.78107 L 375.92242,242.93515 L 377.13286,243.08645 L 378.07095,245.38629 L 379.85635,245.11394 L 381.2181,243.7522 L 382.97324,243.7522 L 384.33499,241.99706 L 385.69673,241.72471 L 385.96908,240.75635 L 388.93466,240.90766 L 389.08597,240.21166 L 387.72422,239.00121 L 387.72422,237.79077 L 389.63067,236.70138 L 389.63067,235.88433 L 387.84527,234.79493 L 387.57292,232.76744 L 387.72422,230.861 L 386.51378,230.04395 L 387.57292,228.56116 L 388.54127,228.01646 L 389.20701,226.38237 L 388.26892,225.83767 L 387.17952,224.20357 L 388.54127,222.29713 L 390.84111,220.93538 L 393.68564,220.93538 L 393.68564,218.78685 L 394.50269,218.5145 L 394.50269,217.69745 L 393.29225,215.79101 L 390.56876,215.24631 L 389.63067,213.61221 L 390.02406,212.12942 L 390.29641,210.07167 L 389.81223,208.98227 L 386.78613,211.04002 L 385.54543,211.58472 L 383.91133,210.49533 L 384.06264,207.77183 L 382.27724,207.77183 L 380.79445,208.74019 L 380.40105,207.49948 L 381.2181,206.13774 L 380.24975,204.9273 L 379.16035,206.56139 L 379.31166,207.77183 L 376.73947,207.65079 L 372.65423,203.8379 L 369.53734,203.71686 L 369.53734,201.65911 L 367.35855,200.29736 L 366.9349,198.54222 L 366.26915,198.42118 L 366.26915,201.81041 L 365.05871,202.08276 L 363.27331,201.53806 L 361.39713,202.7485 L 360.30773,203.02085 L 359.21833,202.08276 L 358.12894,202.62746 L 355.67779,200.99336 L 353.92265,200.99336 L 352.68195,200.17631 L 352.9543,198.66326 L 351.59255,197.45282 L 350.38211,197.45282 z "/> |
<path id="INSEE-D71" title="Saone-et-Loire (71) <?= !empty($infos_zones['71']) ? $infos_zones['71'] : ''; ?>" class="land departement bourgogne departement71" d="M 393.68564,220.75381 L 393.68564,220.93538 L 390.84111,220.93538 L 388.54127,222.29713 L 387.17952,224.20357 L 388.26892,225.83767 L 389.20701,226.38237 L 388.54127,228.01646 L 387.57292,228.56116 L 386.51378,230.04395 L 387.72422,230.861 L 387.57292,232.76744 L 387.84527,234.79493 L 389.63067,235.88433 L 389.63067,236.70138 L 387.72422,237.79077 L 387.72422,239.00121 L 389.08597,240.21166 L 388.93466,240.90766 L 385.96908,240.75635 L 385.69673,241.72471 L 384.33499,241.99706 L 382.97324,243.7522 L 381.2181,243.7522 L 379.85635,245.11394 L 378.07095,245.38629 L 377.13286,243.08645 L 375.92242,242.93515 L 372.95684,244.78107 L 376.46712,251.37798 L 376.46712,254.22251 L 377.40521,255.37243 L 380.61288,255.37243 L 381.73254,256.88548 L 384.75864,256.88548 L 386.09013,258.76167 L 385.90856,266.14536 L 381.94437,269.17146 L 381.85358,269.38329 L 382.12593,269.35303 L 382.70089,269.53459 L 382.88246,272.5607 L 385.72699,273.13565 L 386.09013,274.46714 L 387.60318,274.46714 L 389.87276,273.13565 L 395.92496,274.07375 L 397.07488,275.22367 L 398.58793,273.71061 L 400.67594,273.71061 L 401.7956,267.65841 L 402.55213,267.08345 L 404.42831,267.08345 L 406.72815,268.5965 L 408.42277,267.08345 L 409.54242,268.5965 L 411.2673,266.90188 L 413.32505,266.72032 L 414.29341,269.74642 L 415.01967,273.52905 L 416.35116,273.71061 L 417.50107,271.04764 L 421.07188,257.06705 L 422.40336,254.61591 L 424.49137,254.40408 L 426.57938,256.12896 L 428.09243,255.73556 L 429.96862,254.40408 L 431.87506,254.79747 L 432.99472,257.24861 L 434.08412,257.67227 L 439.04693,257.06705 L 440.95337,255.554 L 440.19685,254.40408 L 437.92727,253.64755 L 437.71544,251.01484 L 439.62189,249.68336 L 440.37841,246.47569 L 438.68379,243.44959 L 437.53388,241.93653 L 438.10883,241.36157 L 438.10883,239.48539 L 436.59578,238.51704 L 436.20239,237.00399 L 440.55998,236.45929 L 440.95337,234.94624 L 439.62189,234.94624 L 438.50223,233.61475 L 436.41422,233.61475 L 434.68934,230.77021 L 433.17629,230.58865 L 433.35785,228.31907 L 431.72376,228.13751 L 429.54496,229.6203 L 427.36617,230.16499 L 425.88338,229.2269 L 423.97693,229.10586 L 423.43224,229.89264 L 421.6771,230.16499 L 417.74316,231.4057 L 412.02383,233.43319 L 409.84503,231.67805 L 407.27285,231.13335 L 407.1518,228.83351 L 404.70066,227.04811 L 401.31142,224.47592 L 397.49853,224.59696 L 393.83695,220.81434 L 393.68564,220.75381 z "/> |
<path id="INSEE-D60" title="Oise (60) <?= !empty($infos_zones['60']) ? $infos_zones['60'] : ''; ?>" class="land departement picardie departement60" d="M 302.41838,77.800715 L 301.17768,79.283505 L 300.42115,81.159689 L 301.93421,81.159689 L 301.17768,83.066134 L 300.42115,86.848763 L 301.54081,88.724946 L 301.54081,91.962876 L 303.44726,91.962876 L 302.69073,93.264101 L 301.35925,95.745505 L 300.81455,97.440123 L 302.50917,98.953174 L 303.05386,103.31076 L 304.02222,104.82381 L 302.69073,105.18695 L 300.99611,104.24885 L 300.6935,106.48817 L 300.81455,106.33686 L 301.54081,108.03148 L 302.69073,109.90767 L 307.80485,110.30106 L 311.40591,109.90767 L 313.85705,108.03148 L 316.88315,109.90767 L 318.39621,111.05759 L 320.66578,110.48263 L 322.72353,109.54453 L 326.71799,111.63254 L 330.86375,114.08369 L 332.19523,115.41517 L 334.46481,113.90212 L 336.341,115.02178 L 337.49091,115.95987 L 339.18553,115.77831 L 340.33545,114.26525 L 342.96816,115.77831 L 346.20609,114.44682 L 348.08227,115.02178 L 349.95846,113.50873 L 351.10838,112.93377 L 351.47151,113.20612 L 351.8649,110.63393 L 350.50316,109.09062 L 348.20332,107.54731 L 347.23497,109.09062 L 346.66001,109.27218 L 346.47844,106.39739 L 348.20332,106.00399 L 347.80993,103.34102 L 345.51009,102.94763 L 346.66001,101.01092 L 349.9282,100.2544 L 351.07812,95.654722 L 352.803,94.867935 L 350.50316,93.143056 L 351.28994,91.418178 L 351.65308,85.668582 L 350.86629,81.220211 L 346.87183,81.613605 L 344.1786,81.250472 L 339.18553,82.581957 L 334.94899,86.606674 L 331.49923,85.456755 L 328.04947,85.093623 L 325.35624,82.400391 L 320.54474,81.038645 L 314.03862,81.613605 L 312.31374,80.282119 L 308.83372,80.282119 L 306.35232,81.250472 L 305.2024,80.463685 L 305.2024,78.375675 L 304.809,77.800715 L 302.41838,77.800715 z "/> |
<path id="INSEE-D62" title="Pas-de-Calais (62) <?= !empty($infos_zones['62']) ? $infos_zones['62'] : ''; ?>" class="land departement npdc departement62" d="M 314.06888,8.5029594 L 303.59856,10.500187 L 295.27678,16.915525 L 295.27678,42.455834 L 295.21626,43.212359 L 298.15158,43.908363 L 299.08967,45.996374 L 301.35925,45.421414 L 302.69073,43.726797 L 304.38535,44.301756 L 307.98641,47.116032 L 309.3179,46.571333 L 310.25599,48.840911 L 313.64522,50.353962 L 313.64522,52.230146 L 316.12663,53.168238 L 318.57777,52.230146 L 323.29849,51.655186 L 324.44841,52.623539 L 326.71799,51.655186 L 327.83765,53.561631 L 325.02337,55.437815 L 325.02337,58.100785 L 325.96146,59.038877 L 326.71799,58.857311 L 327.26269,57.34426 L 328.98757,56.194341 L 330.68218,57.525826 L 334.64638,58.857311 L 336.341,58.857311 L 336.341,56.950866 L 338.8224,58.675745 L 339.00397,60.188796 L 337.85405,61.883414 L 339.94206,60.733495 L 341.66694,59.976969 L 342.3932,61.308454 L 342.3932,62.63994 L 345.23774,61.126888 L 349.77689,61.126888 L 349.95846,61.308454 L 351.07812,59.159921 L 350.50316,58.191568 L 348.77828,57.828436 L 346.87183,57.828436 L 345.72191,57.435043 L 347.62836,56.285124 L 349.35324,56.46669 L 351.07812,56.285124 L 351.28994,53.198499 L 352.43986,52.441973 L 352.62143,50.717094 L 350.50316,49.355348 L 348.02175,49.173782 L 347.44679,48.780389 L 348.99011,47.630469 L 349.35324,46.48055 L 348.02175,45.542458 L 346.08505,43.212359 L 346.29687,42.06244 L 348.77828,40.912521 L 349.17167,39.581036 L 347.44679,38.794249 L 346.47844,36.312845 L 343.02868,35.919451 L 339.57893,34.981359 L 339.18553,31.138209 L 341.66694,29.594896 L 340.72884,27.658191 L 338.79214,27.658191 L 337.46065,29.776463 L 331.49923,29.41333 L 326.68773,28.23315 L 324.02476,25.358352 L 324.02476,23.058514 L 326.11277,22.090161 L 324.38789,20.758676 L 320.18161,20.57711 L 317.66994,14.222294 L 314.06888,8.5029594 z "/> |
<path id="INSEE-D59" title="Nord (59) <?= !empty($infos_zones['59']) ? $infos_zones['59'] : ''; ?>" class="land departement npdc departement59" d="M 330.07696,4.0545882 L 324.02476,6.8991249 L 314.58332,8.4121763 L 314.06888,8.5029594 L 317.66994,14.222294 L 320.18161,20.57711 L 324.38789,20.758676 L 326.11277,22.090161 L 324.02476,23.058514 L 324.02476,25.358352 L 326.68773,28.23315 L 331.49923,29.41333 L 337.46065,29.776463 L 338.79214,27.658191 L 340.72884,27.658191 L 341.66694,29.594896 L 339.18553,31.138209 L 339.57893,34.981359 L 343.02868,35.919451 L 346.47844,36.312845 L 347.44679,38.794249 L 349.17167,39.581036 L 348.77828,40.912521 L 346.29687,42.06244 L 346.08505,43.212359 L 348.02175,45.542458 L 349.35324,46.48055 L 348.99011,47.630469 L 347.44679,48.780389 L 348.02175,49.173782 L 350.50316,49.355348 L 352.62143,50.717094 L 352.43986,52.441973 L 351.28994,53.198499 L 351.07812,56.285124 L 349.35324,56.46669 L 347.62836,56.285124 L 345.72191,57.435043 L 346.87183,57.828436 L 348.77828,57.828436 L 350.50316,58.191568 L 351.07812,59.159921 L 349.95846,61.308454 L 351.47151,62.821506 L 352.98456,63.214899 L 354.49761,62.246546 L 356.58562,62.246546 L 357.16058,63.396465 L 357.91711,63.214899 L 360.18669,61.883414 L 362.45626,63.214899 L 365.48237,61.126888 L 366.81385,61.126888 L 368.3269,62.458373 L 371.35301,60.370362 L 372.65423,60.551929 L 373.80415,61.490021 L 377.98017,61.883414 L 378.3433,63.578032 L 380.43131,61.701848 L 381.55097,61.701848 L 382.3075,64.152991 L 385.90856,65.091083 L 386.93744,64.395079 L 386.63483,64.395079 L 386.45326,62.518896 L 390.23589,60.249318 L 389.66093,56.648256 L 386.05987,55.710164 L 386.99796,54.741811 L 386.99796,52.109102 L 389.84249,50.021091 L 389.08597,48.508039 L 383.03376,43.787319 L 372.4424,44.362278 L 371.32274,46.238462 L 369.99126,46.238462 L 370.17283,39.611297 L 367.14672,36.040495 L 364.87715,36.403628 L 363.54566,34.890576 L 359.76303,36.585194 L 358.46181,35.28397 L 355.79884,34.890576 L 355.04231,32.439433 L 354.86074,24.874176 L 353.16613,24.11765 L 352.9543,22.967731 L 351.83464,22.967731 L 351.44125,20.698154 L 348.99011,20.909981 L 344.26938,22.423033 L 341.99981,25.237308 L 339.73023,25.237308 L 338.21718,23.361124 L 337.64222,21.273114 L 335.76604,19.185103 L 333.10307,19.185103 L 331.98341,17.127353 L 331.98341,13.889423 L 333.28463,11.831673 L 332.52811,8.9871359 L 330.07696,4.0545882 z "/> |
<path id="INSEE-D02" title="Aisne (02) <?= !empty($infos_zones['02']) ? $infos_zones['02'] : ''; ?>" class="land departement picardie departement02" d="M 371.35301,60.370362 L 368.3269,62.458373 L 366.81385,61.126888 L 365.48237,61.126888 L 362.45626,63.214899 L 360.18669,61.883414 L 357.91711,63.214899 L 357.16058,63.396465 L 356.58562,62.246546 L 354.49761,62.246546 L 352.98456,63.214899 L 352.92404,63.214899 L 353.37795,65.87787 L 350.89655,68.571101 L 350.89655,71.052506 L 349.17167,72.989211 L 349.56506,75.28905 L 350.50316,79.1322 L 351.65308,85.668582 L 351.28994,91.418178 L 350.50316,93.143056 L 352.803,94.867935 L 351.07812,95.654722 L 349.9282,100.2544 L 346.66001,101.01092 L 345.51009,102.94763 L 347.80993,103.34102 L 348.20332,106.00399 L 346.47844,106.39739 L 346.66001,109.27218 L 347.23497,109.09062 L 348.20332,107.54731 L 350.50316,109.09062 L 351.8649,110.63393 L 351.47151,113.20612 L 353.19639,114.44682 L 353.77135,118.62284 L 358.8552,123.52513 L 360.54982,124.10009 L 361.51817,126.36967 L 364.69558,127.03541 L 365.08897,126.55123 L 366.05733,124.49348 L 368.90186,123.162 L 370.41491,119.1978 L 372.10953,118.04788 L 371.14118,116.7164 L 368.69004,116.7164 L 368.3269,115.41517 L 370.02152,114.65865 L 370.77805,113.50873 L 369.08343,112.38907 L 369.62813,110.66419 L 373.98572,110.30106 L 373.22919,108.60644 L 370.59648,106.88156 L 370.59648,101.79771 L 374.16728,99.13474 L 378.16174,99.13474 L 377.76834,97.258556 L 380.03792,96.290203 L 383.24559,98.378214 L 384.57708,98.015082 L 384.39551,91.569483 L 384.97047,89.299906 L 385.72699,86.667196 L 383.24559,85.335711 L 383.82055,83.82266 L 387.42161,83.066134 L 387.42161,80.614991 L 390.26615,79.101939 L 391.02267,76.832362 L 390.08458,75.319311 L 390.26615,72.474774 L 391.96077,70.961723 L 390.26615,67.754053 L 390.78059,64.395079 L 386.93744,64.395079 L 385.90856,65.091083 L 382.3075,64.152991 L 381.55097,61.701848 L 380.43131,61.701848 L 378.3433,63.578032 L 377.98017,61.883414 L 373.80415,61.490021 L 372.65423,60.551929 L 371.35301,60.370362 z "/> |
<path id="INSEE-D80" title="Somme (80) <?= !empty($infos_zones['80']) ? $infos_zones['80'] : ''; ?>" class="land departement picardie departement80" d="M 295.21626,43.212359 L 294.70182,49.446131 L 298.87784,53.22876 L 298.87784,55.135205 L 293.76373,52.109102 L 287.62074,59.674359 L 289.25483,60.370362 L 291.34285,60.188796 L 292.28094,62.06498 L 300.60272,70.205197 L 301.17768,73.594432 L 303.05386,77.013928 L 302.41838,77.800715 L 304.809,77.800715 L 305.2024,78.375675 L 305.2024,80.463685 L 306.35232,81.250472 L 308.83372,80.282119 L 312.31374,80.282119 L 314.03862,81.613605 L 320.54474,81.038645 L 325.35624,82.400391 L 328.04947,85.093623 L 331.49923,85.456755 L 334.94899,86.606674 L 339.18553,82.581957 L 344.1786,81.250472 L 346.87183,81.613605 L 350.86629,81.220211 L 350.50316,79.1322 L 349.56506,75.28905 L 349.17167,72.989211 L 350.89655,71.052506 L 350.89655,68.571101 L 353.37795,65.87787 L 352.92404,63.214899 L 351.47151,62.821506 L 349.77689,61.126888 L 345.23774,61.126888 L 342.3932,62.63994 L 342.3932,61.308454 L 341.66694,59.976969 L 339.94206,60.733495 L 337.85405,61.883414 L 339.00397,60.188796 L 338.8224,58.675745 L 336.341,56.950866 L 336.341,58.857311 L 334.64638,58.857311 L 330.68218,57.525826 L 328.98757,56.194341 L 327.26269,57.34426 L 326.71799,58.857311 L 325.96146,59.038877 L 325.02337,58.100785 L 325.02337,55.437815 L 327.83765,53.561631 L 326.71799,51.655186 L 324.44841,52.623539 L 323.29849,51.655186 L 318.57777,52.230146 L 316.12663,53.168238 L 313.64522,52.230146 L 313.64522,50.353962 L 310.25599,48.840911 L 309.3179,46.571333 L 307.98641,47.116032 L 304.38535,44.301756 L 302.69073,43.726797 L 301.35925,45.421414 L 299.08967,45.996374 L 298.15158,43.908363 L 295.21626,43.212359 z "/> |
<path id="INSEE-D54" title="Meurthe-et-Moselle (54) <?= !empty($infos_zones['54']) ? $infos_zones['54'] : ''; ?>" class="land departement lorraine departement54" d="M 442.22433,85.759365 L 439.95476,87.847376 L 436.74709,88.028943 L 435.62743,89.178862 L 435.38534,89.178862 L 435.2643,91.448439 L 436.38396,93.294362 L 435.99056,94.41402 L 435.62743,95.715244 L 435.809,96.441509 L 436.74709,95.715244 L 437.65492,94.050887 L 439.5311,93.869321 L 442.67825,92.931229 L 444.34261,94.232454 L 445.06887,95.715244 L 445.64383,97.3796 L 445.64383,99.043957 L 446.55166,99.800483 L 446.55166,101.07145 L 445.64383,102.1911 L 445.46226,104.61199 L 446.18853,105.73164 L 446.3701,107.21443 L 446.55166,109.60506 L 447.67132,110.54315 L 449.33568,111.26941 L 448.60941,112.7522 L 450.6369,114.62839 L 448.79098,116.65588 L 449.15411,117.9571 L 451.00003,118.86493 L 451.00003,119.80302 L 448.79098,119.80302 L 447.85289,121.10425 L 448.03445,122.04234 L 449.51724,123.52513 L 448.24628,127.03541 L 446.76349,130.36412 L 447.48975,132.42187 L 447.48975,135.75058 L 448.24628,137.41494 L 449.33568,137.41494 L 449.91064,138.35303 L 448.24628,138.35303 L 446.76349,139.0793 L 446.76349,140.19896 L 448.60941,141.86331 L 448.60941,144.46576 L 450.45533,143.8908 L 453.23935,144.07237 L 453.42092,147.03795 L 454.54057,147.43134 L 453.23935,148.33917 L 453.05778,149.27726 L 455.08527,149.6404 L 456.3865,151.30475 L 462.49922,150.94162 L 463.80045,148.52074 L 466.58446,148.52074 L 467.70412,147.61291 L 469.55004,148.73257 L 471.2144,148.15761 L 473.63528,148.33917 L 475.66277,147.61291 L 477.69026,146.13012 L 478.80992,147.24978 L 478.99148,144.64733 L 480.47427,144.07237 L 481.2308,146.49325 L 483.43986,146.67482 L 485.67917,147.24978 L 486.587,147.43134 L 489.76441,145.94855 L 491.42877,144.82889 L 492.91156,142.98297 L 495.87714,141.86331 L 497.81384,141.43966 L 496.72445,140.38052 L 498.81246,140.56209 L 499.20585,140.16869 L 496.96654,139.44243 L 493.81939,137.23338 L 491.03537,135.17563 L 487.70666,135.17563 L 484.19638,133.14814 L 481.41237,132.96657 L 481.41237,132.21004 L 477.14556,129.63786 L 472.33406,127.58011 L 469.91318,127.58011 L 469.00534,125.00792 L 465.28324,120.34772 L 461.59139,120.34772 L 460.1086,118.32023 L 457.14302,118.32023 L 457.32459,115.35465 L 453.42092,112.93377 L 453.60248,110.54315 L 455.66023,110.54315 L 455.66023,108.4854 L 456.3865,107.00261 L 454.72214,105.33825 L 456.20493,102.76606 L 455.08527,99.800483 L 454.17744,99.043957 L 451.75656,93.869321 L 452.69465,92.386531 C 452.69465,92.386531 452.61802,91.169079 452.54335,89.541994 L 450.00142,89.541994 L 446.58192,85.759365 L 442.22433,85.759365 z "/> |
<path id="INSEE-D77" title="Seine-et-Marne (77) <?= !empty($infos_zones['77']) ? $infos_zones['77'] : ''; ?>" class="land departement idf departement77" d="M 351.10838,112.93377 L 349.95846,113.50873 L 348.08227,115.02178 L 346.20609,114.44682 L 342.96816,115.77831 L 340.33545,114.26525 L 339.18553,115.77831 L 337.49091,115.95987 L 336.341,115.02178 L 334.46481,113.90212 L 332.19523,115.41517 L 332.10445,115.32439 L 331.2874,120.55955 L 332.40706,127.21697 L 332.40706,131.66535 L 330.92427,135.38745 L 331.2874,137.95964 L 329.62305,139.26086 L 330.53088,144.28419 L 329.80461,145.37359 L 329.25991,150.39692 L 330.53088,152.06128 L 326.29433,154.84529 L 326.29433,158.65818 L 327.47451,160.41332 L 329.74409,161.56324 L 329.92566,164.77091 L 326.89955,166.85892 L 328.59417,168.37197 L 330.68218,167.04049 L 335.7963,167.22205 L 337.67248,166.85892 L 338.24744,165.34587 L 340.33545,165.52744 L 340.69858,167.04049 L 345.4193,164.37752 L 347.14418,162.31977 L 349.41376,159.6568 L 347.90071,157.96218 L 349.23219,155.11764 L 352.62143,153.42303 L 360.00512,153.78616 L 361.69974,152.48493 L 361.85104,152.63624 L 362.2747,149.45883 L 363.03122,145.6762 L 364.36271,143.95132 L 364.54427,141.68175 L 367.17698,140.56209 L 367.17698,139.04904 L 364.36271,139.2306 L 363.78775,137.89912 L 364.72584,136.2045 L 363.96931,133.35996 L 362.45626,132.42187 L 362.84966,129.78916 L 364.36271,128.82081 L 364.15088,127.70115 L 364.69558,127.03541 L 361.51817,126.36967 L 360.54982,124.10009 L 358.8552,123.52513 L 353.77135,118.62284 L 353.19639,114.44682 L 351.10838,112.93377 z "/> |
<path id="INSEE-D91" title="Essonne (91) <?= !empty($infos_zones['91']) ? $infos_zones['91'] : ''; ?>" class="land departement idf departement91" d="M 318.88038,132.21004 L 317.18576,132.96657 L 315.33984,133.69283 L 314.97671,135.75058 L 312.19269,137.05181 L 311.82956,139.0793 L 313.13079,141.31861 L 311.2546,143.8908 L 308.50085,143.8908 L 309.59025,145.55516 L 308.28902,147.03795 L 307.83511,150.03379 L 308.74294,150.21536 L 309.10607,152.6665 L 309.49946,153.24146 L 309.89286,158.32531 L 315.94506,157.78061 L 318.39621,155.51104 L 320.48422,157.20565 L 325.56807,157.56879 L 326.29433,158.65818 L 326.29433,154.84529 L 330.53088,152.06128 L 329.25991,150.39692 L 329.80461,145.37359 L 330.53088,144.28419 L 329.62305,139.26086 L 331.2874,137.95964 L 330.95453,135.59928 L 328.86652,134.63093 L 325.35624,134.63093 L 323.32875,133.51127 L 321.84596,134.26779 L 318.88038,132.21004 z "/> |
<path id="INSEE-D95" title="Val-d'Oise (95) <?= !empty($infos_zones['95']) ? $infos_zones['95'] : ''; ?>" class="land departement idf departement95" d="M 300.81455,106.33686 L 299.3015,108.21305 L 298.15158,112.38907 L 296.88061,114.5376 L 301.48029,116.59535 L 304.99057,115.95987 L 309.34816,118.74389 L 314.00836,118.95571 L 317.30681,120.95294 L 318.15412,123.73696 L 318.12386,123.79748 L 318.48699,123.73696 L 321.87622,121.92129 L 326.96008,121.58842 L 329.74409,120.31746 L 331.52949,119.0465 L 332.10445,115.32439 L 330.86375,114.08369 L 326.71799,111.63254 L 322.72353,109.54453 L 320.66578,110.48263 L 318.39621,111.05759 L 316.88315,109.90767 L 313.85705,108.03148 L 311.40591,109.90767 L 307.80485,110.30106 L 302.69073,109.90767 L 301.54081,108.03148 L 300.81455,106.33686 z "/> |
<path id="INSEE-D93" title="Seine-Saint-Denis (93) <?= !empty($infos_zones['93']) ? $infos_zones['93'] : ''; ?>" class="land departement idf idfbig departement93" d="M 64.830941,8.8357923 L 58.956135,13.017858 L 49.795421,17.199922 L 33.06716,18.295224 L 33.565025,20.585403 L 34.959046,20.884122 L 36.253495,22.875582 L 34.959046,25.663625 L 33.266306,25.962344 L 34.461182,28.849961 L 42.526593,28.750388 L 45.115491,32.733307 L 45.613356,38.309394 L 48.401399,37.911102 L 50.990297,35.820069 L 54.873643,36.019215 L 59.752719,38.807259 L 62.540763,41.894021 L 63.835211,42.491459 L 64.631795,43.985054 L 67.718558,44.781638 L 67.718558,35.720496 L 64.034357,13.814441 L 64.830941,8.8357923 z "/> |
<path id="INSEE-D75" title="Paris (75) <?= !empty($infos_zones['75']) ? $infos_zones['75'] : ''; ?>" class="land departement idf idfbig departement75" d="M 42.526593,28.750388 L 34.461182,28.849961 L 30.876554,30.443128 L 29.382959,32.434588 L 26.097051,32.633734 L 23.109861,36.019215 L 23.209434,37.911102 L 23.906445,40.101708 L 28.885094,41.495729 L 34.959046,44.582492 L 38.842393,44.781638 L 41.43129,44.084627 L 44.119761,42.19274 L 45.015918,42.989324 L 50.791151,43.785908 L 51.786881,41.694875 L 51.786881,39.603843 L 50.791151,39.205551 L 46.808231,39.404697 L 47.10695,40.400427 L 46.409939,40.997864 L 45.115491,40.997864 L 45.613356,39.703416 L 45.812502,38.309394 L 45.613356,38.309394 L 45.115491,32.733307 L 42.526593,28.750388 z "/> |
<path id="INSEE-D25" title="Doubs (25) <?= !empty($infos_zones['25']) ? $infos_zones['25'] : ''; ?>" class="land departement franche-comte departement25" d="M 486.587,193.51889 L 486.40544,193.73072 L 484.22664,193.73072 L 483.10698,195.27403 L 481.68472,196.09108 L 481.68472,197.99752 L 478.14418,198.42118 L 476.23773,197.05943 L 473.66554,197.45282 L 471.2144,199.35927 L 469.45926,202.35511 L 467.70412,202.89981 L 466.88707,204.9273 L 464.70828,205.32069 L 461.71244,207.77183 L 457.7785,207.65079 L 456.56806,208.58888 L 455.47867,208.58888 L 451.66578,211.70577 L 449.9409,211.64524 L 449.91064,212.79516 L 450.18299,214.82265 L 452.63413,216.45675 L 453.99587,218.24215 L 453.57222,220.11833 L 452.36178,222.99313 L 451.54473,224.86931 L 456.84041,226.65471 L 460.22965,226.38237 L 460.502,229.2269 L 460.502,233.03979 L 464.70828,234.40154 L 466.61472,234.91598 L 469.33822,237.51842 L 469.06587,239.69722 L 467.82516,241.45236 L 464.43593,242.54175 L 465.25298,244.4482 L 465.64637,245.93099 L 464.16358,247.41378 L 464.31489,248.77553 L 466.61472,248.98735 L 466.64498,248.80579 L 478.356,237.82103 L 477.99287,228.74273 L 482.13863,226.68498 L 484.98317,225.35349 L 487.61588,222.90235 L 487.8277,219.30128 L 490.46041,217.9698 L 496.51262,210.9795 L 495.57453,208.70992 L 497.66254,207.77183 L 500.11368,204.74573 L 498.7822,203.41424 L 494.24304,204.35234 L 494.06148,203.59581 L 498.2375,198.78431 L 486.587,193.51889 z "/> |
<path id="INSEE-D90" title="Territoire de Belfort (90) <?= !empty($infos_zones['90']) ? $infos_zones['90'] : ''; ?>" class="land departement franche-comte departement90" d="M 490.49068,180.26456 L 488.73554,181.17239 L 487.25275,182.26179 L 487.25275,184.68267 L 488.06979,187.55747 L 488.06979,189.43365 L 487.61588,192.45975 L 486.587,193.51889 L 498.2375,198.78431 L 498.96376,197.937 L 501.47543,197.54361 L 500.53734,193.51889 L 499.96238,191.43088 L 497.29941,191.82427 L 496.93627,189.55469 L 497.87437,187.82982 L 498.05593,185.56024 L 497.51123,184.25901 L 494.09174,181.59604 L 491.06563,181.41448 L 490.49068,180.26456 z "/> |
<path id="INSEE-D01" title="Ain (01) <?= !empty($infos_zones['01']) ? $infos_zones['01'] : ''; ?>" class="land departement rhone-alpes departement01" d="M 424.49137,254.40408 L 422.40336,254.61591 L 421.07188,257.06705 L 417.50107,271.04764 L 416.98664,272.19756 L 416.6235,276.61567 L 415.59463,278.03794 L 415.59463,284.42302 L 414.98941,285.87555 L 418.68125,288.11486 L 420.13378,288.32669 L 422.40336,290.38444 L 422.79675,293.68289 L 425.27816,292.86585 L 429.12131,293.9855 L 429.18183,293.25924 L 431.02775,293.25924 L 433.69072,295.74064 L 436.17213,294.49994 L 437.41283,290.8081 L 438.65353,289.35557 L 440.28763,289.56739 L 441.92172,291.01992 L 442.76903,293.68289 L 450.36455,302.94277 L 452.63413,301.30867 L 453.02752,297.79839 L 455.50893,297.37474 L 455.50893,291.20149 L 456.74963,290.17261 L 457.14302,284.63485 L 457.6272,285.02824 L 457.56668,283.00075 L 456.5378,281.12457 L 456.96146,275.79863 L 458.80738,276.8275 L 459.83625,274.95132 L 461.68218,274.3461 L 463.58862,272.83304 L 461.53087,272.83304 L 461.53087,269.23198 L 463.80045,267.9005 L 467.18968,267.53736 L 467.40151,265.63092 L 466.25159,264.87439 L 469.09613,261.27333 L 468.70273,260.15367 L 465.4648,258.42879 L 457.59694,267.08345 L 452.11969,267.08345 L 452.11969,264.81387 L 449.09359,263.30082 L 445.49253,267.26502 L 442.64799,267.65841 L 442.64799,264.99544 L 440.19685,263.87578 L 436.41422,258.5801 L 432.99472,257.24861 L 431.87506,254.79747 L 429.96862,254.40408 L 428.09243,255.73556 L 426.57938,256.12896 L 424.49137,254.40408 z "/> |
<path id="INSEE-D74" title="Haute-Savoie (74) <?= !empty($infos_zones['74']) ? $infos_zones['74'] : ''; ?>" class="land departement rhone-alpes departement74" d="M 485.3463,257.8841 L 481.01897,258.64062 L 476.84295,262.02986 L 475.72329,260.33524 L 473.63528,260.51681 L 471.72884,264.69283 L 471.94066,266.38745 L 473.99841,268.08206 L 470.21579,270.56347 L 467.76464,272.83304 L 463.58862,272.83304 L 461.68218,274.3461 L 459.83625,274.95132 L 458.80738,276.8275 L 456.96146,275.79863 L 456.5378,281.12457 L 457.56668,283.00075 L 457.6272,285.02824 L 459.20077,286.26894 L 459.20077,291.62514 L 462.92288,292.23036 L 464.34515,294.9236 L 467.6436,295.31699 L 468.24882,294.10655 L 469.91318,294.10655 L 472.78797,297.19317 L 473.81685,298.22205 L 477.1153,297.58657 L 477.93235,295.95247 L 478.7494,292.65402 L 480.59532,291.20149 L 482.04785,286.90442 L 483.89377,285.66372 L 485.3463,286.05711 L 485.73969,287.29782 L 484.71082,288.53852 L 486.55674,290.8081 L 489.64337,290.8081 L 491.51955,293.89472 L 491.0959,294.9236 L 492.94182,293.68289 L 494.39435,292.0488 L 495.66531,292.2001 L 495.75609,288.90165 L 502.20169,286.23868 L 502.95822,284.3625 L 502.56483,280.18647 L 498.41906,275.85915 L 497.08758,276.61567 L 497.08758,274.89079 L 497.08758,272.07652 L 493.48652,270.35164 L 493.30495,268.83859 L 495.39296,266.56901 L 495.39296,263.9363 L 491.97347,260.33524 L 491.7919,257.8841 L 485.3463,257.8841 z "/> |
<path id="INSEE-D42" title="Loire (42) <?= !empty($infos_zones['42']) ? $infos_zones['42'] : ''; ?>" class="land departement rhone-alpes departement42" d="M 382.12593,269.35303 L 378.70644,269.92799 L 378.16174,272.016 L 379.49322,274.64871 L 379.85635,285.42163 L 375.3172,285.63346 L 375.13563,287.32808 L 378.16174,289.77922 L 376.46712,291.47384 L 375.89216,295.64986 L 378.16174,298.67596 L 380.21949,303.57825 L 385.15203,306.81618 L 386.84665,313.04995 L 383.24559,316.43919 L 383.82055,318.70876 L 389.11623,320.43364 L 393.29225,317.01415 L 395.35,316.83258 L 401.40221,319.46529 L 401.03907,323.06635 L 404.06518,322.88479 L 406.4558,325.63854 L 408.21094,325.15436 L 411.47913,324.54914 L 412.32644,320.82704 L 416.83533,318.16407 L 417.25899,312.20264 L 417.41029,312.11186 L 415.20124,311.77899 L 413.14349,312.59604 L 411.47913,311.56716 L 413.53688,309.11602 L 412.93166,307.27009 L 406.54658,306.24122 L 401.19038,301.30867 L 401.19038,299.64432 L 402.43108,298.61544 L 402.43108,297.19317 L 401.00881,296.34586 L 402.21925,294.49994 L 402.21925,291.83697 L 399.76811,289.56739 L 399.76811,287.29782 L 398.10375,285.66372 L 398.10375,283.8178 L 397.28671,280.73117 L 398.52741,279.49047 L 398.73924,275.79863 L 402.64291,275.79863 L 403.67178,274.55792 L 402.43108,272.50017 L 402.43108,270.65425 L 401.40221,269.8372 L 400.67594,273.71061 L 398.58793,273.71061 L 397.07488,275.22367 L 395.92496,274.07375 L 389.87276,273.13565 L 387.60318,274.46714 L 386.09013,274.46714 L 385.72699,273.13565 L 382.88246,272.5607 L 382.70089,269.53459 L 382.12593,269.35303 z "/> |
<path id="INSEE-D73" title="Savoie (73) <?= !empty($infos_zones['73']) ? $infos_zones['73'] : ''; ?>" class="land departement rhone-alpes departement73" d="M 457.14302,284.63485 L 456.74963,290.17261 L 455.50893,291.20149 L 455.50893,297.37474 L 453.02752,297.79839 L 452.63413,301.30867 L 450.36455,302.94277 L 450.33429,302.91251 L 450.57638,303.97164 L 452.84596,306.42279 L 452.84596,308.08714 L 455.08527,312.20264 L 459.83625,313.23152 L 461.47035,314.47222 L 462.10583,313.83674 L 461.25852,312.20264 L 462.49922,309.50941 L 463.95175,309.32784 L 466.4029,312.59604 L 467.43177,311.17377 L 468.8843,311.17377 L 472.78797,315.07744 L 472.9998,317.74041 L 471.15388,318.76929 L 470.30657,322.67296 L 471.97093,324.33732 L 471.97093,325.97141 L 471.54727,327.63577 L 472.78797,326.39507 L 474.84572,327.63577 L 475.93512,329.11856 L 479.35462,328.75543 L 480.47427,329.87508 L 481.04923,332.53805 L 484.43847,332.14466 L 484.83186,329.30012 L 486.52648,328.5436 L 490.1578,328.72516 L 490.09728,328.60412 L 495.75609,326.33454 L 497.84411,327.66603 L 499.93212,327.66603 L 500.11368,325.39645 L 502.56483,324.06497 L 503.50292,322.94531 L 508.43547,321.03886 L 509.01042,317.83119 L 508.04207,316.31814 L 510.70504,311.77899 L 508.2539,310.8409 L 507.49737,308.17793 L 502.38326,305.15182 C 502.38326,305.15182 502.68831,299.35405 502.20169,298.31283 C 502.18638,298.28673 502.15357,298.23797 502.14117,298.22205 C 502.13632,298.21677 502.11589,298.19627 502.11091,298.19179 C 502.10745,298.192 502.08341,298.19172 502.08065,298.19179 C 502.0806,298.18503 502.08048,298.16334 502.08065,298.16153 C 502.0772,298.16164 502.05314,298.16149 502.05039,298.16153 C 502.04757,298.16138 502.02298,298.16146 502.02013,298.16153 C 502.01671,298.16145 501.99262,298.16154 501.98987,298.16153 C 501.23334,298.35066 498.41906,298.55492 498.41906,298.55492 L 495.57453,295.31699 L 495.66531,292.2001 L 494.39435,292.0488 L 492.94182,293.68289 L 491.0959,294.9236 L 491.51955,293.89472 L 489.64337,290.8081 L 486.55674,290.8081 L 484.71082,288.53852 L 485.73969,287.29782 L 485.3463,286.05711 L 483.89377,285.66372 L 482.04785,286.90442 L 480.59532,291.20149 L 478.7494,292.65402 L 477.93235,295.95247 L 477.1153,297.58657 L 473.81685,298.22205 L 472.78797,297.19317 L 469.91318,294.10655 L 468.24882,294.10655 L 467.6436,295.31699 L 464.34515,294.9236 L 462.92288,292.23036 L 459.20077,291.62514 L 459.20077,286.26894 L 457.14302,284.63485 z "/> |
<path id="INSEE-D17" title="Charente-Maritime (17) <?= !empty($infos_zones['17']) ? $infos_zones['17'] : ''; ?>" class="land departement poitou departement17" d="M 197.92705,262.18116 L 195.26408,262.36273 L 189.48422,265.87301 L 190.87623,267.14397 L 187.85013,269.59511 L 187.487,271.50156 L 184.64246,271.86469 L 183.12941,270.17007 L 179.34678,269.80694 L 178.95339,267.9005 L 176.68381,266.38745 L 173.47614,267.53736 L 175.56415,270.56347 L 178.19686,270.56347 L 180.85983,272.25808 L 182.94784,273.9527 L 186.91204,273.77114 L 187.66856,275.46575 L 190.30127,276.04071 L 191.26962,278.67342 L 192.96424,279.42995 L 192.78268,281.51796 L 190.5131,281.15483 L 189.75657,282.27449 L 191.45119,284.72563 L 190.5131,288.90165 L 188.24352,288.72008 L 188.42509,291.35279 L 189.00005,292.29089 L 186.33708,292.29089 L 185.97394,290.77783 L 187.66856,288.50826 L 187.0936,287.20703 L 186.15551,286.45051 L 185.76212,281.91135 L 182.55445,281.51796 L 179.92174,278.31029 L 179.52835,284.93746 L 183.88593,288.14512 L 184.24907,291.74619 L 185.00559,295.89195 L 185.39898,300.06797 L 187.66856,299.85614 L 191.63276,303.09407 L 194.29573,304.60712 L 194.47729,306.48331 L 196.5653,306.8767 L 202.61751,312.92891 L 204.03978,319.46529 L 209.63807,319.46529 L 210.57616,318.5272 L 210.75773,321.37173 L 215.69027,321.94669 L 216.4468,327.9989 L 219.10977,328.18047 L 223.4371,332.53805 L 225.70667,332.90119 L 228.36965,331.5697 L 230.24583,332.90119 L 231.75888,329.69352 L 233.27193,327.06081 L 229.24722,324.33732 L 228.00651,322.67296 L 226.34216,320.82704 L 222.43848,321.46252 L 221.19778,320.82704 L 221.01622,319.79816 L 223.07397,318.98111 L 223.07397,318.58772 L 221.62144,318.16407 L 220.59256,317.34702 L 223.07397,315.28927 L 223.07397,313.83674 L 221.83326,312.59604 L 222.65031,311.77899 L 223.07397,309.72124 L 221.62144,308.29897 L 220.38073,306.24122 L 218.14142,304.18347 L 216.47706,303.1546 L 217.92959,301.49024 L 217.11254,301.30867 L 216.90072,296.98135 L 215.23636,296.34586 L 217.50594,295.13542 L 220.19917,295.13542 L 221.40961,294.10655 L 223.67919,294.10655 L 224.10284,295.13542 L 226.16059,295.31699 L 227.58286,294.71177 L 228.00651,290.8081 L 229.64061,284.84667 L 229.70113,284.81641 L 228.21834,283.39414 L 227.79469,281.33639 L 225.13172,280.09569 L 221.62144,277.64455 L 217.29411,278.03794 L 214.63114,274.55792 L 210.72747,274.3461 L 207.64084,272.07652 L 207.64084,270.83582 L 205.58309,268.5965 L 205.49231,265.81249 L 202.64777,263.69421 L 199.04671,265.20727 L 197.92705,262.18116 z "/> |
<path id="INSEE-D86" title="Vienne (86) <?= !empty($infos_zones['86']) ? $infos_zones['86'] : ''; ?>" class="land departement poitou departement86" d="M 236.11647,218.6658 L 232.51541,222.44843 L 231.60758,224.02201 L 231.91019,228.6822 L 233.54428,228.47038 L 233.75611,230.52813 L 234.39159,233.82658 L 235.42047,236.09616 L 234.17976,237.51842 L 234.78498,238.5473 L 233.96794,239.99983 L 233.96794,240.60505 L 235.42047,242.26941 L 235.42047,243.29828 L 234.78498,244.93238 L 232.72723,248.019 L 234.78498,248.83605 L 235.42047,250.28858 L 234.57316,252.52789 L 234.39159,253.55677 L 233.15089,255.61452 L 233.15089,257.06705 L 233.96794,257.27888 L 233.96794,261.6062 L 235.42047,262.63508 L 234.78498,264.05735 L 234.99681,265.29805 L 236.63091,267.14397 L 237.47821,265.90327 L 237.47821,264.87439 L 239.11231,264.05735 L 240.35301,264.87439 L 240.35301,267.96102 L 239.11231,269.41355 L 238.08344,271.86469 L 239.5057,274.13427 L 242.41076,274.95132 L 241.77528,276.8275 L 239.08205,277.28142 L 241.56345,280.30752 L 244.86191,280.09569 L 247.7367,279.06682 L 250.64176,280.73117 L 251.67064,279.91413 L 251.45881,277.22089 L 253.09291,275.98019 L 254.54544,278.4616 L 255.75588,279.7023 L 259.26616,278.24977 L 260.71868,276.61567 L 263.98688,276.61567 L 265.68149,277.46298 L 265.80254,273.89218 L 264.50131,272.37913 L 266.01436,271.25947 L 268.46551,268.41493 L 272.61127,268.23337 L 272.61127,265.96379 L 274.69928,264.23891 L 279.81339,263.30082 L 280.17653,260.45628 L 278.11878,259.33663 L 276.96886,255.37243 L 273.94275,254.97904 L 272.06657,253.10285 L 268.46551,250.25832 L 269.22203,247.98874 L 269.22203,244.38768 L 265.80254,240.99844 L 265.43941,238.33547 L 262.20148,234.94624 L 261.08182,230.40708 L 259.75033,229.83212 L 258.23728,227.74411 L 256.72423,228.6822 L 257.11762,230.77021 L 252.18507,231.92013 L 246.52626,231.92013 L 246.70783,229.65056 L 246.70783,226.04949 L 242.16867,224.71801 L 242.16867,222.44843 L 238.56761,221.69191 L 237.81109,218.6658 L 236.11647,218.6658 z "/> |
<path id="INSEE-D50" title="Manche (50) <?= !empty($infos_zones['50']) ? $infos_zones['50'] : ''; ?>" class="land departement basse-normandie departement50" d="M 169.11855,75.168005 L 168.36203,77.07445 L 172.35648,80.282119 L 172.35648,84.458141 L 170.84343,86.334325 L 171.78152,87.272417 L 172.35648,87.66581 L 171.96309,91.266873 L 173.29457,94.292976 L 177.65216,99.195262 L 178.59025,103.55285 L 179.52835,104.88434 L 179.52835,111.69307 L 181.79792,116.23222 L 181.79792,121.5279 L 179.34678,126.43019 L 181.97949,133.23892 L 186.15551,134.17701 L 186.51864,136.08346 L 184.46089,137.02155 L 180.89009,137.02155 L 181.46505,139.41217 L 182.58471,143.01323 L 185.82264,145.85777 L 187.33569,146.2209 L 188.84874,144.16315 L 190.54336,143.95132 L 192.60111,141.50018 L 194.50755,143.01323 L 196.77713,143.01323 L 198.29018,143.76976 L 198.29018,144.13289 L 201.49785,144.52628 L 203.4043,143.01323 L 206.21857,144.16315 L 206.27909,144.28419 L 209.51702,141.53044 L 210.60642,137.92938 L 210.30381,136.35581 L 210.75773,134.50988 L 208.88154,132.6337 L 204.03978,129.48655 L 200.46898,129.18394 L 196.86791,124.64479 L 199.8335,123.55539 L 201.0742,121.22529 L 199.53089,119.80302 L 200.92289,118.56232 L 202.3149,119.65172 L 204.82657,118.10841 L 206.40014,115.59674 L 207.00536,113.11534 L 205.91596,110.90628 L 206.55144,110.11949 L 205.12918,107.78939 L 206.70275,105.76191 L 205.46205,104.18833 L 203.88847,106.21582 L 201.70968,104.97512 L 198.10862,101.37406 L 197.95731,99.830744 L 199.04671,98.741347 L 198.71384,96.653336 L 196.92844,97.107251 L 196.74687,92.568097 L 191.81432,86.727718 L 193.32737,82.94509 L 195.41539,82.94509 L 193.5392,77.830976 L 185.39898,77.437583 L 181.0414,80.463685 L 176.13911,77.256016 L 169.11855,75.168005 z "/> |
<path id="INSEE-D49" title="Maine-et-Loire (49) <?= !empty($infos_zones['49']) ? $infos_zones['49'] : ''; ?>" class="land departement pdll departement49" d="M 190.78545,182.83675 L 190.36179,183.68405 L 190.08944,183.62353 L 190.30127,184.31954 L 190.30127,186.49833 L 192.32876,187.73903 L 193.56946,191.03748 L 195.44565,193.36758 L 192.96424,195.57664 L 193.11555,198.36065 L 194.05364,199.14744 L 197.47314,198.69352 L 200.28741,201.32623 L 200.92289,205.22991 L 199.04671,206.50087 L 192.96424,206.34956 L 189.06057,207.10609 L 186.88178,208.22575 L 186.88178,210.07167 L 188.90926,212.58334 L 190.93675,212.58334 L 191.08806,215.24631 L 191.87484,216.03309 L 190.93675,218.21189 L 189.36318,218.6658 L 189.36318,220.08807 L 188.57639,220.87486 L 189.51448,221.32877 L 189.99866,221.17747 L 191.39067,221.17747 L 192.96424,223.20496 L 192.90372,225.17192 L 193.26685,225.23245 L 194.84043,226.17054 L 199.68219,226.17054 L 202.25438,228.34933 L 205.85544,226.80602 L 211.72608,228.13751 L 214.35879,226.41263 L 214.35879,223.77992 L 219.4729,223.38652 L 224.19362,222.44843 L 229.30774,222.26687 L 229.8827,223.59835 L 231.21418,224.71801 L 232.51541,222.44843 L 236.11647,218.6658 L 237.569,218.6658 L 239.71753,210.91898 L 242.74363,207.31792 L 242.53181,203.17216 L 244.43825,200.69075 L 244.43825,199.57109 L 243.50016,198.42118 L 244.10538,197.18047 L 241.53319,196.18186 L 233.57454,191.34009 L 226.22111,189.1613 L 223.40684,189.01 L 223.40684,187.13381 L 221.68196,185.71154 L 219.83604,185.71154 L 216.38628,184.62215 L 214.20748,186.80094 L 209.21441,186.98251 L 207.00536,185.71154 L 201.40707,184.01693 L 200.13611,185.56024 L 197.01922,183.53275 L 194.20494,183.53275 L 190.78545,182.83675 z "/> |
<path id="INSEE-D72" title="Sarthe (72) <?= !empty($infos_zones['72']) ? $infos_zones['72'] : ''; ?>" class="land departement pdll departement72" d="M 249.3708,147.18925 L 244.25669,147.37082 L 239.14257,152.09154 L 236.4796,151.94024 L 232.93906,153.09015 L 231.84966,154.96634 L 231.36549,159.02132 L 231.69836,161.50272 L 228.88408,163.86308 L 228.0973,165.40639 L 228.73278,166.82866 L 227.94599,168.70484 L 228.2486,169.49163 L 225.13172,169.79424 L 224.6778,171.18625 L 226.06981,174.63601 L 225.9185,175.5741 L 224.6778,176.6635 L 222.01483,176.8148 L 221.68196,177.75289 L 222.31744,178.69098 L 222.31744,184.31954 L 221.71222,185.7418 L 223.40684,187.13381 L 223.40684,189.01 L 226.22111,189.1613 L 233.57454,191.34009 L 241.53319,196.18186 L 244.10538,197.18047 L 245.37634,194.63855 L 249.15897,197.30152 L 251.24698,197.30152 L 250.09706,193.51889 L 252.3969,195.03194 L 253.69813,193.1255 L 259.17537,191.61244 L 258.23728,189.34287 L 259.56877,187.64825 L 262.4133,186.52859 L 265.04601,183.10909 L 265.04601,179.50803 L 266.95246,179.50803 L 267.70898,176.87532 L 267.89055,172.91113 L 266.01436,171.18625 L 267.52742,168.55354 L 269.76673,165.709 L 267.13402,163.83282 L 264.68288,163.43943 L 262.01991,159.47523 L 261.26338,159.47523 L 261.08182,161.35141 L 260.90025,160.05019 L 256.93606,160.05019 L 255.02961,157.20565 L 251.82194,156.05573 L 250.88385,149.247 L 249.3708,147.18925 z "/> |
<path id="INSEE-D61" title="Orne (61) <?= !empty($infos_zones['61']) ? $infos_zones['61'] : ''; ?>" class="land departement basse-normandie departement61" d="M 253.6376,120.8319 L 249.79445,121.67921 L 248.55375,120.92268 L 244.95269,121.5279 L 244.80138,122.95017 L 243.56068,123.25278 L 243.10677,121.22529 L 241.53319,121.5279 L 239.17283,124.19087 L 235.60203,126.85384 L 231.69836,128.09454 L 228.58147,126.36967 L 224.98041,127.00515 L 222.80162,124.82635 L 220.74387,125.58288 L 217.32437,127.94324 L 213.4207,126.85384 L 210.60642,130.12203 L 206.79353,131.27195 L 208.88154,132.6337 L 210.75773,134.50988 L 210.30381,136.35581 L 210.60642,137.92938 L 209.51702,141.53044 L 206.27909,144.28419 L 207.55006,146.43273 L 209.63807,147.94578 L 212.48261,146.03933 L 214.35879,147.37082 L 219.4729,144.34472 L 224.58702,145.10124 L 227.40129,143.95132 L 228.18808,142.07514 L 230.06426,141.89357 L 231.75888,143.40663 L 232.51541,147.55239 L 234.96655,148.49048 L 235.9349,151.90997 L 239.14257,152.09154 L 244.25669,147.37082 L 249.3708,147.18925 L 250.88385,149.247 L 251.82194,156.05573 L 255.02961,157.20565 L 256.93606,160.05019 L 260.90025,160.05019 L 261.08182,161.35141 L 261.26338,159.47523 L 262.01991,159.47523 L 264.68288,163.43943 L 266.74063,163.7723 L 266.74063,159.29367 L 265.43941,157.56879 L 265.04601,156.05573 L 267.89055,154.36112 L 270.73509,153.78616 L 272.61127,151.51658 L 272.24814,144.52628 L 268.25368,141.13705 L 268.07211,137.89912 L 264.68288,135.62954 L 266.01436,133.75336 L 265.22758,130.90882 L 262.59487,129.97073 L 260.68842,128.06428 L 259.56877,125.43157 L 254.27309,125.25001 L 252.76003,123.34356 L 253.6376,120.8319 z "/> |
<path id="INSEE-D28" title="Eure-et-Loir (28) <?= !empty($infos_zones['28']) ? $infos_zones['28'] : ''; ?>" class="land departement centre departement28" d="M 292.67433,122.2239 L 291.52441,123.162 L 291.52441,126.1881 L 287.74178,128.06428 L 287.74178,130.90882 L 286.62213,132.24031 L 281.87114,132.24031 L 279.63183,131.30221 L 272.79284,134.87301 L 270.16013,134.87301 L 267.43663,137.47546 L 268.07211,137.89912 L 268.25368,141.13705 L 272.24814,144.52628 L 272.61127,151.51658 L 270.73509,153.78616 L 267.89055,154.36112 L 265.04601,156.05573 L 265.43941,157.56879 L 266.74063,159.29367 L 266.74063,163.7723 L 267.13402,163.83282 L 269.76673,165.709 L 268.79838,166.91944 L 270.67456,167.85754 L 273.67041,167.31284 L 275.42554,167.31284 L 275.3045,168.12989 L 273.67041,169.06798 L 274.7598,169.88503 L 277.48329,169.88503 L 278.42139,172.06382 L 280.05548,173.00191 L 281.26592,175.7254 L 285.47221,176.8148 L 288.07465,176.54245 L 290.37449,174.36366 L 292.43224,174.93862 L 292.94668,173.81896 L 292.82564,172.60852 L 293.91503,171.79147 L 295.67017,172.88087 L 296.75957,172.06382 L 296.75957,170.58103 L 298.24236,169.61268 L 299.60411,170.15737 L 300.81455,171.51912 L 302.99334,170.30868 L 305.29318,170.30868 L 306.92728,168.52328 L 307.89563,165.013 L 309.37842,164.74065 L 308.98503,161.20011 L 310.74017,159.71732 L 310.19547,158.62792 L 310.40729,158.26479 L 309.89286,158.32531 L 309.49946,153.24146 L 309.10607,152.6665 L 308.74294,150.21536 L 304.77874,149.45883 L 303.05386,147.37082 L 302.50917,143.1948 L 300.23959,142.83167 L 299.84619,140.74365 L 297.21349,138.86747 L 295.882,135.62954 L 297.21349,133.35996 L 295.882,131.84691 L 295.882,129.97073 L 296.63853,127.88272 L 295.12547,126.36967 L 294.55051,124.10009 L 292.67433,122.2239 z "/> |
<path id="INSEE-D89" title="Yonne (89) <?= !empty($infos_zones['89']) ? $infos_zones['89'] : ''; ?>" class="land departement bourgogne departement89" d="M 361.69974,152.48493 L 360.00512,153.78616 L 352.62143,153.42303 L 349.23219,155.11764 L 347.90071,157.96218 L 349.41376,159.6568 L 347.14418,162.31977 L 345.4193,164.37752 L 348.8388,167.61545 L 349.77689,170.64155 L 352.2583,173.27426 L 352.2583,176.69376 L 347.32575,180.83952 L 349.02037,182.74596 L 348.65723,185.56024 L 345.99426,187.46668 L 342.21164,187.46668 L 342.78659,189.55469 L 345.23774,192.94393 L 345.8127,195.97003 L 346.38766,198.05804 L 345.268,198.39091 L 347.65862,198.93561 L 349.44402,198.93561 L 350.38211,197.45282 L 351.59255,197.45282 L 352.9543,198.66326 L 352.68195,200.17631 L 353.92265,200.99336 L 355.67779,200.99336 L 358.12894,202.62746 L 359.21833,202.08276 L 360.30773,203.02085 L 361.39713,202.7485 L 363.27331,201.53806 L 365.05871,202.08276 L 366.26915,201.81041 L 366.26915,198.42118 L 366.9349,198.54222 L 367.35855,200.29736 L 369.53734,201.65911 L 369.53734,203.71686 L 372.65423,203.8379 L 376.73947,207.65079 L 379.31166,207.77183 L 379.16035,206.56139 L 380.24975,204.9273 L 381.2181,206.13774 L 380.40105,207.49948 L 380.79445,208.74019 L 382.27724,207.77183 L 384.06264,207.77183 L 383.91133,210.49533 L 385.54543,211.58472 L 386.78613,211.04002 L 389.81223,208.98227 L 389.63067,208.58888 L 387.84527,207.49948 L 387.72422,205.59304 L 389.63067,204.65495 L 390.44771,203.56555 L 389.90302,202.62746 L 389.90302,200.44866 L 391.38581,198.26987 L 393.5646,193.63993 L 393.95799,191.61244 L 395.31974,191.06775 L 395.47105,190.67435 L 394.77504,190.12965 L 394.77504,188.49556 L 396.95384,186.86146 L 397.49853,184.13797 L 396.56044,182.53414 L 395.04739,182.53414 L 394.654,182.11048 L 394.654,179.81064 L 396.56044,178.4489 L 396.40914,177.08715 L 396.13679,175.7254 L 395.16844,177.81341 L 393.83695,177.63185 L 392.71729,175.54384 L 388.93466,177.45028 L 381.36941,177.05689 L 380.43131,174.96888 L 378.3433,172.1546 L 377.98017,168.73511 L 374.95407,165.13404 L 373.04762,166.46553 L 369.62813,163.83282 L 370.20309,158.71871 L 365.3008,153.60459 L 363.03122,153.60459 L 361.69974,152.48493 z "/> |
<path id="INSEE-D45" title="Loiret (45) <?= !empty($infos_zones['45']) ? $infos_zones['45'] : ''; ?>" class="land departement centre departement45" d="M 318.39621,155.51104 L 315.94506,157.78061 L 310.40729,158.26479 L 310.19547,158.62792 L 310.74017,159.71732 L 308.98503,161.20011 L 309.37842,164.74065 L 307.89563,165.013 L 306.92728,168.52328 L 305.29318,170.30868 L 302.99334,170.30868 L 300.81455,171.51912 L 299.60411,170.15737 L 298.24236,169.61268 L 296.75957,170.58103 L 296.75957,172.06382 L 295.67017,172.88087 L 293.91503,171.79147 L 292.82564,172.60852 L 292.94668,173.81896 L 292.43224,174.93862 L 292.82564,175.05966 L 294.42947,175.05966 L 294.30843,176.14906 L 293.21903,178.02524 L 293.21903,178.99359 L 294.30843,178.99359 L 295.24652,180.08299 L 295.51887,181.17239 L 293.37033,183.32092 L 294.42947,185.92337 L 294.42947,187.13381 L 296.21487,188.34425 L 298.66601,188.6166 L 300.26985,189.97835 L 300.6935,192.30845 L 302.44864,194.33594 L 304.35509,193.79124 L 305.17214,192.0361 L 308.16798,192.42949 L 308.83372,193.1255 L 310.74017,193.1255 L 311.67826,192.0361 L 318.60803,192.30845 L 320.24213,194.72933 L 322.14857,195.54638 L 323.78267,197.05943 L 325.81016,196.78708 L 326.35486,196.09108 L 327.5653,196.09108 L 329.07835,197.99752 L 332.19523,198.14883 L 333.01228,199.20796 L 335.19108,202.2038 L 336.12917,203.02085 L 337.33961,202.89981 L 337.49091,200.17631 L 338.03561,199.90397 L 338.85266,200.02501 L 340.21441,201.81041 L 341.1525,202.2038 L 343.0892,201.41702 L 342.78659,201.08415 L 342.60503,199.1777 L 346.38766,198.05804 L 345.8127,195.97003 L 345.23774,192.94393 L 342.78659,189.55469 L 342.21164,187.46668 L 345.99426,187.46668 L 348.65723,185.56024 L 349.02037,182.74596 L 347.32575,180.83952 L 352.2583,176.69376 L 352.2583,173.27426 L 349.77689,170.64155 L 348.8388,167.61545 L 345.4193,164.37752 L 340.69858,167.04049 L 340.33545,165.52744 L 338.24744,165.34587 L 337.67248,166.85892 L 335.7963,167.22205 L 330.68218,167.04049 L 328.59417,168.37197 L 326.89955,166.85892 L 329.92566,164.77091 L 329.74409,161.56324 L 327.47451,160.41332 L 325.56807,157.56879 L 320.48422,157.20565 L 318.39621,155.51104 z "/> |
<path id="INSEE-D36" title="Indre (36) <?= !empty($infos_zones['36']) ? $infos_zones['36'] : ''; ?>" class="land departement centre departement36" d="M 299.9975,214.5503 L 298.78706,214.97396 L 296.33592,214.82265 L 293.49138,215.79101 L 292.82564,217.2738 L 292.55329,216.7291 L 289.2851,216.8804 L 287.651,218.24215 L 285.74456,218.5145 L 285.47221,219.45259 L 286.98526,221.48008 L 286.5616,223.26548 L 284.80646,223.38652 L 284.80646,224.86931 L 283.44472,226.11002 L 281.96193,228.56116 L 280.60018,227.32046 L 278.57269,226.92706 L 275.57685,228.01646 L 274.88085,231.4057 L 273.94275,234.12919 L 272.45996,241.84575 L 270.40221,243.7522 L 268.73786,243.9035 L 269.22203,244.38768 L 269.22203,247.98874 L 268.46551,250.25832 L 272.06657,253.10285 L 273.94275,254.97904 L 276.96886,255.37243 L 278.11878,259.33663 L 280.17653,260.45628 L 279.81339,263.30082 L 278.30034,263.57317 L 278.84504,263.69421 L 283.59602,264.05735 L 285.29064,262.36273 L 288.31674,265.38883 L 292.09937,261.03124 L 293.79399,262.18116 L 296.06357,261.96934 L 296.82009,262.36273 L 300.23959,262.54429 L 301.35925,259.51819 L 310.83095,260.66811 L 314.43201,261.6062 L 316.06611,261.42464 L 316.15689,259.91159 L 318.06333,258.00514 L 317.66994,256.37104 L 316.58054,254.22251 L 316.97394,253.40546 L 317.12524,250.95432 L 317.79098,250.13727 L 317.94229,249.59257 L 316.30819,248.10978 L 315.7635,246.20334 L 313.19131,244.84159 L 313.19131,243.2075 L 315.06749,242.1181 L 315.06749,241.0287 L 313.31235,239.54591 L 312.76765,238.60782 L 314.1294,237.91182 L 314.00836,236.70138 L 316.15689,234.91598 L 316.03585,234.12919 L 314.28071,234.12919 L 313.19131,232.88849 L 313.19131,232.22274 L 314.1294,230.58865 L 314.1294,229.37821 L 311.95061,226.50341 L 312.37426,223.93122 L 311.13356,222.99313 L 308.56137,223.11417 L 306.53388,223.93122 L 303.81039,223.53783 L 302.44864,222.44843 L 302.17629,221.63138 L 304.35509,219.84598 L 304.50639,217.69745 L 301.6316,216.06335 L 299.9975,214.5503 z "/> |
<path id="INSEE-D51" title="Marne (51) <?= !empty($infos_zones['51']) ? $infos_zones['51'] : ''; ?>" class="land departement champagne departement51" d="M 380.03792,96.290203 L 377.76834,97.258556 L 378.16174,99.13474 L 374.16728,99.13474 L 370.59648,101.79771 L 370.59648,106.88156 L 373.22919,108.60644 L 373.98572,110.30106 L 369.62813,110.66419 L 369.08343,112.38907 L 370.77805,113.50873 L 370.02152,114.65865 L 368.3269,115.41517 L 368.69004,116.7164 L 371.14118,116.7164 L 372.10953,118.04788 L 370.41491,119.1978 L 368.90186,123.162 L 366.05733,124.49348 L 365.08897,126.55123 L 364.15088,127.70115 L 364.36271,128.82081 L 362.84966,129.78916 L 362.45626,132.42187 L 363.96931,133.35996 L 364.72584,136.2045 L 363.78775,137.89912 L 364.36271,139.2306 L 367.17698,139.04904 L 367.17698,139.98713 L 367.99403,139.80556 L 371.26222,143.25532 L 375.8619,142.49879 L 381.24836,138.83721 L 384.48629,138.83721 L 387.75448,136.53737 L 391.59763,134.4191 L 394.47243,134.63093 L 394.86582,138.47408 L 398.31558,143.64871 L 402.15873,143.64871 L 407.5452,142.49879 L 411.38835,143.83028 L 415.41306,140.95548 L 415.98802,136.17424 L 420.43639,135.41771 L 420.34561,132.42187 L 416.74455,129.57733 L 416.35116,128.06428 L 417.68264,125.79471 L 416.53272,124.85661 L 417.68264,122.01208 L 419.77065,121.07399 L 421.2837,116.35327 L 418.2576,116.53483 L 419.95222,114.65865 L 418.62073,110.48263 L 417.31951,107.63809 L 419.01413,106.12504 L 418.04577,105.94347 L 417.80368,104.64225 C 417.76457,104.64807 417.53134,104.67251 417.53134,104.67251 L 415.80646,103.1292 L 413.86975,105.0659 L 413.29479,105.0659 L 412.53827,104.09755 L 407.93859,103.91598 L 407.1518,105.0659 L 405.82032,105.0659 L 404.6704,102.55424 L 402.15873,102.55424 L 401.58377,103.1292 L 399.10237,102.94763 L 396.01574,100.64779 L 393.89747,100.07283 L 393.14095,98.922913 L 389.11623,96.411248 L 384.51655,96.290203 L 384.57708,98.015082 L 383.24559,98.378214 L 380.03792,96.290203 z "/> |
<path id="INSEE-D08" title="Ardennes (08) <?= !empty($infos_zones['08']) ? $infos_zones['08'] : ''; ?>" class="land departement champagne departement08" d="M 409.3306,54.197113 L 407.42415,57.011388 L 405.72953,58.736267 L 405.72953,60.430885 L 405.72953,62.700462 L 403.45996,64.213513 L 399.3142,65.544998 L 397.04462,66.48309 L 394.38165,64.395079 L 390.78059,64.395079 L 390.26615,67.754053 L 391.96077,70.961723 L 390.26615,72.474774 L 390.08458,75.319311 L 391.02267,76.832362 L 390.26615,79.101939 L 387.42161,80.614991 L 387.42161,83.066134 L 383.82055,83.82266 L 383.24559,85.335711 L 385.72699,86.667196 L 384.97047,89.299906 L 384.39551,91.569483 L 384.51655,96.290203 L 389.11623,96.411248 L 393.14095,98.922913 L 393.89747,100.07283 L 396.01574,100.64779 L 399.10237,102.94763 L 401.58377,103.1292 L 402.15873,102.55424 L 404.6704,102.55424 L 405.82032,105.0659 L 407.1518,105.0659 L 407.93859,103.91598 L 412.53827,104.09755 L 413.29479,105.0659 L 413.86975,105.0659 L 415.80646,103.1292 L 417.53134,104.67251 C 417.53134,104.67251 417.76457,104.64807 417.80368,104.64225 L 417.68264,103.85546 L 419.95222,102.7358 L 421.07188,101.58588 L 420.34561,99.7097 L 420.13378,98.378214 L 422.22179,96.683597 L 422.97832,92.900968 L 420.70874,90.056432 L 421.46527,88.724946 L 423.37171,85.154145 L 423.91641,85.910671 L 426.76095,85.910671 L 428.09243,87.211895 L 429.78705,86.092237 L 431.11854,83.913443 L 429.75679,83.701616 L 429.00027,79.918987 L 427.48721,78.769068 L 422.19153,78.194108 L 421.25344,75.742965 L 419.52856,74.623307 L 413.47636,73.866781 L 413.11323,69.509193 L 413.86975,68.752667 L 413.86975,67.05805 L 410.84365,65.151605 L 411.41861,63.063594 L 412.17513,61.18741 L 410.84365,60.037491 L 412.93166,58.161307 L 412.93166,54.741811 L 412.17513,54.197113 L 409.3306,54.197113 z "/> |
<path id="INSEE-D52" title="Haute-Marne (52) <?= !empty($infos_zones['52']) ? $infos_zones['52'] : ''; ?>" class="land departement champagne departement52" d="M 420.43639,135.41771 L 415.98802,136.17424 L 415.41306,140.95548 L 411.38835,143.83028 L 409.30034,143.10401 L 408.30172,145.19203 L 408.12016,148.06682 L 411.56991,152.87833 L 414.8381,154.02825 L 415.59463,158.05296 L 415.80646,164.95248 L 414.65654,166.67736 L 411.38835,166.88918 L 409.27007,168.79563 L 410.81339,169.76398 L 411.44887,172.18486 L 413.71845,173.45583 L 417.10768,177.05689 L 421.46527,182.92753 L 419.01413,185.56024 L 420.70874,186.71016 L 420.89031,189.91783 L 423.91641,189.73626 L 424.67294,191.24931 L 426.94252,191.43088 L 428.63713,190.49279 L 431.66324,194.27541 L 432.05663,195.21351 L 436.20239,194.27541 L 436.98918,192.36897 L 437.17074,192.39923 L 437.17074,190.49279 L 439.80345,189.34287 L 442.82956,190.49279 L 445.67409,189.34287 L 447.36871,189.34287 L 447.94367,185.56024 L 448.88176,184.44058 L 447.18714,184.25901 L 447.00558,181.98944 L 449.63829,181.41448 L 449.81985,179.90143 L 452.48282,179.90143 L 452.48282,177.45028 L 454.57083,176.69376 L 453.99587,175.18071 L 454.57083,174.81757 L 452.84596,173.45583 L 450.78821,174.21235 L 450.78821,170.24816 L 445.49253,167.61545 L 446.61218,162.50133 L 448.3068,161.35141 L 447.7621,159.6568 L 445.2807,159.29367 L 444.736,156.81226 L 442.46642,156.81226 L 439.80345,153.24146 L 436.77735,153.02963 L 435.47613,151.15345 L 437.17074,149.45883 L 433.17629,145.10124 L 431.48167,144.52628 L 426.94252,142.25671 L 424.49137,139.624 L 420.52718,139.04904 L 420.43639,135.41771 z "/> |
<path id="INSEE-D67" title="Bas-Rhin (67) <?= !empty($infos_zones['67']) ? $infos_zones['67'] : ''; ?>" class="land departement alsace departement67" d="M 518.84526,108.84853 L 515.2442,109.84714 L 513.57984,112.7522 L 513.57984,115.59674 L 512.06679,116.92822 L 510.7353,116.92822 L 508.28416,115.20335 L 506.37772,116.53483 L 504.10814,116.53483 L 502.23195,114.65865 L 498.63089,114.08369 L 496.54288,113.1456 L 495.78636,110.30106 L 494.09174,112.17724 L 493.15365,116.53483 L 490.67224,117.29136 L 490.67224,119.7425 L 493.15365,120.89242 L 495.02983,122.2239 L 494.2733,123.91852 L 495.99818,125.03818 L 499.02429,122.7686 L 504.2897,125.79471 L 502.05039,129.97073 L 502.23195,131.30221 L 503.74501,132.81526 L 502.59509,136.77946 L 498.81246,140.56209 L 496.72445,140.38052 L 498.05593,141.68175 L 497.29941,145.10124 L 498.05593,150.21536 L 501.65699,151.15345 L 501.35438,151.84945 L 504.19892,151.69815 L 505.86328,153.72564 L 507.34607,155.57156 L 511.06817,155.38999 L 512.73253,160.2015 L 515.63759,161.47246 L 515.60733,160.86724 L 520.53988,151.21397 L 519.96492,145.73672 L 522.23449,138.35303 L 522.80945,131.90743 L 527.71174,128.33663 L 527.71174,126.06706 L 529.61819,123.58565 L 531.13124,123.58565 L 532.82585,121.89103 L 532.46272,118.68336 L 534.15734,114.14421 L 536.79005,113.56925 L 534.15734,111.48124 L 529.43662,110.93654 L 525.2606,108.84853 L 522.41606,110.54315 L 520.90301,108.84853 L 518.84526,108.84853 z "/> |
<path id="INSEE-D68" title="Haut-Rhin (68) <?= !empty($infos_zones['68']) ? $infos_zones['68'] : ''; ?>" class="land departement alsace departement68" d="M 504.19892,151.69815 L 501.35438,151.84945 L 499.56898,155.87417 L 497.29941,160.41332 L 497.87437,163.25786 L 495.99818,167.61545 L 492.76025,170.42972 L 492.57869,177.81341 L 490.21833,179.8409 L 490.30911,179.90143 L 491.06563,181.41448 L 494.09174,181.59604 L 497.51123,184.25901 L 498.05593,185.56024 L 497.87437,187.82982 L 496.93627,189.55469 L 497.29941,191.82427 L 499.96238,191.43088 L 500.53734,193.51889 L 501.47543,197.54361 L 503.71474,197.18047 L 503.32135,199.23822 L 504.65284,200.38814 L 511.64313,200.20658 L 515.2442,197.36204 L 515.42576,193.18602 L 517.33221,190.73487 L 514.8508,187.89034 L 513.54958,184.86423 L 515.06263,182.80648 L 515.06263,178.0555 L 516.00072,175.78593 L 516.00072,172.0033 L 517.69534,169.55215 L 515.81916,166.91944 L 515.63759,161.47246 L 512.73253,160.2015 L 511.06817,155.38999 L 507.34607,155.57156 L 505.86328,153.72564 L 504.19892,151.69815 z "/> |
<path id="INSEE-D57" title="Moselle (57) <?= !empty($infos_zones['57']) ? $infos_zones['57'] : ''; ?>" class="land departement lorraine departement57" d="M 463.04392,87.66581 L 460.19939,87.847376 L 457.92981,89.753821 L 457.35485,90.691913 L 454.14718,90.691913 L 453.02752,89.541994 L 452.54335,89.541994 C 452.61802,91.169079 452.69465,92.386531 452.69465,92.386531 L 451.75656,93.869321 L 454.17744,99.043957 L 455.08527,99.800483 L 456.20493,102.76606 L 454.72214,105.33825 L 456.3865,107.00261 L 455.66023,108.4854 L 455.66023,110.54315 L 453.60248,110.54315 L 453.42092,112.93377 L 457.32459,115.35465 L 457.14302,118.32023 L 460.1086,118.32023 L 461.59139,120.34772 L 465.28324,120.34772 L 469.00534,125.00792 L 469.91318,127.58011 L 472.33406,127.58011 L 477.14556,129.63786 L 481.41237,132.21004 L 481.41237,132.96657 L 484.19638,133.14814 L 487.70666,135.17563 L 491.03537,135.17563 L 493.81939,137.23338 L 496.96654,139.44243 L 499.20585,140.16869 L 502.59509,136.77946 L 503.74501,132.81526 L 502.23195,131.30221 L 502.05039,129.97073 L 504.2897,125.79471 L 499.02429,122.7686 L 495.99818,125.03818 L 494.2733,123.91852 L 495.02983,122.2239 L 493.15365,120.89242 L 490.67224,119.7425 L 490.67224,117.29136 L 493.15365,116.53483 L 494.09174,112.17724 L 495.78636,110.30106 L 496.54288,113.1456 L 498.63089,114.08369 L 502.23195,114.65865 L 504.10814,116.53483 L 506.37772,116.53483 L 508.28416,115.20335 L 510.7353,116.92822 L 512.06679,116.92822 L 513.57984,115.59674 L 513.57984,112.7522 L 515.2442,109.84714 L 514.8508,109.96819 L 513.54958,108.092 L 509.76695,105.82243 L 508.43547,103.73442 L 503.89631,104.12781 L 501.23334,106.57895 L 494.818,106.76052 L 492.91156,105.42903 C 492.78374,105.19718 491.85302,103.55467 491.03537,103.09893 C 491.0037,103.08212 490.95166,103.05465 490.91433,103.03841 C 490.88669,103.02712 490.84666,103.01491 490.82355,103.00815 C 490.81321,103.0029 490.77394,102.98348 490.76302,102.97789 C 490.76027,102.9779 490.73608,102.97776 490.73276,102.97789 C 490.70854,102.97663 490.66138,102.97789 490.64198,102.97789 C 489.75543,102.9779 488.03895,101.98291 487.8277,101.85823 L 485.16473,102.97789 L 484.98317,105.24747 L 481.7755,105.64086 L 479.86905,102.0398 L 478.7494,101.64641 L 478.7494,99.013696 L 476.08643,97.863777 L 475.90486,93.324623 L 473.99841,91.448439 L 470.03422,89.541994 L 468.15804,89.541994 L 467.58308,89.935387 L 465.67663,89.935387 L 463.04392,87.66581 z "/> |
<path id="INSEE-D88" title="Vosges (88) <?= !empty($infos_zones['88']) ? $infos_zones['88'] : ''; ?>" class="land departement lorraine departement88" d="M 497.81384,141.43966 L 495.87714,141.86331 L 492.91156,142.98297 L 491.42877,144.82889 L 489.76441,145.94855 L 486.587,147.43134 L 485.67917,147.24978 L 483.43986,146.67482 L 481.2308,146.49325 L 480.47427,144.07237 L 478.99148,144.64733 L 478.80992,147.24978 L 477.69026,146.13012 L 475.66277,147.61291 L 473.63528,148.33917 L 471.2144,148.15761 L 469.55004,148.73257 L 467.70412,147.61291 L 466.58446,148.52074 L 463.80045,148.52074 L 462.49922,150.94162 L 456.3865,151.30475 L 455.08527,149.6404 L 453.05778,149.27726 L 453.23935,148.33917 L 454.54057,147.43134 L 453.42092,147.03795 L 453.23935,144.07237 L 450.45533,143.8908 L 448.82124,144.40524 L 447.67132,145.94855 L 444.70574,146.85638 L 444.70574,145.76699 L 443.79791,145.76699 L 443.79791,147.03795 L 440.0758,147.79447 L 440.0758,149.45883 L 436.74709,149.88249 L 435.47613,151.15345 L 436.77735,153.02963 L 439.80345,153.24146 L 442.46642,156.81226 L 444.736,156.81226 L 445.2807,159.29367 L 447.7621,159.6568 L 448.3068,161.35141 L 446.61218,162.50133 L 445.49253,167.61545 L 450.78821,170.24816 L 450.78821,174.21235 L 452.84596,173.45583 L 454.57083,174.81757 L 455.87206,174.03079 L 455.14579,172.91113 L 456.08389,172.33617 L 457.38511,173.84922 L 459.29155,172.51773 L 459.86651,170.64155 L 463.43732,170.06659 L 464.40567,170.82312 L 464.2241,172.91113 L 466.67525,174.78731 L 468.1883,174.60575 L 469.88291,173.27426 L 473.84711,173.27426 L 476.69165,176.48193 L 477.62974,176.48193 L 479.14279,175.54384 L 479.35462,174.42418 L 480.86767,173.66765 L 482.56229,174.78731 L 484.2569,176.69376 L 490.21833,179.8409 L 492.57869,177.81341 L 492.76025,170.42972 L 495.99818,167.61545 L 497.87437,163.25786 L 497.29941,160.41332 L 499.56898,155.87417 L 501.65699,151.15345 L 498.05593,150.21536 L 497.29941,145.10124 L 498.05593,141.68175 L 497.81384,141.43966 z "/> |
<path id="INSEE-D78" title="Yvelines (78) <?= !empty($infos_zones['78']) ? $infos_zones['78'] : ''; ?>" class="land departement idf departement78" d="M 296.88061,114.5376 L 296.82009,114.65865 L 291.52441,116.1717 L 290.76789,117.10979 L 291.73624,118.62284 L 291.73624,120.13589 L 293.43086,120.49903 L 292.4625,121.46738 L 292.55329,122.31469 L 292.67433,122.2239 L 294.55051,124.10009 L 295.12547,126.36967 L 296.63853,127.88272 L 295.882,129.97073 L 295.882,131.84691 L 297.21349,133.35996 L 295.882,135.62954 L 297.21349,138.86747 L 299.84619,140.74365 L 300.23959,142.83167 L 302.50917,143.1948 L 303.05386,147.37082 L 304.77874,149.45883 L 307.83511,150.03379 L 308.28902,147.03795 L 309.59025,145.55516 L 308.50085,143.8908 L 311.2546,143.8908 L 313.13079,141.31861 L 311.82956,139.0793 L 312.19269,137.05181 L 314.97671,135.75058 L 315.33984,133.69283 L 317.18576,132.96657 L 318.88038,132.21004 L 319.21325,132.42187 L 319.21325,132.21004 L 317.51864,130.3036 L 316.4595,127.4288 L 318.15412,123.73696 L 317.30681,120.95294 L 314.00836,118.95571 L 309.34816,118.74389 L 304.99057,115.95987 L 301.48029,116.59535 L 296.88061,114.5376 z "/> |
<path id="INSEE-D92" title="Hauts-de-Seine (92) <?= !empty($infos_zones['92']) ? $infos_zones['92'] : ''; ?>" class="land departement idf idfbig departement92" d="M 33.06716,18.295224 L 21.914986,24.269603 L 20.72011,24.468749 L 15.243596,36.417507 L 18.72865,45.876941 L 24.304737,52.150038 L 24.304737,52.847049 L 32.967587,58.921001 L 35.058619,57.825698 L 33.465452,54.838509 L 35.058619,50.158579 L 34.06289,48.465838 L 35.158192,44.582492 L 34.959046,44.582492 L 28.885094,41.495729 L 23.906445,40.101708 L 23.209434,37.911102 L 23.109861,36.019215 L 26.097051,32.633734 L 29.382959,32.434588 L 30.876554,30.443128 L 34.461182,28.849961 L 33.266306,25.962344 L 34.959046,25.663625 L 36.253495,22.875582 L 34.959046,20.884122 L 33.565025,20.585403 L 33.06716,18.295224 z "/> |
<path id="corse-cadre" class="corse cadre" d="M 516.72142,543.99287 L 516.72142,468.56568 L 551.77498,431.31769 L 581.57051,431.31769"/> |
<path id="idfbig-cadre" class="idfbig cadre" d="M 4.2701863,83.695652 C 83.695652,83.695652 83.695652,83.695652 83.695652,83.695652 L 83.695652,3.416149"/> |
<text id="idfbig-text" class="idfbig txt" x="11.724806" y="76.211243"> |
ÃŽle-de-France |
</text> |
<path id="INSEE-D94-zoom" title="Val-de-Marne (94) <?= !empty($infos_zones['94-zoom']) ? $infos_zones['94-zoom'] : ''; ?>" class="land departement idf idfsmall departement94" d="M 327.16282,127.37489 L 326.38985,127.9992 L 325.61689,128.11812 L 325.55743,128.53433 L 325.40879,128.92082 L 325.79526,128.92082 L 326.00337,128.74244 L 325.91418,128.44515 L 327.10335,128.38569 L 327.40066,128.50461 L 327.40066,129.12892 L 327.10335,129.75324 L 325.37905,129.51541 L 325.11148,129.27757 L 324.30878,129.84244 L 323.53581,130.05054 L 322.43583,129.99108 L 322.1088,131.15053 L 322.40611,131.65594 L 321.93043,133.05322 L 322.40611,133.94511 L 323.23852,133.52889 L 325.2304,134.62889 L 328.67902,134.62889 L 330.73036,135.58022 L 330.70064,135.37213 L 332.15738,131.71539 L 332.15738,130.05054 L 331.23576,129.81271 L 330.99792,129.36676 L 330.61144,129.18838 L 329.77902,128.26677 L 328.32226,127.43434 L 327.16282,127.37489 z"/> |
<path id="INSEE-D93-zoom" title="Seine-Saint-Denis <?= !empty($infos_zones['93-zoom']) ? $infos_zones['93-zoom'] : ''; ?>" class="land departement idf idfsmall departement93" d="M 331.29522,119.31819 L 329.54117,120.56682 L 326.80606,121.81547 L 321.81151,122.14249 L 321.96016,122.82627 L 322.37637,122.91546 L 322.76285,123.51004 L 322.37637,124.34247 L 321.87096,124.43166 L 322.22772,125.29381 L 324.63582,125.26409 L 325.40879,126.45327 L 325.55743,128.11812 L 326.38985,127.9992 L 327.16282,127.37489 L 328.32226,127.43434 L 329.77902,128.26677 L 330.61144,129.18838 L 330.99792,129.36676 L 331.23576,129.81271 L 332.15738,130.05054 L 332.15738,127.34515 L 331.05739,120.80467 L 331.29522,119.31819 z"/> |
<path id="INSEE-D75-zoom" title="Paris (75) <?= !empty($infos_zones['75-zoom']) ? $infos_zones['75-zoom'] : ''; ?>" class="land departement idf idfsmall departement75 " d="M 324.63582,125.26409 L 322.22772,125.29381 L 321.15746,125.76949 L 320.71152,126.36408 L 319.73044,126.42353 L 318.83856,127.43434 L 318.86828,127.9992 L 319.07639,128.65325 L 320.56287,129.06946 L 322.37637,129.99108 L 323.53581,130.05054 L 324.30878,129.84244 L 325.11148,129.27757 L 325.37905,129.51541 L 327.10335,129.75324 L 327.40066,129.12892 L 327.40066,128.50461 L 327.10335,128.38569 L 325.91418,128.44515 L 326.00337,128.74244 L 325.79526,128.92082 L 325.40879,128.92082 L 325.55743,128.53433 L 325.61689,128.11812 L 325.55743,128.11812 L 325.40879,126.45327 L 324.63582,125.26409 z"/> |
<path id="INSEE-D92-zoom" title="Hauts-de-Seine (92) <?= !empty($infos_zones['92-zoom']) ? $infos_zones['92-zoom'] : ''; ?>" class="land departement idf idfsmall departement92" d="M 321.81151,122.14249 L 318.48181,123.92626 L 318.12505,123.98572 L 316.48993,127.55326 L 317.53045,130.37757 L 319.19531,132.25053 L 319.19531,132.45863 L 321.78178,134.27213 L 322.40611,133.94511 L 321.93043,133.05322 L 322.40611,131.65594 L 322.1088,131.15053 L 322.43583,129.99108 L 322.37637,129.99108 L 320.56287,129.06946 L 319.07639,128.65325 L 318.86828,127.9992 L 318.83856,127.43434 L 319.73044,126.42353 L 320.71152,126.36408 L 321.15746,125.76949 L 322.22772,125.29381 L 321.87096,124.43166 L 322.37637,124.34247 L 322.76285,123.51004 L 322.37637,122.91546 L 321.96016,122.82627 L 321.81151,122.14249 z"/> |
<text id="titre-texte" x="295" y="522" class="txt titre" xml:space="preserve"> |
<tspan id="titre-taxon" x="285" y="525"></tspan> |
<tspan id="titre-msg" x="285" y="540">Carte en cours d'élaboration.</tspan> |
</text> |
<!--<g id="couche-num-dep" desc="Numéros des départements" transform="translate(45,-7)"> |
<text x="500" y="522.46307">2a</text> |
<text x="505" y="490">2b</text> |
<text x="340.05017" y="165.48323">10</text> |
<text x="275.93124" y="462.3653">11</text> |
<text x="285.49982" y="394.9285">12</text> |
<text x="385.47107" y="432.74658">13</text> |
<text x="169.59084" y="119.59122">14</text> |
<text x="286.01541" y="347.34229">15</text> |
<text x="184.93521" y="313.28046">16</text> |
<text x="149.35028" y="305.01443">17</text> |
<text x="278.17551" y="236.72379">18</text> |
<text x="255.70399" y="333.50601">19</text> |
<text x="366.62848" y="215.44362">21</text> |
<text x="77.443314" y="154.65916">22</text> |
<text x="259.49942" y="291.12961">23</text> |
<text x="208.14978" y="347.36383">24</text> |
<text x="426.4913" y="226.924">25</text> |
<text x="387.52527" y="370.61215">26</text> |
<text x="218.36873" y="123.45922">27</text> |
<text x="236.24745" y="163.9295">28</text> |
<text x="32.752422" y="159.80573">29</text> |
<text x="350.10199" y="411.25201">30</text> |
<text x="226.46878" y="444.25089">31</text> |
<text x="193.67938" y="427.59033">32</text> |
<text x="155.21661" y="363.45023">33</text> |
<text x="313.85724" y="433.47208">34</text> |
<text x="121.07767" y="170.81239">35</text> |
<text x="242.11922" y="253.26028">36</text> |
<text x="208.55455" y="225.61589">37</text> |
<text x="400.02567" y="336.1355">38</text> |
<text x="403.70837" y="252.62927">39</text> |
<text x="141.87534" y="410.00177">40</text> |
<text x="236.533" y="206.03616">41</text> |
<text x="344.24771" y="313.84027">42</text> |
<text x="330.82129" y="347.94345">43</text> |
<text x="115.84439" y="216.11394">44</text> |
<text x="270.39145" y="187.10056">45</text> |
<text x="242.91499" y="374.47601">46</text> |
<text x="194.812" y="389.22894">47</text> |
<text x="318.72366" y="379.78024">48</text> |
<text x="160.44055" y="215.16055">49</text> |
<text x="135.04189" y="118.67933">50</text> |
<text x="343.89667" y="126.01338">51</text> |
<text x="381.26428" y="173.22806">52</text> |
<text x="156.85811" y="172.43538">53</text> |
<text x="415.3656" y="143.31583">54</text> |
<text x="387.02689" y="126.03261">55</text> |
<text x="74.415573" y="184.25244">56</text> |
<text x="430.32043" y="121.86172">57</text> |
<text x="318.98431" y="235.73589">58</text> |
<text x="309.578" y="51.367298">59</text> |
<text x="273.19901" y="104.4">60</text> |
<text x="188.631" y="143.62782">61</text> |
<text x="270.05676" y="43.54641">62</text> |
<text x="301.97977" y="312.34189">63</text> |
<text x="144.4501" y="452.05734">64</text> |
<text x="181.70399" y="463.116">65</text> |
<text x="280.77542" y="489.75699">66</text> |
<text x="468.83728" y="138.92934">67</text> |
<text x="458.48599" y="183.41901">68</text> |
<text x="361.61499" y="303.90601">69</text> |
<text x="389.52344" y="289.11728">01</text> |
<text x="317.71494" y="91.464127">02</text> |
<text x="304.79639" y="273.39404">03</text> |
<text x="429.73807" y="403.08469">04</text> |
<text x="431.49451" y="370.41684">05</text> |
<text x="468.04169" y="408.98822">06</text> |
<text x="355.52588" y="367.6001">07</text> |
<text x="355.23471" y="94.337006">08</text> |
<text x="235.62527" y="471.0025">09</text> |
<text x="415.52142" y="198.70544">70</text> |
<text x="358.86234" y="258.45761">71</text> |
<text x="191.15994" y="181.91512">72</text> |
<text x="436.55295" y="321.66956">73</text> |
<text x="429.935" y="291.53601">74</text> |
<text x="224.36623" y="87.776649">76</text> |
<text x="295.07571" y="147.75082">77</text> |
<text x="253.75279" y="137.74051">78</text> |
<text x="167.42421" y="262.80984">79</text> |
<text x="271.19772" y="74.197655">80</text> |
<text x="264.30704" y="423.10611">81</text> |
<text x="228.1265" y="405.17361">82</text> |
<text x="433.41739" y="437.59961">83</text> |
<text x="385.51199" y="408.30801">84</text> |
<text x="130.51228" y="257.07504">85</text> |
<text x="199.62645" y="265.11456">86</text> |
<text x="228.26965" y="303.53333">87</text> |
<text x="424.64432" y="167.36722">88</text> |
<text x="320.9649" y="194.08562">89</text> |
<text x="447.48077" y="200.24228">90</text> |
<text x="268.57501" y="155.17101">91</text> |
<text x="260.90515" y="121.41072">95</text> |
</g>--> |
</svg> |
/tags/v5.12-baouque/services/presentations/images/cartes/france_01.svg |
---|
New file |
0,0 → 1,251 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
<!-- Created with Inkscape (http://www.inkscape.org/) --> |
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="2000" height="1922.0374" id="svg2" sodipodi:version="0.32" inkscape:version="0.46" version="1.0" sodipodi:docname="France_location_map-Regions_and_departements.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" inkscape:export-filename="D:\Wikipédia\Atelier graphique\Cartes\France géoloc\Terres noir.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" style="display:inline"> |
<defs id="defs4"> |
<inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="0 : 961.01868 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="2000 : 961.01868 : 1" inkscape:persp3d-origin="1000 : 640.67912 : 1" id="perspective208"/> |
<inkscape:perspective id="perspective3034" inkscape:persp3d-origin="1000 : 640.67912 : 1" inkscape:vp_z="2000 : 961.01868 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 961.01868 : 1" sodipodi:type="inkscape:persp3d"/> |
<inkscape:perspective id="perspective319" inkscape:persp3d-origin="1000 : 640.67912 : 1" inkscape:vp_z="2000 : 961.01868 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 961.01868 : 1" sodipodi:type="inkscape:persp3d"/> |
<inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="0 : 961.01868 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="2000 : 961.01868 : 1" inkscape:persp3d-origin="1000 : 640.67912 : 1" id="perspective2786"/> |
<inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="0 : 961.01868 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="2000 : 961.01868 : 1" inkscape:persp3d-origin="1000 : 640.67912 : 1" id="perspective2684"/> |
<inkscape:perspective id="perspective229" inkscape:persp3d-origin="1000 : 640.67912 : 1" inkscape:vp_z="2000 : 961.01868 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 961.01868 : 1" sodipodi:type="inkscape:persp3d"/> |
</defs> |
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.375" inkscape:cx="1016.2491" inkscape:cy="980.68103" inkscape:document-units="px" inkscape:current-layer="layer3" showgrid="false" inkscape:window-width="1280" inkscape:window-height="1004" inkscape:window-x="-8" inkscape:window-y="-8" borderlayer="true"/> |
<metadata id="metadata7"> |
<rdf:RDF> |
<cc:Work rdf:about=""> |
<dc:format>image/svg+xml</dc:format> |
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> |
<dc:title>Location map of France for geo-location purpose</dc:title> |
<dc:date>07/2008</dc:date> |
<dc:creator> |
<cc:Agent> |
<dc:title>Eric Gaba (user Sting) for Wikipedia</dc:title> |
</cc:Agent> |
</dc:creator> |
<dc:source>See description page</dc:source> |
<dc:description>Equi-rectangular projection, WGS84 datum |
Approximate scale: 1:3,000,000 |
Standard meridian: 2° 06'E |
Standard parallel: 46° 15'N |
Geographic limits of the map: 51°30'N - 41°N / 5°48'W - 10°E</dc:description> |
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/"/> |
</cc:Work> |
<cc:License rdf:about="http://creativecommons.org/licenses/by-sa/3.0/"> |
<cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction"/> |
<cc:permits rdf:resource="http://creativecommons.org/ns#Distribution"/> |
<cc:requires rdf:resource="http://creativecommons.org/ns#Notice"/> |
<cc:requires rdf:resource="http://creativecommons.org/ns#Attribution"/> |
<cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks"/> |
<cc:requires rdf:resource="http://creativecommons.org/ns#ShareAlike"/> |
</cc:License> |
</rdf:RDF> |
</metadata> |
<g inkscape:groupmode="layer" id="layer5" inkscape:label="Fond" style="display:inline" transform="translate(-6.2490173e-2,5.4199219e-2)"> |
<rect x="0.062490173" y="-1921.9832" width="2000" height="1922.0374" style="fill:#c6ecff;stroke:none;display:inline;fill-opacity:1" id="rect2449" transform="scale(1,-1)"/> |
</g> |
<g inkscape:groupmode="layer" id="layer12" inkscape:label="France" style="display:inline"> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1997.7431,195.94781 C 1998.5076,195.73874 1999.2692,195.57362 2000.0625,195.54004" id="path5743"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1548.0196,681.00901 C 1549.2173,678.67599 1552.3283,678.36073 1552.9212,675.58538 C 1554.2757,674.64424 1556.2795,672.26742 1557.9342,673.86787 C 1556.7783,675.08756 1554.7908,676.15563 1554.3216,678.32271 C 1553.642,680.36649 1552.2685,681.3213 1550.619,681.38451 C 1549.6547,682.29866 1548.3102,682.85376 1548.0196,681.00901 z" id="path5769"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1541.5955,683.58699 C 1540.1102,681.86504 1545.1155,679.81633 1544.9005,682.35167 C 1544.2301,683.10811 1542.5217,684.65917 1541.5955,683.58699 z" id="path5771"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1515.9363,683.90915 C 1517.0839,681.94488 1519.6477,683.90141 1521.0607,681.922 C 1521.545,680.5963 1524.3991,677.56693 1524.2062,680.76652 C 1524.6089,683.80478 1521.4095,686.96898 1518.5798,686.80568 C 1518.7949,684.0509 1513.9455,687.03747 1515.9363,683.90915 z" id="path5773"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1345.3451,621.29619 C 1346.5106,619.28664 1349.4085,621.72617 1351.2052,621.83598 C 1351.5344,623.13402 1347.2177,621.90693 1345.7907,621.99385 C 1345.7146,621.72634 1345.2285,621.65654 1345.3451,621.29619 z" id="path5775"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1124.4381,720.31694 C 1123.149,717.72975 1123.8642,714.36718 1124.271,711.65947 C 1126.0916,708.32885 1126.064,712.86155 1125.8492,714.46381 C 1125.5091,716.9952 1126.8344,719.55886 1125.7007,721.98176 C 1125.1114,721.5819 1124.8567,720.8732 1124.4381,720.31694 z" id="path5777"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 586.33705,213.23821 C 583.78963,211.21073 586.56389,209.54081 588.49247,211.3286 C 589.61038,213.44515 587.98104,214.60985 586.33705,213.23821 z" id="path5779"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 578.72479,170.1183 C 578.30297,165.75203 577.43918,160.92285 573.86019,158.03653 C 572.60946,156.19852 572.23873,153.74549 569.88693,152.93457 C 568.08829,150.76156 565.05823,150.04742 563.64859,147.4036 C 561.40576,146.50147 559.57917,144.62099 559.97239,141.98013 C 560.42237,139.58965 561.91029,136.73198 559.87954,134.44999 C 558.65564,132.37427 556.18181,130.46317 556.81605,127.80338 C 559.2981,127.87351 562.62291,128.51339 563.61147,131.07903 C 566.84992,132.83833 569.34675,135.73305 572.3378,137.68382 C 574.18312,137.39376 576.27658,135.65008 576.8664,138.72851 C 578.26492,139.93173 579.89139,141.69615 578.16769,143.48362 C 577.50522,145.57744 581.35346,147.01657 578.98641,148.98463 C 579.34744,151.19072 582.50689,151.55585 583.77493,153.36406 C 586.10502,154.7971 586.79135,157.94137 585.03746,160.13035 C 584.43311,163.28122 585.25877,167.6009 582.51238,169.79596 C 581.43509,171.02948 579.61909,174.1675 578.92507,170.62928 L 578.91047,170.33296 L 578.72479,170.1183 z" id="path5781"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 587.45112,133.81784 C 587.41601,131.49568 591.18692,130.38514 591.46149,133.11951 C 589.54484,132.66944 587.5438,137.1195 587.52184,134.28092 L 587.48821,134.08667 L 587.45112,133.81784 z" id="path5783"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 569.73846,108.36449 C 565.97844,107.3142 562.74733,104.99155 559.1925,103.47786 C 557.41329,102.05453 555.41889,100.7471 553.43679,99.772539 C 550.85737,100.05009 548.35229,99.058574 545.88772,100.0947 C 543.24249,100.04334 539.51724,98.256701 539.62327,95.208232 C 538.60183,94.043861 536.1546,91.081159 539.37351,91.209894 C 541.73689,92.553538 543.03691,89.930287 545.34173,90.053425 C 547.94719,89.131706 548.91323,92.424474 548.22156,94.229554 C 546.87567,94.042379 544.28277,91.990202 543.22517,93.490566 C 543.54738,95.954133 546.76358,96.49146 548.59627,96.940713 C 551.69485,97.898978 550.36436,92.934309 553.39973,94.509741 C 557.16994,93.304708 554.44617,95.284945 553.85869,96.693121 C 557.01134,99.481652 561.63372,96.631718 564.98545,98.752707 C 566.4929,101.41284 570.89039,98.893623 571.66936,102.29652 C 572.04461,104.83384 576.62952,105.38533 575.15997,108.14965 C 573.52965,108.89276 571.47463,108.47149 569.73846,108.36449 z" id="path5785"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 434.23848,8.6458964 C 432.95639,7.17253 430.87722,4.107434 433.79289,3.1684304 C 435.91589,1.2178249 438.99309,3.3335462 440.73684,4.8332521 C 443.10965,5.0031419 443.89048,7.5414477 446.12109,8.1090642 C 448.58253,11.052834 444.74325,9.5582313 443.12676,9.5445676 C 440.97191,10.792402 439.6962,8.0341612 437.50621,8.9140655 C 436.204,8.1628956 435.42598,10.241412 434.23848,8.6458964 z" id="path5787"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 461.04888,-30.017708 C 459.10115,-33.590004 458.10745,-39.481329 453.02794,-39.629489 C 451.01046,-39.819134 447.83913,-38.465283 447.46947,-41.515234 C 446.85875,-44.897063 446.406,-48.551011 443.93021,-51.174756 C 445.37056,-51.356498 448.02344,-51.019023 449.98299,-51.873247 C 453.01899,-51.650348 457.71078,-49.890705 456.47928,-45.994597 C 455.30747,-44.033127 455.55623,-41.565938 458.26377,-41.294312 C 460.23314,-38.778394 464.28665,-37.747038 463.90805,-33.910688 C 463.84556,-32.428432 464.00394,-27.660815 461.64289,-29.266045 C 461.41361,-29.486308 461.47894,-29.991862 461.04888,-30.017708 z" id="path5789"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 643.8197,283.15431 C 642.92885,279.48835 646.87007,280.39524 644.65524,283.38066 C 644.60811,283.74069 643.68442,283.53689 643.8197,283.15431 z" id="path5791"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 496.77123,-95.046505 C 497.97487,-93.751424 500.30434,-92.828224 500.37314,-90.911695 C 498.26837,-92.163152 496.23392,-93.571328 495.21162,-95.852329 C 493.54654,-97.214576 496.82725,-95.753885 496.77123,-95.046505 z" id="path5793"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 370.59165,-109.59958 C 374.38665,-110.15123 371.67446,-107.33652 369.54316,-108.50995 C 368.58158,-109.39841 369.89805,-109.57505 370.59165,-109.59958 z" id="path5795"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 357.11226,-119.26536 C 358.86036,-117.29105 362.09423,-119.66687 360.41707,-117.11754 C 359.00452,-117.03292 354.37494,-118.39417 356.74089,-119.74819 L 357.01929,-119.38619 L 357.11226,-119.26536 z" id="path5797"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 324.65762,-116.79471 C 326.80722,-115.85751 328.35812,-115.24727 330.35635,-114.0475 C 331.96751,-113.06981 335.53108,-113.95136 335.24065,-111.04907 C 336.08664,-108.75853 337.00451,-107.5069 339.30586,-106.85204 C 340.49479,-103.76866 344.05826,-105.24878 346.49202,-104.65895 C 347.09944,-102.39276 344.41444,-101.15283 344.15266,-98.966647 C 342.00214,-97.953893 339.89407,-102.25299 337.84,-99.718969 C 335.94731,-99.967054 333.97881,-102.35176 332.16023,-101.0613 C 330.21584,-101.91272 327.80807,-100.01792 326.25428,-102.13496 C 323.88597,-103.37835 324.75963,-105.22442 324.21364,-107.33207 C 322.78832,-109.09945 322.93371,-111.14834 321.53833,-112.87457 C 322.0909,-114.61446 322.36771,-116.55305 323.42336,-117.78919 C 323.94668,-117.61897 323.96874,-116.8841 324.65762,-116.79471 z" id="path5799"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 375.64188,-155.61915 C 379.27002,-153.60665 373.62774,-155.31756 373.9709,-152.50417 C 374.60359,-149.46624 372.21295,-149.67844 373.41382,-152.93434 C 372.83051,-154.39387 375.9377,-158.79224 375.30761,-155.78048 L 375.64188,-155.61915 z" id="path5801"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 381.43467,-156.31682 C 383.65735,-153.48565 382.34151,-155.16775 380.30559,-154.19682 C 379.12752,-151.31363 378.4595,-156.91654 380.58061,-155.99531 C 380.43488,-157.5607 380.71217,-157.31673 381.43467,-156.31682 z" id="path5803"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 337.32012,-176.02454 C 340.49224,-174.61274 333.1623,-172.72897 336.1114,-174.49322 C 337.03006,-174.9033 335.96588,-178.40052 337.32012,-176.02454 z" id="path5805"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 292.35153,-165.55293 C 294.9548,-166.29505 296.72033,-163.01759 299.44394,-163.94211 C 301.88779,-163.89025 302.10578,-158.85595 299.49203,-160.91389 C 297.1787,-161.02715 294.63459,-160.17721 292.76002,-162.17061 C 291.26386,-163.06022 288.06714,-166.41456 292.35153,-165.55293 z" id="path5807"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 106.72124,-302.91529 C 107.3815,-299.89596 103.60109,-302.67314 106.72124,-302.91529 z" id="path5809"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 95.135724,-316.50039 C 95.76886,-313.62263 97.616248,-315.0476 94.793722,-312.98554 C 93.673831,-311.48386 91.008092,-312.65104 89.825612,-310.43325 C 85.461468,-309.17966 91.388352,-311.70611 89.335171,-313.0374 C 87.970718,-313.77771 83.373304,-310.73335 84.738251,-313.44007 C 86.792486,-314.44163 87.91529,-316.41775 90.308317,-316.17889 C 92.315107,-316.53084 93.222438,-318.40688 95.135724,-316.50039 z" id="path5811"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 226.58811,-367.08493 C 228.4235,-366.72984 230.69693,-363.54292 227.35595,-365.38455 C 224.41747,-365.10716 222.36523,-366.31417 226.58811,-367.08493 z" id="path5813"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 281.61991,-377.7712 C 286.02565,-377.56295 278.75407,-374.68799 281.488,-377.52854 L 281.61991,-377.61053 L 281.61991,-377.7712 z" id="path5815"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 356.22103,-387.32964 C 355.26581,-386.39344 355.39323,-381.773 353.41753,-383.20636 C 353.58851,-385.32669 352.22866,-386.76285 354.72485,-387.28848 C 355.26228,-387.92607 355.60481,-387.60868 356.22103,-387.32964 z" id="path5817"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 428.82032,-102.07964 C 430.45846,-100.06665 431.80288,-99.383305 427.89376,-99.341162 C 425.05939,-97.911749 424.99348,-99.914211 427.48364,-100.89766 C 427.41144,-101.96523 428.62902,-104.85419 428.82032,-102.07964 z" id="path5833"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1943.7882,842.58924 C 1943.1393,839.94425 1940.8229,842.33769 1940.6893,844.01075 C 1938.805,844.57804 1937.0134,847.44739 1940.2604,847.04621 C 1942.5993,847.11733 1943.4546,844.30657 1943.7956,842.66381 C 1944.324,846.79203 1942.9991,850.82132 1940.149,853.8125 C 1938.4333,855.80575 1937.3445,858.30174 1936.0294,860.43985 C 1936.485,859.14444 1933.7417,856.64696 1932.4996,858.26948 C 1934.7252,861.45574 1932.4546,857.89842 1931.0759,859.98484 C 1930.1452,862.67657 1935.2063,863.66249 1935.8255,860.85782 C 1935.9841,861.0106 1933.8239,863.63747 1933.1144,864.72645 C 1930.4886,869.5711 1926.4195,873.77571 1925.3326,879.31919 C 1926.5418,875.90247 1921.9421,877.95859 1924.0332,880.28568 C 1927.587,883.48907 1923.71,888.04465 1923.7731,891.88445 C 1922.9442,896.33188 1926.4862,901.2628 1923.4017,905.25555 C 1923.6612,907.56074 1922.4338,910.12111 1924.2558,911.91434 C 1923.9905,915.93539 1923.9419,920.07003 1923.9588,924.37226 C 1922.9057,925.63261 1920.5839,926.22377 1920.0771,928.15825 C 1921.4057,929.54733 1921.2872,929.72593 1921.8213,932.12217 C 1921.1082,933.5687 1920.152,936.43116 1918.1288,934.9512 C 1914.8956,935.22036 1919.4254,939.41641 1916.5646,939.06297 C 1914.8007,938.07128 1912.8069,938.52202 1911.0734,937.58252 C 1911.8766,939.92361 1909.0847,940.49501 1908.5423,942.48084 C 1907.323,945.13225 1911.7713,945.99388 1912.2617,943.38166 C 1913.3604,940.50686 1915.6002,943.2381 1917.0489,943.42989 C 1920.2194,943.07365 1916.992,946.46931 1917.2006,947.99996 C 1916.6862,950.34335 1913.2713,949.62446 1912.1875,951.75927 C 1910.3454,953.01682 1910.1912,956.92148 1907.3132,955.87465 C 1907.0827,956.70879 1909.3945,958.90567 1907.026,960.35122 C 1909.4277,960.72787 1908.916,963.12674 1908.194,965.32889 C 1906.1018,966.57639 1908.7487,967.28806 1905.6149,967.86851 C 1904.3523,969.61614 1902.4925,971.09444 1900.2676,971.19815 C 1900.5131,972.60468 1903.3748,974.55101 1901.3058,976.53767 C 1898.5487,978.1857 1902.5296,979.01737 1902.904,976.4603 C 1903.9131,974.39759 1906.725,973.53118 1905.2914,976.77473 C 1903.5722,979.39666 1902.7125,982.55757 1901.233,985.21358 C 1899.1566,985.51072 1895.4864,986.60727 1895.1803,983.49476 C 1894.3666,981.33887 1891.0628,981.90665 1889.9446,979.73594 C 1888.2821,978.53766 1885.1125,982.22947 1885.5031,978.58145 C 1886.212,976.68139 1887.3195,975.54204 1887.6794,973.56081 C 1890.5554,971.78109 1886.6764,971.20244 1885.5478,970.20549 C 1883.7415,971.50057 1881.2532,970.60716 1882.1837,967.92251 C 1883.799,966.47713 1883.723,963.31309 1881.4429,965.74423 C 1881.2481,967.3009 1877.4281,969.19174 1878.0247,966.68718 C 1877.346,965.36214 1875.0857,967.2413 1874.4175,965.05726 C 1872.6765,963.30025 1871.2409,965.40841 1869.781,964.37804 C 1868.3748,962.80557 1866.9295,961.84632 1865.0501,962.5802 C 1862.4879,963.07555 1863.6967,959.58309 1861.3889,959.27656 C 1857.9228,960.42629 1859.3279,958.14199 1857.5589,956.78748 C 1856.0843,957.26061 1852.2216,958.10166 1854.1108,955.35659 C 1855.7698,953.87252 1852.2303,951.9853 1850.8431,952.99393 C 1849.9076,951.17815 1847.7555,951.1849 1846.7505,949.69326 C 1847.6206,947.98531 1848.6964,946.31555 1846.6469,944.93915 C 1843.9926,944.36362 1848.7549,942.55591 1846.4985,940.69683 C 1847.4153,939.14297 1846.7055,936.46687 1848.8185,935.59241 C 1850.0273,937.07137 1851.8114,936.36267 1853.2567,934.9512 C 1854.8001,933.54862 1858.3644,935.21443 1858.1582,932.05155 C 1857.2948,928.89987 1860.4686,928.9769 1862.4935,928.55367 C 1864.4992,927.37612 1863.2708,924.2567 1860.9803,925.33877 C 1858.7,925.85946 1857.3797,923.57533 1854.8805,924.44849 C 1852.2829,924.18887 1850.7215,920.65148 1847.7608,922.27844 C 1846.9764,924.73312 1845.0073,921.58374 1844.976,920.34479 C 1846.6613,918.71026 1846.0401,915.57553 1843.305,917.06981 C 1840.699,917.64072 1838.4406,919.32661 1835.8411,919.86129 C 1835.7357,917.88764 1835.2723,915.78328 1832.1966,916.29887 C 1828.6854,916.9646 1830.8077,912.82091 1833.0189,914.70649 C 1835.6484,914.70928 1837.8231,911.88339 1838.6711,909.63366 C 1839.1686,908.02712 1835.2792,905.90729 1837.4006,905.25555 C 1839.8006,907.06392 1841.0749,902.79675 1843.5649,903.96754 C 1844.0731,902.68382 1847.4386,901.15333 1845.8315,899.8329 C 1844.8765,898.52201 1841.5578,898.18898 1842.4508,897.25458 C 1843.9735,896.84205 1848.0143,897.31286 1846.5349,894.40646 C 1845.0275,892.95252 1845.2663,890.62164 1847.5011,890.1123 C 1849.9676,887.73812 1847.105,884.76324 1845.7557,882.64834 C 1844.0582,882.26131 1841.7693,880.96772 1840.4102,882.08139 C 1840.0769,884.87518 1836.7528,885.86851 1834.2443,885.65516 C 1831.7626,886.70249 1829.1462,885.00408 1826.7805,886.03149 C 1824.8278,888.17173 1824.5001,887.90374 1824.144,885.06548 C 1824.4775,883.36609 1827.0984,880.35367 1824.0698,879.80219 C 1823.719,878.34249 1820.7023,876.92395 1821.8569,875.15821 C 1824.0974,874.23995 1826.3723,875.14027 1828.6744,874.91555 C 1829.2761,873.60598 1832.8061,872.06974 1830.7302,870.74124 C 1828.5903,869.72865 1830.9208,866.60758 1832.1277,865.41127 C 1833.456,863.72011 1836.2696,864.95461 1837.7349,863.10195 C 1838.5775,861.01883 1842.1509,862.55771 1841.0515,859.39055 C 1840.4779,857.18955 1837.0568,858.56267 1837.9205,855.31533 C 1835.4844,853.99507 1836.7452,850.25979 1834.5414,848.9792 C 1833.1276,849.30071 1830.2819,851.63274 1829.7627,849.18794 C 1829.7345,846.92225 1827.2708,846.96916 1825.7779,846.34855 C 1824.9136,843.60347 1821.6571,846.28632 1820.9397,845.30155 C 1822.4578,843.70076 1821.6033,840.46068 1819.0568,841.94491 C 1816.8855,842.24386 1821.025,840.19349 1821.5817,839.15209 C 1821.9416,837.22108 1816.104,839.31985 1819.1652,836.67684 C 1821.5548,837.18519 1820.6898,832.31189 1819.2424,832.0103 C 1817.9798,831.8954 1820.7432,828.01854 1817.9689,827.76816 C 1814.474,828.26795 1815.9848,824.85567 1818.7596,825.9425 C 1821.3663,825.3441 1823.2668,821.74958 1826.1604,823.25703 C 1828.5464,823.02145 1830.4007,820.45401 1833.0883,820.72136 C 1835.6794,819.19514 1832.0155,817.97167 1831.7935,816.33006 C 1831.1075,813.61808 1827.7182,815.49428 1827.3151,813.29657 C 1827.1096,810.01154 1823.65,814.38242 1822.9186,811.76575 C 1821.4494,808.98347 1827.0121,810.27674 1826.8549,807.57744 C 1824.9145,806.72074 1824.4889,804.02556 1821.7245,805.01477 C 1819.5064,804.94414 1818.8658,808.12974 1817.0515,808.27577 C 1817.015,805.78026 1817.5492,803.06894 1816.049,800.86531 C 1815.8829,798.06015 1819.3729,802.84966 1819.7027,799.12048 C 1820.8215,797.629 1824.9953,799.52924 1823.8469,796.67634 C 1823.4127,795.05267 1823.624,792.38118 1826.0807,792.31172 C 1827.8684,792.48803 1831.1386,794.23071 1830.531,790.76937 C 1829.3686,788.26466 1830.6583,788.14711 1831.1886,785.7303 C 1832.7697,784.66239 1833.1479,781.23217 1830.3824,782.39292 C 1827.9626,781.81477 1831.701,779.07431 1831.0137,777.31779 C 1830.125,774.64202 1833.4604,775.51172 1834.2017,773.86007 C 1835.6852,773.07071 1838.3269,774.24775 1836.6209,771.22299 C 1837.8978,769.34564 1838.2875,766.45422 1836.6121,764.848 C 1838.1945,761.11388 1837.656,766.94067 1839.6689,765.38665 C 1842.858,763.61433 1841.9834,767.47702 1844.4932,767.08884 C 1846.4003,766.44961 1849.3322,765.31257 1848.5036,762.71203 C 1849.5146,761.3213 1848.8379,757.51525 1851.5887,759.01726 C 1853.2155,758.36569 1854.4501,756.25753 1856.673,757.47639 C 1858.3184,756.56225 1858.3288,753.2094 1861.024,754.21228 C 1862.4158,754.08238 1864.8043,751.83908 1865.5712,752.73331 C 1867.9019,753.81833 1870.6517,752.62614 1872.8632,751.99893 C 1874.3925,751.29765 1876.4041,752.44127 1877.0675,749.65126 C 1878.9063,749.39461 1882.2332,748.46762 1880.5498,745.98513 C 1879.9892,743.24533 1882.0532,742.76315 1883.1119,740.82966 C 1883.9043,738.52149 1886.4557,738.24279 1887.7165,736.26601 C 1889.1907,734.37697 1891.0174,737.37671 1892.2469,735.03069 C 1894.9274,734.81076 1897.6721,737.2516 1900.1191,735.45953 C 1901.8529,736.11259 1903.5491,737.6225 1905.667,737.58019 C 1905.1398,740.21891 1907.7716,740.26962 1908.3998,742.33315 C 1908.7789,743.70133 1910.111,747.87795 1911.0516,744.52509 C 1912.5879,742.99724 1915.0205,741.34657 1913.9699,738.73534 C 1914.0986,736.77618 1917.2195,736.17925 1916.874,733.71635 C 1917.0443,730.89078 1915.4217,728.21748 1916.3464,725.36491 C 1916.7952,721.69466 1913.6564,719.25563 1912.4846,716.18147 C 1913.4313,714.26116 1914.2423,712.08058 1915.6664,710.68162 C 1915.3451,708.3751 1912.6652,705.35034 1915.4925,703.56271 C 1915.9124,701.86661 1919.9072,701.27446 1918.4825,699.58577 C 1917.5346,697.94597 1919.8738,695.7425 1917.2376,694.81009 C 1918.0256,691.92345 1915.7497,688.83382 1917.1261,686.05697 C 1918.8989,685.44459 1921.1855,684.23412 1923.0017,685.0755 C 1924.7355,686.66904 1927.3558,682.38294 1928.1548,685.73481 C 1929.3841,687.02759 1932.3942,687.62648 1931.6674,689.93283 C 1930.9264,692.26882 1930.2854,695.03595 1932.4996,696.84992 C 1931.7586,698.69451 1932.9451,700.71096 1932.5867,703.05172 C 1932.5775,705.04135 1934.6,707.01912 1932.9079,708.82485 C 1935.5627,711.33452 1933.7722,715.37911 1935.1731,718.38396 C 1936.5906,722.71466 1933.2621,726.24795 1932.4326,730.21961 C 1931.7618,734.58686 1930.9726,738.9291 1930.2936,743.25504 C 1929.4856,746.15074 1931.6436,749.41915 1929.3431,751.99893 C 1929.8858,753.73718 1931.7954,754.95456 1932.0245,757.12526 C 1930.9987,759.35144 1933.63,760.39581 1933.4649,762.6852 C 1934.1985,764.42426 1936.4392,765.27767 1938.0325,766.06835 C 1938.4139,762.85904 1936.8443,759.33481 1934.5791,757.04624 C 1933.3938,759.09282 1934.3444,759.66307 1933.9477,756.24173 C 1933.1394,755.13168 1931.3382,751.96008 1931.6455,751.83809 C 1934.0444,755.67247 1936.9421,759.23637 1938.7379,763.43686 C 1940.8416,767.23732 1941.8811,771.82369 1940.186,776.00229 C 1939.3356,780.14698 1942.5014,783.82644 1941.8943,788.05838 C 1942.7214,791.38901 1941.5192,794.66038 1940.6433,797.88121 C 1940.9369,803.10549 1942.028,808.31659 1943.8767,813.23484 C 1943.6822,816.48003 1945.263,819.61674 1944.048,822.82818 C 1943.3066,826.58469 1943.7345,830.34679 1944.3822,834.05079 C 1943.9308,836.89694 1943.5927,839.70539 1943.7882,842.58924 z" id="path5845"/> |
<path style="fill:#fefee4;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1055.9062,74.84375 C 1049.038,77.912451 1042.6365,80.899997 1035.75,82 C 1033.2811,81.15451 1031.0385,82.536079 1029.0312,81 C 1023.8496,82.39384 1018.8456,84.71792 1013.4062,85.09375 C 1010.3383,86.40546 1007.4522,88.129038 1004.0938,88.75 C 1000.3699,90.77452 996.10608,89.242449 992.21875,90.3125 C 988.11237,90.62034 984.19053,91.989079 980.125,92.4375 C 977.7978,92.46187 975.32931,93.747191 973.21875,95.03125 C 969.22173,94.75913 966.01389,97.44818 962.28125,98.1875 C 958.51013,99.28239 954.47841,100.77141 951.78125,103.84375 C 947.15087,106.57153 945.29836,112.93598 939.5625,113.90625 C 937.65527,114.60376 934.2189,113.9006 933.6875,116.34375 C 934.93656,122.28332 938.20067,128.22633 936.625,134.4375 C 936.51529,139.48514 931.57262,142.92579 932.125,148.0625 C 932.82533,154.36587 934.17796,160.60381 933.8125,166.96875 C 933.26553,169.73654 935.13749,171.54283 936.84375,173.3125 C 939.27237,176.75771 934.88579,174.19374 934.03125,176.21875 C 933.32118,183.12728 933.7466,190.1718 932.375,197 C 931.17952,199.20856 931.00257,202.09762 933.5,203.46875 C 935.34875,204.30141 938.24104,205.1598 937.625,207.0625 C 935.23762,205.976 933.36167,207.9757 931.0625,208.125 C 929.31769,212.20994 929.81049,216.86067 928.46875,221.09375 C 928.34073,223.2261 929.65444,226.33259 931.90625,226.6875 C 934.96906,224.83946 933.98803,229.90429 936.25,228.78125 C 937.54223,230.99097 938.876,234.0897 941.5,234.75 C 944.76738,234.35277 945.80385,236.38618 942.75,236.9375 C 943.56128,238.72003 947.75225,239.92841 943.90625,240.875 C 940.64111,239.84726 937.61264,238.15505 934.5625,236.5625 C 932.5905,235.50529 931.61838,233.38192 929.0625,235.03125 C 924.15318,236.48832 922.04534,241.66984 920.6875,246.125 C 920.12652,251.54089 916.89821,256.26397 912.59375,259.40625 C 907.81764,262.661 902.85461,265.75684 898.875,270.03125 C 895.18461,273.08368 892.18717,276.75975 888.0625,279.25 C 882.20914,281.93581 875.92432,283.85399 870.65625,287.65625 C 866.97958,288.60414 863.07247,289.41046 859.21875,289.125 C 855.67391,288.23982 853.1068,291.03456 850.0625,292.09375 C 846.16427,293.76433 841.8863,293.91199 837.9375,295.21875 C 833.52539,298.36583 827.9147,297.84153 822.84375,297.375 C 819.23292,298.18872 815.56776,298.86639 812.1875,300.375 C 807.75898,301.32075 803.92568,303.78468 800.53125,306.71875 C 797.84381,307.09244 796.38489,309.56768 794,310.40625 C 789.60347,312.9281 784.67292,314.04384 780.59375,317.0625 C 779.07917,319.65628 776.45126,320.90809 773.5625,321.25 C 770.01928,321.12242 767.67526,323.93188 764.59375,325.0625 C 761.98875,324.85903 760.18363,326.65706 758.375,328.125 C 756.97718,330.01881 755.0708,331.72383 754.90625,334.3125 C 754.24781,341.30844 750.47189,347.3001 747.28125,353.375 C 745.95734,356.7234 742.33777,360.19597 744.0625,363.9375 C 746.74532,365.09759 747.25132,368.36513 750.125,369.28125 C 751.37061,371.01769 755.89033,369.10351 754.53125,371.78125 C 757.95533,372.88438 757.25826,371.78289 758.65625,370.5 C 760.61889,371.42485 762.55458,371.93552 764.28125,373.40625 C 768.14936,374.11281 772.16169,374.62685 776.09375,374.59375 C 783.52691,374.85056 790.18564,371.12588 796.75,368.3125 C 792.94591,373.03847 787.36846,375.69901 781.53125,377 C 776.87204,377.63675 772.2036,378.78208 767.5,378.78125 C 765.42285,380.05971 762.58079,377.99793 761.5,380.125 C 757.8234,381.69796 753.33174,381.64316 750.28125,384.5 C 747.33664,386.41374 746.17986,389.97706 743.6875,392.25 C 738.20736,394.71949 733.32458,398.47828 727.65625,400.5 C 722.56942,403.22894 716.69638,403.21992 711.15625,404.125 C 709.2435,404.55203 706.01653,404.80061 706.59375,407.21875 C 704.99097,407.38683 705.10116,405.74255 703.5,404.34375 C 699.1348,403.48936 695.17621,401.52009 691.1875,399.65625 C 686.97734,398.59411 683.60387,394.30431 678.96875,395.1875 C 673.10723,396.76556 667.59779,391.14839 661.9375,394.03125 C 658.43553,395.71566 654.83908,394.0895 651.34375,393.5 C 643.57754,394.03485 636.00513,391.99166 628.34375,391.21875 C 624.38663,390.26362 619.90432,389.1271 617.53125,385.53125 C 613.4481,385.15855 609.21081,384.5331 605.1875,385.59375 C 602.53413,386.95205 599.45617,384.2387 597.21875,386.375 C 595.97596,388.13052 592.58208,389.51228 593.4375,391.96875 C 595.70959,394.20646 592.02186,395.95846 590.0625,395.15625 C 588.78878,393.99485 590.6427,389.68446 587.53125,391.96875 C 585.8054,393.58237 582.65207,392.77974 585.09375,390.625 C 586.45048,388.96494 584.91949,386.14537 586.59375,384.34375 C 586.85438,381.49086 583.98995,379.38156 582.4375,377.21875 C 578.4151,373.95841 575.76137,369.49102 573.28125,365.0625 C 570.59875,361.25793 567.51447,356.41184 569.71875,351.65625 C 570.62081,348.92155 574.76379,351.68087 574.78125,349.375 C 574.65301,347.33187 575.28263,343.58261 577.8125,345.90625 C 580.21669,344.64837 577.61627,341.50904 577.5625,339.5 C 578.19576,335.9812 572.24937,334.05815 574.90625,330.5 C 572.55393,330.48239 570.12038,330.64481 567.875,329.65625 C 564.79762,329.47122 561.78707,328.1384 558.71875,328.40625 C 555.15708,327.96275 551.97667,330.24027 548.5,329.90625 C 547.67427,332.06559 546.73092,334.33735 544.65625,335.59375 C 541.49802,338.76042 536.95921,336.48126 533.21875,337.21875 C 532.12637,339.09693 528.49965,339.5535 529,336.5625 C 526.84284,336.46768 523.4634,338.41048 522.28125,335.71875 C 522.34113,332.74962 518.39301,335.49276 517.0625,333.125 C 514.30084,333.78447 511.84133,332.50655 509.125,332.34375 C 507.4818,330.46048 504.20666,332.89031 503.5,330.125 C 503.15428,327.04772 499.45999,326.00894 497.25,327.9375 C 494.97734,328.984 494.64824,325.37665 492.375,325.1875 C 490.51955,323.51823 487.0259,324.84767 488.125,327.625 C 489.12679,329.85415 488.37392,331.83608 487.90625,333.96875 C 490.46174,335.35009 493.63061,335.35686 496.34375,336.5 C 500.67095,337.78734 500.32223,343.13065 501.1875,346.71875 C 502.42215,350.60251 500.38184,354.31226 497.90625,357.125 C 495.09917,358.10894 494.97542,361.80192 497.375,363.3125 C 500.66382,364.24509 501.248,367.88272 500.65625,370.8125 C 502.84114,373.09958 504.4245,376.04916 504.125,379.375 C 503.51423,382.50314 504.50259,385.4815 504.78125,388.5 C 506.53173,391.02892 508.88669,386.37484 509.875,388.375 C 507.88831,390.48166 512.40428,390.63238 513.09375,392.3125 C 514.60595,393.62635 514.9557,397.67197 517.53125,396.65625 C 517.97817,394.81264 517.98218,391.0227 519.625,394.65625 C 520.98862,397.03915 521.25996,398.53568 518,398 C 518.03482,399.99209 519.86079,401.24591 520.6875,402.875 C 521.49632,404.5981 525.89476,404.81663 522.78125,406.625 C 524.59234,408.80937 525.08297,411.61308 525.9375,414.25 C 526.31083,415.42177 528.16647,420.04678 528.625,417.03125 C 528.58987,413.99085 532.33061,414.75175 534.1875,415.1875 C 534.97375,416.40191 540.1363,417.54087 536.6875,417.8125 C 534.90685,416.19674 532.57274,417.74557 530.53125,417.53125 C 529.98995,420.24273 531.04752,422.75848 531.40625,425.375 C 531.62919,427.19391 531.48278,430.63355 533.0625,431.1875 C 534.29846,428.47897 536.64449,434.36848 533.375,433.5625 C 530.43054,432.55337 531.59871,436.94612 530.5625,438.53125 C 529.71631,440.79926 530.78852,443.21471 533.21875,443.6875 C 531.74092,445.42739 531.40838,447.53137 531.90625,449.78125 C 532.60969,451.8792 532.27924,455.16605 534.1875,456.34375 C 535.16592,454.48763 535.70736,451.35537 538.375,450.875 C 540.08861,450.43233 543.89079,451.49479 543.125,453.625 C 541.82128,452.00694 538.86274,451.0912 537.4375,453.1875 C 536.9239,455.55739 537.80438,457.68918 536.9375,460.03125 C 537.15606,462.25545 535.49585,465.42205 537.1875,467.0625 C 540.61046,465.91805 538.16236,470.98076 538.0625,471.53125 C 537.42783,467.62543 535.88471,472.43222 536.15625,474.09375 C 535.19177,477.8361 535.85977,482.4279 533.0625,485.40625 C 529.72909,487.54815 532.01355,486.2332 534.375,487.34375 C 536.34173,491.67989 536.74846,496.66578 536.375,501.40625 C 535.46064,504.04431 537.75974,505.59488 539.90625,506.34375 C 543.60798,507.8084 542.19722,512.78727 545.03125,514.84375 C 547.24464,515.32099 549.59107,515.91216 551.25,517.59375 C 551.26597,521.4069 553.3801,517.61965 555.28125,517.53125 C 556.56502,518.81613 557.38342,520.57956 560.15625,520.65625 C 562.43554,520.37705 563.52423,525.35574 560.90625,522.84375 C 558.45986,522.75485 555.92577,522.04629 553.5,522.65625 C 551.65246,523.77979 549.26882,523.32678 548,525 C 545.8251,524.21937 543.60055,525.4953 542.0625,524.3125 C 538.74068,524.32765 534.93473,522.20419 531.9375,524.28125 C 528.6282,529.00886 522.32777,528.06494 517.3125,528.65625 C 515.29724,529.71378 511.11408,527.04424 510.9375,529.8125 C 508.92276,529.18381 506.65458,528.52221 504.375,528.875 C 500.57247,529.1565 499.44256,525.24304 498.03125,522.59375 C 497.15331,521.01124 498.15054,517.78628 499.6875,516.9375 C 502.19883,516.15209 501.32025,513.62188 500.34375,511.96875 C 500.61349,509.37282 497.56211,513.19862 495.90625,512.875 C 494.13467,514.12876 491.93051,513.16578 490.03125,512.625 C 486.30729,513.03212 490.25974,514.94817 487.34375,514.96875 C 486.00569,514.30878 481.05956,514.14255 482.84375,516.5625 C 483.13162,519.79683 479.27846,519.77487 477.1875,520.8125 C 478.05691,522.92559 477.6968,523.77847 478.8125,525.78125 C 479.98423,527.44607 479.65593,529.70317 481.15625,530.90625 C 481.6059,532.91711 485.13816,530.44242 485.625,533.34375 C 488.08738,535.54574 485.5838,536.29281 483.96875,534.0625 C 482.13489,534.39421 484.57524,537.71768 484.53125,539.09375 C 488.59547,538.09747 483.5835,543.17788 487.46875,542.34375 C 490.28477,544.01664 485.42965,544.41367 485,545.875 C 482.85456,548.69135 483.18573,543.94239 484.46875,542.71875 C 483.42773,541.17295 482.17427,539.88118 481.21875,538.15625 C 478.68303,536.66954 482.56805,533.8582 479.375,533.53125 C 478.33698,531.8842 477.71172,529.76106 477.46875,527.90625 C 478.85434,524.53562 473.36786,526.58766 474.9375,523.125 C 472.75682,521.98022 470.20381,524.43797 468.03125,522.84375 C 466.93053,522.96475 464.4619,524.04636 462.75,524.625 C 461.44801,525.77076 464.39707,527.87837 465.03125,529.21875 C 463.51216,528.53738 461.98182,525.85977 460.8125,528.90625 C 457.90768,530.74557 461.88964,532.26364 460.15625,533.75 C 457.78247,536.32238 456.88963,532.18589 457.46875,530.3125 C 455.91772,526.60933 456.81617,532.35136 455.90625,533.59375 C 453.72878,536.86462 454.89895,532.51832 453.125,531.3125 C 454.08289,528.33613 449.80622,528.98449 450.34375,526.46875 C 450.17511,525.09925 450.49809,521.25937 448.8125,522.15625 C 446.50755,524.22522 443.33391,525.15145 441.75,527.9375 C 439.97487,528.57212 438.60355,525.30246 440.875,524.40625 C 443.43984,523.36025 442.91534,520.22849 444.78125,518.53125 C 444.96319,517.01591 440.47354,517.45612 441.59375,514.15625 C 439.08174,513.58172 441.01029,518.19863 438.34375,518.21875 C 436.37708,519.41768 433.9232,519.72235 432.4375,521.5625 C 430.63693,521.96516 428.71437,525.85725 428.71875,522.03125 C 427.76728,519.8831 424.31079,521.39783 422.40625,521.59375 C 418.9829,521.47901 419.64642,523.83355 422.59375,524.03125 C 422.0955,526.69763 419.09261,527.62535 417.25,529.25 C 415.69914,530.90429 413.51304,531.41111 411.4375,531.15625 C 409.62586,532.95869 408.13337,535.28319 406.25,537.125 C 405.56365,539.71829 402.46935,540.32954 401.375,542.5625 C 400.03459,545.06344 397.60648,542.79431 396.0625,542.1875 C 393.54891,543.2103 395.79082,546.51794 394.5625,548.5 C 393.49789,548.25882 392.32612,545.369 390.71875,544.75 C 390.11309,542.19967 387.67863,543.6811 390,540.9375 C 390.40599,538.63575 389.50402,537.99134 386.84375,537.40625 C 384.60928,537.11372 383.94837,535.06325 382.65625,533.6875 C 380.79536,532.93172 378.47703,532.20514 377.25,530.6875 C 379.30217,528.78133 377.18461,526.64176 377.0625,524.46875 C 377.80473,522.06412 376.44085,520.41163 374.625,519.1875 C 374.03891,516.18332 370.24828,517.57931 368.90625,515.53125 C 368.72835,513.04398 367.87114,511.96464 365.6875,511.0625 C 363.84133,510.11576 363.23244,507.89475 361.5625,506.96875 C 362.77438,505.19133 362.2957,503.47652 362.71875,501.59375 C 360.32594,499.97782 361.34446,498.85202 358.78125,500.8125 C 356.37037,499.94363 353.60208,499.91114 351.3125,498.6875 C 350.80179,496.12515 353.10568,497.30087 349.125,496.875 C 348.88205,495.83871 351.92329,494.04914 353.3125,493.5625 C 352.506,492.29081 354.17235,489.14693 350.78125,489.625 C 348.92041,491.41197 346.59874,488.12547 345.28125,490.53125 C 343.6712,492.56433 344.09165,495.45354 342.59375,497.375 C 342.33854,499.50438 340.17335,500.11848 339.5,502.0625 C 338.13097,503.30968 339.27744,498.24166 340.6875,497.65625 C 343.3813,496.65996 342.51796,493.67333 343.5625,491.6875 C 346.08837,489.77361 342.34978,488.33309 343.65625,486.84375 C 344.43742,484.96081 343.86457,482.65289 343.34375,481.28125 C 343.10841,479.25871 340.07996,482.63005 338.5625,482.5 C 337.56225,484.94431 335.39081,483.33688 334.0625,484.9375 C 333.01763,486.99956 329.83355,486.00312 330.4375,489.28125 C 330.34516,492.39046 325.91959,492.30468 326.09375,495.34375 C 325.72677,492.99575 328.28822,491.00935 328.1875,488.46875 C 328.55578,486.18198 326.21318,485.04718 327.53125,482.5 C 326.7721,479.83691 323.81752,482.51417 323.28125,484.125 C 322.44119,486.00053 321.25255,487.9769 319.5,486.40625 C 318.36192,489.44764 315.06273,485.53706 313,487.5 C 311.40939,489.52189 308.6921,488.85175 306.71875,490 C 305.77368,491.90056 304.61836,493.70452 301.96875,493.625 C 298.1431,494.7301 300.67067,491.1512 300.53125,490.1875 C 298.45904,491.25474 296.57931,490.00916 295.40625,488.25 C 293.74528,484.62536 294.08173,490.11035 292.0625,487.9375 C 290.5638,489.16146 289.0585,486.05214 288.15625,489.5 C 285.5752,488.50419 285.69826,491.88598 286.46875,493.03125 C 285.80185,495.89156 282.26248,493.79927 281.34375,495.875 C 280.7831,497.53899 279.98166,501.41413 282.78125,500.53125 C 284.7488,501.55075 284.68151,504.36908 286.28125,505.28125 C 288.0328,506.27508 283.02837,506.14969 281.96875,506.6875 C 279.55329,507.33134 281.14499,511.03165 281.125,512.96875 C 283.9285,514.56838 280.57304,518.57875 278.28125,516.625 C 277.08253,513.76156 275.53919,515.08548 273.625,515.875 C 271.23128,515.06703 275.19515,511.00443 271.5,512.84375 C 269.24568,514.60981 267.04238,512.44865 264.65625,512.15625 C 263.48818,509.61663 260.03638,509.65032 257.65625,509.84375 C 255.84192,511.4814 254.10706,509.38732 252.71875,508.3125 C 250.8824,507.60891 251.99613,511.66019 249.28125,509.46875 C 249.24752,511.66217 247.08366,512.72504 247.53125,514.84375 C 249.5476,516.87847 247.13852,520.08902 246.5625,516.1875 C 244.32066,514.49114 246.70274,518.62814 246.625,520.09375 C 246.87191,520.55275 248.12624,526.10225 246.3125,525.53125 C 246.14788,523.08497 243.61478,522.84948 241.875,521.96875 C 239.45917,520.97953 239.69203,518.24271 241.1875,517.03125 C 238.93174,516.10048 237.53923,516.48357 236.5625,518.8125 C 234.49029,519.83645 233.17269,522.81643 234.25,518.84375 C 235.27841,516.31565 230.84081,515.88107 232.53125,513.1875 C 230.47033,512.17194 231.33512,509.22262 232.15625,507.3125 C 230.51214,505.07446 228.76835,508.38517 227.5625,509.125 C 225.988,509.81904 223.71857,510.34977 221.8125,510.78125 C 221.08112,512.40558 220.74214,514.69384 220,516.03125 C 219.88258,517.86202 218.4836,512.1701 215.96875,514.15625 C 213.82678,512.29455 210.9176,514.20014 208.46875,514.40625 C 205.41101,514.15092 203.78494,516.81869 201.5,518.1875 C 198.34914,520.59081 202.85948,520.803 203.3125,521.8125 C 200.81744,523.32307 198.59233,520.43724 196.125,521.65625 C 194.12696,521.81757 191.32609,522.51558 190.65625,524.40625 C 187.47839,525.21503 188.96353,522.33797 190.15625,521.09375 C 191.38359,518.25205 187.42754,518.3965 186.5,517.15625 C 183.07479,515.57342 181.23077,519.63578 178.25,520.25 C 177.09337,520.95803 171.8228,520.82706 174.6875,522.53125 C 178.79187,524.19507 174.20543,523.41287 172.6875,524.46875 C 170.83922,522.66597 169.7124,525.66987 167.65625,525.6875 C 165.05754,527.28961 163.77591,524.45984 161.8125,524.65625 C 158.91107,523.12082 159.55861,526.65284 156.875,526.25 C 155.66154,528.20373 159.62047,527.97368 158.0625,530.1875 C 162.00592,530.56302 159.5544,531.8259 156.875,531.71875 C 154.05125,532.00585 153.7003,529.40414 151.9375,529.71875 C 151.11357,530.96544 149.9405,535.2952 152.21875,534.78125 C 153.74803,534.93057 155.54875,539.07519 152.625,538.09375 C 152.59362,535.85884 149.78567,535.36996 148.28125,534.53125 C 146.48942,536.13121 143.80067,534.1535 142.59375,536.15625 C 141.1774,535.99558 137.5257,535.49964 138.96875,538.4375 C 138.00659,539.55479 135.39154,536.68749 134.40625,539.8125 C 133.58972,541.74961 132.23215,542.74055 131.3125,544.46875 C 130.62363,546.36947 128.24361,547.8443 129.9375,550.1875 C 130.05893,552.64894 132.61014,553.29059 133.375,554.28125 C 132.07198,555.92814 130.28657,554.15218 129.46875,557.21875 C 129.23505,559.53761 128.67266,561.16209 127.8125,563.09375 C 128.48051,565.28125 130.03587,566.11008 129.96875,568.4375 C 132.15621,569.19361 132.00636,572.36264 129.625,572.59375 C 127.39093,572.98571 129.96581,576.15052 130.25,577.71875 C 130.77787,580.59832 133.87853,579.1781 135.8125,579.1875 C 138.03984,580.05868 141.03001,578.70013 140.03125,576 C 142.16716,573.25789 145.13948,576.37452 147.6875,576.375 C 149.69928,579.36207 153.58012,576.65089 155.96875,575.46875 C 158.91594,574.35804 162.08839,573.9932 164.5625,571.84375 C 168.26738,570.12428 172.10188,568.31533 176.15625,567.90625 C 179.42086,567.2807 182.67256,566.20714 185.71875,564.8125 C 187.42133,564.54894 189.70371,562.04212 190.90625,562.96875 C 187.9341,566.38975 183.31414,567.43657 179.375,569.34375 C 176.95844,569.52829 176.21901,571.84236 174.46875,573 C 171.66563,573.55016 172.52665,576.78147 171.65625,578.53125 C 168.91627,580.84023 173.03725,579.84886 174.375,578.9375 C 177.10002,577.58859 177.92749,578.15562 176.25,580.34375 C 178.36805,580.67546 181.47511,580.5793 181.84375,577.84375 C 182.60402,575.44126 186.13283,578.26983 186.78125,575.40625 C 186.79991,575.91675 186.59339,579.00705 189.71875,576.3125 C 189.62923,574.04961 196.16986,575.24463 192.375,575.53125 C 192.77458,577.68105 189.40383,578.10969 189.0625,579.1875 C 188.53107,580.20585 184.87653,582.62106 188.65625,581.84375 C 190.60411,583.97857 192.96771,579.76502 193.0625,582.8125 C 194.90908,583.41107 196.45552,585.65947 197.9375,583.1875 C 197.62763,584.27105 198.44737,586.22781 201.4375,585.5 C 205.87548,584.86126 202.95277,587.10661 200.28125,586.6875 C 197.76867,585.27356 196.49471,588.39409 194.21875,588.5625 C 189.81261,588.15868 193.28826,587.09519 193.84375,586.375 C 191.43389,585.94435 188.57613,585.37098 186.3125,586.71875 C 182.92825,587.28917 179.48916,590.50171 176,588.625 C 175.31925,586.07155 173.42286,585.49428 170.90625,586.21875 C 168.90185,586.59838 167.06151,587.53188 165.03125,587.96875 C 163.90706,587.45695 162.35893,583.98118 161.46875,587.5625 C 159.7246,587.76762 156.87443,584.94244 158.875,583.46875 C 158.3396,581.47156 161.42418,579.23677 160.03125,577.875 C 157.64116,578.60181 154.19494,580.18145 154.375,583.09375 C 155.31044,584.98888 156.44778,588.98579 153.1875,589.09375 C 152.09078,587.76953 148.6679,587.22417 149.125,589.59375 C 149.03842,593.25889 149.44282,591.39629 151.75,592.75 C 153.40005,595.06064 155.81025,592.44878 157.8125,593.0625 C 160.43233,594.03937 158.44652,596.88403 156.5,597.28125 C 156.73885,600.5816 160.14573,603.5785 157.96875,606.96875 C 155.95084,609.86824 160.83543,609.29464 160.65625,606.65625 C 163.12069,604.824 163.99418,601.97995 165.34375,599.375 C 164.48805,596.53888 168.73871,595.65479 170.6875,596.71875 C 173.13879,596.27558 173.41918,597.7447 175.53125,598.6875 C 176.89522,601.08949 180.16495,597.9529 180.65625,600.96875 C 181.31649,603.84997 184.34515,601.93813 186.25,602.15625 C 189.63449,603.24029 190.31643,607.2339 190.4375,610.3125 C 192.57298,610.92178 193.61929,613.03273 192.84375,615.40625 C 191.77917,617.34516 192.4293,619.47857 191.21875,621.5 C 190.13863,624.20275 187.58059,621.2381 185.6875,621.46875 C 183.87828,619.35221 181.25658,619.94934 178.96875,620.84375 C 175.79452,620.62727 173.11013,622.45515 169.96875,622.375 C 167.8516,622.74836 166.36557,625.22393 163.84375,624.21875 C 160.88641,623.07381 159.24636,626.87034 156.46875,626.1875 C 153.9225,624.78757 151.84663,626.99445 149.40625,627.28125 C 147.31503,627.87439 144.47595,626.06846 143.125,628.21875 C 141.55253,629.32122 136.92366,626.40074 138,630.1875 C 140.03452,632.58753 133.55222,632.9815 137.25,633.8125 C 139.62451,633.85727 141.12387,635.88275 143.84375,635.5 C 145.80261,636.75442 148.03522,633.94763 149.09375,636.59375 C 151.60858,636.46385 153.18421,637.71038 154.4375,639.53125 C 157.2425,641.26702 158.36483,637.7609 160.4375,636.78125 C 161.45295,637.31199 162.18482,640.04762 165.0625,639.59375 C 167.89549,642.20515 171.16435,644.27895 173.90625,647 C 176.01551,649.68697 178.21426,652.35774 179.5,655.59375 C 181.9608,659.13642 183.45751,663.24491 184.3125,667.46875 C 185.04771,669.88836 183.39163,671.30487 181.28125,671.78125 C 180.69275,673.11124 180.55462,676.88742 182.75,676.8125 C 184.91718,676.12274 186.96775,677.25854 189.09375,676.71875 C 191.11377,677.91045 193.16786,677.82344 195.46875,678.25 C 197.6757,677.0825 200.39659,678.2578 202.375,676.75 C 205.2478,677.35647 206.33297,674.30268 207.71875,672.4375 C 210.32945,669.12992 203.13506,671.29281 205.5,668.6875 C 205.07453,668.36924 202.30337,665.78137 204.125,664.09375 C 204.60122,660.50317 206.98671,663.49694 207.21875,665.46875 C 208.50513,667.29688 209.85173,667.7068 211.28125,665.40625 C 215.10513,665.64066 212.41846,663.24988 212.09375,661.21875 C 210.47068,659.7602 208.68756,657.77595 209.96875,655.40625 C 211.444,653.73484 210.10908,659.07524 212.28125,659.71875 C 213.58868,661.59181 214.3079,661.6668 215.21875,663.625 C 216.60663,666.10947 219.03784,662.95242 220.6875,664.5 C 221.97139,665.66206 222.5163,669.59465 223.625,666.03125 C 222.73333,665.8775 229.227,665.23221 226.59375,667.28125 C 225.44066,667.66414 224.97477,667.87723 224.90625,667.9375 C 225.18408,667.92899 227.03103,667.40732 228.21875,666.90625 C 231.5062,666.64071 229.57601,663.70844 230.03125,661.65625 C 228.70473,659.93957 230.14495,657.87367 232.125,659.34375 C 234.37823,658.64988 234.83026,660.92018 236.25,662.25 C 236.71667,664.38153 240.33732,663.96648 239.96875,666.3125 C 236.87508,667.57598 243.87561,667.34982 241.40625,669.5625 C 241.99023,672.07973 244.7175,673.58688 246.46875,675.375 C 247.26499,677.87117 246.9956,679.22321 249.5625,677 C 251.97588,677.08083 254.03679,679.07911 256.65625,678.53125 C 259.3789,678.54854 260.37737,675.37563 263.03125,675.5625 C 264.85004,674.28454 263.87888,678.10176 266.25,678.53125 C 267.8866,680.63413 270.21534,679.50823 272.46875,679.65625 C 273.90748,682.18896 277.29782,681.49575 279.78125,681.84375 C 282.65418,681.17012 285.34626,684.58704 287.78125,682 C 288.46784,684.0497 290.42483,684.97457 291.3125,686.90625 C 291.94619,689.58234 293.21549,692.15164 295.40625,693.78125 C 296.49717,696.00596 298.78406,695.48057 300.65625,694.5625 C 303.23246,694.90047 307.20391,695.44765 307.96875,692.1875 C 308.87562,689.31879 303.01621,689.45407 305.46875,688.59375 C 307.78593,689.3525 309.54828,689.34249 310.625,686.90625 C 313.1581,686.65931 313.43872,684.17342 314.875,683.5625 C 316.34388,683.49697 318.52222,679.10059 318.59375,681.34375 C 316.51291,682.277 316.66153,684.84913 315.6875,686.71875 C 314.60235,688.49337 312.63996,689.37142 311.0625,690.03125 C 312.95687,692.37777 307.89555,693.37927 310.15625,694.46875 C 311.96875,693.02864 314.78065,694.02565 316.5625,695.15625 C 319.04681,695.64271 318.8657,699.18026 316.4375,696.8125 C 314.61241,695.09269 312.20838,696.27354 309.96875,696.09375 C 308.39354,698.02674 313.03973,695.8524 314.375,696.4375 C 317.86978,698.70072 322.73402,699.33525 325.03125,703.125 C 326.41945,706.31603 328.72908,703.34593 327.5625,701.09375 C 329.05477,699.65249 330.38008,698.31301 328.3125,696.4375 C 331.489,698.74878 329.57942,694.19112 332.125,694.53125 C 335.23203,695.68706 332.88577,691.30836 333.28125,689.6875 C 332.24729,688.9686 328.52571,686.68765 332,687.09375 C 333.8506,688.54406 335.97108,689.14309 336.4375,686.25 C 338.26588,686.79786 335.24842,690.90284 337.53125,691.25 C 339.9957,688.77294 339.75014,692.19674 339.40625,694.1875 C 341.34675,697.1604 337.644,694.91832 336.46875,697.03125 C 335.14858,699.2482 332.44378,697.96087 330.9375,699.5625 C 328.46524,700.6788 329.13385,702.92999 329.1875,705.03125 C 327.51767,707.63968 331.14222,709.15058 332.90625,710.34375 C 335.97199,711.65397 336.83684,715.21477 337.71875,718.15625 C 337.60055,721.05063 338.30304,725.02494 335.625,726.9375 C 335.54409,729.74365 337.23267,732.59899 337.34375,735.53125 C 337.89129,737.02667 340.3,736.21311 341.96875,737.21875 C 344.76826,737.60018 341.82018,734.63606 340.5625,733.84375 C 338.52755,732.63262 339.83822,730.34876 338.71875,728.59375 C 337.6552,725.84835 338.13755,722.32244 338.875,719.5 C 339.8229,717.98548 336.49066,714.61911 339.25,714.21875 C 339.81865,715.73409 344.66138,716.56712 341.625,717.46875 C 340.41341,719.68867 345.04752,718.82962 346.4375,718.40625 C 348.26137,717.51827 349.91102,716.89654 351.84375,718.34375 C 352.61749,716.8791 350.03704,713.26703 352.40625,712.40625 C 353.6064,714.12111 352.86788,716.59957 354.09375,718.375 C 357.47953,720.57073 354.3836,715.20929 355.78125,715.5 C 357.07139,716.92365 359.25877,718.01408 358.40625,720.28125 C 360.33589,718.80245 361.24294,721.73222 362.90625,720.65625 C 362.33747,718.39253 360.35108,716.66549 359.09375,714.8125 C 358.57069,712.64163 359.57654,711.03086 359.6875,708.90625 C 359.02503,706.98923 356.77691,705.62718 357.5,703.375 C 359.35544,704.00106 359.19843,706.85303 360.8125,707.875 C 364.64627,707.48797 359.85463,709.75611 361.78125,712.09375 C 362.18896,715.89587 362.79005,712.32734 364.9375,712.84375 C 364.90672,716.51416 364.83624,713.48618 366.8125,715.5 C 370.33991,717.70329 367.97185,711.90147 370.5625,713 C 373.33576,714.59733 372.44895,710.70024 373.125,709.34375 C 375.10166,709.35544 377.34556,710.35882 379.28125,709.125 C 381.6639,710.36296 383.84027,708.25568 381.34375,706.5 C 382.65973,707.45661 385.36748,706.78761 385.90625,707.21875 C 385.64496,708.97412 390.05485,711.40524 386.4375,709.96875 C 384.40299,708.38213 381.72003,709.5698 385.09375,710.75 C 386.63566,712.41943 388.60115,712.83649 390.46875,713.75 C 389.55488,716.31234 393.88356,713.02325 391.0625,712.1875 C 390.70025,710.22816 394.67106,712.17999 392.65625,708.8125 C 389.59085,706.96891 393.88258,706.28845 393.75,709.28125 C 395.62045,710.78063 394.37781,713.30466 393.875,715.0625 C 392.00573,716.83284 391.10976,716.58927 390.59375,718.78125 C 388.31381,719.65094 390.34292,722.22844 388.3125,722.96875 C 387.92659,725.24679 384.63334,723.2912 382.90625,723.5625 C 382.53124,719.6175 379.53255,725.27303 379.53125,722.3125 C 377.68521,718.28272 378.80109,725.71924 376.65625,723.03125 C 373.78941,722.26181 373.39116,725.34316 372.6875,721.625 C 370.95937,720.06174 369.13116,720.83933 367.21875,720.28125 C 364.17896,720.26396 365.85456,724.33287 368,723.625 C 367.15155,725.17212 371.62777,724.56532 372.28125,726.75 C 374.27753,728.04936 373.78363,730.62904 374.9375,732.375 C 376.86745,733.05243 379.19224,734.43005 381.15625,733.9375 C 382.62429,731.49303 385.46809,731.9669 387.875,731.46875 C 390.45179,729.49691 392.89269,732.70556 395.4375,732.53125 C 396.90817,731.1499 397.17979,728.50376 396.75,727.28125 C 398.32624,728.26356 402.11498,729.56802 402.53125,726.9375 C 399.80554,725.36141 401.45547,724.29816 404.03125,725.25 C 405.62683,726.01912 409.08853,721.85857 407.8125,724.75 C 407.23726,726.89173 403.92658,726.43814 403.78125,728.5 C 401.80633,729.58717 400.96101,731.27417 404.0625,729.8125 C 406.20265,726.98874 410.3929,730.29943 412.53125,727.8125 C 414.63064,726.10471 417.44122,726.66703 419.09375,728.625 C 422.32864,728.09229 424.02466,731.52114 427.09375,731.4375 C 429.28707,732.90906 431.2301,729.17622 433,731.125 C 436.88355,731.46396 433.76627,732.66697 431.53125,731.71875 C 429.98128,733.85076 427.75739,732.00771 425.625,732.375 C 423.52387,734.12576 421.71923,731.99594 419.40625,732.46875 C 417.41349,734.39137 420.87559,736.59872 419.4375,738.59375 C 418.37558,740.65794 420.73632,743.33454 422.4375,741.125 C 425.20489,740.23275 425.301,743.69896 424.125,745.21875 C 425.31456,748.02555 428.35746,745.23951 430.15625,746.875 C 433.04796,746.49818 430.76913,751.66714 429.5,749.0625 C 427.17473,747.62453 426.30896,750.28244 425.21875,751.53125 C 426.13346,748.89631 422.88176,749.33847 421.96875,747.3125 C 419.60427,748.54717 417.70175,750.37781 415.6875,752.21875 C 414.68545,753.70644 410.45246,753.12626 411.34375,755.1875 C 415.20265,755.14733 418.67282,759.19605 417.8125,763 C 416.14085,766.71815 420.62749,765.19791 419,762.5625 C 418.68164,759.31336 420.74801,763.16516 422.53125,763.28125 C 424.44361,764.27458 424.88064,766.40541 425.9375,768.03125 C 426.11546,771.82529 421.37356,771.30155 418.875,770.65625 C 417.25695,769.57172 416.12006,767.17422 413.71875,767.875 C 410.53198,769.05681 414.91163,770.4899 416.3125,770.9375 C 419.21124,772.98572 422.89645,773.39003 425.6875,775.5 C 429.32647,777.05535 426.38656,772.25941 428.96875,771.84375 C 432.54029,771.79091 437.41003,772.54311 438.59375,776.5625 C 440.73622,777.46397 442.10924,779.54612 444.4375,780 C 447.27619,780.02963 448.50522,777.26316 450.65625,776.1875 C 453.02896,776.40843 453.61429,773.81149 455.9375,773.8125 C 457.82801,772.88206 458.19051,770.21376 458.9375,768.40625 C 460.21925,767.05766 462.99932,765.61766 464.625,767 C 467.2227,766.60704 469.85458,766.80862 472.46875,766.75 C 475.14619,765.48504 478.266,764.22883 481.15625,765.625 C 482.37198,767.40753 485.51166,766.4975 485.9375,768.71875 C 487.49451,771.20669 490.12244,768.72288 491.46875,769.59375 C 495.61842,770.53094 498.73983,773.46894 501.46875,776.53125 C 503.49034,779.80821 506.12998,782.78875 510,783.78125 C 511.07345,784.94183 516.21041,784.45994 514.5625,785.6875 C 511.13627,785.68931 506.6699,786.30791 504.25,783.34375 C 503.18666,779.73606 498.95343,780.92904 496.5625,779 C 494.36273,778.21426 492.00884,776.54551 491.28125,774.4375 C 494.07064,774.39404 493.72913,773.93092 491.3125,772.3125 C 487.49942,769.84169 490.61408,773.64651 488.03125,773.5 C 486.05721,771.71122 483.42416,772.99655 481.15625,772.0625 C 479.72248,770.94999 477.97583,767.97638 476.28125,770.5 C 472.30705,773.52131 466.5915,771.47073 462.3125,773.625 C 459.24289,773.76937 460.32799,777.22398 459.875,779.25 C 458.09305,781.16653 459.99903,783.02826 461.03125,784.71875 C 461.83023,787.62367 461.56385,791.344 459.9375,793.96875 C 457.79152,795.05986 454.61138,793.60992 453.125,796.28125 C 451.37337,798.03611 449.17787,798.88142 453,799.21875 C 454.09968,801.6861 456.96539,799.44626 458.9375,800.5 C 461.26642,801.63441 463.71588,802.41691 466.40625,802.0625 C 469.42443,803.90544 473.38775,804.26709 475.65625,807.21875 C 479.11718,809.78208 481.69609,813.44749 483,817.53125 C 482.05878,819.26982 479.27211,819.23518 478.90625,821.625 C 477.35255,823.09738 477.44898,825.19185 476.625,827.09375 C 476.65809,829.36603 476.74213,832.21154 474.03125,832.90625 C 471.59648,833.13886 469.35585,834.27207 468.75,836.78125 C 467.07779,838.25099 469.42814,840.99579 466.21875,840.9375 C 462.78937,842.02137 464.82125,846.30442 464.21875,848.90625 C 463.13761,855.06821 468.48051,859.42339 473.09375,862.3125 C 478.04101,865.09017 482.78172,869.09085 484.53125,874.6875 C 484.5766,877.13328 486.42434,878.80398 488.90625,878.59375 C 493.60089,879.74989 492.44259,885.90315 496.125,888.25 C 499.12318,888.95046 499.02163,892.10339 500.09375,894.34375 C 500.83679,896.50507 500.86122,898.93002 503.875,898.3125 C 501.56741,900.38591 504.13076,903.08753 503.75,905.59375 C 504.10993,909.32704 505.12458,913.01163 505.9375,916.6875 C 506.83818,919.80676 510.05032,915.8682 508,914.46875 C 506.47009,912.83158 508.64095,908.34037 509.3125,912.09375 C 509.85325,913.92681 510.10689,916.22488 511.96875,917.25 C 515.92128,918.75876 518.59,922.22861 522.34375,924.03125 C 524.17186,925.52107 526.25998,925.44674 527.53125,923.78125 C 529.9866,924.82051 528.87838,927.26271 527.59375,928.65625 C 528.9195,930.85987 531.87028,929.17936 533.90625,929.4375 C 537.68183,930.09352 542.52128,928.58023 545.4375,931.71875 C 549.07357,934.18545 548.94172,938.77699 549.875,942.59375 C 549.63752,945.48106 553.45663,945.70887 555.09375,944.40625 C 556.32092,942.21497 558.7049,945.43599 560.4375,943.25 C 563.64167,941.73811 565.21545,945.83708 567.34375,947.40625 C 568.68902,950.13041 571.31317,948.94835 569.6875,946.21875 C 572.13548,948.34632 574.00546,951.41809 576.28125,953.8125 C 577.0321,954.99729 579.6965,957.98523 580.4375,956.125 C 579.24105,953.90376 579.99842,951.15148 581.3125,949.15625 C 583.08547,948.34944 584.77114,947.67205 586.59375,946.96875 C 588.54281,948.10744 590.74275,948.57771 593.09375,948.84375 C 593.71481,951.49498 593.6752,954.63149 595,957.125 C 595.06255,959.66331 592.8144,960.41107 590.8125,960.90625 C 589.66756,962.70442 587.87686,963.42884 586.375,964.84375 C 584.30762,965.32083 581.59279,967.85117 584.03125,969.65625 C 583.56782,972.23011 580.40695,973.83748 581,976.8125 C 581.98155,980.5081 586.01991,977.55283 588.40625,978.4375 C 588.33902,980.35815 589.07111,982.13677 591.46875,982.9375 C 594.61506,984.31654 589.60272,985.95892 591.59375,987.1875 C 593.93317,987.37204 595.24008,989.1256 595.46875,991.375 C 596.79878,993.32231 595.39639,996.97683 598.3125,997.5 C 601.16097,998.0212 601.69362,1001.1225 600.46875,1003.3438 C 601.9881,1005.5533 598.08854,1007.2673 596.53125,1006.125 C 594.89969,1003.8374 592.38578,1004.5918 594.25,1007.25 C 593.28414,1010.0642 595.98157,1010.3643 597.46875,1011.5938 C 597.90226,1014.1786 598.63777,1014.6522 596.5,1016.5625 C 597.62794,1018.3236 598.67141,1020.1911 598.8125,1022.3438 C 599.88286,1025.1562 596.62196,1026.8822 594.375,1025.4062 C 591.84069,1023.9246 593.71962,1028.1927 592.0625,1029 C 593.42831,1032.7468 588.09223,1028.0269 588.84375,1031.75 C 590.84708,1035.1288 589.35783,1039.8342 592.3125,1042.6562 C 593.76043,1046.6615 597.10239,1049.7159 600.53125,1052.125 C 603.67648,1054.2467 606.58363,1056.5667 609.4375,1058.9062 C 606.19054,1056.909 602.02712,1056.3798 599.1875,1053.5938 C 595.47889,1051.7532 592.3862,1048.7737 591.09375,1044.75 C 590.70898,1041.8819 587.96597,1043.0722 586.3125,1044 C 584.06301,1043.4558 581.52725,1043.3598 579.375,1044.2188 C 576.3885,1048.3423 578.99673,1053.9389 577.125,1058.5 C 576.21526,1060.0165 576.9321,1063.2399 579.15625,1061.875 C 580.40395,1059.3732 584.80518,1060.2501 585.53125,1062.6875 C 588.41944,1068.3423 596.43095,1067.3584 599.8125,1072.5938 C 601.3513,1074.9576 603.87822,1076.0317 606.4375,1076.8438 C 609.5298,1078.2055 609.26157,1081.7701 610.1875,1084.4375 C 612.33791,1085.2203 613.43116,1087.8873 615.90625,1087.625 C 618.66932,1086.6342 619.25884,1089.4126 620.40625,1090.8125 C 624.77762,1091.7525 626.60306,1095.9372 629.625,1098.6562 C 634.46626,1101.9731 636.66987,1107.6124 639.40625,1112.5625 C 640.64501,1117.2962 642.24215,1121.9373 643.59375,1126.5938 C 645.43221,1133.7804 646.34319,1141.0714 646.84375,1148.4688 C 647.79963,1153.8912 648.48962,1159.3233 648.8125,1164.8125 C 650.31778,1169.8013 651.43603,1175.45 655.625,1178.9375 C 659.24564,1183.4254 666.51643,1181.4067 669.9375,1185.9688 C 670.48095,1187.0578 672.27932,1190.1982 671.34375,1190.2812 C 668.40305,1186.6454 663.69914,1184.8877 659.09375,1185.5938 C 660.36804,1187.1236 662.22657,1188.0574 663.5625,1189.5 C 667.68177,1192.3653 664.66677,1197.5416 665.25,1201.5 C 665.32284,1204.2781 666.81287,1207.572 665.59375,1210.0312 C 664.44517,1208.2886 664.02209,1206.085 663.625,1204.0625 C 662.33586,1199.5337 665.30967,1194.2988 661.84375,1190.4375 C 656.96822,1186.8469 651.63262,1183.2237 648.78125,1177.6875 C 646.34084,1174.4316 644.75361,1170.7095 643.71875,1166.75 C 643.39759,1163.1134 642.09941,1159.6341 642,1156 C 641.23531,1152.6944 641.77366,1149.3737 641.28125,1146.0312 C 639.6904,1142.221 638.6192,1138.1926 637.8125,1134.1562 C 635.40626,1129.5474 633.7768,1124.1748 629.6875,1120.7188 C 627.5615,1118.0963 623.78754,1116.9732 622.46875,1113.6875 C 619.6995,1110.8305 618.10671,1106.5594 614.09375,1105.25 C 610.51023,1105.0592 607.68015,1102.8073 605.625,1100.0938 C 604.46452,1098.1394 602.49778,1097.0364 600.9375,1095.5 C 597.49448,1092.8372 602.75892,1088.4786 600.09375,1085.4375 C 596.77939,1085.0925 595.44624,1088.7765 594.25,1091.1875 C 593.17547,1094.8673 589.42945,1097.4353 589.59375,1101.4688 C 590.37951,1105.4533 588.31374,1109.2566 588.65625,1113.3125 C 587.6723,1119.2081 588.8702,1125.1288 588.40625,1131.0312 C 587.29212,1139.9763 587.04209,1149.012 584.8125,1157.7812 C 582.67025,1164.9049 582.37266,1172.3353 581.59375,1179.6875 C 581.4939,1189.213 579.75155,1198.5654 578.90625,1208.0312 C 578.20284,1216.9774 577.06811,1225.9069 576.09375,1234.8125 C 575.93546,1241.408 573.73782,1247.8629 574.53125,1254.4688 C 573.89112,1256.6198 574.59942,1260.6925 576.09375,1256.8438 C 575.48492,1253.1838 575.89444,1249.5219 577.375,1246.0938 C 578.21119,1243.176 580.10307,1241.0135 582.125,1238.9062 C 583.87029,1236.774 584.48505,1234.2414 585.09375,1231.625 C 587.2446,1230.1145 589.56125,1232.9606 591.375,1234.0938 C 593.6956,1236.8268 595.61606,1239.9129 598.78125,1241.7812 C 601.91889,1243.0111 597.82264,1245.3449 600.5,1246.125 C 603.46782,1246.8006 603.52793,1250.8206 601,1252.0625 C 598.65896,1252.5111 596.33776,1253.8297 593.875,1253.3125 C 591.82635,1254.3691 590.03175,1253.1906 588,1252.75 C 587.58842,1250.506 584.64438,1250.325 583.125,1251.9062 C 580.90259,1255.5843 581.15326,1260.2416 579.46875,1264.1562 C 578.4476,1267.4326 574.47271,1269.7354 574.90625,1273.3438 C 578.06922,1279.5443 575.69121,1286.525 575.0625,1293.0312 C 575.25364,1297.8197 573.26063,1302.2864 572.78125,1306.9688 C 572.15434,1311.8749 571.83774,1316.7778 571.59375,1321.7188 C 569.39207,1331.8743 567.77556,1342.1899 566.28125,1352.5 C 564.41046,1360.2088 563.18077,1368.0904 561.71875,1375.9062 C 560.85456,1381.932 560.65196,1388.1216 558.78125,1394 C 557.05732,1398.0618 556.85086,1402.4336 555.46875,1406.625 C 555.63403,1409.9707 555.07666,1413.2303 553.84375,1416.3125 C 552.74562,1426.925 549.83425,1437.2081 547.84375,1447.6875 C 545.95417,1452.2767 545.94933,1458.1321 541.625,1461.2812 C 540.0645,1463.6241 537.51908,1464.899 535.8125,1466.9688 C 534.75632,1474.3904 527.90922,1479.3115 521.03125,1480.8438 C 517.79594,1482.6075 513.42036,1481.3695 510.03125,1483.4688 C 508.92026,1490.0809 512.77984,1489.9885 514.375,1490.25 C 517.0591,1492.4341 514.36487,1496.5672 517.59375,1498.125 C 519.67504,1495.4447 522.24438,1496.892 525.09375,1495.625 C 527.27302,1496.0757 532.14951,1497.474 529.21875,1500.5312 C 530.75754,1502.8112 529.60556,1506.8854 533.96875,1506.4062 C 537.97152,1507.2202 538.38744,1502.3033 538.59375,1500.0625 C 540.94224,1499.0557 543.95639,1499.6679 546.3125,1500.4688 C 548.55449,1502.1376 551.46762,1504.0908 554.34375,1503.7188 C 557.24141,1501.6864 560.40769,1504.0497 561.125,1507.0938 C 560.94866,1510.47 561.02117,1514.2195 560.90625,1517.3125 C 558.29316,1519.1628 559.89859,1522.9217 557.46875,1525.0625 C 558.39425,1527.9993 555.58825,1530.5038 553.9375,1532.375 C 552.00206,1534.0083 547.87614,1535.5856 550.8125,1538.6875 C 552.68105,1540.581 552.40807,1545.3077 556.1875,1544.6562 C 558.7817,1545.953 562.01131,1546.5315 564.71875,1546.8125 C 567.94114,1545.3188 564.97508,1541.1817 566.65625,1538.7812 C 565.5012,1535.8828 567.37888,1532.2709 570.34375,1532.1562 C 572.9248,1530.2626 577.71888,1530.8933 573.125,1533.4688 C 571.30594,1535.8184 569.93042,1539.8864 573.71875,1540.9062 C 575.9179,1543.9633 578.16257,1544.5618 581,1542.4375 C 584.22458,1543.5479 585.03408,1545.6277 587.8125,1546.8125 C 591.71935,1544.8659 591.87288,1551.3234 593.71875,1550.4375 C 596.37504,1547.6309 597.74109,1550.8964 600.4375,1551.8438 C 602.25184,1555.3247 606.79975,1552.1309 609.375,1554.9375 C 609.86398,1558.0294 613.5639,1559.3429 615.96875,1560.8125 C 618.35372,1563.3103 621.15179,1559.317 623.40625,1561.3125 C 626.28082,1563.0847 629.64508,1561.6608 632.71875,1563 C 636.22919,1562.5994 638.11562,1558.8307 641.875,1559.5 C 642.95827,1562.7369 646.23982,1565.638 644.34375,1569.3125 C 642.20082,1571.2547 645.79709,1575.471 648.46875,1575.125 C 652.26649,1573.0626 652.25138,1578.1048 654.84375,1579.125 C 658.02915,1579.8101 658.83534,1583.4542 660.8125,1585.4062 C 660.43635,1589.5225 663.05398,1588.9017 665.65625,1590.4688 C 663.20794,1594.4684 668.26055,1594.051 669.375,1591.6562 C 671.14553,1592.3897 670.02852,1587.9576 672.625,1586.75 C 674.70941,1584.2015 676.81189,1589.8768 679.65625,1589.625 C 681.37515,1591.3486 684.98519,1588.2576 687.40625,1590.4062 C 690.36673,1588.5799 691.3419,1585.0076 694.125,1583.4688 C 695.55636,1589.0497 697.13113,1579.1278 697.90625,1581.9688 C 700.34612,1583.4207 702.35952,1586.4813 704.84375,1586.875 C 708.1943,1585.9238 708.00514,1590.9519 711.4375,1591.4375 C 714.27432,1595.604 716.16576,1589.0528 718.5,1590.3438 C 716.91463,1593.2661 717.41395,1596.1523 720.65625,1597.7188 C 722.51797,1599.6792 722.41368,1603.4585 724.5,1604.7812 C 728.23364,1603.6659 729.03063,1606.8078 729.375,1609.5625 C 732.23879,1609.3273 734.75765,1611.7825 737.71875,1610.9062 C 737.85753,1606.3746 741.41185,1609.387 744.1875,1608.7188 C 746.56729,1606.1526 748.86635,1605.6024 751.71875,1606.4688 C 754.28037,1605.165 757.4901,1604.3153 759.125,1602.2812 C 762.22704,1602.1472 764.41259,1604.9558 767.125,1605.625 C 771.88888,1604.2406 770.18001,1609.0965 772.0625,1611.2812 C 773.72835,1614.872 777.72308,1612.7084 778.40625,1609.7188 C 776.90102,1607.1204 782.40758,1605.8326 784.6875,1605.2188 C 786.26984,1607.14 787.43696,1608.1236 788.28125,1610.2812 C 790.43758,1610.1227 793.74442,1611.6472 796.375,1610.125 C 798.09023,1606.8958 801.44099,1612.8748 803.4375,1609.0625 C 805.74186,1608.257 808.80111,1610.0477 811.53125,1610.0312 C 813.53262,1606.9244 814.67952,1609.8046 817.96875,1610.4062 C 820.54679,1608.8395 823.62265,1612.8039 823.4375,1607.875 C 823.88879,1604.5374 822.78773,1600.9782 820.09375,1598.9688 C 817.69954,1598.5073 823.6745,1595.5703 819.71875,1593.75 C 821.86027,1592.1412 822.39595,1589.7156 822.0625,1586.4375 C 820.34914,1583.1715 824.48885,1581.3522 826.6875,1580.4062 C 830.26112,1577.8597 831.31509,1584.3011 834.84375,1583.3438 C 837.25003,1584.2392 840.74963,1581.554 842.09375,1584.8125 C 845.18168,1585.2049 847.0889,1586.4899 849.90625,1588.1875 C 852.82623,1588.0718 854.41374,1594.103 857.09375,1591.75 C 859.3219,1587.9419 861.79566,1592.6963 863.875,1593.1875 C 866.98275,1592.0754 868.93622,1593.9943 871.90625,1594.5312 C 875.2667,1592.1438 877.07175,1595.5665 879.65625,1597.0938 C 883.00552,1598.8667 880.23062,1602.7179 883.0625,1604.8438 C 885.19072,1608.0032 887.53529,1607.0559 890.0625,1605.6562 C 892.88004,1604.8735 894.51569,1604.5804 897.59375,1606.1875 C 900.05572,1605.612 903.70151,1607.0301 905.65625,1605.5938 C 910.80052,1604.9948 908.01263,1608.7816 910.1875,1610.625 C 914.02479,1609.772 913.71915,1613.9528 915.15625,1616.125 C 918.32107,1618.4245 916.59038,1623.173 919.15625,1625.5938 C 919.67089,1628.5971 925.86854,1627.5196 924.375,1624.1562 C 922.42931,1622.5976 925.58774,1615.9096 927.4375,1619.0938 C 930.45687,1620.672 934.37608,1614.953 937.34375,1618.8125 C 937.80762,1622.2653 941.61709,1622.1936 944.03125,1623.125 C 946.79765,1622.0838 948.82165,1624.7496 951.8125,1623 C 953.77155,1624.1617 959.22073,1624.0832 957.1875,1627 C 954.64884,1630.0243 960.30832,1630.6719 962.40625,1630.9375 C 965.87709,1634.2693 958.73062,1632.1419 958.125,1635.0312 C 957.44443,1637.3653 955.94412,1640.1787 955.8125,1643 C 955.85133,1645.0267 956.51928,1648.2937 959.3125,1647.0312 C 961.96584,1648.7457 965.05578,1647.7385 968.09375,1648.3438 C 971.07803,1648.9498 972.09329,1652.6978 975.1875,1653.25 C 976.62337,1656.1752 979.88665,1656.2402 982.15625,1655.3125 C 984.23744,1655.1237 985.08802,1658.6471 985.78125,1661.125 C 986.19013,1663.9811 986.45314,1667.5276 988.53125,1669.8438 C 990.75378,1671.399 993.06823,1674.6989 995.875,1672.3125 C 997.89977,1673.0597 1001.6474,1671.4829 1002.8438,1670.3125 C 1002.9959,1667.7679 1007.4625,1667.2664 1007.2188,1663.4375 C 1008.3322,1660.8797 1012.1017,1659.7817 1014.875,1660.5 C 1017.9702,1662.4646 1021.2036,1659.1902 1024.25,1658 C 1026.7936,1658.655 1029.3608,1660.2584 1031.9062,1660.5312 C 1034.9616,1661.3909 1035.8706,1663.0638 1038.375,1664.5938 C 1041.0447,1665.1288 1043.4057,1667.0555 1046.4375,1666.5312 C 1046.1631,1669.1318 1049.6666,1671.4722 1051.125,1673.5625 C 1052.6145,1675.9252 1056.1027,1675.1297 1058.2812,1677.0625 C 1062.1046,1678.2829 1060.2269,1671.2255 1064.4375,1672.3125 C 1066.4662,1674.2392 1069.641,1674.7698 1072.6562,1674.9375 C 1075.0973,1676.0719 1080.3403,1676.4448 1076.5938,1672.7812 C 1075.3314,1670.0784 1073.1047,1667.02 1076.8125,1666.8438 C 1076.4567,1663.1238 1081.3214,1664.8262 1082.625,1661.7812 C 1085.0858,1660.4273 1088.0958,1661.8419 1090.5938,1662.9688 C 1093.473,1661.5505 1094.6594,1658.998 1097.5312,1657.9062 C 1098.0311,1654.8578 1104.2164,1653.6317 1103.0625,1654.2188 C 1105.6873,1655.0888 1109.4848,1656.3159 1109.6875,1652.4688 C 1111.878,1647.3655 1114.3301,1654.4177 1116.4375,1652.5 C 1118.4738,1649.7346 1120.8598,1653.5575 1123.5625,1651.4688 C 1124.2687,1653.8492 1126.0253,1656.8812 1128.5312,1658.0938 C 1130.3887,1662.0619 1133.3773,1657.4258 1136.125,1658.5625 C 1137.6061,1659.7253 1139.1644,1658.6144 1140.9062,1658.4375 C 1140.9703,1657.9309 1140.986,1657.5829 1140.9062,1657.0625 C 1138.8378,1653.5976 1137.7733,1649.3779 1134.25,1647.0312 C 1134.3434,1644.7174 1132.952,1642.6145 1130.7188,1641.875 C 1126.7286,1641.1215 1126.0651,1636.7076 1125.5938,1633.375 C 1125.7025,1629.3729 1124.2354,1625.5839 1124.5625,1621.5938 C 1124.7176,1620.3268 1124.1563,1615.7006 1122.4688,1617.75 C 1120.2523,1617.5751 1118.8704,1613.9907 1120.3125,1612.1562 C 1122.8721,1610.1539 1122.4573,1614.7228 1123.9375,1615.2812 C 1125.4897,1612.7209 1124.4041,1609.3974 1124.9688,1606.5312 C 1124.8041,1602.0431 1126.6592,1596.8302 1124.4062,1592.5312 C 1122.46,1590.113 1119.4834,1591.006 1116.875,1590.4688 C 1114.0829,1589.9094 1116.1093,1586.3041 1113.8438,1585.4375 C 1113.3856,1583.0493 1116.4725,1581.8321 1117.9062,1580.2812 C 1121.0252,1578.8102 1119.6408,1574.4882 1120.8438,1572 C 1122.5218,1572.854 1124.4252,1573.0884 1126.2812,1573.5 C 1126.8213,1571.8958 1126.7558,1569.1576 1125.1562,1567.7812 C 1121.9213,1567.3311 1119.4113,1564.1337 1120.6562,1560.9062 C 1120.3296,1558.7504 1124.6898,1556.8229 1124.0938,1559.6562 C 1122.8029,1561.1373 1120.8038,1565.1196 1123.9062,1565.5625 C 1127.2784,1562.8183 1127.4359,1557.8004 1127.7812,1553.75 C 1127.3754,1551.0609 1129.9331,1549.7616 1130.8125,1547.6562 C 1131.5559,1545.4902 1131.6529,1542.5901 1128.7188,1544.0312 C 1125.434,1543.3393 1126.2083,1539.551 1126.3125,1537.0938 C 1124.8195,1535.2071 1126.2683,1533.0027 1128.5312,1533.1562 C 1130.868,1532.3463 1133.1777,1535.1216 1130.125,1536.0312 C 1127.5232,1536.3156 1128.3867,1539.1168 1130.2188,1539.875 C 1130.2785,1543.0254 1133.5993,1541.3281 1133.5938,1539 C 1133.6913,1536.6211 1135.9192,1536.3872 1136.4688,1533.8438 C 1139.3032,1530.0575 1141.7277,1525.9954 1143.9688,1521.8125 C 1145.511,1520.4112 1145.6761,1517.9262 1147.25,1516.75 C 1149.9591,1517.8225 1150.5579,1514.5173 1152.2188,1513.2188 C 1156.0067,1511.6962 1159.1296,1509.0089 1161.8438,1506.0625 C 1164.0609,1502.8233 1168.1885,1502.7429 1171.5625,1501.875 C 1173.5125,1502.4186 1175.5177,1503.2185 1177.75,1503.3438 C 1180.6507,1504.7668 1180.8377,1500.9218 1181.9688,1499.25 C 1182.9131,1496.1757 1185.9269,1494.6672 1187.2812,1491.9375 C 1190.0136,1490.956 1190.2868,1487.8803 1192.1562,1486 C 1195.1548,1483.8173 1198.6107,1481.7985 1202.4688,1481.6875 C 1204.4896,1480.2812 1205.0152,1477.2645 1207.9062,1477.125 C 1209.8586,1475.663 1211.8834,1474.2814 1213.875,1472.8438 C 1217.179,1470.9968 1219.0574,1467.66 1221.9688,1465.4062 C 1224.3063,1462.1376 1227.8796,1460.2988 1230.5938,1457.4688 C 1232.168,1456.8912 1234.0446,1452.9035 1231.1562,1454.6875 C 1229.4697,1456.9564 1225.762,1456.9527 1225.0312,1459.9375 C 1223.3265,1462.6066 1219.9292,1463.7524 1218.5312,1466.7188 C 1214.0196,1470.2845 1209.5911,1475.8676 1203.2188,1475.3438 C 1204.0833,1473.1265 1206.7111,1473.6902 1208.375,1472.7188 C 1210.8084,1470.2896 1216.0266,1469.7723 1215.9688,1465.5 C 1216.6886,1463.7733 1216.7198,1460.516 1219.0625,1460.3125 C 1221.4122,1460.9479 1223.2956,1459.477 1224.25,1457.4688 C 1225.7434,1456.011 1225.4737,1452.9384 1228.3125,1453.5625 C 1229.6882,1451.8285 1231.9391,1452.2577 1233.7812,1451.3438 C 1235.8562,1451.2551 1236.9369,1449.7703 1238.5312,1448.8438 C 1240.4828,1448.227 1241.6356,1446.061 1244.0312,1447 C 1245.5903,1445.3518 1247.2154,1446.0958 1249.1875,1445.625 C 1250.3692,1444.1819 1254.1397,1443.6207 1252,1446.25 C 1252.5085,1448.6332 1249.9064,1449.6918 1247.9375,1449.25 C 1245.1786,1450.3753 1241.9347,1450.2597 1239.125,1451.5 C 1238.0753,1451.5924 1235.6321,1452.8065 1234.9688,1453.0938 C 1239.9013,1452.5989 1244.9643,1450.6175 1250.0312,1451.5625 C 1253.9177,1451.7039 1257.2872,1454.0623 1258.875,1457.5938 C 1259.1311,1461.2665 1258.4561,1466.166 1262.5312,1468.0312 C 1265.3736,1470.1467 1268.9086,1470.3085 1272.2812,1470.25 C 1278.0781,1470.1308 1283.7742,1471.1525 1289.2812,1472.9688 C 1291.1826,1472.3273 1293.4331,1473.4662 1295.3125,1472.3438 C 1299.8781,1471.2713 1305.0671,1470.7991 1309.5,1472.8125 C 1312.2966,1473.8302 1317.1462,1475.4706 1316.125,1479.2188 C 1315.6316,1481.9356 1312.2806,1483.6166 1312.7812,1486.4688 C 1314.8126,1490.6925 1319.9673,1489.9271 1323.8438,1490.25 C 1329.8704,1490.2736 1335.8913,1490.5041 1341.9062,1490.9375 C 1345.6193,1491.7438 1344.7154,1486.1682 1342.125,1485.4062 C 1338.3049,1482.7309 1332.7311,1480.7053 1332.3125,1475.3125 C 1332.5784,1471.8307 1333.9024,1468.4621 1333,1464.9375 C 1333.9539,1459.4951 1329.5163,1455.3133 1328.4688,1450.3438 C 1330.7722,1451.1227 1331.5969,1453.9563 1332.8125,1455.875 C 1336.6975,1461.3024 1335.0127,1468.1479 1334.0938,1474.2188 C 1333.0614,1478.0666 1337.0227,1480.1132 1339.625,1481.9375 C 1342.9038,1483.3292 1345.2652,1486.4204 1348.4688,1487.5312 C 1351.1754,1489.4704 1350.9471,1486.1134 1350.125,1484.4688 C 1347.4599,1484.4351 1346.5274,1481.7409 1348.7812,1480.125 C 1350.4726,1479.0258 1351.7872,1478.3147 1353.875,1478.25 C 1355.2562,1476.6905 1357.3332,1475.7031 1359.3125,1477.125 C 1360.4423,1479.2743 1363.5871,1476.7991 1363.75,1479.4688 C 1364.0026,1482.6088 1366.9828,1479.7485 1368.4688,1480.125 C 1370.5139,1480.1559 1372.528,1478.8947 1374.125,1477.7188 C 1375.3053,1475.4651 1375.0634,1472.1704 1374.125,1469.8125 C 1373.4069,1467.0949 1370.0107,1468.6919 1368.9375,1466.5938 C 1369.5725,1464.4008 1367.0968,1462.7452 1368.5938,1460.7188 C 1370.9371,1459.3419 1368.6522,1456.5551 1369.875,1454.625 C 1371.9085,1453.2673 1371.8969,1457.403 1373.8125,1457.75 C 1375.7647,1457.4654 1377.4632,1458.2306 1379.5625,1458.0938 C 1382.412,1457.7586 1383.3151,1460.3674 1381.125,1461.9375 C 1381.3498,1465.3006 1385.1801,1465.95 1386.75,1468.5312 C 1389.9977,1469.393 1391.8978,1464.7036 1395.1875,1465 C 1396.7789,1466.4975 1395.5792,1469.3111 1396.0312,1471.125 C 1393.8678,1472.2228 1391.6349,1473.7484 1391.0625,1476.2812 C 1389.2891,1477.667 1387.0104,1478.2313 1385.4375,1479.9062 C 1382.9572,1478.7648 1380.437,1480.2967 1377.9062,1479.75 C 1375.3567,1478.7761 1373.0702,1480.1829 1371.1562,1481.625 C 1368.1438,1482.2648 1367.2593,1485.7537 1368.6875,1488.25 C 1370.6385,1489.3489 1369.8949,1492.6324 1372.6875,1492.8125 C 1374.4796,1494.25 1376.9766,1493.3001 1379.0312,1494.4062 C 1380.8324,1493.1892 1382.9695,1493.7974 1384.875,1493.9375 C 1386.9353,1493.5936 1388.7765,1495.2261 1390.5,1493.25 C 1393.1999,1494.7712 1396.369,1493.9209 1398.9688,1492.5938 C 1400.6544,1491.123 1402.6328,1490.3762 1404.6875,1489.5938 C 1408.3616,1487.3861 1411.4155,1491.7705 1412.5938,1494.75 C 1412.6535,1496.7674 1413.084,1499.1893 1412.1562,1500.9688 C 1409.7167,1502.8013 1413.195,1504.0685 1414.125,1505.4375 C 1414.7116,1508.7138 1410.7426,1510.4069 1411.2812,1513.75 C 1413.0692,1516.7819 1417.1311,1515.7995 1420.0625,1516.375 C 1421.5171,1514.0397 1424.3087,1518.6236 1425.3125,1515.625 C 1427.5709,1516.3566 1429.5167,1518.6084 1432.0938,1517.875 C 1433.3464,1516.9112 1435.5289,1514.2121 1436.8125,1516.75 C 1436.8191,1519.7552 1439.6825,1521.1713 1441.9375,1522.4688 C 1444.2436,1524.7801 1444.8851,1522.1579 1446.3125,1520.8438 C 1448.6087,1521.0704 1451.0809,1520.7402 1453.4062,1521.3125 C 1456.255,1521.8047 1454.7546,1524.5081 1454.5625,1526.1562 C 1455.87,1527.5693 1458.296,1526.8124 1459.1562,1529.2188 C 1460.959,1531.5904 1464.2419,1527.621 1465.5625,1530.1562 C 1464.3521,1532.9729 1466.447,1533.8077 1468.9375,1533.4062 C 1472.0966,1534.7091 1468.5811,1535.9636 1466.9688,1536.25 C 1464.6391,1536.6086 1464.0461,1541.5808 1466.9062,1540.75 C 1470.1702,1539.9413 1470.2973,1544.4314 1472.9062,1545.0625 C 1475.1702,1545.7911 1478.0833,1545.8542 1477.75,1542.625 C 1478.995,1541.5253 1480.2753,1538.6696 1482.2812,1540.2812 C 1484.418,1542.2846 1487.1316,1538.776 1483.4688,1538.9375 C 1481.3524,1538.4084 1482.76,1534.6009 1479.5938,1535.3125 C 1476.9796,1534.2537 1481.1494,1532.7952 1482.4062,1532.7188 C 1483.3006,1531.1953 1487.5673,1531.2608 1485.8438,1533.5 C 1484.3133,1536.8337 1487.7055,1533.8685 1489.1875,1534.75 C 1491.3381,1536.8718 1494.1626,1533.8037 1496.375,1535.125 C 1496.9442,1538.3542 1500.3943,1538.3482 1502.8438,1536.8438 C 1505.399,1536.6296 1509.7018,1537.4443 1509.375,1540.875 C 1510.1631,1543.4176 1508.2216,1544.8606 1505.8438,1544.4062 C 1502.6834,1543.6788 1503.8536,1547.6322 1506.4375,1546.4375 C 1508.4103,1546.2473 1510.5463,1545.5788 1512.5312,1546.3125 C 1514.0333,1548.0626 1518.3202,1545.2707 1515.0312,1544.5625 C 1511.6979,1544.5804 1514.7182,1540.9489 1513.7812,1539.0625 C 1513.2719,1535.526 1516.0473,1531.0974 1520.0312,1532.5 C 1522.628,1533.7758 1524.7277,1530.4851 1527.1562,1531.4062 C 1529.0998,1533.0763 1531.722,1532.8712 1533.8125,1534.1562 C 1535.0978,1535.3737 1533.774,1538.7465 1536.625,1538.5 C 1538.1106,1538.4686 1541.6252,1540.285 1540.5625,1536.9062 C 1539.0836,1535.2132 1540.0786,1533.0891 1539.375,1531.1562 C 1539.4429,1528.3582 1542.8135,1528.8196 1543.8125,1526.6562 C 1545.5412,1525.5721 1548.164,1527.9806 1548.9688,1525.0312 C 1551.2069,1524.9298 1553.5299,1525.3632 1555.8125,1524.9062 C 1557.6597,1524.5676 1559.7998,1523.2828 1560.1875,1521.4375 C 1560.9749,1519.7279 1563.5248,1519.5213 1565.0625,1519.125 C 1567.3412,1519.2544 1570.3433,1520.0781 1569.1562,1523.0312 C 1570.4273,1525.3442 1571.7888,1524.8964 1573.0625,1523.2812 C 1576.1369,1523.7849 1572.9976,1519.7132 1575.2812,1518.625 C 1576.2776,1516.5488 1579.679,1517.7931 1580.1875,1515.8125 C 1579.051,1514.359 1575.8475,1513.4123 1578.1562,1511.0625 C 1577.9284,1508.0913 1583.0257,1508.3646 1581.9062,1505.0625 C 1580.7994,1502.4991 1578.1132,1504.0005 1576.2188,1504.0312 C 1573.5215,1502.4187 1570.9664,1505.7885 1568.0938,1504.3438 C 1566.7026,1502.418 1569.6209,1501.1809 1571.3125,1501.1562 C 1573.1088,1500.064 1574.2068,1498.4198 1576.6875,1499.1875 C 1580.2773,1498.4905 1576.6276,1494.2087 1579.125,1492.75 C 1580.7522,1490.7144 1584.6963,1491.6751 1584.875,1488.5312 C 1585.146,1486.2477 1586.3112,1484.1974 1586.375,1481.8125 C 1586.3857,1479.5128 1587.2879,1474.8791 1590.5625,1476.5938 C 1591.8248,1478.0561 1593.19,1479.3787 1595.3125,1478.5 C 1597.3166,1477.4622 1600.1849,1479.392 1601.625,1477.625 C 1601.5241,1473.9714 1605.9026,1478.5817 1606.5625,1475.5625 C 1605.8281,1472.614 1609.7897,1473.5513 1610.3125,1471.2188 C 1610.469,1468.9663 1611.597,1467.1878 1612.75,1465.375 C 1613.5489,1463.6337 1616.0338,1462.2266 1613.7188,1460.375 C 1613.519,1457.995 1616.0186,1455.9833 1618.2812,1455.4375 C 1619.9467,1454.1409 1621.8584,1453.0188 1623.8438,1454.3438 C 1627.1383,1454.0352 1629.0019,1450.3599 1632.5312,1450.6875 C 1635.5126,1449.0711 1634.3717,1454.8566 1636.9062,1452.8438 C 1638.3061,1447.8359 1635.4992,1442.1659 1638.375,1437.4375 C 1639.0928,1434.4679 1642.0859,1433.572 1644.8125,1433.6875 C 1648.8164,1434.1651 1648.0505,1428.5312 1651.25,1427.5625 C 1653.2403,1426.7019 1655.3695,1427.9833 1657.4375,1426.9688 C 1658.9049,1427.3252 1662.5488,1424.6566 1661.2812,1428 C 1659.7014,1431.2098 1664.8746,1429.3163 1663.8438,1427.1875 C 1661.7812,1425.6983 1663.45,1423.6705 1665.4688,1423.4688 C 1666.7446,1423.977 1667.6681,1423.9781 1668.5,1423.6875 C 1668.9159,1423.5423 1669.4766,1423.1891 1669.875,1422.9062 C 1668.9224,1420.3652 1669.1124,1418.225 1671.2812,1416.5938 C 1672.4914,1414.3814 1675.2368,1413.6405 1675.75,1416.7812 L 1675.875,1417.2812 C 1678.315,1417.7832 1681.6366,1417.9515 1680.75,1414.875 C 1680.3336,1412.6248 1683.0784,1412.0599 1684.4688,1411.125 C 1685.7314,1411.0967 1686.6567,1411.849 1687.4688,1412.4062 C 1687.139,1409.2663 1684.8927,1407.1312 1684.5625,1403.9062 C 1683.4512,1400.3075 1680.5571,1394.9308 1685.0625,1392.5 C 1687.0661,1390.8931 1690.5436,1389.9836 1690.0625,1386.75 C 1691.4898,1384.4228 1690.4828,1379.9756 1694.2812,1379.8125 C 1697.5825,1379.527 1697.9334,1375.3486 1700.7812,1374.1562 C 1702.7623,1372.6086 1704.9772,1370.8122 1703.8438,1367.9688 C 1702.7473,1364.4613 1707.0978,1364.2206 1708.1875,1361.9688 C 1709.6193,1359.405 1711.6015,1355.0644 1708.0625,1353.1875 C 1705.1217,1351.3276 1701.8358,1347.3033 1704.6562,1344.0625 C 1702.2136,1342.1341 1707.7014,1339.0914 1703.6562,1338.7188 C 1701.031,1336.9253 1699.6589,1338.7343 1698.0625,1339.875 C 1698.0843,1342.7598 1696.529,1343.3444 1693.875,1342.5938 C 1691.2962,1341.5238 1690.3308,1344.2589 1688.25,1344.3125 C 1683.7418,1343.7075 1680.4149,1349.0487 1675.7812,1347.375 C 1674.4497,1349.3687 1672.2801,1350.897 1670.0312,1348.875 C 1667.8573,1347.0439 1663.7218,1350.8512 1663.125,1346.75 C 1662.5111,1341.9904 1657.057,1345.149 1654.1562,1343.8125 C 1651.9309,1342.2105 1650.6532,1337.5879 1647.375,1339.2188 C 1644.1613,1338.3784 1643.8433,1333.8615 1640.4688,1333.2188 C 1639.0244,1329.9557 1636.017,1335.959 1634.9688,1332 C 1633.3874,1329.958 1630.3524,1329.8557 1628.5938,1327.8438 C 1626.0443,1325.497 1623.1245,1329.8766 1620.875,1327.5625 C 1617.1472,1326.6893 1618.5316,1321.7293 1616.5,1319.25 C 1615.1742,1317.1443 1610.8963,1317.0494 1612.125,1313.6875 C 1612.1056,1310.4357 1607.439,1309.5601 1607.625,1306.1875 C 1605.2167,1305.2974 1604.1781,1303.8237 1605.4375,1301.4688 C 1607.094,1299.3262 1605.5146,1297.1074 1605.9375,1294.9062 C 1607.2337,1292.6598 1610.7774,1293.4816 1612.0312,1291.7812 C 1610.5768,1289.845 1607.7547,1288.9449 1607.5625,1286.3438 C 1603.8963,1284.7089 1601.982,1280.5412 1601.6562,1276.75 C 1601.3037,1274.4583 1601.9388,1272.4086 1604.0625,1271.25 C 1604.5617,1267.9941 1609.1148,1269.5428 1609.4375,1266.3125 C 1611.5756,1265.1928 1612.2678,1263.488 1612.2812,1260.9062 C 1613.0261,1258.3716 1614.7911,1257.9363 1615.3125,1256.5938 C 1613.2851,1254.0795 1613.5276,1250.7856 1615.8125,1248.5625 C 1617.774,1244.6274 1622.5379,1244.1318 1626.0938,1246.125 C 1629.0215,1247.7502 1629.9093,1245.8882 1628.4688,1243.375 C 1629.277,1238.9353 1622.682,1238.5675 1623.3438,1234.0625 C 1624.0045,1231.0993 1623.9623,1227.4785 1621.375,1225.4688 C 1621.8486,1223.7049 1626.2409,1221.3123 1623.0312,1220.0938 C 1621.4001,1218.9129 1621.4207,1215.9825 1618.5938,1216 C 1615.9831,1214.4517 1612.2689,1211.8746 1609.8438,1215.0938 C 1606.8075,1216.1941 1603.3073,1214.6033 1600.625,1213.2188 C 1598.1993,1210.7942 1595.7501,1208.3661 1592.3438,1207.4688 C 1591.1691,1205.2777 1587.971,1205.5455 1587.7188,1202.9375 C 1589.466,1200.6453 1586.4141,1199.0784 1588.1562,1197.4062 C 1590.1806,1194.854 1588.057,1191.5222 1587.2812,1189.0625 C 1588.6409,1187.1104 1588.2186,1184.8629 1585.7812,1184.1875 C 1583.0057,1182.7147 1578.1691,1185.5663 1576.9688,1181.4062 C 1576.166,1178.7706 1578.4299,1174.701 1574.7188,1173.6562 C 1574.5548,1171.6179 1571.4852,1170.1904 1572.6875,1168.5 C 1574.0433,1165.5999 1578.3719,1166.8238 1579.2188,1163.5 C 1581.4254,1162.0376 1583.7396,1162.2478 1586.1562,1162.7812 C 1588.2292,1161.656 1589.6657,1157.1758 1592.4375,1159.7812 C 1594.5328,1161.6708 1598.2608,1160.3698 1599.1562,1163.7812 C 1600.7982,1166.0042 1603.4396,1163.9521 1605.5312,1163.9062 C 1609.7247,1162.361 1603.6247,1159.8533 1606.4062,1158.2188 C 1608.5602,1158.2207 1610.5955,1157.6048 1612.5938,1157 C 1613.6785,1154.8718 1614.7059,1153.6028 1615.1875,1151.4375 C 1615.691,1149.8926 1619.3418,1149.8162 1621.0938,1148.8125 C 1623.6794,1149.7151 1625.2769,1146.5799 1627.4375,1146.8125 C 1628.3167,1149.8538 1630.1838,1149.8396 1631.1562,1146.7812 C 1632.0729,1144.9606 1633.5087,1141.4093 1636.0625,1143.1562 C 1638.4891,1138.4936 1634.8331,1133.8484 1634.1562,1129.2812 C 1634.8613,1126.7734 1638.353,1128.6055 1637.0938,1124.75 C 1639.4714,1123.1971 1640.685,1121.5421 1640.9688,1118.6875 C 1641.8555,1116.9942 1645.1577,1113.1995 1641.375,1113.0625 C 1639.4479,1112.2742 1638.5126,1110.1225 1636,1110.0625 C 1632.5834,1108.3592 1633.762,1103.19 1630.4062,1101.1562 C 1628.8211,1100.0675 1625.234,1101.6137 1626.0312,1098.3125 C 1626.0851,1096.2648 1621.9936,1097.0546 1620.6562,1095.375 C 1618.5001,1092.1718 1617.7179,1087.8183 1618.6562,1084.0312 C 1617.2909,1082.0749 1615.5851,1080.3303 1616.9062,1077.6875 C 1616.372,1075.458 1621.196,1072.6905 1617.625,1071.5 C 1616.0639,1069.3277 1614.2863,1068.0174 1611.5625,1069.2188 C 1609.4116,1069.6373 1608.0548,1066.7407 1608.2188,1064.9062 C 1605.1361,1063.9669 1600.8607,1064.6741 1599.5,1060.8438 C 1598.2426,1058.5606 1595.2185,1057.1724 1595.8438,1054.0312 C 1595.2915,1049.389 1594.075,1044.6638 1595.5938,1040 C 1595.2196,1036.7137 1599.0473,1034.3601 1601.5,1036.875 C 1604.5677,1038.3292 1601.2945,1031.7278 1604.9688,1033.3125 C 1609.3528,1035.9845 1613.9452,1032.0509 1617.8125,1030.1875 C 1620.5454,1027.7852 1620.8313,1023.8511 1622.4062,1020.9062 C 1626.2684,1019.505 1623.4831,1018.2587 1623.9688,1015.2812 C 1625.8265,1012.2185 1618.9596,1012.5416 1621.7188,1009.9375 C 1622.3211,1006.5074 1618.0948,1005.2804 1616.875,1002.4688 C 1615.0233,999.93079 1611.7304,998.2063 1611.2812,994.84375 C 1608.1779,994.05949 1606.5044,999.21994 1603.375,996.96875 C 1601.7573,994.47226 1606.7846,991.55212 1603.2188,989.96875 C 1603.6045,988.07165 1606.5187,986.90171 1605.8438,984.25 C 1604.2651,982.42171 1600.6885,983.69178 1598.9062,981.5 C 1596.5454,981.85921 1592.3508,981.5692 1592.8125,978.3125 C 1591.7598,975.32049 1595.4833,973.00603 1594.4375,969.78125 C 1593.0008,964.42067 1599.1966,961.54086 1600.5625,957.09375 C 1600.7211,953.49824 1597.2661,951.77141 1596.125,948.65625 C 1594.0677,946.48736 1591.1128,944.1396 1590.7812,941.0625 C 1592.2516,938.95979 1596.2913,938.1088 1595.3438,934.71875 C 1596.5983,931.88495 1596.3811,927.19051 1592.4375,926.96875 C 1586.976,924.79048 1581.3809,923.02261 1575.5312,922.1875 C 1572.3363,921.22924 1569.3958,924.1743 1566.0625,922.9375 C 1561.1614,922.24297 1555.5496,922.56149 1552.2188,926.75 C 1549.1526,930.31143 1544.6584,932.34824 1539.9688,931.9375 C 1535.7582,931.61369 1530.9904,933.19038 1529.4375,937.46875 C 1526.8236,939.52505 1523.7903,941.44169 1523.0938,945 C 1521.3235,947.36199 1522.8534,948.81906 1525.25,949.375 C 1526.7204,951.1865 1522.9867,952.51302 1525.125,954.6875 C 1525.8872,956.36237 1527.643,960.69194 1529.2188,957.375 C 1531.139,956.10099 1532.2092,959.81923 1532.2812,961.28125 C 1529.2313,964.13809 1525.2144,966.28617 1521.7188,968.6875 C 1521.0306,970.90067 1516.8802,970.65267 1517.875,973.71875 C 1517.8137,976.27369 1514.2703,976.73383 1512.9375,978.65625 C 1510.501,979.49681 1506.9768,980.80465 1505.1562,978.1875 C 1502.9757,978.01712 1500.8611,978.5354 1499.375,980.15625 C 1496.7937,979.63225 1493.986,978.8266 1491.625,980.6875 C 1488.1671,982.35775 1491.4615,979.38184 1492.0938,977.78125 C 1493.5184,975.94028 1494.9876,974.46041 1492.5312,972.75 C 1490.9025,971.38084 1487.6918,969.07142 1490.4688,967 C 1493.4761,963.91597 1497.8384,963.01407 1501.375,960.90625 C 1503.4615,961.79306 1504.9497,961.02044 1506.5625,960.40625 C 1509.8272,960.21364 1508.4061,956.16844 1507.0938,954.46875 C 1505.8961,951.87513 1509.7303,950.398 1509.0938,948.0625 C 1510.8608,945.2422 1512.0336,941.97597 1513.75,939.0625 C 1513.7938,935.15256 1509.3265,934.0545 1507.2188,931.4375 C 1505.8164,930.19723 1501.2624,929.28268 1503.7812,927.3125 C 1507.0405,924.95726 1500.9529,921.31486 1504.4375,918.71875 C 1506.7723,916.26144 1508.531,913.50114 1509.4375,910.21875 C 1510.2709,907.60159 1513.0421,906.76748 1514.2812,904.53125 C 1512.831,902.64896 1509.1655,900.83332 1510.125,898.15625 C 1515.0989,894.7364 1518.9217,890.01532 1523.5312,886.15625 C 1526.9833,883.47654 1529.1143,879.01639 1533.7812,878.03125 C 1536.4712,876.8152 1540.1487,876.10082 1541,873 C 1543.7696,872.95934 1542.539,869.13442 1545.5,869.46875 C 1548.7176,869.19334 1549.7665,865.96064 1551.5625,863.84375 C 1552.1264,861.25425 1546.5207,860.42129 1549.2812,857.4375 C 1549.6381,854.92684 1550.2305,852.4542 1552.0938,850.53125 C 1553.7004,845.74915 1551.5235,840.88469 1548.6875,837.09375 C 1550.3981,834.323 1553.1137,831.78036 1555.5625,829.46875 C 1557.7408,829.16371 1560.1418,829.44387 1562.3125,828.25 C 1566.0554,827.55793 1569.0419,825.11846 1572.8125,824.5 C 1576.2013,822.327 1577.2814,816.8924 1582.0625,816.90625 C 1584.8598,815.82748 1583.9777,812.79485 1581.875,811.5625 C 1582.4891,810.8813 1582.3204,807.80055 1584.3125,806.84375 C 1586.2071,806.50117 1589.6407,806.12635 1587.9375,803.34375 C 1588.383,800.99229 1591.9516,801.61341 1593.5312,800.03125 C 1596.6995,798.84597 1598.0562,795.41001 1601.125,794.1875 C 1598.9311,792.66656 1600.5413,791.14007 1602.8125,789.75 C 1604.9289,786.84821 1607.663,784.19886 1610.875,782.53125 C 1612.4725,781.69201 1614.0351,779.72681 1614.4062,778.0625 C 1613.6879,776.01658 1614.8089,773.56553 1613.4375,771.5 C 1613.7777,769.17356 1617.4833,770.66021 1619.0312,768.78125 C 1621.2179,768.87031 1623.0001,766.98507 1621.6875,764.90625 C 1623.1599,763.13508 1626.5551,764.74144 1627.2812,761.8125 C 1628.0063,760.27542 1626.7273,757.58413 1625.3125,757.15625 C 1623.6662,755.40056 1621.7156,755.54962 1619.7188,757.0625 C 1615.5543,758.12481 1611.2728,757.69483 1607.0938,758 C 1603.9245,759.72129 1605.1868,755.00579 1606.75,754.03125 C 1609.836,754.07092 1608.4655,748.86872 1611.8438,749.8125 C 1614.6988,748.99416 1610.5776,743.56971 1614.5312,744.15625 C 1616.9592,744.71909 1617.6312,741.265 1620.25,741.78125 C 1623.2643,739.53877 1618.7922,737.16038 1619.2812,734.59375 C 1617.693,731.59599 1621.975,733.09854 1622.9375,731.09375 C 1624.6079,730.52927 1626.3453,733.10773 1628.4062,732.90625 C 1632.0098,735.34973 1635.8965,729.29049 1639.3125,732.71875 C 1641.0329,734.88567 1644.1529,731.74225 1645.4062,733.5625 C 1643.8197,735.60479 1642.8569,737.81834 1643.0312,740.46875 C 1641.8323,743.28576 1646.5327,743.54813 1648.3438,743.28125 C 1651.4298,742.4323 1649.7028,748.38423 1652.5625,746.15625 C 1654.2319,744.53308 1656.5147,744.75099 1658.3125,743.84375 C 1660.1069,742.94245 1662.9605,743.14537 1664.8125,744.125 C 1667.1502,744.73115 1669.3222,744.63508 1671.0625,742.96875 C 1673.7308,742.6 1674.1112,738.97924 1676.875,738.65625 C 1679.3865,736.2885 1675.5939,735.70359 1674.5938,734.25 C 1674.7637,730.82306 1678.4774,732.83773 1679.7188,734.4375 C 1682.3716,734.93153 1685.518,731.41069 1682.8438,729.25 C 1681.4765,726.12267 1687.3836,729.9008 1686.5938,726.09375 C 1687.2121,723.34753 1680.9942,725.44171 1684.2188,722.625 C 1685.695,720.43652 1690.4622,721.53919 1689.9688,718.21875 C 1691.1869,715.61246 1696.0101,718.25443 1694.9062,714.40625 C 1694.9427,711.6355 1691.6563,710.14973 1692.0625,707.1875 C 1689.9011,704.28868 1685.3945,702.80559 1685.4062,698.625 C 1684.6481,696.18646 1684.6934,693.53997 1687.25,692.25 C 1690.1755,690.06317 1689.3538,686.38022 1687.7188,683.65625 C 1685.764,678.91892 1688.1405,673.4923 1691.2812,669.8125 C 1692.7133,666.93919 1687.9534,663.04973 1692.0312,661.3125 C 1695.5751,659.70644 1693.4142,655.95044 1693.9688,653.125 C 1696.9298,649.97661 1700.851,646.0038 1698.8125,641.25 C 1697.1131,637.20952 1691.5619,635.33917 1692.125,630.375 C 1692.1693,627.2215 1692.3851,623.95361 1693.125,620.84375 C 1692.5745,617.18174 1697.6578,616.34011 1696.7812,612.71875 C 1697.5585,608.77375 1700.4756,605.60174 1701.9375,601.84375 C 1703.6819,599.07299 1707.3412,597.57607 1707.5625,593.84375 C 1708.8408,590.2196 1706.1514,584.89321 1710.5312,582.90625 C 1712.9418,581.60376 1716.8486,579.6397 1714.9688,576.25 C 1714.0952,572.06975 1712.6232,567.79635 1714.4688,563.625 C 1715.0992,559.60725 1719.2989,556.59604 1717.8125,552.25 C 1716.973,548.30171 1723.4556,549.22207 1722.6875,545.1875 C 1722.4694,540.86157 1721.8568,536.51438 1721.7812,532.21875 C 1723.772,529.11035 1724.1581,525.23659 1726.1875,522.25 C 1730.4118,520.29956 1733.8731,517.30999 1737,513.90625 C 1740.3304,511.76387 1743.0913,507.82148 1742.1875,503.6875 C 1743.3286,499.87403 1749.5756,505.07895 1749.7812,500.15625 C 1748.7592,495.94193 1753.8986,496.48314 1756.375,495.3125 C 1761.804,492.31111 1759.9468,485.13488 1763.125,480.5625 C 1764.213,475.23434 1769.2352,472.05371 1770.75,466.84375 C 1772.3004,465.45598 1778.3816,462.81534 1773.0938,462.96875 C 1770.8413,464.05839 1768.7131,461.5546 1766.2188,461.9375 C 1763.0271,461.56184 1760.2262,459.56816 1756.875,459.65625 C 1754.0878,457.93611 1752.1281,454.96633 1748.6875,454.1875 C 1746.5472,452.64054 1742.9556,453.89824 1742.0312,450.90625 C 1739.7837,448.60302 1737.548,448.35406 1735.4062,450.78125 C 1732.6655,448.11537 1730.0898,452.48981 1727.5312,450.46875 C 1724.5621,450.84853 1722.3894,445.49145 1720.0938,447.875 C 1718.0981,448.90142 1714.9115,451.00162 1713.0938,449.03125 C 1710.6879,448.00121 1707.8757,448.71014 1705.5312,449.84375 C 1702.103,450.27291 1700.4565,447.67053 1699.4688,444.96875 C 1697.3095,442.36856 1694.7124,443.19148 1691.875,443.34375 C 1687.2499,442.64263 1687.7106,436.61376 1684.0625,435.03125 C 1681.679,432.39236 1683.0689,432.29595 1683.5312,429.875 C 1682.3699,426.80201 1679.699,427.62576 1677.0312,427.875 C 1673.9842,428.03271 1676.1359,423.96405 1672.0938,425.34375 C 1668.5914,425.30293 1665.8986,426.88402 1666,430.5625 C 1665.5569,433.00878 1661.1232,430.67375 1659.6875,433.15625 C 1657.7642,436.62105 1657.1248,437.38532 1653.8438,435.96875 C 1651.5071,433.40146 1648.0178,435.03605 1645.7188,436.46875 C 1644.1229,436.30874 1642.0726,432.48267 1639.4688,435.46875 C 1638.0084,433.087 1634.313,433.07821 1633.9375,431.34375 C 1631.1967,427.27611 1632.0517,434.53751 1630.375,434.90625 C 1629.6688,436.79776 1625.6421,438.77831 1625,435.46875 C 1624.7975,431.40605 1622.6038,427.69384 1623.75,423.5625 C 1621.8134,423.72893 1619.1747,421.72458 1617.0312,420.71875 C 1613.4401,422.01515 1613.1103,416.0318 1609.75,417.40625 C 1607.5679,420.33207 1604.735,418.87369 1602.2812,417.59375 C 1598.3629,418.76783 1601.4008,422.45307 1602.5,424.6875 C 1601.8277,426.4269 1600.2651,430.63509 1597.1875,429.3125 C 1594.3292,428.35687 1591.936,426.88177 1589.0625,427.40625 C 1586.1652,428.13224 1583.7011,425.29966 1584.3438,422.59375 C 1587.2127,421.82333 1586.883,415.96177 1583.5312,417.6875 C 1579.9228,420.0597 1581.5185,414.25283 1580.4062,412.375 C 1578.8697,410.70853 1575.5775,411.09157 1577,407.6875 C 1575.9252,405.57688 1573.6059,403.30081 1571.25,401.84375 C 1567.9907,401.25621 1569.4146,396.78138 1566.9062,396.8125 C 1563.2325,393.40138 1567.196,392.78978 1569.0312,391.71875 C 1567.4925,389.59792 1567.2748,386.7476 1563.875,385.9375 C 1559.2325,384.32832 1564.2449,381.58611 1561.7812,379.3125 C 1559.1569,378.20904 1557.5253,375.92672 1554.8438,375.09375 C 1553.2544,372.11952 1550.0071,374.05214 1548,371.5 C 1545.2708,368.71247 1544.1225,374.02271 1540.9688,372.90625 C 1537.7781,374.282 1535.1474,370.79808 1532,370.375 C 1530.8745,368.06931 1528.5174,367.29783 1526.25,365.6875 C 1522.5214,363.1189 1518.0928,366.41221 1514,365.28125 C 1512.867,366.73338 1513.6125,367.88936 1510.2812,368.1875 C 1508.3693,367.94305 1509.8437,373.00413 1506.4062,372.0625 C 1506.0107,376.93086 1503.6477,372.68272 1501.25,372.875 C 1499.4738,375.74782 1497.839,375.73365 1494.5938,374.90625 C 1491.2549,374.87661 1491.0293,375.97195 1490,372.25 C 1490.6745,369.04498 1488.2797,367.25004 1485.375,366.65625 C 1482.1497,366.27268 1478.7403,366.35208 1475.625,366.0625 C 1472.9102,363.85904 1473.3635,361.78277 1471.9062,359.375 C 1469.3769,359.65881 1469.1312,356.99572 1466.0938,357 C 1462.7746,352.8242 1462.4186,359.35701 1459.9688,359.59375 C 1457.3526,359.25067 1456.2375,359.362 1454.4688,357.375 C 1451.0331,355.44563 1446.4505,357.59463 1446.4375,361.71875 C 1446.1873,365.54803 1443.632,362.76084 1442.25,361.3125 C 1439.9673,360.52923 1436.3161,359.564 1435.625,362.84375 C 1433.775,365.43985 1429.9183,363.51676 1427.5312,365.34375 C 1425.3494,363.99253 1425.8136,361.68609 1427.3125,359.96875 C 1427.9303,357.65187 1423.5952,356.62421 1425.4688,354.40625 C 1424.4475,352.61533 1422.1424,351.16143 1422.6562,348.53125 C 1421.196,345.62271 1417.6736,343.9104 1414.625,342.96875 C 1412.139,340.61548 1411.5073,342.63019 1409.6562,344.1875 C 1406.9127,346.15456 1404.8934,342.03067 1406.5312,340.28125 C 1407.3358,338.51683 1410.6121,337.14608 1407.625,335.46875 C 1405.3543,333.90518 1403.757,331.8338 1402.0312,329.75 C 1399.2352,328.77347 1397.5263,333.5707 1394.5625,331.21875 C 1393.0084,329.16788 1388.7866,331.87345 1388.2812,328.65625 C 1388.9973,324.97809 1385.9557,327.45623 1384.4062,326.75 C 1382.5085,324.41929 1383.4845,320.89001 1381.1875,318.65625 C 1379.7804,314.90073 1375.38,319.19742 1373.75,316.03125 C 1370.2967,316.31045 1368.2171,313.28388 1366.6562,310.71875 C 1364.5179,310.55659 1362.2349,310.49976 1360.5312,311.875 C 1357.7478,314.59341 1354.1034,312.26169 1351.0312,311.6875 C 1347.8681,313.76009 1349.8734,309.2763 1350.625,307.84375 C 1351.132,305.24865 1349.7125,302.38935 1348.3125,300.15625 C 1348.725,298.09699 1350.6558,296.47357 1351.1562,294.21875 C 1353.6948,291.19431 1350.9725,287.90986 1348.625,285.90625 C 1348.7199,282.07517 1346.559,284.76426 1344.5312,283.53125 C 1341.0222,282.99441 1340.7525,277.46804 1343.875,276.25 C 1346.6603,273.76487 1343.9356,269.01001 1347.3125,266.65625 C 1347.4855,265.14881 1344.8739,262.19562 1347.7188,261.21875 C 1349.194,259.90753 1347.4302,255.03514 1350.625,256.5625 C 1352.1746,259.57101 1351.9664,253.58974 1351.875,253 C 1351.8727,253.0274 1351.8448,253.03867 1351.8438,253.09375 C 1350.8073,250.88058 1355.5609,249.75534 1352.875,248.03125 C 1352.7594,245.07086 1349.2953,246.67891 1347.4062,247.09375 C 1345.249,247.66796 1346.9329,241.69015 1343.625,244.21875 C 1342.5276,247.25075 1339.7853,248.51797 1337.0938,249.75 C 1335.9586,251.92285 1335.526,254.68639 1332.5625,255 C 1329.5411,256.15927 1326.9612,259.67549 1327.9375,262.78125 C 1329.9156,265.79169 1327.2905,269.60334 1326.875,272.84375 C 1326.5902,276.52305 1321.7588,276.10356 1319.125,276.875 C 1316.2485,276.64321 1314.1154,278.32095 1312.0312,279.90625 C 1308.4559,279.77159 1307.4394,284.69499 1303.7188,284.40625 C 1300.783,285.11545 1297.7924,286.73659 1294.9375,284.65625 C 1292.7388,283.42092 1290.3343,284.57884 1288.1875,283.0625 C 1285.9311,283.65711 1284.0724,282.59207 1282.625,280.96875 C 1279.3045,279.31742 1275.4871,281.09474 1271.9062,281.09375 C 1269.348,281.6095 1265.9228,282.85717 1264.6562,279.65625 C 1263.5186,277.19531 1260.0595,279.48548 1259.3125,277.90625 C 1260.5308,276.0712 1261.5629,274.37218 1259.1562,272.75 C 1257.8659,270.54571 1259.9604,267.78888 1261.5312,266.4375 C 1264.4693,267.2853 1264.9089,264.28201 1266.875,263.25 C 1269.471,263.2202 1270.5345,260.32149 1268.375,258.75 C 1266.4053,256.85076 1265.2134,254.39892 1266.1562,251.75 C 1266.5018,249.00872 1262.0222,248.94231 1260.6875,250.53125 C 1257.1342,251.3537 1258.5547,248.2985 1258.4688,246.3125 C 1261.1909,245.52051 1259.7712,242.71529 1260.9062,240.71875 C 1262.3578,239.0699 1259.2014,235.65602 1262.2188,235.375 C 1263.5972,233.33517 1264.5785,230.61164 1267.375,229.9375 C 1270.5858,227.88335 1266.7809,224.06567 1264.0312,224.1875 C 1263.2078,221.23517 1259.7356,222.65885 1261.6875,225.25 C 1262.9143,227.79341 1257.5029,228.1713 1258.4062,225.15625 C 1255.9099,223.84916 1257.525,220.15556 1254.6875,218.90625 C 1253.381,216.73538 1250.9038,217.57392 1249.8125,215.3125 C 1247.1293,214.25002 1246.5869,211.52796 1245.2188,209.34375 C 1242.3098,210.40342 1239.4748,211.87339 1236.3125,211.65625 C 1233.602,212.91791 1230.5922,214.9539 1227.5,213.90625 C 1226.7363,211.49321 1223.7204,212.07664 1222.4062,210.0625 C 1220.2106,209.07854 1218.5155,211.43238 1216.3125,210 C 1213.8277,210.38654 1211.1851,209.1482 1209,210.96875 C 1206.8657,212.03666 1207.0985,215.29053 1206.4375,217.40625 C 1203.5641,214.65279 1204.8104,220.84867 1201.9062,217.40625 C 1199.6463,214.27399 1199.025,210.29769 1197.7812,206.84375 C 1199.2378,204.46349 1200.1885,201.72371 1198.9688,198.96875 C 1198.6961,196.51012 1199.5355,193.72107 1197.625,191.6875 C 1197.048,189.45802 1193.9877,188.87859 1193.5938,186.34375 C 1192.5873,184.83055 1190.177,182.36442 1188.6562,184.625 C 1185.7955,182.66634 1182.2916,183.24758 1179.375,184.84375 C 1176.1955,184.54677 1178.2223,180.79368 1179.5,179.59375 C 1178.6033,178.43267 1174.6218,176.32672 1173.5938,178.25 C 1172.7296,180.69612 1170.7043,181.68774 1168.25,181.59375 C 1165.4677,181.78965 1163.1383,183.82462 1160.4062,183.875 C 1158.7245,181.60519 1155.7035,181.4618 1153.625,179.6875 C 1151.2849,179.28863 1150.6491,176.72337 1149.1875,175.4375 C 1148.8914,172.24828 1149.8066,169.02954 1149.5312,165.8125 C 1149.2586,163.13624 1146.2077,161.83916 1146.625,159.09375 C 1146.0569,156.62262 1144.1881,154.13385 1144.875,151.625 C 1147.8408,150.54261 1146.1645,148.84183 1145.4062,146.96875 C 1146.4488,144.27768 1143.0951,143.14327 1141.0625,143.6875 C 1139.1469,142.41514 1138.885,140.2575 1137.9375,138.5 C 1137.0881,135.85156 1135.1707,133.88505 1134.4688,131.125 C 1132.8386,129.3089 1128.9754,129.312 1127.5625,130.21875 C 1126.3028,132.45942 1123.3234,132.98818 1121.3438,131.6875 C 1118.9081,131.7438 1117.6292,134.33305 1115.0312,133.78125 C 1113.1012,134.29289 1111.379,136.68555 1109.5625,136.3125 C 1108.038,135.05051 1105.1972,138.15638 1106.9375,139.46875 C 1104.771,140.64991 1106.0558,143.57303 1103.6562,144.65625 C 1102.2874,148.32518 1101.0667,145.92306 1099.375,144.25 C 1096.7803,144.87754 1095.7055,142.23157 1093.7812,141.5 C 1090.5032,143.13074 1085.5977,140.94333 1086.625,136.84375 C 1084.3854,135.8012 1083.3724,134.27876 1083.0625,131.9375 C 1080.8005,131.31638 1079.3774,129.66316 1078.1875,127.84375 C 1079.719,124.35525 1074.9679,124.41141 1072.8125,124.15625 C 1071.2562,123.11946 1069.0049,126.87679 1067.3438,124.15625 C 1066.3719,122.3077 1066.7983,119.35262 1064.0312,119 C 1063.8143,116.99343 1065.7631,114.7351 1064.875,112.28125 C 1064.4362,110.09309 1064.3597,107.77807 1062.4688,106.375 C 1063.0635,104.25895 1065.4562,103.11339 1066.0938,101.03125 C 1068.5881,100.60027 1066.259,97.085326 1065.0938,96.03125 C 1064.6843,93.551384 1063.4296,92.089814 1061,91.53125 C 1058.5104,88.399812 1059.1084,83.775409 1057.9375,80.03125 C 1057.6962,78.196538 1057.1784,76.22328 1055.9062,74.84375 z M 1234.9688,1453.0938 C 1234.9267,1453.098 1234.8858,1453.121 1234.8438,1453.125 C 1234.7141,1453.2182 1234.7964,1453.1684 1234.9688,1453.0938 z M 989.25,1647.0625 C 990.61721,1646.9606 989.1205,1651.5505 990.8125,1652.6562 C 994.05715,1654.3605 992.18585,1656.8166 988.4375,1655.5938 C 988.02904,1655.113 987.78464,1654.7995 987.09375,1655.0625 C 983.71018,1653.1063 986.95313,1650.431 987.75,1647.9688 C 988.4437,1647.343 988.93449,1647.086 989.25,1647.0625 z" id="path9417"/> |
<path id="path08" style="opacity:1;fill:#fefee4;fill-opacity:1;fill-rule:evenodd;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" d="M 1628.9029,1460.3073 L 1628.4103,1459.9698 L 1625.9931,1459.9159 L 1624.842,1459.5108 L 1624.6411,1459.2725 L 1624.5425,1458.97 L 1626.2251,1458.4585 L 1628.5104,1459.235 L 1629.2159,1459.787 L 1628.9908,1460.0017 L 1628.9029,1460.3073 z"/> |
<path id="path27" style="opacity:1;fill:#fefee4;fill-opacity:1;fill-rule:evenodd;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" d="M 1906.7131,1855.8279 L 1905.575,1854.6109 L 1906.2753,1854.0847 L 1907.1427,1854.147 L 1907.4208,1854.6897 L 1907.9923,1854.7085 L 1908.0134,1855.2858 L 1907.7831,1855.4795 L 1907.2633,1855.3832 L 1907.2216,1855.6907 L 1906.7131,1855.8279 z"/> |
<path id="path70" style="opacity:1;fill:#fefee4;fill-opacity:1;fill-rule:evenodd;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" d="M 543.44926,523.71694 L 543.20616,523.59999 L 543.26506,523.40795 L 543.45161,523.35969 L 543.59802,523.56843 L 543.44926,523.71694 z"/> |
<path id="path45" style="opacity:1;fill:#fefee4;fill-opacity:1;fill-rule:evenodd;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" d="M 121.42961,634.08407 L 120.32117,633.44261 L 119.79286,632.68551 L 118.81592,632.58919 L 118.61983,632.37215 L 118.78351,632.13958 L 120.6689,632.65219 L 120.98509,633.49109 L 121.43223,633.89559 L 121.42961,634.08407 z"/> |
</g> |
<g inkscape:groupmode="layer" id="layer15" inkscape:label="Other countries" style="display:inline"> |
<path transform="translate(-6.2490173e-2,5.4199219e-2)" inkscape:transform-center-y="161.23798" inkscape:transform-center-x="-475.91757" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 987.17111,1655.0069 C 983.78756,1653.0508 987.03076,1650.3837 987.82763,1647.9215 C 991.52735,1644.5842 988.79379,1651.2464 990.87625,1652.6073 C 994.12092,1654.3115 992.24185,1656.7726 988.4935,1655.5498 C 988.08506,1655.0691 987.862,1654.7439 987.17111,1655.0069 z" id="path9452"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1979.5105,674.40405 C 1980.1321,676.50594 1982.118,677.03174 1980.4038,679.74389 C 1978.8219,681.3641 1977.9394,683.44195 1976.7998,685.35849 C 1975.1419,684.18358 1973.55,681.14104 1974.7574,679.12985 C 1974.662,676.74794 1974.8805,674.3033 1976.9094,673.09135 C 1978.0606,670.63207 1979.2255,672.77314 1979.5105,674.40405 z" id="path5745"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1988.5339,606.47576 C 1989.6022,609.56539 1985.3454,609.82714 1986.3357,606.61421 C 1986.4357,605.6785 1988.1672,605.75077 1988.5339,606.47576 z" id="path5747"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1917.3863,1006.2633 C 1917.49,1005.5814 1919.0635,1010.8016 1916.2139,1009.813 C 1914.367,1008.6842 1914.5646,1005.3112 1917.3863,1006.2633 z" id="path5749"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1926.4838,1003.3098 C 1927.2962,1004.8339 1927.9308,1007.4282 1927.7093,1009.4849 C 1928.2802,1008.8269 1929.4851,1011.0914 1926.8553,1012.2238 C 1924.95,1011.6527 1922.3888,1014.5949 1921.2968,1012.325 C 1920.2772,1009.948 1921.4787,1009.0017 1923.2533,1007.9816 C 1922.8459,1003.7046 1924.7796,1006.9404 1925.0729,1004.3564 C 1925.0684,1003.2522 1925.4075,1001.8142 1926.4838,1003.3098 z" id="path5751"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1932.128,1008.1963 C 1934.0584,1008.7971 1934.0883,1011.8947 1933.7365,1013.4819 C 1933.2755,1015.5278 1932.3647,1017.5296 1932.1476,1019.4825 C 1930.7319,1018.5477 1930.0899,1018.4035 1928.3405,1018.5064 C 1928.8409,1016.1913 1930.2101,1013.9653 1929.9803,1011.4069 C 1931.735,1011.36 1929.9621,1006.9532 1932.128,1008.1963 z" id="path5753"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1920.7654,997.24184 C 1923.7357,996.12834 1920.0834,1000.5668 1919.0387,999.02766 C 1918.3,997.80995 1920.1691,997.86412 1920.7654,997.24184 z" id="path5755"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1926.0012,1014.9626 C 1927.6351,1018.0286 1922.7078,1018.2953 1923.8601,1015.5012 C 1924.2609,1014.6203 1925.2308,1014.0982 1926.0012,1014.9626 z" id="path5757"/> |
<path id="path5759" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1774.1343,1922.2363 C 1773.3974,1920.7082 1777.1908,1918.6536 1775.2511,1917.5643 C 1774.393,1915.4616 1775.3336,1914.0547 1777.4419,1913.2146 C 1780.2899,1913.1055 1779.4707,1908.4667 1782.5664,1908.8109 C 1784.0821,1907.5287 1780.0504,1904.2676 1782.7519,1903.5482 C 1785.5986,1904.688 1785.7509,1900.9354 1787.4679,1899.8429 C 1788.9927,1900.4596 1786.9059,1903.1864 1789.1761,1903.6555 C 1792.1469,1904.5362 1789.723,1906.8243 1789.6415,1908.4583 C 1790.6123,1910.3701 1788.6547,1912.8765 1786.8026,1911.4365 C 1784.8369,1910.7386 1782.9537,1910.5839 1781.3037,1911.872 C 1780.0852,1912.8478 1779.508,1914.9515 1777.7499,1915.9649 C 1777.5833,1917.2476 1778.3856,1919.4256 1779.4099,1920.8932 C 1779.466,1921.2747 1779.6244,1921.8637 1779.5807,1922.2584" sodipodi:nodetypes="ccccccccccccc"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1891.8383,1007.2832 C 1895.4954,1007.4292 1889.8271,1011.4619 1891.0791,1007.9432 C 1891.3742,1007.7199 1891.1818,1006.8521 1891.8383,1007.2832 z" id="path5763"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1916.1608,996.16802 C 1918.8557,997.22933 1917.4827,999.79035 1915.5388,997.39577 C 1914.8925,996.70682 1914.9159,995.73917 1916.1608,996.16802 z" id="path5765"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1918.1288,1000.3561 C 1915.8268,1002.8244 1915.5389,998.07121 1918.2959,999.80583 C 1918.5478,999.9721 1918.2277,1000.1703 1918.1288,1000.3561 z" id="path5767"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 470.74058,-458.58839 C 471.27623,-455.5582 474.18353,-456.8434 476.26671,-456.63532 C 478.3879,-455.65318 479.49215,-454.24994 478.94722,-451.9296 C 480.96386,-449.77008 477.38973,-448.90368 477.94452,-446.55947 C 479.21689,-444.18463 477.92266,-441.84074 475.37556,-443.72221 C 473.39372,-442.81859 471.42107,-442.4989 470.4064,-444.94864 C 467.96325,-444.78122 467.08676,-446.50268 465.54202,-447.95546 C 463.51061,-449.31261 459.82689,-448.56737 460.34328,-445.53963 C 461.43955,-442.31584 457.23131,-443.78888 457.89175,-446.23928 C 456.19001,-447.37747 454.66301,-443.62623 452.55407,-445.35015 C 450.35628,-445.94494 454.52939,-448.66943 453.17874,-450.82318 C 453.01535,-453.83461 448.76597,-455.94061 450.16871,-458.96389 C 452.27758,-460.65505 454.8546,-458.86693 456.85277,-458.1049 C 459.38392,-457.27454 460.92089,-461.25066 463.30704,-459.26664 C 465.4627,-458.8755 467.60802,-457.85418 469.63243,-459.24786 C 470.08874,-459.44311 470.47289,-458.83812 470.74058,-458.58839 z" id="path5819"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 437.8033,-492.5257 C 439.53715,-490.24404 435.10045,-490.23993 435.16696,-487.90773 C 432.70178,-487.17384 435.43887,-490.51024 434.60973,-491.8812 C 435.29557,-494.46725 436.56159,-495.09002 437.8033,-492.5257 z" id="path5821"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 424.88088,-499.9895 C 425.60709,-495.53203 422.0731,-498.89427 424.28968,-500.61308 C 424.62621,-500.76569 424.63482,-500.07082 424.88088,-499.9895 z" id="path5823"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 417.75125,-503.64147 C 416.91573,-501.69942 415.84393,-500.09469 414.38957,-498.61507 C 413.61128,-496.37999 414.62267,-494.09932 414.22353,-491.77387 C 415.0645,-488.91522 411.829,-491.40347 410.31731,-489.68564 C 408.24737,-491.42833 406.30331,-488.50728 403.9747,-489.73354 C 401.49983,-490.62037 398.49831,-489.19754 396.3623,-490.91471 C 395.88252,-493.38223 400.12455,-492.64307 398.00647,-495.55178 C 399.47495,-496.93312 401.799,-497.18681 403.71482,-497.35884 C 404.08478,-499.79376 407.34171,-499.12259 407.68774,-501.86932 C 408.85442,-504.03722 412.97711,-501.83062 412.36684,-504.60797 C 413.42671,-505.41939 418.38932,-505.93761 417.75125,-503.64147 z" id="path5825"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 459.7491,-545.95639 C 463.30036,-546.10603 459.46653,-544.10851 458.59795,-542.89475 C 456.60665,-542.31314 453.99698,-539.54436 452.17567,-541.7019 C 452.03546,-544.06357 455.45854,-545.65381 457.48402,-544.50557 C 458.01746,-545.50664 459.59617,-545.39388 459.7491,-545.95639 z" id="path5827"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 598.33123,-719.24288 C 594.80612,-717.31038 590.02431,-717.34743 587.93389,-713.38909 C 585.39955,-711.22744 587.55901,-707.83129 586.33705,-705.3343 C 581.16582,-702.42329 574.96912,-700.56587 569.04902,-701.46256 C 566.84969,-702.94037 565.42224,-705.56198 563.01734,-706.73095 C 558.92398,-710.96453 551.85319,-710.88931 548.27532,-715.69841 C 545.77225,-717.52587 542.391,-718.37565 539.54899,-716.6114 C 537.97686,-716.02518 533.61342,-714.95152 536.93875,-717.05275 C 537.69376,-718.98657 539.7836,-719.42084 540.663,-721.33671 C 541.28316,-724.37003 543.39753,-723.96523 545.91409,-724.51391 C 548.62067,-725.45539 551.28116,-726.62782 553.54832,-728.37166 C 555.75653,-728.75523 552.74606,-723.85822 556.58032,-726.39818 C 559.54551,-726.41694 557.34242,-729.64749 560.12087,-729.8745 C 562.35533,-730.68329 563.87109,-732.76592 565.4681,-734.17064 C 567.45566,-734.57445 568.89797,-737.71528 571.07292,-736.02362 C 572.69866,-735.6119 574.33365,-735.26702 576.05109,-733.79513 C 579.94309,-731.14061 584.63598,-729.32976 589.38214,-729.3375 C 591.47567,-730.39076 593.60807,-730.36227 594.76637,-728.0495 C 595.87966,-726.21232 595.76139,-725.1403 598.03414,-723.91403 C 598.52354,-721.61607 601.22451,-721.01438 598.41499,-719.50496 L 598.33123,-719.24288 z" id="path5829"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 144.52319,-813.91334 C 145.22581,-812.1374 143.33805,-809.65029 145.93313,-808.43719 C 146.17594,-806.18911 140.89335,-807.24007 142.77786,-809.88653 C 143.52024,-811.15724 141.99773,-814.30728 144.52319,-813.91334 z" id="path5831"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 792.09788,-870.02473 C 789.65883,-868.0513 791.45943,-864.5876 788.86299,-863.10188 C 787.01093,-861.84763 784.42782,-861.97653 782.6988,-860.73857 C 785.15403,-859.42226 788.45136,-860.39533 790.97971,-861.27623 C 793.48569,-862.75996 793.10851,-867.49861 796.92098,-867.02121 C 800.15345,-866.80654 803.40924,-868.45523 806.51247,-866.96721 C 808.70154,-868.33933 810.88549,-867.06812 812.81413,-865.94737 C 815.22402,-865.43705 817.73885,-865.9421 820.01806,-864.76671 C 822.95145,-865.01793 827.6952,-862.42792 825.77376,-858.96642 C 822.58943,-856.55125 818.64811,-859.44975 815.2649,-858.75225 C 814.09904,-857.23147 812.42255,-855.89951 810.68082,-854.64526 C 808.94875,-853.37997 805.76548,-854.77925 804.71908,-852.95245 C 806.06807,-851.06819 807.67543,-848.735 810.21478,-848.81764 C 812.22733,-845.9491 812.9553,-850.38764 815.46067,-849.33241 C 817.67346,-851.67794 818.77793,-847.32765 820.53794,-848.06598 C 822.01885,-848.7536 825.88937,-849.37061 823.78741,-851.86462 C 822.33671,-853.31544 824.3052,-857.69933 826.03362,-855.10027 C 826.20305,-851.22524 828.85681,-854.25807 827.97235,-856.62879 C 828.53682,-859.01877 830.08307,-860.6612 832.68047,-858.91291 C 835.35997,-859.07079 837.60624,-857.0112 840.32996,-856.81859 C 843.34712,-855.59233 847.1427,-856.31403 849.68768,-854.13378 C 850.47241,-851.70314 853.45312,-850.77928 853.88375,-848.11931 C 855.5451,-845.06294 851.46865,-846.6392 850.39325,-844.89766 C 847.49802,-841.97661 843.51026,-845.53376 840.09617,-845.27382 C 838.72807,-844.91725 833.86832,-847.11562 835.26117,-844.64299 C 839.0999,-842.16576 844.24899,-843.36224 848.16515,-841.08501 C 851.42141,-839.93316 854.27911,-843.0078 857.56988,-841.81643 C 861.01033,-841.13819 863.77599,-843.15069 866.45864,-844.88367 C 870.61906,-846.63426 875.38999,-845.00137 879.543,-846.88465 C 883.88165,-846.8081 887.82172,-849.48568 892.20554,-848.22665 C 895.0982,-847.29522 897.55621,-849.31677 900.44907,-848.92514 C 903.5931,-848.88892 906.57495,-850.15355 909.76794,-849.9988 C 912.34653,-850.70338 915.6551,-851.22079 918.05033,-849.94563 C 918.90165,-846.29333 917.405,-842.31837 915.37679,-839.31336 C 913.65225,-836.78131 909.0082,-839.72376 908.35855,-836.09104 C 909.93571,-834.44878 909.21201,-832.33207 909.47249,-830.29125 C 912.64138,-825.11833 913.05761,-818.71388 912.62881,-812.78535 C 911.8193,-808.13215 908.95328,-803.76128 905.01653,-801.24058 C 900.90942,-800.71264 897.57059,-797.92937 893.61119,-796.81851 C 891.27479,-796.29567 888.10288,-797.64243 887.15527,-794.52845 C 884.06392,-790.53637 878.49751,-792.34869 874.23286,-791.89713 C 869.19327,-789.78076 864.88961,-786.11346 861.01338,-782.2847 C 856.77022,-777.62935 855.62022,-770.34383 858.22832,-764.67146 C 858.68782,-761.20617 854.20892,-762.29449 852.1282,-762.60611 C 846.3606,-762.99446 841.10011,-765.51103 835.50262,-766.55111 C 832.09045,-766.9276 829.90615,-763.69312 826.99906,-762.36214 C 822.85576,-760.1837 821.18838,-754.45008 816.11894,-753.87835 C 812.55815,-752.5836 808.7272,-752.09336 805.38743,-750.27989 C 802.09514,-750.32087 799.09191,-749.31964 796.02985,-748.29355 C 789.75688,-748.02143 783.46774,-746.20384 778.17093,-742.89725 C 777.58014,-740.95931 776.68627,-739.32265 774.44748,-738.76194 C 770.87496,-737.51295 770.29502,-733.11871 767.62275,-730.94832 C 763.20221,-728.95327 759.13163,-732.53116 755.29439,-734.17064 C 752.50272,-735.39131 748.95432,-732.94371 746.71653,-735.78163 C 744.53516,-737.04889 742.02853,-739.04411 739.43845,-737.66128 C 734.15351,-738.82861 729.41976,-741.89963 724.04687,-742.97857 C 718.11933,-744.41654 712.27529,-746.88669 706.0925,-746.3604 C 704.05202,-745.17693 701.70761,-747.23767 699.39864,-746.11247 C 695.47978,-745.25266 691.74843,-743.67179 687.85998,-742.44042 C 685.19818,-742.55532 682.68577,-741.99511 680.43325,-740.7221 C 677.28929,-739.93586 674.07075,-741.44495 670.88006,-740.42248 C 667.54572,-739.61073 664.19099,-738.85578 660.7897,-738.7351 C 655.28641,-737.52349 649.71694,-736.41559 644.09049,-735.8567 C 642.5798,-735.72795 640.26925,-731.75398 639.80933,-734.70764 C 637.66406,-737.43888 637.99962,-733.12183 639.46427,-731.88914 C 639.80694,-728.95771 636.97692,-726.24013 634.16505,-727.94216 C 630.47023,-730.46499 626.69772,-733.19508 622.31947,-734.60029 C 620.78284,-735.1075 617.14869,-736.18939 618.70663,-738.31713 C 621.29376,-737.85059 620.8643,-742.23333 623.76769,-741.31243 C 626.78441,-743.54322 621.77521,-743.75707 621.78462,-745.77813 C 620.54747,-749.17757 618.97527,-745.60034 618.53188,-743.94391 C 615.05314,-743.15653 618.57351,-747.66272 617.12334,-749.01805 C 615.76868,-749.86141 611.69622,-749.03632 612.47907,-747.21956 C 615.61621,-746.50477 614.48987,-744.27481 613.42201,-742.35975 C 612.80017,-740.59253 615.07396,-737.28232 612.77616,-736.90945 C 610.59527,-736.64523 608.00246,-738.87751 606.53771,-736.47995 C 603.66627,-736.30447 605.67565,-740.16831 607.52026,-740.53278 C 610.04114,-741.83148 608.36491,-744.87271 609.84264,-746.84406 C 610.20385,-750.25058 603.6939,-750.33404 603.63284,-746.9318 C 603.01871,-744.68537 603.01876,-742.38 602.67579,-740.18526 C 600.51072,-739.08921 597.91904,-736.624 595.36062,-738.09078 C 593.28474,-739.65551 594.27835,-742.2939 596.2167,-743.21348 C 595.83855,-745.67953 596.21049,-746.48633 598.73975,-747.32689 C 599.569,-749.99228 595.23286,-751.12341 593.65238,-749.20605 C 591.5458,-747.93221 587.96557,-751.33906 586.9683,-748.74922 C 588.59484,-747.73992 589.99816,-746.8299 591.3116,-745.12623 C 594.27222,-743.71295 591.64408,-740.85643 591.64717,-738.62777 C 588.93099,-736.18676 584.7231,-738.79322 582.69806,-741.09777 C 580.06956,-745.29183 575.1097,-746.56305 570.85252,-748.29355 C 566.97245,-751.43207 563.64521,-755.46169 559.26436,-757.77956 C 556.45938,-757.91192 555.28522,-761.54167 552.25712,-761.74383 C 550.92176,-763.08401 545.93419,-762.80712 548.79519,-760.69733 C 551.46989,-759.36174 554.80087,-758.96566 556.89025,-756.72384 C 558.01173,-752.62706 563.42361,-752.793 565.35669,-749.15321 C 566.39395,-747.34006 567.45362,-745.36756 568.8015,-744.51465 C 567.9473,-742.08944 565.85721,-740.12912 564.02101,-738.36026 C 559.10944,-735.52975 552.55314,-737.57633 547.90403,-733.95531 C 544.13968,-731.85671 539.97064,-729.57982 538.19951,-725.45736 C 535.7086,-724.5954 534.21601,-728.07765 531.67671,-728.15618 C 526.84041,-729.26441 521.34565,-732.07616 516.63756,-729.23016 C 515.61259,-728.13444 510.23536,-728.36985 512.77821,-727.04744 C 516.32529,-727.49012 515.0405,-723.88522 512.14442,-725.09585 C 508.48749,-725.75286 504.72205,-727.6819 501.11578,-725.79303 C 497.81943,-725.2394 494.57579,-724.28344 492.50087,-721.49738 C 491.71225,-719.92047 488.12845,-717.78235 488.67967,-721.14229 C 489.63592,-724.08523 486.7553,-726.73532 483.923,-725.31002 C 481.48513,-724.65696 478.20853,-723.16632 476.40106,-725.70529 C 473.76145,-726.49349 473.03066,-723.52848 472.22591,-721.8202 C 469.58487,-719.65806 472.41997,-718.50966 474.00831,-720.85371 C 475.07541,-722.50652 479.27781,-723.7448 477.72342,-720.50751 C 476.19384,-717.95159 480.49023,-717.55765 481.28097,-719.61279 C 483.00758,-720.33021 485.02442,-717.89594 487.26592,-718.23276 C 490.42341,-718.44183 490.46951,-716.25302 488.26944,-714.74327 C 488.26134,-712.32168 493.16948,-713.90288 492.68654,-710.9731 C 491.42151,-709.6492 487.47722,-709.6581 488.86173,-706.99912 C 489.24966,-705.21627 487.63808,-702.16632 485.40019,-702.54084 C 481.90132,-703.4502 477.86127,-703.47424 475.04804,-700.98466 C 472.98176,-700.7313 472.70149,-704.66412 470.02705,-704.04433 C 467.44035,-703.54535 466.29589,-706.55827 463.67494,-706.11395 C 461.52101,-706.81606 459.3024,-706.84043 457.40974,-707.85828 C 455.20531,-708.91368 453.00034,-706.71943 450.68863,-707.91162 C 446.41752,-708.88306 441.84069,-708.42754 437.79517,-710.11245 C 435.39293,-709.34531 433.11906,-711.06183 430.78202,-710.66706 C 428.70664,-710.12267 425.15987,-710.31034 425.21506,-707.2138 C 426.34899,-704.56749 422.70473,-703.7085 422.83849,-701.30749 C 423.49858,-698.57887 427.13821,-700.12336 427.74014,-697.49468 C 429.24658,-695.58523 428.64919,-693.3839 426.59136,-692.25937 C 425.14069,-690.8963 425.19848,-687.56089 423.02417,-687.34475 C 420.98926,-689.79613 425.37107,-691.86164 423.72972,-694.16503 C 424.29878,-696.43666 424.07703,-698.80737 421.3129,-699.41104 C 418.14562,-702.28287 414.64089,-704.81459 411.17858,-707.37528 C 407.57832,-709.95294 404.75145,-713.78534 400.44698,-715.21475 C 394.73259,-717.42595 388.9616,-719.75288 384.25684,-723.86069 C 381.37834,-725.77903 377.57723,-725.02078 374.41645,-726.33117 C 370.47502,-727.11231 365.58202,-729.68469 362.1995,-726.16985 C 357.90444,-724.62503 354.01282,-720.83116 349.12862,-722.41053 C 344.85246,-724.22681 342.26018,-718.2777 337.98047,-719.8319 C 332.25836,-720.41614 325.90491,-720.29646 320.98136,-716.98707 C 318.55817,-715.07745 317.95105,-711.68262 315.41138,-710.06011 C 312.22317,-709.79358 311.29642,-705.54782 307.82626,-705.89204 C 305.73563,-705.73648 301.92028,-705.66388 301.42724,-708.09715 C 303.14268,-711.01755 299.42723,-712.42852 298.84983,-714.99992 C 298.78429,-716.7426 296.06189,-720.05759 295.05854,-717.28866 C 296.42469,-714.93456 299.08699,-712.64993 298.10719,-709.46978 C 296.04202,-706.52172 299.68712,-705.78421 299.03347,-703.59458 C 296.93021,-701.85633 297.84766,-698.58612 295.43354,-697.01053 C 292.158,-693.44086 288.18968,-688.2775 290.82901,-683.26393 C 291.03321,-681.60142 294.72831,-679.71007 292.58498,-678.56019 C 289.79114,-678.74786 284.87903,-678.76662 284.99909,-674.83282 C 285.35126,-672.81439 284.31836,-669.15271 287.56125,-669.30251 C 289.36759,-667.84577 291.44361,-667.38104 293.55798,-667.11468 C 293.55723,-665.18499 289.64347,-664.98892 290.04692,-662.40288 C 288.77581,-660.40025 290.66705,-657.73008 287.89548,-657.11291 C 285.63589,-655.4769 284.19577,-658.87601 282.51111,-659.63623 C 280.52789,-657.63707 284.39664,-655.70787 283.33893,-654.03959 C 279.45368,-653.43707 275.0942,-651.94345 273.78478,-647.7693 C 271.97414,-644.41924 270.39436,-639.9784 272.70783,-636.4927 C 271.93625,-634.40084 268.41033,-636.62752 266.72935,-635.04254 C 264.95212,-634.30849 262.8026,-631.7715 261.0851,-634.02271 C 259.37181,-634.08773 256.55455,-637.70399 255.90189,-635.12666 C 254.65753,-632.74179 251.64232,-635.61164 249.80352,-636.08229 C 246.8651,-637.3191 246.91932,-640.77599 245.74897,-643.25883 C 243.32929,-644.39406 242.52434,-647.55579 239.51054,-647.6618 C 236.53291,-647.55266 235.85661,-649.77834 234.74753,-651.34621 C 232.40366,-648.5985 228.17574,-651.9856 225.62265,-649.43347 C 224.06445,-648.33758 220.78324,-649.08233 219.90405,-650.45396 C 218.62615,-652.24735 215.61341,-652.05293 213.83309,-652.80328 C 212.6765,-654.84821 213.85702,-657.3898 212.21746,-659.26057 C 211.13585,-661.21513 208.11244,-660.40569 206.33515,-660.34345 C 204.86665,-662.3716 201.73268,-662.27875 199.92635,-660.97956 C 201.74577,-660.32815 203.54225,-658.79469 205.75621,-659.26057 C 207.84471,-657.61254 202.57094,-656.72802 203.89076,-654.30529 C 205.03052,-652.07022 199.48674,-651.32333 199.77773,-653.51493 C 199.89737,-655.51608 196.2635,-655.50916 195.5097,-657.56908 C 193.58164,-659.43424 190.48731,-659.66225 187.9321,-660.1204 C 183.38449,-659.76399 178.78013,-660.29785 174.27798,-659.87297 C 170.81289,-659.23983 170.04656,-653.91019 165.91198,-654.96509 C 161.97143,-653.79891 157.5926,-654.27351 153.57695,-655.0102 C 151.28962,-654.9264 149.20506,-653.52695 146.89977,-654.48143 C 145.01569,-654.86468 142.9878,-650.55076 141.77162,-653.536 C 142.28741,-655.55608 140.78497,-658.76637 138.58178,-656.68325 C 136.45344,-654.76326 131.34232,-656.78285 131.30367,-652.76327 C 133.01158,-650.29921 132.15671,-650.06923 130.11718,-648.53249 C 129.90511,-646.6744 127.13137,-644.18466 129.96685,-643.20483 C 130.32958,-640.82489 127.66896,-638.97519 127.33041,-636.54603 C 125.06036,-635.08485 123.62919,-639.20814 121.0449,-638.07044 C 118.91623,-637.13785 116.95652,-635.55781 114.96495,-634.23689 C 113.94001,-631.8734 113.18265,-630.0512 110.21022,-631.59058 C 106.30198,-632.33928 104.79202,-627.33972 104.30166,-624.34508 C 103.60151,-622.4167 101.26588,-621.75904 99.62875,-620.81246 C 101.10835,-621.39407 103.1641,-625.4808 100.07446,-623.60461 C 97.485933,-623.47851 101.9351,-627.45199 99.35123,-628.55331 C 96.678808,-630.44794 100.61869,-633.80524 98.886092,-635.63354 C 97.049865,-635.04007 97.664087,-631.0791 94.791581,-631.3583 C 91.78514,-630.10998 97.099663,-627.69069 94.875686,-625.69893 C 91.713463,-625.26515 93.268911,-622.28911 95.766966,-622.31595 C 96.415117,-619.94852 91.867879,-621.62124 91.472754,-619.02664 C 89.819719,-617.77106 91.949087,-613.75544 88.711533,-613.99283 C 85.060087,-613.84927 85.915133,-612.13425 88.890279,-611.62672 C 90.873744,-610.59339 93.120816,-610.69907 93.093308,-607.87104 C 95.938388,-606.24045 94.051935,-601.82315 91.310913,-601.21208 C 89.701636,-599.9863 90.736449,-596.00426 87.735769,-596.45944 C 85.495743,-596.74786 82.004028,-597.31975 80.69265,-595.13045 C 79.995163,-592.67396 77.549425,-590.82723 77.757178,-587.94914 C 75.856732,-585.22135 75.338321,-590.09351 73.117324,-589.87473 C 71.032223,-591.30529 70.248474,-593.96344 68.770893,-595.94994 C 69.415603,-597.95914 70.281843,-600.68117 68.028235,-602.07124 C 66.495735,-604.06382 66.62024,-606.9722 64.166302,-608.35453 C 61.402267,-609.80748 59.254823,-613.2196 55.727189,-612.14626 C 53.893563,-613.33385 52.187471,-615.02155 49.684312,-614.42232 C 45.333173,-614.17638 42.592037,-619.97421 37.912954,-618.28913 C 35.255956,-617.73979 31.796327,-616.07957 32.914208,-612.73907 C 34.651069,-608.00783 29.991312,-603.13321 25.213276,-603.78956 C 21.628699,-604.18481 18.368296,-600.19932 14.927302,-602.66223 C 13.687271,-604.32689 10.932651,-604.29264 10.450556,-606.54549 C 9.4638944,-609.32168 13.361171,-609.31082 13.219267,-611.68367 C 13.523899,-614.72704 9.6187707,-617.81848 12.588023,-620.38279 C 12.558079,-622.8029 14.125362,-624.70313 16.645346,-624.71153 C 19.978759,-625.84133 23.435853,-627.01262 26.215955,-629.24291 C 29.545764,-629.65381 31.320174,-633.54366 34.905146,-633.43172 C 36.973555,-635.40092 41.455535,-635.59567 41.700625,-631.98157 C 43.132309,-631.01259 46.391659,-629.69463 48.058966,-631.37608 C 49.902255,-633.12272 51.308226,-635.3066 51.503829,-637.88804 C 53.066816,-639.30708 55.523321,-638.66291 57.556583,-638.74786 C 59.5076,-639.03282 60.341163,-641.74348 62.378788,-642.3944 C 64.92409,-644.34302 68.082642,-645.29965 69.996389,-648.03813 C 71.883088,-649.33042 72.585448,-651.52301 73.375402,-653.4616 C 75.45298,-654.0139 77.503759,-654.45937 78.645988,-656.60258 C 80.424958,-657.3368 83.194195,-657.87841 82.844456,-660.55005 C 83.321992,-663.25628 81.589378,-665.88726 82.844456,-668.44351 C 83.609998,-670.68204 86.952103,-667.6069 87.403266,-670.50952 C 89.127945,-672.49716 91.309185,-669.87342 92.944836,-671.7725 C 97.178501,-672.56416 95.490221,-678.20872 98.217727,-680.63327 C 98.577211,-683.33604 94.582725,-686.1114 97.586483,-688.36524 C 99.238514,-690.28572 98.564602,-692.44111 98.958279,-694.46037 C 100.68536,-696.91735 102.52567,-692.54433 104.08487,-694.32636 C 105.52454,-695.60778 106.58393,-697.69058 108.21579,-698.55599 C 108.49397,-696.62284 110.09044,-693.85916 110.97669,-697.54143 C 113.01566,-699.40248 111.81196,-700.84144 110.62031,-702.48865 C 112.68824,-702.96737 114.59252,-699.80466 117.10543,-701.18566 C 120.28895,-704.49424 125.27094,-701.82983 129.00139,-704.04548 C 131.13133,-706.00119 131.7461,-708.7833 132.08346,-711.50943 C 133.99628,-713.06874 130.06305,-716.2945 133.04885,-717.30923 C 134.97777,-717.98978 136.43496,-718.87067 138.10916,-720.23917 C 139.25147,-721.56998 141.59926,-721.96376 142.51799,-723.91403 C 145.05629,-724.57976 146.31362,-727.22129 146.37985,-729.65967 C 148.38085,-730.6013 149.68587,-731.85671 150.83741,-733.65701 C 152.59471,-734.62137 153.8321,-736.35138 155.92319,-736.47995 C 159.14538,-739.09546 158.41353,-743.98144 158.52256,-747.70256 C 158.13769,-749.79737 159.66835,-752.3849 157.70557,-753.93185 C 156.82628,-756.81109 157.42311,-759.89018 157.66834,-762.8458 C 159.39776,-764.52741 159.35244,-766.83328 160.21382,-768.8173 C 162.69558,-772.47372 159.92601,-777.3327 161.71596,-781.10336 C 164.1286,-780.51583 166.62039,-781.01924 169.04313,-780.71008 C 170.93067,-779.08214 173.9978,-780.10674 175.64099,-777.88172 C 179.48673,-775.27097 185.53269,-773.21353 189.269,-777.12989 C 191.60804,-779.14979 193.98557,-781.22798 196.21287,-783.41268 C 198.59965,-783.95693 199.17416,-786.10375 200.22557,-787.99889 C 200.9715,-789.90274 203.23896,-790.67498 201.00314,-792.86362 C 199.4283,-794.80271 202.49439,-798.72647 198.94232,-799.25508 C 198.31981,-800.50225 196.45005,-802.46125 197.40123,-803.87206 C 200.07582,-803.48455 202.09269,-804.93947 201.97345,-807.76323 C 203.02439,-810.29956 198.2242,-810.85763 202.1543,-812.08768 C 203.47993,-814.29757 206.47321,-812.63554 208.13277,-814.55768 C 211.83769,-815.45437 215.74449,-816.12092 219.60696,-815.73966 C 221.78938,-814.89696 224.14199,-814.09097 226.03893,-815.98083 C 229.10383,-818.46925 233.26015,-815.28612 236.24278,-817.94082 C 238.82431,-819.6784 242.00154,-816.531 244.52354,-818.85397 C 247.01417,-819.67182 249.55923,-819.49666 251.80181,-818.20899 C 253.87078,-819.23096 255.71975,-820.85792 258.19036,-819.62079 C 260.6666,-819.78326 263.15433,-819.23771 265.50408,-818.58581 C 267.66043,-816.91786 270.81539,-819.26718 273.13738,-817.46358 C 275.86723,-817.24134 278.31833,-815.88782 281.06295,-816.92082 C 281.91286,-819.84879 284.60885,-819.02962 286.88885,-818.30793 C 289.64222,-817.65306 292.32251,-817.07144 295.02502,-816.27649 C 296.14213,-813.83712 299.55495,-815.74328 300.64928,-813.08217 C 302.36885,-811.79153 303.57775,-809.61572 306.128,-810.36952 C 310.80699,-810.36113 315.57256,-809.50905 320.16444,-809.50971 C 324.41151,-810.03089 327.6048,-814.54517 332.16874,-813.24169 C 334.53609,-813.28465 336.42788,-815.645 339.03082,-814.84543 C 341.49491,-814.39486 343.94891,-813.6995 346.45492,-813.80601 C 348.53807,-814.69612 350.30365,-816.53034 352.8419,-816.06117 C 355.11477,-816.8469 355.21734,-820.1084 354.84706,-822.07563 C 353.29009,-823.76119 352.14235,-825.81403 352.8419,-828.19742 C 352.77385,-830.89064 355.18074,-834.67941 351.98784,-836.35971 C 351.67741,-838.55939 356.23369,-833.87178 356.41148,-837.40489 C 357.37611,-839.32472 354.18976,-842.3689 357.63217,-842.53501 C 359.50239,-843.53031 360.44892,-847.20534 358.13349,-847.97017 C 358.51798,-850.32344 361.67892,-849.67318 363.48848,-849.60173 C 367.22031,-850.96086 368.90136,-854.91787 371.59429,-857.62426 C 374.63956,-862.06296 378.93762,-865.34025 383.58834,-867.88103 C 386.09203,-868.5698 389.75555,-866.51027 391.2415,-870.06893" id="path5837" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1857.5248,1052.3991 C 1855.544,1049.2743 1860.1391,1050.0986 1859.0495,1048.4703 C 1858.5892,1046.8219 1862.369,1047.2614 1863.5055,1046.2157 C 1864.9475,1042.8304 1867.3443,1039.978 1870.4511,1037.9759 C 1870.7682,1035.1029 1873.2579,1033.1228 1874.4599,1030.5354 C 1875.8798,1029.4206 1877.8789,1029.1359 1879.4827,1028.3527 C 1882.0554,1029.5525 1885.1718,1028.9639 1887.828,1028.1722 C 1889.7837,1027.1351 1888.0921,1023.2291 1891.3657,1024.23 C 1893.1893,1023.9068 1895.1364,1021.4462 1894.6605,1019.5269 C 1893.9668,1017.558 1892.1585,1016.3821 1893.5524,1014.0916 C 1895.025,1012.4279 1892.9546,1009.5139 1894.5119,1008.5185 C 1895.6005,1005.9444 1898.1701,1008.6677 1899.4595,1006.9759 C 1900.5444,1006.5614 1902.9862,1003.4465 1902.9413,1006.3167 C 1903.6362,1007.8627 1906.7083,1007.1649 1907.7686,1009.0021 C 1909.6882,1011.6666 1905.5613,1014.9623 1907.6944,1017.3792 C 1909.563,1018.5382 1907.5691,1014.3599 1908.911,1012.8527 C 1909.7627,1011.2783 1911.7943,1016.1385 1909.4965,1016.3136 C 1910.1639,1018.8165 1913.7389,1014.8332 1913.3015,1017.1104 C 1916.1122,1018.9357 1915.5115,1017.392 1915.8489,1015.2908 C 1917.0699,1012.8227 1920.4765,1014.8433 1919.8741,1017.2177 C 1920.3243,1019.0952 1922.1827,1018.4191 1923.5875,1019.5811 C 1925.5925,1019.8314 1928.2496,1020.115 1925.4639,1022.2741 C 1924.8562,1023.9097 1928.3872,1024.1433 1927.5607,1026.7761 C 1930.1754,1028.023 1928.103,1029.8355 1928.9242,1032.0311 C 1929.0463,1034.0296 1929.5021,1037.4972 1930.4571,1033.7571 C 1930.4124,1031.6382 1932.8351,1029.8923 1932.3444,1028.1532 C 1930.3608,1025.7344 1934.1576,1026.491 1935.3959,1027.0449 C 1938.328,1028.1715 1938.2416,1025.5333 1939.2918,1024.4083 C 1941.2424,1024.8339 1939.3107,1029.1276 1941.3001,1028.0649 C 1942.4616,1028.8733 1940.8851,1032.4697 1944.0161,1030.4089 C 1945.2097,1031.6117 1945.0571,1033.9191 1944.5309,1035.7975 C 1944.2835,1040.7178 1941.1097,1035.5051 1941.2495,1037.1216 C 1940.0125,1039.0494 1942.1385,1041.2949 1940.0376,1042.671 C 1939.4601,1045.039 1940.3927,1048.242 1937.8467,1049.6516 C 1939.5169,1052.1557 1940.9362,1048.8299 1940.7936,1046.9318 C 1942.308,1047.1847 1945.331,1044.0839 1944.308,1047.5037 C 1942.9716,1049.6667 1943.0726,1050.863 1945.2734,1051.1022 C 1946.7427,1051.274 1946.5203,1048.0787 1949.2305,1048.8943 C 1951.349,1049.6639 1952.7338,1052.2304 1955.4109,1051.5852 C 1956.0203,1051.6157 1956.8268,1052.0801 1957.2452,1052.5207" id="path5841" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccc"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1950.7847,1052.2997 C 1950.5863,1052.4441 1950.3324,1052.0798 1950.1422,1052.2997" id="path5843"/> |
<path id="path9433" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1669.878,1422.8997 C 1670.2782,1422.6146 1670.5322,1422.4158 1670.9803,1422.031 C 1674.2639,1422.6327 1673.639,1417.5225 1675.8771,1417.2808 L 1675.7426,1416.7681 C 1675.2294,1413.6273 1672.4769,1414.3692 1671.2667,1416.5816 C 1669.0979,1418.2128 1668.9429,1420.3877 1669.878,1422.8997 z" sodipodi:nodetypes="cccccc"/> |
<path id="path9435" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M -0.53032584,1435.1093 C 0.88079701,1436.2226 3.9639032,1436.6156 3.650463,1439.1605 C 6.3221126,1441.6845 7.1854395,1446.0017 10.780091,1447.591 C 11.958406,1451.5353 12.421487,1445.7038 14.376686,1447.2642 C 14.79211,1449.0653 15.016209,1450.9279 17.201105,1451.5709 C 19.169621,1451.3839 21.322596,1452.5435 22.959861,1450.8135 C 25.644943,1450.8602 28.230957,1451.7923 30.943696,1451.2436 C 34.128603,1451.3399 37.282677,1451.6575 40.375628,1452.3168 C 43.457614,1450.024 47.596638,1450.8238 51.107069,1451.2436 C 53.094336,1452.6839 52.869973,1455.4286 51.088599,1456.9468 C 50.053357,1457.63 46.769396,1460.3457 49.621784,1459.9423 C 51.531563,1458.6202 54.992493,1458.134 54.634868,1455.1096 C 56.020343,1452.9641 59.308156,1454.8798 61.467403,1454.25 C 63.705192,1453.4621 65.344513,1454.3252 66.776066,1456.0751 C 68.491838,1457.2238 68.937996,1459.5918 71.307746,1459.9423 C 74.106417,1461.2008 75.100536,1465.5659 78.845867,1464.668 C 81.505631,1464.9705 84.06491,1464.2042 86.505397,1463.5162 C 89.833576,1463.7595 92.309259,1466.3528 95.073196,1467.6209 C 96.338217,1465.0875 98.554225,1467.185 100.43042,1467.3288 C 102.55834,1466.6866 104.15791,1470.0976 105.80473,1467.7824 C 108.02237,1465.8622 110.13909,1468.8626 112.56291,1468.588 C 114.7485,1469.5302 116.73218,1471.57 119.29387,1470.3786 C 121.20992,1471.3742 123.48135,1471.4467 125.18839,1472.8837 C 129.04999,1474.7268 133.1821,1476.7506 137.4795,1477.0185 C 140.01681,1475.9228 142.11421,1478.4593 144.6834,1478.0385 C 146.96425,1478.1829 149.02068,1479.3319 151.3026,1479.3961 C 153.87468,1479.8208 156.30727,1479.2427 158.75697,1478.468 C 160.6926,1479.2259 162.21759,1480.7763 164.3743,1479.7334 C 165.90625,1479.7874 166.78047,1484.7868 168.07748,1481.4755 C 169.21974,1479.9616 171.9054,1480.3891 173.6586,1479.7033 C 176.25041,1479.3257 178.2674,1481.0339 179.2176,1483.3011 C 180.53332,1483.0428 179.97525,1479.6613 182.63381,1479.8646 C 184.69504,1478.9014 185.96272,1481.7425 187.64684,1482.334 C 189.29815,1480.7144 191.86789,1480.7492 193.99668,1480.0261 C 196.17406,1479.133 198.32317,1481.0028 200.11422,1480.1794 C 204.62076,1478.0912 209.11119,1475.9012 213.60317,1473.7428 C 215.62173,1473.1048 217.59608,1472.6651 219.63986,1472.2986 C 221.57334,1470.8926 223.39497,1471.8953 224.59464,1473.5273 C 225.20903,1472.7393 224.76338,1468.0196 227.11759,1471.1387 C 228.80821,1472.2673 230.46335,1472.8909 232.42971,1472.132 C 231.9986,1471.3127 229.56978,1469.0467 232.84655,1468.2802 C 235.01139,1466.5808 237.3347,1464.0548 240.37633,1464.9362 C 242.45053,1464.9533 243.86437,1464.7428 245.74444,1463.5458 C 247.68034,1463.7025 249.30672,1461.7794 250.95932,1462.3587 C 253.48718,1462.6728 254.05437,1462.9514 255.19221,1464.7158 C 258.85015,1464.9663 255.57474,1466.527 253.93008,1467.0299 C 251.71863,1468.4591 248.79786,1469.6572 247.80305,1472.2927 C 249.85648,1473.2193 249.00492,1475.8146 251.2868,1475.6566 C 252.47929,1474.6823 255.91201,1474.9289 255.11836,1472.5608 C 256.40903,1470.1863 257.90202,1470.3264 258.79361,1472.668 C 261.35575,1473.8092 261.20418,1470.1137 259.87141,1468.9095 C 257.03608,1466.4295 261.1117,1467.3234 262.54508,1467.1914 C 262.23143,1464.6727 264.90024,1464.0532 267.00104,1464.7214 C 269.26239,1464.3447 269.51673,1461.1116 272.12056,1461.2726 C 275.01185,1460.6901 277.05968,1458.4149 279.77492,1457.5796 C 281.21391,1458.5168 285.14463,1457.8892 284.41836,1460.5026 C 283.06986,1463.7383 287.57634,1459.6314 287.94429,1462.5202 C 289.84873,1467.4031 295.85531,1465.5549 299.56427,1467.5084 C 301.68811,1468.75 300.92114,1472.673 298.0818,1471.4342 C 295.74615,1469.5348 294.66515,1470.94 293.38549,1472.7256 C 289.95917,1472.9714 291.66141,1475.0603 294.1828,1474.87 C 293.79294,1477.0303 296.22381,1480.53 296.44562,1476.5134 C 296.99928,1473.1558 299.18206,1477.1849 301.12673,1476.4815 C 303.40906,1476.4122 305.77141,1475.7089 307.92213,1476.7503 C 310.17693,1475.944 312.20993,1476.4614 312.92196,1478.615 C 315.05989,1478.1111 317.23952,1478.0492 319.40357,1478.7962 C 323.44611,1478.6723 327.01384,1480.9383 329.5338,1483.9454 C 331.24532,1486.3909 334.06854,1487.8234 337.07191,1487.8656 C 339.18604,1488.198 340.99785,1489.2499 341.91926,1486.5562 C 343.65241,1485.8684 345.63209,1487.712 347.39506,1488.0269 C 348.6159,1489.5335 350.02731,1490.7234 350.54502,1492.7787 C 352.07349,1495.0864 354.0818,1493.7885 352.5195,1491.4634 C 351.96082,1489.429 352.4637,1486.8762 351.2047,1485.2621 C 349.95746,1483.1101 353.4115,1483.1921 354.33896,1481.8511 C 356.38806,1481.2318 357.95683,1479.9303 358.38655,1477.7168 C 360.65604,1476.9607 362.46197,1477.0254 361.65277,1474.1834 C 362.96,1472.7044 365.56551,1473.8587 367.19725,1473.1283 C 370.07437,1473.9726 372.92878,1472.8725 375.77439,1473.8892 C 378.19402,1473.5217 381.06168,1473.0741 382.00342,1470.413 C 384.74378,1471.1568 384.17086,1468.3442 386.01379,1470.467 C 386.63891,1473.3456 388.90931,1475.1548 391.06393,1476.8038 C 393.71556,1479.3273 391.57439,1483.8939 394.36887,1486.2548 C 395.46978,1485.0718 395.8473,1481.7726 395.16757,1480.0395 C 393.84278,1477.7068 397.86476,1477.9654 399.2333,1477.931 C 401.93257,1480.5002 405.72492,1481.5151 409.35468,1481.2012 C 411.10303,1483.065 413.49955,1483.6422 415.96428,1483.725 C 418.15337,1485.2122 420.49831,1486.4028 422.14469,1488.5639 C 424.20959,1490.624 427.01318,1492.1446 429.6556,1493.2128 C 431.91376,1492.8801 433.00223,1494.9603 434.5472,1495.9739 C 436.5065,1496.8235 438.36997,1497.8032 440.72155,1497.5075 C 443.29136,1497.4153 445.77116,1498.8261 448.24948,1497.3705 C 450.86287,1496.8729 453.59539,1496.3746 456.12145,1495.8071 C 457.35223,1496.8493 457.7642,1499.7212 460.13229,1499.0882 C 462.63348,1497.0745 462.90541,1500.2089 464.48148,1500.8378 C 465.39367,1499.1312 466.77021,1497.5493 468.91654,1497.269 C 471.84145,1496.2825 474.52997,1494.8587 477.54524,1494.261 C 479.294,1492.6903 482.59577,1495.0441 483.15493,1491.9997 C 484.44762,1490.3527 487.78907,1490.6037 489.05924,1492.1077 C 489.26953,1494.1727 494.14961,1495.0517 492.1767,1492.4967 C 489.43776,1491.0813 491.70257,1489.883 493.73795,1489.9059 C 497.23028,1488.7127 497.57815,1484.0271 501.12496,1482.7155 C 503.18137,1481.9641 505.06652,1480.3949 507.18036,1480.1328 C 508.32741,1481.3444 508.25758,1484.8941 510.01222,1483.4508 C 508.91686,1490.0864 512.78295,1489.9748 514.37811,1490.2363 C 517.06221,1492.4204 514.35871,1496.5753 517.58759,1498.133 C 519.66888,1495.4527 522.25262,1496.894 525.10197,1495.627 C 527.28124,1496.0777 532.16404,1497.4811 529.23327,1500.5383 C 530.77206,1502.8183 529.59152,1506.8721 533.95473,1506.3929 C 537.9575,1507.2069 538.39367,1502.3176 538.59998,1500.0768 C 540.94847,1499.07 543.95871,1499.6727 546.31484,1500.4735 C 548.55683,1502.1424 551.47574,1504.1028 554.35184,1503.7307 C 557.2495,1501.6984 560.41685,1504.0484 561.13414,1507.0924 C 560.9578,1510.4687 561.0216,1514.2164 560.90666,1517.3094 C 558.29357,1519.1597 559.90591,1522.909 557.47609,1525.0498 C 558.40159,1527.9866 555.59142,1530.5025 553.94065,1532.3737 C 552.00521,1534.007 547.87895,1535.5847 550.81532,1538.6866 C 552.68387,1540.5801 552.40612,1545.3232 556.18552,1544.6717 C 558.77972,1545.9685 562.02394,1546.5228 564.73141,1546.8038 C 567.9538,1545.3101 564.9611,1541.1706 566.64228,1538.7702 C 565.48723,1535.8718 567.36509,1532.2554 570.32997,1532.1407 C 572.91102,1530.247 577.72504,1530.8944 573.13114,1533.4698 C 571.31208,1535.8195 569.93872,1539.8969 573.72708,1540.9168 C 575.92623,1543.9739 578.1655,1544.5699 581.00291,1542.4456 C 584.22749,1543.556 585.03939,1545.6359 587.81782,1546.8207 C 591.72467,1544.8741 591.88466,1551.3219 593.73051,1550.436 C 596.3868,1547.6294 597.7359,1550.8874 600.43231,1551.8347 C 602.24665,1555.3157 606.79047,1552.1278 609.36574,1554.9345 C 609.85472,1558.0264 613.57367,1559.3585 615.97852,1560.8281 C 618.36349,1563.3259 621.14398,1559.3242 623.39843,1561.3197 C 626.273,1563.0919 629.64569,1561.6731 632.71939,1563.0123 C 636.22983,1562.6117 638.12795,1558.8255 641.88735,1559.4947 C 642.97062,1562.7316 646.24952,1565.6454 644.35343,1569.3199 C 642.2105,1571.2621 645.80484,1575.4752 648.4765,1575.1292 C 652.27424,1573.0668 652.25077,1578.1054 654.84311,1579.1256 C 658.02851,1579.8107 658.83717,1583.4425 660.81432,1585.3945 C 660.43817,1589.5108 663.06893,1588.8972 665.67123,1590.4642 C 663.22292,1594.4638 668.26751,1594.0497 669.38196,1591.6549 C 671.15249,1592.3883 670.01381,1587.9431 672.61032,1586.7355 C 674.69473,1584.187 676.82513,1589.8647 679.66949,1589.6129 C 681.38839,1591.3365 684.98391,1588.2469 687.40496,1590.3955 C 690.36544,1588.5692 691.32792,1585.0138 694.11102,1583.475 C 695.54238,1589.0559 697.1304,1579.1196 697.90551,1581.9606 C 700.34538,1583.4126 702.34689,1586.4842 704.83109,1586.8779 C 708.18164,1585.9267 707.9966,1590.946 711.42893,1591.4316 C 714.26575,1595.5981 716.17076,1589.0447 718.50503,1590.3357 C 716.91966,1593.2581 717.42298,1596.166 720.66526,1597.7324 C 722.52698,1599.6929 722.42894,1603.4439 724.51527,1604.7666 C 728.24891,1603.6512 729.02904,1606.8127 729.37339,1609.5674 C 732.23718,1609.3322 734.74703,1611.7962 737.70812,1610.9199 C 737.8469,1606.3883 741.4146,1609.3809 744.19022,1608.7127 C 746.57001,1606.1465 748.86989,1605.5908 751.72228,1606.4571 C 754.2839,1605.1534 757.49541,1604.3215 759.13034,1602.2875 C 762.23238,1602.1534 764.41698,1604.9435 767.12942,1605.6127 C 771.8933,1604.2283 770.19502,1609.112 772.0775,1611.2968 C 773.74335,1614.8876 777.73553,1612.7195 778.41869,1609.7299 C 776.14,1605.7964 790.06106,1604.7866 784.26591,1604.7333 C 786.07241,1607.0344 787.35846,1607.9344 788.27767,1610.2835 C 790.434,1610.125 793.72892,1611.6461 796.35948,1610.1239 C 798.07471,1606.8947 801.42823,1612.8819 803.42474,1609.0696 C 805.7291,1608.2641 808.79818,1610.04 811.52835,1610.0235 C 813.52972,1606.9167 814.69197,1609.8007 817.98121,1610.4024 C 820.55925,1608.8356 823.6116,1612.812 823.42643,1607.883 C 823.87772,1604.5454 822.78932,1600.9821 820.09531,1598.9726 C 817.7011,1598.5112 823.6604,1595.5852 819.70468,1593.7649 C 821.8462,1592.1561 822.38765,1589.7074 822.05417,1586.4293 C 820.34081,1583.1633 824.48177,1581.3411 826.68045,1580.3952 C 830.25407,1577.8486 831.30215,1584.288 834.83083,1583.3307 C 837.23711,1584.2261 840.75659,1581.5506 842.10068,1584.8091 C 845.18861,1585.2015 847.0781,1586.479 849.89547,1588.1766 C 852.81545,1588.0609 854.40385,1594.1092 857.08384,1591.7562 C 859.31199,1587.9481 861.78834,1592.6878 863.86765,1593.1789 C 866.9754,1592.0668 868.94324,1593.9933 871.91324,1594.5303 C 875.27369,1592.1428 877.06656,1595.5737 879.65106,1597.1009 C 883.00033,1598.8738 880.24045,1602.7233 883.07232,1604.8491 C 885.20054,1608.0085 887.53883,1607.045 890.06603,1605.6454 C 892.88357,1604.8627 894.51459,1604.582 897.59264,1606.1891 C 900.05461,1605.6136 903.69205,1607.0433 905.64682,1605.6069 C 910.79109,1605.0079 908.01184,1608.7774 910.18671,1610.6208 C 914.024,1609.7678 913.70725,1613.9609 915.14433,1616.1331 C 918.30915,1618.4326 916.57537,1623.1719 919.14121,1625.5927 C 919.65585,1628.596 925.85737,1627.5119 924.36381,1624.1485 C 922.41812,1622.5899 925.57791,1615.9035 927.42768,1619.0876 C 930.44705,1620.6659 934.38804,1614.9633 937.3557,1618.8228 C 937.81957,1622.2756 941.60244,1622.1896 944.01662,1623.121 C 946.78302,1622.0798 948.80718,1624.7577 951.79801,1623.008 C 953.75706,1624.1697 959.21206,1624.0875 957.17882,1627.0043 C 954.64016,1630.0286 960.30075,1630.6695 962.39867,1630.935 C 965.86951,1634.2668 958.72922,1632.1561 958.1236,1635.0454 C 957.44303,1637.3794 955.94992,1640.1852 955.8183,1643.0065 C 955.85713,1645.0332 956.5299,1648.2937 959.32315,1647.0313 C 961.97649,1648.7458 965.06353,1647.7243 968.10153,1648.3296 C 971.08581,1648.9357 972.09903,1652.7118 975.19324,1653.264 C 976.62911,1656.1892 979.87615,1656.2323 982.14577,1655.3046 C 984.22696,1655.1158 985.09003,1658.6506 985.78324,1661.1285 C 986.19212,1663.9846 986.4391,1667.5319 988.51719,1669.848 C 990.73972,1671.4032 993.06408,1674.7114 995.87083,1672.3249 C 997.8956,1673.0721 1001.6584,1671.4852 1002.8548,1670.3148 C 1003.007,1667.7702 1007.469,1667.2699 1007.2253,1663.441 C 1008.3387,1660.8832 1012.1043,1659.7817 1014.8776,1660.5 C 1017.9728,1662.4646 1021.2093,1659.195 1024.2557,1658.0047 C 1026.7993,1658.6597 1029.3602,1660.2433 1031.9056,1660.5161 C 1034.961,1661.3758 1035.8754,1663.0758 1038.3797,1664.6057 C 1041.0494,1665.1408 1043.3972,1667.0655 1046.4289,1666.5413 C 1046.1545,1669.1418 1049.6537,1671.4809 1051.1121,1673.5712 C 1052.6016,1675.9339 1056.089,1675.1376 1058.2676,1677.0704 C 1062.0909,1678.2908 1060.2295,1671.2315 1064.4401,1672.3185 C 1066.4688,1674.2452 1069.6514,1674.778 1072.6666,1674.9457 C 1075.1076,1676.0801 1080.3413,1676.4383 1076.5947,1672.7748 C 1075.3324,1670.072 1073.0904,1667.0267 1076.7982,1666.8505 C 1076.4424,1663.1306 1081.3347,1664.8212 1082.6383,1661.7763 C 1085.0991,1660.4224 1088.0975,1661.8428 1090.5954,1662.9696 C 1093.4746,1661.5513 1094.6571,1658.9974 1097.5289,1657.9056 C 1098.0287,1654.8572 1104.2245,1653.6444 1103.0706,1654.2315 C 1105.6954,1655.1016 1109.4905,1656.3221 1109.6932,1652.475 C 1111.8837,1647.3718 1114.32,1654.419 1116.4274,1652.5014 C 1118.4637,1649.736 1120.8731,1653.547 1123.5758,1651.4582 C 1124.282,1653.8387 1126.0268,1656.8907 1128.5327,1658.1033 C 1130.3901,1662.0714 1133.391,1657.4151 1136.1387,1658.5517 C 1137.6198,1659.7145 1139.132,1658.6633 1140.9291,1658.4145 C 1140.8619,1658.9238 1140.7154,1659.6002 1140.5605,1660.0982 C 1140.2508,1661.0941 1139.8192,1662.0837 1139.4909,1663.0989 C 1138.9991,1665.6945 1138.8422,1668.3806 1140.4545,1670.5497 C 1140.7937,1672.5261 1142.9713,1673.5736 1143.128,1675.7577 C 1144.0911,1677.8265 1145.4667,1673.1178 1147.5581,1674.5765 C 1150.2107,1673.5949 1150.0541,1677.1709 1152.1515,1677.1005 C 1153.8562,1675.0003 1156.4154,1677.4118 1157.8701,1678.6038 C 1158.607,1680.7421 1156.0688,1682.295 1156.3829,1684.4808 C 1153.7359,1685.6379 1156.3091,1689.5806 1153.7111,1691.0617 C 1151.9367,1692.2362 1151.2763,1694.1473 1148.5859,1692.7908 C 1146.9185,1693.08 1145.2743,1695.4246 1143.4994,1693.3716 C 1141.1592,1693.7964 1140.327,1691.6781 1138.5881,1690.8122 C 1135.1649,1691.5072 1134.3679,1695.8787 1133.4362,1698.7412 C 1132.8047,1702.6437 1132.7853,1706.6915 1133.0649,1710.6086 C 1133.6575,1714.0937 1137.1025,1715.5797 1139.7861,1717.0521 C 1142.3795,1719.6339 1145.896,1722.6185 1144.7064,1726.7803 C 1143.5751,1729.4412 1142.4528,1732.1649 1143.4623,1735.0415 C 1143.608,1737.9685 1144.876,1740.5889 1147.2128,1742.3441 C 1149.8963,1744.9529 1145.7771,1747.5258 1146.2844,1750.4531 C 1144.9353,1752.4341 1144.9574,1755.1138 1142.9053,1756.6282 C 1142.0433,1758.9416 1141.1453,1761.465 1138.5235,1762.2672 C 1136.7685,1763.6997 1135.2074,1766.3982 1132.5079,1765.3815 C 1129.1419,1767.058 1127.5636,1770.7997 1125.2857,1773.6088 C 1124.8435,1775.67 1122.9825,1776.881 1121.665,1777.5712 C 1118.451,1779.3064 1115.0624,1781.4082 1112.6786,1784.3909 C 1110.8329,1786.034 1109.6459,1788.3663 1106.9972,1788.8478 C 1105.5506,1789.6051 1103.8742,1790.7347 1102.0585,1790.3513 C 1099.3715,1790.7932 1096.0573,1791.5664 1095.5601,1794.755 C 1094.5431,1796.4277 1091.6165,1795.9317 1091.0669,1798.2981 C 1089.877,1801.2027 1085.9443,1800.0431 1084.3829,1802.7018 C 1082.957,1804.4221 1081.0129,1805.3961 1078.7758,1805.3866 C 1073.2578,1807.2076 1070.0083,1812.8171 1064.2937,1814.1399 C 1059.592,1815.6419 1055.4927,1818.532 1051.3713,1821.1202 C 1046.9907,1822.6036 1043.5988,1825.7979 1040.2313,1828.7455 C 1036.1882,1831.1777 1032.3508,1834.2231 1027.5687,1835.1363 C 1025.1868,1835.9518 1023.4143,1837.73 1021.5159,1839.2711 C 1019.0605,1843.0183 1017.6046,1847.3629 1015.426,1851.2993 C 1014.937,1853.3796 1013.6748,1854.8356 1012.1396,1856.1446 C 1009.1813,1860.7891 1007.2287,1866.5983 1001.8724,1869.1274 C 997.83731,1871.6324 993.5179,1875.6885 988.35579,1873.9606 C 983.62249,1874.8586 978.43405,1874.2564 974.09653,1876.6453 C 970.93,1879.0088 967.05842,1879.8 963.17932,1879.7056 C 959.81525,1881.3225 956.42128,1883.0521 952.63336,1883.1968 C 949.80299,1883.3018 947.8353,1885.7218 945.16957,1885.506 C 940.27988,1886.8701 935.0899,1886.374 930.13047,1887.4924 C 925.15767,1887.7779 920.93565,1890.555 916.42819,1892.2716 C 913.5485,1894.3888 910.99727,1897.7925 906.99628,1897.4268 C 904.5157,1897.522 901.79157,1896.9585 899.86667,1898.8764 C 897.37823,1899.396 895.23856,1900.7012 893.14552,1902.0446 C 891.06422,1901.2905 889.35682,1902.2277 887.72924,1903.4893 C 885.87098,1905.451 886.63104,1909.014 884.41919,1910.6899 C 881.42018,1909.637 878.42896,1906.6105 874.913,1908.2206 C 871.89521,1909.1664 868.67275,1909.3891 865.92666,1911.1195 C 862.62697,1912.1732 859.54444,1913.9579 857.7573,1917.0272 C 856.26823,1918.7884 854.33819,1920.909 852.61515,1922.4515 L -0.4375,1922.5062 L -0.53032584,1435.1093 z" sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/> |
<path transform="translate(-6.2528328e-2,869.73772)" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 344.11344,-870.02473 C 341.78177,-868.76652 338.3336,-867.74341 337.80289,-864.65938 C 337.92603,-861.89553 335.53834,-860.85825 333.42125,-861.16873 C 332.31791,-859.27064 335.56638,-857.67743 334.42365,-855.42243 C 334.07255,-852.73482 331.52195,-849.48979 328.59379,-851.23364 C 325.5217,-851.18951 322.90073,-849.77393 320.53579,-847.95848 C 317.8493,-846.81336 315.17159,-850.63045 312.84913,-847.95848 C 309.42089,-847.09817 305.97841,-848.47489 302.52609,-847.85115 C 300.40716,-849.05123 298.04525,-848.8476 295.61921,-848.81764 C 292.33387,-849.64223 289.28237,-851.34656 285.85315,-851.12695 C 282.8151,-851.87894 282.99888,-855.71892 280.0619,-856.54318 C 278.44765,-857.91695 277.1961,-859.6575 275.08549,-860.52325 C 273.28449,-862.10658 272.3912,-865.04607 269.44014,-865.03488 C 267.74661,-863.59509 265.36864,-864.13983 263.49872,-865.08821 C 263.20451,-867.53927 260.51393,-867.71975 260.00873,-870.11312" id="path5839" sodipodi:nodetypes="ccccccccccccccc"/> |
<path id="path9431" style="fill:#e0e0e0;stroke:#0978ab;stroke-width:0.69999999000000002;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 2000.6187,1363.4893 C 1997.2657,1360.8108 1997.8412,1366.1431 1995.6752,1365.7006 C 1992.9297,1363.8335 1991.0411,1360.8802 1987.9144,1359.5253 C 1987.8596,1356.3343 1984.8443,1357.8185 1983.3083,1356.4945 C 1981.9977,1355.1647 1980.3477,1351.659 1978.2969,1353.6184 C 1979.1744,1355.8399 1976.0465,1356.8599 1978.7072,1358.7434 C 1980.9884,1360.0139 1980.101,1361.7991 1979.0395,1363.4455 C 1980.7532,1363.7955 1981.9455,1367.403 1978.8647,1365.7958 C 1977.9947,1364.2245 1978.0829,1361.805 1975.809,1361.2436 C 1972.4802,1360.1739 1970.1798,1357.4424 1967.0825,1356.0889 C 1964.0269,1355.9963 1965.5793,1351.1393 1962.3055,1351.2697 C 1961.1731,1349.3593 1958.8089,1348.55 1957.0937,1347.1209 C 1954.6736,1346.0295 1953.861,1349.6962 1951.7927,1347.1138 C 1949.7367,1345.9425 1950.2698,1343.7674 1949.8155,1342.1809 C 1947.7281,1341.7773 1946.5609,1339.9333 1945.0859,1339.0306 C 1944.2385,1335.9951 1941.2659,1335.1195 1938.5639,1334.555 C 1935.7785,1333.9898 1936.1751,1330.2133 1933.9594,1329.2928 C 1932.4155,1331.1004 1929.8502,1329.5143 1928.0532,1329.037 C 1927.3763,1327.4869 1926.19,1324.0381 1924.0819,1326.0712 C 1923.1319,1325.8478 1920.7476,1323.8104 1921.6203,1322.3395 C 1920.7014,1320.1827 1918.2193,1318.9615 1916.8781,1316.9424 C 1913.3025,1314.2006 1908.8954,1312.6874 1904.8097,1310.8738 C 1902.8975,1308.6927 1901.8422,1309.5013 1900.7673,1311.6742 C 1899.5205,1313.4004 1900.0102,1315.8734 1900.4279,1317.8547 C 1898.1546,1317.3791 1896.2078,1315.2865 1893.7809,1314.7404 C 1890.6793,1314.5067 1891.8034,1311.5644 1891.613,1309.5133 C 1890.9577,1305.0447 1885.6384,1305.8373 1882.5298,1304.215 C 1879.3491,1302.9049 1875.5875,1303.92 1872.7264,1301.6377 C 1870.5585,1300.7571 1868.1508,1302.4838 1866.1537,1300.7252 C 1864.4694,1300.5867 1863.4895,1295.9758 1862.3326,1298.4904 C 1861.9652,1300.6215 1858.7164,1298.0646 1857.2046,1297.933 C 1856.1036,1297.3172 1850.4399,1296.7938 1852.7115,1296.9665 C 1856.6055,1296.6523 1852.0125,1294.7596 1850.3291,1295.0177 C 1847.6949,1295.7312 1845.2598,1294.8969 1842.7125,1294.2499 C 1839.3756,1293.947 1838.2191,1297.9607 1835.1102,1298.47 C 1833.8798,1300.1692 1832.4471,1301.7384 1830.0861,1301.3162 C 1825.7874,1301.1079 1825.4391,1306.8937 1821.3443,1307.4159 C 1818.8674,1307.2235 1818.4218,1309.5864 1816.3577,1310.0153 C 1814.712,1311.9465 1812.3478,1312.6924 1809.9708,1313.4511 C 1808.4404,1314.6708 1808.1494,1317.0114 1806.1089,1317.8007 C 1804.8106,1319.4583 1801.8274,1321.1757 1802.6184,1323.4397 C 1804.3373,1325.2652 1802.0621,1327.5702 1801.8014,1329.5617 C 1799.5949,1330.4933 1797.8571,1332.6426 1799.2286,1335.0842 C 1800.5596,1337.4609 1798.3429,1339.0969 1796.8998,1340.5694 C 1792.9127,1341.1097 1789.7698,1344.2629 1785.6679,1344.493 C 1781.5675,1345.4887 1779.8535,1349.4541 1778.036,1352.7592 C 1775.0725,1355.0214 1775.5524,1359.3594 1775.6967,1362.6397 C 1776.8288,1365.5673 1772.2583,1365.5706 1772.1185,1368.3135 C 1770.646,1370.9611 1766.7935,1371.7986 1766.4876,1375.2597 C 1765.5312,1377.4872 1768.5981,1379.5781 1767.3789,1381.4882 C 1765.0427,1381.7934 1762.8914,1382.9474 1762.3286,1385.4617 C 1761.745,1387.6113 1758.4829,1386.6277 1757.4641,1388.684 C 1756.2829,1390.4989 1755.943,1393.3003 1753.1567,1393.4093 C 1749.4752,1393.5073 1747.0454,1396.8119 1743.6133,1397.6514 C 1742.3283,1399.8388 1740.4155,1401.5736 1737.7091,1401.5716 C 1735.3136,1402.7282 1732.8141,1403.0935 1730.1741,1403.4028 C 1727.9694,1403.6294 1726.2415,1404.9292 1724.5639,1406.1899 C 1722.4184,1405.9948 1720.3167,1405.55 1718.2465,1406.6421 C 1716.2142,1407.2318 1714.7922,1408.8255 1713.5352,1410.3782 C 1711.484,1410.2796 1708.6147,1409.2915 1707.7423,1411.989 C 1705.9425,1413.1885 1704.038,1413.7696 1701.9155,1412.7354 C 1698.2469,1411.679 1693.6414,1409.566 1690.4011,1412.6874 C 1689.0059,1413.327 1688.2608,1413.0089 1687.5463,1412.5117 C 1687.2246,1409.3695 1684.892,1407.1191 1684.5618,1403.8942 C 1683.4505,1400.2954 1680.5484,1394.9404 1685.0538,1392.5096 C 1687.0574,1390.9027 1690.5293,1389.9981 1690.0482,1386.7645 C 1691.4755,1384.4373 1690.4738,1379.9601 1694.2722,1379.797 C 1697.5735,1379.5115 1697.9227,1375.3503 1700.7705,1374.158 C 1702.7516,1372.6103 1704.9676,1370.7993 1703.8341,1367.9558 C 1702.7377,1364.4483 1707.089,1364.2348 1708.1787,1361.9829 C 1709.6105,1359.4191 1711.5878,1355.0797 1708.0488,1353.2028 C 1705.108,1351.3429 1701.8213,1347.2878 1704.6417,1344.047 C 1702.199,1342.1186 1707.6883,1339.0875 1703.6432,1338.7149 C 1701.0179,1336.9214 1699.6668,1338.7441 1698.0704,1339.8848 C 1698.0922,1342.7696 1696.5363,1343.3334 1693.8823,1342.5828 C 1691.3035,1341.5128 1690.3404,1344.2482 1688.2597,1344.3017 C 1683.7515,1343.6967 1680.4042,1349.0358 1675.7705,1347.3621 C 1674.439,1349.3558 1672.2913,1350.9015 1670.0425,1348.8795 C 1667.8686,1347.0484 1663.7141,1350.846 1663.1173,1346.7447 C 1662.5034,1341.9851 1657.0504,1345.1417 1654.1496,1343.8052 C 1651.9243,1342.2032 1650.6416,1337.5966 1647.3634,1339.2274 C 1644.1497,1338.3871 1643.8496,1333.8691 1640.4751,1333.2263 C 1639.0308,1329.9633 1636.0043,1335.971 1634.9561,1332.012 C 1633.3748,1329.97 1630.3418,1329.8418 1628.5831,1327.8298 C 1626.0337,1325.4831 1623.1368,1329.8881 1620.8873,1327.574 C 1617.1595,1326.7008 1618.5184,1321.7173 1616.4868,1319.238 C 1615.161,1317.1323 1610.9042,1317.0548 1612.1329,1313.6929 C 1612.1135,1310.4411 1607.4445,1309.5475 1607.6305,1306.1749 C 1605.2222,1305.2848 1604.1746,1303.8198 1605.4339,1301.4649 C 1607.0904,1299.3223 1605.5198,1297.1113 1605.9427,1294.9102 C 1607.2389,1292.6637 1610.7676,1293.4844 1612.0215,1291.784 C 1610.5671,1289.8478 1607.7484,1288.9482 1607.5562,1286.3471 C 1603.89,1284.7123 1601.9778,1280.5258 1601.6521,1276.7346 C 1601.2995,1274.4429 1601.9235,1272.4029 1604.0472,1271.2443 C 1604.5464,1267.9884 1609.0995,1269.5339 1609.4222,1266.3036 C 1611.5603,1265.1839 1612.2722,1263.4932 1612.2856,1260.9115 C 1613.0304,1258.3768 1614.7773,1257.94 1615.2987,1256.5974 C 1613.2713,1254.0832 1613.5336,1250.779 1615.8185,1248.5559 C 1617.78,1244.6208 1622.5301,1244.1341 1626.0859,1246.1273 C 1629.0137,1247.7525 1629.9215,1245.8875 1628.4809,1243.3743 C 1629.2892,1238.9346 1622.6854,1238.5762 1623.3472,1234.0712 C 1624.0079,1231.108 1623.9665,1227.4891 1621.3791,1225.4794 C 1621.8527,1223.7155 1626.2414,1221.3012 1623.0317,1220.0827 C 1621.4006,1218.9018 1621.4303,1215.9975 1618.6034,1216.015 C 1615.9927,1214.4667 1612.2744,1211.8834 1609.8493,1215.1025 C 1606.813,1216.2028 1603.3132,1214.6067 1600.6309,1213.2222 C 1598.2052,1210.7976 1595.7379,1208.3744 1592.3315,1207.477 C 1591.1569,1205.286 1587.9793,1205.5605 1587.727,1202.9525 C 1589.4743,1200.6603 1586.4119,1199.0802 1588.1541,1197.4081 C 1590.1784,1194.8559 1588.0679,1191.5071 1587.2921,1189.0474 C 1588.6517,1187.0953 1588.2335,1184.8605 1585.7961,1184.185 C 1583.0205,1182.7122 1578.168,1185.5523 1576.9677,1181.3922 C 1576.1649,1178.7566 1578.4321,1174.7049 1574.721,1173.6601 C 1574.5571,1171.6218 1571.4969,1170.1928 1572.6992,1168.5024 C 1574.055,1165.6023 1578.3765,1166.8211 1579.2234,1163.4973 C 1581.4301,1162.0349 1583.7322,1162.2527 1586.1488,1162.7861 C 1588.2217,1161.6608 1589.6712,1157.1736 1592.443,1159.7791 C 1594.5383,1161.6687 1598.2593,1160.3816 1599.1548,1163.7931 C 1600.7967,1166.0161 1603.4315,1163.9462 1605.5232,1163.9004 C 1609.7167,1162.3552 1603.6143,1159.8427 1606.3959,1158.2081 C 1608.5498,1158.2101 1610.5896,1157.5911 1612.5879,1156.9863 C 1613.6726,1154.8581 1614.7149,1153.5947 1615.1965,1151.4295 C 1615.7,1149.8846 1619.3362,1149.8007 1621.0881,1148.797 C 1623.6737,1149.6996 1625.2623,1146.5781 1627.4228,1146.8107 C 1628.302,1149.852 1630.1821,1149.8285 1631.1546,1146.7702 C 1632.0713,1144.9495 1633.5209,1141.4125 1636.0747,1143.1594 C 1638.5013,1138.4968 1634.8206,1133.845 1634.1438,1129.2778 C 1634.8489,1126.77 1638.3552,1128.6093 1637.096,1124.7538 C 1639.4736,1123.2009 1640.6841,1121.5292 1640.9679,1118.6746 C 1641.8547,1116.9813 1645.1605,1113.2026 1641.3778,1113.0656 C 1639.4507,1112.2773 1638.5224,1110.1137 1636.0098,1110.0537 C 1632.5932,1108.3504 1633.7677,1103.1868 1630.412,1101.1531 C 1628.8269,1100.0643 1625.2329,1101.6081 1626.0301,1098.3069 C 1626.0839,1096.2592 1621.9809,1097.0581 1620.6436,1095.3785 C 1618.4875,1092.1753 1617.7301,1087.8098 1618.6685,1084.0227 C 1617.3031,1082.0664 1615.5842,1080.3297 1616.9054,1077.6869 C 1616.3712,1075.4574 1621.1904,1072.702 1617.6194,1071.5115 C 1616.0583,1069.3392 1614.2724,1068.0075 1611.5486,1069.2089 C 1609.3977,1069.6275 1608.0608,1066.7412 1608.2247,1064.9067 C 1605.142,1063.9674 1600.8684,1064.6697 1599.5077,1060.8393 C 1598.2503,1058.5562 1595.2246,1057.1603 1595.8499,1054.0192 C 1595.2976,1049.3769 1594.0899,1044.6542 1595.6086,1039.9903 C 1595.2344,1036.704 1599.038,1034.3489 1601.4907,1036.8638 C 1604.5584,1038.318 1601.3091,1031.733 1604.9834,1033.3177 C 1609.3674,1035.9897 1613.9563,1032.0402 1617.8236,1030.1767 C 1620.5565,1027.7744 1620.8254,1023.859 1622.4004,1020.9141 C 1626.2625,1019.5129 1623.4929,1018.2525 1623.9785,1015.2751 C 1625.8362,1012.2123 1618.9729,1012.5361 1621.732,1009.932 C 1622.3343,1006.5019 1618.0965,1005.2662 1616.8767,1002.4545 C 1615.025,999.91654 1611.7372,998.19245 1611.2881,994.82988 C 1608.1847,994.04562 1606.5082,999.21475 1603.3788,996.96355 C 1601.7611,994.46706 1606.7961,991.53942 1603.2302,989.95608 C 1603.6159,988.05898 1606.5138,986.90202 1605.8389,984.25029 C 1604.2603,982.422 1600.6957,983.70325 1598.9134,981.51147 C 1596.5525,981.87068 1592.3619,981.56004 1592.8236,978.30332 C 1591.7709,975.31131 1595.4986,973.00365 1594.4528,969.77886 C 1593.0161,964.41828 1599.1999,961.55337 1600.5658,957.10627 C 1600.7244,953.51076 1597.2694,951.77696 1596.1283,948.66182 C 1594.071,946.49293 1591.106,944.12929 1590.7744,941.05217 C 1592.2448,938.94946 1596.3055,938.1168 1595.3579,934.72674 C 1596.6124,931.89294 1596.3866,927.17586 1592.443,926.95411 C 1586.9815,924.77584 1581.3782,923.0101 1575.5286,922.17497 C 1572.3337,921.21671 1569.4021,924.17644 1566.0689,922.93964 C 1561.1678,922.24511 1555.549,922.56381 1552.2181,926.75229 C 1549.1519,930.31372 1544.6722,932.34531 1539.9826,931.93459 C 1535.7721,931.61078 1530.9804,933.20069 1529.4275,937.47905 C 1526.8136,939.53535 1523.8019,941.4387 1523.1054,944.99701 C 1521.3351,947.359 1522.8534,948.81772 1525.25,949.37365 C 1526.7204,951.18515 1522.9724,952.50179 1525.1107,954.67628 C 1525.8729,956.35115 1527.6474,960.6779 1529.2232,957.36094 C 1531.1435,956.08693 1532.2054,959.80623 1532.2775,961.26825 C 1529.2275,964.12509 1525.2272,966.2902 1521.7316,968.69154 C 1521.0435,970.90471 1516.8657,970.65993 1517.8605,973.726 C 1517.7992,976.28094 1514.273,976.74353 1512.9402,978.66598 C 1510.5037,979.50654 1506.9906,980.81381 1505.17,978.19664 C 1502.9895,978.02626 1500.854,978.52161 1499.3679,980.14248 C 1496.7866,979.61848 1493.9958,978.83209 1491.6348,980.69298 C 1488.1769,982.36323 1491.4576,979.39411 1492.0898,977.79349 C 1493.5144,975.95252 1495.0009,974.46944 1492.5446,972.75902 C 1490.9158,971.38986 1487.6975,969.08466 1490.4745,967.01322 C 1493.4819,963.92919 1497.8364,963.02689 1501.3731,960.91908 C 1503.4596,961.80589 1504.9579,961.02197 1506.5707,960.40776 C 1509.8354,960.21515 1508.4133,956.16051 1507.1009,954.46079 C 1505.9032,951.86717 1509.7426,950.39348 1509.1061,948.05799 C 1510.8731,945.23769 1512.0315,941.96352 1513.7479,939.05004 C 1513.7917,935.1401 1509.3199,934.04174 1507.2122,931.42476 C 1505.8098,930.18449 1501.2606,929.29751 1503.7794,927.32731 C 1507.0386,924.97207 1500.9426,921.30693 1504.4273,918.71083 C 1506.7621,916.25352 1508.5154,913.50944 1509.4219,910.22705 C 1510.2553,907.60989 1513.0378,906.75747 1514.277,904.52125 C 1512.8267,902.63896 1509.1679,900.8487 1510.1274,898.17161 C 1515.1013,894.75176 1518.9136,890.02875 1523.5232,886.16968 C 1526.9753,883.48997 1529.1237,879.0195 1533.7907,878.03439 C 1536.4806,876.81834 1540.1525,876.11425 1541.0038,873.01343 C 1543.7734,872.97277 1542.5544,869.13527 1545.5154,869.46961 C 1548.733,869.1942 1549.7818,865.96168 1551.5777,863.84481 C 1552.1416,861.25531 1546.5053,860.42446 1549.2659,857.44069 C 1549.6228,854.93003 1550.2156,852.45017 1552.0789,850.52722 C 1553.6855,845.74512 1551.5358,840.89372 1548.6998,837.1028 C 1550.4104,834.33205 1553.102,831.78897 1555.5508,829.47734 C 1557.7291,829.1723 1560.1384,829.44887 1562.3091,828.25503 C 1566.052,827.56296 1569.0471,825.11535 1572.8178,824.49687 C 1576.2066,822.32387 1577.283,816.89759 1582.0641,816.91142 C 1584.8614,815.83265 1583.9792,812.78484 1581.8765,811.55248 C 1582.4906,810.87128 1582.3119,807.81178 1584.304,806.855 C 1586.1986,806.51242 1589.6438,806.12177 1587.9406,803.33916 C 1588.3861,800.9877 1591.9494,801.61854 1593.5291,800.03635 C 1596.6973,798.85107 1598.0542,795.40653 1601.123,794.18405 C 1598.9291,792.66311 1600.555,791.12866 1602.8262,789.73859 C 1604.9426,786.8368 1607.6492,784.21174 1610.8612,782.54412 C 1612.4587,781.70488 1614.0456,779.73847 1614.4168,778.07414 C 1613.6984,776.02822 1614.8041,773.57469 1613.4327,771.50918 C 1613.7729,769.18274 1617.4916,770.66253 1619.0396,768.78354 C 1621.2263,768.8726 1623.0074,766.98257 1621.6948,764.90373 C 1623.1672,763.13256 1626.5573,764.73186 1627.2834,761.80291 C 1628.0085,760.26583 1626.7212,757.58645 1625.3064,757.15859 C 1623.6601,755.4029 1621.7235,755.55139 1619.7267,757.06426 C 1615.5622,758.12657 1611.2805,757.68506 1607.1014,757.99026 C 1603.9322,759.71155 1605.1855,754.99151 1606.7487,754.01695 C 1609.8347,754.05662 1608.467,748.85786 1611.8452,749.80164 C 1614.7002,748.9833 1610.5651,743.56263 1614.5188,744.14918 C 1616.9468,744.71202 1617.6371,741.25694 1620.2559,741.77319 C 1623.2702,739.53071 1618.7828,737.15818 1619.2719,734.59156 C 1617.6836,731.5938 1621.9669,733.09219 1622.9295,731.08741 C 1624.5999,730.52293 1626.3459,733.11457 1628.4068,732.91308 C 1632.0104,735.35656 1635.8987,729.28365 1639.3147,732.71191 C 1641.0351,734.87883 1644.1419,731.75067 1645.3953,733.57091 C 1643.8087,735.6132 1642.854,737.80992 1643.0283,740.46033 C 1641.8293,743.27734 1646.5364,743.55753 1648.3474,743.29067 C 1651.4335,742.44172 1649.689,748.38112 1652.5487,746.15312 C 1654.2181,744.52995 1656.5014,744.76124 1658.2992,743.85401 C 1660.0936,742.95271 1662.9532,743.14976 1664.8052,744.12942 C 1667.1429,744.73557 1669.3235,744.64832 1671.0638,742.98201 C 1673.7321,742.61326 1674.102,738.98186 1676.8658,738.65887 C 1679.3773,736.29112 1675.5823,735.69584 1674.5822,734.24223 C 1674.7522,730.81529 1678.4745,732.84377 1679.7158,734.44356 C 1682.3686,734.93759 1685.5186,731.42259 1682.8444,729.26193 C 1681.4771,726.1346 1687.394,729.9135 1686.6041,726.10645 C 1687.2224,723.36023 1680.9802,725.43463 1684.2047,722.61795 C 1685.6809,720.42947 1690.4767,721.54676 1689.9833,718.22632 C 1691.2015,715.62003 1696.0073,718.26188 1694.9035,714.41368 C 1694.9399,711.64293 1691.6471,710.15376 1692.0534,707.19155 C 1689.892,704.29273 1685.3949,702.82018 1685.4066,698.6396 C 1684.6485,696.20106 1684.6788,693.52612 1687.2353,692.23614 C 1690.1608,690.04931 1689.3625,686.3682 1687.7274,683.6442 C 1685.7726,678.90687 1688.1422,673.49706 1691.283,669.81727 C 1692.7151,666.94396 1687.9385,663.05657 1692.0163,661.31932 C 1695.5602,659.71326 1693.4021,655.95544 1693.9567,653.13003 C 1696.9178,649.98164 1700.853,646.01326 1698.8145,641.25948 C 1697.1151,637.219 1691.5647,635.32617 1692.1278,630.362 C 1692.1721,627.2085 1692.3997,623.95343 1693.1397,620.84355 C 1692.5892,617.18154 1697.6461,616.33028 1696.7695,612.70892 C 1697.5468,608.76392 1700.4691,605.59216 1701.931,601.83417 C 1703.6754,599.06341 1707.3353,597.57918 1707.5567,593.84687 C 1708.835,590.22272 1706.1568,584.88058 1710.5366,582.89359 C 1712.9471,581.5911 1716.8634,579.64971 1714.9835,576.25998 C 1714.11,572.07973 1712.6365,567.81191 1714.4821,563.64055 C 1715.1125,559.6228 1719.3105,556.60263 1717.8241,552.25662 C 1716.9846,548.30833 1723.4474,549.21688 1722.6793,545.18232 C 1722.4612,540.85639 1721.8451,536.52238 1721.7695,532.22674 C 1723.7603,529.11834 1724.1684,525.23952 1726.1978,522.25295 C 1730.4221,520.30251 1733.8672,517.31957 1736.9942,513.91583 C 1740.3246,511.77345 1743.0967,507.83356 1742.1929,503.69957 C 1743.334,499.8861 1749.5811,505.06494 1749.7867,500.14225 C 1748.7647,495.92793 1753.8923,496.48024 1756.3686,495.30961 C 1761.7976,492.30822 1759.9394,485.12774 1763.1176,480.55537 C 1764.2056,475.22721 1769.2337,472.04507 1770.7485,466.83512 C 1772.2989,465.44735 1778.385,462.81571 1773.0972,462.96913 C 1770.8447,464.05877 1768.7035,461.56638 1766.2091,461.94929 C 1763.0175,461.57363 1760.2118,459.57841 1756.8606,459.66649 C 1754.0734,457.94635 1752.1412,454.95418 1748.7006,454.17536 C 1746.5603,452.6284 1742.9411,453.90587 1742.0167,450.91387 C 1739.7691,448.61064 1737.5519,448.33868 1735.4101,450.76587 C 1732.6694,448.09999 1730.0931,452.47827 1727.5345,450.45721 C 1724.5654,450.83699 1722.3756,445.48217 1720.0799,447.86572 C 1718.0842,448.89214 1714.8981,451.00458 1713.0803,449.03422 C 1710.6744,448.00418 1707.8681,448.71978 1705.5237,449.85338 C 1702.0955,450.28254 1700.4587,447.66867 1699.4709,444.96689 C 1697.3117,442.3667 1694.6969,443.19261 1691.8595,443.34488 C 1687.2344,442.64376 1687.7178,436.62765 1684.0697,435.04514 C 1681.6862,432.40625 1683.0783,432.28426 1683.5406,429.86332 C 1682.3792,426.79033 1679.7101,427.62777 1677.0423,427.877 C 1673.9953,428.03471 1676.1271,423.95917 1672.0849,425.33886 C 1668.5826,425.29804 1665.8937,426.89684 1665.9951,430.57532 C 1665.552,433.0216 1661.1088,430.68364 1659.6731,433.16614 C 1657.7498,436.63094 1657.1148,437.38837 1653.8338,435.9718 C 1651.4972,433.40451 1648.01,435.03559 1645.7109,436.46829 C 1644.1151,436.30828 1642.0577,432.47571 1639.4539,435.46179 C 1637.9935,433.08004 1634.3058,433.07494 1633.9303,431.34048 C 1631.1895,427.27284 1632.0609,434.52921 1630.3841,434.89796 C 1629.6779,436.78947 1625.6419,438.77135 1624.9998,435.46179 C 1624.7973,431.39909 1622.6188,427.68505 1623.765,423.5537 C 1621.8284,423.72013 1619.1594,421.71405 1617.016,420.70821 C 1613.4249,422.00461 1613.0982,416.03113 1609.7379,417.40557 C 1607.5558,420.33139 1604.7371,418.88666 1602.2833,417.60673 C 1598.365,418.78081 1601.3977,422.44727 1602.4969,424.68169 C 1601.8246,426.42109 1600.2642,430.62273 1597.1867,429.30015 C 1594.3284,428.34452 1591.9373,426.89602 1589.0638,427.4205 C 1586.1665,428.14649 1583.7145,425.2931 1584.3572,422.5872 C 1587.2261,421.81678 1586.8919,415.94849 1583.5402,417.67423 C 1579.9317,420.04643 1581.524,414.2496 1580.4117,412.37175 C 1578.8752,410.70528 1575.5823,411.10335 1577.0047,407.69929 C 1575.9299,405.58867 1573.5956,403.30322 1571.2398,401.84616 C 1567.9805,401.25862 1569.422,396.78123 1566.9137,396.81234 C 1563.24,393.40122 1567.1857,392.79491 1569.021,391.72388 C 1567.4823,389.60305 1567.2873,386.74769 1563.8874,385.93758 C 1559.2449,384.3284 1564.2438,381.59288 1561.7801,379.31929 C 1559.1557,378.21583 1557.5362,375.93713 1554.8546,375.10415 C 1553.2652,372.12992 1550.0012,374.04546 1547.9942,371.49332 C 1545.265,368.70579 1544.126,374.03245 1540.9723,372.91598 C 1537.7816,374.29173 1535.1463,370.80208 1531.9989,370.379 C 1530.8734,368.07331 1528.5292,367.30403 1526.2618,365.6937 C 1522.5332,363.1251 1518.0915,366.42198 1513.9986,365.29103 C 1512.8656,366.74316 1513.6104,367.89025 1510.2792,368.18837 C 1508.3673,367.94392 1509.833,372.9983 1506.3955,372.05666 C 1506,376.92502 1503.6348,372.67021 1501.2371,372.86249 C 1499.4609,375.73531 1497.8429,375.73185 1494.5976,374.90446 C 1491.2587,374.87482 1491.0396,375.98059 1490.0103,372.25865 C 1490.6848,369.05363 1488.2734,367.25398 1485.3686,366.66019 C 1482.1433,366.27662 1478.7364,366.34592 1475.6211,366.05635 C 1472.9063,363.85289 1473.3651,361.79183 1471.9078,359.38406 C 1469.3784,359.66787 1469.1432,356.99014 1466.1057,356.99441 C 1462.7866,352.81861 1462.4059,359.35838 1459.9561,359.59512 C 1457.34,359.25204 1456.2259,359.34851 1454.4572,357.36152 C 1451.0215,355.43215 1446.4658,357.60894 1446.4527,361.73305 C 1446.2025,365.56233 1443.6369,362.76392 1442.2549,361.31558 C 1439.9722,360.53231 1436.3101,359.56778 1435.619,362.84754 C 1433.769,365.44364 1429.9203,363.51755 1427.5332,365.34453 C 1425.3514,363.99331 1425.8096,361.68499 1427.3085,359.96764 C 1427.9263,357.65076 1423.5802,356.62155 1425.4537,354.40359 C 1424.4325,352.61267 1422.1351,351.15676 1422.6489,348.52659 C 1421.1886,345.61805 1417.6781,343.90713 1414.6295,342.96549 C 1412.1435,340.61222 1411.5134,342.61749 1409.6624,344.17481 C 1406.9189,346.14187 1404.9057,342.01678 1406.5436,340.26735 C 1407.3482,338.50293 1410.6147,337.15368 1407.6276,335.47634 C 1405.3569,333.91277 1403.7668,331.82553 1402.041,329.74174 C 1399.245,328.76521 1397.5132,333.57085 1394.5494,331.2189 C 1392.9953,329.16803 1388.7899,331.85944 1388.2845,328.64224 C 1389.0005,324.96408 1385.9708,327.45449 1384.4214,326.74825 C 1382.5236,324.41754 1383.4876,320.90023 1381.1906,318.66647 C 1379.7835,314.91095 1375.3661,319.18833 1373.7361,316.02215 C 1370.2828,316.30135 1368.2231,313.29749 1366.6622,310.73236 C 1364.5239,310.5702 1362.2392,310.50501 1360.5355,311.88026 C 1357.7521,314.59867 1354.0918,312.27371 1351.0197,311.69951 C 1347.8565,313.7721 1349.8783,309.26541 1350.6299,307.83287 C 1351.1369,305.23777 1349.709,302.38734 1348.309,300.15424 C 1348.7215,298.09498 1350.6586,296.4621 1351.159,294.20728 C 1353.6976,291.18284 1350.9721,287.9141 1348.6246,285.91049 C 1348.7195,282.07941 1346.5522,284.77625 1344.5244,283.54323 C 1341.0154,283.00639 1340.7584,277.47625 1343.8808,276.25821 C 1346.6661,273.77308 1343.9203,268.9997 1347.2972,266.64594 C 1347.4702,265.1385 1344.87,262.18567 1347.7149,261.20881 C 1349.1901,259.89759 1347.4195,255.04881 1350.6143,256.57617 C 1352.3853,260.01447 1351.8784,251.67505 1351.8507,253.10726 C 1350.8142,250.89409 1355.5716,249.76314 1352.8857,248.03904 C 1352.7701,245.07865 1349.2954,246.68701 1347.4064,247.10185 C 1345.2492,247.67606 1346.9473,241.69781 1343.6394,244.22641 C 1342.542,247.25841 1339.7863,248.52534 1337.0947,249.75737 C 1335.9596,251.93022 1335.5278,254.69306 1332.5643,255.00667 C 1329.5429,256.16594 1326.9741,259.67403 1327.9505,262.7798 C 1329.9286,265.79024 1327.2798,269.60831 1326.8643,272.84873 C 1326.5795,276.52803 1321.7651,276.09062 1319.1313,276.86205 C 1316.2548,276.63026 1314.1137,278.32422 1312.0295,279.90953 C 1308.4542,279.77487 1307.451,284.68159 1303.7304,284.39284 C 1300.7946,285.10204 1297.7937,286.7285 1294.9389,284.64817 C 1292.7402,283.41284 1290.3227,284.59022 1288.1759,283.07389 C 1285.9195,283.6685 1284.0766,282.60669 1282.6291,280.98336 C 1279.3086,279.33203 1275.4877,281.09184 1271.9069,281.09086 C 1269.3486,281.60661 1265.9324,282.86861 1264.6659,279.6677 C 1263.5282,277.20676 1260.0726,279.47773 1259.3256,277.89851 C 1260.5439,276.06346 1261.5547,274.36983 1259.1481,272.74765 C 1257.8578,270.54336 1259.9665,267.79599 1261.5374,266.44461 C 1264.4754,267.29241 1264.8947,264.29004 1266.8609,263.25802 C 1269.4569,263.22822 1270.548,260.33681 1268.3886,258.76532 C 1266.4189,256.86608 1265.1991,254.39395 1266.142,251.74502 C 1266.4876,249.00374 1262.0273,248.9336 1260.6926,250.52254 C 1257.1393,251.34499 1258.5597,248.29339 1258.4738,246.30739 C 1261.196,245.5154 1259.7813,242.70102 1260.9164,240.70448 C 1262.368,239.05563 1259.1883,235.66096 1262.2057,235.37995 C 1263.5841,233.34012 1264.5708,230.60361 1267.3673,229.92948 C 1270.5781,227.87533 1266.7748,224.06186 1264.0252,224.18368 C 1263.2017,221.23135 1259.7247,222.66653 1261.6766,225.25768 C 1262.9034,227.80109 1257.4962,228.16523 1258.3995,225.15017 C 1255.9031,223.84308 1257.5145,220.1432 1254.677,218.89389 C 1253.3705,216.72302 1250.9164,217.57889 1249.8251,215.31748 C 1247.1419,214.255 1246.576,211.52047 1245.2079,209.33626 C 1242.299,210.39593 1239.4862,211.88889 1236.3238,211.67176 C 1233.6133,212.93342 1230.5874,214.96107 1227.4952,213.91342 C 1226.7315,211.50038 1223.7128,212.06158 1222.3987,210.04744 C 1220.2031,209.06348 1218.5305,211.41758 1216.3275,209.9852 C 1213.8427,210.37174 1211.188,209.13938 1209.0029,210.95993 C 1206.8686,212.02784 1207.0923,215.30184 1206.4313,217.41755 C 1203.5579,214.66409 1204.8025,220.84812 1201.8983,217.4057 C 1199.6383,214.27344 1199.0323,210.30605 1197.7886,206.85211 C 1199.2452,204.47185 1200.1966,201.72711 1198.9768,198.97216 C 1198.7042,196.51353 1199.5226,193.72961 1197.612,191.69604 C 1197.035,189.46656 1193.9956,188.88775 1193.6017,186.3529 C 1192.5952,184.8397 1190.1652,182.36048 1188.6444,184.62107 C 1185.7836,182.66241 1182.2776,183.23974 1179.361,184.83591 C 1176.1815,184.53893 1178.2225,180.80004 1179.5003,179.60011 C 1178.6036,178.43903 1174.6262,176.33845 1173.5981,178.26173 C 1172.734,180.70785 1170.6926,181.70134 1168.2383,181.60734 C 1165.456,181.80324 1163.1365,183.81904 1160.4044,183.86941 C 1158.7226,181.5996 1155.6968,181.46824 1153.6183,179.69394 C 1151.2782,179.29507 1150.6517,176.71132 1149.1901,175.42545 C 1148.894,172.23623 1149.8182,169.0294 1149.5428,165.81236 C 1149.2701,163.1361 1146.2106,161.84629 1146.6279,159.10088 C 1146.0598,156.62975 1144.1771,154.13162 1144.864,151.62277 C 1147.8298,150.54038 1146.1759,148.84593 1145.4176,146.97286 C 1146.4602,144.28179 1143.0997,143.14441 1141.0671,143.68865 C 1139.1515,142.41629 1138.8898,140.24509 1137.9423,138.48759 C 1137.0929,135.83915 1135.1593,133.89694 1134.4574,131.13688 C 1132.8273,129.32078 1128.982,129.31716 1127.5691,130.2239 C 1126.3094,132.46457 1123.3322,133.00156 1121.3525,131.70088 C 1118.9168,131.75718 1117.6159,134.33368 1115.018,133.78187 C 1113.088,134.29351 1111.3708,136.69667 1109.5543,136.32363 C 1108.0298,135.06164 1105.1826,138.16114 1106.9229,139.47351 C 1104.7564,140.65467 1106.0547,143.57259 1103.6551,144.65581 C 1102.2862,148.32474 1101.0539,145.91912 1099.3622,144.24606 C 1096.7675,144.8736 1095.702,142.24607 1093.7777,141.51449 C 1090.4997,143.14523 1085.6115,140.92827 1086.6388,136.82869 C 1084.3992,135.78614 1083.3873,134.28792 1083.0774,131.94666 C 1080.8154,131.32554 1079.3901,129.65365 1078.2002,127.83424 C 1079.7317,124.34574 1074.9816,124.42525 1072.8262,124.17009 C 1071.2699,123.1333 1068.9999,126.88997 1067.3387,124.16943 C 1066.3669,122.32088 1066.8007,119.34041 1064.0337,118.98779 C 1063.8167,116.98122 1065.7774,114.74943 1064.8893,112.29558 C 1064.4505,110.10742 1064.3743,107.77143 1062.4834,106.36836 C 1063.0782,104.25231 1065.4665,103.12021 1066.104,101.03807 C 1068.5983,100.60709 1066.2479,97.09883 1065.0827,96.044756 C 1064.6733,93.56489 1063.4276,92.079507 1060.9981,91.520944 C 1058.5085,88.389506 1059.1147,83.773013 1057.9439,80.028852 C 1057.7026,78.19414 1057.1829,76.226742 1055.9171,74.87416 C 1060.5598,73.18146 1064.2193,70.1692 1068.6754,67.90681 C 1073.1279,65.45559 1077.2248,62.4514 1081.9392,60.45536 C 1088.3986,56.3915 1095.4526,53.40707 1102.0144,49.48479 C 1107.4401,46.73049 1112.094,42.68968 1117.6916,40.25147 C 1123.2306,36.74157 1128.2578,32.1343 1134.8844,30.80052 C 1140.7396,28.2046 1147.3297,27.67238 1153.2585,25.48143 C 1157.8231,24.23112 1162.4457,22.84122 1166.485,20.27575 C 1170.1087,19.7697 1173.6109,18.5464 1177.0309,17.16143 C 1179.6837,15.75474 1182.9109,15.71342 1185.3116,17.53693 C 1187.2616,18.83416 1188.8326,20.12496 1191.2608,20.19541 C 1194.2011,21.78977 1197.5597,21.97382 1200.6849,22.85307 C 1203.9163,24.23573 1205.7837,28.19127 1209.6895,27.95553 C 1211.7084,28.89091 1213.2288,25.63962 1215.464,27.95437 C 1218.1932,28.5396 1221.3854,30.0184 1224.0596,29.00598 C 1226.7396,25.80079 1230.8137,24.11226 1234.959,24.0344 C 1237.5717,23.58548 1237.3732,20.68105 1237.0368,18.83712 C 1237.8217,16.16332 1240.1065,17.03138 1242.1712,17.48229 C 1246.7761,17.1746 1245.8681,24.0749 1250.2171,24.25812 C 1252.5152,24.53288 1254.2725,26.55229 1256.4966,26.66637 C 1257.2752,22.99267 1259.6687,28.9184 1260.9677,26.90969 C 1259.5491,24.37945 1261.9569,23.39238 1264.146,23.22923 C 1266.5974,22.06601 1268.2873,24.19688 1269.1938,26.10155 C 1271.5804,27.89973 1273.6254,30.33498 1273.8751,33.43201 C 1274.8253,36.37479 1277.9832,37.1676 1280.0763,38.90882 C 1280.1018,40.21937 1277.0217,44.31318 1279.8348,43.14273 C 1279.823,40.94552 1283.7015,38.78568 1280.8189,37.02916 C 1278.2398,36.18399 1275.4839,34.36541 1276.2887,31.23019 C 1276.9174,28.75708 1274.791,27.44915 1273.3567,26.03308 C 1272.1593,22.87595 1271.7853,19.41033 1271.3127,16.08678 C 1269.9779,16.61126 1267.5105,19.66764 1265.9299,16.97607 C 1263.4042,15.52855 1261.5491,19.62417 1258.7617,18.61077 C 1255.1364,18.11525 1251.6297,16.78362 1248.4016,15.28178 C 1247.7496,13.30829 1245.7294,12.20697 1244.0622,11.18664 C 1241.2143,11.36855 1239.7995,7.97602 1237.3093,7.84976 C 1235.3386,8.30971 1232.9895,8.04352 1231.4132,9.79032 C 1231.7135,11.91937 1230.9365,13.86274 1229.8347,15.76527 C 1229.1546,17.79868 1227.9334,20.21665 1225.4158,18.93293 C 1221.9542,19.7725 1217.6606,21.26546 1214.7513,18.25354 C 1213.2841,16.61159 1211.6233,15.41479 1209.2528,15.58303 C 1205.8575,15.51802 1204.8219,11.1366 1202.1442,9.52347 C 1202.0448,6.47714 1199.5135,8.21242 1197.8257,9.05249 C 1194.3273,10.96621 1189.8526,10.70101 1186.056,9.97272 C 1183.2273,8.69871 1179.8445,7.34997 1179.5188,3.79035 C 1178.9986,1.91333 1176.5802,0.57272991 1175.1808,-0.53008009 L 1248.0206,-0.46964523 C 1250.0074,1.4987962 1248.2193,4.28586 1250.7758,5.53517 C 1252.0531,8.62694 1254.6273,11.33003 1258.1303,11.57647 C 1260.6437,12.2394 1263.0304,10.13142 1265.5943,11.2543 C 1267.8041,10.33472 1270.0615,13.21347 1272.3232,11.33464 C 1273.8922,9.62455 1277.5581,10.5759 1277.514,7.44165 C 1278.2047,4.51649 1276.5982,1.697252 1274.2272,-0.507983 L 2000.4688,-0.4763125 L 2000.6187,1363.4893 z" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/> |
</g> |
<g inkscape:groupmode="layer" id="layer6" inkscape:label="Lakes" style="display:inline" transform="translate(-6.2490173e-2,5.4199219e-2)"> |
<path id="polyline2482" d="M 1757.8607,2.4474745 C 1761.0799,2.9643896 1764.5923,0.42904931 1767.7755,2.2859872 C 1770.3281,3.1895936 1769.4857,5.0590428 1767.404,3.0918131 C 1763.9614,1.6768823 1760.5645,4.7558105 1757.1551,3.4673132 C 1754.5683,4.9090668 1758.2122,5.7698786 1759.4772,5.8510372 C 1758.6203,6.5413008 1755.7694,6.7829666 1755.0016,5.6151321 C 1753.9939,5.1237397 1754.1183,2.3804773 1753.7018,2.1253101 C 1755.3933,2.8820808 1756.2999,2.0828456 1757.8607,2.4474745 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2480" d="M 1603.0142,510.27721 C 1605.1361,511.5262 1605.7952,508.4639 1607.8137,509.86023 C 1610.5457,508.51774 1608.4174,511.5267 1608.684,512.87807 C 1610.419,515.67484 1608.2906,513.47976 1606.8389,513.22247 C 1605.1928,515.27678 1605.8637,510.37088 1603.9797,512.2102 C 1603.1261,514.22517 1601.701,509.51007 1603.0142,510.27721 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2488" d="M 1888.5334,798.04987 C 1894.3635,798.24166 1900.0689,800.4122 1905.9862,799.82154 C 1907.8454,800.58802 1911.5941,798.25582 1911.9076,801.18773 C 1909.2307,803.58018 1905.2499,801.26395 1902.077,802.26337 C 1897.9437,801.59995 1893.8166,800.91413 1889.8703,799.44537 C 1888.4977,799.30693 1886.5191,799.61296 1888.5334,798.04987 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2490" d="M 1848.5036,806.85583 C 1847.6974,804.89173 1845.5339,803.69772 1845.9784,801.37902 C 1846.0755,798.29039 1845.27,800.46965 1844.0696,797.77183 C 1844.2246,795.17525 1847.8231,794.81884 1847.0406,798.02255 C 1848.0483,800.77009 1847.035,804.3516 1849.9517,806.15816 C 1850.6195,807.61293 1849.2151,808.02399 1848.5036,806.85583 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2492" d="M 1822.213,840.90179 C 1823.2173,838.268 1820.1734,837.27484 1820.6034,834.80683 C 1820.7228,831.95525 1822.8937,829.17577 1821.9903,826.34888 C 1819.573,825.29826 1817.2779,828.16285 1814.7492,828.28187 C 1811.5993,829.23207 1808.1872,830.83022 1805.087,828.73853 C 1803.4586,828.02786 1800.3697,828.14161 1800.3043,825.81122 C 1801.8427,825.68348 1806.3879,824.47976 1803.0526,823.186 C 1799.7191,822.70366 1795.5552,821.88236 1792.6547,823.93223 C 1791.2926,825.61796 1789.0422,828.72619 1786.7507,826.61688 C 1788.2463,824.72456 1783.7564,822.005 1787.0089,821.78424 C 1787.8831,824.62397 1790.557,822.81148 1789.3871,820.33491 C 1789.405,818.12717 1788.5898,815.86148 1786.5279,814.80345 C 1787.0024,812.07715 1789.6406,815.32069 1790.2969,816.58713 C 1792.1001,818.84294 1794.2221,815.41947 1795.7741,814.37444 C 1797.5403,812.2044 1800.0266,810.76313 1801.5298,808.35998 C 1802.5372,810.03155 1801.0134,812.53973 1800.1933,814.21262 C 1799.9545,815.81719 1795.8384,816.99095 1798.0763,818.0791 C 1800.4592,817.48909 1802.3183,817.8157 1804.2877,819.0772 C 1808.0226,819.26536 1805.9577,826.07413 1809.9963,825.16755 C 1812.4001,824.60438 1815.1948,826.58413 1817.2744,824.41572 C 1820.0687,823.04574 1824.3691,823.93684 1824.3819,827.64676 C 1825.1882,830.70297 1825.4158,833.82272 1824.7088,836.89868 C 1825.1273,838.48465 1827.3464,841.50233 1824.4039,841.97496 C 1823.2874,843.14262 1822.3801,842.64382 1822.213,840.90179 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2494" d="M 1770.9688,849.97657 C 1769.594,847.11956 1774.5613,847.82579 1774.9421,845.35745 C 1775.2806,841.97644 1778.8416,843.39203 1777.0394,846.1957 C 1775.697,847.95271 1773.5377,848.96152 1772.0086,850.62091 C 1771.38,850.80759 1771.1946,850.47867 1770.9688,849.97657 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2496" d="M 1784.0769,829.73186 C 1785.1206,829.05164 1789.4614,827.14055 1788.6815,829.14087 C 1786.9446,830.25289 1785.0749,831.65251 1782.9258,831.28869 C 1783.5351,830.96241 1783.2063,829.80989 1784.0769,829.73186 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2498" d="M 1767.6269,800.41187 C 1766.1192,798.79117 1763.4731,798.19128 1762.7623,796.00889 C 1762.0271,794.30193 1762.1676,789.73498 1764.4355,792.77407 C 1765.9579,795.27402 1768.4755,796.66886 1770.2262,798.96237 C 1770.8459,800.54867 1768.6832,801.40652 1767.6269,800.41187 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2500" d="M 1779.7696,789.13527 C 1778.9368,787.64791 1776.7736,785.20656 1778.1433,783.6848 C 1781.0862,783.33712 1779.6716,786.80636 1780.9579,788.16877 C 1781.7025,789.70667 1780.7272,791.54006 1779.7696,789.13527 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2502" d="M 1773.4568,775.28134 C 1772.7848,771.91186 1771.6548,768.35685 1771.8796,764.99263 C 1774.3076,764.31242 1773.7878,768.14432 1774.4223,769.69638 C 1774.4913,772.25608 1776.1693,774.75241 1774.6822,777.16034 C 1773.8728,777.26141 1773.8452,775.76319 1773.4568,775.28134 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2504" d="M 1810.2561,809.70198 C 1808.9309,807.89246 1804.7366,806.32954 1807.0627,803.68752 C 1808.765,801.57575 1803.892,801.65625 1806.1403,798.84319 C 1805.3139,797.44127 1805.6217,795.01029 1805.1316,792.73308 C 1804.0723,789.70206 1807.2729,789.43982 1809.1113,790.75811 C 1812.4507,790.29157 1810.9177,794.27921 1810.4535,796.08511 C 1810.3119,798.40529 1807.9456,800.51838 1809.8106,802.77502 C 1810.7167,805.28863 1813.4438,807.73409 1812.2612,810.56114 C 1811.4122,810.92249 1810.7933,810.26087 1810.2561,809.70198 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2506" d="M 1836.1381,784.78562 C 1833.9175,782.03216 1831.7025,778.81182 1828.3772,777.37566 C 1822.6681,776.62169 1819.5515,770.82107 1817.7941,765.93773 C 1816.2716,763.19825 1814.18,760.26766 1814.4521,756.96962 C 1816.5608,757.26084 1817.014,760.36923 1818.3125,761.89856 C 1818.9049,765.62923 1821.9383,767.91187 1824.144,770.60954 C 1827.8162,774.53676 1833.455,775.81439 1837.512,779.30865 C 1840.8343,781.40561 1844.9608,780.91635 1848.5779,780.22115 C 1851.1126,781.49533 1847.659,783.54569 1846.8697,784.94696 C 1844.1417,787.04062 1840.9417,784.13652 1838.0691,785.80612 C 1837.0647,786.0919 1836.9771,784.92753 1836.1381,784.78562 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2508" d="M 1833.6874,763.25291 C 1833.1334,760.64662 1830.9293,759.37079 1829.454,757.39977 C 1827.8535,754.21747 1831.5721,755.55601 1832.4268,757.38628 C 1834.1201,758.87446 1834.5576,761.29572 1835.9279,763.03528 C 1836.7683,764.95872 1833.8005,764.88925 1833.6874,763.25291 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2510" d="M 1845.2358,759.92326 C 1843.3311,757.4839 1847.017,755.39764 1847.2151,758.76647 C 1848.0166,760.33943 1845.72,761.97857 1845.2358,759.92326 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1872.4184,686.74326 C 1869.9298,687.36471 1874.5693,689.18655 1874.231,690.71243 C 1871.69,689.77672 1868.8737,687.17234 1866.1051,688.93099 C 1865.7735,691.24476 1868.6782,692.10792 1870.2305,693.18145 C 1871.8548,693.79252 1875.0964,695.37805 1872.7934,697.24438 C 1869.5976,699.74005 1866.2988,702.45761 1862.386,703.65131 C 1861.2574,703.93709 1856.4126,703.46548 1859.9794,705.08897 C 1863.4944,705.99603 1867.0741,704.00383 1870.2618,702.74497 C 1873.5158,700.10987 1877.7883,700.31174 1881.7631,699.99467 C 1884.626,699.34161 1887.2813,703.35024 1889.8264,701.15105 C 1889.0207,699.16373 1887.5278,697.19802 1886.3886,695.27542 C 1881.3972,692.98553 1876.3948,690.56872 1872.4184,686.74326 z M 1879.5128,693.90027 C 1879.7355,693.908 1880.0193,694.01638 1880.3879,694.21281 C 1881.9867,695.11578 1883.8256,695.85186 1884.8571,697.4319 C 1883.7959,697.37278 1882.7785,697.00335 1881.7006,697.05686 C 1879.7387,697.81684 1877.9539,693.84615 1879.5128,693.90027 z" id="polyline2512"/> |
<path id="polyline2514" d="M 1933.5392,732.80558 C 1933.0417,730.55849 1930.2913,730.3858 1928.9718,729.10028 C 1929.1974,726.82141 1926.2006,726.39965 1924.8054,725.04564 C 1922.5997,723.82777 1921.2584,721.52717 1921.4709,719.00434 C 1920.4146,716.9795 1917.3779,717.06493 1915.8266,715.29969 C 1912.0555,711.99984 1907.9826,709.00043 1903.2011,707.29889 C 1900.6039,705.94933 1897.8189,705.06515 1896.2201,702.35827 C 1898.5553,702.43333 1900.7645,700.67781 1899.4135,698.2228 C 1898.3291,695.724 1895.1243,694.6393 1895.3288,691.45717 C 1895.4032,688.51454 1893.8467,685.72634 1890.8357,685.01386 C 1888.9606,684.10004 1887.5684,682.44707 1885.3323,682.19422 C 1881.5355,681.30986 1881.2348,676.23819 1877.4305,675.45476 C 1877.0246,672.81077 1881.0416,674.16099 1882.3027,675.21342 C 1885.1229,677.35548 1889.3483,677.51665 1890.9819,681.06639 C 1893.6942,683.80718 1898.1229,684.14565 1900.8989,686.78536 C 1901.2603,689.60747 1901.9812,692.46613 1904.6123,693.98048 C 1908.4905,696.77198 1912.5109,699.1478 1916.5691,701.65994 C 1919.5181,702.91436 1922.2031,699.51145 1925.1362,701.3167 C 1928.4451,702.80636 1931.6147,704.93674 1935.4327,704.82249 C 1939.5895,706.45389 1937.7126,712.07145 1941.1145,714.49403 C 1942.9726,717.1186 1946.4818,715.44307 1948.8328,716.63659 C 1949.6958,719.60999 1953.7053,718.32709 1955.745,720.18633 C 1958.7684,719.57031 1958.3668,723.36699 1960.8763,722.97008 C 1964.2817,721.85724 1965.2368,725.98662 1967.5163,727.43545 C 1967.6562,730.14168 1963.5914,729.09978 1961.8366,729.36828 C 1960.0633,730.35091 1960.4396,733.75628 1957.5645,732.96642 C 1954.1562,734.94781 1955.141,729.02653 1953.1095,730.54944 C 1951.8796,732.57051 1949.5304,734.62335 1947.1299,732.80558 C 1945.5848,731.13335 1942.3933,730.15172 1941.4858,732.96642 C 1940.012,735.11606 1934.194,736.07695 1933.5392,732.80558 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2518" d="M 1822.7329,818.18709 C 1820.6838,818.34875 1818.1616,814.8935 1821.2688,814.90486 C 1821.5463,816.45527 1826.4535,817.15935 1823.3272,818.13243 L 1822.8723,818.17441 L 1822.7329,818.18709 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2568" d="M 1536.2112,856.04438 C 1534.8474,857.99449 1532.773,859.44332 1531.1611,861.25318 C 1529.2648,859.79298 1533.3415,858.47156 1533.7419,856.83752 C 1534.2874,855.52104 1537.94,852.09691 1536.2112,856.04438 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2570" d="M 1627.0024,825.22089 C 1627.4357,827.42287 1625.0518,829.01658 1624.0318,830.75186 C 1620.8748,832.45421 1617.7376,834.22176 1615.3054,836.92765 C 1610.672,840.46307 1606.1646,844.22896 1602.5686,848.84859 C 1598.8236,851.78445 1594.365,853.86972 1591.3915,857.7627 C 1589.2097,859.92863 1585.7758,857.55248 1583.4047,859.62556 C 1580.7589,860.41805 1578.5631,864.20238 1575.6098,862.70317 C 1574.1263,858.92131 1578.9053,857.43263 1581.2169,855.61488 C 1584.7174,852.54764 1588.7806,849.47925 1590.3889,844.87461 C 1593.104,841.04123 1597.6847,839.30858 1601.2317,836.49815 C 1602.1102,834.43462 1605.3664,833.77498 1604.8817,830.94019 C 1604.9043,827.79986 1608.8703,828.21421 1610.8122,826.72504 C 1614.5301,826.49292 1615.9506,820.40652 1619.9271,821.97125 C 1621.8034,823.89058 1625.2692,821.4815 1626.5939,824.46923 L 1626.8119,824.87041 L 1627.0024,825.22089 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2572" d="M 1636.6943,833.00767 C 1637.5099,835.57429 1634.0781,837.02412 1632.2011,838.00165 C 1631.0695,840.60761 1627.1397,842.79412 1625.22,839.7198 C 1624.4092,836.43889 1628.4505,834.6664 1630.9044,833.5608 C 1632.8458,833.17542 1634.9727,830.94743 1636.6943,833.00767 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2574" d="M 1648.5399,802.66768 C 1646.8107,804.24098 1646.2702,806.38682 1645.6807,808.52082 C 1643.2008,810.55291 1641.8301,814.47964 1638.1426,814.42729 C 1636.4338,815.41272 1634.2389,816.9521 1632.9272,814.61644 C 1630.1832,815.16628 1629.9193,812.1881 1632.6467,812.0113 C 1635.6548,811.34063 1637.2124,808.18384 1640.0735,807.07066 C 1643.3666,804.80958 1646.7202,802.56414 1649.8024,800.09036 C 1652.2464,799.65757 1649.0703,802.41762 1648.5399,802.66768 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2576" d="M 1704.4257,871.99213 C 1707.0606,872.90923 1707.8928,876.74805 1711.0726,876.34177 C 1713.291,877.53281 1714.1819,880.05202 1715.9,881.65922 C 1718.5708,882.29153 1722.1929,879.58745 1723.8837,882.78589 C 1726.9929,883.75074 1724.244,886.96746 1722.0338,885.39811 C 1719.6738,885.32815 1717.8216,887.68768 1715.3058,886.4917 C 1713.3905,885.12566 1709.7411,885.55006 1709.5502,882.57172 C 1708.7103,880.76582 1707.2702,879.29854 1705.2809,878.49157 C 1703.6388,876.88387 1701.7772,875.4431 1700.5267,873.54961 C 1699.9248,870.81376 1702.2416,869.34435 1703.9414,871.7233 L 1704.0915,871.83211 L 1704.4257,871.99213 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2578" d="M 1748.763,867.53515 C 1750.1943,868.39415 1755.1412,868.22377 1752.3939,870.52781 C 1748.181,872.46805 1744.6226,875.6036 1740.2224,877.14825 C 1738.6991,879.37443 1734.7263,881.65132 1732.6843,878.97374 C 1733.0254,877.38218 1735.765,877.12142 1736.8975,875.72608 C 1738.759,874.53932 1740.3371,872.83137 1742.0791,871.45529 C 1744.7503,870.94101 1745.9342,867.14796 1748.763,867.53515 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2516" d="M 1861.0175,785.48395 C 1858.8611,785.26056 1856.2358,784.97214 1854.5209,786.42049 C 1853.4962,788.58609 1849.8937,787.76693 1848.8006,786.07494 C 1845.8203,785.04441 1850.0322,781.73485 1851.6598,783.1748 C 1853.5867,784.55483 1855.4193,781.53665 1857.6496,783.0673 C 1860.3177,782.78218 1863.0481,781.26848 1865.7706,782.47647 C 1865.5259,784.47712 1862.0928,784.4172 1861.0175,785.48395 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2484" d="M 1963.4316,930.47095 C 1965.3617,929.89098 1966.8634,926.89437 1968.9448,927.68719 C 1969.0549,929.63088 1966.2447,930.02465 1965.1397,931.43744 C 1963.7755,931.43563 1959.8678,932.45069 1963.4316,930.47095 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2486" d="M 1971.638,925.36948 C 1972.1734,923.98797 1976.0556,921.41789 1974.8666,924.28264 C 1973.8665,924.26519 1971.2709,927.86136 1971.638,925.36948 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2520" d="M 1927.1894,970.15438 C 1927.4487,968.58636 1930.0841,965.63074 1930.7247,968.46042 C 1930.6207,969.74678 1927.3888,973.21701 1927.1894,970.15438 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2522" d="M 1883.706,1035.989 C 1885.5704,1034.0884 1886.811,1031.47 1889.4247,1030.2974 C 1892.6912,1028.3413 1891.4595,1024.4548 1890.5104,1021.5286 C 1889.8778,1018.5383 1890.8455,1015.3364 1893.6578,1013.8655 C 1894.8729,1011.6592 1898.2595,1013.675 1898.9978,1012.2858 C 1899.5202,1009.6599 1903.8681,1010.9503 1904.1295,1007.9583 C 1902.8829,1006.1037 1902.6726,1003.916 1903.7806,1001.8431 C 1902.9269,999.32802 1905.9772,999.07253 1906.5061,997.00323 C 1907.692,994.61753 1909.1559,992.34937 1908.5483,989.56611 C 1908.5829,986.24207 1908.9678,982.51239 1911.6304,980.35716 C 1912.1537,977.77917 1915.5017,978.66501 1916.8312,976.66501 C 1918.5411,975.81836 1920.4247,974.69119 1922.3992,974.93369 C 1921.644,977.01253 1920.8124,979.54425 1918.4609,980.61298 C 1915.5302,980.88444 1917.785,984.34232 1915.4924,985.0823 C 1915.77,982.6584 1912.322,983.51016 1913.1537,985.72943 C 1914.1023,988.34149 1912.1721,990.70315 1911.5933,992.97575 C 1913.7668,994.35381 1912.6712,996.8824 1911.4577,998.26572 C 1911.2301,1000.2129 1908.3805,1001.2966 1909.4768,1003.716 C 1910.6331,1007.4633 1912.1353,1011.2646 1911.6676,1015.2608 C 1913.9521,1017.5206 1911.5175,1021.925 1915.121,1023.2091 C 1915.8711,1025.4107 1917.1824,1026.6714 1919.5281,1026.9682 C 1921.2442,1029.1114 1922.4226,1031.9464 1922.7705,1034.647 C 1920.427,1032.4557 1919.6927,1028.5058 1915.975,1028.0955 C 1912.497,1026.5043 1912.2258,1022.0202 1909.9965,1019.2349 C 1908.6133,1016.1754 1908.3847,1012.7352 1907.2487,1009.6231 C 1903.8193,1011.6725 1901.4754,1015.5346 1897.2598,1016.2819 C 1894.9114,1016.7406 1892.1628,1018.0582 1892.7295,1020.9531 C 1892.8392,1024.327 1893.996,1028.1331 1892.2095,1031.2099 C 1890.2204,1031.9378 1887.8807,1032.0633 1887.5323,1034.6348 C 1886.8151,1036.8683 1884.0496,1037.7407 1884.0402,1040.2313 C 1882.2172,1039.3147 1883.3898,1037.4803 1883.706,1035.989 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2524" d="M 1860.7576,1021.6516 C 1859.3189,1019.7864 1860.1286,1017.6416 1859.6722,1015.8671 C 1858.3561,1014.4188 1854.5588,1015.3619 1854.8888,1012.8565 C 1856.4583,1010.6876 1858.77,1015.3576 1859.5694,1012.2005 C 1859.998,1010.7121 1861.6588,1006.8626 1863.1595,1009.592 C 1862.284,1011.8908 1861.2475,1014.2317 1862.1314,1016.7388 C 1860.4678,1018.6446 1863.5297,1021.1464 1864.9166,1019.0208 C 1866.8765,1017.4677 1868.4793,1015.3904 1868.1623,1012.7816 C 1869.6021,1010.7828 1867.8601,1008.8534 1868.3329,1007.0458 C 1870.1853,1006.3488 1872.9412,1007.4645 1874.1257,1005.1122 C 1876.6792,1002.8536 1880.5254,1002.0586 1883.8546,1002.32 C 1886.289,1003.782 1887.1503,999.44655 1889.0707,1000.4494 C 1889.7491,1002.6945 1886.8184,1003.6314 1885.86,1005.327 C 1883.6868,1005.6653 1881.3009,1003.7458 1879.213,1005.5417 C 1876.7152,1007.447 1873.5311,1008.3039 1871.0808,1010.1601 C 1868.5026,1013.1011 1868.9165,1018.022 1871.5262,1020.7384 C 1872.6945,1023.7675 1869.2045,1024.8273 1869.8331,1021.1745 C 1869.1114,1018.7565 1866.139,1018.6296 1864.9908,1020.7384 C 1863.7685,1021.0634 1861.5476,1024.5088 1861.0127,1023.0224 C 1861.0098,1022.5524 1860.8176,1022.1133 1860.7576,1021.6516 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2526" d="M 1899.8963,1045.6014 C 1901.358,1043.7904 1905.6806,1045.0226 1902.1536,1046.3263 C 1901.1051,1047.3629 1899.4044,1047.7812 1899.8963,1045.6014 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2528" d="M 1907.6944,1042.648 C 1907.6135,1039.9353 1912.4909,1040.5268 1910.3503,1042.9249 C 1910.4874,1045.2064 1906.1221,1045.9822 1907.5829,1043.1848 L 1907.6757,1042.7377 L 1907.6944,1042.648 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2530" d="M 1917.3118,1042.9166 C 1918.0061,1040.8671 1911.9477,1041.5394 1915.4181,1039.587 C 1917.3234,1041.074 1919.0677,1038.2305 1920.3198,1040.0705 C 1921.2249,1041.9264 1918.9817,1045.0108 1917.3118,1042.9166 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2534" d="M 1839.4058,1041.4126 C 1840.9815,1039.3293 1838.6088,1038.125 1838.1432,1037.009 C 1840.2921,1035.4436 1841.2526,1036.7285 1842.3022,1038.4597 C 1842.8566,1040.0657 1844.3093,1041.3402 1845.7912,1042.486 C 1849.3131,1041.8316 1846.6156,1044.3592 1844.5675,1044.2588 C 1843.0312,1042.9329 1842.1164,1041.2721 1840.1646,1043.6624 C 1838.7252,1044.231 1839.2775,1042.0794 1839.4058,1041.4126 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2536" d="M 1831.1623,1045.3326 C 1828.7306,1044.684 1829.8416,1040.9463 1831.5523,1043.3043 C 1832.5676,1044.0285 1833.0711,1047.5265 1831.1623,1045.3326 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2538" d="M 1833.2045,1050.9176 C 1835.4803,1050.0433 1833.3936,1046.9067 1836.2124,1047.5878 C 1838.8252,1049.5785 1835.4911,1051.9526 1833.3531,1052.1529 C 1833.1432,1051.7558 1833.1553,1051.3467 1833.2045,1050.9176 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2540" d="M 1820.5792,1054.6762 C 1820.3271,1051.5986 1817.4436,1049.6984 1816.6061,1046.9974 C 1816.244,1044.5074 1815.5242,1040.9835 1818.6196,1040.0311 C 1821.9056,1037.3216 1820.8788,1031.987 1818.871,1028.6859 C 1817.0343,1026.4985 1813.2829,1027.4201 1812.2242,1024.4971 C 1811.3352,1022.4283 1810.2025,1020.5065 1808.6593,1018.8594 C 1808.9656,1016.4331 1812.8178,1017.4165 1814.415,1018.2151 C 1815.6648,1018.7598 1817.8253,1022.3316 1818.632,1020.2376 C 1819.5435,1016.5653 1824.5606,1017.3146 1825.8893,1013.8655 C 1828.037,1010.6761 1830.0801,1007.3189 1831.9792,1003.9842 C 1834.6648,1003.2618 1838.9332,1002.3075 1838.1062,998.58755 C 1838.5163,995.20885 1833.9727,993.62206 1835.1356,990.07693 C 1835.3985,986.49064 1839.3965,985.2978 1840.1856,981.91464 C 1840.8486,980.02429 1843.0326,978.84264 1844.8384,978.26268 C 1846.6088,980.0419 1849.1509,978.29329 1848.6521,975.90018 C 1850.2632,975.24778 1853.2149,973.34739 1854.1108,975.90018 C 1856.1362,978.26992 1853.279,979.00972 1851.6143,980.07368 C 1848.8901,981.17122 1846.4966,982.93777 1845.3842,985.72729 C 1844.4774,987.99578 1841.4152,986.94681 1841.2762,989.73666 C 1839.3896,990.79402 1839.5941,992.81838 1840.7799,994.31842 C 1841.5759,996.24844 1840.4444,998.76963 1841.8458,1000.2919 C 1843.6214,1001.9941 1844.0193,1006.1771 1840.9283,1006.777 C 1838.4802,1007.3639 1840.0089,1010.8043 1837.3557,1010.9923 C 1834.5802,1011.551 1832.1459,1013.1843 1831.3479,1016.0133 C 1829.5554,1016.7539 1827.9997,1017.6669 1826.68,1019.3013 C 1825.4637,1021.352 1825.1471,1022.4719 1823.6241,1024.0141 C 1822.2274,1027.8578 1823.969,1031.6968 1826.0749,1034.7543 C 1827.035,1037.7305 1824.6002,1038.5785 1824.3517,1041.1537 C 1824.0047,1044.2371 1820.6679,1041.8884 1819.5023,1043.5605 C 1818.9108,1045.6768 1818.5388,1048.4701 1820.9877,1049.4668 C 1820.8674,1051.8441 1823.7315,1052.4331 1823.5106,1055.0789 C 1825.817,1055.7998 1825.9532,1058.6112 1823.1786,1057.1462 C 1821.8353,1056.8133 1821.2427,1055.7598 1820.5792,1054.6762 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2542" d="M 1800.9356,1048.2863 C 1801.4129,1045.5473 1797.0086,1046.185 1798.0763,1044.1513 C 1799.5763,1042.3293 1796.4654,1040.609 1797.3707,1038.4597 C 1797.8365,1035.7763 1797.5659,1032.3583 1799.9702,1030.6189 C 1801.4906,1028.4498 1800.7268,1033.6767 1800.2981,1034.7129 C 1799.2772,1036.7738 1799.0066,1039.0006 1800.4884,1040.9181 C 1801.3395,1042.7239 1799.8987,1043.3435 1801.3812,1045.5481 C 1801.6669,1046.3391 1801.9835,1051.7652 1800.9356,1048.2863 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2544" d="M 1749.8401,1113.2617 C 1749.5955,1109.9904 1755.0321,1109.6216 1755.2243,1112.8862 C 1757.7458,1114.5461 1754.2527,1116.4779 1752.7364,1114.9265 C 1751.7557,1114.2784 1749.2444,1115.3313 1749.8401,1113.2617 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2548" d="M 2000.0624,1067.4647 C 1998.6474,1067.4853 1994.6062,1068.975 1995.4779,1066.3823 C 1996.0881,1065.7928 1996.9428,1065.7113 1997.7431,1065.6313" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2552" d="M 1512.7799,964.67757 C 1513.9884,959.86452 1514.8796,955.03517 1516.3076,950.28599 C 1518.3197,948.05339 1520.101,945.76827 1521.4691,943.08955 C 1523.5829,940.27863 1524.6367,936.38087 1527.8561,934.55176 C 1529.5108,932.27833 1529.5964,928.94901 1532.4606,927.6248 C 1534.2161,925.8347 1535.4306,923.43813 1537.1023,921.77166 C 1541.3297,921.19845 1547.1932,923.25013 1549.6904,918.54985 C 1552.2556,916.84173 1553.6067,913.38549 1556.9687,912.96505 C 1559.6849,910.61836 1563.4145,913.56164 1566.215,911.67639 C 1570.6277,911.57465 1574.5965,914.15115 1578.9517,914.7372 C 1581.0618,915.5292 1581.829,918.06619 1584.5605,917.83687 C 1590.0988,919.18841 1595.8324,919.9065 1601.1947,921.77166 C 1603.7268,925.09999 1608.6427,925.2921 1611.295,928.59129 C 1613.1111,930.2413 1611.5126,933.89344 1608.8812,932.67276 C 1606.5211,932.19503 1604.2326,932.03946 1603.1226,934.42829 C 1597.6057,934.49398 1592.9546,930.63474 1587.3439,930.68561 C 1582.5293,930.43703 1577.7584,930.24689 1572.9733,930.52494 C 1568.5915,931.37916 1564.2139,933.48649 1559.6795,931.97444 C 1556.1542,931.59465 1555.5588,935.82346 1553.1068,937.12908 C 1550.5273,937.2881 1548.7658,939.11557 1546.4228,939.86789 C 1544.7036,941.03128 1544.0511,943.87413 1541.447,943.08955 C 1538.4219,942.62153 1539.7342,937.75119 1536.2854,937.9889 C 1533.9775,937.53207 1532.4329,939.49601 1530.3811,939.92189 C 1529.0732,941.50177 1528.4108,943.46851 1526.7548,944.73033 C 1525.5048,948.20583 1523.029,951.04309 1521.6548,954.47414 C 1519.8037,956.96932 1519.0997,960.06388 1517.0502,962.42176 C 1514.8878,964.79281 1514.7401,968.82078 1511.4803,970.04705 C 1508.9672,969.21209 1512.8723,966.25432 1512.7799,964.67757 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2554" d="M 1433.1286,1106.3888 C 1434.9266,1105.4768 1435.0327,1102.8252 1436.9259,1102.2704 C 1438.8635,1103.2195 1436.3089,1105.9713 1435.1338,1106.8718 C 1434.1509,1108.2147 1430.3698,1108.056 1433.1286,1106.3888 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2556" d="M 1465.8061,1087.8624 C 1468.1577,1087.6742 1466.8863,1082.2074 1469.371,1084.8007 C 1469.2226,1086.5251 1469.2457,1089.2589 1467.0345,1089.2103 C 1465.77,1090.01 1463.3601,1088.2584 1465.8061,1087.8624 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2558" d="M 1477.3175,1068.7456 C 1475.1246,1066.8324 1477.0474,1064.1048 1476.2405,1061.7647 C 1475.7474,1059.7741 1476.6579,1057.2447 1474.8318,1055.7774 C 1473.2714,1052.7291 1473.6378,1048.6451 1470.9305,1046.0844 C 1470.1699,1044.0431 1471.5483,1040.4881 1474.0243,1042.7187 C 1475.3178,1044.2119 1474.9884,1046.67 1476.4244,1048.2741 C 1477.1333,1050.6955 1480.5071,1051.7045 1479.5611,1054.5923 C 1477.4389,1056.3804 1480.4734,1058.3672 1479.4711,1060.0464 C 1480.0539,1061.8073 1480.3031,1063.8773 1480.3624,1066.0068 C 1480.76,1068.1616 1479.702,1070.2969 1477.3175,1068.7456 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2560" d="M 1521.0978,1041.8428 C 1520.8404,1039.6482 1520.4442,1037.3511 1519.2422,1035.6137 C 1517.4209,1037.6239 1517.0433,1034.2758 1515.0078,1033.8947 C 1513.1879,1032.7125 1511.1066,1031.5943 1512.1563,1028.9297 C 1513.2713,1026.8006 1509.65,1025.0537 1511.7031,1023.6919 C 1514.5712,1021.9143 1515.5133,1025.8575 1515.8161,1027.9497 C 1516.0801,1030.5501 1516.7864,1033.3104 1519.6124,1034.1635 C 1522.5704,1035.078 1522.5632,1038.3176 1523.4743,1040.769 C 1523.8226,1042.5049 1521.5582,1044.4647 1521.0978,1041.8428 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2566" d="M 1535.5798,886.11554 C 1534.205,888.32262 1531.9377,889.81904 1530.2327,891.75384 C 1527.8758,891.39957 1527.139,894.46072 1524.9969,894.43866 C 1524.4773,892.20803 1527.417,890.89188 1528.6358,889.28385 C 1530.9867,887.77921 1533.289,886.1669 1535.0971,883.96706 C 1534.4651,882.00838 1536.539,881.68194 1535.9658,884.69205 C 1535.9852,885.19135 1535.6919,885.63945 1535.5798,886.11554 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2670" d="M 1528.5987,1283.9707 C 1529.8558,1282.287 1531.8311,1281.2347 1531.7551,1278.7614 C 1534.0066,1278.7152 1534.0335,1275.413 1536.4809,1275.8412 C 1539.5584,1277.6051 1541.4534,1273.5181 1544.5291,1274.0903 C 1547.0586,1274.0404 1549.5385,1273.3524 1551.8073,1272.5328 C 1555.0606,1273.2349 1550.5125,1274.9121 1548.9813,1274.6544 C 1546.1703,1274.7303 1544.0419,1276.5023 1541.4097,1277.1506 C 1537.8772,1277.196 1535.168,1279.9609 1533.2033,1282.5741 C 1532.7032,1285.9956 1537.1312,1285.9906 1539.4788,1286.0112 C 1543.195,1287.5429 1538.8843,1287.9888 1537.017,1287.4607 C 1534.2769,1288.7003 1532.1448,1285.0383 1529.3044,1285.9572 C 1527.7378,1286.3062 1528.7127,1284.737 1528.5987,1283.9707 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2622" d="M 1032.5328,1739.3909 C 1033.0735,1736.1125 1034.9739,1738.1051 1036.6252,1739.0953 C 1038.6184,1739.5707 1040.5179,1739.8864 1042.2245,1741.2159 C 1045.3098,1742.1408 1043.361,1744.2944 1040.962,1743.4177 C 1039.0041,1742.3558 1036.7601,1742.3039 1035.0786,1742.0622 C 1034.0432,1741.1652 1030.235,1741.7032 1032.5328,1739.3909 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2624" d="M 1054.7757,1742.6667 C 1052.8097,1741.6507 1054.8971,1738.2916 1056.5218,1738.6282 C 1059.4723,1738.1298 1060.2471,1740.095 1057.9604,1741.7919 C 1057.6487,1742.5257 1055.8545,1742.8834 1054.7757,1742.6667 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2626" d="M 934.19552,1737.7569 C 935.75103,1739.2696 940.24236,1738.4862 939.53159,1737.7816 C 938.09813,1739.2167 939.20964,1742.966 937.27755,1742.9663 C 936.09364,1741.3267 933.73822,1741.2844 932.60059,1739.702 C 932.23442,1738.3201 932.28466,1736.4113 934.19552,1737.7569 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2642" d="M 1364.2832,1473.6346 C 1363.9707,1472.0498 1361.4003,1469.1056 1364.2461,1468.6407 C 1365.6475,1469.1314 1365.7685,1473.5627 1364.7707,1473.9989 C 1364.5439,1473.9909 1364.4332,1473.7782 1364.2832,1473.6346 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2644" d="M 1343.1541,1477.9843 C 1342.4003,1476.3155 1341.3974,1473.1691 1343.7113,1472.3993 C 1345.8392,1473.6039 1345.5813,1476.8581 1345.5308,1479.0048 C 1344.8225,1480.2075 1343.7599,1478.3693 1343.1541,1477.9843 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2646" d="M 1331.6057,1488.617 C 1330.1136,1486.9758 1332.4723,1483.2003 1334.0919,1485.7409 C 1335.7396,1488.027 1333.9677,1489.4425 1331.6057,1488.617 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2648" d="M 1318.0148,1487.0062 C 1317.1578,1482.9305 1321.3703,1489.3796 1320.7144,1485.6384 C 1321.5262,1483.4586 1323.7585,1486.676 1324.2904,1483.3002 C 1326.1073,1483.9052 1326.5264,1487.9362 1324.696,1488.5421 C 1322.5337,1488.367 1319.7934,1488.367 1318.0148,1487.0062 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 1312.2649,1450.3559 C 1310.6977,1451.0376 1307.9701,1450.7194 1307.1705,1452.6374 C 1306.9187,1454.9839 1305.3068,1456.3635 1303.6389,1457.7316 C 1303.6337,1460.3253 1301.4485,1461.359 1299.2323,1460.5757 C 1297.9051,1461.7591 1297.5497,1464.3295 1297.3258,1466.2638 C 1296.6125,1467.6156 1297.615,1467.584 1298.6696,1467.514 C 1300.1779,1466.3793 1304.0714,1467.0154 1301.8262,1469.2329 C 1298.4393,1470.9497 1302.8637,1469.9522 1304.4828,1470.0456 C 1306.8773,1471.1115 1308.7241,1468.4427 1310.8897,1468.8578 C 1313.383,1469.3608 1310.7651,1472.2129 1313.5462,1472.9521 C 1315.2572,1474.1678 1317.1048,1475.0176 1318.4843,1476.3274 C 1318.6926,1478.3759 1322.2027,1479.8499 1321.6721,1476.8275 C 1321.027,1475.0991 1319.572,1473.3202 1317.5779,1473.1083 C 1314.9053,1472.157 1317.2945,1469.5489 1318.7968,1468.7328 C 1319.0947,1466.4241 1321.8507,1466.1389 1322.6098,1464.1386 C 1322.2368,1460.5105 1320.0154,1464.3763 1318.6717,1463.5449 C 1316.6869,1461.9508 1318.4568,1459.5836 1320.5157,1459.2944 C 1323.7566,1457.1459 1320.2432,1453.1479 1317.6092,1452.3561 C 1316.3779,1450.0921 1314.0296,1451.7272 1312.2649,1450.3559 z M 1306.7018,1459.4818 C 1307.2674,1459.4313 1307.8763,1459.4982 1308.4207,1459.7632 C 1310.2895,1460.9641 1307.6882,1461.188 1306.8268,1461.1383 C 1303.8143,1460.8829 1305.0048,1459.6334 1306.7018,1459.4818 z M 1312.9524,1462.1697 C 1313.9299,1462.0426 1315.3275,1462.7531 1314.7026,1464.1699 C 1314.1229,1464.728 1313.2291,1464.2967 1312.6087,1464.0136 C 1311.7009,1462.8692 1312.1922,1462.2685 1312.9524,1462.1697 z M 1307.2955,1462.4197 C 1308.0921,1462.4062 1309.0661,1462.574 1309.6396,1463.076 C 1310.5211,1464.1857 1307.9857,1463.336 1307.4832,1463.6073 C 1305.1395,1463.0204 1305.9681,1462.442 1307.2955,1462.4197 z M 1304.8891,1466.0451 C 1305.5795,1466.0179 1306.711,1466.4159 1307.4518,1466.8264 C 1307.7072,1467.9864 1305.7343,1468.0628 1304.9203,1467.889 C 1303.9594,1466.5396 1304.1986,1466.0722 1304.8891,1466.0451 z" id="polyline2650"/> |
<path id="polyline2652" d="M 1295.1407,1460.8012 C 1295.4089,1459.4469 1291.9785,1456.8467 1293.6346,1456.5184 C 1294.5229,1458.1325 1297.0036,1459.2523 1296.8363,1461.1204 C 1296.0121,1462.6083 1295.6578,1462.0663 1295.1407,1460.8012 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2654" d="M 1284.0748,1467.46 C 1283.5805,1464.4985 1283.2641,1461.1734 1284.2605,1458.3306 C 1285.596,1459.5925 1284.2432,1462.6774 1284.8583,1464.6343 C 1286.0056,1465.757 1285.4762,1470.6184 1283.9634,1468.1037 L 1284.0413,1467.6536 L 1284.0748,1467.46 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2656" d="M 1271.2638,1466.4395 C 1270.8663,1464.9102 1272.6941,1461.5193 1273.8274,1464.117 C 1276.2271,1464.3934 1274.98,1459.0131 1277.9479,1460.3175 C 1279.2195,1461.7796 1282.5365,1459.0789 1281.7692,1462.6466 C 1282.2397,1465.4253 1279.6132,1466.6231 1278.0963,1468.3185 C 1275.9547,1468.3582 1274.5619,1467.7785 1272.7728,1467.8485 C 1271.7107,1468.1761 1271.0348,1467.5033 1271.2638,1466.4395 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2658" d="M 1275.4971,1455.9679 C 1275.05,1454.4661 1272.9805,1452.4427 1273.6504,1451.4364 C 1275.3774,1451.865 1277.4708,1452.6947 1277.7251,1453.9816 C 1277.308,1455.7315 1277.8879,1456.7744 1275.4971,1455.9679 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2660" d="M 1266.1393,1460.5857 C 1265.4948,1458.2613 1263.9206,1456.3712 1263.7868,1453.946 C 1262.5805,1451.2849 1265.6742,1450.6956 1266.4364,1453.1758 C 1267.9194,1454.5548 1269.7816,1456.1138 1268.6214,1458.4497 C 1268.2266,1459.6918 1269.4705,1464.3723 1267.0677,1461.875 C 1266.7078,1461.4897 1266.2834,1461.1151 1266.1393,1460.5857 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2662" d="M 1276.6482,1443.3486 C 1273.7394,1442.726 1277.389,1439.7594 1278.7581,1440.3443 C 1280.2414,1441.9964 1278.7687,1444.1128 1276.6482,1443.3486 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2664" d="M 1283.5551,1441.1468 C 1282.9939,1438.4347 1287.1205,1436.1519 1288.2973,1439.0988 C 1290.321,1442.4417 1285.1246,1443.3603 1283.5551,1441.1468 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2666" d="M 1182.4035,1489.4762 C 1183.0761,1486.8139 1183.204,1483.1712 1186.451,1482.4413 C 1188.8323,1481.0395 1189.8146,1478.098 1192.4295,1476.8569 C 1193.3957,1474.5536 1195.2351,1472.7641 1197.7767,1472.5066 C 1198.9603,1471.6465 1200.2655,1467.5751 1201.5794,1470.4222 C 1200.757,1476.1413 1195.2603,1479.2762 1191.7983,1483.4077 C 1189.062,1485.8876 1185.5073,1487.4815 1183.7032,1490.8717 C 1181.879,1492.8297 1181.3655,1491.4729 1182.4035,1489.4762 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2668" d="M 1121.913,1547.5782 C 1122.1939,1544.4063 1117.7901,1546.8616 1118.6831,1544.0861 C 1119.2488,1542.2803 1114.4528,1542.3131 1117.457,1540.0068 C 1120.2077,1539.8132 1119.573,1537.328 1118.2606,1535.783 C 1119.6216,1533.4089 1119.2855,1530.3462 1120.1677,1527.8165 C 1122.9706,1528.1813 1120.8924,1532.2619 1122.3957,1533.885 C 1124.0475,1535.882 1121.8677,1538.3931 1123.0788,1540.5163 C 1121.5544,1543.1561 1125.2353,1545.197 1123.9182,1547.6855 C 1123.1841,1548.2933 1122.5974,1547.861 1121.913,1547.5782 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2550" d="M 981.84561,1036.472 C 981.71755,1034.5627 979.90841,1031.0732 982.33811,1030.209 C 983.7487,1031.2448 982.97547,1034.1857 983.8508,1035.3982 C 983.54864,1036.8329 982.94321,1038.8457 981.84561,1036.472 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2562" d="M 1288.828,587.7106 C 1285.4214,587.11928 1288.598,590.36875 1286.4515,591.52324 C 1283.6504,590.3029 1283.3171,593.45871 1281.7174,594.8221 C 1279.3969,595.73806 1278.3772,591.56621 1279.5445,589.91242 C 1279.4054,586.29815 1281.1548,587.46926 1280.7886,585.65859 C 1282.268,583.27585 1283.9703,586.23114 1284.4028,586.50277 C 1285.3318,585.05459 1289.7014,585.69019 1288.828,587.7106 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2564" d="M 1228.5604,795.31106 C 1229.6065,796.65454 1229.9127,800.72975 1227.8919,797.88854 C 1227.9468,795.54071 1223.7706,796.35641 1225.224,793.23155 C 1226.243,794.50886 1228.6893,792.93705 1228.5604,795.31106 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2628" d="M 858.61111,1693.156 C 858.27412,1695.5575 858.66534,1698.3747 857.57137,1700.4585 C 855.03475,1700.1334 855.34505,1702.5991 853.13408,1703.1838 C 850.52928,1704.9069 851.21668,1700.6197 852.40984,1699.492 C 854.38385,1698.7598 856.18308,1697.5547 856.30882,1695.1964 C 856.53302,1693.9615 858.7457,1688.6711 858.61111,1693.156 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2630" d="M 849.03073,1714.9576 C 848.10126,1717.1801 849.79537,1718.8886 848.45217,1721.1021 C 848.40673,1722.3852 849.20712,1727.5688 847.13693,1725.4824 C 845.73915,1721.7644 847.35284,1717.7756 848.02807,1714.0444 C 848.9962,1711.8219 849.08611,1713.7265 849.03073,1714.9576 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2632" d="M 843.89011,1739.4444 C 843.01199,1741.6487 843.96719,1743.837 844.89265,1745.6731 C 843.76082,1747.3433 846.47656,1750.6929 844.25205,1751.1354 C 840.58768,1751.5063 844.04436,1748.7587 843.22164,1746.9082 C 843.10226,1744.5525 842.41316,1742.2736 841.94748,1740.0659 C 842.18668,1738.7385 844.01984,1736.39 843.89011,1739.4444 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2634" d="M 799.55739,1874.228 C 800.85148,1876.056 803.35231,1876.5388 804.53333,1878.3094 C 803.07912,1879.1125 800.49753,1878.6852 799.09677,1877.8003 C 797.59659,1875.9756 794.56297,1875.6187 793.46751,1878.0406 C 791.65404,1880.3894 790.66952,1875.9842 788.45448,1876.86 C 786.35927,1877.5173 783.86602,1878.4599 782.40182,1876.1616 C 783.37922,1875.5155 785.86354,1874.8424 787.45195,1874.282 C 789.46938,1873.9579 791.44505,1876.2514 793.24193,1874.2869 C 795.0024,1873.8105 798.3883,1872.2033 799.55739,1874.228 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2636" d="M 776.58281,1707.4396 C 774.74363,1710.1294 777.14289,1714.5648 773.90913,1716.4609 C 771.05191,1715.9481 773.90514,1712.9187 774.28111,1711.3581 C 774.65605,1709.3296 774.70064,1706.5744 776.8799,1705.7213 C 777.04731,1706.3544 776.62401,1706.8427 776.58281,1707.4396 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" sodipodi:nodetypes="ccccc"/> |
<path id="polyline2638" d="M 763.47516,1687.5492 C 764.24748,1690.6162 764.28017,1693.8171 764.50079,1696.8566 C 764.28437,1699.182 764.08274,1701.4153 764.41528,1703.7885 C 764.55809,1706.6025 761.65356,1706.6644 761.1358,1704.1419 C 760.55493,1702.0945 762.14229,1700.5224 761.5072,1698.261 C 762.99751,1695.8914 761.03507,1693.3529 761.84136,1690.8248 C 761.32918,1689.1239 758.96804,1686.6416 762.06264,1686.3147 C 762.63057,1683.8358 763.07492,1686.9596 763.47516,1687.5492 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2640" d="M 754.48896,1659.6792 C 756.11298,1661.9391 755.53583,1665.2468 757.90515,1667.0363 C 758.81891,1669.3074 759.02814,1671.743 759.31628,1674.1241 C 760.22659,1675.2387 761.76684,1679.3721 759.06485,1678.0722 C 755.38477,1678.2567 758.11433,1676.2546 757.12541,1674.7684 C 754.23621,1673.6524 758.50088,1671.3051 756.05509,1669.9098 C 756.06465,1667.8449 753.825,1666.922 754.04326,1664.6731 C 754.34423,1662.0859 750.61479,1662.3788 750.36705,1660.3775 C 751.44973,1659.0096 753.06489,1657.5121 754.48896,1659.6792 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2732" d="M 640.18058,1662.3865 C 641.93765,1663.2297 643.43049,1665.005 645.60209,1664.1582 C 646.78437,1665.9363 650.72452,1664.8651 650.07447,1666.914 C 649.3288,1668.859 646.17459,1668.0416 644.74803,1667.1123 C 642.57025,1667.3772 640.82255,1667.8158 640.03072,1665.2091 C 639.65815,1664.2831 638.04045,1662.3156 640.18058,1662.3865 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2734" d="M 640.02889,1691.5452 C 640.36931,1694.5438 639.62823,1697.6296 641.10584,1700.4052 C 641.53771,1703.9877 638.0755,1701.9042 638.53244,1699.4675 C 637.70767,1696.772 639.13029,1694.1652 638.28368,1691.5452 C 638.37555,1689.1743 640.35493,1688.861 640.02889,1691.5452 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2736" d="M 651.46917,1708.5674 C 651.80458,1710.6349 653.44868,1711.0165 653.86642,1713.1166 C 654.38671,1715.379 653.2271,1716.0112 651.69193,1717.3734 C 650.60337,1715.3403 647.53977,1717.5793 646.9505,1714.9513 C 648.26067,1712.7169 645.25229,1711.961 646.97603,1709.9094 C 647.56157,1708.896 650.59014,1706.6481 651.46917,1708.5674 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2738" d="M 287.36352,1586.8287 C 289.44689,1587.2349 290.15196,1589.737 292.52499,1589.7815 C 294.46836,1589.9876 293.47435,1594.6734 294.40203,1594.3743 C 292.93819,1592.9616 291.26385,1591.9815 289.85149,1590.48 C 287.71593,1590.4383 285.7443,1588.813 285.72959,1586.6138 C 286.33904,1586.3508 286.78918,1586.8706 287.36352,1586.8287 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" sodipodi:nodetypes="cccccc"/> |
<path id="polyline2740" d="M 240.47604,1546.3429 C 242.71169,1546.2828 243.41368,1548.8157 245.25314,1549.6218 C 245.82271,1551.7114 243.20772,1552.4388 242.22122,1553.9142 C 240.33809,1553.4305 238.03165,1555.0799 236.56845,1553.1777 C 234.61784,1551.7494 233.04316,1554.7427 230.96985,1553.3772 C 228.38964,1554.4479 225.94879,1556.3219 222.9861,1555.2035 C 220.41965,1556.8919 220.74821,1553.2119 218.24625,1553.2305 C 216.71999,1552.2344 220.00229,1550.6841 220.79528,1549.6725 C 222.10186,1547.8788 227.03663,1549.597 223.50908,1550.4301 C 220.74992,1549.8004 220.69673,1554.0559 223.43172,1553.3238 C 226.45692,1553.4075 228.70829,1551.3304 229.85575,1548.706 C 231.65764,1547.1209 233.85688,1551.7757 234.31256,1548.0591 C 235.02366,1546.4701 237.77466,1545.6021 239.45329,1545.8319 C 239.75951,1546.078 240.23176,1545.996 240.47604,1546.3429 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2742" d="M 130.94009,1568.4801 C 131.96304,1570.716 134.48315,1572.3704 136.69582,1570.5211 C 138.48518,1571.0454 141.00322,1566.7524 140.2827,1570.7986 C 139.2401,1572.6526 137.61997,1573.5621 135.47041,1573.2599 C 133.83039,1574.4755 132.06636,1574.2545 130.33482,1575.2462 C 129.11188,1577.0149 126.78167,1575.9696 124.99873,1576.9112 C 123.86023,1576.0056 125.74528,1572.4093 122.80497,1571.8795 C 123.66678,1569.4741 125.31236,1573.2861 127.04109,1572.9371 C 128.46083,1572.3543 132.36391,1574.4919 131.21954,1571.6937 C 129.93246,1570.5538 127.7888,1569.2969 130.30885,1568.1046 C 130.84636,1567.7663 130.90897,1567.9701 130.94009,1568.4801 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2744" d="M 311.78999,1692.5359 C 312.23307,1694.8758 316.24957,1694.0259 315.09005,1697.0181 C 313.70406,1698.6174 311.65836,1695.865 310.82452,1694.6844 C 309.00373,1693.9851 310.68155,1690.3489 311.78999,1692.5359 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2746" d="M 243.64487,1858.3336 C 244.78696,1859.9549 246.67119,1861.0528 246.61554,1863.3275 C 248.48752,1865.8787 251.77007,1866.3902 254.63644,1865.636 C 256.10715,1867.4721 252.12612,1868.163 250.74215,1868.28 C 247.75839,1868.9507 252.29591,1872.8609 249.1778,1872.7245 C 245.77019,1872.4593 246.61169,1867.9687 244.23906,1866.4959 C 244.88439,1863.5453 242.2312,1863.784 240.89873,1862.0149 C 240.60009,1860.1681 241.85884,1858.9419 242.64228,1857.4738 C 243.03348,1857.6855 243.36221,1857.9948 243.64487,1858.3336 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" sodipodi:nodetypes="ccccccccc"/> |
<path id="polyline2750" d="M 0.062494419,1782.3902 C 2.6839343,1781.134 3.6717977,1783.4265 1.5964088,1785.1952 C 1.0342413,1787.1795 1.2779641,1789.4431 0.062494419,1791.2174" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2752" d="M 0.062494419,1772.3142 C 0.88455058,1772.2826 1.6020883,1773.4812 0.89082266,1774.0799" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2754" d="M 0.062494419,1828.5312 C 3.217935,1827.6558 2.2281291,1830.7219 0.40821697,1831.6456 C 0.30871947,1831.9295 0.096801633,1832.1705 0.062494419,1832.4795" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2756" d="M 590.12474,1624.0451 C 592.42764,1624.4155 594.61986,1624.1705 596.88297,1623.9916 C 598.77519,1625.0149 601.04903,1626.632 603.04245,1624.8922 C 604.94689,1624.8223 607.2269,1624.1752 609.02564,1624.9581 C 611.37223,1625.9962 612.17728,1627.384 608.95628,1627.5479 C 606.74573,1628.3458 604.08794,1627.0955 602.00739,1627.8042 C 600.00186,1627.9687 598.44316,1629.5588 596.57417,1628.4845 C 594.33312,1627.3557 591.50895,1628.0395 589.75334,1625.8713 C 588.59299,1624.8567 587.52302,1623.4304 590.12474,1624.0451 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2758" d="M 411.95829,1563.2043 C 413.08877,1564.9582 413.72851,1566.9903 415.06589,1568.5267 C 413.64399,1569.6901 415.34916,1572.9343 414.07491,1573.0849 C 413.45593,1571.1582 411.49941,1570.2924 411.09169,1568.1472 C 411.15403,1564.996 407.7098,1564.7532 405.34855,1565.1921 C 404.03641,1564.9108 406.99504,1561.9783 408.07045,1561.755 C 409.45869,1563.5846 410.13397,1562.6004 411.95829,1563.2043 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2760" d="M 181.90972,1586.8638 C 184.13187,1588.8199 188.06537,1585.278 189.4849,1588.6888 C 190.12013,1592.0698 185.48815,1591.6775 183.35779,1591.1061 C 181.4663,1590.1414 179.58183,1588.0585 179.79294,1585.8433 C 180.70369,1585.2933 181.25227,1586.4755 181.90972,1586.8638 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2762" d="M 392.53753,1762.3205 C 393.28727,1764.207 391.20006,1765.7853 393.7241,1767.1763 C 393.59084,1770.2863 391.01809,1765.3953 389.7525,1766.9381 C 389.63735,1771.2453 388.497,1765.8091 386.84612,1766.2082 C 384.93557,1766.4021 382.937,1764.3316 383.21707,1762.4271 C 384.41412,1763.7754 386.76099,1765.3006 388.11353,1763.1302 C 390.72169,1763.4452 391.26202,1760.9669 390.90361,1758.8833 C 391.99969,1759.3722 392.21006,1761.2807 392.53753,1762.3205 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2790" d="M 765.20904,1845.124 C 767.19806,1845.938 768.22298,1847.2932 768.8128,1849.2818 C 769.84099,1851.2175 772.13895,1852.2539 772.82132,1854.3594 C 770.04465,1854.5749 767.74718,1851.8942 766.06309,1849.9565 C 764.60812,1848.7063 763.14991,1847.0566 761.10675,1848.4564 C 759.52099,1850.2745 757.1119,1847.6773 755.36866,1849.6343 C 751.3884,1852.261 750.98719,1858.1158 753.32624,1861.9314 C 751.79253,1863.1866 749.71375,1864.1768 747.94196,1864.939 C 747.90504,1862.1516 745.30139,1861.2657 745.35738,1864.7183 C 743.53776,1866.7693 741.44998,1868.6649 739.88397,1871.0061 C 737.82673,1871.0219 738.38302,1867.7916 736.96791,1866.6249 C 735.21565,1864.1944 735.47434,1869.085 736.50486,1870.0396 C 737.62056,1871.5519 738.75427,1875.3914 735.64396,1874.9715 C 732.2978,1874.6068 728.43309,1876.0583 725.69891,1873.3695 C 723.65222,1872.912 722.22664,1871.3593 719.9693,1872.0275 C 718.14254,1873.556 716.80961,1871.8373 715.63576,1870.4154 C 713.46152,1867.4614 709.45983,1868.901 706.8351,1866.9254 C 703.93171,1865.57 702.39755,1869.9644 699.6684,1869.1272 C 699.57916,1866.0988 697.68616,1867.2582 695.72121,1867.7845 C 694.28039,1867.0691 691.27202,1865.9393 694.35829,1865.1532 C 696.57191,1866.8116 697.8619,1864.1561 699.75017,1864.2139 C 700.93655,1865.1206 701.18691,1868.7639 702.97335,1866.227 C 705.55557,1864.8878 708.66164,1865.4324 711.40259,1865.7442 C 713.39813,1866.8453 716.75802,1866.1097 717.08398,1869.1272 C 718.37023,1869.4521 720.50761,1868.0947 722.23449,1869.676 C 723.753,1871.9172 725.40898,1868.4738 727.33284,1869.7175 C 729.79996,1870.6534 731.73938,1873.4027 734.72245,1872.1342 C 736.87887,1870.6524 733.81371,1868.0301 734.05397,1865.9589 C 733.25591,1864.15 735.46473,1860.6786 737.3217,1862.4144 C 737.81364,1862.2223 739.15425,1866.1582 741.26257,1865.238 C 744.76251,1864.6778 743.78619,1860.0346 746.45665,1858.6557 C 748.97774,1858.999 750.31035,1856.8742 750.04394,1854.5483 C 749.81689,1851.3167 753.71137,1850.8174 754.5517,1848.0235 C 756.52388,1847.8001 757.36851,1844.6897 759.75031,1846.3053 C 762.11444,1847.7135 762.79717,1844.0882 765.20904,1845.124 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2728" d="M 589.75334,1175.2304 C 589.26069,1172.9846 589.82618,1170.673 588.82497,1168.5714 C 589.88026,1166.2175 588.67634,1163.7849 589.75334,1161.4831 C 588.91795,1159.279 590.25716,1157.4262 590.54195,1155.3463 C 589.88391,1152.9807 591.61451,1151.2448 592.27841,1149.24 C 591.51264,1146.33 594.72219,1148.8319 595.07585,1150.435 C 597.27583,1154.2895 596.54358,1159.0536 596.28878,1163.2553 C 596.6502,1166.3472 593.94611,1168.9054 594.1722,1172.0085 C 593.03582,1173.5878 592.37654,1175.8592 590.53323,1176.6797 C 590.11488,1176.2785 590.10191,1175.6722 589.75334,1175.2304 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2764" d="M 580.80423,1314.1494 C 581.2092,1311.8063 581.68688,1309.522 580.89266,1307.3113 C 581.63921,1305.5935 580.07503,1301.7985 583.25499,1302.2285 C 584.58898,1303.2916 585.155,1305.5872 587.16584,1306.2731 C 589.0798,1307.6496 592.52719,1307.2781 593.39246,1309.7458 C 591.43999,1311.4326 588.48854,1310.6691 586.22562,1311.8401 C 584.08045,1312.6704 583.15478,1314.8005 581.13841,1315.7062 C 580.54827,1315.3661 580.80258,1314.6851 580.80423,1314.1494 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2766" d="M 581.84401,1298.0936 C 582.12619,1294.2617 585.36843,1297.2422 582.73361,1299.047 C 581.8596,1299.4656 582.02202,1298.6295 581.84401,1298.0936 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2768" d="M 582.51234,1291.2734 C 582.57194,1288.7507 582.94258,1286.18 582.36387,1283.6209 C 582.69944,1280.6839 582.19769,1275.8414 586.11425,1275.3256 C 587.9997,1274.9308 589.65959,1276.9564 591.41777,1277.3921 C 591.7367,1280.4513 596.64329,1279.3317 596.84591,1282.0911 C 595.65694,1285.2016 591.24682,1283.3944 589.90185,1286.4407 C 588.28593,1288.2581 586.34443,1289.7886 585.55729,1292.1859 C 583.01664,1293.1616 583.95871,1296.7632 583.44071,1293.0455 C 582.91911,1292.7155 582.39668,1291.8767 582.51234,1291.2734 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
<path id="polyline2726" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline" d="M 594.64155,1189.7788 C 594.7133,1193.1019 593.96458,1196.8179 591.90717,1199.5557 C 591.12737,1199.5725 591.12148,1198.9349 590.94158,1198.3744 C 590.47643,1196.0952 591.47062,1194.0616 589.71628,1192.3059 C 589.78137,1191.4297 590.26823,1190.5101 589.52779,1189.7788 C 588.44668,1187.279 592.89166,1186.921 593.80096,1188.8161 C 593.99306,1189.1954 594.49906,1189.3915 594.64155,1189.7788 z" sodipodi:nodetypes="ccccccc"/> |
<path id="polyline2532" d="M 1925.3326,1040.8756 C 1924.4333,1039.7183 1925.1344,1034.3077 1925.7783,1037.8687 C 1926.0442,1038.458 1926.4894,1043.1568 1925.3326,1040.8756 z" style="opacity:1;fill:#c8ebff;stroke:#0978ab;stroke-width:0.69999999;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;display:inline"/> |
</g> |
<g inkscape:groupmode="layer" id="layer11" inkscape:label="Departments" style="display:inline"> |
<path id="path5079" style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#646464;stroke-width:1;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" d="M 1123.3474,435.46985 L 1123.9983,434.64591 L 1125.2703,434.43552 L 1126.0224,433.37914 L 1126.1352,430.98093 L 1127.5716,432.18061 L 1128.6041,432.04891 L 1129.0419,431.60933 L 1128.6169,431.16328 L 1127.8049,430.24534 L 1130.3299,430.43818 L 1130.2949,429.80847 L 1132.2555,428.18076 L 1131.6332,427.38449 L 1130.3056,427.30603 L 1128.6186,426.3255 L 1128.748,422.08059 L 1127.2146,420.88488 L 1125.2214,425.33115 L 1126.1823,428.2256 L 1124.8475,427.19468 L 1124.56,426.62517 L 1125.0706,422.91771 L 1124.6208,421.73876 L 1123.459,421.17955 L 1122.2532,421.71284 L 1121.8551,421.26077 L 1121.9905,419.64669 L 1120.8498,419.18163 L 1119.7469,418.73841 L 1118.6602,419.33554 L 1118.1522,418.16447 L 1116.3439,417.41024 L 1115.028,417.6444 L 1114.4438,417.9552 L 1114.0764,418.48629 L 1114.3127,420.99074 L 1115.0376,422.75478 L 1117.4696,422.18327 L 1118.0225,423.33779 L 1118.6899,423.38957 L 1118.7751,423.92432 L 1119.0466,426.02337 L 1117.6816,425.87389 L 1117.0011,425.77444 L 1116.2764,424.04967 L 1113.1999,421.85937 L 1112.3382,422.77756 L 1111.8955,423.23273 L 1111.2803,422.96999 L 1110.6847,422.67293 L 1110.389,422.1202 L 1110.3915,418.57425 L 1109.7217,417.13797 L 1109.0303,415.52743 L 1109.7398,414.55675 L 1113.7713,413.93563 L 1114.4558,413.87209 L 1115.8547,415.08777 L 1115.4158,416.20156 L 1117.1612,416.86486 L 1119.1938,415.38166 L 1118.4659,412.4672 L 1118.4667,412.38504 L 1118.4153,411.74378 L 1117.6375,409.31371 L 1118.1517,408.17113 L 1117.7428,407.31331 L 1117.7363,406.69545 L 1118.705,405.87052 L 1118.6309,404.6836 L 1118.069,404.37165 L 1116.6891,405.50052 L 1116.0485,405.43121 L 1116.5665,404.27873 L 1115.4053,403.7238 L 1113.5148,404.25073 L 1112.847,402.71268 L 1110.4626,401.62795 L 1110.8932,401.26977 L 1111.5391,400.38421 L 1110.1037,398.63823 L 1109.7284,398.19343 L 1114.0326,395.25131 L 1114.4774,394.76196 L 1115.3731,395.18154 L 1115.8573,395.29882 L 1118.658,396.80389 L 1118.849,397.39697 L 1120.3328,395.37552 L 1122.9368,393.45445 L 1123.4529,393.34564 L 1123.9801,391.95872 L 1124.5122,388.50999 L 1126.1915,387.74308 L 1125.7441,384.13763 L 1126.3532,384.18603 L 1126.3975,380.54089 L 1126.3115,379.93389 L 1126.2816,379.60341 L 1126.2416,379.27447 L 1126.1997,377.55076 L 1126.9412,376.63424 L 1128.2348,376.77923 L 1129.637,378.01131 L 1134.5624,376.61965 L 1135.146,376.34615 L 1134.7365,376.02666 L 1135.2804,375.23708 L 1134.8639,374.74488 L 1133.8916,373.90732 L 1133.3304,373.70963 L 1130.6691,372.46834 L 1130.0602,372.33442 L 1127.8016,371.33919 L 1127.6965,370.19156 L 1129.8543,369.04038 L 1129.5985,366.68556 L 1128.9924,366.4039 L 1127.8184,364.85868 L 1127.2191,364.58869 L 1126.4401,362.25553 L 1129.7472,361.56331 L 1130.4365,359.78915 L 1130.1862,357.88457 L 1130.8878,357.59554 L 1130.921,354.51753 L 1130.2317,353.4466 L 1130.3185,352.19574 L 1131.8379,351.65827 L 1131.721,351.15616 L 1131.3454,350.64664 L 1129.9639,347.92494 L 1129.7565,346.87012 L 1129.3259,346.41932 L 1127.1577,344.35284 L 1126.8087,343.93721 L 1126.0929,343.11767 L 1126.4724,342.94866 L 1128.0713,341.95641 L 1128.5204,341.51217 L 1128.2303,340.98059 L 1128.5096,339.88927 L 1127.6564,338.29625 L 1126.4555,337.98161 L 1126.8272,336.89767 L 1127.8657,336.52284 L 1127.9558,335.41501 L 1128.5288,335.22502 L 1129.8963,336.0539 L 1130.3327,334.5256 L 1130.0674,333.93674 L 1128.9647,332.40885 L 1130.184,329.59531 L 1129.2649,327.88684 M 1113.0149,418.4401 L 1113.2061,418.39231 L 1113.2858,418.17949 L 1113.5571,418.13218 L 1113.6596,418.32179 L 1113.7136,418.09216 L 1113.8635,417.83061 L 1113.9849,417.83996 L 1114.2128,417.57871 L 1113.9722,417.32046 L 1114.0192,416.92664 L 1114.0367,416.90197 L 1114.6003,416.94754 L 1114.5757,416.79126 L 1114.3028,416.24683 L 1113.9658,416.07983 L 1113.4607,416.27299 L 1113.2969,416.14847 L 1112.79,416.34988 L 1112.9161,416.82721 L 1112.3151,417.06916 L 1112.0354,417.30523 L 1112.0257,417.41196 L 1112.3641,417.42281 L 1112.5185,417.62941 L 1112.4112,417.99992 L 1112.6181,418.14942 L 1112.714,418.10089 L 1112.8093,418.12627 L 1112.6593,418.39622 L 1112.799,418.315 L 1113.0149,418.4401 z M 1202.059,1018.2312 L 1201.7113,1017.7743 L 1200.6203,1016.4783 L 1200.3864,1015.9246 L 1200.0494,1013.6595 L 1198.611,1012.7083 L 1198.0064,1012.7343 L 1195.133,1011.9273 L 1194.227,1012.7251 L 1194.0044,1012.1553 L 1193.4519,1008.5852 L 1191.8853,1006.0633 L 1191.8315,1005.4517 L 1189.9838,1002.361 L 1188.7031,1001.1818 L 1188.1549,1001.4364 L 1187.366,1002.3419 L 1184.4309,1002.2399 L 1184.2324,1002.8144 L 1183.6865,1002.7071 L 1183.2091,1003.0387 L 1182.3764,1001.7029 L 1180.1447,1001.8794 L 1180.1104,1002.9649 L 1175.8383,1002.985 L 1174.1293,1003.6413 L 1173.5621,1003.8848 L 1172.987,1004.1102 L 1173.3995,1000.5057 L 1172.8589,998.75376 L 1173.3641,998.40892 L 1173.9533,998.24961 L 1172.5331,996.37295 L 1172.5436,995.17023 L 1172.1227,994.74293 L 1171.6516,993.9381 L 1170.5371,994.5788 L 1169.2937,994.48063 L 1167.6812,992.56576 L 1167.3684,992.0021 L 1165.2098,993.38577 L 1162.7084,993.79624 L 1160.9652,995.6407 L 1156.8068,997.1844 L 1156.2726,997.53942 L 1156.2192,996.95969 L 1156.3678,995.8114 L 1154.369,994.79225 L 1154.0346,994.33722 L 1152.9132,994.41375 L 1152.5195,993.57626 L 1151.9536,993.83585 L 1150.2381,993.54176 L 1149.1504,994.09468 L 1146.7211,993.57214 L 1146.2944,993.83698 L 1144.8414,994.1837 L 1144.2804,994.03736 L 1143.4195,993.37423 L 1143.6789,992.85379 L 1143.1389,992.71285 L 1142.3311,993.27957 L 1141.3994,991.89841 L 1136.9632,992.17046 L 1136.9498,993.42907 L 1136.3467,993.54271 L 1130.4326,992.53003 L 1129.6711,991.62724 L 1129.2268,991.23447 L 1128.9421,990.90913 L 1128.5612,990.70952 L 1128.0378,990.70928 L 1127.0165,990.55445 L 1126.6897,990.00661 L 1126.8928,988.11799 L 1125.7802,985.17505 L 1120.6252,987.19498 L 1119.2044,985.94806 L 1118.705,986.31546 L 1117.5602,986.78083 L 1116.9919,987.00784 L 1116.063,986.35145 L 1115.3899,984.6624 L 1113.5303,983.07358 L 1111.741,982.83163 L 1110.6808,983.34968 L 1110.2941,982.95807 L 1109.7501,982.001 L 1109.3988,981.49125 L 1108.1973,974.27171 L 1107.7158,974.66629 L 1103.5881,973.75941 L 1103.2896,973.33581 L 1102.9632,972.9321 L 1104.0138,972.2455 L 1104.1218,970.95448 L 1103.1375,968.56648 L 1103.6022,966.69087 L 1104.6216,965.90207 L 1105.744,965.61271 L 1106.2015,965.20649 L 1106.5514,964.68594 L 1105.6855,963.11947 L 1107.4199,961.40675 L 1106.8216,961.3332 L 1104.8788,959.99699 L 1102.3245,960.11815 L 1099.8702,959.31235 L 1097.3008,959.68793 L 1096.51,958.67895 L 1095.9453,958.93681 L 1091.3726,961.38562 L 1091.364,961.99105 L 1091.1846,963.15654 L 1091.8976,965.37892 L 1091.3513,965.662 L 1091.1396,968.11053 L 1090.2643,969.72098 L 1089.6562,969.68276 L 1087.2748,969.27557 L 1086.9153,968.76178 L 1085.1096,967.0635 L 1083.8658,967.1982 L 1082.1681,965.39408 L 1080.4195,964.74653 L 1080.1248,965.29805 L 1079.102,966.84457 L 1080.1029,969.70756 L 1079.1545,971.20673 L 1079.2177,972.40817 L 1078.7589,972.69386 L 1076.6357,972.50289 L 1076.1959,972.95975 L 1074.4021,973.47156 L 1073.3488,974.13825 L 1073.1237,976.61355 L 1072.3299,977.57598 L 1071.7535,979.91823 L 1071.473,980.41067 L 1070.5204,982.69711 L 1069.5661,983.52255 L 1068.347,983.77119 L 1066.6401,983.14778 L 1066.0961,982.81344 L 1063.8783,981.66545 L 1063.4416,981.94698 L 1062.5491,982.41791 L 1062.0874,981.96889 L 1059.2586,979.44611 M 1463.1642,1420.8494 L 1462.9726,1420.2433 L 1461.9855,1418.6401 L 1457.9671,1415.814 L 1457.6237,1411.3922 L 1456.5814,1411.6727 L 1455.2756,1410.8261 L 1454.7291,1410.6584 L 1453.9221,1409.8688 L 1452.68,1406.5936 L 1452.1289,1406.345 L 1450.4719,1404.5538 L 1450.1449,1403.3464 L 1449.6567,1403.3216 L 1449.191,1403.1661 L 1448.7082,1403.0149 L 1447.2248,1402.7144 L 1446.7599,1402.3073 L 1443.1915,1402.9776 L 1439.6975,1402.573 L 1438.6867,1404.1238 L 1437.0866,1404.7907 L 1436.6627,1404.9404 L 1436.2394,1404.7874 L 1436.9908,1398.6363 L 1437.8778,1397.7989 L 1438.3612,1397.4296 L 1439.805,1396.3252 L 1442.0257,1391.9867 L 1442.1623,1391.3576 L 1444.0855,1386.7102 L 1441.1515,1386.741 L 1439.3924,1382.4199 L 1439.1594,1381.8538 L 1438.5656,1381.8875 L 1436.2941,1382.5094 L 1435.8106,1382.1844 L 1433.7909,1381.0817 L 1432.2047,1381.3487 L 1432.0662,1380.7784 L 1431.61,1379.0808 L 1432.2673,1376.2356 L 1432.4051,1375.608 L 1433.0742,1372.4686 L 1436.0136,1366.9095 L 1436.2323,1358.6219 L 1435.6677,1358.8447 L 1432.7947,1359.7548 L 1430.9834,1359.7115 L 1430.7994,1359.1212 L 1430.3689,1357.9645 L 1430.4475,1350.2006 M 1613.8726,1251.6099 L 1613.327,1251.8208 L 1610.5896,1251.3985 L 1609.6884,1250.6984 L 1608.7188,1251.3222 L 1608.6399,1251.9567 L 1605.525,1255.8954 L 1602.5507,1256.4992 L 1601.746,1258.8799 L 1600.841,1259.7437 L 1597.8007,1260.1521 L 1596.2744,1261.2417 L 1595.0806,1260.8998 L 1594.3843,1262.6249 L 1592.6437,1262.8295 L 1591.1827,1263.9928 L 1591.433,1265.864 L 1589.2897,1267.0043 L 1587.2335,1270.1367 L 1583.0479,1272.707 L 1579.9939,1272.3359 L 1580.1468,1272.9327 L 1580.3007,1274.134 L 1578.4619,1279.8682 L 1577.9793,1280.1701 L 1575.067,1282.5674 L 1574.7717,1283.6987 L 1573.8817,1289.6321 L 1573.2593,1289.61 L 1570.1863,1289.4465 L 1568.385,1289.8807 L 1567.9754,1289.8001 L 1567.3907,1289.6076 L 1564.4139,1289.7989 L 1561.5838,1288.7228 L 1559.895,1289.4186 L 1558.7149,1289.0701 L 1558.149,1288.9105 L 1557.0044,1289.1754 L 1554.8186,1288.331 L 1554.2796,1288.6359 L 1553.1007,1288.6359 L 1551.9521,1286.4457 L 1550.1981,1285.9469 L 1549.3569,1285.022 L 1546.5,1285.5681 L 1545.6655,1284.6933 L 1545.5458,1283.4929 L 1545.2931,1282.977 L 1544.3355,1280.9924 L 1543.8107,1280.7222 L 1540.748,1278.0262 L 1539.6788,1275.8863 L 1539.093,1275.7844 L 1537.8605,1277.1009 L 1536.2396,1277.8388 L 1535.9324,1278.0944 L 1536.3315,1278.5914 L 1537.797,1280.5476 L 1536.9238,1283.599 L 1536.8454,1284.1581 L 1536.5984,1285.2616 L 1535.563,1285.6089 L 1535.2626,1286.6057 L 1534.6588,1286.4949 L 1531.582,1284.5327 L 1531.0093,1283.411 L 1530.5121,1283.7884 L 1528.2978,1284.9182 L 1527.0456,1286.202 L 1523.4205,1286.5535 L 1523.325,1286.7133 L 1523.7838,1287.1025 L 1524.2726,1289.479 L 1524.7932,1289.7661 L 1527.0861,1295.9703 L 1524.7969,1300.5135 L 1522.5485,1301.6129 L 1522.2484,1301.0459 L 1519.5455,1295.9714 L 1517.2525,1293.8081 L 1515.8822,1290.9725 L 1515.4316,1291.3596 L 1514.4146,1291.9159 L 1514.092,1291.4781 L 1513.643,1290.5104 L 1513.6382,1289.8977 L 1513.4567,1286.8523 L 1512.8329,1286.7912 L 1510.5444,1285.7495 L 1510.0199,1285.7399 L 1508.463,1284.3894 L 1507.7548,1284.397 L 1506.8598,1285.0655 L 1505.4586,1284.158 L 1504.3585,1284.1383 L 1504.012,1284.6135 L 1503.5185,1285.689 L 1504.224,1286.5042 L 1503.2683,1288.7819 L 1503.2858,1290.0242 L 1502.3498,1290.2185 L 1500.9874,1289.1687 L 1500.6212,1289.699 L 1497.9816,1291.4766 L 1497.0115,1292.2526 L 1496.6429,1294.1429 L 1492.8762,1296.0762 L 1492.3802,1296.2563 L 1491.0357,1296.8963 L 1490.2671,1297.5954 L 1489.7749,1297.8384 L 1487.9922,1299.1229 L 1487.7661,1299.7065 L 1486.4512,1303.2113 L 1486.3705,1303.8133 L 1485.9574,1305.5434 L 1484.5106,1307.4241 L 1484.0904,1307.8849 L 1483.6823,1309.0788 L 1482.6465,1309.6063 L 1481.6097,1309.9424 L 1481.8597,1311.1559 L 1480.8558,1313.2866 L 1482.2879,1314.3482 L 1483.889,1313.7243 L 1484.3981,1314.0497 L 1484.3945,1314.5615 L 1484.1944,1316.0515 L 1484.3134,1316.6253 L 1484.4746,1317.7885 L 1482.9257,1318.6486 L 1483.266,1319.8532 L 1482.9858,1322.2663 L 1484.3499,1323.1425 L 1483.8269,1324.2651 L 1483.8606,1325.3762 L 1483.9785,1325.9348 L 1482.7657,1325.7325 L 1482.3855,1325.2239 L 1478.7035,1321.7751 L 1478.0629,1320.685 L 1478.1159,1318.1508 L 1477.6887,1317.7966 L 1474.7686,1316.3784 L 1474.2048,1316.5036 L 1473.1342,1316.9496 L 1473.1043,1318.168 L 1471.7058,1320.2367 L 1471.462,1321.4551 L 1471.9156,1323.2636 L 1472.1638,1323.6503 L 1472.5143,1323.9398 L 1473.0383,1324.285 L 1476.0671,1326.4815 L 1476.3852,1328.3596 L 1477.348,1329.1733 L 1477.7608,1330.3598 L 1477.8236,1330.9933 L 1478.2716,1332.1661 L 1479.2507,1332.9216 L 1482.7797,1333.9126 L 1482.4699,1336.3225 L 1481.2563,1336.4562 L 1480.6555,1336.5103 L 1476.0365,1335.6699 L 1475.4459,1335.4515 L 1472.4525,1334.7085 L 1469.9412,1332.82 L 1467.5396,1332.6177 L 1467.0384,1332.9043 L 1465.5579,1333.7684 L 1462.8104,1332.9903 L 1462.2383,1333.1521 L 1460.9846,1334.4007 L 1458.0846,1334.8531 L 1457.2454,1335.7012 L 1455.5662,1336.2732 L 1454.9463,1337.2989 L 1454.4944,1336.9348 L 1452.8769,1336.3547 M 1611.9405,1466.4102 L 1609.7376,1465.9084 L 1609.311,1464.147 L 1608.2511,1463.7051 L 1607.6991,1463.5314 L 1605.7602,1462.3397 L 1607.1484,1458.7941 L 1606.5856,1457.7555 L 1605.404,1457.4364 L 1605.1158,1456.8691 L 1605.226,1456.2602 L 1606.1252,1453.3268 L 1608.0068,1451.0524 L 1608.5963,1451.0721 L 1608.7467,1449.8302 L 1607.7954,1447.597 L 1609.2736,1444.8208 L 1608.7521,1444.6375 L 1607.0567,1442.499 L 1606.5846,1442.7583 L 1605.6941,1443.3264 L 1605.0686,1443.2966 L 1603.2977,1443.5712 L 1602.2918,1442.9867 L 1601.8285,1443.3459 L 1599.9945,1441.9922 L 1599.9641,1441.4288 L 1598.2159,1440.2749 L 1596.8222,1439.0834 L 1595.0853,1439.3319 L 1593.8049,1436.5852 L 1593.4756,1436.0848 L 1591.9459,1433.6164 L 1590.8031,1433.4501 L 1590.1843,1432.4652 L 1590.5036,1429.3296 L 1591.9006,1427.3526 L 1591.7096,1426.7552 L 1590.825,1422.5653 L 1589.6939,1421.1336 L 1589.302,1419.3043 L 1584.0233,1418.8498 L 1584.1287,1418.2236 L 1582.5595,1416.3834 L 1580.2287,1415.6965 L 1577.06,1417.318 L 1576.945,1416.7549 L 1576.4951,1414.5146 L 1575.0903,1413.7571 L 1575.0992,1413.1632 L 1575.4943,1412.1044 L 1574.5773,1411.4211 L 1574.3683,1410.459 L 1574.399,1409.9605 L 1574.3542,1409.7356 L 1575.1242,1408.8183 L 1583.2208,1406.3854 L 1583.6918,1405.9895 L 1583.8861,1405.3821 L 1582.4884,1403.4088 L 1578.3874,1402.3414 L 1579.9482,1398.4191 L 1582.2258,1397.8035 L 1582.8056,1397.7055 L 1582.2897,1397.3709 L 1581.9631,1394.2383 L 1579.7092,1393.4689 L 1578.9724,1392.5077 L 1578.8589,1391.8836 L 1583.9872,1393.1705 L 1584.5381,1393.3854 L 1588.5307,1394.798 L 1592.2167,1392.8943 L 1592.7761,1392.659 L 1595.2902,1387.7676 L 1598.6288,1386.491 L 1599.2022,1386.3227 L 1599.6521,1386.8304 L 1601.4139,1387.0958 L 1602.074,1388.1301 L 1604.6008,1389.7778 L 1605.6595,1391.3172 L 1606.8194,1391.4847 L 1609.554,1390.8753 L 1610.119,1390.8273 L 1611.9565,1390.6036 L 1612.5126,1390.3232 L 1613.1052,1390.1519 L 1613.2288,1389.5238 L 1609.4002,1384.7017 L 1607.7131,1384.7607 L 1607.1408,1384.5628 L 1606.7079,1384.1248 L 1605.475,1382.7295 L 1604.3134,1379.8959 L 1601.2963,1379.5759 L 1601.0815,1378.3496 L 1601.1854,1377.7233 L 1600.8572,1375.4555 L 1599.8518,1374.8866 L 1599.4939,1374.4206 L 1599.921,1373.2258 L 1594.8597,1370.3834 L 1594.5412,1369.8787 L 1593.7074,1367.4711 L 1591.4504,1366.5178 L 1588.2301,1363.5308 L 1588.4825,1359.7546 L 1589.3112,1357.3692 L 1589.5962,1356.8078 L 1589.1348,1356.5371 L 1588.7517,1355.5249 L 1588.3355,1355.0623 L 1587.6035,1353.3317 L 1585.4995,1351.0484 L 1585.2535,1350.624 L 1584.8634,1349.7287 L 1583.455,1348.6157 L 1583.0737,1344.8834 L 1580.8341,1340.5842 L 1582.1808,1339.3494 L 1582.604,1338.8963 L 1582.7013,1338.2892 L 1582.2554,1336.5886 L 1584.6461,1333.2075 L 1584.2302,1331.4541 L 1585.3659,1330.1315 L 1585.5272,1325.4816 L 1586.027,1325.1747 L 1587.2012,1325.0454 L 1587.9457,1324.0593 L 1589.651,1323.4045 L 1590.4317,1320.4444 L 1593.3119,1321.3282 L 1593.8798,1321.5576 L 1593.387,1318.5541 L 1594.6026,1316.4663 L 1594.4746,1314.0144 L 1594.7011,1313.4447 L 1595.6775,1312.6902 L 1596.3613,1310.9618 L 1598.0687,1310.3181 L 1600.2785,1308.1482 L 1602.6088,1308.4008 L 1603.0686,1307.9835 L 1603.8317,1307.2599 L 1604.1551,1306.8427 L 1605.6603,1305.719 L 1606.1662,1305.3341 M 1301.7769,1145.3021 L 1302.7925,1146.015 L 1305.2522,1145.8209 L 1306.0422,1144.209 L 1308.2613,1145.2873 L 1309.5083,1144.0706 L 1311.846,1143.2394 L 1314.2646,1143.5136 L 1314.792,1143.8467 L 1315.2367,1143.3956 L 1317.3777,1142.1369 L 1317.3871,1140.2642 L 1317.0882,1139.9427 L 1316.5259,1139.2941 L 1315.9141,1139.1462 L 1315.7558,1137.9514 L 1316.5382,1135.542 L 1317.0608,1135.2644 L 1318.2211,1135.0779 L 1319.4382,1135.1668 L 1319.6008,1134.5642 L 1318.8489,1133.6005 L 1318.7335,1131.7538 L 1320.9986,1130.8862 L 1321.8271,1130.4764 L 1322.1799,1130.1627 L 1321.8033,1129.2792 L 1321.5951,1128.8286 L 1326.2428,1125.5186 L 1326.8055,1125.2179 L 1329.1195,1125.3924 L 1329.7887,1124.5553 L 1331.7534,1123.7139 L 1332.2937,1123.6335 L 1332.5797,1122.3848 L 1335.8806,1121.5658 L 1336.456,1121.6086 L 1338.2026,1123.2025 L 1338.5513,1123.6892 L 1338.415,1125.3012 L 1337.3864,1125.5074 L 1337.095,1126.5995 L 1337.0679,1126.9607 L 1337.2422,1129.3115 L 1339.2074,1131.4723 L 1339.6875,1131.8132 L 1341.7339,1133.6609 L 1342.0819,1134.1002 L 1343.1494,1135.3294 L 1343.2245,1135.8716 L 1343.2601,1138.6429 L 1343.2398,1139.1969 L 1343.2873,1139.7498 L 1343.2759,1140.6926 L 1343.1427,1141.1459 L 1342.2256,1143.5426 L 1342.3169,1146.7633 L 1342.4748,1147.3889 L 1343.329,1150.4201 L 1343.569,1151.0025 L 1342.6456,1153.053 L 1342.8803,1153.5906 L 1343.4665,1155.8956 L 1343.3192,1156.4932 L 1343.2506,1157.727 L 1344.4945,1158.9984 L 1345.0852,1159.1559 L 1345.4369,1159.493 L 1345.6567,1159.9313 L 1345.6396,1160.2764 L 1342.7258,1163.9104 L 1342.5459,1164.4774 L 1342.5097,1164.8712 L 1342.5349,1166.0866 L 1343.5896,1167.5739 L 1343.8949,1168.1005 L 1344.7216,1169.0424 L 1345.1911,1169.4657 L 1345.5595,1169.9698 L 1345.7696,1170.5609 L 1346.0284,1172.4852 L 1345.8785,1173.1172 L 1345.5437,1174.1185 L 1345.7138,1175.1609 L 1346.5353,1175.9843 L 1348.7349,1176.7705 L 1349.4798,1177.6639 L 1349.5835,1178.2533 L 1349.1693,1179.321 L 1348.846,1179.7942 L 1347.6626,1181.0689 L 1347.3327,1181.5502 L 1347.3003,1183.7297 L 1347.6066,1184.209 L 1347.5553,1185.4434 L 1346.796,1186.4752 L 1346.92,1187.7038 L 1347.4013,1188.121 L 1348.587,1189.6313 L 1348.6273,1191.5779 L 1348.6761,1192.2263 L 1348.7406,1192.5247 L 1349.6791,1194.7824 L 1350.9854,1196.0417 L 1351.423,1196.4628 L 1352.0481,1198.0965 L 1352.3204,1198.614 L 1352.8913,1199.53 L 1352.9817,1200.0679 L 1351.1812,1203.1286 L 1351.0522,1203.7119 L 1350.744,1204.9556 L 1348.9936,1206.7693 L 1348.8983,1207.4063 L 1349.779,1210.7532 L 1349.5784,1211.8921 L 1349.2074,1212.339 L 1348.3493,1213.2093 L 1348.0427,1213.7439 L 1347.6069,1216.7445 L 1346.7241,1217.5041 L 1346.134,1217.5851 L 1344.9754,1217.837 L 1344.5903,1219.5377 L 1344.7424,1221.8796 L 1343.6473,1222.2192 L 1343.0847,1222.3557 L 1342.1415,1222.8601 L 1342.1495,1223.9646 L 1341.6729,1224.331 L 1341.4593,1226.1476 L 1339.9536,1227.972 L 1338.312,1228.6484 L 1337.7901,1228.9431 L 1337.1864,1229.8879 L 1337.0947,1230.3228 L 1337.2625,1230.914 L 1338.1417,1232.4511 L 1336.8999,1234.4818 L 1337.4889,1237.4872 L 1337.4723,1238.0396 L 1337.4962,1240.5993 L 1338.4781,1242.2515 L 1339.6458,1246.5724 L 1339.6933,1247.2157 L 1339.2308,1251.0728 L 1339.3751,1251.6319 L 1338.5957,1253.8384 L 1337.0524,1255.5351 L 1336.7207,1256.0133 L 1336.2305,1257.6415 L 1336.0042,1258.1725 L 1334.4831,1261.1981 L 1334.9627,1261.4718 L 1334.5743,1263.1212 L 1334.5799,1263.6875 L 1334.1113,1264.0725 L 1333.5286,1264.2154 L 1332.9919,1264.4355 L 1330.7453,1264.9262 L 1330.1797,1265.9665 L 1330.0639,1266.5488 L 1329.9335,1268.2921 L 1328.8302,1268.3879 L 1328.4208,1271.4686 L 1329.8024,1273.3922 L 1330.3731,1273.6288 L 1329.9452,1274.8232 L 1329.7652,1275.4313 L 1328.4964,1276.8695 L 1327.8365,1279.3862 L 1328.0318,1281.3223 L 1329.3122,1283.5654 L 1329.3841,1284.8689 L 1329.4223,1285.5216 L 1328.7743,1289.8369 L 1328.0152,1290.8022 L 1326.8721,1291.2111 L 1326.3298,1291.4988 L 1325.4097,1292.173 L 1324.6955,1296.9258 L 1324.7305,1297.4204 L 1324.8612,1298.4033 L 1324.7493,1299.0415 L 1322.9262,1303.1353 L 1322.6421,1307.669 L 1322.991,1310.2379 L 1323.1204,1311.048 M 1361.1281,413.64621 L 1361.07,413.02774 L 1357.6976,411.13499 L 1358.9482,409.11434 L 1357.7704,409.14662 L 1356.3675,408.55396 L 1355.7683,408.79348 L 1353.3727,409.66978 L 1351.659,408.86272 L 1352.4301,409.84471 L 1349.8473,413.28382 L 1350.5402,414.9209 L 1350.431,415.5291 L 1345.4549,413.93204 L 1345.4877,413.42012 L 1345.7995,412.5122 L 1344.5809,412.69104 L 1343.5535,411.35512 L 1342.9075,411.50027 L 1340.6838,412.75932 L 1337.4989,412.24658 L 1334.9652,412.80407 L 1334.8749,412.26884 L 1333.0528,410.96034 L 1332.6298,410.66707 L 1331.6748,411.07526 L 1331.0451,411.15602 L 1329.7885,411.00326 L 1329.8631,410.40541 L 1328.1145,409.87574 L 1327.4743,410.12064 L 1325.6354,412.84681 L 1321.3934,414.41663 L 1319.1182,413.17526 L 1319.1001,411.8992 L 1318.2109,410.18522 L 1318.1852,409.54659 L 1317.5773,407.82872 L 1315.9457,406.90656 L 1315.8056,405.10456 L 1316.7022,404.20684 L 1313.9189,402.92665 L 1311.3689,403.06876 L 1310.7135,403.2449 L 1308.7001,404.93386 L 1306.0632,405.52185 L 1303.1385,405.6065 L 1302.5769,405.61184 L 1302.0151,405.61704 L 1301.4049,405.80363 L 1298.3087,406.4884 L 1297.8232,406.74707 L 1297.326,407.06332 L 1297.038,406.48732 L 1292.5032,404.49454 L 1292.4759,404.28694 L 1292.2578,403.69476 L 1290.9963,403.3528 L 1290.2441,402.32177 L 1288.46,398.96618 L 1288.3212,397.74824 L 1287.7716,397.93365 L 1286.6743,398.30131 L 1286.2615,398.50984 L 1285.5486,399.07598 L 1284.9037,398.99135 L 1283.0019,397.26755 L 1279.8016,397.23708 L 1279.7403,397.24401 L 1279.4311,396.70915 L 1277.5262,393.52204 L 1277.637,392.81962 L 1277.9995,392.47153 L 1275.3908,392.04732 L 1273.4733,390.20505 L 1272.1388,387.26727 L 1271.5309,387.40454 L 1271.2622,387.02044 L 1270.6521,387.17248 L 1267.8281,386.03375 L 1267.3013,386.27332 L 1266.2645,386.77922 L 1265.956,386.23166 L 1264.7058,384.05291 L 1265.0144,383.62432 L 1261.9657,383.47129 L 1261.3336,383.53138 L 1258.9063,383.04812 L 1258.3321,383.22778 L 1255.3472,383.4611 L 1254.7932,383.46079 L 1254.2391,383.46232 L 1251.5859,383.53432 L 1250.7759,383.52558 L 1250.1931,383.19629 L 1246.8609,382.78211 M 1329.9052,636.14359 L 1329.4823,635.66399 L 1325.9474,637.0982 L 1322.7386,635.32804 L 1319.4919,635.3923 L 1319.1775,635.01326 L 1318.8432,634.1072 L 1318.2538,634.34894 L 1313.9521,634.61904 L 1312.076,637.02675 L 1310.9855,637.59916 L 1310.7246,638.16457 L 1309.8321,638.93154 L 1308.5885,638.64437 L 1308.5552,639.27192 L 1309.4989,641.5943 L 1311.0781,642.6295 L 1311.6496,645.07026 L 1311.2209,645.47146 L 1310.6894,645.73496 L 1308.0393,645.34855 L 1306.1441,645.99823 L 1303.4899,645.68693 L 1297.3498,647.85452 L 1296.2303,647.27442 L 1295.7037,646.89225 L 1293.4903,645.64586 L 1290.4359,646.77526 L 1287.8272,646.91664 L 1284.7457,647.83005 L 1280.3739,646.70244 L 1279.4704,648.22685 L 1278.6646,649.24371 L 1278.8062,649.86736 L 1279.0177,651.12937 L 1277.9217,653.43727 M 986.47218,1344.0296 L 987.34252,1342.4257 L 984.64585,1341.2297 L 984.3781,1340.024 L 985.19427,1339.0959 L 984.92968,1338.5315 L 982.7312,1337.6855 L 980.94422,1337.9265 L 980.21409,1340.3146 L 979.40842,1339.4226 L 979.03766,1337.0699 L 977.97195,1336.7617 L 977.05505,1337.4293 L 976.46538,1337.444 L 976.70606,1336.9051 L 975.79637,1336.2229 L 975.43384,1334.0527 L 973.84059,1333.4009 L 974.38433,1332.4424 L 976.12006,1332.5064 L 979.1332,1326.986 L 980.1474,1326.5957 L 980.51221,1326.0824 L 982.36284,1327.147 L 982.91,1327.0421 L 982.86925,1326.4422 L 983.18762,1322.979 L 983.99949,1320.8223 L 983.4426,1320.5947 L 980.55486,1320.1523 L 980.15816,1319.6891 L 979.66554,1319.9942 L 976.30885,1319.8958 L 975.23872,1320.3163 L 971.67096,1318.1751 L 971.11204,1317.9531 L 972.55192,1315.9283 L 970.06139,1312.487 L 971.57188,1310.5303 L 972.6348,1310.0979 L 973.2432,1310.0483 L 973.01733,1309.6104 L 972.79437,1309.1693 M 1334.2788,1385.2863 L 1338.1072,1386.0097 L 1338.6536,1386.1128 L 1342.7611,1386.964 L 1343.3461,1387.0901 L 1348.9313,1387.6834 L 1351.755,1389.0777 L 1352.3109,1389.3762 L 1355.6248,1392.1308 L 1357.4615,1392.0719 L 1358.0404,1392.1807 L 1358.5366,1392.5102 L 1363.4818,1395.1907 L 1365.8768,1398.147 L 1366.2548,1398.6637 L 1366.7535,1399.3952 L 1367.0334,1399.7357 L 1371.546,1403.6949 L 1371.8042,1404.2552 L 1372.6308,1406.221 L 1372.7251,1406.7492 L 1373.4222,1409.8173 L 1378.2632,1412.7208 L 1378.8039,1413.0383 L 1382.4748,1415.1707 L 1382.995,1415.4828 L 1384.4167,1416.3022 L 1384.8926,1416.5717 L 1390.8967,1419.7062 L 1396.6311,1417.5174 L 1397.2424,1417.5461 L 1397.8239,1417.572 L 1398.4037,1417.6059 L 1400.7509,1418.1379 L 1402.991,1418.8065 L 1403.5707,1418.8868 L 1407.2284,1419.5398 L 1408.1386,1420.4133 L 1408.5723,1420.8796 L 1410.3086,1422.5069 L 1410.8222,1422.794 L 1413.7315,1424.2996 L 1414.2183,1424.5462 L 1415.9614,1425.6534 L 1416.4446,1425.8278 L 1419.0505,1427.1729 L 1419.5337,1427.5118 L 1423.1026,1429.796 L 1423.6967,1429.8914 L 1428.4882,1431.8581 L 1429.0274,1432.0734 L 1434.4211,1433.6691 L 1436.2732,1433.4142 L 1436.8783,1433.5784 L 1439.8697,1433.1857 L 1443.4707,1433.6759 L 1444.0689,1433.7761 L 1445.7694,1432.5705 L 1446.2727,1432.4182 L 1448.4665,1431.3237 L 1450.4729,1428.8984 L 1453.1289,1427.5456 L 1453.7431,1427.5616 L 1457.4329,1427.9525 L 1460.6648,1423.2037 L 1462.2913,1422.2839 L 1462.6647,1421.7595 L 1465.6476,1422.3205 L 1466.4984,1423.187 L 1466.5419,1425.6721 L 1467.1066,1426.8005 L 1469.6911,1427.9533 L 1470.2394,1428.2288 L 1469.9015,1428.7679 L 1468.7547,1431.005 L 1468.4625,1433.5549 L 1467.8614,1433.4136 L 1464.7863,1433.4563 L 1458.31,1435.4008 L 1457.9378,1435.9155 L 1456.2964,1436.5309 L 1453.5793,1442.2989 L 1454.4421,1447.283 L 1450.5146,1448.9651 L 1452.0254,1450.9818 L 1452.599,1451.0372 L 1454.8827,1451.2379 L 1456.792,1452.5528 L 1457.182,1452.9339 L 1459.1561,1453.4543 L 1458.1443,1456.3417 L 1457.7127,1462.572 L 1456.3142,1463.6603 L 1455.7731,1466.084 L 1456.3864,1466.0374 L 1459.4507,1469.0352 L 1462.3463,1474.716 L 1465.2442,1477.1094 L 1467.0265,1477.358 L 1467.0878,1477.3852 L 1466.7554,1478.5462 L 1464.3101,1480.1294 L 1462.119,1480.8333 L 1461.5599,1480.5741 L 1458.6985,1479.5044 L 1456.27,1479.6049 L 1453.7309,1481.2443 L 1453.9677,1481.8355 L 1455.1866,1487.4172 L 1456.3364,1488.9101 L 1456.3166,1489.5523 L 1454.3922,1491.8999 L 1454.6176,1493.7245 L 1453.8179,1495.3841 L 1452.1281,1495.9284 L 1453.3454,1495.9303 L 1454.73,1497.07 L 1455.2855,1496.8648 L 1459.3298,1496.1813 L 1460.6033,1499.001 L 1463.2996,1502.3123 L 1463.8317,1502.5901 L 1463.6,1504.8065 L 1463.597,1505.3721 L 1460.7525,1506.3404 L 1456.1222,1509.0822 L 1456.32,1509.5795 L 1456.4878,1510.087 L 1456.055,1510.5494 L 1453.678,1511.2102 L 1453.6465,1511.8338 L 1453.1779,1514.8948 L 1453.1737,1515.5395 L 1452.8653,1519.3788 L 1452.5622,1520.9655 M 1052.0507,1100.9753 L 1053.6883,1100.2632 L 1055.9557,1100.8382 L 1056.5494,1100.8875 L 1055.6171,1104.243 L 1055.5121,1104.8168 L 1058.7234,1103.4948 L 1059.3253,1103.4701 L 1060.3951,1104.9753 L 1062.5525,1106.0731 L 1063.7916,1106.0194 L 1065.7069,1103.5997 L 1066.5159,1103.5664 L 1066.8638,1106.6837 L 1066.7451,1107.3035 L 1068.4752,1106.9614 L 1069.5732,1107.3558 L 1070.1403,1107.5142 L 1071.2875,1108.9701 L 1073.0249,1108.3605 L 1074.834,1108.4393 L 1075.0313,1109.5061 L 1074.1799,1110.8352 L 1073.755,1111.182 L 1073.9835,1113.6673 L 1076.2358,1115.614 L 1076.8725,1117.3428 L 1078.1326,1118.721 L 1079.8718,1117.2029 L 1082.0958,1116.6813 L 1082.6245,1116.926 L 1084.1513,1117.8013 L 1085.9321,1117.7373 L 1086.4882,1117.9592 L 1087.0686,1118.1518 L 1087.6482,1117.0645 L 1090.8901,1115.2594 L 1092.5002,1117.0233 L 1094.9478,1116.7776 L 1095.5751,1116.7325 L 1096.2862,1118.4269 L 1097.646,1119.698 L 1098.2524,1119.8355 L 1099.1488,1118.4219 L 1100.2025,1118.8144 L 1100.7126,1119.129 L 1102.2521,1120.9006 L 1103.9154,1121.3786 L 1104.4773,1121.164 L 1104.2469,1121.7628 L 1104.6693,1124.275 L 1104.705,1125.1307 L 1105.6607,1128.1471 L 1107.6752,1131.3217 L 1107.754,1131.9508 L 1110.2045,1132.362 L 1114.1536,1135.3157 L 1115.977,1135.764 L 1116.5718,1135.9849 L 1117.2737,1134.4363 L 1118.3355,1134.023 L 1118.9038,1133.9491 L 1121.288,1132.6516 L 1121.7712,1132.3698 L 1121.4535,1131.8223 L 1122.5749,1130.3751 L 1122.2491,1127.8845 L 1123.119,1126.9945 L 1125.4396,1126.3538 L 1126.1305,1124.6429 L 1126.4601,1124.1032 L 1126.9663,1124.0193 L 1127.3522,1123.676 L 1128.343,1124.4147 L 1128.6824,1128.0442 L 1128.6069,1128.6654 L 1126.8028,1128.4829 L 1125.8536,1129.181 L 1126.9965,1130.6681 L 1128.6114,1131.5315 L 1128.219,1132.7351 L 1127.2567,1133.5086 L 1126.6345,1133.4597 L 1125.0628,1134.2208 L 1125.2274,1135.417 L 1127.0479,1135.2686 L 1128.4789,1136.3868 L 1130.9083,1136.1584 L 1132.6304,1135.8438 L 1133.977,1134.5764 L 1134.5863,1134.458 L 1134.6729,1135.6005 L 1135.6437,1137.0029 L 1135.0382,1139.2682 L 1137.6703,1137.9496 L 1137.7427,1137.3548 L 1140.7386,1137.0543 L 1142.3538,1138.7146 L 1142.9613,1138.7513 L 1143.1796,1139.991 L 1142.4439,1143.5677 L 1143.7137,1144.8606 L 1144.0668,1147.9955 L 1144.8976,1148.8936 L 1145.5013,1149.0554 L 1146.0935,1148.9654 L 1148.703,1150.178 L 1148.6684,1150.8095 L 1148.544,1153.3234 L 1147.5297,1154.8724 L 1147.3228,1156.7555 L 1148.1637,1160.3093 L 1149.8895,1160.7564 L 1149.1803,1162.3897 L 1150.702,1166.4605 L 1151.2412,1166.1414 L 1152.4109,1165.8072 L 1153.9529,1166.8779 L 1153.9851,1166.8783 L 1156.0563,1168.1504 L 1158.4778,1168.1061 L 1158.7777,1169.3112 L 1159.9931,1169.4294 L 1155.8329,1171.1384 L 1155.265,1170.9205 L 1153.0653,1169.9498 L 1152.3132,1168.9976 L 1151.736,1169.0184 L 1150.1463,1169.6913 L 1150.5239,1170.7867 L 1150.411,1171.3645 L 1151.2021,1172.1606 L 1153.3497,1172.7337 L 1153.7383,1173.6961 L 1152.1928,1178.4016 L 1152.6188,1180.2298 L 1151.9912,1181.9624 L 1152.9302,1183.5766 L 1153.159,1184.1635 L 1153.6606,1184.5022 L 1156.3878,1183.5616 L 1156.9205,1183.8483 L 1155.6405,1186.6401 L 1157.9384,1186.1351 L 1159.1496,1188.0776 L 1160.874,1187.6071 L 1161.2594,1188.0828 L 1160.2174,1190.2813 L 1158.0243,1191.1786 L 1158.2995,1193.0363 L 1159.3833,1193.5688 L 1159.9797,1193.7118 M 735.18918,1153.4371 L 734.7549,1153.1805 L 734.37629,1152.8431 L 734.35267,1152.1986 L 735.38279,1147.8997 L 735.339,1147.2836 L 730.50692,1145.6177 L 729.57726,1143.3981 L 729.03387,1143.1236 L 728.69678,1143.0156 L 728.346,1142.9787 L 725.25415,1143.5276 L 722.73574,1143.36 L 722.10066,1143.3636 L 719.86333,1143.0594 L 719.40473,1142.7202 L 719.97473,1142.4847 L 720.38444,1142.0158 L 720.47434,1141.422 L 720.87122,1135.5071 L 720.33225,1135.2986 L 718.17047,1134.6204 L 716.25742,1135.788 L 716.36518,1135.256 L 715.96296,1133.7318 L 715.53854,1133.316 L 715.03255,1133.0803 L 714.17287,1132.4236 L 712.08974,1132.1308 L 709.82767,1132.5638 L 709.13995,1131.5906 L 705.69483,1129.6571 L 705.48928,1130.8952 L 702.56964,1131.5657 L 701.90245,1132.5956 L 702.05412,1133.8398 L 699.27659,1132.5494 L 698.79684,1132.1427 L 698.40289,1128.8855 L 697.86854,1128.7406 L 699.31122,1127.0849 L 699.01344,1126.621 L 698.87228,1126.5023 L 699.46788,1125.4533 L 699.46559,1124.8443 L 701.23423,1126.3746 L 703.3114,1125.4932 L 703.48181,1124.9129 L 703.41071,1123.0601 L 700.33748,1123.0436 L 699.26517,1123.5999 L 698.97639,1121.8831 L 697.88141,1121.5039 L 697.28102,1120.6454 L 696.13635,1120.4753 L 695.3322,1119.6142 L 695.26319,1118.359 L 695.39153,1117.7437 L 696.37769,1117.8466 L 696.57575,1117.3822 L 698.40448,1117.3988 L 699.39843,1116.6524 L 699.8519,1115.4896 L 702.82311,1114.9302 L 703.16197,1113.709 L 705.0228,1113.6485 L 704.69248,1111.9262 L 703.46884,1112.0461 L 702.61169,1111.3472 L 702.86405,1108.4005 L 702.45249,1107.932 L 702.42949,1107.4718 L 700.99705,1106.3134 L 700.68442,1105.1124 L 699.01522,1104.8462 L 698.42543,1105.0225 L 698.514,1104.4665 L 699.09528,1101.757 L 700.84067,1102.2593 L 701.86648,1100.7433 L 702.04858,1099.5257 L 703.43644,1098.5294 L 703.95513,1098.8445 L 704.20465,1098.0461 L 703.4575,1096.527 L 702.23609,1096.3736 L 701.26989,1095.5979 L 702.33619,1093.6197 L 700.96167,1092.4593 L 699.3074,1093.1569 L 698.76683,1093.4716 L 698.98797,1092.3102 L 698.00231,1091.6075 L 696.22131,1091.8527 L 694.1448,1090.6663 L 693.93451,1090.6736 L 693.9569,1089.4051 L 695.40834,1088.5026 L 697.0945,1085.2646 L 696.54335,1085.025 L 695.22467,1083.0141 L 694.17082,1082.4426 L 693.70097,1082.2644 L 693.02937,1081.5352 L 692.6593,1081.0442 L 691.45306,1081.211 L 691.42858,1080.6274 L 690.73062,1079.7017 L 689.09574,1079.1445 L 688.46438,1078.0915 L 687.01192,1076.9883 L 686.48768,1075.2271 L 686.4331,1074.6742 L 685.6312,1073.9154 L 683.83304,1075.1147 L 683.29815,1075.2323 L 682.11061,1075.6286 L 680.49878,1074.6471 L 679.98602,1074.2802 L 682.63932,1069.0262 L 682.89501,1068.4805 L 684.55346,1069.1381 L 685.65268,1068.6565 L 686.25396,1068.6172 L 686.28896,1067.9773 L 683.07277,1064.0194 L 682.69091,1063.5077 L 681.12482,1063.1024 L 682.0779,1060.9136 L 681.3422,1059.2457 L 681.44985,1058.6458 L 681.59277,1056.1071 L 683.47883,1054.4878 L 683.589,1053.8616 L 682.0215,1052.8469 L 676.43223,1053.2856 L 676.25586,1051.5565 L 676.04332,1051.0194 L 677.69226,1049.0403 L 677.78198,1048.3967 L 680.76727,1048.6325 L 681.71669,1047.8546 L 683.40712,1047.5972 L 683.77249,1044.6442 L 687.32065,1045.3691 L 687.83781,1045.6869 L 688.31891,1045.7113 L 691.16566,1044.7763 L 691.72294,1044.5481 L 694.17104,1044.9662 L 695.13856,1044.6862 L 696.95693,1043.0143 L 696.7767,1041.7989 L 697.71749,1041.1429 L 699.40602,1041.4318 L 699.83782,1041.0371 L 703.25436,1041.178 L 704.27622,1041.5457 L 703.95901,1042.6099 L 704.13257,1043.1408 L 704.70766,1043.1497 L 705.17588,1044.1334 L 705.395,1044.6711 L 706.2862,1046.2006 L 706.61608,1046.6885 L 706.66581,1046.7116 L 708.89865,1046.2401 L 710.89671,1044.1171 L 711.44199,1043.8558 L 711.88138,1044.2548 L 714.68938,1044.1921 L 714.09637,1045.2154 L 714.89356,1045.9256 L 715.62395,1044.6098 L 715.8726,1044.174 L 715.51008,1042.3255 L 717.4186,1038.4044 L 717.29391,1037.8009 L 716.79239,1035.4135 L 716.18375,1035.3819 L 717.11311,1033.8314 L 718.2143,1033.3946 L 718.80784,1033.2986 L 719.94262,1029.9374 L 720.35952,1029.4996 L 718.44444,1028.4736 L 718.06929,1025.5356 L 716.92134,1025.6988 L 716.24006,1024.8349 L 716.064,1024.266 L 716.50374,1023.6167 L 716.95654,1023.3322 L 717.6848,1021.8341 L 716.14386,1021.0864 L 715.9578,1019.4198 L 715.51613,1019.024 L 716.51768,1018.5871 L 716.86825,1018.1578 L 718.48445,1019.0037 L 720.86387,1018.6242 L 721.37374,1018.9621 L 721.74187,1018.6197 L 722.51868,1018.2433 L 722.4137,1017.1106 L 723.50291,1015.149 L 723.70543,1014.6175 L 723.12386,1014.555 L 722.64925,1012.8661 L 721.48449,1012.914 L 721.61474,1011.1519 L 726.19635,1009.1019 L 726.7943,1009.3121 L 727.69965,1007.8177 L 728.27016,1007.6042 L 729.30474,1006.3085 L 728.10118,1005.2539 L 728.90055,1003.0335 L 728.88074,1001.8324 L 730.69363,1001.606 L 731.76949,1000.1282 L 729.98906,997.6867 L 729.8088,996.48229 L 729.64234,995.89147 L 730.72759,995.37291 L 734.82538,995.1359 L 735.25967,994.71798 L 736.6588,995.56519 L 737.06246,995.94002 L 739.42291,993.06863 L 741.29113,992.82782 L 742.38632,992.33167 L 741.30315,990.91969 L 743.36371,988.75602 L 743.8734,988.43179 L 746.39671,989.14249 L 746.90312,989.34855 L 747.23832,988.86818 L 746.63094,987.2478 L 746.41076,986.70434 L 746.87844,986.33373 L 748.01337,987.68409 L 749.16462,987.97884 L 749.71494,987.75401 L 751.32362,986.91346 L 751.82674,986.57501 L 755.4851,989.63624 L 755.83776,990.14162 L 756.61762,990.58746 L 757.10479,990.38635 L 759.02464,988.27764 L 759.58951,988.16176 L 762.93974,988.68454 L 763.32316,989.1301 L 764.12301,989.59738 L 764.36912,989.9907 L 765.28969,990.82023 L 767.08869,991.21161 L 769.25288,993.30707 L 769.67654,994.43323 L 771.50464,994.71435 L 773.97708,994.16435 L 774.42325,993.7 L 775.45176,994.1904 L 776.55201,993.70946 L 778.29863,993.94604 L 778.82958,993.92117 L 779.31511,993.70637 L 782.94981,994.013 L 783.97173,993.32913 L 785.05933,993.77773 L 785.60611,994.05877 L 786.80772,996.04526 L 786.93641,996.62636 L 791.12041,996.23449 L 793.62005,994.45442 L 794.25098,993.39259 L 795.46081,993.63843 L 795.12764,993.10834 L 794.63363,991.99768 L 794.79762,990.13252 L 793.69294,989.58433 L 791.23809,989.65822 L 791.03942,988.47637 L 791.44726,988.0024 L 790.72991,987.02894 L 791.13332,986.64722 L 791.72501,985.85281 L 792.30443,986.05446 L 793.72546,984.11614 L 794.40459,981.80564 L 796.16918,982.18011 L 797.30613,980.86296 L 798.43485,981.28574 L 799.00756,981.47477 L 798.45674,983.78191 L 800.56968,985.00974 L 802.58241,988.11652 L 802.82966,989.34516 L 802.96797,989.95752 L 804.65802,989.13886 L 805.90886,989.30113 L 807.28598,991.31581 L 809.40588,990.76114 L 809.90887,991.75547 L 810.01605,992.31594 L 811.49427,991.37794 L 811.33041,990.3217 L 811.69851,989.19262 L 812.28577,989.40694 L 813.16598,988.56469 L 815.63677,988.83493 L 816.73993,988.29264 L 821.00353,987.82623 L 821.62863,987.81796 L 820.23746,985.02335 L 821.39478,983.52427 L 824.54724,981.54259 L 824.72288,980.28984 L 824.77817,980.19011 L 826.3966,980.67486 L 826.91389,980.90285 L 829.27713,980.23576 L 833.99766,981.63524 L 836.9188,980.58537 L 838.43208,981.59598 L 838.83624,982.08841 M 639.67699,949.96239 L 639.1459,950.29452 L 640.33865,954.47281 L 640.66523,955.00829 L 641.49963,956.64175 L 639.18416,959.59499 L 639.55112,960.7857 L 640.11437,961.12082 L 645.70604,964.53793 L 646.18437,964.89151 L 647.79323,966.52358 L 647.93425,967.11931 L 648.28939,969.45016 L 646.68706,969.76074 L 646.50961,970.35545 L 647.5152,972.2776 L 650.50188,972.35521 L 651.70769,974.52365 L 652.21704,974.81372 L 653.20601,975.42639 L 654.33576,975.29614 L 655.83296,976.17443 L 657.07,976.06531 L 658.13058,976.63128 L 658.2382,977.23149 L 655.31124,977.77997 L 655.15124,979.32389 L 656.69715,980.29595 L 658.41442,979.54151 L 660.8584,980.08055 L 660.96774,979.53643 L 661.33227,978.49063 L 662.98344,979.39717 L 665.4414,979.2947 L 666.55711,979.86757 L 667.15876,980.0531 L 667.98117,980.81323 L 667.98985,981.41386 L 668.77811,982.14074 L 669.97179,982.1647 L 669.55635,982.59309 L 669.04133,982.89014 L 670.13528,984.24478 L 669.29766,985.04584 L 669.85679,985.24773 L 670.67991,985.99982 L 672.41926,985.85766 L 674.71192,986.44668 L 677.58768,986.95448 L 678.49173,987.74712 L 678.78083,988.2849 L 679.03327,986.65771 L 680.83187,985.17644 L 681.33928,984.88522 L 681.31444,988.53461 L 683.3455,989.82943 L 683.8412,990.19729 L 685.74246,987.8885 L 687.38117,988.40279 L 688.84941,990.21068 L 688.52781,991.2425 L 688.74126,991.7883 L 692.68735,990.52333 L 693.23964,990.7366 L 695.66619,991.28812 L 697.13291,990.26051 L 697.52887,989.76811 L 698.09441,990.03718 L 699.90128,993.24444 L 700.07953,995.12329 L 700.65072,995.28217 L 705.15188,996.74136 L 705.64913,996.84024 L 707.38416,997.32825 L 709.52135,996.38612 L 710.05599,996.83629 L 710.47574,997.62935 L 710.61759,1000.1848 L 710.70848,1000.8237 L 713.82343,999.06399 L 713.35858,1000.7036 L 713.95841,1001.5223 L 714.01995,1002.1244 L 713.86321,1003.2687 L 714.60891,1004.1058 L 714.58297,1004.6828 L 716.31771,1004.7509 L 717.32644,1007.5816 L 717.8618,1007.8709 L 717.48058,1009.529 L 719.79314,1009.7193 L 721.04289,1010.9887 L 721.61474,1011.1519 M 893.21243,1107.2441 L 893.506,1106.1211 L 894.50174,1105.4737 L 894.56766,1103.0229 L 895.23629,1101.3667 L 896.05285,1101.0756 L 896.46435,1101.2345 L 897.4201,1100.5634 L 897.51778,1099.3773 L 897.28217,1098.8209 L 904.94839,1102.7592 L 905.47681,1103.0979 L 907.85827,1098.9512 L 908.70254,1098.0783 L 909.88302,1097.8549 L 910.47749,1097.7456 L 910.71235,1095.7107 L 911.26494,1095.4555 L 912.92576,1092.227 L 913.98945,1091.6335 L 915.16335,1091.5948 L 916.25044,1093.0432 L 916.79759,1093.31 L 918.46183,1090.6336 L 918.5518,1087.4933 L 921.04815,1087.2726 L 921.76462,1086.2395 L 921.97151,1084.9835 L 922.93662,1085.6557 L 923.46441,1085.9131 L 923.37406,1087.4772 L 923.49453,1088.0106 L 925.88434,1087.5094 L 926.59523,1086.5179 L 926.64914,1085.2882 L 929.76161,1086.9817 L 930.37203,1087.0824 L 931.88682,1087.7269 L 933.45742,1086.9313 L 935.18999,1086.7876 L 936.20293,1083.3225 L 937.15349,1082.5189 L 940.28848,1082.6507 L 943.34325,1080.4842 L 943.67833,1080.009 L 944.55942,1079.3169 L 944.67609,1077.5931 L 945.29726,1076.617 L 945.74116,1076.1673 L 949.28791,1072.6015 L 951.11374,1071.1946 L 952.81315,1071.65 L 956.10822,1070.3954 L 956.45026,1069.2312 L 956.52023,1068.6121 L 957.82839,1068.775 L 958.0354,1068.2124 L 959.21158,1068.092 L 960.26881,1065.3531 L 960.6173,1063.6379 L 961.75172,1063.9573 L 962.5851,1065.406 L 962.69139,1064.8162 L 964.34526,1064.168 L 964.91569,1065.2174 L 965.37288,1065.6043 L 965.49714,1066.4934 L 965.75439,1066.8604 L 968.11218,1067.1661 L 969.24559,1065.8476 L 971.87595,1066.929 L 972.4083,1066.6148 L 972.80841,1064.1577 L 975.24416,1064.3857 L 976.27228,1063.7958 L 975.98782,1061.9743 L 974.89972,1061.4063 L 974.90276,1060.7826 M 1819.5066,1669.361 L 1820.0899,1669.5165 L 1821.2449,1669.879 L 1822.9983,1671.434 L 1824.6722,1670.73 L 1825.805,1671.1192 L 1827.5809,1670.8846 L 1829.6918,1672.9847 L 1833.153,1673.6095 L 1833.4352,1675.4728 L 1833.9931,1675.3267 L 1837.3542,1675.3951 L 1838.6575,1676.5447 L 1839.1397,1676.9118 L 1842.646,1677.2274 L 1844.5316,1679.6147 L 1845.1239,1679.6589 L 1846.8914,1679.5642 L 1850.7411,1681.1339 L 1855.4132,1678.5941 L 1855.9563,1678.8405 L 1855.8663,1684.424 L 1857.9233,1685.5564 L 1858.9509,1687.0308 L 1858.6593,1688.8288 L 1858.548,1689.4506 L 1861.0286,1692.2431 L 1861.4368,1692.7153 L 1862.0215,1692.5948 L 1863.7698,1692.2131 L 1864.2015,1692.656 L 1864.494,1693.194 L 1865.3324,1694.0087 L 1865.9082,1695.7647 L 1866.8549,1696.4063 L 1870.1988,1696.6375 L 1870.6277,1697.6777 L 1870.9296,1698.1852 L 1871.4664,1698.0708 L 1872.7954,1699.924 L 1874.2406,1700.3992 L 1874.3079,1700.9827 L 1874.8949,1701.0447 L 1876.4291,1701.9226 L 1879.2753,1701.163 L 1879.5569,1703.3285 L 1879.6849,1703.8598 L 1879.68,1706.4821 L 1879.5753,1707.0267 L 1880.1005,1708.1308 L 1881.7199,1708.8262 L 1883.1255,1714.2691 L 1882.6024,1715.3951 L 1884.0695,1716.3523 L 1885.1413,1717.8257 L 1886.8359,1718.0195 L 1888.2525,1719.0834 L 1889.1329,1719.8994 L 1889.999,1722.1691 L 1890.4035,1722.6194 L 1890.0063,1727.885 L 1890.3886,1728.3232 L 1890.164,1729.5178 L 1892.666,1732.0628 L 1893.4392,1733.7567 L 1893.6848,1734.3306 L 1897.0135,1733.5881 L 1900.8815,1734.1168 L 1901.4632,1734.1453 L 1901.419,1734.7467 L 1900.7707,1740.1235 L 1901.3559,1741.0993 L 1901.1997,1741.6897 L 1901.5652,1744.0485 L 1902.0896,1744.2879 L 1901.6637,1748.4534 L 1900.9217,1750.0704 L 1902.1395,1751.314 L 1902.6724,1751.5361 L 1900.475,1754.3128 L 1900.8831,1754.7737 L 1903.191,1754.7653 L 1905.0488,1756.2881 L 1905.1335,1758.1515 L 1903.5017,1760.808 L 1903.3642,1762.0088 L 1902.5653,1765.0842 L 1902.2745,1765.6422 L 1902.7139,1766.0666 L 1903.3606,1767.0764 L 1904.5218,1766.8902 L 1907.725,1768.3934 L 1909.3858,1767.7477 L 1911.7078,1767.87 L 1912.5373,1768.7019 L 1912.599,1769.9349 L 1914.8717,1769.2635 L 1920.6778,1763.9617 L 1922.4211,1763.6644 L 1923.8351,1764.8313 M 1255.4676,800.16877 L 1254.537,798.7674 L 1255.5186,798.09468 L 1255.0383,796.47162 L 1255.4373,796.02126 L 1256.0513,796.11066 L 1258.44,796.51985 L 1263.8101,795.19954 M 283.54665,605.88365 L 283.31506,605.10072 L 286.29873,604.45212 L 289.26124,604.98331 L 289.05845,603.79421 L 288.89277,602.55625 L 286.53115,601.59575 L 284.66112,598.28983 L 284.60517,597.66069 L 284.95245,595.80183 L 286.13043,595.31087 L 286.69638,594.17338 L 286.59992,593.54701 L 288.94569,593.17333 L 288.75754,592.5966 L 288.39641,592.10323 L 288.48117,590.3295 L 289.4863,588.23391 L 288.84794,588.3343 L 287.94167,587.44823 L 285.04093,586.26623 L 285.13242,585.04749 L 285.74308,585.22607 L 286.73878,584.7023 L 288.15378,581.95872 L 289.39489,581.68467 L 288.86718,581.32033 L 287.98703,581.28646 L 286.55911,582.54865 L 285.42894,582.11425 L 284.64816,577.22908 L 283.80416,576.38992 L 285.00946,572.15912 L 284.86494,570.87688 L 278.68233,569.19544 L 278.12484,568.83707 L 278.68647,567.22307 L 278.62642,566.61242 L 279.07157,566.28154 L 279.25356,562.56003 L 280.99022,560.66624 L 284.89371,558.40176 L 285.36119,557.95418 L 285.10515,557.42033 L 283.0282,557.02142 L 281.77073,555.81658 L 281.79331,555.22979 L 280.08844,554.90487 L 279.73713,553.81912 L 279.14875,553.75473 L 279.34249,553.18663 L 278.47691,552.39208 L 278.87019,551.26404 L 278.57013,549.50175 L 279.39199,548.67201 L 280.00452,548.40676 L 284.69847,542.99705 L 286.78049,541.41794 L 284.94028,540.86293 L 282.55347,538.03135 L 281.41153,538.54426 L 279.16907,537.69453 L 280.38737,536.42736 L 280.95456,534.74586 L 280.13132,533.22115 L 279.78328,532.73216 L 279.15155,532.94103 L 277.35837,532.0953 L 275.39015,532.25348 L 274.44781,531.34622 L 273.95934,530.8477 L 274.05151,528.45859 L 272.90016,527.99867 L 272.24122,526.96202 L 272.13809,525.73306 L 271.05801,520.28738 L 271.40703,519.82822 L 271.61258,519.29714 L 272.03659,518.80614 L 274.50674,516.78098 L 274.51459,515.53719 M 487.42784,542.28586 L 489.73577,539.59331 L 489.99442,539.07106 L 490.24854,539.16466 L 491.07457,540.14749 L 490.98036,541.3938 L 491.83722,542.35006 L 492.76414,545.37427 L 492.76112,546.62903 L 491.35186,548.51197 L 492.83656,551.19388 L 493.07543,551.78424 L 491.41412,552.55891 L 490.80413,552.65001 L 490.32282,553.83428 L 490.97633,554.93956 L 490.93929,556.19449 L 489.29186,558.10169 L 488.93345,557.82408 L 488.13408,558.22328 L 487.63226,561.23653 L 489.39307,563.06736 L 489.00136,564.76411 L 489.38213,565.26614 L 489.05561,566.44739 L 489.88306,567.3739 L 490.40816,567.735 L 489.36758,568.69512 L 489.16213,569.23611 L 488.32405,572.70838 L 490.16177,575.00293 L 490.37884,576.18373 L 488.16822,577.19715 L 485.74907,577.15682 L 487.04872,580.99079 L 487.19641,581.54947 L 486.04434,584.72421 L 486.86839,586.2451 L 485.66156,586.46513 L 484.54034,584.94374 L 482.64401,585.31939 L 482.06241,585.60081 L 481.30755,586.61245 L 481.01785,588.43937 L 479.77635,588.72964 L 475.64241,586.85502 L 474.69052,585.25124 L 471.76386,586.51951 L 471.86289,587.77895 L 470.80242,589.32532 L 467.58224,589.54856 L 467.69361,590.71855 L 468.95669,591.7677 L 467.81664,593.25126 L 468.07402,593.82846 L 465.86215,592.42936 L 462.56789,592.53642 L 462.22654,591.98869 L 461.73622,592.38304 L 459.08743,593.95768 L 458.59496,594.3408 L 457.8751,595.23068 L 457.48369,598.84622 L 458.28489,600.49829 L 458.25413,601.0979 L 457.27299,601.77183 L 456.02971,601.79507 L 454.49703,600.77722 L 452.71304,601.27916 L 453.87765,602.66989 L 453.21295,606.21727 L 453.12243,608.65194 L 452.45109,609.72739 L 450.26571,610.9476 L 450.21839,611.5744 L 451.14011,612.42523 L 450.93483,613.33947 L 449.64468,613.26738 L 448.06261,612.23189 L 446.30607,613.00865 L 445.71964,613.27938 L 445.63894,613.82577 L 445.20963,615.39209 M 1049.9904,1053.5789 L 1049.4259,1053.7291 L 1047.7002,1055.1655 L 1047.3625,1056.8613 L 1046.7822,1056.9294 L 1045.1656,1058.7778 L 1043.9644,1059.0835 L 1042.8689,1060.6009 L 1042.3396,1060.286 L 1039.6732,1058.8205 L 1036.0267,1058.8901 L 1035.0475,1058.1426 L 1034.6542,1058.1013 L 1034.2593,1058.0682 L 1033.6287,1058.1766 L 1031.8216,1058.7834 L 1031.3991,1059.2471 L 1031.6994,1060.4616 L 1031.8569,1061.7201 L 1030.905,1063.3538 L 1028.2222,1065.855 L 1026.5462,1065.115 L 1025.4228,1065.6782 L 1023.9637,1066.8507 L 1022.0902,1067.0082 L 1022.0178,1061.995 L 1021.4494,1062.1963 L 1020.3274,1062.5824 L 1018.9276,1061.5128 L 1017.8183,1061.7609 L 1017.0763,1060.7945 L 1015.8905,1060.8652 L 1014.6288,1058.1292 L 1014.5239,1058.7516 L 1013.9598,1060.4406 L 1012.247,1060.2117 L 1013.4541,1057.335 L 1011.0737,1056.7093 L 1009.7659,1054.6092 L 1008.0787,1053.9137 L 1007.5645,1056.5721 L 1007.0112,1056.2854 L 1005.8919,1055.8817 L 1004.1548,1054.1603 L 1002.1542,1055.5529 L 1000.0342,1054.3712 L 998.43452,1055.3387 L 998.40541,1053.891 L 998.33835,1053.2512 L 998.20599,1052.0605 L 995.39784,1050.6271 L 994.51043,1048.9356 L 993.88697,1048.8129 L 993.40549,1049.2326 L 992.63829,1050.2524 L 989.50544,1050.5035 L 987.90941,1051.5452 L 987.42198,1054.647 L 986.6215,1056.3551 L 985.50252,1056.9195 L 985.22527,1056.3532 L 982.17506,1056.1307 L 980.59459,1057.9715 L 980.6347,1059.2152 L 979.44752,1059.3152 L 978.61084,1058.3863 L 977.42556,1058.2594 L 976.41312,1059.7737 L 974.90276,1060.7826 L 974.63171,1060.2115 L 972.68188,1058.8046 L 972.6329,1058.1928 L 973.61193,1057.4749 L 974.11062,1057.1264 L 972.97949,1055.708 L 971.86798,1055.4891 L 973.34317,1052.2029 L 972.96317,1051.7181 L 971.7956,1050.3117 L 972.18964,1049.819 L 974.60299,1049.4824 L 975.33514,1047.7492 L 974.78533,1048.0402 L 973.98598,1047.362 L 973.01353,1043.1472 L 970.15515,1040.8807 L 969.53511,1040.914 L 969.47134,1040.3322 L 968.02842,1039.9776 L 966.74633,1037.5257 L 966.29155,1037.9664 L 966.0739,1039.8388 L 965.54699,1040.1874 L 961.92925,1036.7832 L 960.70942,1036.7769 L 959.64941,1036.1049 L 959.02127,1034.3309 L 959.7991,1032.6091 L 958.71112,1029.6751 L 958.08286,1029.5645 L 956.96704,1030.0779 L 956.82127,1032.0008 L 956.29461,1032.151 L 954.78248,1032.7813 L 954.33276,1033.2093 L 953.59909,1034.1989 L 952.41759,1034.5554 L 948.79365,1034.1947 L 947.26292,1035.2343 L 945.56629,1035.132 L 944.68444,1035.9985 L 944.53284,1035.4124 L 943.78639,1033.8346 L 943.16509,1033.9567 L 940.70404,1033.4753 L 940.22003,1033.0651 L 937.40492,1031.6713 L 937.98611,1030.0204 L 937.56841,1027.6781 L 935.9677,1026.9873 L 937.36506,1025.7795 L 938.60628,1025.6659 L 939.41739,1026.3001 L 939.92848,1024.5742 L 941.21374,1025.7176 L 942.35119,1025.2828 L 942.16543,1024.9308 L 942.36131,1024.5835 L 940.38263,1021.021 L 941.79961,1019.1422 L 940.64735,1019.0639 L 940.36302,1017.9327 L 939.35526,1018.3846 L 937.72544,1017.8469 L 937.16842,1018.122 L 934.70623,1018.2836 L 934.2102,1020.6695 L 933.69493,1021.0185 L 931.51214,1020.3325 L 930.42897,1020.8141 L 930.03278,1020.3475 L 928.54848,1018.4327 L 926.16753,1018.2239 L 925.58026,1016.5205 L 926.71734,1016.3275 L 926.57663,1015.1919 L 926.80946,1014.6564 L 929.05679,1013.9995 L 931.5868,1012.1788 L 932.83004,1012.2453 L 933.91385,1010.0348 L 934.22829,1009.6204 L 933.77301,1008.1275 L 933.41794,1007.7246 L 933.10084,1006.1826 L 932.57722,1006.0742 L 929.24457,1006.0913 L 929.07691,1005.4924 L 928.61264,1003.7087 L 929.04565,1001.2688 L 929.95774,999.65355 L 930.55273,999.48316 L 928.94164,996.32882 L 929.09272,995.90769 L 928.57189,994.85337 L 929.73149,991.94058 L 927.82215,990.63563 L 927.70282,989.37317 L 926.03112,988.4939 L 925.44208,989.28172 L 924.53784,988.10664 L 924.39232,987.49609 L 924.07762,986.36575 L 922.99141,985.82477 L 923.62271,984.08494 L 925.06095,983.07421 L 924.71955,981.91452 L 923.72938,981.19948 L 923.89489,979.96033 L 922.14195,980.23603 L 920.67891,978.24303 L 918.29227,977.68562 L 920.02547,975.88905 L 919.24194,974.2573 L 919.50135,973.11886 L 918.4469,972.47615 L 917.93771,972.824 L 916.27069,973.38608 L 915.36442,972.81899 L 914.16458,973.09298 L 912.64839,972.09892 L 912.0138,972.0902 L 911.1684,969.79485 L 910.19101,969.09088 L 908.57068,965.70616 L 909.16213,965.51956 L 911.21522,961.89931 L 912.3466,961.42026 L 913.54884,961.65103 L 914.07992,961.32887 L 914.25138,960.12073 L 912.7619,959.06872 L 912.61347,957.8808 L 913.71853,956.38517 L 914.8966,956.74656 L 916.44506,955.77247 L 915.66292,954.86349 L 913.9687,954.46855 L 915.01188,951.09962 L 915.55903,950.83 L 917.13533,950.04839 L 916.68902,946.50753 L 917.58074,945.13821 L 917.43257,944.53436 L 915.65115,944.56464 L 913.02004,943.07661 L 913.30652,942.54668 L 913.71562,942.10581 M 870.68678,1265.7801 L 871.01856,1264.587 L 870.16493,1262.3427 L 868.37454,1262.0536 L 867.09814,1260.7262 L 865.40417,1260.1037 L 864.85082,1259.8681 L 862.76103,1258.7396 L 860.86169,1256.2394 L 860.66201,1255.6313 L 858.3051,1253.7714 L 856.95987,1255.0144 L 854.11566,1254.2534 L 853.50979,1254.3516 L 851.89756,1255.2319 L 850.38251,1257.109 L 849.93811,1257.3951 L 849.46739,1257.6361 L 847.96158,1258.7223 L 845.52507,1259.0812 L 844.72763,1262.125 L 844.21882,1261.9967 L 843.17652,1261.9807 L 842.62709,1261.7282 L 840.31738,1261.2307 L 840.67105,1258.9042 L 839.577,1259.2828 L 839.21851,1258.8588 L 839.03693,1257.7537 L 838.0226,1256.6947 L 840.3833,1254.8894 L 840.30687,1251.887 L 841.31906,1251.3407 L 841.3579,1250.1619 L 842.02691,1249.3412 L 842.50599,1249.0177 L 841.99642,1248.8006 L 840.35572,1248.7554 L 839.14069,1247.753 L 839.58573,1246.8889 L 839.80363,1246.4239 L 839.4907,1245.2159 L 838.13294,1243.9481 L 835.80324,1243.2053 L 834.40207,1244.2175 L 834.26453,1246.0347 L 833.74686,1246.2509 L 831.20697,1245.1893 L 830.81673,1246.9478 L 829.05328,1246.6817 L 826.90428,1247.7369 L 826.32144,1247.5452 L 822.71914,1247.5497 L 822.25955,1247.6221 L 821.35897,1247.816 L 820.76121,1247.6843 L 817.83082,1247.3963 L 817.79451,1245.7205 L 817.60293,1245.1787 L 816.64857,1242.9509 L 814.40492,1242.1437 L 814.0277,1242.5734 L 813.32212,1243.4644 L 813.55192,1244.5977 L 813.09613,1244.937 L 812.68412,1244.5465 L 809.47383,1243.9055 L 808.98008,1243.5828 L 807.58663,1244.6135 L 806.40881,1248.5564 L 805.81218,1248.4107 L 803.80085,1249.7196 L 802.81764,1249.1176 L 802.2629,1247.9904 L 801.79951,1247.6001 L 800.64966,1247.2622 L 800.02936,1247.3494 L 797.35611,1248.868 L 796.39695,1249.3979 L 794.18113,1248.909 L 793.85453,1249.4156 L 791.83472,1251.4675 L 791.27517,1251.743 L 788.96267,1252.3534 L 787.40144,1253.3667 L 784.12029,1251.6632 L 782.31446,1251.7704 L 781.03174,1250.4445 L 779.62867,1251.5816 L 779.15858,1251.4623 L 778.87817,1250.5053 L 778.98561,1247.9244 L 780.13635,1244.9346 L 779.78052,1244.4141 L 777.85068,1242.9128 L 778.10439,1241.6755 L 778.65901,1241.4453 L 778.59296,1239.5995 L 778.29875,1239.0625 L 777.79576,1238.6775 L 777.25734,1236.8586 L 773.48965,1232.7214 L 773.02854,1232.5593 L 772.26387,1231.9546 M 1455.7485,774.26085 L 1456.9058,773.70716 L 1457.3497,773.24164 L 1459.8361,774.33331 L 1460.3639,774.54679 L 1461.2015,774.26631 L 1462.2044,772.89138 L 1462.7753,772.8137 L 1463.1796,772.18882 L 1464.974,771.93319 L 1465.3962,771.47713 L 1466.3559,769.92782 L 1467.349,769.70229 L 1467.9684,769.74389 L 1469.9141,768.81398 L 1470.4664,768.74907 L 1471.9947,768.24598 L 1472.514,768.09742 L 1473.6956,767.89392 L 1474.2657,767.69664 L 1475.1919,766.40844 L 1475.278,765.88034 L 1476.6479,764.93786 L 1477.8194,765.18887 L 1478.5552,764.26636 L 1479.0292,763.90533 L 1480.5606,765.69587 L 1481.4784,765.11759 L 1480.7327,763.08357 L 1480.8013,762.5432 L 1481.763,761.82198 L 1483.9597,762.80965 L 1484.5634,762.90903 L 1485.0969,762.57237 L 1484.3403,760.24443 L 1484.5966,759.67464 L 1486.1005,760.1029 L 1486.5029,759.77686 L 1486.6526,760.30562 L 1488.848,760.67332 L 1489.2596,761.04602 L 1489.3178,761.0569 L 1491.1681,762.73184 L 1491.7399,762.47614 L 1492.2461,762.40553 L 1492.3741,762.89224 L 1492.8667,762.64138 L 1493.4477,760.5699 L 1494.9026,761.31182 L 1495.1999,761.79482 L 1496.8521,761.94498 L 1497.2905,761.46785 L 1497.7275,760.99068 L 1498.7943,759.6466 L 1499.9478,759.36756 L 1500.3252,758.91062 L 1500.472,758.30002 L 1500.8241,758.47301 L 1501.1533,758.77637 L 1502.975,758.62083 L 1504.2313,757.33391 L 1504.296,756.73268 L 1504.2944,755.2438 L 1504.2497,754.74599 L 1506.6393,754.89767 L 1506.9292,756.03616 L 1506.8408,756.6463 L 1506.9153,756.66627 L 1507.9742,756.5151 L 1508.6833,755.76811 L 1509.018,755.3409 L 1507.8776,754.06667 L 1507.3666,753.78072 L 1508.0191,753.47386 L 1507.389,752.56799 L 1508.8631,750.765 L 1508.7757,750.19104 L 1509.8539,750.6867 L 1510.3229,751.76294 L 1512.5406,752.14666 L 1513.1363,752.11081 L 1513.6067,751.42504 L 1514.1698,751.67592 L 1515.5757,750.56726 L 1515.7257,749.97824 L 1516.6164,749.22217 L 1517.7921,749.13541 L 1517.8194,748.55533 L 1517.3212,748.61536 L 1516.3779,748.34606 L 1515.5054,747.8645 L 1515.4557,747.31368 L 1516.3535,746.64686 L 1517.4788,746.9743 L 1518.4349,746.32018 L 1519.0166,746.30393 L 1519.4628,744.10368 L 1519.986,743.8506 L 1520.19,744.30514 L 1520.6493,744.85439 L 1522.2985,745.5503 L 1522.9648,746.55277 L 1523.3179,747.04265 L 1524.4393,747.60785 L 1524.7118,747.06609 L 1523.3642,744.43273 L 1523.6039,743.87782 L 1525.0235,744.79359 L 1525.5758,745.06102 L 1526.8777,744.36216 L 1526.9056,743.2847 L 1527.0127,742.7349 L 1527.0555,741.66314 L 1527.2028,741.14659 L 1529.3251,741.53067 L 1529.9259,741.24913 L 1530.4677,740.87082 L 1530.0286,740.55419 L 1529.6643,740.15578 L 1530.8564,738.07832 L 1531.1027,737.50905 L 1532.0517,736.79832 L 1531.7862,734.96848 L 1531.7271,734.35285 L 1532.15,732.83377 L 1532.7675,733.05538 L 1533.3048,733.42626 L 1533.8511,733.69052 L 1534.4349,733.52352 L 1535.7821,731.21381 L 1535.828,730.65279 L 1536.1952,730.1885 L 1537.3915,730.27621 L 1537.9925,730.26671 L 1539.927,729.07236 L 1540.4484,728.81705 L 1541.3038,729.24534 L 1541.7905,729.20562 L 1542.7735,729.77075 L 1543.1955,730.15772 L 1544.1073,727.9242 L 1545.8978,727.28036 L 1546.3432,727.73126 L 1546.6035,727.42346 L 1547.0917,727.70016 L 1548.1021,728.19161 L 1551.6142,728.70888 L 1552.1634,729.00889 L 1552.5335,729.51039 L 1553.5367,733.65889 L 1554.0708,733.35865 L 1554.0837,732.15189 L 1556.7946,729.85096 L 1557.2138,729.40983 L 1557.929,730.89494 L 1559.3834,731.89315 L 1559.9779,731.78579 L 1560.9114,731.16906 L 1561.3044,730.13369 L 1563.7356,732.51639 L 1563.9531,733.05661 L 1564.5486,731.94982 L 1565.8189,731.96885 L 1566.4438,732.10893 L 1566.7868,731.59003 L 1567.729,729.39289 L 1567.1409,727.12303 L 1567.2134,726.54043 L 1567.441,725.9263 L 1565.8898,725.54964 L 1567.43,723.80743 L 1567.3211,723.2185 L 1569.0945,723.53978 L 1570.0622,724.27152 L 1570.6058,724.5459 L 1570.4973,725.10351 L 1571.4819,725.65016 L 1572.0613,725.61187 L 1573.2123,725.82492 L 1575.4182,725.05681 L 1575.8836,724.67984 L 1576.2569,724.14802 L 1576.6657,723.64284 L 1577.2623,722.76065 L 1578.3661,721.24687 L 1578.6753,720.69519 L 1578.2797,720.18309 L 1576.5893,718.25982 L 1577.3609,716.67058 L 1578.0414,718.01692 L 1581.0401,718.33553 L 1580.8012,718.77562 L 1580.5818,719.73572 L 1583.4368,720.67662 L 1584.2955,721.56361 L 1584.9173,721.67663 L 1585.0589,720.81796 L 1585.2674,720.41089 L 1585.7319,720.23842 L 1587.5247,720.89676 L 1588.1354,721.99457 L 1588.6312,722.39085 L 1589.2487,723.42636 L 1589.8029,723.68274 L 1590.7516,724.13707 L 1591.2185,724.38692 L 1592.2071,724.52561 L 1592.7109,724.63423 L 1594.6339,722.33218 L 1595.1233,720.57508 L 1595.2706,719.98192 L 1595.9887,719.79943 M 796.11588,368.83638 L 797.02281,368.39516 L 798.39157,368.27316 L 799.06666,368.41427 L 800.70495,369.25596 L 802.29529,371.07328 L 802.67643,371.53991 L 802.79436,371.7181 L 803.09894,372.05825 L 803.39694,372.40347 L 805.22846,374.58233 L 805.59302,375.02001 L 808.18807,377.60575 L 809.87331,378.40168 L 810.48816,378.53015 L 812.40295,378.34105 L 815.44215,376.10612 L 815.94274,375.72477 L 816.27769,376.26512 L 814.43921,378.80509 L 814.29483,379.41931 L 815.55351,379.20627 L 816.09243,380.288 L 817.37237,380.31958 L 817.76819,381.32871 L 816.86609,382.19318 L 817.26241,382.61091 L 817.82222,382.79827 L 818.91716,383.36615 L 819.53985,383.16635 L 821.48741,382.76446 L 823.3741,383.30728 L 824.30454,382.59564 L 825.00898,382.06595 L 825.17639,381.83265 L 828.05894,382.34219 L 828.76022,381.4104 L 831.77171,380.34751 L 833.76166,381.83995 L 834.30097,381.47008 L 836.2503,380.60259 L 835.99962,379.44061 L 835.88473,378.8578 L 836.23359,378.86797 L 837.79141,383.68655 L 838.25733,384.14945 L 839.413,384.78571 L 840.05278,384.97953 L 843.02328,384.92977 L 843.56841,384.66688 L 843.98522,385.13108 L 845.18544,384.69421 L 845.79663,384.50276 L 845.56898,385.68156 L 846.50018,386.53941 L 846.53498,387.78101 L 846.03629,388.19065 L 845.86711,388.79482 L 847.01013,388.66167 L 847.60524,388.91093 L 847.95436,387.79249 L 850.1922,386.63339 L 850.81439,386.47637 L 850.73632,387.58366 L 850.77807,388.13834 L 851.31738,390.8518 L 851.60019,391.33994 L 851.30232,392.41634 L 851.4591,392.97893 L 851.91553,393.18809 L 852.60074,393.89619 L 852.18721,394.38627 L 851.06,395.04625 L 846.68784,393.63618 L 844.94641,394.36833 L 843.99307,393.76405 L 843.37683,393.84069 L 841.96567,396.35859 L 841.49747,397.3102 L 843.81048,397.4497 L 844.01939,397.98167 L 844.65828,397.83564 L 847.59512,399.11852 L 847.72292,401.499 L 848.51379,402.46467 L 849.71768,402.1465 L 849.56874,400.91663 L 851.18085,399.91463 L 851.77406,399.65149 L 853.24165,398.44851 L 855.01117,402.591 L 856.18001,403.17464 L 856.20494,403.77565 L 856.44903,404.74768 L 855.59084,405.42579 L 855.1577,405.77644 L 855.5501,406.78052 L 855.57971,407.34038 L 857.45109,405.83395 L 858.75317,407.57073 L 859.35195,407.72695 L 859.85355,408.84443 L 861.12539,409.04738 L 860.45853,409.93234 L 861.06301,410.88884 L 865.36532,409.39407 L 866.03573,409.47558 L 866.07546,409.77075 L 867.71894,408.97122 L 867.70642,409.55477 L 867.94684,409.09258 L 868.89803,409.54971 L 869.22096,409.13543 L 867.84017,407.14042 L 869.48226,405.60998 L 867.30984,402.50491 L 869.71648,401.33573 L 870.25781,400.953 L 872.58575,400.31281 L 873.19604,400.32176 L 876.95297,400.37328 L 877.57441,400.3051 L 878.13092,400.30524 L 878.21216,397.9133 L 878.49915,397.38007 L 879.48995,396.14827 L 879.58397,395.6111 L 880.79545,395.6515 L 881.46585,394.69722 L 882.26747,394.99793 L 882.50903,395.52724 L 883.72393,394.34677 L 884.29589,394.08743 L 884.56617,395.14346 L 884.65374,395.17513 L 886.58231,394.99268 L 886.34645,392.56564 L 886.53625,391.98139 L 887.07442,392.59349 L 887.69472,392.52429 L 888.02928,393.01251 L 891.70106,393.36952 L 892.31603,393.41401 L 895.61414,393.44194 L 895.62375,392.1849 L 896.87826,390.82986 L 897.39542,390.59164 L 897.35215,388.76518 L 897.77036,388.29986 L 897.38441,386.7521 L 897.38201,386.20831 L 898.1811,385.44921 L 898.81632,384.79213 L 900.14966,384.48657 L 901.08428,381.78541 L 900.5313,379.09124 L 900.35668,378.56274 L 902.78913,378.12231 L 903.95164,378.52561 L 903.6582,377.31176 L 903.88179,376.70941 L 905.31889,377.27713 L 905.46226,376.78916 L 904.71632,375.35557 L 907.82702,374.4729 L 910.07725,372.24233 L 910.46231,372.34474 L 910.79789,372.54628 L 909.75812,374.68395 L 913.30892,373.64348 L 916.35661,373.75633 L 918.10778,374.66558 L 921.43524,374.43373 L 923.34736,375.13209 L 924.25401,376.08235 L 924.68159,376.58569 L 927.9311,376.12666 L 928.93847,377.71853 L 929.15055,378.31614 L 930.80707,376.42097 L 934.0867,376.49222 L 933.99078,376.99596 L 934.80987,377.66371 L 935.21061,378.01003 L 936.61697,380.59641 L 937.97953,381.83294 L 940.05667,381.15452 L 940.64203,381.15118 L 940.63014,381.72463 L 942.73271,382.81587 L 943.14763,383.23465 L 943.51395,383.26449 L 944.56764,383.83743 L 946.00968,382.66921 L 947.29253,382.7512 L 947.49802,383.32934 L 948.73266,384.31691 L 949.02927,384.75655 L 949.98312,382.65625 L 950.97075,382.44175 L 951.51512,382.13045 M 926.99218,643.08917 L 925.86017,642.79311 L 923.65131,642.15307 L 923.27612,641.65699 L 918.83474,638.30483 L 917.0303,637.72103 L 915.91777,638.28929 L 916.24639,639.26749 L 916.79139,642.92233 L 916.50415,644.14604 L 915.88158,644.38816 L 912.70217,645.22352 L 910.05422,643.38077 L 907.99797,648.30656 L 905.42873,646.53661 L 903.97328,647.57089 L 900.23039,648.30362 L 899.88836,647.82112 L 899.08484,645.67022 L 894.76025,646.63936 L 894.15262,645.60319 L 893.95762,644.99706 L 892.55886,643.76577 L 891.90187,643.81246 L 889.35313,644.30281 L 887.14339,645.58364 L 885.4074,644.97466 L 885.96708,644.66412 L 886.48501,644.29169 L 884.93187,639.73791 L 883.21297,638.89567 L 882.63241,638.62442 L 882.69289,638.03144 L 881.65958,636.58091 L 882.32302,635.05142 L 881.87912,634.62872 L 879.38948,634.5927 L 879.03833,634.16054 L 878.0426,633.634 L 877.50481,633.53837 L 876.379,632.52397 L 876.05695,632.0173 L 875.82501,630.25436 L 875.50373,629.70016 L 874.7016,628.69734 L 875.44463,625.07105 L 874.78511,625.03661 L 870.27224,625.82144 L 869.40798,624.19189 L 865.46858,624.16558 L 864.89055,623.83937 L 862.36712,624.456 L 860.63202,623.51906 L 860.48283,621.71726 L 866.2559,618.53797 L 867.13395,617.60132 L 866.20883,615.8824 L 864.92155,615.55619 L 862.30537,615.76145 L 860.57229,616.67972 L 855.49202,621.47208 L 854.2689,621.94201 L 854.29117,621.39392 L 854.09301,619.29702 L 853.46613,619.30778 L 852.21922,619.41814 L 850.20409,620.80031 L 847.11832,621.14603 L 846.47462,620.97826 L 844.94717,620.01228 L 841.08382,621.00051 M 1161.5353,1340.1336 L 1163.9223,1340.512 L 1164.482,1341.6085 L 1168.4721,1344.1748 L 1169.3212,1347.083 L 1169.7576,1347.5202 L 1170.3179,1347.7981 L 1175.1227,1348.6392 L 1178.1766,1348.2832 L 1182.1117,1349.3561 L 1183.3717,1350.5652 L 1185.8077,1348.8368 L 1186.3804,1348.9924 L 1186.9657,1349.1402 L 1190.9571,1350.1668 L 1194.3321,1349.193 L 1194.7145,1346.1013 L 1196.1466,1344.9749 L 1193.9933,1342.9413 L 1194.9478,1339.2788 L 1195.8671,1338.4444 L 1196.4594,1338.2886 L 1197.7491,1339.4951 L 1198.7652,1338.8618 L 1199.1729,1337.698 L 1200.3415,1337.9029 L 1200.9367,1337.9529 L 1200.8573,1338.5518 L 1201.8733,1340.0205 L 1203.8001,1341.2854 L 1205.5002,1341.2359 L 1206.0741,1341.3254 L 1207.2665,1342.5939 L 1209.2656,1343.5389 L 1209.8243,1343.6727 L 1210.3751,1343.7127 L 1210.7027,1344.773 L 1211.5504,1345.2792 L 1212.0734,1345.4667 L 1212.6046,1345.7236 L 1215.1053,1348.0657 L 1216.8564,1347.8514 L 1217.5953,1347.2672 L 1218.0481,1347.1411 L 1219.0882,1346.4103 L 1219.5494,1346.2466 L 1224.6882,1347.8331 L 1227.4195,1344.4486 L 1227.946,1344.1815 L 1229.075,1344.3216 L 1229.4816,1343.8845 L 1229.6065,1342.0795 L 1231.1125,1342.1063 L 1231.5898,1341.8645 L 1231.5671,1338.2375 L 1237.5179,1341.3105 L 1237.7041,1340.3077 L 1236.977,1339.8216 L 1236.4837,1339.9787 L 1235.5804,1337.6913 L 1235.6319,1336.4555 L 1233.0206,1335.3999 L 1233.9926,1332.4716 L 1234.1186,1331.8641 L 1234.5824,1331.7013 L 1234.0141,1327.2862 L 1235.0662,1325.7181 L 1236.6077,1325.6673 L 1237.1386,1325.5702 L 1237.5987,1323.8631 L 1236.8998,1322.94 L 1235.5476,1321.8056 L 1234.4254,1322.0876 L 1234.0567,1322.5535 L 1232.4798,1320.9886 L 1232.906,1319.9336 L 1233.2038,1319.4481 L 1233.1039,1318.8128 L 1232.3073,1317.0886 L 1231.2949,1316.3485 L 1231.0317,1315.5436 L 1233.6733,1313.2226 L 1234.3162,1312.1375 L 1234.5967,1311.5843 L 1234.5855,1310.3866 L 1232.8998,1309.9034 L 1231.3031,1308.0325 L 1231.3037,1306.8581 L 1229.5704,1303.6375 L 1226.7613,1300.8424 L 1226.3442,1300.4098 L 1226.7076,1299.4977 L 1227.4786,1300.0168 L 1228.1922,1299.561 L 1228.334,1299.0294 L 1229.2161,1297.6544 L 1230.2203,1297.287 L 1234.3288,1297.7863 L 1234.365,1296.5189 L 1235.8915,1295.5299 L 1237.2145,1293.3871 L 1237.3824,1293.3249 L 1237.2374,1292.7213 L 1237.7514,1290.3819 L 1240.5602,1287.2746 M 948.28889,1504.2117 L 947.81766,1503.8526 L 946.41473,1502.7871 L 946.13748,1503.3435 L 943.50269,1506.7228 L 944.16006,1508.342 L 944.09578,1509.5981 L 942.71841,1510.794 L 941.53881,1510.8789 L 941.45897,1510.2585 L 941.80037,1507.7871 L 941.3504,1507.3789 L 937.88514,1506.5792 L 937.2179,1505.5519 L 934.89667,1505.0676 L 934.42101,1503.9253 L 933.9103,1504.2362 L 933.33784,1504.2569 L 933.50449,1506.6282 L 932.73033,1507.5301 L 931.66487,1506.0836 L 930.18994,1503.6177 L 929.71985,1503.9301 L 929.72592,1503.7493 L 929.18573,1503.5677 L 927.21616,1504.7476 L 926.67748,1504.5612 L 926.57612,1502.8122 L 926.45363,1502.2271 L 925.91913,1500.7554 L 925.28113,1501.7157 L 924.35221,1501.1229 L 923.96803,1500.6984 L 923.81695,1503.6006 L 923.01229,1505.1183 L 923.27283,1505.6429 L 923.51477,1506.1775 L 923.21019,1506.6707 L 923.60069,1507.7476 L 924.15215,1507.6674 L 924.81116,1508.2204 L 925.01881,1508.6058 L 923.90755,1510.5377 L 923.48997,1510.9271 L 924.50962,1511.4922 L 924.95997,1512.5077 L 924.93643,1513.116 L 924.95149,1513.8323 L 922.80489,1512.8163 L 921.48079,1513.9424 L 921.34577,1514.5553 L 920.71409,1515.3941 L 919.96283,1515.7956 L 918.37945,1515.4282 L 917.45408,1515.1009 L 917.08041,1514.7603 L 915.7825,1514.347 L 913.97604,1512.8048 L 915.19916,1508.0751 L 914.80043,1506.9 L 912.14097,1503.6644 L 912.03772,1503.4683 L 909.17364,1501.4129 L 907.44955,1498.2782 L 908.37809,1497.52 L 904.89549,1496.5419 L 903.0989,1496.8454 L 902.17112,1497.6567 L 901.24688,1499.8517 L 900.08703,1499.9746 L 899.33564,1501.6498 L 898.19287,1501.5031 L 899.29439,1504.3291 L 898.48808,1505.1801 L 898.39305,1505.7895 L 902.9959,1506.5773 L 902.93022,1507.1979 L 901.46908,1508.3089 L 903.7836,1508.8132 L 905.25107,1509.7763 L 905.79215,1509.5044 L 906.32298,1509.6718 L 907.39362,1509.9796 L 908.3829,1509.4558 L 908.617,1510.5966 L 908.96422,1511.0307 L 909.6312,1512.5144 L 909.2564,1513.5775 L 908.99244,1514.1446 L 908.02189,1515.7117 L 906.30843,1515.2837 L 905.75419,1515.4736 L 902.65842,1516.8297 L 902.62071,1517.3051 L 902.88518,1518.2087 L 902.4099,1518.3729 L 901.97068,1519.3121 L 900.98608,1519.4934 L 900.61254,1519.1912 L 899.86217,1518.5936 L 899.39587,1518.8367 L 898.66751,1519.6225 L 895.63767,1518.4231 L 894.88021,1519.2211 L 895.10722,1519.3493 L 894.66143,1519.7236 L 893.22332,1520.6272 L 892.73348,1520.7165 L 892.50989,1520.1232 L 891.48278,1519.6618 L 890.3214,1519.9699 L 889.99367,1522.4184 L 888.49355,1524.9994 L 888.96554,1526.1459 L 891.23868,1526.8121 L 892.91557,1527.1553 L 893.49208,1527.1831 L 895.8328,1527.1016 L 896.1909,1528.2712 L 899.057,1531.3875 L 899.48141,1531.8186 L 897.89322,1531.6651 L 896.94963,1533.0226 L 896.8279,1533.5748 L 896.47258,1534.0728 L 894.16894,1534.4904 L 894.31142,1537.4772 L 892.75715,1537.955 L 892.24441,1538.1318 L 891.68878,1538.2287 L 889.46676,1538.5248 L 889.28075,1537.9492 L 887.80936,1534.6883 L 887.84504,1533.1908 L 886.39997,1531.8161 L 886.28115,1531.3037 L 883.63928,1528.9652 L 883.31863,1528.4575 L 881.74702,1530.091 L 879.62939,1528.8855 L 876.87756,1525.5434 L 875.85424,1526.8304 L 875.35808,1527.0983 L 875.34581,1527.6243 L 874.90368,1527.8633 L 874.34691,1527.912 L 872.32356,1528.6294 L 872.30977,1529.7652 L 871.82234,1529.4759 L 869.13997,1528.8791 L 867.95304,1527.6374 L 867.73995,1527.9205 L 867.30288,1528.9749 L 867.7974,1529.926 L 867.61101,1532.3267 L 866.01523,1535.894 L 864.40401,1535.5592 L 862.3799,1533.4852 L 861.82199,1533.5183 L 861.28989,1533.3388 L 861.65382,1534.9394 L 860.71199,1536.2956 L 860.17699,1536.3135 L 860.12283,1537.5648 L 861.80604,1539.3143 L 861.13083,1540.2482 L 858.43012,1540.8872 L 858.68813,1541.3969 L 859.35335,1542.8143 L 859.15898,1543.365 L 859.1238,1544.5355 L 859.77788,1545.4867 L 860.32504,1545.383 L 860.46511,1546.9511 L 860.31086,1547.0034 L 859.93757,1546.6371 L 859.16822,1545.938 L 859.22111,1546.5237 L 859.7899,1549.9606 L 860.28733,1549.9631 L 860.77362,1549.8524 L 862.18199,1550.808 L 862.88289,1552.4057 L 864.01035,1552.374 L 863.53279,1552.749 L 861.87653,1553.1253 L 860.55673,1555.9144 L 858.71268,1558.3189 L 858.53186,1558.9136 L 858.11504,1559.1793 L 856.71134,1559.5783 L 856.282,1560.0233 L 853.34428,1560.5203 L 852.46559,1560.3776 L 852.02372,1560.3303 L 850.65052,1561.4195 L 850.12235,1561.6645 L 849.54356,1561.863 L 846.40963,1561.783 L 846.52073,1562.392 L 847.73348,1565.8168 L 847.62491,1566.4171 L 846.25222,1567.4595 L 845.13146,1567.3322 L 844.1618,1567.9612 L 842.46403,1567.7455 L 842.08403,1568.2034 L 841.65469,1568.5933 L 840.30553,1569.5145 L 841.26166,1572.2045 L 841.74453,1572.5626 L 842.35622,1574.254 L 841.38997,1577.1783 L 841.92143,1578.288 L 843.03054,1578.6895 L 844.21761,1582.0489 L 844.62506,1582.4547 L 844.42462,1584.7554 M 797.03701,1608.2199 L 797.70817,1607.2124 L 797.53836,1606.0156 L 792.92453,1603.041 L 794.29367,1601.9316 L 794.22243,1600.6815 L 794.05604,1600.0698 L 794.46362,1598.2225 L 794.29481,1597.6468 L 793.41537,1596.1314 L 793.51761,1594.3659 L 794.27773,1592.7529 L 794.42135,1592.618 L 794.45919,1590.3775 L 794.38681,1589.9751 L 794.00694,1589.9026 L 793.75702,1589.3635 L 793.8723,1586.4491 L 793.92494,1585.8399 L 794.54764,1583.5057 L 794.97407,1582.2642 L 794.62837,1582.0051 L 794.05578,1581.3494 L 795.21121,1580.2964 L 795.62891,1579.9688 L 795.62486,1579.3625 L 795.52819,1578.1575 L 796.22099,1576.505 L 796.80344,1576.5561 L 798.35029,1577.1799 L 798.94843,1578.2347 L 799.52811,1578.1644 L 801.14037,1578.46 L 801.41534,1578.9544 L 802.23303,1579.6113 L 803.87209,1578.9981 L 804.74584,1579.8248 L 805.25794,1579.6301 L 805.79725,1579.7025 L 806.02363,1579.232 L 807.51704,1577.8606 L 807.73544,1576.7858 L 807.65598,1576.1666 L 807.97574,1575.6431 L 808.15454,1575.1115 L 808.74674,1573.5594 L 808.82469,1572.9988 L 809.58632,1570.9648 L 809.99188,1570.6842 L 810.25698,1569.2287 L 810.20535,1568.599 L 810.5856,1567.4019 L 811.12225,1566.7223 L 811.27612,1566.3079 L 811.71901,1566.1777 L 812.50633,1565.7946 L 812.84925,1565.3002 L 813.9328,1564.8725 L 815.29929,1562.9038 L 815.87567,1562.8561 L 816.0708,1560.8682 L 815.16149,1560.0151 L 815.05912,1559.9187 L 813.61443,1559.3884 L 813.10726,1559.2785 L 812.53872,1558.1332 L 812.32019,1557.5255 L 812.58402,1557.1052 L 812.01004,1556.3808 L 812.4714,1556.2223 L 813.80019,1555.8464 L 813.79677,1555.3025 L 813.72907,1553.8152 L 813.39083,1553.4107 L 812.54961,1552.2109 L 812.39232,1551.6476 L 812.64767,1550.5045 L 812.54277,1550.3017 L 812.22478,1549.7617 L 811.58108,1548.0182 L 811.10858,1547.9571 L 809.70476,1547.755 L 809.81738,1548.3257 L 809.63074,1549.4774 L 809.52698,1550.1469 L 809.14268,1550.0722 L 808.76243,1549.9743 L 808.68676,1550.5743 L 807.03328,1550.3457 L 806.01401,1550.8121 L 805.66945,1551.2952 L 804.00496,1553.0115 L 803.7129,1553.5558 L 803.22624,1554.0524 L 802.73894,1553.9443 L 801.31892,1552.6067 L 802.12991,1551.7045 L 802.35274,1547.4626 L 802.58443,1546.9245 L 804.03216,1546.1927 L 805.8428,1547.5755 L 806.37376,1547.3936 L 806.19762,1546.7635 L 805.97934,1546.1985 L 805.35525,1542.741 L 804.86289,1542.4866 L 805.71677,1541.0051 L 805.98858,1540.6602 L 801.98919,1538.842 L 802.03779,1537.071 L 801.60034,1537.1473 L 800.73646,1537.3081 L 798.48939,1536.798 L 797.91794,1534.6032 L 796.79516,1534.3631 L 796.55309,1533.1745 L 796.05149,1533.3694 L 793.44265,1533.8753 L 791.95227,1533.6552 L 792.45236,1533.3235 L 793.33281,1532.5125 L 792.18384,1531.1297 L 790.61236,1530.2969 L 790.47936,1530.251 L 790.80305,1529.8089 L 792.43666,1527.6177 L 792.70404,1527.0767 L 793.19995,1526.6845 L 797.79381,1522.3737 L 800.5588,1518.859 L 798.63731,1517.7147 L 799.92421,1515.931 L 800.10845,1515.3989 L 800.62043,1515.623 L 802.18735,1516.1865 L 803.60104,1515.2747 L 804.47315,1515.99 L 804.97108,1515.72 L 806.79513,1514.4881 L 807.15665,1514.0145 L 807.12578,1511.6072 L 806.53851,1511.7049 L 804.92679,1510.8987 L 804.35673,1511.0784 L 804.75584,1510.6168 L 806.3587,1508.0966 L 807.52703,1507.9423 L 807.55841,1507.4372 L 807.61624,1506.936 L 808.06141,1506.5063 L 810.15802,1504.2267 L 812.40915,1503.4297 L 812.50165,1502.9326 L 812.95769,1501.1257 L 815.0695,1500.1699 L 814.63041,1499.1132 L 811.99942,1497.5747 L 811.42404,1497.3841 L 811.84807,1497.0339 L 812.06155,1496.5129 L 812.66324,1496.5368 L 816.19367,1497.1166 L 817.75161,1496.2168 L 818.13021,1495.8366 L 820.01665,1493.978 L 820.09359,1493.4669 L 821.99141,1490.259 L 822.41102,1489.8025 L 822.85732,1488.8905 L 823.11976,1488.4458 L 823.22403,1488.1969 L 823.59529,1487.5805 L 825.26864,1484.9813 L 827.27858,1486.2743 L 828.3782,1484.8453 L 828.82222,1484.4183 L 829.59854,1483.5091 L 829.20083,1481.8016 L 829.53881,1481.2914 L 830.16733,1480.226 L 830.46912,1479.6986 L 829.82542,1478.0092 L 832.12678,1478.0132 L 836.29205,1480.7572 L 836.79365,1481.1381 L 836.83895,1481.055 L 838.15875,1478.4326 L 838.54191,1477.9677 L 840.98158,1479.0591 L 841.47837,1479.2696 L 842.63759,1478.5775 L 843.09072,1478.4403 L 844.03318,1478.1866 L 845.47712,1479.1148 L 846.06274,1479.1428 L 846.38642,1479.1857 L 846.70581,1479.2535 L 848.26008,1479.9105 L 848.8066,1480.1202 L 849.12143,1479.6555 L 850.71012,1479.9622 L 850.72784,1480.5404 L 852.03739,1481.4129 L 851.97703,1481.9894 L 853.85005,1484.1188 L 854.17526,1484.6339 L 854.39164,1484.2386 L 854.45896,1483.7887 L 856.57367,1483.5243 L 857.05869,1485.7935 L 856.7321,1486.3008 L 858.21779,1487.7315 L 858.71521,1487.8457 L 859.80813,1487.3738 L 860.3759,1487.2073 L 861.02062,1485.4256 L 861.5412,1485.3194 L 861.81414,1484.7474 L 861.04175,1483.9411 L 861.38087,1482.7285 L 860.40969,1479.7578 L 860.81069,1479.2935 L 861.72392,1478.5573 L 864.06084,1478.9465 L 864.15283,1478.3466 L 864.79691,1477.3491 L 863.84167,1475.8555 L 863.57025,1475.4805 L 863.93063,1475.0714 L 865.26131,1473.5506 L 865.46402,1472.4441 L 865.62055,1471.381 L 866.12177,1471.4875 L 865.87401,1471.0085 L 866.73726,1470.4117 L 866.45077,1469.9662 L 866.09419,1469.5303 L 863.44396,1467.6387 L 863.71361,1467.1195 L 865.92058,1465.4404 L 865.44833,1465.2088 L 867.64024,1464.7252 L 868.68443,1462.0344 L 870.40093,1461.9921 L 870.01094,1461.5188 L 868.13715,1459.999 L 867.96405,1458.8168 L 868.74125,1458.0308 L 869.83809,1458.5038 L 870.87013,1457.9207 L 870.42434,1457.491 L 867.57482,1455.2958 L 868.72265,1455.6131 L 870.64312,1454.3098 L 871.82196,1454.2982 L 872.74594,1455.0274 L 873.46253,1456.7234 L 874.5414,1456.1055 L 876.12782,1454.4736 L 875.61951,1452.9876 L 875.39857,1452.429 L 877.05193,1452.8706 L 880.43684,1452.3742 L 881.0055,1452.4426 L 881.85065,1449.8418 L 881.71475,1449.303 L 882.28747,1449.5357 L 886.40238,1450.1479 L 886.73062,1448.9888 L 886.54524,1445.293 L 885.02235,1443.4834 L 884.70828,1442.9639 L 884.06774,1441.9329 L 882.86828,1443.252 L 881.25263,1443.565 L 879.65559,1441.0324 L 879.22207,1440.6152 L 879.75505,1438.5977 L 879.83679,1438.0787 L 879.51715,1437.6333 L 878.75425,1436.8614 L 877.70107,1436.7123 L 877.30045,1437.0573 L 875.84677,1437.27 L 875.78743,1437.7954 L 873.13581,1436.7524 L 872.38936,1435.8639 L 873.76483,1433.9963 L 874.00715,1433.4369 L 873.0032,1432.7384 L 871.2314,1433.0787 L 870.64616,1433.2266 L 869.08885,1431.4972 L 868.51917,1431.5562 L 868.3696,1431.0081 L 867.3807,1430.6106 L 867.67415,1430.1306 L 867.67744,1429.5354 L 869.49086,1426.1819 L 869.26537,1425.6892 L 868.27698,1425.3542 L 867.75969,1425.0574 L 866.3317,1423.9982 L 864.64304,1424.3171 L 864.25912,1423.8487 L 863.98377,1423.2944 L 864.14068,1422.2231 L 862.69308,1421.1586 L 862.16276,1420.959 L 859.39599,1418.2105 L 859.79269,1418.2033 L 860.18977,1418.1961 L 857.96673,1415.3804 L 856.8828,1415.3312 L 857.36859,1414.9984 L 856.0026,1413.0914 L 855.31157,1410.8516 L 855.35498,1410.2458 L 855.61754,1409.8874 L 858.71179,1410.2075 L 858.96373,1409.6802 L 859.60642,1408.7413 L 860.66707,1408.3836 L 861.22055,1408.2339 L 865.82947,1407.3836 L 866.86999,1408.0233 L 868.66001,1408.1932 L 869.02912,1407.6871 L 871.57053,1405.109 L 871.71883,1404.9503 L 873.46013,1406.4373 L 874.56076,1406.7151 L 874.47155,1407.6801 L 874.80384,1408.1596 L 875.73947,1408.3433 L 875.9537,1407.7528 L 877.06901,1406.2633 L 879.18043,1405.0835 L 879.47527,1403.8587 L 881.08687,1404.5864 L 881.80599,1406.3163 L 883.36494,1407.1338 L 883.91311,1408.7002 L 884.35738,1409.0207 L 888.47837,1409.7163 L 888.75675,1410.9074 L 887.37546,1412.0789 L 887.75545,1413.2273 L 888.10154,1413.7449 L 896.28138,1409.9564 L 895.04484,1408.8115 L 894.94715,1408.1882 L 895.47456,1408.2891 L 896.35047,1407.6406 L 896.83903,1408.6233 L 897.38188,1408.448 L 899.01701,1407.9766 L 899.37854,1407.8809 L 899.7803,1407.7227 L 900.61191,1407.7836 L 901.03404,1407.3767 L 902.46836,1406.379 L 904.62533,1406.0117 L 904.83906,1405.4939 L 905.65878,1404.8111 L 906.73473,1404.7902 L 906.89569,1404.1914 L 906.02485,1401.2729 L 903.14344,1401.0825 L 900.96736,1401.878 L 899.5233,1399.9052 L 898.35787,1399.5974 L 898.71497,1399.1272 L 901.596,1397.3169 L 902.14619,1397.5693 L 903.60467,1398.5642 L 906.58732,1398.3375 L 906.91632,1397.3154 L 905.37647,1394.7822 L 905.82024,1394.4131 L 906.24807,1394.0244 L 906.21517,1392.8426 L 907.38742,1391.5548 L 910.65275,1393.0177 L 912.36077,1392.4652 L 912.88186,1392.7892 L 914.08549,1394.7934 L 915.7148,1395.2339 L 917.8342,1394.4935 L 917.98377,1395.077 L 920.27665,1390.6291 L 920.6345,1390.1087 L 921.28921,1388.6297 L 921.53571,1388.132 L 922.89334,1389.3184 L 923.42303,1391.7047 L 924.02422,1391.7358 L 926.54677,1389.1595 L 926.36923,1388.5579 L 926.895,1388.743 L 927.39786,1388.9907 L 928.39056,1387.5366 L 928.72285,1385.7901 L 930.90805,1386.3573 L 931.48519,1386.2987 L 930.46023,1389.6997 L 930.86452,1391.499 L 931.96351,1392.9475 L 931.58427,1394.0795 L 932.54558,1394.7911 L 932.24695,1395.1379 L 931.44508,1394.9833 L 931.41774,1395.4111 L 933.35037,1398.4591 L 933.63065,1399.0119 L 934.08088,1399.2572 L 935.99085,1399.968 L 936.23672,1400.0478 L 935.65603,1404.795 L 940.32746,1407.6069 L 942.76725,1407.8898 L 942.97326,1408.4732 L 942.42534,1411.2829 L 943.62113,1412.3521 L 944.15905,1413.9929 L 943.61114,1416.2335 L 943.45094,1416.7904 L 944.43693,1417.9915 L 944.65926,1418.509 L 947.15384,1419.6869 L 948.33482,1421.0181 L 948.87084,1420.7929 L 950.20216,1422.7693 L 950.56975,1423.2577 L 950.04803,1424.3405 L 948.85515,1424.4014 L 947.08171,1425.9671 L 945.41596,1425.2965 L 944.82236,1425.19 L 945.25665,1425.5643 L 945.14542,1426.7226 L 945.1439,1427.311 L 951.78908,1428.1643 L 952.37369,1428.3551 L 952.14756,1428.9258 L 952.33218,1430.7686 L 953.61313,1432.7817 L 953.5958,1433.3999 L 952.83036,1434.1295 L 950.07372,1435.2126 L 948.67496,1437.2119 L 948.20626,1438.9486 L 949.57845,1440.837 L 950.5471,1440.6019 L 952.1716,1441.1505 L 952.67029,1441.4472 L 952.75722,1441.989 L 954.88712,1443.4232 L 955.0987,1443.6714 L 955.41365,1443.7147 L 955.45389,1443.8789 L 957.62681,1444.1841 L 957.68818,1444.0111 L 958.17295,1444.1684 L 958.90068,1444.855 L 958.93927,1445.9116 L 959.34837,1446.2553 L 961.57368,1447.4817 L 962.24168,1447.707 L 962.73303,1447.9614 L 963.73344,1448.3209 L 965.14852,1447.951 L 965.70188,1448.1149 L 967.3613,1448.5736 L 968.66478,1450.4472 L 968.98138,1453.2543 L 968.8251,1453.8042 L 969.97724,1454.2767 L 970.53692,1454.5592 L 972.07436,1455.2037 L 972.58368,1455.4274 L 971.6559,1456.1317 L 973.50741,1459.7019 L 973.71911,1459.8403 L 973.99851,1460.3482 L 977.22234,1462.5302 L 977.66421,1461.8605 L 981.21577,1464.2344 L 981.70611,1464.5474 L 982.30628,1463.9524 L 984.42454,1465.0253 L 986.1714,1466.672 L 987.21092,1466.1412 L 988.96803,1466.1892 L 989.30652,1465.6815 L 989.54049,1462.0418 L 989.23541,1461.5006 L 989.75295,1461.2074 L 992.1291,1462.7984 L 993.06561,1460.801 L 993.80194,1463.1122 L 993.46939,1465.0381 L 993.82547,1465.4098 L 993.40853,1465.8716 L 992.65309,1466.8706 L 990.88851,1467.3035 L 990.16458,1468.2976 L 989.61085,1472.0341 L 990.55749,1472.6661 L 991.40188,1474.3406 M 828.48487,1359.4371 L 829.5664,1359.3781 L 829.83884,1360.4907 L 829.96803,1361.052 L 830.64451,1362.0098 L 830.54176,1363.2305 L 830.37485,1363.8195 L 830.92783,1365.51 L 831.32111,1365.9409 L 835.53801,1363.3212 L 837.29019,1362.2775 L 837.57958,1361.7997 L 838.66162,1361.194 L 840.51288,1362.7689 L 842.27746,1362.6416 L 842.69643,1363.6481 L 843.71089,1364.0113 L 844.13821,1364.3516 L 843.1936,1364.9785 L 842.05905,1365.1242 L 841.15607,1366.729 L 838.94063,1366.0464 L 838.38538,1366.296 L 837.87531,1366.599 L 838.71653,1368.6837 L 838.07486,1369.7014 L 838.86636,1370.1311 L 839.05212,1370.555 L 839.15841,1371.186 L 838.93431,1372.3728 L 837.01143,1374.6448 L 836.92601,1374.8029 L 836.57424,1375.1257 L 835.98444,1375.5208 L 834.88507,1377.5511 L 834.70032,1378.114 L 833.98981,1379.0249 L 833.8181,1379.6057 L 830.82457,1381.3633 L 830.87784,1382.5774 L 831.816,1385.1165 L 832.07553,1385.5995 L 837.04673,1383.741 L 838.23252,1384.6033 L 838.39424,1385.0802 L 841.66577,1386.8417 L 842.1146,1386.5072 L 842.46777,1385.4972 L 842.96431,1385.8047 L 844.05444,1385.4084 L 845.3979,1387.3028 L 846.46677,1387.759 L 847.03088,1387.8895 L 847.1616,1388.872 L 848.67538,1389.4943 L 849.11244,1389.8443 L 848.59617,1390.2816 L 846.40401,1391.6836 L 846.35567,1392.2403 L 846.7568,1394.7253 L 848.6464,1396.3021 L 849.91837,1398.468 L 850.13159,1399.0691 L 849.59582,1398.9033 L 847.93931,1398.93 L 847.9221,1400.6404 L 851.15022,1401.896 L 851.70839,1402.0795 L 851.58754,1402.6458 L 850.39441,1404.5394 L 849.29631,1405.9052 L 848.16885,1409.1741 L 848.14784,1410.383 L 849.22519,1410.8409 L 850.84615,1410.4105 L 851.60602,1409.4854 L 853.87043,1409.3789 L 855.35498,1410.2458 M 811.42404,1497.3841 L 810.95826,1497.1615 L 810.52397,1496.8773 L 810.0549,1496.4922 L 807.99029,1495.4986 L 806.9051,1495.7478 L 806.33428,1495.5691 L 803.86387,1493.9235 L 803.38745,1494.147 L 802.93052,1494.4145 L 802.59215,1494.3322 L 802.08878,1493.9631 L 799.76958,1493.2782 L 799.22205,1493.1863 L 797.62095,1494.6214 L 797.09177,1494.715 L 795.35515,1493.4152 L 794.92353,1493.4802 L 794.48925,1493.4351 L 794.10495,1492.9796 L 792.99052,1492.6889 L 792.50057,1492.4463 L 790.95275,1491.9479 L 790.7723,1492.5081 L 790.69246,1494.2674 L 790.08102,1494.1662 L 787.62567,1494.239 L 784.72628,1493.1123 L 784.44929,1492.528 L 785.0873,1489.9683 L 784.52509,1490.0454 L 783.67424,1489.2589 L 782.54084,1489.2491 L 782.17856,1489.6844 L 780.68464,1490.309 L 778.44174,1490.5709 L 777.64278,1491.3698 L 776.5677,1491.5747 L 776.51722,1490.9677 L 775.81594,1485.6999 L 775.40127,1486.099 L 774.10653,1487.0942 L 772.66702,1486.3246 L 772.67019,1485.6866 L 772.4447,1483.1759 L 771.84161,1483.3207 L 768.95628,1484.2649 L 768.41786,1484.4377 L 765.53201,1486.0767 L 765.0437,1486.4456 L 763.96003,1486.9922 L 761.81709,1486.6027 L 760.75088,1486.98 L 760.41036,1486.5294 L 759.70529,1485.6733 L 757.67396,1486.3566 L 757.0333,1485.2868 L 756.9141,1484.6639 L 757.42721,1484.9055 L 757.3437,1484.2799 L 756.6328,1480.58 L 756.09438,1480.7552 L 754.51543,1481.2237 L 753.41037,1480.143 L 753.40278,1479.5004 L 751.66591,1476.9736 L 752.11715,1475.0416 L 752.03464,1474.8714 L 755.11586,1473.4952 L 755.65339,1473.3367 L 754.65134,1471.1546 L 754.30411,1470.6583 L 754.29235,1470.5025 L 753.8921,1470.136 L 753.39632,1469.1657 L 752.92851,1469.4277 L 752.4364,1469.1922 L 751.55266,1468.6132 L 751.18354,1467.5423 L 751.09712,1466.9332 L 750.74635,1464.5086 L 750.76964,1462.9835 L 750.48163,1462.499 L 748.84435,1459.6225 L 748.36641,1459.9803 L 746.26764,1460.9261 L 745.0158,1459.6238 L 744.83598,1458.4193 L 743.21237,1459.2494 L 741.42551,1459.3662 L 739.68409,1456.0506 L 739.25373,1455.5983 L 738.44363,1454.6482 L 736.63691,1454.8636 L 736.00359,1452.7604 L 735.8382,1452.223 L 735.69053,1451.693 L 734.43056,1450.8528 L 733.80746,1445.824 L 733.53792,1445.3736 L 732.74093,1443.501 L 730.86126,1443.5866 L 730.36035,1443.6468 L 730.32405,1443.1462 L 729.79397,1443.3902 L 729.07363,1442.4659 L 727.55908,1443.3167 L 725.24962,1443.3826 L 725.07529,1445.8287 L 724.63038,1446.2459 L 722.8558,1446.2144 L 722.30221,1446.4463 L 722.33522,1447.0883 L 722.39326,1447.7293 M 729.55404,1169.7587 L 731.4655,1167.5009 L 734.9585,1166.7193 L 735.52312,1166.9424 L 738.66938,1167.063 L 740.43497,1167.7327 L 742.47224,1170.9554 L 743.19301,1174.0527 L 743.5787,1174.5646 L 743.79495,1174.8215 L 743.91478,1175.6573 L 741.71896,1180.7879 L 740.31008,1181.9654 L 740.02245,1183.1968 L 739.7895,1184.4333 L 739.59349,1184.0358 L 739.15111,1185.8594 L 739.71547,1189.6621 L 739.27689,1190.0389 L 738.37986,1192.7829 L 736.88202,1192.0235 L 736.37498,1192.3581 L 736.47785,1193.5892 L 735.80834,1195.2898 L 735.28788,1198.314 L 736.68993,1201.0658 L 736.94541,1201.6439 L 737.43259,1202.1409 L 738.93232,1204.0326 L 737.22557,1207.2701 L 736.81571,1207.7236 L 736.65792,1207.8107 L 736.5348,1208.3739 L 736.23819,1209.4773 L 734.77831,1211.1079 L 734.79565,1211.1487 L 734.44593,1212.1302 L 734.03271,1212.5133 L 733.37016,1214.1233 L 730.52059,1214.9468 L 730.31209,1215.5276 L 735.14565,1216.7249 L 735.76468,1216.6598 L 737.45574,1216.0212 L 739.57881,1218.1867 L 739.37888,1219.4205 L 740.12356,1220.3524 L 740.69032,1220.5923 L 741.075,1220.6071 L 742.853,1220.5688 L 743.61033,1221.5567 L 744.21961,1221.4975 L 745.10146,1219.3865 L 746.19248,1219.0895 L 746.75634,1219.0548 L 748.38818,1219.5106 L 748.47017,1221.3825 L 749.07022,1221.5016 L 749.16867,1221.4245 L 750.36319,1219.9386 L 753.47288,1219.7372 L 754.62236,1220.2457 L 757.10796,1220.2753 L 757.69472,1220.4992 L 757.93375,1220.7639 L 758.59681,1221.392 L 759.04261,1221.2528 L 760.75986,1217.9433 L 761.1801,1217.4923 L 762.19026,1217.0199 L 762.74323,1216.9241 L 764.79632,1215.0131 L 765.23199,1214.6521 L 765.4852,1214.1679 L 764.88654,1211.8939 L 770.58559,1213.1724 L 771.09035,1213.5043 L 774.10653,1216.3199 L 774.50639,1216.7603 L 772.54846,1218.5727 L 772.69739,1219.7191 L 771.64801,1219.2847 L 770.79969,1220.846 L 768.59273,1220.239 L 768.01141,1220.2269 L 768.04393,1220.8694 L 768.29701,1222.7547 L 769.39954,1225.2819 L 769.35639,1225.8474 L 769.0179,1227.5563 L 769.31514,1228.0535 L 770.10158,1229.7404 L 771.80264,1231.5356 L 772.26387,1231.9546 L 772.16644,1232.528 L 769.01917,1233.6178 L 768.48935,1233.8907 L 766.1637,1233.9771 L 764.49642,1231.6057 L 763.31405,1231.612 L 763.10842,1232.1837 L 762.26529,1233.0627 L 761.45038,1236.1113 L 762.30654,1238.4767 L 760.14349,1239.2429 L 759.95647,1238.6344 L 759.17889,1235.5595 L 758.60883,1234.427 L 757.99082,1234.3786 L 757.47289,1235.0251 L 757.21324,1235.5343 L 756.49412,1237.0175 L 755.45536,1236.8184 L 755.05892,1237.2228 L 753.95234,1237.7086 L 752.50726,1236.4865 L 752.22027,1237.0361 L 751.97605,1240.6845 L 751.19683,1242.3262 L 750.84429,1241.8113 L 749.81389,1241.1469 L 748.62493,1241.3988 L 747.93023,1243.0136 L 747.33715,1243.1659 L 748.18508,1246.0107 L 749.26066,1246.5881 L 751.06067,1246.4124 L 751.6506,1246.5615 L 751.5891,1247.1226 L 751.19797,1248.1707 L 751.53595,1249.2156 L 752.6171,1249.6089 L 754.24097,1249.011 L 755.28238,1248.7575 L 755.8508,1249.1297 L 757.4758,1249.8897 L 757.80012,1250.4432 L 757.62107,1250.9072 L 757.03444,1251.699 L 756.64685,1252.1789 L 755.94203,1253.1961 L 755.54622,1255.6244 L 754.92352,1255.6502 L 753.16299,1255.1661 L 752.50701,1254.0777 L 752.15625,1254.4959 L 752.26304,1256.6697 L 754.17251,1258.9084 L 753.73001,1260.053 L 753.14616,1260.0913 L 751.48559,1260.506 L 749.50083,1262.6896 L 749.39884,1262.7502 L 749.03681,1263.1474 L 748.59583,1263.4483 L 747.99363,1263.6239 L 745.04718,1264.5762 L 745.3715,1266.3321 L 744.97581,1268.0846 L 743.9597,1269.5067 L 743.33233,1271.1033 L 742.86135,1270.7143 L 739.4319,1270.0392 L 738.77984,1270.6825 L 738.31431,1271.052 L 737.29555,1272.3401 L 736.76763,1272.1389 L 734.51275,1270.4542 L 734.50336,1271.0681 L 736.90796,1274.4333 L 735.84389,1275.8989 L 735.25005,1275.8909 L 734.82564,1276.131 L 734.61752,1276.5832 L 734.10845,1276.7536 L 732.67114,1279.0455 L 732.59865,1279.6187 L 732.61105,1281.8051 L 732.89272,1285.9903 L 733.71825,1287.3781 L 734.2722,1287.1899 L 735.20943,1287.8324 L 735.59145,1289.5155 L 735.24701,1289.9768 L 734.26668,1290.423 L 733.68199,1292.0257 L 733.84101,1293.189 L 734.00654,1293.7517 L 733.15275,1294.4968 L 735.47782,1298.6963 L 736.63982,1299.7466 L 736.95528,1300.1761 L 736.7241,1300.7541 L 735.96208,1301.6412 L 737.25252,1302.8109 L 736.0933,1304.1248 L 734.45425,1303.4102 L 733.2689,1303.4781 L 730.99431,1305.4903 L 730.5339,1305.3728 L 730.06094,1305.3695 L 729.48401,1305.5014 L 727.14112,1305.529 L 725.84356,1306.7795 L 724.66642,1306.6771 L 723.78923,1309.6189 L 724.46535,1310.2209 L 724.79954,1310.5261 L 727.39903,1313.0085 L 729.88186,1316.586 L 730.23576,1317.0964 L 729.21321,1317.7406 L 730.38817,1321.2491 L 728.35971,1322.3708 L 727.88785,1322.7574 L 726.51681,1325.8 L 726.18643,1326.2513 L 725.38814,1325.3885 L 723.44532,1327.7488 L 721.37548,1328.9556 L 720.24923,1328.6202 L 719.55775,1327.6868 L 719.05359,1327.3511 L 718.70503,1328.4993 L 717.32168,1329.6122 L 716.83815,1329.9554 L 716.35096,1329.5519 L 713.5293,1327.0076 L 712.32431,1324.0285 L 710.57547,1322.1851 L 709.4931,1322.2786 L 708.51572,1323.0453 L 706.04256,1322.9379 L 705.76907,1324.8212 L 706.31943,1333.0718 L 706.36638,1333.7066 L 701.7815,1335.3505 L 701.21068,1335.5626 L 700.01664,1335.8786 L 695.92125,1334.4478 L 695.34115,1334.2248 L 688.04537,1333.649 L 687.45311,1333.4958 L 685.86867,1333.1595 L 685.33954,1333.0503 L 684.49241,1327.9325 L 686.01961,1319.6388 L 686.12842,1318.9998 L 685.55417,1318.757 L 683.73598,1318.8408 L 680.27723,1316.2154 L 679.99583,1312.3688 L 679.39352,1312.3284 L 673.97706,1311.9095 L 669.13995,1309.3441 L 668.958,1308.7652 L 667.81595,1304.6728 L 667.23848,1304.415 L 663.77972,1302.8484 L 662.45372,1301.4592 L 658.3251,1299.866 L 657.79872,1299.626 L 653.47035,1298.1677 L 654.02505,1297.8777 L 655.42941,1296.702 L 655.26057,1292.8559 L 655.16689,1290.3728 L 654.19601,1289.6422 L 653.71202,1289.2744 L 653.15961,1288.9933 L 649.61051,1287.9418 L 648.2431,1288.9293 L 648.36046,1289.945 L 646.76061,1290.6523 L 646.22019,1290.3974 L 645.62927,1290.2382 L 642.6588,1289.535 L 636.70867,1290.8732 L 635.90584,1293.0689 L 635.31531,1292.8792 L 634.09744,1293.0726 L 631.99057,1294.3992 L 628.31329,1294.8422 L 619.59837,1291.6 L 618.27375,1290.3169 L 615.17076,1291.4268 L 614.6645,1291.6444 L 611.78775,1292.8626 L 605.02685,1293.958 L 604.41274,1294.058 L 604.86084,1293.633 L 607.12348,1291.5315 L 609.05731,1286.9689 L 609.2822,1286.3632 L 610.50385,1282.7047 L 609.5652,1278.2734 L 608.56327,1277.8284 L 606.69289,1278.0243 L 604.30467,1278.3521 L 597.88299,1274.3275 L 597.326,1274.0332 L 597.09187,1274.5953 L 594.56452,1279.4391 L 593.98024,1279.6565 L 582.81885,1283.6535 L 582.24926,1283.8397 L 575.97527,1285.845 M 1159.6392,1386.9929 L 1159.7929,1387.541 L 1161.0743,1386.6278 L 1162.5032,1387.3841 L 1164.1628,1387.6786 L 1165.0881,1386.9565 L 1167.8969,1387.5805 L 1169.3966,1389.582 L 1169.5554,1392.067 L 1168.7936,1394.4663 L 1167.603,1394.7121 L 1168.7678,1396.1561 L 1169.3208,1396.424 L 1170.8322,1395.3429 L 1172.5702,1394.8821 L 1175.2558,1391.3957 L 1176.4583,1391.2415 L 1177.0359,1391.3375 L 1178.4317,1390.3118 L 1180.1397,1391.7674 L 1180.501,1392.2483 L 1180.2621,1396.0607 L 1180.9445,1397.1402 L 1183.6903,1398.4846 L 1185.3195,1397.8188 L 1186.9337,1399.7245 L 1187.5085,1399.9708 L 1187.874,1399.4918 L 1190.1112,1398.8599 L 1190.1615,1398.251 L 1187.2517,1396.152 L 1187.4967,1394.9196 L 1188.022,1393.7774 L 1190.2421,1391.6752 L 1190.4569,1390.4934 L 1192.8437,1387.0643 L 1193.162,1386.5453 L 1194.9315,1386.921 L 1194.9842,1389.8422 L 1195.907,1389.2087 L 1195.8471,1387.3348 L 1198.0794,1387.5893 L 1198.6532,1387.7177 L 1199.4686,1387.2241 L 1200.1302,1384.878 L 1199.8672,1383.7239 L 1200.7625,1382.2189 L 1201.1102,1382.4273 L 1201.5021,1382.3454 L 1200.868,1380.2031 L 1202.7607,1379.0008 L 1205.0166,1378.4974 L 1206.77,1376.7244 L 1213.8819,1377.421 L 1213.8336,1378.0185 L 1213.8508,1379.8047 L 1214.9172,1381.9186 L 1218.0545,1381.8943 L 1218.4316,1382.374 L 1219.0644,1385.251 L 1218.5218,1386.3485 L 1218.1237,1387.4685 L 1215.4267,1391.3292 L 1216.1765,1393.5653 L 1218.3135,1394.39 L 1219.0182,1395.328 L 1219.3827,1395.7907 L 1219.8445,1395.3824 L 1221.516,1395.3878 L 1223.2356,1393.9114 L 1228.044,1393.5791 L 1229.8895,1391.9998 L 1230.6137,1392.9473 L 1230.4448,1393.5521 L 1230.3818,1395.4419 L 1231.0636,1397.1877 L 1232.4059,1398.017 L 1232.9351,1398.14 L 1233.4689,1398.1761 L 1235.603,1398.1528 L 1235.4457,1398.7151 L 1235.4953,1399.8672 L 1238.2017,1400.1331 L 1237.4693,1401.15 L 1237.5277,1402.9615 L 1235.9955,1404.9375 L 1235.746,1406.833 L 1236.1883,1407.1138 L 1237.5473,1407.6677 L 1238.1114,1407.4122 L 1240.236,1406.1286 L 1240.9627,1405.5512 L 1244.4183,1407.6541 L 1244.7809,1408.1342 L 1247.0906,1410.2108 L 1247.5144,1410.6727 L 1247.3712,1411.9619 L 1247.3414,1412.6435 L 1248.3641,1413.0008 L 1249.0089,1413.915 L 1249.3026,1414.4315 L 1251.403,1413.8438 L 1252.3203,1414.5591 L 1252.8847,1416.8021 L 1253.3494,1417.1566 L 1253.9248,1417.3361 L 1254.9274,1418.879 L 1255.2392,1419.3371 L 1256.2961,1419.4378 L 1257.6831,1418.7984 L 1258.9963,1419.736 L 1259.1458,1420.2939 L 1259.9746,1422.9807 L 1260.2649,1423.4811 L 1261.3331,1424.8076 L 1261.6228,1426.9587 L 1261.5848,1427.5366 L 1261.4971,1428.0296 L 1265.3182,1435.0505 L 1265.2024,1436.8563 L 1262.3112,1442.538 L 1259.7252,1445.2256 L 1259.8128,1446.5102 L 1259.8002,1447.1542 L 1256.3417,1446.6437 L 1253.4327,1447.2076 L 1251.9602,1446.1718 L 1250.8465,1446.2874 L 1250.2983,1446.5277 L 1250.242,1446.6002 L 1251.3586,1446.6443 L 1254.2484,1449.749 L 1254.5481,1450.2871 L 1253.8136,1452.2694 M 1146.8604,1516.9889 L 1143.2299,1514.1615 L 1139.7552,1508.9293 L 1138.7039,1508.4471 L 1137.5385,1508.4978 L 1136.1611,1509.6474 L 1134.3978,1509.7609 L 1132.7939,1508.9988 L 1132.8573,1507.7604 L 1132.1745,1506.7819 L 1129.2984,1506.5574 L 1128.7639,1507.6527 L 1127.0876,1507.3938 L 1126.585,1507.0713 L 1126.1029,1506.7149 L 1125.162,1505.9922 L 1123.995,1506.1564 L 1121.1315,1503.0274 L 1118.8169,1502.6849 L 1115.6604,1503.4709 L 1115.7852,1502.8639 L 1114.9792,1501.8937 L 1114.8639,1499.9667 L 1115.0494,1499.3521 L 1114.8135,1495.7724 L 1113.6562,1495.8015 L 1113.0796,1495.8622 L 1109.4189,1496.991 L 1108.8809,1497.095 L 1107.4305,1497.1898 L 1106.9237,1496.8783 L 1104.2892,1494.606 L 1103.9246,1495.0764 L 1102.9904,1495.7101 L 1100.9578,1494.5738 L 1100.4459,1494.2676 L 1099.7172,1493.2961 L 1100.4829,1491.7306 L 1100.2709,1489.9097 L 1100.0826,1489.3874 L 1100.3228,1488.8895 L 1100.2115,1488.3069 L 1100.0458,1487.198 L 1098.0927,1486.0384 L 1097.8761,1484.5608 L 1097.6998,1484.0813 L 1096.1307,1485.4246 L 1095.9857,1485.938 L 1097.7505,1489.0532 L 1098.2776,1492.1286 L 1097.6183,1493.8789 L 1094.7643,1494.6906 L 1094.2514,1495.0453 L 1091.2442,1494.9942 L 1089.7191,1495.8637 L 1091.0473,1497.7948 L 1090.1709,1498.5764 L 1089.6705,1498.9446 L 1089.1767,1499.3193 L 1087.3301,1501.6268 L 1087.2767,1503.4423 L 1087.2967,1504.0505 L 1087.3119,1504.1245 L 1086.8175,1505.4789 L 1086.4147,1505.7329 L 1085.566,1506.4657 L 1085.4649,1507.0517 L 1084.9615,1507.1951 L 1082.9386,1507.6797 L 1082.6284,1507.1687 L 1081.451,1505.8541 L 1081.0892,1505.3658 L 1078.5367,1503.8471 L 1077.421,1504.1948 L 1076.9487,1504.0444 L 1076.6672,1503.6159 L 1076.3297,1502.5182 L 1076.9895,1500.7911 L 1076.1848,1497.8522 L 1076.3851,1497.3273 L 1074.7453,1495.17 L 1074.4646,1496.3453 L 1073.4097,1496.8876 L 1073.1111,1498.6989 L 1071.1985,1500.0461 L 1071.1355,1500.662 L 1069.6857,1500.439 L 1069.1954,1500.3811 L 1068.6685,1500.1899 L 1067.5852,1500.1199 L 1066.7534,1501.6416 L 1065.7833,1502.2213 L 1065.8957,1501.6285 L 1063.7865,1499.6948 L 1063.7559,1499.1164 L 1063.6012,1496.8462 L 1063.1874,1496.715 L 1062.6272,1496.087 L 1062.4981,1495.4622 L 1061.555,1493.1747 L 1058.0114,1492.5244 L 1057.5012,1492.822 L 1056.0567,1491.1039 L 1056.7933,1489.4183 L 1057.9739,1487.2392 L 1057.6141,1485.3992 L 1058.2051,1482.9571 L 1059.3753,1481.5325 L 1059.7197,1481.0438 L 1060.2823,1481.182 L 1061.9789,1481.1531 L 1062.6638,1480.1512 L 1062.7594,1478.9469 L 1061.5916,1478.7722 L 1059.8163,1477.2049 L 1059.3083,1476.8896 M 480.21127,536.56162 L 479.09047,537.60416 L 478.78276,538.12934 L 477.27291,539.0529 L 476.65126,540.72939 L 476.08967,540.71991 L 474.88485,538.91728 L 475.56488,536.68449 L 473.95796,535.59161 L 471.36553,535.9683 L 469.6229,535.29353 L 465.75516,531.32783 L 465.62298,530.57595 L 464.87745,528.99536 M 844.40799,868.77127 L 846.56294,867.61083 L 850.02517,867.14142 L 850.62547,867.2672 L 852.32488,867.4292 L 854.03024,870.52572 L 854.50046,870.89263 L 856.24669,870.27299 L 858.59551,867.3412 L 858.97069,866.14982 L 862.03533,866.89443 L 862.65714,867.01726 L 862.59286,865.48307 L 862.38281,865.01433 L 861.17284,862.76882 L 861.72544,860.96754 L 859.32247,858.99909 L 862.30688,856.65969 L 862.46923,852.84927 L 863.44687,851.20885 L 864.04337,850.95871 L 863.74411,850.43218 L 863.31907,849.34352 L 864.41148,844.73267 L 864.36959,844.71691 L 865.45934,839.66873 L 865.71887,833.93663 L 865.91475,833.32131 L 866.39396,833.05186 L 866.86126,832.76285 L 868.5217,831.92806 L 869.14098,830.2562 L 868.76074,828.46057 L 868.75909,827.8452 L 867.7192,826.33171 L 868.31102,823.37682 L 870.06117,822.63302 L 870.9992,819.82914 L 874.55051,817.5736 L 875.13019,817.37872 L 875.44729,817.83126 L 875.80198,818.25689 L 881.54937,815.52775 L 883.44618,815.18727 L 884.0895,815.22067 L 885.22924,816.49578 L 885.60518,816.92638 L 886.83969,817.6623 L 887.33762,817.55154 L 889.09638,818.17004 L 890.24902,819.60842 L 890.56284,820.13878 L 892.08599,819.07787 L 892.68464,818.91664 L 896.11409,815.26371 L 895.66361,813.50755 L 897.76669,811.23048 L 898.2531,810.11349 L 898.35142,809.51165 L 900.68049,809.21484 L 901.19968,807.38682 L 900.56623,805.60486 L 901.35241,803.9001 L 902.51024,803.58754 L 904.13386,804.35351 L 905.69788,803.30409 L 906.1829,802.88843 L 907.29606,800.57631 L 907.24203,798.66186 L 907.20558,798.0223 L 906.96643,797.43967 L 905.57906,794.61502 L 904.64799,790.98577 L 902.51265,788.66973 L 903.79284,787.20742 L 905.70091,787.26594 L 910.32805,784.89336 L 910.88672,784.56097 L 912.59917,783.30693 L 913.00612,782.96492 L 914.10966,781.36123 L 914.47599,780.81739 L 918.51814,779.01966 L 920.39673,779.0122 L 921.03196,779.03328 L 922.87866,779.29644 L 923.79328,780.09289 L 924.89012,779.83624 L 927.81797,782.03351 L 927.99791,782.62906 L 928.80523,781.8345 L 928.58682,780.61598 L 927.86353,778.87446 L 927.8324,776.54996 L 927.47746,776.02892 L 932.42854,774.91678 L 935.5586,775.5649 L 936.20091,775.59839 L 936.23178,772.54138 L 937.44491,772.43145 L 938.06811,772.35665 L 938.63045,772.04225 L 939.60492,772.86752 L 940.84285,772.53734 L 943.35983,773.07635 L 943.57115,774.83978 L 945.41355,775.38019 L 949.80824,774.43114 L 951.39225,772.62545 L 951.75592,772.1011 L 955.6623,777.02991 L 956.08722,777.49729 L 958.92383,779.98073 L 959.38481,780.41015 L 960.63818,780.40801 L 961.59481,779.78452 L 961.88003,779.23311 L 963.86593,780.26286 L 964.25807,780.66497 L 966.77594,782.39102 L 967.35384,782.61937 L 967.32954,783.26771 L 967.14632,786.44909 L 967.75345,790.25054 L 967.15846,790.39558 L 965.39224,790.91022 L 964.16949,792.26391 L 963.8062,792.86679 L 963.65144,794.15929 L 959.17628,798.81286 L 959.60904,798.93155 L 960.00422,799.14432 L 961.87952,800.63017 L 963.09429,800.75047 L 963.60728,800.41128 L 966.0081,800.54207 L 967.92503,801.97285 L 968.31477,802.42947 L 972.38097,804.01934 L 972.91977,804.34364 L 973.53209,803.56677 L 974.14327,803.74908 L 975.87103,802.95498 L 977.62574,803.7008 L 979.76994,802.43946 L 980.57979,801.68538 L 981.04848,801.38842 L 983.05134,800.01496 L 984.53678,800.5905 L 986.73273,799.74664 L 987.29367,799.50074 L 987.70492,801.2692 L 987.74605,801.89255 L 988.93032,802.37622 L 988.28093,804.14255 L 988.54767,805.31445 L 991.03542,805.08234 L 991.66445,803.54166 L 994.13233,803.6427 L 994.49929,804.16127 L 993.84952,805.15728 L 994.75515,808.07424 L 994.46032,809.8998 L 992.96805,810.97132 L 992.58792,812.14741 L 991.43415,814.39915 L 991.69127,814.98055 L 994.48335,815.73522 L 995.89349,817.61569 L 998.00998,818.74715 L 998.22497,819.31735 L 999.64359,819.99879 L 999.97626,820.45533 L 1001.1679,822.686 L 1001.4906,823.2395 L 1001.0241,823.57647 L 999.71471,824.64977 L 999.68649,826.28027 L 999.33699,826.75007 L 998.7315,827.75243 L 999.10251,829.39155 L 998.4187,830.29035 L 998.01264,830.6536 L 996.60072,831.06133 L 996.66171,834.79087 L 1001.1376,838.273 L 1001.6769,838.60542 L 1005.893,837.84731 L 1006.9475,838.3943 L 1007.3259,838.87879 L 1007.0947,839.46667 L 1005.4421,842.86971 L 1003.6869,844.69552 L 1003.0276,844.63807 L 999.13946,846.76195 L 999.41076,849.63867 L 997.56456,852.34936 L 996.93111,852.41561 L 996.48456,852.81529 L 994.1465,852.68196 L 993.79093,853.38908 L 996.7742,857.50006 L 1000.471,860.00711 L 1000.9034,860.48147 L 1001.1025,861.0847 L 1002.4081,863.22642 L 999.65017,867.35432 L 996.58984,868.04534 L 996.03775,869.81756 L 997.11092,871.29142 L 999.10796,872.41512 L 999.26398,873.57476 L 998.73808,875.3122 L 999.36736,875.41717 L 1000.4781,876.0357 L 1001.6468,875.55022 L 1002.8756,875.83633 L 1004.0092,876.41258 L 1005.5798,878.40579 L 1007.3865,879.02341 L 1007.2091,879.6344 L 1005.0877,882.65193 L 1005.3967,883.88186 L 1006.9125,885.02989 L 1008.8171,887.22211 L 1009.9802,886.94489 L 1010.4918,888.03142 L 1011.6887,888.1706 L 1010.655,891.16049 L 1011.4251,892.94252 L 1011.1603,893.52549 L 1011.078,895.4079 L 1010.5883,895.82347 L 1009.9871,895.83949 L 1008.8667,897.89192 L 1008.9722,898.50211 L 1009.693,902.12033 L 1007.7984,903.67779 L 1007.9829,904.27939 L 1010.6794,909.2311 L 1010.8426,911.73334 L 1010.8834,912.34861 L 1011.7556,913.1762 L 1012.3536,913.02208 L 1012.7238,915.22289 L 1013.505,916.087 L 1013.4212,917.25697 L 1013.0463,917.71008 L 1013.0464,917.79236 L 1012.797,918.39499 L 1012.1629,919.5347 L 1006.8762,921.90176 L 1007.3636,926.12769 L 1008.9486,928.05085 M 1380.1208,1039.7332 L 1381.1193,1042.4407 L 1381.6849,1042.2436 L 1381.5699,1040.4516 L 1382.6752,1040.0548 L 1384.9944,1041.0831 L 1385.578,1041.3446 L 1387.3057,1041.5915 L 1389.1882,1043.1006 L 1389.7399,1043.3891 L 1390.7283,1045.0733 L 1391.0348,1045.6509 L 1391.1352,1046.8416 L 1392.0754,1047.4558 L 1392.6648,1047.4066 L 1395.7193,1047.8786 L 1397.2268,1046.7164 L 1397.7265,1046.3184 L 1399.1754,1045.3437 L 1399.678,1045.0498 L 1400.6255,1044.4284 L 1401.1044,1044.1238 L 1402.5517,1041.4503 L 1403.8765,1040.1636 L 1404.1065,1039.5862 L 1404.155,1038.9377 L 1405.6091,1033.3783 L 1407.079,1031.5246 L 1409.1523,1030.3331 L 1409.6602,1029.233 L 1409.7903,1028.6404 L 1410.1997,1027.823 L 1410.4712,1027.4564 L 1412.2439,1027.0409 L 1414.7611,1028.9517 L 1415.1664,1029.4419 L 1415.5438,1029.8945 L 1418.5009,1031.779 L 1419.789,1032.874 L 1420.0116,1033.3947 L 1420.2153,1034.6591 L 1421.7771,1035.7864 L 1422.2063,1036.2728 L 1422.457,1036.7357 L 1422.5193,1037.354 L 1420.8233,1037.8431 L 1420.7968,1040.8765 L 1422.4706,1042.6508 L 1422.9016,1043.0845 L 1423.5662,1044.1666 L 1423.9051,1044.7056 L 1424.3356,1045.0635 L 1425.5908,1046.1479 L 1428.5765,1050.7242 L 1429.9179,1051.9445 L 1430.3671,1052.3514 L 1432.4039,1054.3627 L 1432.8173,1054.7649 L 1433.7074,1057.115 L 1434.0523,1057.6397 L 1436.3646,1057.982 L 1436.8496,1058.2919 L 1437.2626,1058.6943 L 1437.3373,1059.906 L 1439.9092,1061.5197 L 1439.9962,1062.737 L 1438.9229,1063.2258 L 1437.7616,1061.0749 L 1436.6031,1060.8521 L 1436.5794,1063.2915 L 1436.9675,1063.7868 L 1437.1496,1065.3142 L 1437.5955,1065.662 L 1438.5909,1065.2029 L 1439.1212,1065.3912 L 1440.6463,1066.3342 L 1440.5779,1066.934 L 1440.9544,1067.4272 L 1443.5005,1069.1348 L 1443.8157,1072.1401 L 1445.1413,1074.1081 L 1446.002,1075.7631 L 1446.2595,1076.329 L 1446.113,1076.9288 L 1446.3034,1078.1373 L 1448.0206,1080.6524 L 1448.3164,1081.1096 L 1449.0635,1081.8776 L 1449.1907,1082.9583 L 1452.2573,1085.8285 L 1452.2666,1087.0441 L 1452.769,1087.3936 L 1452.5322,1087.9021 L 1453.5137,1089.4759 L 1452.971,1089.4278 L 1452.5357,1089.0961 L 1452.3802,1089.7135 L 1453.0159,1091.3761 L 1454.7834,1091.9433 L 1454.9239,1092.4978 L 1454.8015,1093.0557 L 1455.3627,1093.3929 L 1455.7112,1093.5876 L 1456.0422,1093.8095 L 1457.4384,1096.9349 L 1457.6768,1097.5036 L 1458.357,1099.539 L 1458.407,1100.0798 L 1460.1799,1101.6955 L 1460.5314,1102.1902 L 1459.9826,1105.6902 L 1460.8599,1107.8596 L 1460.9688,1108.459 L 1462.6292,1108.9176 L 1463.2058,1108.945 L 1463.5891,1108.6818 L 1463.9305,1108.1602 L 1466.3441,1107.8147 L 1468.1021,1108.3709 L 1470.0002,1110.6892 L 1472.3302,1111.4745 L 1472.9444,1111.6375 L 1473.0255,1111.6328 L 1479.6279,1114.8954 L 1480.0791,1117.2992 L 1480.5139,1117.5251 L 1482.6158,1116.3755 L 1484.1198,1113.4924 L 1483.752,1112.782 L 1482.6663,1113.4711 L 1481.6619,1113.0672 L 1481.8347,1109.8457 L 1481.7808,1109.4233 L 1482.8787,1108.8317 L 1483.8223,1107.2089 L 1484.4113,1103.463 L 1483.4011,1101.9372 L 1483.1617,1101.3516 L 1483.2198,1101.3211 L 1490.2027,1098.6167 L 1491.2697,1099.2747 L 1492.6313,1101.3894 L 1495.0139,1102.1662 L 1494.9685,1104.0317 L 1495.3081,1104.5733 L 1495.0826,1105.0039 L 1494.8571,1105.4363 L 1499.5862,1108.1031 L 1500.1008,1108.4178 L 1500.7571,1107.8811 L 1502.3589,1107.2748 L 1503.5226,1107.4217 L 1504.6979,1107.4573 L 1505.2613,1107.2839 L 1505.8006,1107.59 L 1505.839,1108.8405 L 1505.8305,1109.4691 L 1506.3656,1109.4144 L 1506.848,1109.1728 L 1509.2222,1108.3303 L 1510.34,1108.9254 L 1512.3488,1112.9017 L 1516.0736,1116.4103 L 1517.9482,1121.1816 L 1516.021,1122.7294 L 1515.384,1122.7306 L 1516.224,1123.5202 L 1517.9954,1123.7618 L 1518.5159,1124.0646 L 1518.0944,1126.3758 L 1517.6358,1127.5718 L 1517.3114,1128.0695 L 1517.2105,1130.3361 L 1516.6117,1130.3637 L 1513.8369,1131.3671 L 1513.2153,1132.9553 L 1511.7439,1133.8411 L 1511.8906,1134.4611 L 1510.5873,1135.8312 L 1510.7699,1138.9581 L 1511.6133,1140.6073 L 1509.7771,1143.8108 L 1509.9607,1144.4278 L 1510.1704,1146.3437 L 1511.5698,1147.6465 L 1511.5471,1149.5196 L 1513.9933,1151.4774 L 1514.3602,1154.0272 L 1514.1915,1155.2343 L 1512.3868,1158.4914 L 1512.4637,1159.7256 L 1512.0666,1160.2181 L 1514.2656,1160.8495 L 1514.7102,1160.4747 L 1515.2599,1160.2962 L 1516.7743,1158.3343 L 1520.1672,1159.8357 L 1521.9709,1162.4072 L 1524.8558,1161.2985 L 1526.0423,1161.476 L 1527.3537,1162.8508 L 1527.1971,1164.0749 L 1526.8434,1165.2854 M 1336.456,1121.6086 L 1336.585,1120.5509 L 1336.5098,1119.9396 L 1336.8169,1118.1256 L 1336.3103,1115.7361 L 1336.0021,1115.2887 L 1335.0375,1113.9845 L 1334.8296,1111.598 L 1336.5439,1109.8327 L 1336.9557,1109.3701 L 1336.9561,1108.2918 L 1336.7909,1107.7633 L 1336.3968,1106.7271 L 1336.3592,1106.3638 L 1336.3216,1106.0005 L 1336.574,1105.1442 M 1468.7492,1242.1075 L 1468.1631,1242.3296 L 1465.3545,1243.6217 L 1462.9101,1243.9035 L 1460.5107,1241.0303 L 1458.1778,1240.5362 L 1456.4227,1237.9892 L 1455.8234,1238.8765 L 1454.7981,1239.2116 L 1451.8594,1238.8341 L 1450.9301,1239.4406 L 1449.2155,1238.9396 L 1449.0693,1238.487 L 1448.8207,1237.5727 L 1448.3013,1237.3771 L 1446.9327,1235.1548 L 1446.6291,1234.1342 L 1446.5851,1233.6006 L 1446.087,1233.4653 L 1444.2286,1233.1306 L 1441.5028,1231.6197 L 1440.9832,1229.1068 L 1440.4596,1228.7668 L 1436.8831,1226.2795 L 1436.3236,1227.0824 L 1437.378,1229.3607 L 1437.0886,1230.4877 L 1428.2683,1227.6164 L 1427.8145,1226.5358 L 1426.0493,1226.1785 L 1425.5664,1225.0611 L 1427.4528,1223.6089 L 1428.6743,1220.841 L 1428.1213,1220.904 L 1426.0205,1220.3088 L 1426.0856,1219.6613 L 1427.4288,1212.6442 L 1426.8623,1210.7789 L 1428.1331,1207.1056 L 1428.5218,1202.5631 L 1428.4544,1201.948 L 1427.7766,1194.5629 L 1427.9685,1193.9632 L 1429.1278,1190.3742 L 1429.7228,1189.322 L 1428.1265,1186.0906 L 1428.528,1184.3158 L 1427.97,1184.0871 L 1427.7849,1182.369 L 1426.2019,1180.5196 L 1426.1885,1179.877 L 1427.5367,1175.6286 L 1428.648,1175.1259 L 1429.8664,1175.3768 L 1428.8802,1173.7113 L 1427.2754,1172.6843 L 1426.0394,1172.5859 L 1425.2222,1173.5487 L 1424.9513,1174.025 L 1423.9978,1175.3544 L 1423.7583,1175.939 L 1422.0484,1178.5154 L 1420.8428,1178.7747 L 1418.9164,1180.2778 L 1417.1676,1179.915 L 1416.1014,1178.409 L 1416.0251,1179.5287 L 1417.6017,1181.4731 L 1417.0479,1181.6717 L 1415.9338,1181.9039 L 1414.1252,1180.446 L 1411.9157,1179.8947 L 1411.3433,1179.8162 L 1410.43,1177.1662 L 1409.5138,1177.5123 L 1408.965,1177.7495 L 1407.9608,1178.3934 L 1407.8853,1178.9995 L 1407.3715,1179.029 L 1406.0273,1178.3545 L 1406.1654,1177.7936 L 1404.2332,1176.7988 L 1404.0057,1177.3481 L 1402.3135,1177.5695 L 1402.1622,1178.1465 L 1401.8048,1178.4241 L 1401.0332,1178.2119 L 1400.8859,1177.6219 L 1398.5291,1177.3775 L 1398.273,1176.2351 L 1397.6833,1176.0974 L 1396.6547,1175.4694 L 1396.1192,1174.3628 L 1395.9774,1174.0564 L 1395.6978,1173.8695 L 1395.1719,1173.7413 L 1394.2023,1173.2537 L 1393.628,1173.0824 L 1390.1229,1173.1791 L 1388.9493,1175.916 L 1387.9117,1176.4917 L 1387.3377,1176.3601 L 1385.8293,1174.5337 L 1384.8364,1175.174 L 1384.3567,1174.8272 L 1384.467,1174.237 L 1387.0817,1173.3436 L 1387.9442,1170.483 L 1388.4832,1170.1539 L 1390.9811,1166.5144 L 1391.0574,1166.0021 L 1391.0661,1164.9784 L 1391.2716,1162.4971 L 1390.672,1161.39 L 1391.5272,1159.7411 L 1391.2929,1158.4993 L 1391.1261,1157.889 L 1389.5758,1155.3311 L 1388.8151,1152.9243 L 1388.6489,1152.3404 L 1388.5169,1150.054 L 1388.9555,1149.6322 L 1390.447,1148.698 L 1392.857,1148.7248 L 1392.5951,1148.1603 L 1391.5453,1147.5417 L 1389.6717,1143.0557 L 1387.9,1143.3625 L 1386.7054,1141.61 L 1385.1835,1143.632 L 1382.7933,1143.5978 L 1383.8608,1136.6041 L 1384.8943,1134.2711 L 1384.4606,1133.9343 L 1383.8475,1134.0224 L 1382.6421,1134.1088 L 1382.0553,1135.2086 L 1380.9861,1135.8417 L 1378.5348,1136.1324 L 1376.8742,1136.9424 L 1376.6409,1136.6874 L 1376.2552,1136.2208 L 1375.9225,1134.4248 L 1375.7281,1133.8779 L 1374.8112,1131.1276 L 1374.4779,1130.5808 L 1371.4957,1130.3081 L 1370.9698,1130.4873 L 1369.9449,1130.091 L 1369.7112,1129.5051 L 1368.5528,1125.896 L 1367.9284,1125.9255 L 1366.1131,1125.6801 L 1364.5797,1126.6794 L 1364.0334,1126.9866 L 1361.9848,1128.2467 L 1360.7706,1128.3915 L 1360.2336,1128.5231 L 1358.243,1129.4618 L 1357.8709,1129.8871 L 1355.0651,1131.7555 L 1354.3301,1132.6774 L 1351.7755,1134.145 L 1349.4404,1133.8905 L 1349.4878,1133.255 L 1349.4649,1131.9819 L 1348.9027,1132.1561 L 1343.1904,1133.4757 L 1342.0819,1134.1002 M 1432.9475,767.095 L 1433.3999,766.88254 L 1434.8418,770.37126 L 1437.6949,771.69267 L 1437.5866,773.52905 L 1439.3151,773.42104 L 1439.4297,774.52059 L 1439.8975,774.89847 L 1439.897,775.99008 L 1440.8201,776.48031 L 1441.2042,776.0629 L 1443.4232,775.06324 L 1444.623,775.34632 L 1446.2073,776.26761 L 1447.9925,775.88022 L 1448.6083,775.87277 L 1449.1734,775.37752 L 1449.9217,774.74829 L 1450.008,774.25957 L 1451.7782,773.68598 L 1452.9544,772.29944 L 1453.816,772.58744 L 1453.8932,773.0466 L 1454.8559,772.92745 L 1455.6011,773.72773 L 1455.7485,774.26085 L 1456.1231,774.77225 L 1458.3085,778.56453 L 1458.236,779.19047 L 1457.6844,779.56231 L 1458.7891,781.49781 L 1458.5309,782.01047 L 1458.8704,782.77904 L 1459.3269,782.92523 L 1460.849,785.35132 L 1460.6756,785.91368 L 1462.9572,785.16317 L 1463.3911,786.20274 L 1463.1461,786.75208 L 1463.6774,787.21126 L 1465.3908,787.36074 L 1466.1715,787.99695 L 1466.6902,788.24679 L 1466.7889,790.98459 L 1466.6778,791.53144 L 1467.6995,790.79828 L 1469.5171,791.40601 L 1470.0153,791.80813 L 1469.8914,793.63718 L 1470.4244,794.71272 L 1470.2925,795.31131 L 1471.5551,796.64916 L 1472.1162,796.90609 L 1470.6644,798.07269 L 1469.2664,800.87709 L 1469.1636,801.49509 L 1468.7995,802.51175 L 1467.499,803.48957 L 1467.3238,804.01699 L 1466.9887,805.17149 L 1465.7863,804.89399 L 1464.8421,805.67988 L 1464.792,806.8502 L 1465.6304,808.48047 L 1465.8571,809.05016 L 1466.3766,812.10928 L 1466.6296,812.68178 L 1463.856,814.2912 L 1461.959,812.58432 L 1460.7571,812.80933 L 1460.9231,814.00535 L 1462.3552,815.28699 L 1462.2039,816.52872 L 1461.1816,817.26874 L 1461.7723,819.07417 L 1462.1753,819.57067 L 1463.5743,820.22368 L 1464.0611,820.44228 L 1464.7577,819.49416 L 1467.057,818.92992 L 1467.534,818.58359 L 1468.4649,816.91307 L 1468.1989,815.02745 L 1468.6062,814.52973 L 1469.2322,814.36106 L 1469.8478,814.16394 L 1470.4519,814.33364 L 1470.7431,815.54032 L 1470.5489,817.97402 L 1470.5911,818.59342 L 1470.7588,819.68272 L 1473.0657,820.28959 L 1473.5557,819.91774 L 1473.5619,820.55025 L 1473.7075,821.16781 L 1474.1314,820.89155 L 1474.5033,821.65564 L 1474.504,822.15795 L 1475.943,821.20717 L 1478.2995,821.66101 L 1478.8849,821.79251 L 1479.2545,823.00317 L 1480.4238,823.35996 L 1482.6792,822.41541 L 1483.4113,820.08506 L 1483.9449,820.07617 L 1482.9526,824.43679 L 1483.1153,825.06188 L 1484.3539,826.18645 L 1486.1379,825.70411 L 1486.9259,824.76488 L 1487.4152,826.16892 L 1487.9925,826.18036 L 1489.897,826.33151 L 1489.9375,826.96086 L 1489.9229,827.09195 L 1490.476,827.12056 L 1490.7313,827.60658 L 1490.9869,829.01328 L 1491.3131,829.40377 L 1488.7508,831.6995 L 1488.3723,832.14339 L 1488.9091,832.40982 L 1489.5033,832.33486 L 1492.4492,834.45132 L 1493.5202,834.88608 L 1493.1694,835.33602 L 1491.8306,837.17667 L 1491.5557,837.71907 L 1491.5864,839.51244 L 1493.7912,841.60017 L 1494.9378,841.82466 L 1495.1768,842.39242 L 1495.098,845.93322 L 1496.1757,846.54651 L 1497.6874,845.68296 L 1497.9535,846.2389 L 1497.7332,846.75092 L 1497.5165,848.26914 L 1496.9933,848.96948 L 1497.3405,849.84379 L 1499.6878,850.36847 L 1499.8309,850.95496 L 1502.4579,848.57984 L 1502.9855,848.9043 L 1504.4724,849.90843 L 1505.0767,851.50183 L 1505.6736,851.55976 L 1506.2235,851.21196 L 1506.8663,851.10595 L 1507.228,851.01591 L 1508.2106,852.67529 L 1512.6069,855.35669 L 1513.1348,855.7297 L 1512.7047,856.37608 L 1513.3154,856.51752 L 1514.5962,858.59721 L 1516.9949,860.3426 L 1518.6294,862.96389 L 1519.3236,863.81979 L 1519.6003,864.29602 L 1520.0103,865.4578 L 1517.1115,867.59785 L 1516.7739,869.40164 L 1516.6727,870.00951 L 1515.1525,870.98665 L 1514.6442,871.31108 L 1514.0811,871.57062 L 1513.5167,871.82502 L 1513.1385,872.20208 L 1511.2686,873.22386 L 1510.4604,874.0004 L 1510.4006,874.03872 L 1509.9554,874.46704 L 1508.1645,876.1718 L 1507.709,876.30653 L 1506.9805,876.91418 L 1506.4953,877.35556 L 1504.7686,878.29949 L 1502.9461,879.96919 L 1506.826,886.61703 L 1506.383,887.80496 L 1504.7566,888.8361 L 1504.2131,889.19408 L 1501.7911,890.92098 L 1501.3563,891.332 L 1501.4758,891.8812 L 1501.7787,893.40431 L 1500.6735,893.51524 L 1500.0166,894.46436 L 1504.4829,898.61402 L 1504.8894,899.06822 L 1510.4595,904.36728 L 1512.1798,902.86945 M 1017.9852,709.16211 L 1017.3204,709.21722 L 1012.6753,711.63565 L 1007.4929,712.80727 L 1005.1899,715.04482 L 1002.8462,716.1168 L 1003.0867,716.72148 L 1003.8753,718.49754 L 1003.5574,720.98071 L 1004.3407,722.01465 L 1012.2358,722.40394 L 1012.7159,722.85214 L 1014.8583,727.55151 L 1012.5254,733.49856 L 1013.1901,733.44639 L 1015.4819,732.12023 L 1017.4516,731.95305 L 1018.4752,732.60976 L 1019.0647,732.79825 L 1018.4736,733.9208 L 1017.8595,736.96638 L 1018.7175,738.6118 L 1017.9141,740.25298 L 1018.933,741.82109 L 1018.553,746.86359 L 1018.1342,747.1995 L 1016.8697,748.19799 L 1016.2107,748.19726 L 1013.6359,748.4611 L 1011.5363,743.04449 L 1005.0129,748.41814 L 1002.267,745.64532 L 1002.3477,746.29652 L 1002.5107,747.59891 L 1000.7173,751.1079 L 1000.0006,755.64521 L 1000.6066,755.49058 L 1001.8102,755.14658 L 1002.2254,755.60605 L 1003.749,759.5566 L 1002.824,761.74865 L 1003.9789,762.17163 L 1004.8003,763.88696 L 1006.4431,764.86999 L 1007.6016,767.8235 L 1007.1308,768.25064 L 1005.421,769.06229 L 1004.532,771.30199 L 1003.9588,771.48772 L 1002.1746,771.67038 L 1001.7784,771.20248 L 1000.868,770.47451 L 999.63701,770.53428 L 998.97433,770.51493 L 995.1721,771.45034 L 990.81955,774.24172 L 990.27961,773.89673 L 989.0394,773.6385 L 987.28722,774.12619 L 984.67331,772.29352 L 984.65648,772.26892 L 984.10136,771.94885 L 980.29634,769.67881 L 977.9736,772.69124 L 977.93298,774.47146 L 974.49277,776.12844 L 974.24007,776.66285 L 974.56971,777.59875 L 976.26773,778.14227 L 976.61179,778.69649 L 977.04126,779.89844 L 976.1155,782.32994 L 975.8027,782.87945 L 971.94175,784.85548 L 969.12677,782.39459 L 967.35384,782.61937 M 902.51265,788.66973 L 902.1467,787.75797 L 901.92652,787.27049 L 899.7107,783.04757 L 899.49116,782.48939 L 899.3526,781.87587 L 897.61775,778.65572 L 895.97553,775.92001 L 894.70483,775.6754 L 891.81937,772.30065 L 891.96337,771.83801 L 892.00791,770.85026 L 891.8715,770.3074 L 889.43741,768.92792 L 888.93353,769.0304 L 888.47179,769.25404 L 888.41864,769.86846 L 886.13563,770.71186 L 884.26223,770.62047 L 883.21145,769.94618 L 883.11604,770.50202 L 881.68438,772.94644 L 877.78193,768.86015 L 874.85927,768.15444 L 874.58885,767.56795 L 873.18086,762.64406 L 874.6301,762.17744 L 874.74779,761.57182 L 875.82931,758.6991 L 876.66763,757.79133 L 874.70248,755.58219 L 874.76791,754.53318 L 876.17362,752.92898 L 876.59702,752.56388 L 876.57589,751.33522 L 875.5265,749.85407 L 875.16334,747.9956 L 871.93483,744.14641 L 875.69885,744.22647 L 877.86949,741.2191 L 878.05323,740.62244 L 877.48267,740.41223 L 875.46146,737.51941 L 874.80751,737.66597 L 872.20018,738.26908 L 873.03913,736.68473 L 872.60232,736.25226 L 871.50042,733.44304 L 871.33592,732.82869 L 869.89073,730.73903 L 869.88642,727.72683 L 866.87493,725.51276 L 867.19495,724.54537 L 867.45802,723.9948 L 870.68969,720.35876 L 870.92075,718.03716 L 870.43674,718.26686 L 869.22425,719.19081 L 869.03558,718.56866 L 868.75719,717.29828 L 865.39734,711.71739 L 864.83563,711.44535 L 863.61782,711.59356 L 862.76306,712.4894 L 861.64838,715.85894 L 861.22738,715.93339 L 860.80006,715.93063 L 860.61987,715.34139 L 859.61604,714.6146 L 859.26755,712.20705 L 860.13776,709.33653 L 859.53847,709.24457 L 857.73302,709.0217 L 856.78145,707.59183 L 856.23278,707.88415 L 855.05837,708.21688 L 853.24899,707.80074 L 852.64844,707.73717 L 851.00331,707.00928 L 850.64382,707.51081 L 849.03981,710.07936 L 847.92741,710.63556 L 848.41674,712.31965 L 844.04179,712.99275 L 843.1631,710.79959 L 842.5437,710.64122 L 842.29404,708.77874 L 843.3791,708.11877 L 843.75214,706.93401 L 841.52544,704.75081 L 843.53095,699.54976 L 843.71646,698.94754 L 843.41213,698.45958 L 844.39901,697.18299 L 844.13277,696.66143 L 841.47369,698.02647 L 841.04852,698.3453 L 840.19375,698.93025 L 839.58244,698.96489 L 837.35966,697.96374 L 836.19677,698.47938 L 834.2463,698.21732 L 827.72577,695.52676 L 827.34058,695.97535 L 825.67154,696.54011 L 824.75249,698.03763 L 824.14105,697.82625 L 820.02336,694.89316 L 819.74738,695.46151 L 817.42704,697.60407 L 816.7908,697.56967 L 816.32084,696.66809 L 817.13537,694.99102 L 815.46733,693.22622 L 814.20448,693.24304 L 812.38751,695.76928 M 1127.3522,1123.676 L 1130.8067,1124.2292 L 1131.8394,1123.6541 L 1132.8062,1124.3339 L 1133.3946,1124.2693 L 1137.1748,1124.0532 L 1136.716,1123.6222 L 1136.9802,1122.429 L 1138.659,1121.7514 L 1139.4989,1120.8313 L 1140.706,1120.7756 L 1141.015,1121.3286 L 1141.5696,1120.8166 L 1141.9239,1120.9115 L 1142.4487,1118.5906 L 1144.0556,1116.9082 L 1144.1397,1116.3134 L 1144.9521,1117.0602 L 1146.6309,1117.1968 L 1147.1774,1117.024 L 1150.0736,1115.7164 L 1150.638,1115.4042 L 1151.1741,1114.4893 L 1151.6363,1112.6146 L 1151.6811,1111.9701 L 1152.1959,1111.631 L 1153.3429,1111.9695 L 1155.2937,1114.3487 L 1155.5002,1115.5623 L 1156.046,1115.8425 L 1157.3862,1111.4256 L 1158.8535,1111.4711 L 1159.2969,1111.1792 L 1160.272,1112.798 L 1160.7417,1113.2305 L 1162.34,1115.1193 L 1163.5132,1114.7436 L 1164.6228,1115.2787 L 1165.7,1114.7292 L 1167.2223,1115.331 L 1167.4302,1115.8475 L 1168.3414,1115.0294 L 1171.3598,1115.0643 L 1171.9385,1115.2701 L 1172.5403,1115.1176 L 1172.9123,1113.9482 L 1174.9175,1111.6215 L 1177.1157,1110.5321 L 1177.6835,1110.279 L 1178.3927,1113.3121 L 1179.871,1114.457 L 1180.2822,1114.9421 L 1183.6147,1115.6931 L 1184.589,1116.4503 L 1185.6849,1116.0006 L 1186.2947,1114.9128 L 1187.5317,1117.8877 L 1187.7908,1118.4828 L 1188.5001,1119.5076 L 1188.6701,1120.1092 L 1188.428,1120.6056 L 1189.0129,1123.1802 L 1189.5457,1123.4999 L 1192.4326,1126.6391 L 1193.639,1126.5062 L 1195.3511,1124.7612 L 1195.9202,1123.0317 L 1198.1739,1122.1027 L 1198.7012,1119.619 L 1199.3682,1118.6548 L 1200.5273,1118.5269 L 1200.9008,1118.9825 L 1202.1949,1120.2163 L 1203.3444,1120.5376 L 1202.8067,1121.5696 L 1203.0565,1122.6438 L 1203.6514,1122.5192 L 1204.6896,1122.62 L 1205.1943,1122.4809 L 1205.7309,1122.7374 L 1206.8885,1122.75 L 1208.1583,1123.923 L 1209.9082,1123.7644 L 1210.2831,1123.3864 L 1211.8827,1124.4212 L 1212.985,1124.1802 L 1213.9402,1123.5037 L 1213.8608,1120.4896 L 1214.3853,1118.732 L 1214.3982,1118.1168 L 1215.0005,1118.0444 L 1216.2403,1116.8633 L 1217.7571,1117.8697 L 1218.3722,1118.9313 L 1220.0795,1118.4231 L 1220.048,1120.8956 L 1220.2079,1121.4943 L 1221.2103,1120.8474 L 1222.6625,1122.7107 L 1224.9168,1123.4842 L 1227.3076,1123.5209 L 1227.8115,1123.1804 M 1098.3901,727.55009 L 1097.875,727.9431 L 1094.1624,729.12488 L 1092.27,731.63822 L 1089.7668,732.29935 L 1089.2773,731.87556 L 1088.6329,731.77132 L 1088.2632,731.24282 L 1086.8615,728.50757 L 1084.2085,726.72318 L 1081.6962,726.43548 L 1080.3189,724.31979 L 1079.7289,724.66235 L 1079.2787,727.01081 L 1079.5185,729.40867 L 1079.0461,730.47726 L 1079.7615,731.48908 L 1079.507,732.06359 L 1078.1372,733.25131 L 1074.5671,734.36031 L 1074.0233,734.33 L 1072.4191,734.08782 L 1071.8138,733.89156 L 1070.7617,732.5021 L 1070.7091,729.3847 L 1065.1591,726.46084 L 1065.3258,725.90707 L 1065.757,724.23402 L 1064.5354,722.29703 L 1064.0203,721.95975 L 1062.752,720.65451 L 1060.3382,720.38228 L 1059.536,718.76134 L 1059.1255,718.27492 L 1056.6751,717.63007 L 1053.5592,718.05165 L 1051.8132,718.83426 L 1049.8913,718.79585 L 1049.7582,718.15885 L 1045.4688,714.12503 L 1044.3331,711.7959 L 1043.1491,711.21042 L 1042.5647,711.49426 L 1038.3744,713.25837 L 1037.6096,714.29407 L 1035.757,714.71879 L 1034.8749,715.66105 L 1033.2891,714.63405 L 1031.164,712.17786 L 1028.6499,711.43285 L 1026.5876,709.82966 L 1026.0656,709.42523 L 1024.8684,708.86163 L 1024.3643,707.68418 L 1023.7567,707.75528 L 1017.9852,709.16211 L 1018.0552,708.54192 L 1018.1742,705.45273 L 1015.6181,701.1466 L 1013.8781,701.48795 L 1013.7934,699.02758 L 1013.4892,698.63331 L 1012.8742,698.83668 L 1009.1764,700.00988 L 1006.5951,700.05999 L 1005.1565,698.88411 L 1003.9021,698.68662 L 1001.9668,700.19686 L 1001.3496,700.00287 L 1000.8575,698.85125 L 997.14876,697.97445 L 996.56491,698.25436 L 995.89628,699.30766 L 988.84377,698.83228 L 987.78173,699.52587 L 987.11209,701.24757 L 985.42444,701.01308 L 984.83414,701.2394 L 983.28392,702.2235 L 982.1929,701.66128 L 980.38555,701.69121 L 979.76551,698.81085 L 978.54821,698.69361 L 976.83133,699.37688 L 976.20054,699.26671 L 974.94299,699.49718 L 973.89576,698.77771 L 970.74305,699.1097 L 970.36812,696.79428 L 969.29861,696.64783 L 968.67617,696.85208 L 967.94389,697.76945 L 968.15053,702.14188 L 963.85327,703.39612 L 962.97535,704.33454 L 962.73328,705.59284 L 961.70654,706.39255 L 961.09891,706.19435 L 959.7123,704.92581 L 959.94905,703.70035 L 959.43113,703.33058 L 955.66597,702.61894 L 954.8217,701.6876 L 953.30969,696.93189 L 952.47315,696.0288 L 952.20552,695.4568 L 952.76608,695.13997 L 953.30438,694.79048 L 953.00144,694.21543 L 951.40794,690.66982 L 951.30621,688.74616 L 948.97056,687.6179 L 946.35424,687.49126 L 944.14829,686.08029 L 943.70794,685.71228 L 940.80337,683.84747 L 940.59294,684.4579 L 939.55304,687.49197 L 934.9316,689.87646 L 934.96576,689.22954 L 935.49507,688.84645 L 936.84461,687.44408 L 930.4968,681.99401 L 930.88173,681.50501 L 933.46147,678.80734 L 932.95671,678.49305 L 933.33379,677.02392 L 932.89369,676.59882 L 929.61647,673.31141 L 927.88504,672.8911 L 927.98007,672.28487 L 928.41625,671.1918 L 928.99567,669.38318 L 930.64472,668.48865 L 935.02878,663.89903 L 935.00575,663.2841 L 935.66185,662.23359 L 934.45012,660.14618 L 934.74989,659.64519 L 934.2269,658.61046 L 934.46619,657.48979 L 934.04001,657.00532 L 931.22667,654.33977 L 927.6636,652.81078 L 927.30941,652.30777 L 927.76546,649.971 L 928.68147,649.13967 L 931.0523,648.41889 L 931.52606,648.01958 L 930.39392,647.49275 L 930.5011,646.88154 L 932.60101,644.76266 L 932.64808,641.71794 L 932.12446,642.06505 L 930.95145,641.74083 L 926.99218,643.08917 L 926.97472,640.03684 L 927.08835,637.81707 L 926.22384,634.86892 L 927.72876,633.76962 L 929.60774,634.17382 L 930.53602,633.53156 L 929.53194,632.76512 L 930.17931,631.69306 L 932.84637,633.16247 L 935.21542,633.71405 L 935.44838,634.26612 L 936.07209,634.2227 L 937.00936,632.02828 L 938.85505,631.77318 L 939.78613,631.01169 L 940.10083,628.73118 L 939.84433,628.16606 L 940.17207,627.63854 L 944.7677,626.11087 L 945.75913,627.63044 L 946.86989,627.88431 L 948.11098,626.11314 L 948.42138,625.66826 L 950.51331,627.10408 L 950.89103,627.60586 L 953.39726,627.24799 L 955.92436,627.8181 L 958.24192,626.71945 L 958.80641,627.03782 L 959.63485,626.10126 L 962.09185,625.64061 L 962.41301,624.46427 L 962.75466,623.53288 L 966.61776,624.97672 L 967.23148,625.07489 L 967.49544,623.88592 L 970.58045,624.3 L 970.65257,623.06127 L 970.6198,622.43982 L 972.73818,621.92286 L 973.49413,621.06185 L 973.75948,620.53909 L 974.99361,616.51981 L 976.05122,615.99944 L 976.65759,616.23142 L 977.64308,613.07733 L 976.35567,613.05919 L 975.46952,610.58076 L 976.06476,610.58747 L 977.15793,609.29581 L 977.53463,608.85151 L 978.49367,608.12802 L 979.45878,608.87305 L 981.62601,607.91208 L 983.44627,608.26538 L 983.98861,608.56549 L 983.92281,607.27508 L 983.83626,606.62247 L 981.67801,604.39278 L 982.20151,603.26061 L 984.02594,604.31123 L 984.73582,603.29674 L 982.98086,599.13944 L 983.21597,597.39535 L 983.48929,596.85968 L 983.33023,596.38354 L 982.91442,594.95486 L 983.40552,593.31171 L 984.91589,592.42688 L 985.36042,592.04162 L 985.90846,591.15787 L 986.18077,590.70616 L 986.9667,587.43721 M 1013.9695,1258.7938 L 1014.1954,1260.5862 L 1012.7331,1261.5755 L 1012.8134,1262.8123 L 1012.1781,1263.8727 L 1011.228,1263.3317 L 1009.2036,1263.2044 L 1009.1717,1263.2209 L 1008.8047,1263.7003 L 1007.0204,1266.8313 L 1006.454,1267.0003 L 1004.7141,1267.0524 L 1003.7806,1265.6109 L 1002.4312,1266.5538 L 1000.8782,1266.8512 L 1000.158,1266.0557 L 999.78266,1265.6556 L 997.81853,1264.3726 L 995.89274,1267.5323 L 995.46503,1267.2328 L 995.85908,1266.0341 L 995.27637,1265.0986 L 992.20249,1267.0808 L 991.36708,1269.2732 L 991.26382,1269.3148 L 990.7111,1269.6196 L 988.24993,1269.505 L 985.72219,1271.2796 L 985.12885,1272.4189 L 984.40454,1273.4107 L 984.14134,1273.9696 L 984.01202,1274.5869 L 982.39169,1276.4387 L 981.16047,1276.7573 L 980.55473,1276.7934 L 978.63969,1278.9924 L 977.45567,1279.1222 L 976.48866,1279.3973 L 977.56424,1281.9932 L 977.14515,1282.4231 L 976.09095,1282.082 L 975.70463,1279.6879 L 974.11986,1278.9027 L 973.53222,1279.0443 L 972.77438,1282.8577 L 972.20837,1282.83 L 971.68361,1282.7888 L 970.20045,1282.2404 L 967.46519,1283.6526 L 967.41053,1284.2944 L 968.22367,1285.2595 L 968.43853,1285.8633 L 968.97619,1287.0078 L 968.5533,1290.1304 L 968.84978,1291.3783 L 971.67007,1293.7947 L 971.6864,1293.8768 L 971.3784,1294.433 L 971.80711,1296.9548 L 971.12355,1298.7203 L 971.82318,1299.7768 L 973.97788,1302.0268 L 974.60159,1303.8009 L 976.10487,1304.899 L 976.33315,1305.4915 L 976.4316,1306.1207 L 975.80928,1307.1966 L 974.00205,1307.0294 L 973.12615,1308.6331 L 972.79437,1309.1693 L 969.53144,1310.51 L 968.69983,1310.0945 L 968.3845,1309.5835 L 967.80988,1309.7352 L 966.67357,1310.0716 L 965.75781,1312.1843 L 964.07256,1311.3801 L 963.3275,1310.42 L 963.1649,1309.7979 L 962.63964,1309.9677 L 961.61784,1310.3253 L 961.30175,1311.4211 L 960.31905,1311.4052 L 960.8891,1312.5259 L 960.17808,1313.549 L 959.02519,1313.8996 L 957.28908,1312.2583 L 954.92964,1311.6879 L 953.94074,1313.2234 L 950.54875,1314.2099 L 950.04828,1313.8441 L 949.56263,1314.1507 L 946.66097,1316.8906 L 946.09775,1316.8151 L 946.00044,1317.704 L 945.9173,1318.1915 L 945.37167,1318.1091 L 944.628,1319.5596 L 944.17373,1319.2185 L 943.56191,1317.0992 L 943.01147,1317.4002 L 941.81226,1317.0431 L 941.63144,1317.9326 L 943.44752,1319.5128 L 942.71031,1321.2972 L 941.0939,1321.9058 L 939.07928,1320.448 L 939.28642,1317.5272 L 939.20822,1316.9242 L 938.62501,1317.0974 L 937.42049,1317.198 L 936.68416,1316.2184 L 935.52291,1316.2348 L 934.98196,1316.518 L 933.79503,1316.3213 L 933.39377,1316.7906 L 933.99281,1319.1841 L 932.60379,1320.3639 L 932.70932,1320.9812 L 934.14971,1322.0816 L 934.66991,1323.8886 L 935.31792,1325.4691 L 934.87908,1326.4535 L 934.43443,1326.7952 L 933.67304,1328.3289 L 930.27459,1329.265 L 929.7282,1329.5355 L 928.24745,1328.4592 L 927.85492,1327.98 L 926.74467,1325.216 L 927.49619,1323.5897 L 925.95482,1321.7827 L 925.57938,1321.3048 L 923.93691,1321.7605 L 922.83184,1321.4817 L 922.47323,1320.3559 L 921.09763,1319.3848 L 919.7791,1322.1348 L 918.69061,1322.6918 L 918.38161,1324.5455 L 915.62901,1326.9035 L 915.05199,1327.0995 L 914.71009,1326.9624 L 914.29668,1327.3602 L 911.05426,1329.4837 L 910.43447,1329.5277 L 908.06263,1331.559 L 906.37182,1334.2319 L 903.94608,1329.9105 L 901.18601,1329.1219 L 899.5319,1329.6097 L 897.36366,1328.4802 L 896.77589,1328.3224 L 897.05478,1327.848 L 897.16449,1325.1806 L 897.7105,1324.9198 L 899.51608,1323.354 L 899.50507,1322.1075 L 898.44898,1321.6319 L 899.64705,1317.56 L 899.13799,1317.4091 L 896.95912,1318.3486 L 895.67551,1319.6609 L 893.8736,1319.596 L 893.49019,1319.1146 L 893.22015,1319.6546 L 892.87483,1322.031 L 892.07776,1322.707 L 891.88011,1322.1326 L 891.33333,1321.0502 L 889.72073,1320.3304 L 888.13899,1321.7565 L 886.90208,1319.701 L 885.86104,1319.7858 L 885.09118,1318.8897 L 884.51315,1318.9116 L 884.06748,1318.5368 L 883.63371,1317.4416 L 883.82731,1314.5671 L 883.38898,1314.9422 L 882.55889,1315.746 L 881.37107,1314.6839 L 880.33801,1315.1457 L 878.26328,1313.4088 L 877.69563,1313.3914 L 876.72596,1313.6339 L 876.40873,1313.1884 L 875.02895,1311.9821 L 875.56105,1309.6248 L 874.36956,1308.2149 L 873.36168,1307.5322 L 872.18019,1307.5369 L 871.45614,1306.5507 L 872.04821,1306.378 L 873.07646,1304.116 L 874.27162,1304.2544 L 876.53363,1303.2788 L 877.74447,1303.3005 L 878.18723,1302.8809 L 878.03994,1300.4257 L 877.94124,1299.3303 L 874.67895,1299.6096 L 874.12623,1299.6926 L 873.57996,1299.9845 L 871.67619,1301.5766 L 869.28714,1302.1395 M 744.26314,1374.444 L 742.60802,1371.1451 L 742.38303,1368.6647 L 742.51602,1368.0554 L 742.43529,1367.4229 L 742.26067,1366.8113 L 743.47215,1366.6465 L 744.28617,1365.7404 L 745.70961,1359.6611 L 746.65523,1358.8598 L 747.56049,1356.1106 L 747.39827,1355.492 L 750.35067,1352.1545 L 751.95125,1351.1653 L 751.83155,1350.5948 L 751.32046,1349.5651 L 751.82345,1348.6489 L 751.21366,1348.596 L 739.01812,1347.4666 L 738.69203,1346.9419 L 734.19229,1343.9483 L 734.16056,1343.9443 L 727.65989,1343.7814 L 727.06696,1343.7786 L 726.4872,1343.5782 L 723.53717,1342.8352 L 721.15535,1343.0238 L 720.12176,1343.6709 L 718.29811,1343.4887 L 718.29096,1342.8324 L 718.23612,1334.3073 L 716.83815,1329.9554 M 577.95238,674.59798 L 580.88894,675.96483 L 581.61415,677.01463 L 582.87308,677.29372 L 583.67461,678.94602 L 585.59776,679.23409 L 587.21819,680.2897 L 590.32041,681.05436 L 590.70806,680.69685 L 590.47939,679.68101 L 590.42045,679.16496 L 596.35061,679.86258 L 597.87076,681.05249 L 598.53523,681.09843 L 598.6049,681.14489 L 602.0633,681.24439 L 602.59881,681.47052 L 603.82722,681.69583 L 605.44625,681.05189 L 606.1504,682.04327 L 607.29709,682.26235 L 608.12092,682.94432 L 609.25392,683.00778 L 609.78789,683.2047 L 610.28915,683.38816 L 610.82585,683.37614 L 614.13832,681.91342 L 613.34502,680.24528 L 611.6298,679.50724 L 612.91036,677.61104 L 613.19081,677.09748 L 614.35667,677.2425 L 615.62945,678.5027 L 616.73824,678.78035 L 616.712,677.61247 L 621.46132,681.68328 L 621.63448,682.30335 L 621.61819,682.91802 L 625.23216,683.89815 L 625.83125,684.08671 L 627.9311,684.90242 L 628.4345,685.15271 L 628.37895,682.22631 L 628.92798,681.98097 L 630.7669,681.83602 L 631.37406,681.68732 L 631.92001,682.7608 L 634.30031,683.46463 L 635.13957,685.03534 L 635.5097,685.53459 L 637.90061,684.81513 L 638.91255,685.4908 L 639.74711,687.08971 L 641.58916,687.46554 L 642.06393,687.05241 L 643.72599,687.23614 L 644.89028,686.70814 L 647.34112,687.45361 L 649.87792,687.25986 L 651.9094,688.60803 L 652.46302,688.39328 L 652.86343,687.96365 L 656.68385,688.13564 L 657.34586,688.18547 L 660.26355,684.48446 L 660.65669,684.0324 L 662.1163,684.89142 L 663.14512,684.31776 L 663.72874,684.20953 L 666.59159,685.29536 L 667.20335,685.44309 L 669.04779,682.33109 L 668.62133,679.95809 L 668.57174,679.35419 L 668.85196,678.89 L 669.91807,679.07283 L 670.46523,679.15556 L 673.86852,680.6309 L 676.83346,683.73213 L 677.19836,684.2445 L 680.33079,682.41997 L 682.13109,682.78445 L 682.75271,682.78646 L 682.2234,680.98265 L 682.80368,680.44116 L 686.05043,682.42941 L 686.33819,683.63576 M 589.30243,817.32296 L 589.87944,817.07188 L 593.18294,815.36018 L 592.81635,812.92736 L 593.48228,811.26153 L 592.90362,810.99848 L 589.30662,809.99465 L 587.61515,808.17491 L 586.84904,806.17155 L 586.52033,805.72822 L 585.94784,805.61349 L 585.40637,805.2998 L 579.23665,804.48079 L 577.61836,805.42957 L 576.51137,804.87334 L 576.88983,804.36059 L 578.70271,802.6339 L 579.36495,801.64577 L 578.72204,799.32122 L 578.87276,798.71484 L 578.33176,798.49717 L 577.95741,798.05615 L 580.40817,796.33418 L 581.64388,796.29391 L 583.92478,794.30374 L 584.26719,793.78959 L 586.33194,792.02368 L 586.64621,791.54381 L 586.88012,790.98992 L 587.63072,788.74221 L 587.17609,788.33567 L 585.73724,787.4949 L 586.00329,786.43254 L 585.22828,784.79689 L 585.92751,784.02684 L 586.02316,783.51857 L 585.62704,783.19183 L 584.254,782.49344 L 584.30674,781.92608 L 585.18384,778.67291 L 584.68525,778.37544 L 583.31621,776.60954 L 582.17099,776.45131 L 581.59088,776.68293 L 581.0244,777.75711 L 578.83723,778.9134 L 578.30407,778.63604 L 575.95388,776.99245 L 574.0363,774.91682 L 573.12619,773.42311 L 572.99199,770.6263 L 573.08555,770.04897 L 572.64232,769.16329 L 572.33428,768.6338 L 570.80246,767.61643 L 568.39315,767.32276 L 567.73265,767.27722 L 565.16564,767.68652 L 563.28177,767.10475 L 565.42241,764.66919 L 567.26297,764.04786 L 568.83537,762.00307 L 569.31032,761.55818 L 571.68034,760.44751 L 572.33908,760.37486 L 575.64891,760.31941 L 578.15164,759.45466 L 578.70877,759.10044 L 579.20272,758.72452 L 582.08474,758.90749 L 584.40689,758.25489 L 584.92641,757.95206 L 586.57649,756.04022 L 589.75857,755.42862 L 593.64041,755.6047 L 593.93449,755.80592 L 594.58056,755.81595 L 595.2116,755.67666 L 598.16291,754.91645 L 600.00402,755.02737 L 603.43412,756.03305 L 604.03697,755.97636 L 606.49462,755.84665 L 609.29574,754.5823 L 610.48349,754.90341 L 611.10775,754.87424 L 611.98093,754.27504 L 612.35732,753.90056 L 612.8778,753.52178 L 613.4342,753.19755 L 614.50502,752.4276 L 614.95769,751.94949 L 616.21827,751.8106 L 617.31935,750.24102 L 617.78558,749.80054 L 617.52769,749.22164 L 615.29047,746.17329 L 614.63741,745.41801 L 614.69903,744.77667 L 614.07036,743.02761 L 613.91912,739.8414 L 612.16689,737.13106 L 612.86764,735.09684 L 613.29018,734.7222 L 613.04664,734.25477 L 612.46779,732.78859 L 611.81171,732.69707 L 606.63393,733.14085 L 604.83428,731.26676 L 602.47445,730.28259 L 601.86257,730.32322 L 598.90907,731.01806 L 598.35474,730.68763 L 594.49352,731.11455 L 590.02763,730.36222 L 589.4998,729.98995 L 588.33441,729.43142 L 586.84121,725.96301 L 588.55518,724.18244 L 588.56331,723.54653 L 585.53256,722.50646 L 586.21721,717.97318 L 592.47183,718.57603 L 594.83143,719.35385 L 595.45886,719.26935 L 600.44253,719.22355 L 601.05939,719.35224 L 602.76055,719.72668 L 603.40746,718.3988 L 603.92568,718.12843 L 605.54763,717.18132 L 607.06736,715.24103 L 606.93339,714.63581 L 605.36914,713.59963 L 604.9045,713.18097 L 604.24651,713.11649 L 598.60483,711.87931 L 595.04497,709.23706 L 592.45123,709.48669 L 590.65072,709.53966 L 590.67958,708.94899 L 588.59422,706.85429 L 588.1834,706.41951 L 588.11821,705.83949 L 588.30165,704.68558 L 587.48176,701.93868 L 586.21114,701.96129 L 585.15065,700.45497 L 585.89558,698.12378 L 585.58668,696.90571 L 585.96536,695.70702 L 585.29685,695.2999 L 583.36809,692.51455 L 583.34022,690.74254 L 580.84096,691.27232 L 578.47604,690.44172 L 575.90732,688.73821 L 575.79391,687.54459 L 575.7414,686.92934 L 577.51232,686.87538 L 578.17056,684.51311 L 576.80426,683.18746 L 576.98608,680.68331 M 593.30277,394.86283 L 593.75902,397.22557 L 593.32344,397.70412 L 590.45142,400.34984 L 590.78334,403.38829 L 591.45182,404.88655 L 592.00707,405.08047 L 592.76797,405.99293 L 591.78642,406.39054 L 591.22297,407.31861 L 593.80145,409.14525 L 594.83073,410.72083 L 596.04117,410.76956 L 596.04202,411.87947 L 596.37831,412.34909 L 597.00311,412.0651 L 598.664,414.43402 L 600.23837,415.38086 L 600.71011,415.78419 L 601.29112,415.57131 L 602.14769,416.44894 L 603.43471,416.48056 L 605.04957,419.69108 L 605.11606,419.77884 L 607.08649,419.8028 L 609.52158,420.81992 L 609.70335,421.42935 L 611.61189,421.59313 L 613.24999,420.59212 L 616.01848,417.37098 L 616.6324,417.15107 L 616.82467,415.522 L 617.55115,414.61361 L 618.13132,414.76843 L 617.66901,415.24048 L 618.10237,416.44695 L 620.5515,419.51197 L 622.35395,420.06978 L 619.05599,422.08807 L 619.44526,423.25032 L 617.04454,426.89035 L 615.80402,427.21397 L 614.68375,426.59224 L 613.54533,426.86603 L 613.31445,427.45575 L 616.18896,428.03257 L 616.78702,428.09942 L 615.99263,429.52542 L 619.83729,431.64537 L 620.27664,432.09673 L 620.03295,432.67383 L 620.66903,432.82492 L 621.32285,432.78622 L 621.93656,433.05831 L 622.18407,434.093 L 620.19682,435.80208 L 618.93459,436.19547 L 617.85314,437.82658 L 617.61428,438.42824 L 621.61508,435.52627 L 622.86181,435.69645 L 623.4782,435.55408 L 623.62577,437.12224 L 623.65026,437.65417 L 623.54425,438.16975 L 623.5143,440.08712 L 623.27537,440.69013 L 624.44402,442.88791 L 624.50378,443.51222 L 624.66372,443.92871 L 624.58552,444.36594 L 624.44789,445.1525 L 623.82527,446.29835 L 623.78198,446.94147 L 623.21821,447.27918 L 621.8397,448.63389 L 622.63597,449.63408 L 624.51585,450.0363 L 625.44041,450.92974 L 625.48882,452.14003 L 624.87136,452.02745 L 622.58367,452.873 L 621.37186,454.94012 L 620.53139,454.6689 L 620.10483,454.88612 L 619.55269,457.22864 L 618.84285,458.88166 L 615.47651,462.48546 L 615.15192,463.00663 L 613.82282,463.20429 L 609.85764,465.58714 L 609.30408,465.95982 L 608.84926,465.95678 L 608.40988,466.06336 L 607.84777,465.78193 L 606.71567,465.31606 L 605.46236,465.50187 L 604.6743,463.85098 L 604.15314,464.13872 L 602.4115,463.99808 L 601.51097,464.7274 L 600.94403,464.53667 L 600.72178,465.08555 L 601.13662,466.15272 L 599.10672,467.00277 L 599.97583,467.64631 L 599.80632,469.42336 L 598.52768,470.74783 L 598.54303,471.3493 L 599.09801,471.55023 L 599.66665,471.71083 L 601.50807,470.95409 L 605.41321,470.45202 L 606.38037,471.29277 L 605.32796,474.31969 L 601.87321,476.34941 L 601.686,476.98075 L 601.42329,477.58708 L 600.76848,478.93984 L 600.61064,479.417 L 599.98743,479.52661 L 599.28237,480.52966 L 598.06439,480.7627 L 596.54711,478.94203 L 596.11019,479.38796 L 595.19176,481.41033 L 592.86861,483.22682 L 592.76714,484.72821 L 592.12924,484.58557 L 591.02113,485.05358 L 589.49523,487.03128 L 588.22126,486.89608 L 588.24267,487.16663 L 587.94333,488.32775 L 588.5739,489.31611 L 591.49574,489.90332 L 591.82465,490.4176 L 592.07253,490.37261 L 593.83702,490.80671 L 594.74659,490.71944 L 595.15307,490.93771 L 595.78851,492.69296 L 596.08312,493.25175 L 596.46543,494.3429 L 595.58934,495.22512 L 596.19741,496.28068 L 597.65058,497.47219 L 600.66462,498.42 L 602.78109,496.68592 L 603.36685,496.69149 L 605.94424,498.51079 L 608.1851,497.7798 L 608.82687,497.7258 L 611.25075,498.20536 L 612.2668,496.09142 L 612.86262,496.36049 L 613.95768,495.68159 L 615.40714,496.87895 L 615.64806,497.46504 L 617.92705,498.78418 L 621.72936,499.85812 L 622.69043,501.38821 L 624.5775,501.51349 L 626.12684,500.58126 L 626.58896,500.15203 L 629.20473,499.91595 L 630.21622,499.11697 L 630.62246,498.62265 L 630.82642,498.92737 L 628.6454,501.79483 L 628.22538,502.28319 L 626.85515,503.49936 L 627.45149,506.39962 L 628.03949,506.62854 L 629.38073,506.40875 L 629.74071,505.8867 L 631.01055,506.08954 L 632.48499,507.35896 L 632.98759,509.17898 L 633.79648,510.17462 L 635.62111,511.3291 L 636.12026,511.58817 L 636.97916,512.31401 L 637.32431,512.75992 L 637.90167,513.04246 L 641.40094,514.35359 L 641.47012,515.58301 L 640.86415,515.35105 L 638.88578,516.81704 L 638.24787,518.56193 L 636.78484,519.75079 L 636.84496,520.37368 L 637.04066,520.95192 L 638.15423,524.33668 L 640.54776,525.08058 L 641.002,526.15261 L 640.3789,526.19906 L 639.35366,526.52885 L 639.52174,529.49522 L 638.68761,531.08322 L 638.08688,531.33133 L 637.26381,532.26243 L 636.63019,534.61945 L 636.74807,536.51854 L 634.59949,538.88734 L 632.69325,539.31244 L 632.27711,539.65403 L 626.32596,546.18147 L 626.31667,546.81202 L 625.76826,548.1432 M 1325.5964,542.57332 L 1323.1661,541.63759 L 1323.04,541.11922 L 1321.1447,540.27129 L 1321.2955,539.31519 L 1321.9463,538.55058 L 1321.3109,538.58372 L 1315.8268,538.83251 L 1314.9485,539.59945 L 1314.3183,539.52296 L 1313.6686,539.40814 L 1311.4108,540.64594 L 1309.6218,543.27837 L 1308.9725,543.39412 L 1307.7068,543.02808 L 1306.6942,540.18688 L 1306.1963,540.27558 L 1305.4583,539.65896 L 1305.0244,540.14248 L 1303.4637,541.3232 L 1302.8953,541.06318 L 1299.4308,539.70794 L 1298.7621,539.65605 L 1294.9346,538.68272 L 1294.3568,538.50353 L 1293.7359,538.26077 L 1290.4496,536.07442 L 1285.0369,530.49511 L 1284.4111,530.41565 L 1282.654,529.78388 L 1281.0628,527.66524 L 1280.6405,527.1502 L 1282.6701,524.70474 L 1282.4322,523.50986 L 1282.0931,523.02658 L 1281.8323,522.50061 L 1281.6904,522.08443 L 1281.2434,520.48331 L 1282.285,519.86065 L 1282.0816,519.305 L 1281.7982,518.78181 L 1282.9542,516.64583 L 1281.7007,514.73427 L 1282.1713,512.39918 L 1281.9899,511.7913 L 1280.2417,509.89763 L 1278.4284,509.42339 L 1273.9921,510.52048 L 1272.2232,509.7113 L 1271.5539,508.77989 L 1270.2807,511.40594 L 1263.2324,510.32162 L 1261.3152,510.70307 L 1260.7554,511.0343 L 1260.2321,511.34006 L 1257.3791,514.36198 L 1256.7951,514.06478 L 1251.9435,512.03481 L 1251.4173,511.82302 L 1250.8874,511.62432 L 1249.141,514.17049 L 1249.3474,515.88157 L 1248.7449,516.98039 L 1246.3963,518.97015 L 1245.7896,518.83753 L 1244.6099,519.20939 L 1241.0052,518.43523 L 1240.618,518.93365 L 1238.7934,520.61855 L 1237.9141,524.24952 L 1238.3278,524.72806 L 1238.08,525.21966 L 1236.5667,524.6469 L 1236.2433,525.15512 L 1234.3674,529.4902 L 1230.5431,529.02438 L 1229.5803,529.78029 L 1229.2026,529.7977 L 1227.8347,534.55462 L 1226.1054,534.18491 L 1226.0189,534.2244 L 1225.4621,533.9541 L 1222.471,533.9098 L 1222.4591,535.09344 L 1223.5482,535.6729 L 1222.9281,538.01253 L 1223.0762,540.44245 L 1223.4706,540.43318 L 1223.8644,540.44218 L 1223.6022,541.7118 L 1222.1232,543.86617 L 1219.8501,545.17598 L 1219.2454,545.27018 L 1218.7605,545.63133 L 1218.2209,545.28937 L 1215.0267,543.26534 L 1213.7476,543.15219 L 1213.2533,543.38516 L 1212.2542,542.95649 L 1211.2509,543.38619 L 1210.3291,542.57923 L 1206.8486,541.53938 L 1206.1878,541.60542 L 1203.6282,542.0819 L 1202.9934,542.13708 L 1201.3367,541.28435 L 1198.2984,541.90865 L 1197.9342,542.06718 L 1197.5793,541.88896 L 1195.6969,541.77475 L 1194.3057,540.08062 L 1194.1493,535.318 L 1193.8472,534.84463 L 1193.1923,533.9399 L 1192.1051,534.05098 L 1191.664,534.48819 L 1191.1488,534.84174 L 1190.7134,535.15562 L 1190.5156,534.56741 L 1189.2234,532.49561 L 1187.972,532.77739 L 1187.8823,532.18413 L 1187.6309,529.22891 L 1187.0156,529.30362 L 1185.788,529.47425 L 1185.5033,527.78803 L 1184.5763,526.33562 M 1329.9052,636.14359 L 1330.5057,635.87487 L 1330.391,633.99917 L 1332.1242,632.09375 L 1332.2998,631.47536 L 1330.6478,630.49402 L 1328.2511,626.68598 L 1325.0607,625.81424 L 1324.4023,625.7345 L 1323.9977,625.35274 L 1325.1158,624.73163 L 1327.6409,624.44248 L 1328.2148,624.12513 L 1330.1643,623.06803 L 1330.2453,622.47318 L 1329.8857,621.96418 L 1332.7933,619.75099 L 1333.4027,618.00035 L 1334.5436,618.69214 L 1337.2179,618.79469 L 1339.7545,619.58316 L 1340.3642,619.86148 L 1343.9186,620.9039 L 1345.7531,620.67707 L 1346.3739,620.61224 L 1346.4044,618.90881 L 1346.2441,618.35418 L 1345.9355,616.72246 L 1345.6419,616.23796 L 1347.2211,615.22202 L 1347.7511,614.11301 L 1348.3617,613.95256 L 1346.8809,612.01972 L 1346.6522,610.17989 L 1346.9389,608.96299 L 1348.2014,607.53273 L 1347.981,606.94022 L 1349.1208,604.64747 L 1349.1472,604.62361 L 1349.9116,603.60094 L 1349.9222,601.69446 L 1346.6495,599.86427 L 1346.5239,599.23688 L 1347.0069,598.84209 L 1348.5427,597.8908 L 1347.5004,595.81385 L 1347.8146,594.66187 L 1347.6648,594.29533 L 1347.9067,593.06232 L 1349.5391,591.19303 L 1347.4571,587.9946 L 1348.457,585.6663 L 1345.929,584.41566 L 1345.3473,584.57059 L 1345.2223,582.76706 L 1344.2228,581.2412 L 1343.8217,580.77185 L 1346.7413,578.1596 L 1347.2716,577.76312 L 1346.921,577.21427 L 1343.7631,576.51102 L 1341.7023,574.8742 L 1339.0743,574.49259 L 1336.276,572.81036 L 1336.5433,572.30504 L 1336.9853,568.95748 L 1335.2695,568.09903 L 1332.1046,567.71807 L 1330.3391,568.3215 L 1329.8227,567.94793 L 1329.6167,567.04712 L 1330.4262,566.47678 L 1328.638,564.01029 L 1327.5048,563.61743 L 1326.8786,563.57312 L 1327.8579,562.04685 L 1326.5793,560.76333 L 1326.4506,560.17078 L 1326.3205,559.12406 L 1326.064,558.62177 L 1321.2427,556.34021 L 1320.524,554.71141 L 1320.1103,554.24256 L 1321.2984,554.39926 L 1322.8822,553.75968 L 1323.4802,553.78977 L 1323.23,552.57374 L 1324.2017,549.64232 L 1324.1567,547.20842 L 1325.1029,546.45882 L 1325.5237,546.42984 L 1326.3744,544.83239 L 1325.8451,543.12318 L 1325.5964,542.57332 L 1326.1962,541.52283 L 1327.4343,541.93672 L 1331.8459,540.83058 L 1332.5108,540.83185 L 1340.2566,542.70891 L 1341.3034,543.02796 L 1341.919,542.95762 L 1341.5276,542.45898 L 1340.0974,538.37157 L 1341.2331,536.13905 L 1338.976,536.15385 L 1338.2807,534.42754 L 1337.9916,531.31699 L 1342.3134,530.42304 L 1342.9134,530.17957 L 1345.7758,527.83362 L 1348.9042,527.79105 L 1349.3213,527.33015 L 1348.6986,527.20907 L 1348.3533,526.04386 L 1348.514,523.13264 L 1348.2916,522.64229 L 1346.965,521.73499 L 1347.2622,521.11922 L 1343.6095,520.11843 L 1339.1658,520.44091 L 1338.5582,520.63997 L 1338.4641,520.62896 L 1338.5001,520.20897 L 1338.5342,519.79044 L 1339.7033,517.27779 L 1340.9351,517.38033 L 1341.6301,516.51138 L 1341.8102,515.94444 L 1343.9829,515.56081 L 1344.5501,515.50394 L 1344.9739,516.56441 L 1347.3661,516.71262 L 1347.9308,516.93579 L 1348.477,517.75987 L 1348.9732,517.87377 L 1350.0658,517.67215 L 1350.5984,517.82672 L 1351.3786,516.85574 L 1354.275,515.60851 L 1355.6454,514.3275 L 1356.0686,513.86689 L 1359.2114,515.93299 L 1359.5702,516.44106 L 1360.1679,515.35805 L 1361.4977,514.18324 L 1365.3017,514.36929 L 1365.867,514.67685 M 1635.9966,545.91867 L 1631.5988,546.56968 L 1631.0099,546.8517 L 1630.3349,547.05793 L 1627.7607,548.56273 L 1627.2009,548.8216 L 1626.8285,549.2384 L 1624.0453,549.85069 L 1621.3519,551.73209 L 1618.7089,552.03428 L 1618.1222,552.34841 L 1617.604,552.66317 L 1616.0865,553.62785 L 1611.6221,558.89304 L 1610.5362,559.48912 L 1610.0633,560.19382 L 1609.6522,560.67652 L 1606.7971,563.18298 L 1605.5623,563.56045 L 1603.9421,562.57937 L 1603.272,560.19208 L 1602.0705,560.63623 L 1601.8361,561.20772 L 1601.327,562.334 L 1598.6078,563.83912 L 1598.4354,564.40767 L 1597.0054,567.59298 L 1594.8032,566.32137 L 1593.304,567.4005 L 1593.2724,566.33823 L 1592.6279,566.27347 L 1592.0003,566.44006 L 1590.7881,566.39082 L 1590.0486,564.67099 L 1587.4557,564.49457 L 1587.3651,563.87545 L 1586.8298,563.57323 L 1585.6,563.73594 L 1584.0911,562.77722 L 1582.2771,564.34 L 1581.7102,564.05118 L 1580.625,563.39722 L 1580.2905,562.21851 L 1579.8576,562.7224 L 1579.4721,562.40041 L 1578.5783,561.92661 L 1577.29,561.91446 L 1575.464,561.45882 L 1575.761,560.89818 L 1575.4237,559.07241 L 1574.4002,557.49704 L 1574.695,555.63052 L 1574.2732,553.79892 L 1573.6963,553.51816 L 1572.4174,553.44444 L 1570.7513,554.39634 L 1569.4794,554.44339 L 1569.2977,554.86366 L 1569.0964,555.27797 L 1568.4699,555.48079 L 1567.5011,556.26024 L 1565.8404,559.70416 L 1567.7543,563.54119 L 1567.1037,563.85147 L 1562.7806,561.64039 L 1562.2703,561.58283 L 1561.493,560.93875 L 1560.963,561.29662 L 1559.4235,562.39159 L 1558.8645,562.74826 L 1557.3682,564.02848 L 1556.7165,563.95905 L 1555.4944,563.71408 L 1554.9441,563.95447 L 1553.5122,565.00965 L 1552.9562,564.78559 L 1551.6822,563.57858 L 1550.5882,564.05687 L 1549.9892,564.3099 L 1547.6095,565.1865 L 1546.0919,567.91274 L 1544.855,568.10623 L 1544.5727,567.53898 L 1543.9724,567.66221 L 1542.892,568.12876 L 1542.4937,567.67766 L 1542.4683,566.77913 L 1543.2784,565.86776 L 1541.5507,564.51606 L 1539.8826,565.2535 L 1539.7331,565.32845 L 1539.2939,565.80068 L 1538.6616,565.9819 L 1536.4531,565.85205 L 1535.8004,565.80362 L 1532.8678,564.50648 L 1532.2605,561.47238 L 1531.5085,560.53393 L 1529.9532,561.31134 L 1529.2396,562.29258 L 1528.0749,561.91852 L 1526.8266,565.52142 L 1526.2365,565.51942 L 1524.5787,565.95027 L 1523.398,567.21903 L 1523.2408,566.65017 L 1521.957,566.56922 L 1519.3996,566.80665 L 1519.1989,567.05067 L 1516.448,567.12986 L 1516.4958,566.59219 L 1516.9949,565.0535 L 1516.5128,564.77895 L 1516.2899,565.32649 L 1514.5209,565.63191 L 1512.7782,565.17998 L 1512.5263,565.25877 L 1513.1467,570.0483 L 1512.7004,570.49 L 1510.6645,573.51612 L 1510.1232,573.1617 L 1509.6994,572.67945 L 1508.6828,575.13274 L 1508.0859,574.93883 L 1506.8547,574.68584 L 1505.7355,573.3027 L 1506.3087,573.11841 L 1505.4137,569.93647 L 1504.9436,569.7272 L 1503.5779,570.3756 L 1503.2046,570.80292 L 1503.9713,573.34174 L 1503.3854,573.61281 L 1502.9177,574.04899 L 1502.2773,574.10858 L 1501.6357,574.05291 L 1501.2646,573.64108 L 1499.8614,572.9811 L 1499.8075,573.59099 L 1498.0172,573.81917 L 1497.0283,574.57618 L 1496.4384,573.74116 L 1495.8017,573.83257 L 1494.5185,573.93115 L 1492.9789,575.02738 L 1492.3855,574.92673 L 1491.662,575.82762 L 1490.5435,575.49294 L 1489.4187,575.82467 L 1488.8445,575.64773 L 1488.2292,574.65092 L 1488.0649,574.12039 L 1488.3631,572.67349 L 1487.7843,572.76815 L 1487.8734,571.69055 L 1486.8668,571.11436 L 1488.1694,569.00104 L 1487.8017,568.50727 L 1487.4919,567.3317 L 1487.1619,567.0093 L 1486.419,566.55677 L 1484.7211,567.84638 L 1484.3823,567.41688 L 1483.8121,566.49483 L 1483.5052,565.93311 L 1482.4877,565.82104 L 1482.5986,562.60825 L 1484.3288,562.20189 L 1485.1804,560.48321 L 1484.6019,560.23558 L 1480.9691,560.11771 L 1482.2197,561.57455 L 1480.8334,565.13997 L 1478.4551,566.14236 L 1477.4248,565.57106 L 1476.7906,565.4169 L 1475.5711,564.9775 L 1475.6895,564.52672 L 1476.0714,563.67419 L 1478.9499,560.58778 L 1479.1931,560.0373 L 1479.3514,559.76423 L 1480.878,557.80301 L 1479.5513,556.41878 L 1479.7768,553.99117 L 1481.7616,551.52666 L 1481.3448,551.39329 L 1481.0638,551.0667 L 1481.4073,550.50565 L 1481.9637,549.32192 L 1481.3451,549.49918 L 1478.2568,548.86458 L 1476.9043,547.63437 L 1476.4389,547.21605 L 1473.3435,547.52415 L 1473.1699,548.27357 L 1472.5878,548.37392 L 1471.6479,549.06447 L 1469.9268,548.71474 L 1469.7286,549.29548 L 1467.5671,550.48096 L 1466.9214,551.5283 L 1466.498,551.04803 L 1465.8542,550.9304 L 1465.3661,550.51327 L 1464.1532,549.04545 L 1464.1193,548.43514 L 1463.8521,545.45199 L 1463.6238,544.4781 L 1464.3762,542.1482 L 1465.4754,541.57739 L 1465.5731,540.9741 L 1465.1121,540.74082 L 1463.8642,539.9365 L 1463.201,539.85445 L 1461.521,538.81517 L 1459.5342,538.61255 L 1459.1038,538.22449 L 1457.8684,537.01007 L 1457.6963,536.52577 L 1457.7991,534.99805 L 1457.5969,534.38089 L 1458.1846,531.723 L 1458.7886,531.53403 L 1461.1629,530.72574 L 1462.8458,528.96273 L 1464.0378,528.69163 L 1464.6904,528.57578 L 1467.2863,528.80165 L 1468.3132,527.63715 L 1469.0084,525.51912 L 1468.4911,525.1912 L 1467.3045,524.998 L 1464.0507,526.63695 L 1463.5587,526.27578 L 1463.295,526.22364 L 1463.4016,525.61778 L 1463.6207,524.42228 L 1463.0358,523.34823 L 1462.7851,522.9312 L 1462.5254,522.5189 L 1462.225,521.98316 L 1461.5411,519.71052 L 1461.9043,519.16764 L 1462.0996,517.89071 L 1461.7484,517.3759 L 1462.9806,513.29558 L 1463.1431,512.82189 L 1464.0832,511.63035 L 1463.5538,511.32032 L 1462.3727,509.30331 L 1460.0882,507.47443 L 1459.9653,507.33609 L 1459.5504,506.95714 L 1458.3169,505.80869 L 1459.0408,504.8678 L 1457.6852,503.66689 L 1458.3274,503.01034 L 1460.031,502.64968 L 1461.3663,501.37058 L 1460.534,500.39998 L 1460.9747,498.61498 L 1464.2808,495.5424 L 1465.5831,495.35655 L 1465.6504,494.75392 L 1465.8414,493.55756 L 1465.3023,493.77689 L 1463.8064,494.65393 L 1463.4193,494.29544 L 1463.2745,493.31379 L 1463.8686,493.06062 L 1465.0751,491.7026 L 1466.203,487.07069 L 1465.7772,486.61854 L 1465.4195,483.10097 L 1464.9817,482.97577 L 1464.6901,482.64116 L 1464.5287,482.02407 L 1464.1588,480.19077 L 1465.2054,479.87243 L 1465.7072,479.61536 L 1466.3192,479.51753 L 1466.8655,479.23766 L 1467.042,477.46499 L 1464.7706,476.14286 L 1463.1526,473.43028 L 1463.1003,472.87535 L 1462.6346,472.86429 L 1462.2484,472.65744 L 1461.8584,472.46019 L 1462.4773,471.38887 L 1465.6065,470.65013 L 1468.5097,466.78057 L 1470.1834,467.28031 L 1470.7425,467.48812 L 1472.5301,467.20998 L 1473.9291,465.7114 L 1474.5432,465.78026 L 1474.7097,465.21648 L 1474.7832,464.05307 L 1472.4095,461.3169 L 1470.817,460.57716 L 1470.1981,460.49828 L 1469.1185,459.91001 L 1468.9074,459.31882 L 1471.2653,456.33851 L 1470.7651,455.48999 L 1470.3413,455.97075 L 1470.4598,455.39653 L 1472.3114,451.94936 L 1472.3453,451.37505 L 1475.3299,449.56558 L 1475.0407,449.01356 L 1473.4305,447.2427 L 1473.1256,444.88242 L 1472.5167,445.15936 L 1469.3136,445.35681 L 1469.2932,444.78681 L 1469.5967,443.10528 L 1469.8787,442.55604 L 1471.0091,441.16786 L 1471.4984,440.74418 L 1470.8211,436.65608 L 1470.1853,436.60963 L 1469.5477,436.60098 L 1468.9177,436.42985 L 1465.698,436.54738 L 1465.8409,437.02013 L 1465.0885,437.69796 L 1464.5805,437.43511 L 1462.8832,436.08029 L 1462.0203,434.44597 L 1462.8071,432.78593 L 1464.9922,431.39764 L 1464.4677,431.33807 L 1462.9915,430.92343 L 1463.4468,429.77444 L 1463.3668,429.13626 L 1462.1323,428.62483 L 1461.7791,427.43101 L 1463.5148,422.62744 L 1464.2308,420.84474 L 1463.6407,420.11971 L 1463.1661,420.20703 L 1462.2842,420.65424 L 1461.6268,420.71603 L 1459.7433,421.27034 L 1458.8419,420.51479 L 1459.2616,420.06813 L 1458.4277,417.24809 L 1459.5422,415.82 L 1460.1408,415.60782 L 1461.0394,414.87973 L 1460.6333,414.45357 L 1459.1061,412.19722 L 1458.5568,411.66337 L 1459.5129,410.02179 L 1459.1105,408.24863 L 1459.0363,407.62578 L 1463.6143,405.8285 L 1464.3653,402.74962 L 1464.5483,402.14047 L 1463.9797,400.02025 L 1463.8672,399.47784 L 1463.4966,399.28662 L 1463.1179,399.4618 L 1462.6734,399.92866 L 1462.1294,400.29113 L 1459.961,400.10055 L 1458.5473,396.59926 L 1460.6146,394.99158 L 1460.8838,393.71154 L 1460.7054,393.12212 L 1460.6614,391.91676 L 1459.9019,390.92871 L 1459.2857,390.72747 L 1457.4549,390.49519 L 1457.7262,389.43407 L 1456.8932,386.7185 L 1456.5081,386.21604 L 1454.2978,384.95431 L 1455.0933,384.32221 L 1454.911,383.4169 L 1454.8786,382.82709 L 1454.8683,381.05249 L 1453.6325,381.159 L 1452.9791,380.33204 L 1447.4996,376.88623 L 1447.0648,377.36559 L 1445.3,378.25951 L 1445.3927,379.51274 L 1444.1633,379.70777 L 1444.0833,380.33436 L 1443.0654,379.56938 L 1441.2721,380.3724 L 1439.4601,379.70018 L 1439.2467,380.1539 L 1438.5801,380.28592 L 1437.2465,380.47606 L 1434.5533,382.39476 L 1430.4941,382.45034 L 1430.1724,384.84023 L 1428.7024,386.8677 L 1428.1926,387.01614 L 1427.2929,385.79202 L 1427.551,385.25243 L 1427.1333,384.37502 L 1425.9007,384.37981 L 1423.8689,383.08219 L 1423.913,383.06756 L 1424.5484,382.88397 L 1427.0282,382.12206 L 1427.9414,383.03278 L 1429.8324,382.51732 L 1431.4565,379.87934 L 1430.3699,379.35305 L 1429.8735,379.74197 L 1426.9609,378.68503 L 1427.9444,377.82605 L 1428.2216,375.9376 L 1428.7247,375.51106 L 1428.3661,375.0043 L 1426.4696,374.66807 L 1426.2805,373.61224 L 1426.9517,372.5524 L 1426.432,372.2978 L 1426.0763,370.79826 L 1426.569,369.06097 L 1425.9994,368.77986 L 1426.6288,368.59484 L 1427.2788,368.70621 L 1427.6458,368.24492 L 1428.3834,366.66653 L 1427.9628,366.33192 L 1426.9172,366.03434 M 1480.3802,366.08764 L 1481.0168,368.39043 L 1480.8386,368.97331 L 1481.8063,368.35361 L 1482.8569,368.80146 L 1483.433,368.70121 L 1484.42,368.29471 L 1484.9606,368.20286 L 1485.7152,369.49335 L 1486.2502,369.65949 L 1485.5781,370.69772 L 1486.5117,374.21931 L 1485.1085,375.29668 L 1486.3771,377.62905 L 1486.5661,378.26049 L 1485.997,378.55655 L 1484.7941,378.97168 L 1483.7105,380.49387 L 1483.1929,382.07172 L 1482.7133,382.43265 L 1483.2121,382.72048 L 1483.7334,382.97312 L 1484.97,383.53948 L 1485.6491,387.29534 L 1484.3504,388.73913 L 1485.4425,389.3997 L 1486.4053,390.99531 L 1487.6746,390.75449 L 1488.3172,390.83505 L 1489.2601,393.57168 L 1490.5043,393.81019 L 1491.134,393.89529 L 1490.4807,393.97033 L 1489.1659,393.89484 L 1486.7061,394.73029 L 1486.6955,395.34163 L 1487.4783,396.96765 L 1490.0726,398.70891 L 1491.9997,401.15347 L 1492.3651,400.7289 L 1493.5051,399.49434 L 1494.5052,400.3213 L 1494.2439,404.09766 L 1494.0765,404.70559 L 1493.9269,406.57388 L 1495.1151,407.1346 L 1494.8583,407.50484 L 1495.1146,408.3024 L 1494.8736,409.51878 L 1497.5566,411.23489 L 1497.3977,414.2955 L 1497.7624,414.33641 L 1495.7074,416.38678 L 1495.0812,416.40181 L 1493.8245,418.38428 L 1494.3157,418.74631 L 1493.3017,419.01916 L 1492.3047,418.62816 L 1491.8975,419.03299 L 1492.1288,420.12386 L 1491.184,421.32751 L 1491.2802,421.66895 L 1491.6081,422.7361 L 1491.9955,423.15944 L 1494.5062,423.5482 L 1496.0646,425.52872 L 1497.8092,426.3334 L 1497.4042,426.80228 L 1496.2856,427.34471 L 1495.2477,428.85809 L 1494.6911,428.92061 L 1493.8155,428.47885 L 1492.6466,428.71512 L 1493.1503,429.76382 L 1491.626,430.63261 L 1491.8994,431.14801 L 1492.1186,431.73177 L 1493.1096,432.53711 L 1492.6826,433.63834 L 1494.1421,435.66389 L 1494.5005,436.13379 L 1494.2124,436.70337 L 1493.0783,437.23556 L 1490.4115,437.17239 L 1489.7832,437.1514 L 1487.268,437.06936 L 1485.2148,437.00961 L 1484.7357,438.74895 L 1484.4618,439.9741 L 1486.4791,442.23485 L 1485.6116,443.15449 L 1485.6715,443.78058 L 1485.8755,444.36356 L 1487.59,445.09305 L 1487.7604,445.68614 L 1488.2582,447.81361 L 1488.5289,448.29925 L 1489.6833,448.45844 L 1490.3841,449.36115 L 1491.4892,449.02813 L 1492.0244,449.27382 L 1492.8667,449.68283 L 1493.234,449.99686 L 1494.0753,450.52766 L 1494.5602,450.66762 L 1495.0213,450.40842 L 1495.4712,450.13228 L 1496.3358,452.47072 L 1497.7506,453.85331 L 1499.0437,454.23532 L 1499.5605,455.32953 L 1499.3378,456.61104 L 1499.415,458.96064 L 1498.1601,459.74675 L 1499.1017,460.53592 L 1499.3668,461.08253 L 1501.645,460.82801 L 1502.0658,460.43568 L 1503.2133,460.80016 L 1502.86,461.95235 L 1503.6534,462.85551 L 1503.8919,463.4124 L 1504.1617,463.72064 L 1505.8556,462.8369 L 1506.4748,462.66108 L 1508.3257,462.95623 L 1509.6558,464.99657 L 1509.4628,466.21352 L 1510.1,466.2247 L 1509.7065,467.95404 L 1511.7825,469.2063 L 1512.4138,469.29304 L 1512.8182,469.15705 L 1512.8548,468.06616 L 1514.3029,467.25946 L 1514.7886,467.56337 L 1515.4361,467.54243 L 1516.0356,468.62356 L 1519.2809,468.46061 L 1519.9258,468.35756 L 1519.9091,468.01123 L 1521.7903,468.26087 L 1522.3571,469.89195 L 1523.581,470.15047 L 1523.8723,470.69247 L 1525.1643,470.70085 L 1526.5485,469.44863 L 1527.096,469.12253 L 1527.6405,469.25705 L 1528.193,469.15981 L 1528.9263,470.13626 L 1529.8016,470.05484 L 1530.2888,470.18827 L 1530.3071,471.73766 L 1530.3655,472.26705 L 1532.7182,471.68397 L 1533.2486,471.39849 L 1533.2046,473.10126 L 1534.9201,473.87855 L 1535.3141,474.36005 L 1535.1027,475.99532 L 1534.5028,476.23292 L 1533.2876,476.67633 L 1531.5011,478.45798 L 1532.9019,479.22662 L 1532.8546,479.76086 L 1533.2146,480.23241 L 1533.1297,481.92834 L 1531.5122,481.3814 L 1531.7184,483.4203 L 1531.8463,483.93514 L 1531.2114,484.06753 L 1529.9946,484.49952 L 1530.3169,485.55327 L 1532.7706,487.36493 L 1533.8898,486.78701 L 1535.6292,487.00784 L 1536.2393,487.20877 L 1536.8493,487.41419 L 1535.8801,488.83365 L 1534.1528,488.16899 L 1531.975,489.104 L 1532.4245,489.44165 L 1532.9452,489.67083 L 1535.8217,489.2834 L 1536.1046,489.79747 L 1536.3969,491.17274 L 1536.8112,491.5222 L 1538.6294,491.21236 L 1539.093,491.60533 L 1537.8416,492.81975 L 1538.7762,494.39105 L 1538.8509,494.99378 L 1539.2428,497.26283 L 1540.2728,496.66165 L 1540.8021,496.33688 L 1542.4504,497.05812 L 1543.0622,497.08661 L 1543.8385,498.15523 L 1548.1147,495.79457 L 1548.6769,495.53287 L 1549.8109,497.01827 L 1550.9741,497.36592 L 1551.3491,499.16565 L 1551.2708,499.77732 L 1551.7996,499.77897 L 1552.2517,499.51541 L 1555.3038,499.78258 L 1555.9251,499.94728 L 1558.152,501.88387 L 1557.9785,502.95834 L 1558.5814,502.89496 L 1559.6012,502.17991 L 1561.4704,502.75736 L 1562.0299,502.42874 L 1562.7068,501.9959 L 1563.1671,501.83839 L 1565.01,501.5659 L 1565.3477,502.78824 L 1567.8077,505.76299 L 1568.4654,505.88755 L 1569.6057,508.39621 L 1569.6651,508.95736 L 1571.903,509.13631 L 1573.4725,509.80431 L 1574.5512,511.25679 L 1575.1618,511.38264 L 1577.1004,510.41112 L 1577.5872,510.71662 L 1579.2524,513.32171 L 1578.7482,514.30756 L 1578.7153,516.75724 L 1578.2005,517.12534 L 1578.521,517.80064 L 1581.0286,515.09504 L 1581.7348,516.74102 L 1582.9948,516.87551 L 1583.547,517.198 L 1585.45,517.89247 L 1585.7493,518.33473 L 1587.3276,517.7558 L 1589.0798,517.82198 L 1589.4247,517.33673 L 1590.0314,517.37453 L 1590.0756,519.48751 L 1590.3992,519.97917 L 1590.5422,520.58784 L 1592.2543,520.33467 L 1592.16,520.88114 L 1591.8279,521.35234 L 1592.5855,521.94479 L 1592.9047,522.30292 L 1596.8501,521.55257 L 1599.4656,522.12234 L 1600.0776,523.27068 L 1600.4979,524.17635 L 1600.5227,524.67992 L 1601.163,525.75416 L 1602.3754,526.28533 L 1606.9091,525.54348 L 1607.8957,526.16814 L 1608.4396,526.48827 L 1609.9711,525.66808 L 1610.1434,524.53161 L 1610.9655,523.76428 L 1611.5539,523.61429 L 1613.1315,526.82337 L 1612.7859,527.36054 L 1615.0014,528.33499 L 1615.5827,528.52094 L 1618.8512,527.904 L 1619.3044,528.37931 L 1619.5498,528.30267 L 1621.517,527.95028 L 1622.3293,529.36681 L 1619.8285,531.24 L 1622.8385,533.60859 L 1624.0897,533.73129 L 1624.7446,533.69635 L 1626.0692,537.01195 L 1627.638,538.99302 L 1630.8518,540.77981 L 1628.2821,541.06422 L 1627.6534,541.23545 L 1629.8756,541.59448 L 1630.4531,541.74325 M 1424.9752,369.01129 L 1425.0621,368.40298 L 1426.1998,367.92099 L 1423.2605,364.86199 L 1422.2301,367.19589 L 1421.2336,368.05983 L 1424.4806,368.57345 L 1424.9752,369.01129 z M 287.85839,682.00646 L 287.98688,680.40605 L 289.27351,676.27321 L 288.90334,675.04666 L 287.54915,673.64927 L 286.70989,671.21997 L 286.9361,669.95329 L 288.72941,668.07783 L 288.84159,667.44131 L 289.31421,667.5224 L 289.35593,669.28576 L 290.61686,670.65384 L 292.89411,671.8463 L 293.53981,671.80293 L 295.1929,669.87776 L 296.46562,669.67563 L 297.11039,669.72987 L 298.21594,667.56756 L 298.09855,665.21441 L 301.72673,663.8812 L 303.30654,664.86519 L 304.61058,664.88948 L 303.9139,663.92322 L 304.10081,660.81956 L 302.97112,657.26212 L 303.61001,654.97561 L 305.43665,654.39237 L 305.9171,653.19576 L 304.28511,650.46026 L 305.27034,648.83879 L 305.3162,648.2518 L 304.24123,647.03692 L 303.97798,645.88812 L 303.3389,645.83953 L 302.76408,644.72941 L 299.13915,647.13988 L 296.64863,647.60522 L 296.31075,649.43836 L 295.7991,649.81169 L 295.44005,649.31472 L 294.29235,648.85143 L 293.61259,645.9138 L 292.0762,644.10997 L 291.47451,644.3546 L 289.5337,644.24264 L 287.8569,642.37532 L 285.96071,642.07936 L 284.90399,641.33831 L 282.34346,641.57464 L 281.37735,642.42046 L 280.35767,641.81236 L 279.0725,641.65761 L 277.45111,642.57835 L 276.31589,642.99695 L 273.90543,642.45215 L 272.89701,638.75158 L 271.39056,636.64149 L 269.65988,629.8095 L 266.25414,627.9917 L 265.97551,627.40369 L 265.96238,624.36655 L 266.59966,623.23392 L 267.07627,622.77918 L 265.42566,621.90285 L 262.91562,622.34443 L 262.27242,622.24747 L 262.68592,621.04707 L 262.33352,619.19646 L 263.89189,618.09523 L 263.42922,617.10555 L 264.94882,615.16789 L 264.80542,613.92512 L 266.92787,612.67681 L 266.94809,612.05187 L 270.04291,612.152 L 272.35648,611.28325 L 275.89367,608.81115 L 276.47299,608.58555 L 280.1507,607.51472 L 282.90943,605.96118 L 283.54665,605.88365 L 284.42211,606.76329 L 285.00676,606.99786 L 287.63062,607.23998 L 291.57181,606.69172 L 292.16915,606.40638 L 293.72518,606.05227 L 294.22591,605.86303 L 295.52128,607.11594 L 298.02129,607.21917 L 298.55105,606.87141 L 298.69805,605.66716 L 301.61135,608.15095 L 299.6068,610.54245 L 300.14798,611.67134 L 301.81101,612.69087 L 302.18008,613.2187 L 303.30542,612.61608 L 303.91525,611.50298 L 305.71359,611.76831 L 307.65157,610.08514 L 310.81604,609.48864 L 311.75008,608.617 L 312.38596,608.47692 L 313.97137,610.86726 L 314.16229,612.48945 L 314.75138,612.63961 L 315.10387,611.46756 L 316.96312,611.50306 L 318.10514,611.95958 L 318.99776,613.56118 L 320.18144,613.8485 L 320.72725,614.15383 L 320.90794,613.57734 L 322.51212,612.91102 L 323.03126,612.57685 L 324.86151,612.36188 L 328.25148,613.8011 L 327.83698,612.0721 L 329.52158,610.3266 L 330.69129,609.88416 L 331.83966,610.36794 L 332.46821,610.38142 L 333.0104,610.71055 L 334.63438,609.73661 L 336.30993,610.39139 L 338.22728,608.04489 L 338.5433,607.506 L 337.73401,606.52369 L 337.79948,605.25662 L 338.58167,603.51929 L 339.80146,603.09276 L 340.42702,602.03866 L 342.76977,602.23275 L 343.0266,602.72161 L 344.09031,602.42305 L 344.68559,601.44217 L 345.28284,601.46662 L 346.15759,602.31967 L 348.07453,602.09353 L 350.46871,602.84635 L 351.13135,603.91674 L 352.38082,603.88022 L 352.97817,603.64321 L 352.67213,604.86494 L 353.55582,607.81795 L 355.26819,609.25293 L 355.05303,610.46204 L 357.61917,610.35131 L 359.05914,609.15115 L 359.63037,608.88474 L 362.12521,608.45185 L 368.17857,609.97984 L 368.7577,609.72663 L 369.18633,610.20843 L 370.46546,612.25363 L 373.3944,613.81768 L 374.02892,614.02759 L 378.36665,613.05246 L 379.01417,613.05092 L 382.23163,617.42859 L 382.61231,617.84622 L 382.42119,619.48481 L 383.09958,620.45383 L 383.46149,623.93459 L 385.1398,622.08697 L 386.47885,618.5455 L 386.88743,619.02743 L 389.38199,618.54667 L 391.84007,619.20255 L 392.47933,619.29132 L 392.69252,618.1394 L 395.57464,616.16958 L 395.99113,615.74506 L 397.7166,616.00604 L 398.48025,617.67104 L 399.05955,617.91222 L 398.97567,619.1003 L 399.08178,619.62455 L 398.98124,620.24535 L 398.59125,623.76599 L 396.61307,628.34873 L 397.15873,629.48334 L 396.94989,631.29735 L 398.07643,631.64964 L 398.35943,632.09852 L 397.95115,633.07617 L 398.58126,633.90078 L 399.78137,632.52176 L 400.16496,633.03388 L 402.68575,633.1031 L 407.79783,628.26816 L 408.0561,627.68567 L 408.26643,627.09785 L 410.13038,627.19749 L 411.49421,625.94852 L 412.13192,625.86557 L 411.73849,622.34005 L 412.38743,621.36852 L 413.89487,620.16569 L 415.647,617.51502 L 416.40249,615.85205 L 416.33962,614.62821 L 414.08724,611.74804 L 413.94682,611.15016 L 419.76735,610.97221 L 420.13836,609.75902 L 423.24408,609.99181 L 424.41976,608.61431 L 424.9933,608.30208 L 428.29759,608.16725 L 430.03575,609.11988 L 430.98632,611.49102 L 433.43693,613.67114 L 434.01997,613.98487 L 434.11211,614.47868 L 434.16528,615.91212 L 435.27393,618.66488 L 435.73999,619.07441 L 436.31928,619.4939 L 437.65383,616.73483 L 439.78868,617.8407 L 440.75881,617.06011 L 441.45778,615.32505 L 442.72163,615.02516 L 444.58536,615.57265 L 445.20963,615.39209 L 449.42109,620.24793 L 449.19401,622.15023 L 449.54562,622.95743 L 449.46685,623.4279 L 450.03309,624.4666 L 449.04625,626.59972 L 449.15226,628.3547 L 451.76947,628.2215 L 451.82449,626.42121 L 453.41839,625.40566 L 457.98245,624.93089 L 458.57274,624.64595 L 459.8259,625.55626 L 460.24166,625.91365 L 459.81452,626.39698 L 459.86753,628.29489 L 457.34727,630.25893 L 450.88558,630.23171 L 449.96535,631.12556 L 449.57254,631.60246 L 446.97947,634.16954 L 446.12679,635.46221 L 446.06147,635.9847 L 445.82462,636.56163 L 446.51911,638.23679 L 445.19218,639.55004 L 445.17599,641.4058 L 451.42039,639.97183 L 453.83036,640.82429 L 454.42853,641.08716 L 455.01281,640.80227 L 457.38496,641.83061 L 459.19871,643.49847 L 462.36049,642.84982 L 463.51622,643.18934 L 464.04881,643.55685 L 465.54476,646.13946 L 466.06061,646.46005 L 466.40575,646.9932 L 467.48792,647.3339 L 467.78332,648.4129 L 468.31709,648.63395 L 469.15338,651.60579 L 471.57115,654.57516 L 470.96886,656.00494 L 471.18273,656.50719 L 470.21477,657.61772 L 469.70375,657.74952 L 468.45536,657.96795 L 468.11488,659.1332 L 467.09761,659.82671 L 467.20083,662.29692 L 469.10664,664.79808 L 468.12104,667.01357 L 467.71221,667.49569 L 468.9872,668.42709 L 469.51558,668.51666 L 472.79041,666.93712 L 474.18766,664.26321 L 474.63958,663.8451 L 475.0605,665.42152 L 475.11792,665.97862 L 474.73754,667.10956 L 475.30673,669.50158 L 476.46017,669.98418 L 477.00004,670.30742 L 475.84285,672.35517 L 475.64327,672.91785 L 473.10144,674.00516 L 472.64533,674.34142 L 472.63634,674.95141 L 472.43406,676.69217 L 471.94595,678.40574 L 469.48818,680.27032 L 468.23296,680.14669 L 467.6304,680.34137 L 467.46921,681.49521 L 465.43037,682.31304 L 465.2858,683.48579 L 470.36849,683.26793 L 471.13528,685.47944 L 473.0445,685.40931 L 473.67594,685.33872 L 473.98779,687.70707 L 468.26566,687.84317 L 467.71255,688.1536 L 467.97203,688.72591 L 465.3135,690.33265 L 465.22977,691.50368 L 466.46799,693.56851 L 465.86246,696.01395 L 466.04054,697.88384 L 467.96191,698.79234 L 468.42191,699.07007 L 467.59577,702.5754 L 467.33694,704.30789 L 469.54136,705.00178 L 469.51707,705.6028 L 468.40694,706.03476 L 468.50534,706.62736 L 468.83946,707.01254 L 469.28445,707.26805 M 1254.2166,760.68135 L 1254.3401,761.28468 L 1255.8932,760.60684 L 1257.3589,757.93428 L 1258.4918,757.49243 L 1258.9289,757.93174 L 1258.1303,759.41606 L 1256.615,761.33691 L 1256.4552,762.45227 L 1257.2947,764.0986 L 1257.0866,764.68449 L 1255.666,765.88689 L 1255.8644,766.86544 L 1256.4551,767.08431 L 1257.5653,766.49046 L 1257.4113,767.07099 L 1255.2932,769.21234 L 1256.657,777.09514 L 1257.6593,778.72202 L 1257.8946,779.31642 L 1263.283,776.50355 L 1264.4235,777.89405 L 1265.1198,779.6726 L 1268.5275,782.59592 L 1269.7562,785.45703 L 1270.01,786.69066 L 1267.6608,789.60053 L 1267.3008,791.9897 L 1267.376,793.71787 L 1267.3451,794.30283 M 1125.6712,264.26241 L 1125.1169,263.96851 L 1125.1125,262.34473 L 1126.1072,261.86449 L 1126.6644,261.57554 L 1126.2582,261.10079 L 1125.3436,260.2718 L 1125.4938,259.06297 L 1127.3767,259.2837 L 1128.684,257.19596 L 1128.5613,256.61532 L 1128.122,254.92862 L 1127.4875,254.95569 L 1127.6123,254.33463 L 1127.4474,253.72254 L 1127.3794,253.13074 L 1126.0944,251.84382 L 1126.395,251.31951 L 1130.7861,248.64636 L 1131.376,248.35138 L 1131.4008,247.71807 L 1130.7298,247.6526 L 1128.8651,246.98033 L 1128.4554,245.78651 L 1127.0266,244.47014 L 1128.6023,243.61115 L 1131.0692,243.75563 L 1131.6513,243.56086 L 1133.422,241.12199 L 1134.0384,240.88662 L 1133.8858,240.32043 L 1132.8598,239.6639 L 1132.3332,238.15697 L 1131.8383,237.97501 L 1130.8514,237.60779 L 1131.0256,237.04324 L 1132.3191,233.99738 L 1132.974,234.01202 L 1136.8857,234.02702 L 1137.1072,233.08208 L 1137.5487,232.71888 L 1137.9311,232.26973 L 1137.8948,231.12692 L 1137.329,231.36265 L 1136.3033,230.02617 L 1135.1156,229.81586 L 1132.8732,229.06222 L 1133.174,226.37993 L 1133.7555,226.50539 L 1133.3326,226.15005 L 1131.7338,225.58166 L 1131.0607,225.40135 L 1130.4071,225.37721 L 1127.8618,224.97633 L 1127.213,224.83424 L 1124.0544,223.9149 L 1122.1164,224.38051 L 1122.0727,224.33113 L 1121.543,224.13454 L 1121.166,223.73915 L 1120.6768,223.40174 L 1118.8553,224.82107 L 1118.0225,225.22797 L 1116.6107,225.73839 L 1116.1992,225.41836 L 1115.8001,225.08368 L 1116.2858,223.94672 L 1116.1832,222.19309 L 1118.8235,221.50565 L 1119.8596,222.31343 L 1121.2228,222.46595 L 1120.8885,221.49651 L 1121.2362,221.10058 L 1120.783,220.69623 L 1120.2756,220.35224 L 1120.6452,219.94185 L 1121.6418,218.8113 L 1122.5376,217.8916 L 1124.4613,217.56041 L 1124.9901,217.1727 L 1124.6438,216.70855 L 1124.2706,216.26215 L 1123.6906,216.09792 L 1121.8888,213.93904 L 1121.9846,213.23257 L 1121.6097,212.75343 L 1120.1594,210.84893 L 1119.6642,211.02376 L 1119.1605,211.1772 L 1118.7031,210.75492 L 1115.9539,208.36287 L 1115.5639,208.47809 L 1115.1798,208.34861 L 1115.2968,207.7965 L 1114.6043,206.26324 L 1114.4639,205.71076 L 1113.4844,204.27352 L 1113.0407,201.86299 L 1112.2145,200.89501 L 1111.7853,200.41258 L 1113.2046,200.62855 L 1113.6761,200.95079 L 1116.1436,200.37252 L 1117.7359,199.38132 L 1117.9865,198.82848 L 1118.9894,197.28279 L 1119.1831,196.70013 L 1122.1237,196.25226 L 1122.5927,196.63192 L 1123.2908,196.30968 L 1123.6993,193.89787 L 1124.5998,192.94233 L 1124.0225,192.71263 L 1122.8328,192.37248 L 1122.6694,190.23608 L 1122.2186,190.52285 L 1121.6941,190.66457 L 1121.0835,190.90213 L 1119.5161,192.79913 L 1119.1314,193.23237 L 1118.0282,192.76731 L 1116.313,193.27352 L 1116.3668,192.66033 L 1116.364,191.43285 L 1115.2965,190.72565 L 1116.4232,188.91296 L 1116.7264,188.44296 L 1116.4585,187.61872 L 1116.9077,187.1447 L 1117.3283,185.56645 L 1115.6235,184.43041 L 1115.3074,183.97522 L 1114.8074,183.56429 L 1113.5217,183.26218 L 1112.9666,182.86094 L 1109.7864,180.31527 L 1108.0099,180.47455 L 1107.4504,180.74613 L 1104.9968,181.22454 L 1104.4775,181.60163 L 1102.8809,182.68173 L 1102.5005,182.38893 L 1102.208,182.01915 L 1101.806,182.46628 L 1099.3304,181.23441 L 1099.2317,179.41751 L 1100.2316,177.17615 L 1099.958,176.61983 L 1099.9485,175.76487 L 1099.3833,176.07284 L 1098.8738,176.31424 L 1096.7959,177.20687 L 1096.1682,177.3049 L 1095.544,177.42065 L 1094.8539,177.54795 L 1092.0782,177.96838 L 1090.7616,177.50771 L 1090.2887,177.3806 L 1089.4209,177.72991 L 1088.7987,177.54465 L 1089.1125,175.82686 L 1088.5119,174.17967 L 1088.2444,173.65335 L 1090.0531,173.358 L 1090.6089,173.63506 L 1090.8518,170.58336 L 1089.9849,168.23081 L 1088.0997,167.79555 L 1087.5615,167.46125 L 1087.9399,166.8711 L 1089.9618,162.98254 L 1092.0486,161.44892 L 1092.5385,161.0283 L 1092.9154,160.70259 L 1094.1848,159.30576 L 1096.1687,159.36848 L 1096.8325,159.37909 L 1097.3203,159.05083 L 1097.7674,158.67776 L 1097.398,158.18324 L 1094.7018,154.80401 L 1094.3356,154.3278 L 1092.8539,153.26106 L 1091.6368,153.15737 L 1091.2427,152.79435 L 1090.1071,151.67751 L 1089.7019,152.20182 L 1088.5155,152.84976 L 1085.1072,152.73034 L 1083.8227,154.96311 L 1083.7773,155.0957 L 1087.481,157.79024 L 1087.9888,158.20793 L 1087.0037,159.02778 L 1084.4727,158.25859 L 1083.9228,158.60862 L 1082.6816,161.88673 L 1082.8083,163.10471 L 1082.2608,163.40389 L 1079.5884,161.83132 L 1078.6418,158.99377 L 1076.0504,159.0351 L 1074.2908,158.30779 L 1074.1384,157.70502 L 1072.9462,158.08577 L 1072.4746,159.73095 L 1069.2499,160.23735 L 1067.4978,161.08097 L 1065.6969,159.40817 L 1065.3427,158.23902 L 1062.8233,158.58393 L 1062.6933,158.01756 L 1061.7362,157.6112 L 1061.4007,158.11375 L 1059.6491,158.41733 L 1059.1179,159.89555 L 1058.7895,159.34032 L 1057.5078,159.5157 L 1056.269,159.019 L 1055.2991,156.74307 L 1054.6355,156.57757 L 1051.8434,158.25146 L 1051.229,158.51919 L 1049.9118,158.56272 L 1047.5888,157.30543 L 1047.1987,156.77508 L 1044.7587,154.58986 L 1044.1575,154.28536 L 1042.1493,153.97812 L 1041.0531,152.38251 L 1040.3692,152.32454 L 1040.1644,151.66654 L 1039.5468,151.39203 L 1038.5517,149.74759 L 1035.6106,151.21062 L 1034.7056,150.26532 L 1034.3003,149.85018 L 1033.7129,148.88385 L 1034.174,148.44129 L 1036.573,146.33616 L 1034.0738,144.33876 L 1034.0738,144.30602 L 1033.5519,144.04323 L 1032.4351,142.78502 L 1032.1044,142.31758 L 1032.0653,141.2203 L 1030.6958,140.46721 L 1031.0142,138.63366 L 1033.7263,136.64613 L 1036.0665,136.02068 L 1039.7809,133.87131 L 1039.2298,133.79213 L 1038.8763,132.97521 L 1038.415,132.54507 L 1036.6258,131.89768 L 1035.9816,131.68573 L 1035.0781,130.89148 L 1033.991,132.27203 L 1033.3073,132.28831 L 1030.807,131.27918 L 1028.0862,130.99901 L 1027.2698,130.12833 L 1026.8276,130.52207 L 1024.2294,131.98784 L 1024.1915,131.39092 L 1024.1083,130.19855 L 1022.3437,130.85271 L 1019.9582,129.97709 L 1019.4802,129.68412 L 1018.4312,128.42554 L 1018.0633,127.96523 L 1016.4011,126.35663 L 1015.8884,125.98173 L 1014.7204,125.85883 L 1014.664,125.30288 L 1014.4579,124.21584 L 1014.6235,123.663 L 1013.9768,122.68808 L 1014.1118,121.01035 L 1013.8043,120.43025 L 1013.3553,119.93557 L 1013.4784,118.69729 L 1011.7707,115.3645 L 1011.798,114.73467 L 1011.5996,114.13647 L 1008.8375,107.95607 L 1008.662,107.36958 L 1008.5404,106.77138 L 1006.8611,103.54448 L 1006.126,101.25064 L 1005.658,100.81868 L 1004.8776,97.962651 L 1003.9106,97.176271 L 1003.5482,96.673719 L 1003.2374,96.172814 L 1003.1082,95.033477 L 1001.54,94.107927 L 1001.6909,93.515765 L 1001.1988,93.051618 L 998.99901,90.573608 L 996.2802,90.02241 M 1122.7666,250.54721 L 1122.1586,250.23833 L 1120.8508,249.87586 L 1118.9373,250.20979 L 1118.655,250.74728 L 1117.3687,252.80521 L 1115.5962,253.46065 L 1115.2422,252.94402 L 1114.3191,252.12582 L 1114.5526,250.32355 L 1113.5819,248.8254 L 1114.7242,246.62975 L 1115.2413,246.89987 L 1116.142,246.2159 L 1116.6782,245.98053 L 1117.0799,246.30222 L 1117.5769,246.47376 L 1118.7957,246.37372 L 1119.1954,245.43154 L 1119.3633,244.88472 L 1121.8603,243.39389 L 1122.1877,242.31161 L 1125.0757,242.82277 L 1125.6464,242.67993 L 1125.9246,243.83481 L 1126.3835,244.25745 L 1125.9032,244.70788 L 1122.8292,247.11859 L 1123.3651,249.54448 L 1123.4085,250.16701 L 1122.7666,250.54721 z M 628.22538,502.28319 L 630.20297,502.2349 L 631.78387,501.14274 L 632.36517,500.84097 L 634.73866,497.27104 L 635.31588,496.98757 L 635.75491,496.56952 L 635.85814,495.98658 L 640.49853,495.02212 L 643.52663,493.66229 L 644.20167,493.56979 L 644.60054,493.04016 L 644.98877,492.5027 L 647.75189,489.87918 L 648.31612,489.55253 L 647.22176,489.08609 L 645.7458,487.28852 L 645.36297,486.8189 L 647.16717,485.08945 L 648.21186,485.80935 L 652.01776,486.51262 L 653.21673,486.05811 L 653.2659,487.9839 L 652.96699,488.56895 L 655.61447,488.61283 L 657.3487,487.69711 L 657.90209,487.34671 L 658.31122,487.2334 L 658.73084,487.15921 L 661.2086,486.8606 L 661.91277,487.85708 L 662.53235,487.96512 L 663.66561,487.27054 L 665.08636,485.08395 L 668.32913,484.34598 L 669.83338,484.67869 L 670.10415,485.13806 L 671.92804,484.57682 L 671.74356,483.34638 L 674.20035,482.68503 L 675.24297,481.10331 L 675.82653,480.56391 L 679.88797,480.25212 L 680.8651,480.78671 L 680.82876,481.39149 L 682.64743,480.75195 L 683.21434,481.06033 L 683.44532,482.28593 L 683.85959,482.76718 L 685.44261,484.75383 L 686.07402,484.9535 L 688.34714,484.6369 L 688.65477,484.56102 L 689.17523,485.56033 L 687.95824,485.89955 L 687.85322,487.04932 L 690.70852,489.4277 L 690.92838,489.55209 L 692.37404,487.41808 L 692.9228,487.04837 L 692.4088,485.58818 L 692.15088,485.07521 L 692.84942,483.53299 L 693.06537,483.01126 L 695.734,482.99102 L 696.53524,483.99646 L 696.85837,484.55514 L 698.26162,483.90348 L 698.78602,483.96409 L 700.72085,483.8205 L 701.86583,484.41913 L 702.53211,484.49025 L 703.98362,484.53351 L 705.35158,485.35904 L 705.83352,485.63346 L 707.43858,486.09651 L 708.31697,485.41335 L 708.73691,485.03695 L 709.46222,486.04075 L 711.8009,486.89649 L 712.60355,488.47371 L 715.43227,489.84301 L 715.85967,489.429 L 718.08083,490.37025 L 718.67141,490.51537 L 716.30945,487.60818 L 716.63793,487.06547 L 718.47114,486.624 L 718.84799,484.8729 L 720.10556,486.10818 L 721.13056,486.29971 L 723.45878,485.48433 L 724.61633,485.77753 L 725.14403,486.11069 L 725.83036,485.74364 L 726.97232,484.36192 L 727.17021,483.76256 L 730.3238,481.30835 L 730.73862,480.79178 L 730.70516,480.06085 L 731.78078,479.49231 L 733.43719,479.89885 L 733.79545,480.37865 L 733.85464,480.33586 L 733.50299,478.75089 L 733.38992,478.2197 L 737.65061,476.14092 L 740.98022,475.38869 L 741.98861,474.32984 L 741.97684,473.83032 L 742.45288,472.74185 L 742.70191,472.1891 L 742.95891,470.47697 L 744.52774,468.79793 L 744.85142,468.31061 L 747.26958,468.90261 L 749.97927,466.46997 L 750.49416,466.12717 L 750.78406,465.70689 L 751.88393,466.03922 L 752.93712,467.32486 L 753.11478,467.84791 L 753.72659,470.28803 L 755.61189,470.52433 L 756.24825,470.32016 L 757.30675,469.78932 L 758.00752,468.2206 L 758.33905,467.74505 L 761.84101,466.76184 L 762.74816,467.3845 L 763.06122,467.88945 L 764.33951,467.84694 L 765.16366,466.93324 L 765.56327,464.54907 L 767.15867,463.6537 L 768.97943,463.39443 L 769.59011,463.30025 L 769.838,466.09222 L 770.41059,466.31305 L 773.1547,465.53655 L 773.70211,465.34059 L 775.11074,466.65417 L 776.33373,466.98768 L 776.80332,467.43331 L 779.76458,466.18143 L 782.08327,462.52902 L 782.39911,461.98723 L 785.80617,463.78269 L 785.27306,465.61013 L 786.87377,465.9985 M 544.69105,1457.665 L 546.155,1458.0376 L 546.63253,1457.6725 L 548.93581,1455.8053 L 550.97309,1456.9156 L 550.68215,1459.9437 L 551.17227,1459.6126 L 555.10088,1460.3679 L 556.75275,1463.5312 L 557.18817,1463.4764 L 557.75155,1463.5535 L 561.91185,1463.6259 L 565.14356,1462.3507 L 565.72128,1462.2236 L 565.83432,1462.1275 L 567.30513,1461.8942 L 571.23205,1463.0961 L 574.70578,1460.7017 L 575.2225,1460.3905 L 575.99499,1459.9174 L 576.40074,1459.7185 L 580.56776,1457.1996 L 581.86091,1455.8677 L 582.30407,1455.4371 L 583.00615,1454.7293 L 583.35055,1454.3691 L 583.88309,1454.2288 L 586.06177,1454.3779 L 586.62777,1454.5125 L 587.91877,1455.7287 L 588.60604,1457.4387 L 591.16126,1459.0834 L 591.54647,1460.2106 L 590.73126,1461.0217 L 587.83576,1461.2325 L 587.23367,1461.2707 L 586.80519,1461.5672 L 586.36159,1461.8381 L 586.61236,1463.3249 L 586.63477,1464.0742 L 587.13932,1464.3944 L 588.64609,1463.4946 L 589.31073,1464.4605 L 589.73981,1464.8847 L 590.29756,1464.6892 L 590.68864,1462.909 L 591.27584,1462.8538 L 591.83071,1462.7358 L 593.38967,1462.1718 L 594.5218,1460.1814 L 596.76891,1460.6175 L 597.57233,1459.7781 L 597.84245,1458.5943 L 598.27033,1458.9169 L 599.37252,1461.2537 L 602.27373,1460.6842 L 604.43699,1461.4929 L 604.69765,1462.0602 L 605.10597,1462.4877 L 605.82789,1461.7084 L 609.06692,1462.0634 L 608.89079,1461.1467 L 609.4763,1459.4526 L 609.37985,1457.0189 L 607.95724,1456.0392 L 609.5951,1455.4482 L 612.8892,1456.3582 L 614.47697,1456.9018 L 615.72516,1455.7514 L 616.24504,1455.9951 L 617.2128,1456.693 L 617.75933,1456.4685 L 618.33119,1454.7425 L 619.23924,1453.9595 L 619.78355,1453.7137 L 621.55551,1453.6056 L 624.36752,1454.4881 L 624.83892,1454.6191 L 625.31702,1454.7219 L 625.80741,1455.0169 L 627.99331,1454.8594 L 628.05573,1452.9041 L 628.65579,1452.7998 L 630.76055,1451.6085 L 632.98662,1452.5245 L 633.95461,1451.5562 L 634.1487,1451.1023 L 635.71937,1450.7537 L 635.65,1448.9965 L 636.6151,1448.476 L 637.1682,1448.3214 L 641.24536,1452.2339 L 641.75042,1452.6046 L 641.92122,1453.1157 L 642.45287,1454.5381 L 643.38131,1455.2303 L 644.46918,1455.1168 L 645.02464,1455.2455 L 644.81596,1454.0417 L 645.11526,1452.2286 L 646.00371,1451.4505 L 646.42837,1451.8906 L 647.47451,1452.3793 L 650.95346,1450.2225 L 652.96105,1449.1701 L 653.52435,1449.1197 L 651.39368,1451.8727 L 651.6804,1452.4041 L 653.87831,1453.0335 L 654.44643,1452.9056 L 654.75978,1453.5691 L 656.27346,1454.4598 L 656.83305,1454.6203 L 656.7904,1455.2651 L 656.89921,1455.9023 L 658.71246,1455.7305 L 662.88399,1452.1529 L 663.5596,1453.1662 L 663.91971,1454.3726 L 664.13771,1454.9728 L 664.69393,1454.9067 L 665.24019,1454.6011 L 668.15278,1452.239 L 668.67992,1451.9162 L 670.44659,1450.2782 L 670.40264,1450.1385 L 670.7773,1449.6553 L 675.76825,1446.4128 L 676.19723,1446.7817 L 677.79535,1445.1941 L 678.78651,1445.7048 L 678.84178,1446.2308 L 680.00402,1446.9919 L 680.01238,1447.5212 L 677.80582,1450.2347 L 676.38097,1451.0016 L 677.7343,1453.6796 L 678.14783,1453.2761 L 679.25263,1453.141 L 679.72698,1452.8226 L 683.26149,1450.3224 L 683.60372,1450.7786 L 683.93979,1451.2382 L 684.37111,1450.7949 L 685.41214,1450.3309 L 687.20299,1450.4829 L 688.10984,1451.3216 L 689.8965,1451.5006 L 690.11523,1452.0666 L 690.49947,1452.5265 L 692.05276,1453.4314 L 695.36544,1452.1801 L 696.19417,1451.3795 L 696.40062,1450.7936 L 696.52736,1449.7596 L 697.40008,1450.3799 L 698.30334,1449.1575 L 698.78931,1447.4071 L 702.14898,1446.6699 L 702.79596,1447.682 L 703.37658,1447.6784 L 703.9129,1447.2585 M 1008.7258,1615.7024 L 1009.628,1617.2194 L 1009.9953,1617.6983 L 1010.0032,1617.7737 L 1010.0122,1618.4484 L 1011.5119,1617.874 L 1012.0555,1617.9254 L 1011.917,1617.0354 L 1012.0301,1616.592 L 1015.3845,1614.1471 L 1018.203,1613.2118 L 1020.1939,1609.4205 L 1021.1807,1608.7168 L 1021.2105,1607.452 L 1022.5611,1608.5675 L 1024.2331,1608.9818 L 1028.0231,1607.9224 L 1028.5222,1607.6217 L 1031.1034,1604.9148 L 1032.6803,1603.974 L 1032.9042,1602.0788 L 1032.4544,1600.2227 L 1032.3157,1600.0174 L 1032.231,1599.554 L 1032.0677,1598.6262 L 1032.3331,1598.1039 L 1031.9246,1596.3924 L 1031.158,1595.5495 L 1031.2723,1594.3704 L 1031.2446,1593.738 L 1031.234,1590.5926 L 1030.6521,1590.5367 L 1029.7616,1589.9257 L 1029.7306,1587.4618 L 1028.5107,1586.161 L 1028.8439,1584.3789 L 1030.2446,1583.3702 L 1034.0875,1582.484 L 1034.6405,1582.3396 L 1036.0726,1581.9527 L 1038.0368,1582.5636 L 1038.5016,1582.7939 L 1044.9296,1584.0616 L 1045.5198,1583.9623 L 1046.1996,1583.7662 L 1050.5597,1581.9678 L 1051.0408,1581.5944 L 1052.5118,1582.0938 L 1052.9111,1582.5036 L 1053.33,1582.9269 L 1057.8354,1582.3559 L 1058.3989,1582.4941 L 1059.5518,1582.826 L 1060.1463,1582.8854 L 1064.0481,1584.2078 L 1068.1016,1583.8766 L 1068.6871,1583.8199 L 1071.781,1584.0958 L 1071.8811,1584.1127 L 1074.0157,1585.1984 L 1079.7632,1584.5256 L 1081.4202,1583.8856 L 1082.8633,1581.9028 L 1083.1687,1581.361 L 1084.1249,1577.4074 L 1087.3229,1573.5512 L 1089.6298,1572.9167 L 1090.2272,1572.817 L 1093.4726,1570.4054 L 1096.7378,1569.5294 L 1097.2057,1569.1746 L 1099.1341,1572.2802 L 1101.9062,1573.1914 L 1102.4851,1573.319 L 1103.4161,1574.8244 L 1103.7653,1575.2969 L 1112.3223,1578.6517 L 1112.8452,1578.9981 L 1115.3294,1580.7351 L 1116.3657,1581.4228 M 1693.5334,617.64421 L 1692.8922,617.65553 L 1688.4405,617.23068 L 1686.0341,616.47845 L 1685.8851,615.96465 L 1685.6241,615.49642 L 1686.1156,613.11181 L 1686.2543,612.5043 L 1680.518,610.67617 L 1679.9026,610.55156 L 1679.9697,609.96435 L 1680.2352,606.51869 L 1680.5418,605.99429 L 1680.3335,603.68227 L 1680.7635,602.62187 L 1680.1933,602.40289 L 1677.4291,601.13122 L 1676.6934,600.19824 L 1675.5158,600.00072 L 1673.2785,599.11909 L 1672.8382,598.71259 L 1672.1758,598.79645 L 1670.8673,597.36042 L 1664.892,594.58942 L 1661.5854,594.95615 L 1660.0357,593.73258 L 1660.247,592.49166 L 1660.1816,591.85019 L 1661.2707,591.69759 L 1662.0034,590.86598 L 1662.3445,590.43053 L 1662.673,590.0075 L 1659.4894,590.7384 L 1657.6024,590.32669 L 1658.3658,588.11438 L 1657.1704,586.67409 L 1657.2091,586.10639 L 1656.6474,585.89262 L 1656.123,585.60211 L 1655.9137,585.01109 L 1655.1256,584.05218 L 1653.2561,584.02795 L 1652.6267,583.88282 L 1651.4436,584.36827 L 1648.0416,582.98913 L 1646.1435,583.17039 L 1645.5026,583.06456 M 1339.52,973.29351 L 1339.7866,974.21545 L 1340.0352,974.81254 L 1340.9787,975.68493 L 1342.0239,976.43731 L 1342.3475,976.99551 L 1341.5114,980.15453 L 1341.1598,980.66366 L 1340.4404,981.66846 L 1340.0326,982.14113 L 1338.4898,984.09323 L 1338.429,984.63438 L 1337.8623,986.12281 L 1337.2914,986.85078 L 1336.986,987.19868 L 1336.6011,987.63122 L 1335.4475,988.89601 L 1335.648,990.53187 L 1336.4913,991.16207 L 1337.0966,992.71833 L 1337.1843,993.27086 L 1336.8465,994.41267 L 1336.4981,994.89735 L 1334.3834,996.91935 L 1335.1476,999.15837 L 1335.288,999.65185 L 1335.2406,1000.6759 L 1334.9322,1001.8895 L 1335.5569,1004.2891 L 1335.5691,1004.9166 L 1335.5064,1005.0958 L 1335.6422,1006.2687 L 1336.2796,1010.3938 L 1335.9842,1011.5567 L 1335.7179,1012.0982 L 1335.5021,1012.4784 L 1335.0634,1012.9406 L 1333.2015,1014.6726 L 1333.4064,1016.4303 L 1334.4187,1016.9652 L 1334.9957,1017.0472 L 1336.5554,1017.5599 L 1337.1044,1017.4912 L 1338.122,1016.8841 L 1339.2408,1016.9718 L 1340.3699,1019.0501 L 1340.6309,1019.585 L 1343.0062,1020.0881 L 1343.2612,1020.544 L 1343.3756,1022.1082 L 1342.5422,1024.2464 L 1342.6791,1024.5635 L 1347.6481,1021.7772 L 1348.2398,1021.5395 L 1348.7438,1022.5814 L 1350.9684,1023.3202 L 1351.1369,1024.4814 L 1351.1457,1025.0742 L 1351.8069,1024.4982 L 1352.2353,1024.4101 L 1352.5543,1026.9228 L 1352.632,1027.5509 L 1355.2319,1028.55 L 1355.8182,1028.6269 L 1354.8348,1031.1 L 1354.7503,1031.6454 L 1356.6961,1033.8744 L 1357.0553,1035.6611 L 1357.3492,1036.1924 L 1357.1798,1036.7878 L 1357.0291,1040.4703 L 1357.7809,1041.4419 L 1360.6046,1040.4596 L 1361.1968,1040.5767 L 1363.1466,1040.5272 L 1363.5828,1040.83 L 1364.844,1041.1116 L 1366.4358,1040.7542 L 1366.9472,1040.5083 L 1367.4843,1040.3292 L 1368.8876,1041.2235 L 1369.4435,1041.1538 L 1369.953,1040.8751 L 1372.1155,1040.6535 L 1373.0623,1040.0182 L 1374.1994,1040.0628 L 1374.6908,1040.3648 L 1378.4083,1040.0231 L 1379.044,1040.016 L 1379.5816,1039.8704 L 1380.1208,1039.7332 L 1378.8125,1044.5286 L 1378.3038,1044.8794 L 1375.3953,1043.85 L 1374.8055,1043.6698 L 1374.9325,1044.8594 L 1374.8748,1045.4583 L 1376.1061,1048.3235 L 1378.5692,1048.2126 L 1379.1685,1048.392 L 1378.9221,1048.9743 L 1378.7058,1050.8434 L 1379.2929,1053.253 L 1383.8284,1053.9567 L 1384.2565,1054.3607 L 1385.419,1056.4063 L 1386.9753,1057.3286 L 1387.4816,1057.6798 L 1387.1537,1059.5429 L 1386.9869,1060.1641 L 1386.5734,1059.7226 L 1385.4987,1060.2287 L 1383.8767,1059.52 L 1380.5276,1060.7794 L 1380.8813,1062.6227 L 1378.8602,1064.0539 L 1378.6141,1064.6376 L 1377.3935,1064.835 L 1374.1684,1067.7736 L 1374.5043,1068.5937 L 1374.6787,1069.0015 L 1372.1775,1070.8237 L 1371.9502,1073.3575 L 1372.9157,1074.998 L 1372.4278,1075.3612 L 1371.6049,1076.1738 L 1367.6745,1074.6483 L 1365.9966,1075.3597 L 1366.3591,1075.879 L 1367.5511,1076.2031 L 1367.1882,1078.0755 L 1367.1206,1078.1555 L 1366.5575,1077.8645 L 1363.7261,1076.4328 L 1358.8203,1077.4129 L 1358.1047,1077.71 L 1356.3206,1077.4793 L 1353.5851,1078.4734 L 1353.1231,1078.4664 L 1352.2569,1079.0175 L 1349.5883,1080.433 L 1349.7878,1080.94 L 1349.3109,1083.0495 L 1348.179,1082.4284 L 1347.6712,1082.1272 L 1345.635,1080.9997 L 1343.3931,1080.6364 L 1342.7856,1080.7669 L 1339.1299,1081.0607 L 1339.2797,1081.6845 L 1343.0918,1083.812 L 1343.838,1084.5881 L 1344.0493,1085.0937 L 1344.4352,1085.9274 L 1344.6428,1086.339 L 1346.1282,1088.4625 L 1346.6478,1088.848 L 1350.0012,1090.1388 L 1351.2335,1091.3924 L 1351.1109,1091.9891 L 1349.7845,1093.9621 L 1348.1851,1095.8788 L 1347.7657,1096.3408 L 1347.2693,1096.9338 L 1346.7329,1097.1963 L 1345.1202,1097.9706 L 1343.7443,1099.9329 L 1342.1853,1100.8197 L 1341.9133,1100.9756 L 1341.3824,1101.2386 L 1339.492,1102.5942 L 1339.5013,1103.1395 L 1339.6604,1104.764 L 1339.4266,1105.2669 L 1338.977,1105.4173 L 1338.5168,1105.1707 L 1336.574,1105.1442 L 1336.2172,1104.6919 L 1334.1511,1102.0319 L 1334.7311,1101.8046 L 1334.2338,1099.3909 L 1332.1328,1098.0683 L 1331.721,1098.5165 L 1329.3469,1101.0427 L 1327.083,1100.7366 L 1326.516,1100.5828 L 1325.6622,1101.3816 L 1325.4242,1100.2717 L 1324.5856,1099.4926 L 1324.0247,1099.6782 L 1323.1193,1097.5722 L 1323.5865,1097.155 L 1323.1323,1091.5814 L 1324.8574,1089.8292 L 1324.9825,1089.2092 L 1325.1294,1089.1724 L 1325.3682,1088.6544 L 1327.494,1087.0302 L 1327.8668,1086.4816 L 1326.3725,1084.4695 L 1324.1295,1085.3812 L 1323.5114,1085.4483 L 1322.9519,1085.1732 L 1322.8976,1085.7608 L 1322.6124,1086.8781 L 1324.2876,1089.1388 L 1323.3075,1089.3481 L 1322.3589,1089.6983 L 1322.0905,1089.1143 L 1321.2158,1088.1978 L 1319.9682,1084.5627 L 1318.5969,1083.2419 L 1318.0747,1083.5259 L 1317.0786,1084.1683 L 1315.0859,1084.1102 L 1314.674,1083.6506 L 1312.9963,1082.0005 L 1312.5106,1081.7413 L 1311.0893,1082.5693 L 1310.042,1082.3849 L 1309.4546,1082.4553 L 1306.8306,1083.7601 L 1305.8884,1083.0489 L 1304.7229,1082.9831 L 1304.6393,1081.7515 L 1304.1312,1081.4131 L 1299.9902,1081.3624 L 1300.0357,1080.8699 L 1300.837,1079.7235 L 1300.5823,1079.2408 L 1299.1076,1078.5731 L 1297.74,1077.41 L 1296.6588,1074.5397 L 1296.1499,1074.3301 L 1294.2479,1073.3308 L 1293.695,1073.37 L 1292.7092,1072.8944 L 1292.5304,1071.968 L 1292.0404,1071.5879 L 1290.4735,1068.9507 L 1290.8871,1068.6539 L 1290.4665,1067.3294 L 1289.8782,1067.0884 L 1287.0964,1065.7429 L 1287.451,1065.2766 L 1287.0931,1063.5769 L 1288.049,1062.1552 L 1287.6041,1061.7634 L 1287.0452,1060.7383 L 1287.9559,1059.8879 L 1288.2621,1058.0216 L 1289.4823,1056.5922 L 1290.3009,1053.541 L 1291.7787,1052.4361 L 1291.5587,1051.9514 L 1290.2293,1050.3955 L 1289.6122,1050.473 L 1288.0261,1051.4254 L 1286.2413,1051.122 L 1286.3875,1050.5545 L 1284.9678,1047.4516 L 1286.1314,1046.0367 L 1288.4278,1045.0878 L 1288.3232,1041.3654 L 1289.3465,1041.2672 L 1289.8695,1041.6299 L 1288.9134,1038.9894 L 1289.1905,1038.4734 L 1288.3763,1037.6404 L 1288.9505,1037.5502 L 1289.3449,1035.9623 L 1290.2199,1035.3272 L 1289.765,1034.8987 L 1289.2677,1033.773 L 1290.2201,1032.9849 L 1290.9205,1031.2394 L 1290.7097,1030.2626 L 1290.0956,1030.3631 L 1286.4857,1030.0795 L 1284.1293,1028.1159 L 1283.8551,1027.5442 L 1283.4291,1025.6917 L 1282.0726,1024.3747 L 1281.6931,1023.1816 L 1282.22,1022.861 L 1284.6027,1021.0096 L 1284.0261,1020.845 L 1283.6117,1019.9423 L 1284.5788,1018.4169 L 1283.3797,1018.0716 L 1281.5454,1016.3722 L 1280.3233,1016.1568 L 1277.9854,1014.1261 L 1278.8289,1013.2256 L 1277.3413,1010.5103 L 1275.6863,1009.666 L 1275.2697,1009.2672 L 1273.5649,1009.0473 L 1272.1813,1008.0325 L 1272.0915,1006.8749 L 1271.9286,1006.3146 L 1272.575,1006.4096 L 1274.2856,1005.8755 L 1274.9117,1006.9362 L 1275.5195,1007.0006 L 1277.3625,1006.398 L 1278.7665,1007.6366 L 1279.2523,1006.6347 L 1280.2751,1004.6675 L 1280.0628,1004.1387 L 1279.7997,1003.5461 L 1279.4952,1001.6555 L 1279.3967,1001.6778 L 1278.8328,1001.8052 L 1277.2035,1002.2465 L 1276.2266,1001.623 L 1275.7164,1001.2335 L 1274.9371,999.47298 L 1273.7645,999.01105 L 1273.8158,998.45087 L 1272.5652,996.60989 L 1272.8613,996.13326 L 1273.3255,995.74472 L 1274.4814,996.09909 L 1276.8706,995.78644 L 1278.418,993.99989 L 1278.7603,993.52624 L 1278.9359,991.2559 L 1279.3862,991.12092 L 1280.0717,990.65926 L 1280.0215,990.05559 L 1280.1892,988.2576 L 1279.5136,987.25467 L 1279.9309,985.48766 L 1280.3751,985.07754 L 1281.2508,984.24039 L 1281.5538,981.83372 L 1282.5105,981.2392 L 1282.8979,980.82278 L 1285.9201,980.31606 L 1286.5484,980.28292 L 1288.522,978.20785 L 1289.108,978.23451 L 1289.5669,978.60367 L 1292.4524,980.53955 L 1293.605,980.74789 L 1294.4024,977.91837 L 1295.3518,977.15368 L 1296.2918,974.90255 L 1295.8593,974.52209 L 1293.2199,972.6726 L 1292.7431,972.40647 L 1292.2136,972.2756 L 1291.7769,971.85752 L 1290.9255,970.99896 L 1291.0135,969.82117 L 1294.3149,968.45535 L 1294.1616,967.74335 L 1293.9219,967.18724 L 1292.2635,965.43973 L 1289.9,965.40885 M 1193.9014,868.54365 L 1194.4885,869.50105 L 1195.7683,870.11286 L 1196.2327,869.79145 L 1197.9102,870.68656 L 1202.757,869.29445 L 1203.3349,869.02304 L 1207.7212,868.08777 L 1212.862,870.6732 L 1213.4189,870.99602 L 1212.9262,872.11916 L 1214.2071,874.20781 L 1214.8099,877.21732 L 1218.298,876.64688 L 1218.8461,876.88924 L 1220.2009,875.72838 L 1221.1695,873.56655 L 1222.2562,873.0293 L 1224.9786,872.25577 L 1225.1471,871.68638 L 1226.1512,872.41523 L 1226.7719,872.42574 L 1227.5879,871.51861 L 1231.7041,870.02075 L 1232.3651,868.31438 L 1234.824,867.65009 L 1236.0133,866.14237 L 1236.1393,865.51303 L 1236.5846,865.6127 L 1236.8121,865.03482 L 1240.7666,863.37933 L 1243.1638,863.50566 L 1245.623,861.70353 L 1246.3399,862.72776 L 1246.6781,863.25839 L 1247.915,863.09098 L 1248.7072,861.43621 L 1248.6383,860.81593 L 1248.5046,860.18437 L 1248.1891,856.3793 L 1248.1767,855.81127 L 1246.608,853.5886 L 1246.4137,852.61676 L 1246.9171,852.36102 L 1247.3817,851.90551 L 1253.5591,848.49121 L 1253.4605,847.85873 L 1252.8405,846.05612 L 1250.2815,842.49448 L 1249.8261,842.06322 L 1248.2819,841.05373 L 1246.4486,840.79852 L 1246.3135,840.22293 L 1245.4843,837.4125 L 1245.4543,836.19739 L 1246.4957,834.1099 L 1245.8261,832.42374 L 1247.2557,831.2285 L 1247.6086,830.08091 L 1245.493,825.52479 L 1244.2989,825.88439 L 1241.895,827.80001 L 1240.173,827.04152 L 1240.1617,825.77419 L 1240.2865,825.14982 L 1240.8883,825.24633 L 1245.017,822.79611 L 1245.4227,822.34566 L 1246.0764,821.30664 L 1247.6849,820.29779 L 1248.5015,818.61226 L 1248.381,817.36213 L 1248.1677,816.76854 L 1248.1555,815.51599 L 1249.7791,812.10375 L 1247.303,809.16213 L 1246.1229,808.63981 L 1245.7088,808.14221 L 1245.8926,806.90047 L 1247.4469,804.99208 L 1246.9495,802.60025 L 1247.7525,801.65324 L 1248.432,800.64437 L 1252.1535,801.32127 L 1252.792,800.30192 L 1252.5247,799.73324 L 1253.1523,799.6467 L 1254.5855,800.8781 L 1255.2164,800.93642 L 1255.4676,800.16877 L 1255.7292,799.59701 L 1256.7829,798.90315 L 1257.345,799.19553 L 1258.1962,800.82413 L 1259.7767,801.86872 L 1261.0628,800.51247 L 1262.0057,801.27955 L 1262.5613,801.62311 L 1263.0239,801.45605 L 1262.8697,800.22502 L 1264.4009,798.13087 L 1264.6158,796.1957 L 1263.8101,795.19954 L 1264.3383,794.88265 L 1265.3791,795.54041 L 1266.7658,794.51468 L 1267.3451,794.30283 L 1267.9137,794.53655 L 1268.5471,796.08371 L 1270.8739,795.92813 L 1271.4024,795.61672 L 1271.5395,798.39124 L 1272.6371,798.67427 L 1272.723,799.24902 L 1273.6589,801.87497 L 1274.1558,802.21776 L 1276.4028,803.00304 L 1278.6038,802.23416 L 1278.8381,802.66288 L 1279.015,803.11652 L 1279.9909,803.766 L 1283.6177,803.96512 L 1284.6938,804.47111 L 1285.004,804.99404 L 1284.522,808.85095 L 1284.3541,809.47866 L 1286.0242,811.20449 L 1286.6237,810.96958 L 1287.6462,808.63732 L 1288.6028,807.82247 L 1291.1277,807.59606 L 1292.8966,808.27743 L 1293.4531,808.60135 L 1292.2983,810.02117 L 1291.8212,812.41469 L 1292.2034,813.5801 L 1294.8603,815.33318 L 1298.677,815.38153 L 1300.469,817.14769 L 1302.7519,816.87018 L 1303.4552,817.6924 L 1303.9166,818.04726 L 1304.325,819.29273 L 1304.6879,819.64825 L 1304.9142,820.25186 L 1308.0807,820.43902 L 1310.9989,819.057 L 1311.2469,821.44877 L 1310.0976,823.5794 L 1310.9887,824.43374 L 1312.1933,824.15142 L 1312.6787,824.34608 L 1312.6018,825.86635 L 1313.042,827.22686 L 1313.3842,827.59184 L 1315.6871,828.61816 L 1315.4132,830.43387 L 1316.1078,831.43142 L 1316.6141,831.80629 L 1318.366,832.01437 L 1318.9335,832.96059 L 1318.5301,833.39176 L 1322.3866,833.54757 L 1323.0263,833.44752 L 1323.3366,833.91759 L 1326.6429,835.44655 L 1326.756,836.05065 L 1325.0159,838.20504 L 1325.0957,838.75878 L 1327.1568,840.40291 L 1327.501,840.83777 L 1330.444,840.11878 L 1330.9799,839.82208 L 1331.883,837.95279 L 1331.7443,837.37599 L 1332.6231,837.06829 L 1332.93,837.4691 L 1334.5473,836.97988 L 1334.9783,836.54358 L 1336.4142,837.83658 L 1337.6971,837.63708 L 1338.3399,837.75719 L 1338.8949,837.76106 L 1339.4099,837.55962 L 1340.8642,836.35185 L 1340.8042,835.72105 L 1340.6087,835.1193 L 1343.1267,835.41122 L 1344.0701,834.97974 L 1344.1213,834.46301 L 1350.4376,832.48783 L 1350.9792,832.20222 L 1353.3005,831.80908 L 1353.8982,831.69497 L 1353.5382,830.49819 L 1354.2257,828.91868 L 1355.9632,828.70321 L 1356.5449,828.62002 L 1360.1236,829.12366 L 1361.2698,829.12841 L 1361.6663,829.45422 L 1362.8362,829.20315 L 1363.2045,829.67955 L 1367.3008,830.24737 L 1367.8903,830.38568 L 1368.0467,830.18532 L 1367.4911,830.08748 L 1366.8962,829.29055 L 1367.7934,827.87201 L 1369.6749,827.7905 L 1371.0261,826.44517 L 1372.9481,826.25534 L 1373.5714,826.0924 L 1374.2278,826.83898 L 1374.5473,827.22032 L 1375.6527,828.2509 L 1375.6749,828.75705 L 1376.2986,828.71594 L 1376.7998,829.84442 L 1379.799,830.55901 L 1380.1295,831.0415 L 1379.6646,832.18576 L 1379.6742,832.80508 L 1380.3901,832.0892 L 1380.7453,830.56728 L 1382.2971,829.97141 L 1382.5386,829.45618 L 1384.8328,829.59778 L 1385.7991,829.06378 L 1386.3697,828.87507 L 1388.1644,829.26476 L 1390.3201,827.32835 L 1391.2919,827.6941 L 1391.7364,827.96359 L 1392.463,826.30722 L 1392.8314,825.79697 L 1393.7719,825.97252 L 1394.1839,826.35636 L 1395.2501,825.2523 L 1395.4332,824.76341 L 1397.9583,826.10006 L 1399.6299,826.40169 M 763.74175,711.46355 L 763.2709,711.05301 L 762.08953,710.70894 L 760.69988,711.84157 L 760.18652,710.15046 L 758.15279,709.97432 L 757.91755,713.1811 L 756.93789,714.02191 L 755.02779,714.38609 L 753.42783,716.42063 L 752.88182,716.09818 L 751.62567,714.01967 L 749.86855,713.73065 L 749.2723,711.96993 L 748.63607,711.92006 L 747.99097,712.02681 L 746.75583,712.39192 L 743.624,711.51544 L 742.51387,712.18033 L 741.25013,711.86074 L 738.96586,709.63032 L 735.89312,708.65245 L 736.27855,707.75268 L 734.50539,704.72684 L 734.06713,704.27882 L 732.4722,705.84096 L 732.07138,706.22954 L 731.25234,704.52407 L 728.00896,704.09657 L 725.21007,702.48674 L 722.9437,703.67066 L 722.9368,703.07515 L 722.67241,701.91637 L 722.10596,701.69983 L 721.29062,702.56053 L 720.23339,704.71228 L 720.20006,706.51199 L 718.45914,706.28707 L 717.61821,707.05838 L 717.07428,706.75091 L 715.97101,706.3916 L 714.5247,704.39756 L 712.66314,704.7713 L 710.19718,704.23635 L 709.74783,703.8506 L 709.75382,701.52668 L 709.39754,700.99812 L 707.32676,697.83474 L 707.09296,696.03041 L 708.89603,695.83168 L 711.31111,693.72667 L 711.42407,692.49366 L 712.69544,692.26009 L 712.45516,691.7293 L 711.28568,691.77406 L 710.1435,690.44401 L 709.02985,690.09577 L 708.6054,690.578 L 704.67749,693.86574 L 702.16116,693.23059 L 698.24222,691.21482 L 697.74844,691.4745 L 695.52831,691.54225 L 694.8953,691.43799 L 692.41738,690.88294 L 690.20603,692.07049 L 688.34776,691.76421 L 688.54983,691.17812 L 689.236,689.48139 L 688.93992,688.35902 L 687.34031,687.42197 L 687.49804,686.82255 L 687.12722,686.36268 L 686.59144,685.34719 L 686.93492,683.69974 L 686.33819,683.63576 L 687.08046,682.65967 L 686.7045,680.24651 L 686.54309,679.65455 L 685.89456,676.18928 L 685.6485,675.64445 L 685.51486,675.45147 L 681.87123,675.93726 L 680.20598,675.13187 L 679.7094,674.76874 L 678.4131,670.96394 L 677.95877,670.56652 L 679.91183,668.9688 L 680.7973,667.40137 L 682.63198,667.89667 L 682.33929,666.39094 L 682.50042,665.885 L 685.49587,665.57299 L 686.61211,666.13112 L 687.19061,665.88952 L 687.354,665.2967 L 686.80653,664.22219 L 687.61654,663.29483 L 687.7083,662.68945 L 686.95397,660.46517 L 685.75739,660.23552 L 685.13698,660.11821 L 684.96226,659.5399 L 683.16033,659.28989 L 682.62468,658.98554 L 683.5094,658.07178 L 682.81873,655.72385 L 682.39638,655.24121 L 684.3183,654.79587 L 685.41592,652.7989 L 685.94034,652.49653 L 692.0171,652.19183 L 692.92422,651.38681 L 694.14596,651.68066 L 694.91321,651.13549 L 695.20028,650.76572 L 696.94972,650.19682 L 699.14215,648.1609 L 698.61986,647.31555 L 698.15047,646.92597 L 697.532,646.79137 L 696.61802,645.9457 L 696.7345,644.12196 L 695.1536,640.88091 L 695.10075,639.65344 L 695.59753,638.81445 L 695.53866,638.8246 L 691.85043,637.62769 L 692.3129,633.92816 L 691.55021,631.78951 L 692.35319,630.96332 L 692.83399,630.6365 L 694.59158,631.46244 L 698.8522,629.55486 L 698.43817,629.17021 L 699.93536,628.06059 L 704.84659,628.79214 L 705.41445,629.06209 L 705.94051,627.3359 L 706.041,626.73872 L 706.37162,625.5089 L 704.74325,624.47959 L 704.82716,622.5897 L 707.23796,619.78541 L 707.26399,619.14816 L 706.32746,617.93198 L 706.42348,617.40575 L 704.12387,616.63116 L 703.83484,615.58075 L 703.05373,615.1663 L 702.52017,614.88056 L 704.40854,612.63716 L 703.21706,611.51836 L 702.97545,610.96829 L 703.4278,610.56066 L 706.48264,608.40079 L 710.60376,606.69074 L 711.11341,606.30144 L 711.63191,605.40829 L 712.02475,605.03104 L 713.79237,603.34443 L 715.48952,602.60138 L 716.05692,602.357 L 715.33657,600.74205 L 716.23701,599.26679 L 714.69121,596.65381 L 714.26995,596.17647 L 713.81132,592.45441 L 715.36023,589.88476 L 715.65912,589.32796 L 715.52434,589.11823 L 715.7407,587.96826 L 717.09755,585.91003 L 716.62966,583.44512 L 715.85968,582.44367 L 715.44941,582.42166 L 715.0378,582.41119 L 714.92513,581.78787 L 714.64483,578.67243 L 715.31247,577.11406 L 715.90006,576.91337 L 718.62344,577.8046 L 719.17201,577.97869 L 717.83718,576.62587 L 717.38733,573.51395 L 719.76779,572.50108 L 720.44468,571.40657 L 722.95732,571.33967 L 724.66609,572.14762 L 725.86332,570.74856 L 727.03392,570.81115 L 727.73725,569.98778 M 1446.2595,1076.329 L 1446.7214,1076.7421 L 1447.7428,1076.1878 L 1447.8574,1075.5736 L 1448.1161,1074.5454 L 1449.1345,1074.2266 L 1449.3705,1073.7443 L 1449.938,1072.0478 L 1452.9144,1071.7953 L 1453.9734,1071.1804 L 1454.378,1070.7155 L 1454.5742,1069.5252 L 1454.3713,1068.9449 L 1453.9049,1067.7473 L 1454.0923,1066.5006 L 1456.819,1063.8175 L 1457.1332,1062.5813 L 1456.7035,1061.3639 L 1456.3807,1060.8063 L 1455.8956,1059.2058 L 1455.9841,1058.6483 L 1458.8557,1058.9741 L 1459.4188,1058.773 L 1459.8729,1058.6117 L 1461.5,1059.3221 L 1462.6735,1059.2238 L 1463.9201,1057.0901 L 1465.3763,1055.9573 L 1464.9217,1053.6002 L 1464.7262,1053.0036 L 1465.6075,1052.6803 L 1466.0855,1052.6191 L 1466.4861,1052.2005 L 1465.9713,1049.7304 L 1466.3633,1047.8605 L 1466.4174,1047.2155 L 1466.0397,1046.1992 L 1466.2069,1045.6829 L 1466.5549,1043.2923 L 1466.6139,1042.687 L 1466.7058,1038.5097 L 1466.91,1037.9327 L 1468.038,1036.731 L 1468.5947,1034.3974 L 1468.7038,1033.8044 L 1469.247,1031.5937 L 1469.5153,1031.0902 L 1470.48,1028.0618 L 1471.7107,1023.8216 L 1471.8925,1023.217 L 1472.2775,1021.4062 L 1471.4197,1019.1559 L 1471.5264,1017.9584 L 1472.3124,1017.0186 M 1594.7872,1046.1164 L 1592.7722,1047.6175 L 1589.7309,1048.1888 L 1587.8773,1050.7662 L 1587.5675,1052.0059 L 1583.9596,1056.2758 L 1583.4174,1055.9815 L 1581.1426,1055.3098 L 1582.2825,1052.5164 L 1580.8036,1050.5863 L 1581.0794,1049.4186 L 1581.2578,1047.5615 L 1579.5047,1045.8304 L 1577.3047,1042.1518 L 1576.7439,1042.2425 L 1574.4757,1042.168 L 1573.953,1042.4303 L 1570.0061,1043.0797 L 1569.6892,1043.5764 L 1569.1363,1043.3418 L 1567.8828,1042.0654 L 1566.9723,1039.3068 L 1565.8835,1038.9045 L 1565.4348,1039.307 L 1564.9926,1038.8529 L 1563.8099,1037.3618 L 1562.7297,1033.1281 L 1561.6108,1030.8447 L 1565.1397,1030.6735 L 1565.7474,1030.6901 L 1565.8758,1028.3474 L 1566.35,1027.9629 L 1566.0849,1027.4295 L 1565.6637,1026.9682 L 1564.6167,1026.305 L 1564.2992,1025.1245 L 1561.2937,1024.4397 L 1559.1649,1023.3184 L 1558.5393,1022.2353 L 1558.1416,1022.7494 L 1556.5524,1025.5231 L 1553.5876,1026.7754 L 1551.9878,1030.3237 L 1550.9084,1030.965 L 1551.3416,1032.0491 L 1550.3476,1033.4149 L 1550.1891,1033.9832 L 1550.5092,1034.4515 L 1550.7101,1035.5133 L 1550.0783,1036.4404 L 1548.5553,1038.4607 L 1547.5946,1041.4745 L 1547.0319,1041.7663 L 1546.3787,1042.7748 L 1543.9508,1044.4253 L 1543.6344,1044.9409 L 1539.8438,1048.0403 L 1541.007,1048.422 L 1541.0007,1050.2124 L 1540.7468,1050.7874 L 1540.3352,1051.1977 L 1537.8657,1053.6694 L 1538.2572,1054.0735 L 1538.2989,1055.0839 L 1538.2972,1055.1168 L 1537.6764,1056.1308 L 1537.428,1056.7011 L 1535.6908,1061.2837 L 1532.8385,1061.7549 L 1532.2591,1062.0253 L 1529.3442,1063.2438 L 1526.856,1062.9133 L 1526.5326,1063.4685 L 1524.712,1063.1904 L 1522.9431,1063.6467 L 1523.1836,1059.9637 L 1522.7473,1059.7361 L 1522.3117,1059.4984 L 1520.9862,1058.8243 L 1520.779,1060.0033 L 1519.2106,1060.7124 L 1518.6947,1061.7904 L 1518.2136,1061.4485 L 1518.1564,1056.7888 L 1518.2889,1056.2337 L 1518.6146,1054.5548 L 1517.0117,1054.3847 L 1516.6885,1053.9288 L 1516.4425,1051.8444 L 1515.8807,1051.8479 L 1514.8566,1051.4102 L 1514.9064,1050.2777 L 1514.2843,1050.1466 L 1511.2838,1049.2514 L 1510.9015,1050.3676 L 1509.8463,1051.0194 L 1506.9218,1048.8657 L 1506.8043,1049.4547 L 1506.851,1053.6229 L 1506.1668,1054.3227 L 1506.135,1053.7596 L 1506.0349,1052.6362 L 1505.4277,1052.4338 L 1503.6162,1052.9805 L 1500.8431,1051.4752 L 1499.2168,1053.2884 L 1498.6789,1052.9926 L 1494.8263,1051.1938 L 1493.0867,1051.7458 L 1493.0099,1051.151 L 1493.4493,1049.4208 L 1493.144,1048.9074 L 1492.6225,1048.6702 L 1490.5846,1047.9059 L 1490.4617,1047.3169 L 1491.6148,1045.2579 L 1491.4095,1042.8798 L 1490.8363,1042.9435 L 1488.5642,1043.1093 L 1488.4874,1042.5406 L 1489.1611,1039.8511 L 1488.528,1039.9713 L 1487.2863,1040.2563 L 1485.534,1039.5096 L 1485.4251,1040.1139 L 1484.1435,1041.2472 L 1482.9813,1041.4373 L 1482.712,1040.8683 L 1481.8133,1040.0167 L 1481.7029,1037.5049 L 1479.2511,1037.3647 L 1478.8427,1036.4352 L 1478.4096,1035.9824 L 1477.8534,1035.0395 L 1478.2052,1033.9505 L 1478.1908,1030.5834 L 1478.1302,1029.9301 L 1477.018,1024.1318 L 1476.8824,1023.1455 L 1476.4867,1020.8481 L 1476.8891,1020.4282 L 1476.7708,1019.8218 L 1476.4173,1018.0021 L 1473.6599,1017.98 L 1472.3124,1017.0186 L 1471.7563,1016.8537 L 1472.2068,1016.4868 L 1472.9703,1014.3273 L 1472.7114,1012.6063 L 1472.855,1011.3511 L 1472.8683,1010.7191 L 1470.1174,1008.045 L 1469.8527,1006.8128 L 1469.7696,1004.6433 L 1469.8978,1004.1138 L 1469.4228,1003.2313 L 1469.2553,1002.7264 L 1470.1196,1001.2514 L 1469.8906,1000.1377 L 1469.7451,999.57804 L 1469.5769,998.07841 L 1469.4479,997.58831 L 1470.2849,995.6739 L 1469.9534,994.83731 L 1469.5846,994.47341 L 1469.9182,992.02602 L 1470.022,991.41303 L 1471.3084,989.16459 L 1471.186,986.77924 L 1472.3155,986.27958 L 1473.3978,986.84847 L 1475.237,989.2912 L 1475.6471,989.75436 L 1476.9481,989.96128 L 1479.9503,989.66588 L 1480.3609,987.82011 L 1479.4749,985.55631 L 1480.3347,983.85614 L 1480.8152,983.70013 L 1482.0772,983.19439 L 1483.7996,981.63915 L 1484.7513,982.19689 L 1485.8929,982.07646 L 1487.8888,981.76339 L 1490.0198,980.59278 M 1136.1048,271.89633 L 1135.9402,272.26391 L 1134.3912,275.19919 L 1133.9515,275.5988 L 1135.1354,275.61857 L 1136.7372,276.53742 L 1137.9997,276.30709 L 1138.613,276.12432 L 1139.3732,276.83164 L 1139.9028,276.74512 L 1138.6366,278.19857 L 1135.814,279.94175 L 1134.959,280.7904 L 1134.7679,282.43555 L 1134.7012,283.03074 L 1135.3263,283.19287 L 1135.1183,283.68487 L 1134.5423,283.86493 L 1131.6987,285.821 L 1130.2,287.85769 L 1129.9,289.08326 L 1129.1336,289.8247 L 1129.4521,290.32503 L 1129.7649,292.4857 L 1129.165,294.15828 L 1129.3265,295.01675 L 1129.3267,295.48326 L 1125.3661,298.65251 L 1124.7789,298.49128 L 1125.0016,296.81178 L 1124.7044,296.31144 L 1123.608,296.76993 L 1123.2234,297.24277 L 1124.3075,298.70387 L 1124.7611,301.63572 L 1124.9309,302.20868 L 1124.5936,303.09901 L 1124.0736,303.4097 L 1123.5715,303.55308 L 1123.0252,303.90138 L 1121.4716,305.03746 L 1121.7225,305.60943 L 1121.8427,306.06206 L 1121.9355,306.99066 L 1124.2539,306.78588 L 1124.7034,307.14786 L 1125.0077,307.43794 L 1124.6681,307.87832 L 1124.4124,308.85478 L 1125.1501,309.84499 L 1124.9109,311.60166 L 1125.1245,312.17506 L 1124.5484,312.39819 L 1122.0114,314.0708 L 1122.7779,315.53574 L 1122.5182,316.06557 L 1123.5915,316.8105 L 1126.2874,316.85599 L 1126.9624,316.89659 L 1126.2321,318.48135 L 1126.4971,320.1638 L 1126.8243,321.9306 L 1126.9901,322.51184 L 1128.6334,324.29406 L 1129.4855,327.90533 L 1129.2649,327.88684 L 1128.591,327.81652 L 1126.5595,327.88004 L 1125.9645,329.02268 L 1125.6629,329.53092 L 1124.2729,330.47914 L 1124.6969,328.90458 L 1124.795,326.66839 L 1124.1771,326.94392 L 1120.8857,326.43578 L 1121.0831,327.03857 L 1121.538,328.19539 L 1121.2518,330.04898 L 1120.6135,330.11581 L 1119.3773,329.87034 L 1118.4878,332.04727 L 1117.8327,332.60028 L 1117.2557,332.33111 L 1115.9483,330.32171 L 1115.304,330.28531 L 1114.9123,329.81247 L 1114.8057,328.62239 L 1113.2857,327.55454 L 1112.9845,327.9447 L 1112.025,328.23619 L 1111.3956,328.10163 L 1110.4173,329.58218 L 1107.9501,330.27992 L 1107.7651,332.09519 L 1108.6933,332.9214 L 1108.3044,333.36197 L 1108.3409,335.07199 L 1107.4819,333.50856 L 1106.4665,332.83292 L 1105.9992,333.22868 L 1103.295,327.21514 L 1102.8293,327.6388 L 1102.4668,328.7237 L 1100.6218,329.19419 L 1100.2998,328.67471 L 1099.5474,326.42473 L 1099.2825,326.45587 L 1099.4691,327.05651 L 1097.3208,328.49769 L 1097.6833,329.00433 L 1099.9228,331.07173 L 1100.133,332.24246 L 1100.1786,334.31382 L 1099.649,333.97365 L 1098.4996,331.92144 L 1096.6146,331.71899 L 1096.1268,332.10849 L 1096.5778,332.46933 L 1094.9468,334.04909 L 1094.656,334.32654 L 1094.8486,334.83684 L 1095.2899,335.83467 L 1094.429,336.53747 L 1093.9591,336.12881 L 1088.9982,336.0199 L 1088.8789,336.36596 L 1089.2403,336.49755 L 1088.6558,336.76859 L 1088.1546,337.1584 L 1087.7213,340.15017 L 1088.4792,341.82139 L 1088.3071,344.16424 L 1087.7418,344.50936 L 1085.9051,344.52094 L 1085.3639,344.64788 L 1083.8425,343.99952 L 1083.573,343.40688 L 1082.9882,343.19865 L 1081.9013,342.63323 L 1079.4797,342.72028 L 1078.871,343.39088 L 1078.4501,342.91594 L 1076.0733,342.44061 L 1075.4834,342.512 L 1074.8902,342.55055 L 1074.7497,343.02971 L 1074.6909,343.98029 L 1074.655,344.5601 L 1072.9969,346.88381 L 1073.0126,347.23701 L 1072.3918,347.25915 L 1072.5847,350.6402 L 1071.9855,350.93022 L 1069.9168,352.40532 L 1069.3573,352.0634 L 1067.6782,351.06019 L 1067.1531,349.92846 L 1067.5297,347.55125 L 1066.7334,345.9226 L 1067.0591,345.38827 L 1066.9198,345.23997 L 1066.2554,345.16872 L 1064.4273,345.75069 L 1062.7092,344.98813 L 1063.117,345.39524 L 1062.0608,345.88625 L 1061.3074,347.36719 L 1060.9407,347.7406 L 1060.0472,347.77568 L 1059.7044,347.21791 L 1058.4691,345.73978 L 1058.7889,345.24789 L 1059.3935,343.76147 L 1056.8661,344.2903 L 1054.3465,341.85693 L 1053.6265,342.3152 L 1053.1886,341.82792 L 1051.662,340.61117 L 1051.6793,339.97542 L 1051.1484,340.3275 L 1048.2132,343.43947 L 1047.6996,343.10028 L 1046.7825,342.29567 L 1047.6129,340.78268 L 1047.055,340.65368 L 1046.6251,340.29496 L 1045.5113,340.82053 L 1045.0214,339.71778 L 1044.8035,339.16398 L 1044.5504,338.62329 L 1044.0971,337.55351 L 1039.8943,336.04448 L 1038.604,336.1748 L 1038.0505,336.46672 L 1036.9261,337.01453 L 1035.027,336.99381 L 1034.4444,336.68644 L 1033.5295,335.03737 L 1032.6363,335.52131 L 1032.0322,335.70367 L 1030.1327,334.12852 L 1029.7613,332.43019 L 1029.157,332.11016 L 1027.6382,330.81956 L 1027.5228,331.44039 L 1025.7383,332.26547 L 1024.4825,331.83269 L 1024.1336,331.30554 L 1020.6483,329.7956 L 1020.0963,329.72533 L 1018.9896,328.6542 L 1017.1287,328.57426 L 1016.638,328.52545 L 1016.0128,328.52314 L 1013.6504,329.21803 L 1012.0144,328.42586 L 1011.7775,328.24563 L 1011.1699,328.4602 L 1007.4016,328.56953 L 1006.3412,329.19431 L 1006.0168,329.71072 L 1005.1994,330.59112 L 1003.409,331.14257 L 1002.7653,330.91924 L 1001.754,330.07957 L 999.74179,330.24762 L 999.31194,330.55926 L 998.81337,330.76111 L 998.2499,330.40971 L 996.11063,331.78611 L 994.16017,331.43456 L 993.87697,331.14812 L 995.18146,331.03532 L 995.16147,329.85144 L 992.51441,328.15238 L 992.01736,327.01112 L 991.36025,327.02829 L 991.31634,326.99561 L 990.66947,326.94218 L 989.49418,327.45411 L 987.94434,326.50767 L 986.81865,327.11807 L 984.89159,326.87817 L 984.10401,325.30843 L 983.55041,325.69515 L 981.27258,328.80776 L 981.04735,328.27505 L 979.24392,325.31759 L 978.74118,325.67641 L 977.04733,326.46159 L 974.39698,328.99111 L 973.82148,329.12406 L 972.66125,329.34546 L 972.12485,329.01829 L 970.43797,328.24923 L 968.60442,328.65555 L 968.17204,328.18343 L 967.20971,327.34826 L 967.23907,326.76178 L 967.00788,325.75642 L 965.22812,325.37781 L 965.00693,324.82899 L 965.59698,324.49231 L 967.552,322.74943 L 967.02863,321.59311 L 964.99453,321.81236 L 964.69273,321.28377 L 963.62158,319.10789 L 961.74463,319.54192 L 961.2071,319.19741 L 961.42474,318.74749 L 960.48886,318.36442 M 931.48519,1386.2987 L 932.67351,1386.4838 L 933.25749,1386.3315 L 933.75213,1386.0304 L 933.79338,1383.7083 L 933.66646,1383.2527 L 934.25651,1382.5513 L 933.69747,1382.3647 L 932.7912,1381.5846 L 929.3482,1380.9907 L 929.45298,1379.7778 L 928.90886,1378.7362 L 929.97558,1379.2727 L 930.79834,1378.6818 L 931.06382,1378.1217 L 932.8508,1377.7053 L 935.74929,1378.6019 L 939.42574,1378.8356 L 939.97606,1378.5476 L 939.87812,1377.9697 L 939.4589,1376.3279 L 940.54991,1374.4021 L 941.48516,1372.8726 L 941.79417,1372.3335 L 943.40209,1372.7759 L 943.97456,1372.6438 L 944.37416,1371.5866 L 943.6062,1369.3178 L 945.26588,1369.2584 L 945.86074,1369.332 L 946.32273,1368.1819 L 948.45516,1367.1078 L 949.86822,1363.6937 L 950.28744,1363.2496 L 948.93538,1360.3688 L 947.27684,1359.5511 L 945.55781,1359.4873 L 945.193,1358.2721 L 945.84315,1355.1751 L 944.27192,1354.1648 L 943.82309,1353.7231 L 943.98114,1353.1807 L 943.78411,1351.5217 L 944.52981,1350.0301 L 944.94738,1350.4917 L 946.09091,1350.1231 L 948.43783,1350.739 L 950.14952,1350.1079 L 952.55628,1350.3115 L 952.55021,1349.7082 L 953.03295,1350.0643 L 953.81964,1350.9492 L 955.40087,1350.1441 L 956.59147,1351.4355 L 957.75525,1351.6665 L 958.54928,1353.259 L 959.61954,1353.6636 L 960.0952,1353.5021 L 961.49763,1353.1089 L 960.8519,1351.4741 L 962.895,1348.7613 L 963.12681,1348.2088 L 963.58425,1348.6201 L 965.61381,1351.6151 L 966.77037,1351.9836 L 967.14454,1352.4778 L 967.04015,1351.9574 L 967.53492,1350.4841 L 967.33726,1349.9263 L 966.21347,1347.2156 L 967.06103,1345.0462 L 967.59793,1344.995 L 968.25024,1346.5249 L 968.77879,1346.6413 L 970.62777,1345.1335 L 972.87953,1346.0272 L 973.99218,1345.5207 L 975.47496,1347.4491 L 976.88195,1346.4545 L 977.39316,1345.7035 L 976.93142,1345.318 L 974.42166,1342.838 L 976.30139,1341.4508 L 977.4744,1341.538 L 977.90008,1341.9088 L 979.19773,1342.8786 L 980.29976,1344.3212 L 982.07978,1344.156 L 983.74553,1344.8911 L 985.61033,1343.5041 L 986.47218,1344.0296 L 987.60901,1343.786 L 988.19488,1343.7177 L 988.72951,1343.4308 L 991.54373,1342.5441 L 991.14374,1340.8324 L 991.65306,1340.4998 L 995.11882,1339.855 L 994.19117,1337.1896 L 995.70925,1336.7532 L 996.26375,1336.5917 L 997.27112,1338.0681 L 999.48605,1337.495 L 999.93362,1338.6134 L 1000.9686,1338.3997 L 1001.3562,1337.9183 L 1000.7651,1336.3416 L 1001.6077,1335.701 L 1002.1497,1335.5532 L 1003.9192,1335.4986 L 1004.8251,1334.7118 L 1006.0065,1334.6988 L 1006.5964,1334.6858 L 1007.0319,1336.3489 L 1007.807,1337.1673 L 1007.2954,1338.2047 L 1007.7279,1338.5836 L 1009.4744,1338.3461 L 1010.593,1338.7564 L 1010.7488,1339.9942 L 1011.8894,1341.467 L 1013.0033,1341.136 L 1013.7367,1340.1612 L 1016.0424,1340.8169 L 1017.7829,1342.3519 L 1014.1783,1344.6149 L 1011.8414,1344.6111 L 1010.9188,1345.4432 L 1010.9735,1346.0747 L 1011.5632,1346.2377 L 1012.0046,1345.8063 L 1016.1727,1346.0062 L 1017.7741,1346.7981 L 1020.8481,1344.902 L 1023.7648,1344.7827 L 1024.2074,1345.2067 L 1025.3709,1346.51 L 1024.4922,1348.7615 L 1026.6011,1349.6828 L 1028.6288,1348.6004 L 1029.7835,1348.8632 L 1030.7816,1350.9908 L 1031.7826,1351.5682 L 1032.2563,1351.9086 L 1032.6951,1352.2804 L 1032.984,1352.7885 L 1036.3618,1354.1779 L 1036.9666,1354.0663 L 1036.9662,1354.6993 L 1038.2943,1355.9944 L 1039.714,1358.689 L 1039.6234,1361.147 L 1045.4481,1362.0209 L 1046.033,1362.1581 L 1046.7819,1365.4102 L 1047.1802,1365.8154 L 1049.0738,1366.8465 L 1049.9718,1368.9364 L 1050.4028,1369.3105 L 1050.3771,1370.4055 L 1049.9431,1370.717 L 1050.3069,1371.6714 L 1050.35,1372.1828 L 1050.7841,1372.6311 L 1051.2119,1373.8058 L 1053.9272,1374.9909 L 1053.907,1376.2568 L 1053.6271,1378.1074 L 1053.4919,1378.6727 L 1051.4713,1379.6167 L 1050.8692,1381.4025 L 1052.0611,1381.369 L 1055.6963,1383.4626 L 1055.6648,1384.0907 L 1057.798,1385.7932 L 1057.6703,1388.2245 L 1057.4392,1389.3599 L 1057.3747,1389.9745 L 1057.565,1391.1917 L 1060.6367,1392.9849 L 1061.1038,1394.0039 L 1060.9293,1394.5508 L 1059.5069,1395.4078 L 1059.0343,1396.3765 L 1059.0655,1396.9452 L 1059.1317,1398.6157 L 1058.8054,1399.5288 L 1062.4346,1404.594 L 1063.1498,1404.4961 L 1063.6058,1404.8117 L 1063.508,1405.4426 L 1064.7952,1406.6917 L 1065.3718,1408.4906 L 1066.71,1409.7993 L 1067.3349,1411.5492 L 1067.7905,1411.9324 L 1070.8203,1414.7559 L 1070.8932,1415.3858 L 1073.9805,1418.2666 L 1075.7093,1418.3321 L 1076.294,1418.4418 L 1078.0415,1418.5506 L 1081.4231,1420.9288 L 1085.9998,1419.526 L 1086.6055,1419.4671 L 1087.5735,1416.6157 L 1090.7842,1414.962 L 1091.9656,1415.0322 L 1093.4705,1416.8784 L 1095.7305,1417.3408 L 1096.321,1417.2216 L 1096.3571,1417.2383 L 1096.884,1417.528 L 1097.861,1419.0637 L 1101.9297,1418.4951 L 1102.4364,1418.7373 L 1104.3712,1419.7961 L 1104.0286,1420.3079 L 1104.8535,1425.1804 L 1106.0243,1427.1918 M 1462.6647,1421.7595 L 1462.9114,1421.3017 L 1463.1642,1420.8494 L 1465.4225,1417.035 L 1466.202,1416.0489 L 1472.0635,1417.5079 L 1474.0084,1419.8547 L 1474.7125,1422.2703 L 1474.7687,1422.9032 L 1475.6164,1421.9852 L 1478.0512,1422.0224 L 1479.7766,1421.4065 L 1481.6138,1419.7314 L 1481.8495,1416.5748 L 1483.588,1416.0801 L 1484.0834,1415.7039 L 1484.4637,1415.9919 L 1484.9326,1417.0874 L 1486.0288,1417.3407 L 1486.5136,1419.1856 L 1486.2175,1420.427 L 1486.7592,1421.5359 L 1488.3317,1422.4444 L 1489.4745,1422.057 L 1491.3275,1423.3959 L 1491.913,1423.5774 L 1492.1998,1426.4891 L 1492.3234,1427.0648 L 1494.3979,1428.3706 L 1495.2873,1430.7344 L 1496.2614,1431.508 L 1496.6209,1432.0276 L 1498.7782,1429.9585 L 1498.2502,1427.5611 L 1499.8192,1426.7698 L 1500.3944,1426.6452 L 1501.0261,1426.2125 L 1502.2515,1425.3502 L 1502.7788,1425.3238 L 1504.752,1423.1793 L 1505.4905,1421.508 L 1505.2957,1420.9288 L 1505.9292,1420.8108 L 1507.9185,1417.876 L 1508.5174,1417.8962 L 1509.6112,1419.2154 L 1510.1462,1419.4976 L 1511.1716,1419.5067 L 1511.6627,1419.3489 L 1514.7883,1417.1825 L 1516.9941,1414.8579 L 1517.1744,1414.2286 L 1517.2853,1413.7405 L 1517.7093,1412.3024 L 1520.1043,1408.8015 L 1521.6462,1407.979 L 1522.2395,1407.9686 L 1523.3595,1408.1254 L 1524.9129,1407.4985 L 1525.4592,1407.6504 L 1526.4057,1408.378 L 1527.7565,1411.8624 L 1533.4529,1415.4728 L 1535.5286,1417.7723 L 1538.7284,1419.5498 L 1541.482,1418.4912 L 1541.8187,1419.0262 L 1542.404,1419.9302 L 1546.1041,1414.8419 L 1546.4927,1409.76 L 1549.397,1408.9982 L 1549.3962,1408.3514 L 1550.6778,1409.1063 L 1551.6782,1409.1956 L 1553.3382,1408.393 L 1555.5021,1409.357 L 1559.7066,1406.6735 L 1562.0082,1408.7595 L 1562.3762,1409.2805 L 1562.8365,1410.4867 L 1562.5699,1411.7049 L 1562.4976,1412.3494 L 1563.5964,1411.3674 L 1563.9816,1410.9692 L 1567.0622,1408.7344 L 1567.4128,1408.2785 L 1568.048,1407.4912 L 1568.138,1406.9662 L 1572.3635,1407.0763 L 1573.3342,1409.3924 L 1574.3106,1409.8721 M 482.92418,817.41231 L 484.56184,817.4698 L 485.08043,817.50081 L 485.99241,818.39895 L 487.91469,822.5674 L 489.29364,823.91334 L 491.97955,824.1233 L 492.22773,827.19435 L 495.42033,830.28441 L 497.79022,831.30516 L 501.00134,831.11228 L 503.43651,831.69263 L 503.63901,832.30312 L 503.19172,834.6694 L 502.80946,835.1475 L 507.16456,835.89815 L 508.40364,835.63591 L 509.43829,836.38285 L 512.54115,835.58651 L 513.16745,835.44037 L 514.17393,837.17933 L 513.77791,837.55885 L 514.73334,838.45699 L 514.93828,838.90775 L 514.70773,840.02834 L 515.44265,842.79291 L 515.78962,843.26274 L 517.59566,843.80928 L 520.67255,842.83217 L 523.51444,845.29595 L 524.05919,845.64238 L 526.42142,844.83477 L 527.0574,844.94781 L 530.46255,845.91577 L 530.9645,846.27622 L 532.06862,845.95772 L 534.97172,847.40022 L 538.69502,848.31563 L 538.98068,845.94768 L 540.18206,845.53801 L 541.44153,845.80103 L 544.7574,844.05033 L 544.27922,842.3108 L 541.42275,839.96578 L 539.34888,836.89777 L 539.02077,836.35706 L 541.4651,836.39894 L 542.30267,834.73749 L 542.09702,833.51061 L 540.56728,832.4665 L 539.24707,830.355 L 539.39772,829.7416 L 537.96504,826.63077 L 538.39279,824.29711 L 539.31099,822.03833 L 537.94693,819.98674 L 540.48789,818.44271 L 542.30256,818.03326 L 544.28598,815.57846 L 544.85184,815.28594 L 545.36135,815.13782 L 547.01032,815.71566 L 547.28322,816.24774 L 548.23375,817.03559 L 547.99914,818.77468 L 549.18369,822.84893 L 549.532,823.36262 L 549.56189,824.55208 L 548.34798,825.03026 L 547.9095,826.17794 L 548.33202,828.06999 L 550.08376,830.73189 L 548.60518,834.39187 L 548.4094,834.94663 L 549.57229,836.13926 L 550.11381,836.28957 L 555.53335,832.90386 L 558.69616,832.23101 L 560.29668,831.1809 L 560.8559,831.49073 L 561.76771,830.64767 L 561.65123,828.90229 L 562.50295,828.01436 L 562.66693,826.17687 L 560.59081,824.76008 L 562.03336,822.03624 L 561.86578,821.42132 L 561.667,819.55956 L 560.56755,817.30173 L 562.23275,815.4486 L 564.49088,814.98141 L 564.3547,814.3635 L 565.5264,814.66999 L 567.86773,816.45443 L 569.69385,816.4398 L 570.30106,816.37907 L 570.17932,814.70969 L 571.74965,812.06382 L 571.30165,810.43583 L 571.36263,809.84987 L 571.81695,808.75371 L 573.32164,808.04299 L 573.59742,807.51679 L 574.20369,807.31622 L 576.65383,810.18966 L 579.00582,811.06874 L 580.66107,812.94617 L 581.6104,813.65311 L 583.20292,815.45467 L 589.30243,817.32296 L 591.39929,818.5256 L 591.96824,818.80379 L 596.01937,820.02283 L 596.64154,819.9268 L 597.01876,820.32057 L 597.56086,820.40773 L 598.7165,820.96882 L 599.93977,820.78793 L 600.98667,821.5336 L 606.06309,822.06073 L 607.46191,819.34567 L 607.81474,818.83356 L 609.9174,820.3921 L 610.89867,820.04318 L 613.27268,823.06813 L 615.56391,822.34777 L 616.34253,821.344 L 618.8688,823.56036 L 620.59115,824.2919 L 621.52202,826.57569 L 621.77222,827.14841 M 759.58951,988.16176 L 759.17281,987.88513 L 758.77333,986.43942 L 758.5362,985.24767 L 759.94698,984.12758 L 760.46604,983.15711 L 760.33178,982.61103 L 759.75628,982.40931 L 760.01809,981.85587 L 762.01196,979.61082 L 762.34349,977.19052 L 761.63387,976.51846 L 759.73325,976.35626 L 758.27831,978.29887 L 757.02887,978.14895 L 756.38896,977.10646 L 755.85674,977.06063 L 754.26805,976.86104 L 754.10722,976.26655 L 753.38177,974.04481 L 752.30847,972.75809 L 748.26835,971.5901 L 748.49624,971.01721 L 748.99404,966.79585 L 749.57789,966.61649 L 751.25681,964.12144 L 751.8337,964.3225 L 752.69581,963.46034 L 752.44589,962.26592 L 752.28835,961.67447 L 752.03426,960.80101 L 751.10079,957.31467 L 750.94325,956.73312 L 751.54506,956.81496 L 755.14585,956.67654 L 756.44502,954.65387 L 756.19359,953.63701 L 753.99333,949.99787 L 755.51926,949.7333 L 756.08641,948.78763 L 755.63846,947.62148 L 757.08366,945.59985 L 756.81565,945.00314 L 754.40421,942.82637 L 752.05097,941.70692 L 750.24526,942.18414 L 749.56524,943.26157 L 747.46647,944.6906 L 746.72799,945.72069 L 746.90527,946.98142 L 744.53773,949.83768 L 740.60921,946.64301 L 738.35467,945.49592 L 736.55099,945.93923 L 737.48308,943.03124 L 738.48185,942.31856 L 736.39307,940.31433 L 736.74169,939.86436 L 738.96965,937.30021 L 738.42832,937.01964 L 737.47941,936.25598 L 736.49658,934.13009 L 734.69796,933.8692 L 733.62739,934.45417 L 733.6644,933.81933 L 733.03308,932.08345 L 732.0817,931.37781 L 733.02454,927.71994 L 733.2998,923.32986 L 732.20534,922.71075 L 732.38095,922.13758 L 733.31606,919.95655 L 733.05431,919.41788 L 732.92008,918.84395 L 729.56477,919.63956 L 729.16569,919.20535 L 729.25741,917.39206 L 730.56974,916.24134 L 729.67599,915.42548 L 729.73174,914.21705 L 730.69378,912.64914 L 730.67249,909.59631 L 733.84623,909.7812 L 734.01493,909.18689 L 735.53856,905.87263 L 733.36037,904.02604 L 734.22073,901.04759 L 737.23595,898.6855 L 738.51234,898.61501 L 739.47745,897.78521 L 740.04561,897.49213 L 737.67655,896.77124 L 737.90521,894.94566 L 737.38438,893.82188 L 737.53192,893.22004 L 735.04278,893.78225 L 733.36724,892.84925 L 734.69391,888.61741 L 734.0198,887.70244 L 732.463,888.67052 L 731.07112,890.65944 L 726.93079,891.71608 L 726.31214,891.70362 L 726.44649,889.88718 L 730.31991,885.94295 L 729.84877,884.20901 L 730.58453,883.21244 L 730.63363,883.19451 L 730.97655,882.66243 L 733.46544,880.80058 L 732.34254,878.69085 L 734.63869,877.69925 L 734.96129,876.52761 L 734.56978,874.68247 L 735.11845,874.36174 L 735.56298,873.94534 L 737.53319,872.52788 L 738.67697,872.61956 L 739.2903,872.35479 L 739.45543,871.88746 L 738.82299,870.54957 L 738.20409,870.46063 L 734.39587,866.3818 L 733.03694,867.64998 L 732.64419,867.15469 L 731.87136,863.62724 L 732.39777,863.3217 L 731.77215,861.2186 L 733.43145,859.49709 L 733.74591,858.97916 L 735.48883,857.41833 L 735.51439,856.82995 L 734.11687,855.75683 L 733.7675,855.28325 L 732.98346,856.29902 L 731.79616,856.70155 L 730.8154,855.87145 L 728.91937,855.50214 L 728.42737,855.08882 L 728.89468,854.91179 L 728.85768,853.42985 L 730.14636,853.34508 L 731.37775,851.87294 L 733.65157,850.76841 L 734.90232,851.0722 L 736.53606,852.97962 L 736.74131,852.90776 L 737.06018,852.41286 L 738.9117,849.41257 L 737.64403,849.43617 L 735.91855,848.58485 L 734.85132,847.87391 L 733.61537,846.42244 L 731.80314,845.75032 L 730.56235,846.07209 L 730.12938,845.59782 L 730.64241,845.26479 L 731.72407,843.19645 L 731.70226,841.98402 L 733.48515,839.5642 L 733.33645,838.92667 L 732.88464,837.01424 L 732.73616,836.39154 L 731.83706,834.04308 L 730.75086,833.37424 L 730.67308,832.73134 L 730.34633,831.50497 L 728.96529,830.12912 L 728.78615,828.84899 L 729.13698,828.34797 L 730.4483,826.33851 L 730.35008,825.73739 L 729.74045,824.68573 L 727.63818,823.7069 L 727.00684,823.74553 L 723.69652,825.41474 L 723.88888,824.8048 L 722.94979,821.75891 L 722.86485,821.17209 L 724.18305,820.88991 L 724.3576,820.3462 L 723.46967,818.14639 L 723.38181,817.67998 L 723.21773,816.74679 L 723.0714,815.79659 L 722.97498,815.16417 L 721.71731,810.8754 M 1426.8115,562.86496 L 1431.7405,564.87975 L 1432.3596,564.71638 L 1431.8584,563.57796 L 1432.5531,561.2108 L 1434.9613,560.78481 L 1437.7273,559.39441 L 1438.2972,559.10753 L 1439.2057,559.86925 L 1439.0337,560.45466 L 1439.6336,560.74826 L 1440.3001,560.84544 L 1440.7557,559.67872 L 1441.8548,559.02801 L 1444.4229,559.04499 L 1445.0255,559.27155 L 1445.5872,560.9956 L 1445.9028,558.77871 L 1446.6695,557.75294 L 1448.9444,556.8081 L 1449.5628,556.64062 L 1449.765,556.04998 L 1448.2915,554.04677 L 1448.5675,553.48691 L 1448.8903,553.54934 L 1450.0043,554.07185 L 1450.4505,553.66031 L 1452.9201,553.60952 L 1454.0005,554.19017 L 1454.5918,554.36909 L 1455.2858,555.08873 L 1457.8887,555.65019 L 1460.3782,554.77426 L 1461.0475,554.73777 L 1461.2785,553.06738 L 1461.7435,552.74774 L 1462.7221,550.38269 L 1464.1532,549.04545 M 1277.9217,653.43727 L 1278.3141,653.91892 L 1279.467,654.40262 L 1279.6127,656.23574 L 1280.3642,657.2229 L 1279.8555,657.5165 L 1278.7631,657.93247 L 1276.9966,658.02958 L 1275.4484,658.80689 L 1275.0447,659.30541 L 1274.5716,660.48027 L 1272.0927,662.49429 L 1274.2556,663.3452 L 1274.0324,668.3725 L 1275.1384,669.04219 L 1278.0932,667.88605 L 1281.9005,667.78983 L 1282.2378,669.39072 L 1281.6614,669.64141 L 1281.9053,672.62858 L 1281.2828,674.33092 L 1281.7475,674.65822 L 1283.854,676.50034 L 1283.5729,677.03778 L 1282.1996,679.04247 L 1283.1139,680.58037 L 1283.2417,681.18243 L 1282.6138,681.36432 L 1282.4912,681.99143 L 1282.6821,684.45077 L 1281.0322,685.44845 L 1279.9566,685.13251 L 1277.8735,688.70141 L 1277.2542,688.50526 L 1275.6528,687.43519 L 1273.7709,687.30635 L 1273.198,689.76375 L 1271.3293,690.2739 L 1271.0807,691.45919 L 1272.8765,692.10064 L 1273.3682,693.27226 L 1274.4399,693.9856 L 1273.9247,695.7632 L 1276.3263,697.41537 L 1276.7376,697.87924 L 1276.1458,698.07902 L 1273.0882,697.72603 L 1272.5274,698.71632 L 1269.4684,698.69361 L 1269.389,699.93542 L 1272.0045,701.70661 L 1270.7749,704.47458 L 1270.1433,704.60448 L 1269.1402,706.89587 L 1268.0423,707.36379 L 1267.8232,712.26524 L 1268.1019,712.84417 L 1267.4762,712.75404 L 1266.232,712.6361 L 1265.7657,713.05146 L 1264.3465,716.41801 L 1264.6187,717.90179 L 1264.4756,718.3954 L 1262.9306,721.59144 L 1262.0653,721.84314 L 1261.5675,721.48794 L 1260.9754,721.63572 L 1260.2088,723.19298 L 1259.2576,723.88724 L 1259.6993,724.83834 L 1259.8622,725.34056 L 1258.9146,726.10569 L 1258.5223,726.5691 L 1258.1942,727.72995 L 1255.9189,728.59564 L 1255.2989,728.58683 L 1255.4835,730.2659 L 1255.0161,730.6455 L 1255.229,731.17178 L 1255.4879,731.67607 L 1255.8454,732.12661 L 1256.0934,733.16871 L 1255.4082,734.69029 L 1255.7348,735.16153 L 1256.0498,735.3413 L 1256.6864,735.47723 L 1257.0948,736.68749 L 1255.9048,741.60703 L 1255.42,741.95827 L 1254.4735,741.23159 L 1253.9321,741.49097 L 1254.3314,742.59562 L 1253.274,744.00053 L 1252.8647,743.55716 L 1251.6,742.27752 L 1250.9791,742.945 L 1251.3238,743.43955 L 1251.2521,745.26604 L 1251.4278,745.87701 L 1250.0287,747.07572 L 1249.0431,748.24404 L 1249.1266,748.85941 L 1251.8071,751.04203 L 1250.6952,752.5431 L 1250.8979,753.73715 L 1253.158,754.43985 L 1254.3048,753.91226 L 1254.1646,755.78661 L 1253.214,757.34693 L 1254.3444,758.83796 L 1254.2166,760.68135 L 1253.594,760.88644 L 1250.5295,760.41127 L 1249.3242,760.82446 L 1246.8632,760.63165 L 1245.8362,762.84426 L 1244.6861,763.06172 L 1244.2928,764.88311 L 1243.3457,765.55587 L 1240.8685,765.61262 L 1239.2187,763.69444 L 1238.5749,763.72887 L 1237.3724,761.45972 L 1236.2386,755.81608 L 1237.1723,754.21771 L 1235.9015,752.80478 L 1235.7959,752.17082 L 1234.5412,750.84397 L 1232.9385,753.26192 L 1229.2527,752.85472 L 1226.8202,755.28666 L 1226.5532,755.81309 L 1224.522,755.57649 L 1223.2627,750.78591 L 1225.5399,749.58893 L 1227.3035,747.69143 L 1226.9008,745.94943 L 1225.6825,744.71989 L 1225.5975,744.121 L 1225.0417,744.30281 L 1223.6323,743.29345 L 1222.4679,743.37843 L 1221.9775,743.06478 L 1222.0325,744.53013 L 1220.801,747.97868 L 1220.4124,748.46647 L 1219.1655,748.51885 L 1218.3467,749.40691 L 1219.1888,752.25413 L 1219.0364,752.85678 L 1217.2252,753.16215 L 1215.5178,751.46575 L 1214.2775,751.45155 L 1213.6677,751.34343 L 1213.4766,750.8018 L 1213.3732,748.62651 L 1212.2717,748.43886 L 1212.0146,749.00845 L 1207.1185,750.10979 L 1205.4005,749.33631 L 1204.7027,748.32233 L 1204.718,747.84218 L 1204.4005,746.93511 L 1203.0273,744.72839 L 1201.3127,743.78294 L 1200.7981,743.37779 L 1200.2771,743.6206 L 1199.4714,743.06108 L 1199.991,741.45266 L 1200.2199,740.93316 L 1199.9668,741.00294 L 1199.5928,740.51465 L 1197.2108,740.6463 L 1194.4995,739.31718 L 1193.8072,739.56922 L 1193.1865,739.44408 L 1192.2553,738.72012 L 1192.1055,737.53318 L 1190.8543,737.46561 L 1190.3007,737.651 L 1189.3181,739.01916 L 1188.6424,738.25511 L 1188.0621,738.32669 L 1187.8593,737.78721 L 1187.1576,734.55345 L 1187.1019,734.36341 L 1187.0472,733.79334 L 1187.7074,732.22418 L 1187.0722,731.52503 L 1186.4731,731.37268 L 1184.1224,730.66067 L 1182.766,728.67939 L 1182.361,728.25035 L 1180.8203,727.36702 L 1180.227,727.16247 L 1179.3193,726.30684 L 1178.8278,722.04869 L 1177.3164,720.15131 L 1176.9339,720.31704 L 1176.5152,720.3125 L 1176.4332,720.95801 L 1176.8593,727.39286 L 1176.0398,732.41368 L 1175.4381,732.55806 L 1172.7743,731.06935 L 1172.1693,731.19909 L 1171.1385,730.57787 L 1170.7641,729.40448 L 1168.9487,729.94548 L 1166.4184,729.84546 L 1165.9821,729.81677 L 1165.5636,729.69422 L 1164.9149,729.71685 L 1163.7725,730.0851 L 1163.7384,731.34808 L 1162.3889,733.5102 L 1160.5317,733.7478 L 1157.9993,735.56145 L 1158.0951,736.8279 L 1157.0307,736.30935 L 1156.7296,734.67531 L 1152.9897,732.44315 L 1151.7394,732.64034 L 1150.6245,731.12676 L 1150.3492,730.56419 L 1149.0122,732.75616 L 1147.0571,732.76478 L 1145.9298,733.40496 L 1143.9942,733.18079 L 1143.823,732.59321 L 1140.1338,727.04342 L 1137.8089,726.97085 L 1136.8898,727.72448 L 1135.157,728.08483 L 1134.785,726.89492 L 1133.1605,725.88971 L 1131.5472,723.9472 L 1129.8213,724.07493 L 1129.7201,723.44062 L 1128.9783,719.0248 L 1129.8849,717.35904 L 1129.4745,716.85825 L 1129.1263,716.5308 L 1128.3737,715.94285 L 1127.8214,715.64144 L 1125.3929,715.37666 L 1123.3612,716.73473 L 1122.8892,717.19266 L 1121.6809,718.70991 L 1119.1249,719.3864 L 1118.1573,720.20872 L 1117.6313,720.548 L 1116.4106,720.71032 L 1113.1562,718.84423 L 1111.2849,718.58916 M 1612.7143,743.4099 L 1612.4048,742.96534 L 1612.1793,740.97337 L 1611.8384,739.92394 L 1611.8469,739.36402 L 1611.5367,738.86852 L 1610.2082,737.09852 L 1608.6869,736.24212 L 1609.0018,735.86792 L 1609.7456,735.26449 L 1609.465,734.69481 L 1608.7202,732.2812 L 1610.2937,731.68228 L 1610.6658,731.2552 L 1611.7111,731.69586 L 1612.6347,733.75089 L 1613.157,734.04288 L 1613.4992,733.60942 L 1613.973,733.90031 L 1613.4276,731.60324 L 1613.7291,729.38124 L 1613.4516,728.8446 L 1612.9337,728.52977 L 1612.5118,728.09856 L 1612.1369,728.03587 L 1610.9612,727.71314 L 1610.4324,727.57742 L 1608.7543,726.33483 L 1609.7702,725.72544 L 1609.0562,724.03371 L 1608.641,723.56847 L 1608.5708,722.96635 L 1607.7051,722.17398 L 1606.4702,722.1269 L 1606.1533,721.62285 L 1605.7339,721.19541 L 1605.2274,721.47318 L 1602.6796,722.58808 L 1602.1532,722.51724 L 1601.5087,722.48243 L 1598.9799,722.79213 L 1597.211,722.52022 L 1596.9443,721.98305 L 1595.9887,719.79943 L 1596.3461,718.72043 L 1597.3493,718.15689 L 1597.8525,717.87688 L 1597.7621,717.69061 L 1597.6483,717.47846 L 1597.2463,717.00607 L 1595.6228,716.09678 L 1595.3966,714.88972 L 1594.0026,713.67551 L 1594.2534,713.12925 L 1593.9954,712.63717 L 1593.7548,712.13781 L 1593.6134,712.10526 L 1593.2877,710.91929 L 1592.3023,710.17908 L 1592.4119,708.95462 L 1592.6243,708.3764 L 1593.9734,708.08055 L 1594.1484,707.50539 L 1595.0861,706.1142 L 1594.8923,704.95019 L 1593.9265,704.23927 L 1593.5196,703.54952 L 1593.1432,703.05931 L 1592.2222,700.92735 L 1592.4012,699.12187 L 1592.8142,697.06064 L 1592.5907,696.57896 L 1592.4776,695.99923 L 1591.3169,694.0868 L 1591.5068,692.40864 L 1589.9242,690.53744 L 1590.0972,688.15822 L 1589.9888,687.54768 L 1589.9063,687.01598 L 1589.7431,685.9527 L 1591.4504,682.91303 L 1591.8865,682.50393 L 1593.3639,679.65963 L 1596.0126,677.80458 L 1598.2255,674.65574 L 1598.081,674.03337 M 977.86275,556.16209 L 977.1659,555.12 L 977.19817,553.22251 L 978.61654,551.98224 L 979.25037,551.80481 L 979.39728,549.18012 L 981.57223,544.73051 L 981.76786,544.1198 L 983.18851,543.31422 L 983.59799,543.70036 L 984.83465,543.36275 L 984.69862,542.14675 L 982.92847,541.99197 L 979.3783,539.51156 L 979.81739,537.03022 L 982.35436,537.5015 L 982.99275,537.34732 L 985.14201,538.47043 L 985.56149,538.01486 L 989.3331,538.05842 L 989.93719,537.87522 L 989.84216,536.07705 L 991.8721,532.41638 L 992.31283,531.98569 L 991.81503,531.00443 L 991.89513,530.45013 L 992.14403,529.23268 L 994.00111,528.6886 L 994.64937,528.66481 L 995.01696,526.95716 L 993.49419,525.78048 L 993.03941,525.33151 L 992.96197,525.26618 L 992.27689,524.30371 L 992.13087,522.53704 L 990.27999,522.42238 L 989.82685,521.99179 L 989.18948,520.32245 L 989.3927,519.22517 L 990.54268,519.54127 L 991.32861,519.03509 L 991.371,518.46302 L 992.41507,515.46568 L 993.06067,515.42554 L 994.1174,514.15751 L 994.7568,514.24916 L 995.66864,514.1721 L 996.13101,514.2281 L 996.55744,513.88299 L 997.57254,514.32044 L 998.10058,514.49303 L 999.0171,512.19049 L 999.52705,512.59665 L 1000.0967,512.92373 L 1000.0125,511.73714 L 1001.3549,509.71634 L 1001.6748,509.20259 L 1001.3466,508.63639 L 1001.7159,507.43374 L 1000.4386,505.27396 L 1000.9568,504.88801 L 1003.2353,504.32129 L 1004.1932,504.9862 L 1004.7935,505.04058 L 1005.2892,503.94628 L 1005.2997,503.30846 L 1006.8721,502.17388 L 1008.2018,502.21371 L 1009.9164,501.27343 L 1011.0732,501.78718 L 1011.6777,502.05714 L 1011.9997,499.60425 L 1011.3713,498.54847 L 1011.8403,498.11038 L 1013.1292,498.13793 L 1013.9411,498.9731 L 1016.4993,498.73269 L 1016.6705,498.13578 L 1017.1864,499.18875 L 1017.1373,499.77069 L 1019.9738,500.7389 L 1021.2294,500.66868 L 1022.073,501.30576 L 1022.6735,501.48446 L 1023.4835,503.57968 L 1023.0195,503.98107 L 1022.6157,504.43669 L 1022.9897,505.56404 L 1025.9536,504.68786 L 1026.0625,505.87792 L 1026.2036,506.46468 L 1027.7439,505.67516 L 1028.266,502.87078 L 1029.2205,502.66352 L 1029.5663,503.03497 L 1030.8322,504.3516 L 1032.0581,504.42404 L 1032.5757,504.7644 L 1033.8865,503.4759 L 1034.5126,503.40888 L 1034.58,506.18212 L 1034.5884,506.73592 L 1034.5881,507.20439 L 1034.6222,508.143 L 1036.6315,508.15699 L 1039.7233,507.068 L 1040.1934,508.02034 L 1040.1343,508.57408 L 1042.1931,507.52912 L 1042.7743,507.42624 L 1043.3694,507.22972 L 1043.7036,507.96162 L 1044.223,508.92081 L 1044.7764,509.02331 L 1044.7007,507.89883 L 1046.9372,506.90109 L 1047.5648,506.79034 L 1047.8675,506.78426 L 1048.4675,506.72611 L 1049.0285,506.51505 L 1051.6783,505.48456 L 1052.2558,505.49234 L 1052.9414,506.51441 L 1053.2588,508.92179 L 1053.4239,509.50898 L 1054.2886,510.25558 L 1054.6689,510.67893 L 1054.5134,511.03197 L 1054.915,511.87126 L 1056.0711,512.01542 L 1056.5897,512.11535 L 1057.0986,513.21471 L 1057.1949,513.82647 L 1059.4503,513.32623 L 1060.05,513.29176 L 1061.1532,513.75524 L 1061.694,515.42699 L 1061.6217,516.01035 L 1061.0055,515.9444 L 1059.2334,517.43525 L 1058.1895,516.79129 L 1056.9885,516.9675 L 1056.6541,517.45306 L 1055.2539,519.64254 L 1056.6074,520.66343 L 1057.0527,521.03773 L 1056.0509,523.96626 L 1053.5494,524.40094 L 1053.0715,524.78785 L 1054.1747,526.24206 L 1054.2918,527.41757 L 1056.0039,528.0184 L 1056.3628,528.51082 L 1056.2283,530.68871 L 1055.9472,531.27491 L 1053.2966,533.18229 L 1053.7722,534.37028 L 1053.738,535.01629 L 1054.3603,534.98154 L 1054.9808,534.93695 L 1053.4701,535.90985 L 1053.2666,537.10638 L 1050.8961,540.56055 L 1052.179,540.61233 L 1050.6804,545.2553 L 1051.851,545.52236 L 1052.1327,546.64746 L 1052.7319,546.66518 L 1052.512,549.24753 L 1052.2362,550.08197 L 1052.2951,550.52121 L 1051.2957,551.28857 L 1051.7346,555.5115 L 1050.9384,555.89626 L 1050.7957,556.2363 L 1051.1426,556.38989 L 1051.7184,557.36602 L 1051.5411,557.90328 L 1051.6202,558.49369 L 1051.6192,561.23428 L 1053.1739,561.63235 L 1056.5242,565.98101 L 1056.9381,566.43569 L 1053.7394,565.95593 L 1051.8032,567.62731 L 1049.2159,567.27536 L 1047.6729,568.45317 L 1048.7632,569.90523 L 1044.6364,571.50345 L 1044.737,572.70057 L 1043.5166,572.47863 L 1042.5305,573.20579 L 1042.1049,573.64268 L 1042.536,574.08217 L 1043.5359,574.52239 L 1042.1698,576.2965 L 1042.6106,578.66636 L 1042.1111,578.29418 L 1039.6148,578.38537 L 1038.4931,578.94348 L 1037.3639,578.42308 L 1037.5733,579.03324 L 1037.7482,580.27312 L 1038.6669,581.19459 M 1028.191,475.11933 L 1027.7218,475.48596 L 1026.156,476.34442 L 1025.6731,476.67005 L 1023.6887,477.85942 L 1023.145,479.18289 L 1020.648,478.87427 L 1020.0163,479.8939 L 1018.7988,479.58127 L 1017.638,480.58684 L 1017.1695,480.83397 L 1016.2843,482.69405 L 1016.0535,483.81203 L 1019.1018,485.07206 L 1020.312,487.21594 L 1020.9635,487.35847 L 1020.9979,487.32541 L 1022.1185,488.35666 L 1023.8202,488.09412 L 1024.3509,488.39113 L 1025.3123,488.79184 L 1025.8085,488.95943 L 1026.8817,489.32375 L 1027.4191,489.50108 L 1029.2396,490.05793 L 1029.7288,490.44577 M 1016.6705,498.13578 L 1016.359,496.92642 L 1016.0433,496.37949 L 1014.1752,495.95815 L 1014.2178,494.7434 L 1013.3399,493.84898 L 1010.8769,494.05054 L 1011.1358,493.53065 L 1010.0785,490.98496 L 1009.5751,490.76077 L 1008.1141,491.21908 L 1007.6207,490.86512 L 1006.749,490.07975 L 1006.7487,489.99756 L 1006.7975,489.43367 L 1006.5208,488.33634 L 1006.3973,487.83695 L 1006.1726,486.8332 L 1006.1726,486.20041 L 1006.6624,485.02737 L 1007.9078,484.8471 L 1007.6878,484.3101 L 1006.7673,482.85425 L 1007.1594,481.7653 L 1007.1056,480.89086 L 1006.7427,480.54028 L 1007.4036,479.40948 L 1007.704,478.82865 L 1008.8454,476.51208 L 1009.1288,476.03651 L 1009.7674,475.4271 L 1012.559,473.98385 L 1013.0949,473.64437 L 1015.1367,471.97629 L 1015.5948,471.5023 L 1016.4804,470.60372 L 1016.9303,470.16102 L 1018.5457,468.97244 L 1019.0355,468.52159 L 1019.5841,468.17257 L 1021.7405,466.73744 L 1024.2503,465.98458 L 1024.8425,466.01054 M 1040.2809,483.43704 L 1040.1918,482.8962 L 1040.0085,480.17259 L 1039.6818,479.19272 L 1039.2839,478.81763 L 1038.372,478.22866 L 1038.1575,477.19288 L 1038.0701,476.56168 L 1036.9933,475.03901 L 1034.5695,474.95394 L 1034.0073,474.96195 L 1032.2392,474.97793 L 1030.0226,475.032 L 1029.469,475.04355 L 1028.8307,475.09605 L 1028.191,475.11933 L 1027.7176,473.28048 L 1027.3983,472.70352 L 1027.8416,472.50782 L 1028.2764,472.29736 L 1028.4661,471.80426 L 1028.9044,471.50014 L 1029.2529,471.10564 L 1030.2209,469.49675 L 1030.0774,467.66408 L 1027.771,466.64378 L 1027.1356,466.49276 L 1024.8425,466.01054 L 1024.2503,465.98458 L 1024.6818,465.81998 L 1024.3238,464.93453 L 1024.2147,464.47097 L 1025.0173,463.53538 L 1025.5006,463.12263 L 1026.3212,463.73859 L 1027.3419,463.87792 L 1028.7876,464.65333 L 1029.2607,464.34578 L 1029.5525,464.75349 L 1029.891,465.12817 L 1030.8582,463.46992 L 1031.9065,462.9704 L 1032.5178,463.22014 L 1033.4958,461.87622 L 1034.0472,461.68246 L 1034.6498,461.92757 L 1035.2836,462.08561 L 1035.6929,462.1647 L 1036.1074,462.21916 L 1038.7308,464.69104 L 1039.264,464.99223 L 1039.6616,464.74278 L 1040.5373,464.39682 L 1041.1432,464.55355 L 1042.8401,465.10436 L 1044.0768,464.89882 L 1044.4752,465.14917 L 1045.4164,465.05679 L 1045.8565,465.18891 L 1046.7742,463.6701 L 1049.8608,461.86923 L 1050.4773,461.95749 L 1050.6301,461.57652 L 1051.0484,461.48859 L 1051.1742,460.84131 L 1052.4326,460.47575 L 1055.1147,456.17432 L 1057.5892,455.79262 L 1057.6965,455.17331 L 1058.7315,454.74057 L 1059.3072,454.70123 L 1060.0339,456.68851 L 1060.5792,456.91671 L 1061.0829,459.3718 L 1060.6645,460.56044 L 1059.3643,461.44586 L 1062.387,465.63239 L 1062.6129,466.23132 L 1062.8546,466.73499 L 1063.3585,468.28145 L 1063.9765,469.2646 L 1063.9656,469.88745 L 1063.1506,470.49463 L 1062.6668,470.68047 L 1062.2172,473.52079 L 1062.7163,473.87895 L 1062.5003,473.98514 L 1061.9384,474.31705 L 1062.0207,475.52368 L 1058.5,477.93786 L 1058.9833,478.3468 L 1059.9189,479.13831 L 1059.5841,481.48443 L 1061.3937,481.58498 L 1062.033,481.65594 L 1061.9741,482.23595 L 1061.4244,483.2665 L 1060.3267,483.78103 L 1061.6337,486.69886 L 1061.9005,487.28004 L 1061.9501,488.44389 L 1062.516,488.67246 L 1063.0459,490.35229 L 1063.1043,490.93597 L 1062.6591,492.18378 L 1059.8413,490.78487 L 1059.6503,490.20085 L 1059.5608,489.03359 L 1055.9146,486.45664 L 1055.3176,485.48544 L 1053.295,484.62446 L 1052.9636,484.1471 L 1052.7131,484.3701 L 1052.342,483.90581 L 1051.4823,483.07745 L 1050.9473,483.36222 L 1050.5267,482.58889 L 1048.6468,482.31423 L 1048.0535,482.51373 L 1045.1995,483.40836 L 1044.2901,484.18946 L 1043.6821,483.97845 L 1040.7294,484.52227 L 1040.4003,484.53838 L 1040.2809,483.43704 z M 1028.266,502.87078 L 1027.1838,502.37135 L 1027.1286,501.2224 L 1027.7663,499.60643 L 1028.1965,498.89953 L 1028.9203,496.86776 L 1028.5123,495.93749 L 1028.0234,495.73376 L 1028.5257,493.88286 L 1028.6943,493.26645 L 1028.8285,492.77332 L 1028.0743,491.72809 L 1028.6079,491.77072 L 1029.3327,491.06219 L 1029.7288,490.44577 L 1031.2528,490.62661 L 1032.3364,490.19447 L 1032.7098,490.64327 L 1033.2729,490.68943 L 1033.8292,490.60249 L 1034.3838,490.33327 L 1037.0525,488.80423 L 1037.5695,488.50214 L 1038.7394,488.21045 L 1040.8518,489.16896 L 1045.4968,490.43534 L 1046.0724,490.20279 L 1046.7037,488.66694 L 1046.5531,488.06019 L 1047.139,486.94673 L 1046.8471,486.38907 L 1046.5135,485.94805 L 1044.3488,485.33351 L 1043.751,485.21438 L 1043.0194,486.01556 L 1041.805,485.93033 L 1041.2347,485.73249 L 1040.4165,487.19779 L 1040.3394,485.01497 L 1040.4003,484.53838 M 1062.6591,492.18378 L 1063.1937,492.43365 L 1062.7582,493.48917 L 1062.5667,494.02624 L 1063.2048,494.18915 L 1063.4869,494.75876 L 1063.2233,495.33487 L 1062.2041,496.94418 L 1062.0089,498.18624 L 1064.4533,498.42572 L 1065.5119,500.65487 L 1063.3267,500.75474 L 1063.5802,502.55036 L 1062.0884,503.77179 L 1062.8912,505.38862 L 1062.9629,506.01512 L 1061.1576,507.62876 L 1059.9633,509.68646 L 1059.6042,510.19025 L 1059.6892,510.51103 L 1060.0423,511.34528 L 1060.3902,511.64908 L 1060.6432,512.52909 L 1060.1273,512.75281 L 1060.05,513.29176 M 1013.0949,473.64437 L 1013.2521,472.76646 L 1012.9188,471.78731 L 1013.3548,471.41696 L 1012.8859,468.80931 L 1013.2632,468.467 L 1013.8608,467.72317 L 1013.7632,466.16036 L 1013.1588,466.07752 L 1009.6232,465.51054 L 1009.9212,465.16301 L 1010.251,464.32585 L 1010.258,463.64213 L 1010.2396,463.02917 L 1008.7636,460.35656 L 1008.1996,460.04714 L 1003.8411,458.97098 L 1003.3646,458.50218 L 1003.1535,457.24056 L 1003.7585,455.38031 L 1003.0567,453.58752 L 1001.0995,455.23623 L 998.6037,454.29035 L 998.29786,454.81551 L 996.78648,456.65595 L 996.24236,455.813 L 995.86629,455.46748 L 993.59947,456.62889 L 991.05972,456.84026 L 990.70237,457.35272 L 989.04041,455.89981 L 988.67902,455.46243 L 988.3318,455.12708 L 987.92308,454.62569 L 986.68705,453.12707 L 984.91867,453.46985 L 983.40489,452.57761 L 982.28287,452.98204 L 982.01233,452.48205 L 980.8359,452.37253 L 979.8432,452.98698 L 979.51357,452.47748 L 976.63785,449.35954 L 976.84095,448.58611 L 976.48019,448.40243 L 976.13815,448.18711 L 972.96886,451.00271 L 972.76881,453.39494 L 972.19888,453.47534 L 970.21475,454.38718 L 969.90359,454.41527 L 970.30447,453.28228 L 969.91283,451.52444 L 968.90217,450.86804 L 970.48618,447.025 L 970.69016,446.45835 L 970.19185,446.17854 L 967.64994,445.12035 L 967.54934,444.28942 L 967.05154,443.87172 L 965.39236,442.94683 L 964.35437,442.99456 L 961.96962,443.75908 L 962.13614,444.31 L 961.68529,446.32622 L 961.06284,446.38784 L 960.46836,446.48218 L 958.7029,446.4021 L 957.27111,445.39622 L 956.75686,445.80097 L 956.22856,448.14981 L 955.57132,448.16927 L 954.26265,448.06532 L 953.81028,447.74815 L 953.44977,448.08275 L 952.72002,448.74386 L 952.27385,448.31826 L 948.95132,446.60322 L 949.3546,445.01423 L 948.66003,444.14206 L 948.18323,443.83027 L 947.67467,443.47272 L 946.06017,442.53738 L 942.99578,442.09743 L 942.3784,442.16996 L 939.64883,443.45044 L 938.90769,443.95156 L 938.63741,443.56279 L 938.21211,442.72347 M 1062.438,442.40143 L 1060.247,446.12695 L 1062.9368,448.34855 L 1062.3088,448.34169 L 1061.0579,448.46449 L 1059.7565,449.72778 L 1059.5609,450.90077 L 1058.426,452.20728 L 1056.6865,452.86998 L 1055.4647,452.61882 L 1055.4597,453.20715 L 1055.8457,454.3256 L 1057.3955,454.65996 L 1057.6965,455.17331"/> |
</g> |
<g inkscape:groupmode="layer" id="layer1" inkscape:label="Regions" style="display:inline"> |
<path id="path5220" style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#646464;stroke-width:2;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" d="M 917.90038,1184.9502 L 919.42935,1185.9279 L 921.57253,1184.808 L 921.55444,1183.5611 L 921.90786,1183.5903 L 925.18217,1181.2591 L 927.31511,1180.6818 L 927.83404,1180.3852 L 929.54965,1180.3147 L 930.00886,1182.7676 L 931.03319,1183.2753 L 933.42806,1181.2473 L 937.59169,1182.0193 L 938.1229,1182.3514 L 938.23489,1183.1993 L 938.31106,1182.5751 L 940.61141,1182.3875 L 941.19893,1182.5711 L 943.09537,1183.7582 L 943.66757,1183.8583 L 943.83309,1185.0149 L 946.13748,1187.6958 L 947.23305,1187.8738 L 947.77793,1187.9959 L 948.3962,1189.4696 L 948.77784,1189.8397 L 949.80293,1190.4645 L 950.18204,1190.9384 L 950.70578,1193.5086 L 950.86383,1194.0354 L 951.13196,1194.502 L 951.39605,1194.4587 L 953.07699,1194.5159 L 954.33326,1195.7002 L 954.90863,1195.6908 L 955.93005,1196.3771 L 956.75648,1198.6984 L 956.58628,1199.3002 L 956.15124,1199.6769 L 958.23559,1200.7271 L 958.7959,1201.784 L 959.123,1202.285 L 959.1964,1202.4653 L 959.55501,1201.9774 L 960.45343,1201.1895 L 960.59895,1200.0206 L 960.96743,1200.4424 L 962.59421,1201.9409 L 962.43022,1203.0607 L 962.51019,1203.0436 L 963.68017,1201.6603 L 964.90696,1201.7901 L 965.90573,1201.1518 L 966.12477,1200.5597 L 966.23131,1199.3895 L 966.94942,1198.6642 L 967.28336,1199.7872 L 967.8214,1199.9893 L 968.86914,1198.3129 L 973.42972,1196.4674 L 973.58966,1195.2623 L 976.04692,1192.4616 L 978.50164,1192.3592 L 979.68389,1193.3911 L 980.14373,1193.6338 L 980.29381,1196.1267 L 980.90714,1196.9889 L 981.51503,1197.05 L 982.22491,1195.9804 L 985.7351,1193.2889 L 988.76228,1192.8297 L 992.88453,1191.7781 L 993.42548,1191.4699 L 995.1292,1192.9804 L 995.67686,1192.7794 L 998.43781,1191.5937 L 998.99344,1191.3288 L 999.55578,1191.0966 L 1001.1554,1191.8648 L 1004.5838,1191.0901 L 1005.4187,1188.1171 L 1005.5454,1187.4931 L 1005.1575,1186.9958 L 1002.5127,1184.4665 L 1001.6696,1181.4224 L 999.75786,1178.2352 L 1000.1653,1177.6155 L 1000.3969,1177.1392 L 1000.6377,1177.1139 L 1004.5859,1173.5214 L 1005.1918,1173.5888 L 1005.8612,1172.6988 L 1008.0917,1172.9105 L 1008.9932,1173.657 L 1009.5795,1173.6195 L 1010.4134,1171.2242 L 1010.3503,1169.3242 L 1011.4971,1167.139 L 1010.6327,1164.1221 L 1010.3405,1163.5568 L 1012.1499,1163.6733 L 1013.2022,1163.0348 L 1014.3418,1161.572 L 1014.4619,1159.137 L 1016.2861,1159.0552 L 1016.8732,1158.8719 L 1016.9917,1158.3617 L 1017.2018,1157.8843 L 1013.2791,1155.1794 L 1012.836,1152.0906 L 1011.9119,1151.2649 L 1012.0725,1148.2966 L 1011.9054,1147.6916 L 1012.8819,1147.9152 L 1013.4114,1147.6724 L 1013.3153,1147.0475 L 1015.6981,1145.0398 L 1016.2281,1143.9072 L 1017.9048,1143.2748 L 1017.9615,1140.8482 L 1018.6163,1139.7747 L 1019.8022,1139.4476 L 1020.6171,1138.5683 L 1020.8362,1136.6877 L 1021.6192,1135.9631 L 1021.8429,1135.4694 L 1022.2929,1135.5084 L 1022.6576,1135.7813 L 1024.454,1135.7274 L 1026.3459,1132.4229 L 1026.4554,1131.7895 L 1027.8196,1129.7028 L 1030.1108,1128.7879 L 1030.7225,1128.8998 L 1032.4363,1128.1712 L 1033.1193,1127.1234 L 1033.0871,1126.49 L 1032.1967,1124.9055 L 1033.8308,1123.0584 L 1033.8561,1119.9621 L 1033.7111,1118.9339 L 1034.3834,1117.8911 L 1033.757,1116.1156 L 1032.4842,1114.7613 L 1032.145,1112.9499 L 1032.6545,1112.5832 L 1033.4869,1112.5917 L 1035.4182,1112.7125 L 1035.9273,1112.8559 L 1037.5219,1113.775 L 1037.8831,1114.9367 L 1038.8536,1115.6927 L 1040.6471,1115.8161 L 1041.2577,1115.8873 L 1042.7928,1117.1266 L 1043.122,1117.5596 L 1043.3897,1117.8315 L 1043.5896,1118.1608 L 1046.9863,1118.4753 L 1047.9957,1120.5302 L 1048.4811,1120.875 L 1049.1608,1119.2097 L 1052.0543,1118.9654 L 1053.6018,1118.1975 L 1053.9431,1118.7067 L 1053.9606,1118.1111 L 1054.435,1117.0232 L 1053.7985,1114.8566 L 1053.1955,1114.9539 L 1049.4085,1112.0091 L 1050.0086,1110.9393 L 1050.4863,1107.316 L 1050.591,1106.7057 L 1051.0912,1106.4649 L 1050.9484,1104.2797 L 1051.4537,1104.0505 L 1052.0507,1100.9753 L 1052.7442,1098.3526 L 1052.3237,1097.4566 L 1052.124,1097.0021 L 1052.1978,1095.7996 L 1053.3102,1093.5844 L 1052.8689,1092.4909 L 1053.2521,1091.3598 L 1052.882,1089.5476 L 1053.2833,1089.0747 L 1053.0967,1087.6906 L 1052.9957,1087.1903 L 1051.9489,1087.2867 L 1050.5177,1086.6501 L 1049.4962,1084.422 L 1047.7309,1082.5925 L 1046.3641,1079.7291 L 1046.6174,1078.5646 L 1047.7818,1077.5581 L 1048.2575,1077.3089 L 1048.7147,1072.9513 L 1048.7126,1072.3163 L 1049.2517,1071.2906 L 1052.7552,1071.5432 L 1053.255,1071.4571 L 1053.4013,1070.6595 L 1053.3829,1070.1461 L 1054.2778,1068.5754 L 1052.8192,1066.721 L 1052.825,1065.5627 L 1054.0923,1063.9039 L 1054.6158,1063.7243 L 1054.318,1063.2102 L 1054.2554,1061.5022 L 1053.6795,1061.231 L 1053.7227,1058.7336 L 1049.9904,1053.5789 L 1049.1173,1051.8973 L 1047.3506,1051.4153 L 1046.8092,1050.2677 L 1045.2609,1049.2846 L 1044.7253,1049.5997 L 1043.6849,1049.2378 L 1042.649,1047.6933 L 1042.5651,1047.1138 L 1042.2383,1044.2623 L 1036.9815,1037.7879 L 1036.8158,1037.1741 L 1038.5988,1035.3919 L 1041.6634,1035.9085 L 1042.4691,1035.0489 L 1043.2607,1033.6776 L 1044.3846,1033.8008 L 1044.6158,1032.6314 L 1043.8253,1031.7566 L 1043.7357,1030.5653 L 1043.8277,1029.9747 L 1046.6003,1029.7073 L 1046.5912,1029.1314 L 1047.732,1029.1665 L 1049.4131,1030.4362 L 1050.0029,1030.4704 L 1051.1856,1028.3208 L 1051.2547,1026.437 L 1052.4859,1026.2471 L 1057.2763,1022.2642 L 1057.7179,1021.8096 L 1058.3058,1021.5233 L 1056.5412,1020.854 L 1056.564,1018.3562 L 1057.5402,1017.5592 L 1057.5206,1016.3465 L 1059.6957,1015.2717 L 1059.3157,1013.4937 L 1063.9126,1011.9105 L 1064.5041,1011.7448 L 1065.0044,1010.5915 L 1063.6512,1008.5219 L 1063.2347,1008.0467 L 1062.7716,1006.3241 L 1063.5228,1003.4143 L 1063.4234,1002.815 L 1063.8632,1001.7536 L 1063.6548,1000.0631 L 1063.9817,999.59203 L 1063.5402,999.11502 L 1060.2871,997.00847 L 1057.9049,991.6821 L 1057.3963,989.79512 L 1057.6451,988.52393 L 1057.4356,987.38788 L 1057.19,984.97693 L 1057.3796,983.85038 L 1058.1104,983.01161 L 1058.1481,981.8287 L 1058.4786,980.23381 L 1059.0839,979.85382 L 1059.2586,979.44611 L 1058.4722,973.70974 L 1057.8936,973.66699 L 1056.2804,973.36483 L 1054.593,971.78249 L 1054.2893,971.25705 L 1054.5676,970.09133 L 1053.7401,968.5228 L 1052.9103,961.98056 L 1053.0502,961.81616 L 1052.4416,961.80016 L 1051.2368,960.43667 L 1049.5838,959.88394 L 1049.4602,959.27164 L 1048.1737,956.44417 L 1048.4026,955.24181 L 1048.4938,954.61362 L 1047.2172,953.23733 L 1043.7774,951.65585 L 1043.1973,951.90023 L 1042.1587,952.43369 L 1041.6237,953.57001 L 1041.0376,953.42458 L 1040.3107,951.11868 L 1040.9471,948.88839 L 1040.346,948.66548 L 1036.8343,944.96875 L 1036.5714,944.89455 L 1036.2802,945.4143 L 1034.6141,948.41459 L 1034.0587,948.69736 L 1033.0096,946.46757 L 1030.0139,946.13817 L 1027.5252,944.40601 L 1027.1485,943.24944 L 1025.9453,942.99323 L 1026.6697,942.02217 L 1026.8943,940.38989 L 1028.6222,938.71118 L 1030.3786,938.71761 L 1030.293,938.11377 L 1030.168,937.51321 L 1029.6531,936.3995 L 1027.2583,936.83089 L 1025.7988,935.77035 L 1024.0253,935.50626 L 1023.7535,934.95691 L 1023.7285,934.35143 L 1022.9476,930.87042 L 1023.4049,930.47355 L 1023.0818,929.92095 L 1023.2801,928.72135 M 950.30377,414.50485 L 950.11636,415.11753 L 946.75296,418.16387 L 946.36107,419.36487 L 946.77334,419.8726 L 946.12837,421.66555 L 945.99867,422.29446 L 946.18632,423.88834 L 945.7199,424.28168 L 945.49251,424.83221 L 945.87074,426.01721 L 944.87349,428.29131 L 945.23539,428.81422 L 945.02976,429.0788 L 943.83435,431.04243 L 944.18271,433.12324 L 943.78829,433.38794 L 943.18673,434.10267 L 942.98983,434.7222 L 940.51878,437.74378 L 939.64795,439.23194 L 939.55836,440.88264 L 940.04971,441.22695 L 939.56671,441.57623 L 938.21211,442.72347 L 937.84882,442.2123 L 936.98405,441.59549 L 936.38401,441.83586 L 935.81307,442.03163 L 933.58927,442.92293 L 933.20637,443.41127 L 932.14218,444.09501 L 930.35014,443.69454 L 929.67214,443.58434 L 927.10164,444.50997 L 926.9694,443.96402 L 926.55018,442.35271 L 925.74325,441.55547 L 926.10919,442.72684 L 924.86165,446.16093 L 924.19644,446.24162 L 922.77984,447.50328 L 921.48876,447.16181 L 919.58714,445.3789 L 917.77435,447.18302 L 918.27734,447.58027 L 917.89177,448.76769 L 918.98418,450.30744 L 919.06795,451.53914 L 919.09921,452.16023 L 920.39851,453.25419 L 920.88125,453.56286 L 921.54798,454.2626 L 921.16115,455.19685 L 921.67933,455.46247 L 921.96505,455.95273 L 921.9357,456.55948 L 920.77357,458.59313 L 919.59815,459.00489 L 920.50467,461.03331 L 920.76142,461.57463 L 921.6954,460.76464 L 923.66991,460.74429 L 925.44563,459.93727 L 926.15247,460.89988 L 926.77125,460.9266 L 926.29533,461.33728 L 923.83023,463.17331 L 924.57618,465.47328 L 925.83663,465.45896 L 925.53926,466.03226 L 924.63793,467.74903 L 924.17796,468.14487 L 923.03582,468.51156 L 921.34615,467.94065 L 919.54905,468.38855 L 919.38544,469.005 L 919.05973,470.22638 L 917.85951,470.75043 L 918.32416,471.21386 L 919.45554,473.51272 L 919.56474,475.32944 L 920.19415,475.31128 L 920.76357,476.2208 L 920.11885,479.07278 L 919.915,479.62557 L 919.08339,480.46596 L 918.6138,480.7029 L 918.09613,480.82188 L 917.54341,481.1533 L 915.71506,481.50707 L 914.82941,482.3895 L 914.22519,482.31403 L 912.40797,482.43798 L 911.53713,483.21714 L 911.44007,483.74258 L 910.55405,485.07923 L 910.02006,485.37633 L 906.70247,487.83988 L 906.58238,488.41482 L 906.32968,490.69445 L 907.54433,492.72332 L 907.73793,493.04979 L 908.03543,493.40793 L 908.34329,493.93033 L 908.87286,495.62715 L 908.48995,496.7675 L 907.23912,496.67374 L 906.2716,497.30988 L 906.19492,497.37655 L 905.64498,497.6938 L 903.17976,500.46232 L 901.9536,500.75353 L 900.86094,500.10953 L 900.57509,499.96515 L 899.93695,499.8564 L 898.75306,499.3553 L 896.40538,500.28429 L 895.82723,500.40025 L 895.10292,501.24638 L 894.48896,501.25091 L 893.43185,500.85068 L 893.32632,499.72437 L 892.30692,499.09014 L 891.7127,499.16543 L 889.34516,499.52604 L 889.5523,500.03612 L 889.83613,500.84618 L 889.38717,501.1858 L 888.82977,500.85472 L 884.99387,498.52738 L 881.79763,499.15759 L 881.20164,499.12172 L 880.13618,497.79562 L 880.42342,496.15234 L 879.84717,496.28576 L 876.53679,495.52042 L 876.22563,496.07737 L 876.70635,499.18877 L 875.56814,503.36479 L 875.12095,502.94239 L 872.29294,502.10709 L 872.33457,501.50807 L 871.80247,501.78905 L 870.36234,502.79271 L 869.15098,501.04893 L 868.65887,501.44947 L 865.63801,504.53328 L 865.8201,506.3092 L 865.2994,506.62653 L 863.95568,505.50042 L 863.5133,505.96619 L 862.56161,506.68843 L 859.35853,507.10902 L 858.97398,506.8538 L 858.42873,506.17067 L 857.84488,506.49762 L 856.10484,507.44073 L 854.99864,509.00144 L 851.20426,510.15451 L 850.99914,509.57769 L 848.54087,509.66971 L 847.30244,508.27919 L 845.57455,508.98218 L 845.08561,509.38873 L 843.81503,514.0281 L 842.24064,514.95089 L 839.36935,515.35842 L 838.87939,515.7686 L 837.74383,517.28907 L 837.15543,517.07163 L 835.42273,516.42151 L 833.61639,517.95521 L 833.3842,517.94299 L 831.73249,516.65895 L 831.32946,516.27223 L 831.45334,513.56997 L 831.78323,513.07223 L 831.73034,512.59643 L 831.22899,512.20979 L 829.68825,511.10496 L 827.13989,511.13309 L 826.85316,510.58134 L 827.34008,510.12625 L 828.7301,508.7247 L 829.33863,508.45972 L 830.60756,508.06697 L 831.26644,506.28034 L 832.70848,505.00185 L 832.31381,504.47814 L 829.67649,500.76374 L 830.39852,499.67792 L 830.27071,499.00629 L 829.87351,498.52877 L 828.20434,497.65371 L 827.07637,496.17942 L 825.28446,496.10622 L 824.88346,495.6357 L 824.30505,495.32655 L 823.69083,495.09376 L 823.10166,494.849 L 821.97091,494.63153 L 818.15198,491.3926 L 817.65886,491.06398 L 816.50989,490.82774 L 815.97235,490.52643 L 814.20018,488.94367 L 813.70427,488.57912 L 811.55564,487.60305 L 811.9755,487.129 L 814.83338,483.29649 L 813.01982,483.89803 L 811.90957,483.29157 L 811.36925,482.13731 L 811.6837,479.70254 L 809.24809,480.26845 L 808.99551,479.86446 L 808.68537,479.4995 L 808.82241,478.95243 L 810.18991,477.98148 L 810.00846,477.44609 L 809.39651,477.30449 L 807.78163,476.41819 L 807.24979,476.76329 L 804.71319,479.48933 L 804.21729,479.88312 L 800.54817,478.76977 L 799.89536,478.8072 L 797.46822,479.13729 L 794.66412,477.62365 L 792.73036,477.48832 L 792.51044,478.95818 L 791.90217,478.90959 L 790.70789,478.68049 L 790.76079,478.17948 L 791.58405,476.89962 L 789.90045,477.85567 L 788.57306,477.68414 L 787.52089,475.53514 L 783.49506,473.32792 L 783.64489,472.72086 L 784.09283,470.30045 L 784.64707,469.9683 L 784.77715,469.329 L 786.87377,465.9985 L 789.2384,462.68204 L 789.32748,462.10625 L 789.35836,460.94984 L 788.49271,460.1413 L 788.63911,459.58046 L 789.39986,457.49173 L 789.52147,456.35958 L 789.69267,455.81973 L 790.84354,454.56696 L 791.08093,453.49302 L 788.3601,451.1112 L 787.1004,450.9678 L 786.4605,450.96461 L 783.34916,450.20087 L 782.09858,447.44248 L 781.56105,447.79388 L 781.07286,447.39469 L 782.77114,445.76807 L 782.61676,444.63385 L 782.58032,444.03818 L 783.97616,442.99594 L 786.94843,443.18285 L 787.43927,443.55446 L 787.51583,441.61629 L 787.33526,440.98927 L 785.52905,440.79135 L 786.697,439.61181 L 786.53161,439.10939 L 785.37366,439.07393 L 785.22459,438.53334 L 786.2593,435.4107 L 786.44253,434.86729 L 786.47986,434.62809 L 786.30055,433.45534 L 788.12701,433.04463 L 789.04593,431.49988 L 789.34773,430.96367 L 788.73541,430.746 L 788.63139,430.13365 L 786.9168,430.20618 L 786.08366,429.62726 L 785.42288,429.62459 L 783.65425,428.95597 L 783.45925,428.79619 L 783.68804,428.25989 L 784.23013,424.31878 L 783.93339,423.85236 L 783.74941,422.25742 L 783.95035,421.64454 L 784.44942,419.16082 L 783.78572,418.20994 L 783.69398,417.61383 L 783.07875,417.4623 L 781.08488,417.35822 L 777.91509,415.03754 L 777.34478,414.69296 L 775.32105,410.886 L 775.95576,410.72107 L 777.84904,410.57678 L 782.43492,408.70918 L 783.07382,408.68573 L 782.88363,405.2242 L 783.17264,404.70922 L 782.73722,404.34492 L 780.90722,402.99775 L 780.32793,402.72556 L 777.93673,403.29215 L 775.41747,405.98912 L 773.73703,405.17537 L 773.86357,404.5954 L 775.43809,402.77554 L 774.62635,400.03743 L 772.93276,399.60392 L 772.36548,399.46974 L 773.13585,398.95947 L 773.49142,398.66811 L 775.59323,394.76951 L 773.61682,391.48314 L 773.03778,389.66649 L 772.81583,389.06386 L 773.43296,386.74474 L 773.74602,386.21617 L 773.6577,385.59384 L 772.32195,382.12445 L 772.24793,378.35645 M 1322.9453,1321.9189 L 1322.8591,1322.4476 L 1323.2294,1323.9692 L 1323.4327,1324.5611 L 1326.505,1328.3901 L 1325.9443,1331.3851 L 1326.0363,1332.0967 L 1327.0781,1332.6391 L 1329.361,1331.8415 L 1330.4582,1332.3184 L 1330.6729,1333.5378 L 1329.8552,1335.2149 L 1330.4234,1336.3001 L 1332.0409,1336.9795 L 1331.5665,1340.3962 L 1331.5596,1341.0161 L 1331.5365,1341.6456 L 1331.5453,1342.2677 L 1331.7387,1343.4958 L 1331.867,1344.0298 L 1331.6638,1345.6356 L 1330.0951,1350.9523 L 1330.0121,1351.5797 L 1331.8535,1355.1268 L 1331.8667,1355.7112 L 1332.8896,1357.0168 L 1336.0689,1355.2722 L 1336.6735,1355.2819 L 1336.9782,1356.4053 L 1336.9658,1357.035 L 1337.3276,1357.6717 L 1340.0139,1359.0711 L 1340.355,1359.5939 L 1340.4312,1361.3203 L 1341.0634,1362.2474 L 1341.5007,1362.6022 L 1341.899,1362.9475 L 1343.0056,1364.0891 L 1344.6262,1368.1924 L 1346.9917,1368.8283 L 1347.4646,1370.642 L 1347.4796,1371.2873 L 1347.7617,1372.1686 L 1347.7172,1372.8005 L 1347.2047,1373.9383 L 1346.6164,1374.1012 L 1343.6645,1373.5579 L 1343.3108,1375.4018 L 1343.8414,1377.8225 L 1341.0081,1380.0918 L 1341.0588,1380.7119 L 1338.8879,1382.834 L 1335.5063,1383.9619 L 1334.6195,1384.7741 L 1334.2788,1385.2863 L 1334.3756,1385.791 L 1333.8628,1386.6316 L 1332.3306,1388.5435 L 1329.1815,1390.2665 L 1329.7755,1390.193 L 1330.3692,1390.1246 L 1330.0644,1390.6595 L 1328.4478,1392.4704 L 1325.1858,1393.974 L 1324.6263,1395.0671 L 1324.5092,1394.4812 L 1321.9959,1395.6307 L 1322.6593,1397.3271 L 1322.2423,1398.4557 L 1324.5455,1398.3671 L 1325.164,1399.3468 L 1324.9402,1399.9206 L 1323.317,1400.6697 L 1322.1536,1402.0663 L 1323.6066,1406.2918 L 1323.4121,1410.1837 L 1323.0677,1411.4246 L 1320.4491,1415.0479 L 1320.2731,1415.6724 L 1320.155,1416.3037 L 1318.2272,1421.7048 L 1318.3795,1423.6303 L 1320.0662,1428.4162 L 1316.4392,1428.6499 L 1313.9927,1426.7624 L 1311.569,1426.3284 L 1308.819,1424.9367 L 1307.1721,1425.7682 L 1302.8962,1426.1525 L 1302.3429,1426.4361 L 1301.0939,1428.6399 L 1301.205,1431.1788 L 1297.9384,1432.7665 L 1294.8545,1439.7917 L 1295.0392,1441.0284 L 1296.3175,1442.4291 L 1297.5151,1442.6222 L 1299.8214,1441.7799 L 1300.7427,1442.6053 L 1300.7184,1443.8476 L 1298.0911,1447.336 L 1297.5226,1447.5898 L 1296.9125,1447.5841 L 1295.1254,1447.2018 L 1292.5791,1448.8773 L 1293.2196,1450.419 L 1292.5707,1451.4599 L 1292.0227,1451.7276 L 1290.216,1451.663 L 1287.9359,1453.7117 L 1285.5764,1454.1329 L 1282.9076,1456.2315 L 1280.7924,1454.2533 L 1281.5774,1453.3452 L 1281.082,1452.3471 L 1280.575,1452.6921 L 1279.925,1454.2912 L 1281.3475,1457.7173 L 1277.9278,1460.2331 L 1271.7544,1462.571 L 1270.8764,1463.3723 L 1271.1334,1463.9492 L 1270.1612,1466.2836 L 1269.9321,1470.0836 M 1423.5676,851.00816 L 1423.3888,850.91059 L 1423.1085,850.8586 L 1423.2745,850.44507 L 1423.117,850.43889 L 1422.9877,850.35151 L 1423.0494,850.04933 L 1423.1485,849.85562 L 1423.2586,849.8023 L 1423.261,849.95059 L 1423.4757,849.98369 L 1423.376,850.18561 L 1423.7884,850.2594 L 1423.944,850.52073 L 1424.1098,850.52724 L 1424.0012,850.7535 L 1424.0821,850.80589 L 1424.0019,850.94287 L 1423.8626,850.89624 L 1423.7592,850.99097 L 1423.5676,851.00816 z M 995.67686,1192.7794 L 997.33009,1196.2182 L 997.92836,1197.338 L 997.37729,1200.4094 L 1000.6669,1203.1278 L 1001.0181,1204.3357 L 1001.3959,1204.833 L 998.52752,1206.9936 L 998.41187,1208.8972 L 999.54945,1211.8229 L 1000.0433,1212.1521 L 1002.5482,1216.2339 L 1003.8047,1217.089 L 1003.8718,1217.6284 L 1005.0236,1220.2587 L 1005.4069,1220.7019 L 1005.9893,1220.7563 L 1008.7587,1222.8503 L 1008.7286,1225.237 L 1009.1162,1226.3481 L 1009.4352,1226.8408 L 1009.2136,1227.8644 L 1009.0388,1228.3632 L 1008.5534,1230.07 L 1007.3619,1230.2601 L 1006.821,1230.5412 L 1006.5894,1230.5993 L 1006.5589,1231.2228 L 1007.1395,1233.6344 L 1007.0496,1234.8353 L 1006.4561,1239.1674 L 1004.5818,1241.6363 L 1004.1747,1243.4745 L 1004.5299,1243.8602 L 1005.2148,1244.648 L 1005.8048,1244.4984 L 1007.2879,1243.4618 L 1007.7785,1243.8308 L 1010.386,1248.0192 L 1010.0185,1248.497 L 1008.7227,1250.4257 L 1009.1048,1250.8756 L 1009.7018,1251.8957 L 1009.1697,1252.91 L 1009.1541,1254.688 L 1009.5231,1255.0902 L 1010.0572,1255.1467 L 1013.6389,1258.2714 L 1013.9695,1258.7938 L 1015.1279,1257.7475 L 1015.6264,1257.6053 L 1015.2526,1257.0992 L 1014.0887,1253.616 L 1016.4551,1251.752 L 1019.4194,1252.1166 L 1021.2754,1250.5077 L 1021.8877,1250.5549 L 1022.4457,1250.4392 L 1024.0685,1249.4643 L 1026.464,1250.0404 L 1028.7314,1248.9871 L 1029.4493,1249.4656 L 1029.7537,1249.8209 L 1030.3102,1250.8867 L 1030.1126,1252.7025 L 1032.1291,1254.0925 L 1033.9384,1253.9811 L 1035.9125,1252.5495 L 1037.4041,1253.4156 L 1037.9687,1253.1874 L 1038.493,1253.3292 L 1038.9349,1253.0056 L 1042.8421,1254.3668 L 1044.6725,1252.8413 L 1046.9411,1253.7907 L 1047.4381,1252.1205 L 1047.9876,1252.429 L 1049.0486,1252.0165 L 1049.6596,1250.8961 L 1049.6155,1248.9683 L 1051.0483,1245.3938 L 1053.0886,1244.099 L 1053.3755,1243.5241 L 1053.5346,1242.9718 L 1055.5913,1241.1594 L 1058.1005,1239.2814 L 1057.2353,1238.1078 L 1057.5815,1237.594 L 1057.8366,1237.1293 L 1057.8486,1236.1867 L 1057.6584,1235.6417 L 1057.7777,1232.846 L 1058.6643,1232.1839 L 1059.0149,1229.6831 L 1059.1461,1229.065 L 1060.8873,1227.6278 L 1061.9393,1227.9865 L 1062.3912,1227.5669 L 1063.6552,1226.2175 L 1063.4393,1221.2607 L 1065.0732,1219.462 L 1064.166,1217.1773 L 1065.9224,1215.3707 L 1067.0083,1212.3992 L 1067.3193,1211.8443 L 1070.3523,1212.2989 L 1070.7543,1211.8156 L 1071.0571,1209.3674 L 1073.6841,1205.9623 L 1073.9986,1205.4273 L 1074.9602,1206.0815 L 1076.6173,1205.7998 L 1077.0993,1205.4748 L 1078.4153,1201.4987 L 1079.4026,1201.7701 L 1080.5853,1199.7496 L 1081.0615,1199.3886 L 1081.1344,1199.2325 L 1081.6179,1200.923 L 1083.3678,1200.8929 L 1085.9222,1205.0083 L 1085.4336,1206.7671 L 1085.8964,1208.5511 L 1086.2378,1209.0581 L 1085.1458,1211.2101 L 1084.8607,1213.0015 L 1085.4402,1214.7434 L 1086.625,1214.64 L 1087.0185,1213.4975 L 1089.3007,1211.5569 L 1089.9074,1211.5079 L 1090.7974,1212.3573 L 1095.4674,1211.9122 L 1095.8975,1211.4694 L 1096.4981,1211.4405 L 1096.4796,1212.0704 L 1095.9714,1215.6809 L 1096.9876,1216.3869 L 1096.7348,1218.1173 L 1097.7885,1219.6495 L 1099.0004,1224.4923 L 1100.2913,1227.1927 L 1101.3308,1227.7809 L 1102.4756,1227.7187 L 1103.718,1226.5141 L 1104.1557,1226.0996 L 1105.6266,1228.0356 L 1105.8748,1228.5983 L 1106.1214,1229.1743 L 1105.9591,1231.0285 L 1105.0135,1231.6643 L 1103.85,1231.2836 L 1103.3869,1231.6946 L 1103.4096,1232.3231 L 1103.7542,1232.8422 L 1105.4118,1233.5491 L 1105.8423,1234.7136 L 1105.564,1236.5423 L 1104.545,1238.1086 L 1105.317,1240.3845 L 1105.5091,1240.9633 L 1105.9271,1244.0373 L 1106.8418,1245.683 L 1106.5799,1247.4473 L 1107.6011,1248.0262 L 1108.6065,1250.2467 L 1109.5124,1251.0584 L 1109.4295,1251.6744 L 1110.159,1252.3993 L 1110.4906,1252.8098 L 1111.3719,1253.4588 L 1111.9362,1253.4636 L 1112.4359,1250.9843 L 1114.2204,1247.6376 L 1114.4607,1245.7546 L 1116.2821,1241.0564 L 1118.5932,1240.5048 L 1119.2053,1240.6042 L 1118.6704,1238.4002 L 1117.7111,1237.8207 L 1117.8913,1237.2779 L 1118.2206,1234.269 L 1119.6,1232.487 L 1120.3588,1231.5829 L 1119.8286,1229.9001 L 1120.5143,1228.969 L 1120.5771,1228.3724 L 1120.4187,1226.045 L 1120.1065,1225.5535 L 1120.3185,1224.3446 L 1122.3581,1221.3588 L 1123.4529,1220.8987 L 1123.996,1220.6194 L 1123.3874,1218.4273 L 1125.5587,1219.0635 L 1126.1302,1219.0019 L 1126.8017,1219.0398 L 1126.6153,1217.4588 L 1126.9311,1217.026 L 1126.2564,1214.9121 L 1127.3117,1213.4981 L 1127.5379,1212.941 L 1127.5746,1210.0956 L 1127.304,1209.581 L 1129.3784,1208.3176 L 1130.5,1206.1165 L 1132.3315,1206.3527 L 1132.9756,1207.4401 L 1133.4229,1207.8812 L 1134.1906,1209.2134 L 1134.5356,1209.6119 L 1135.0913,1211.3107 L 1137.0176,1212.6575 L 1137.2372,1213.2292 L 1138.331,1213.6246 L 1139.0521,1211.8774 L 1141.4381,1211.3435 L 1142.8116,1210.0467 L 1143.9822,1208.8596 L 1143.0754,1207.3075 L 1143.1417,1205.502 L 1142.9061,1204.9465 L 1143.5058,1204.738 L 1145.8503,1203.8017 L 1145.2014,1200.971 L 1145.9148,1200.0813 L 1145.6884,1199.5457 L 1146.1638,1199.3126 L 1146.6704,1199.1626 L 1147.8758,1199.1508 L 1147.4777,1200.3271 L 1148.0571,1201.3592 L 1150.367,1201.9696 L 1152.3279,1199.5709 L 1154.0308,1199.4955 L 1154.5255,1198.3569 L 1156.5291,1196.9235 L 1157.018,1196.5464 L 1158.5902,1196.7071 L 1159.1171,1196.7454 L 1159.2053,1196.1165 L 1159.9797,1193.7118 L 1160.9465,1193.2065 L 1161.4168,1192.9232 L 1161.2856,1194.1652 L 1162.0582,1196.4213 L 1163.7196,1197.1201 L 1165.2797,1196.3734 L 1166.2392,1197.9925 L 1166.4944,1198.5702 L 1166.6116,1203.1206 L 1166.1833,1203.5193 L 1166.5194,1203.9056 L 1167.3074,1205.2294 L 1167.1246,1205.8506 L 1167.5928,1207.7175 L 1169.3888,1210.3836 L 1169.4987,1210.9791 L 1170.1591,1215.1424 L 1170.5899,1215.5928 L 1172.1572,1217.5026 L 1171.978,1219.3473 L 1173.7298,1221.0478 L 1174.7712,1223.289 L 1175.8742,1223.8748 L 1176.3847,1223.5091 L 1176.6502,1222.9537 L 1178.457,1220.6272 L 1179.0679,1220.5214 L 1182.7252,1219.9283 L 1184.5261,1220.3651 L 1186.226,1218.8081 L 1187.9582,1220.2839 L 1188.8791,1219.6836 L 1188.5172,1218.4668 L 1189.9048,1214.3226 L 1189.5486,1211.1976 L 1190.6044,1210.5421 L 1191.2254,1210.5508 L 1191.9792,1211.3779 L 1193.9565,1210.4617 L 1194.295,1210.9215 L 1195.3234,1210.6906 L 1195.7833,1210.9534 L 1197.7869,1212.1657 L 1198.3252,1213.909 L 1199.1935,1214.6316 L 1199.4969,1215.1617 L 1199.0018,1217.5105 L 1197.9723,1218.1556 L 1197.4443,1218.4525 L 1198.2332,1219.3134 L 1198.5757,1219.7964 L 1202.1152,1219.2434 L 1203.0577,1218.4606 L 1205.2957,1219.2214 L 1207.3778,1218.3413 L 1207.3085,1217.7233 L 1208.3843,1218.1475 L 1209.8904,1221.8523 L 1210.4037,1222.1234 L 1210.6382,1222.7053 L 1210.4188,1223.9021 L 1210.9481,1224.9895 L 1211.9376,1224.6362 L 1215.1503,1227.5301 L 1215.953,1230.51 L 1216.3709,1230.9885 L 1216.8319,1231.2985 L 1217.6807,1230.5795 L 1217.9376,1230.078 L 1219.6934,1229.5807 L 1220.7823,1230.1565 L 1220.902,1230.7659 L 1219.6581,1232.8769 L 1219.2707,1233.3546 L 1220.4737,1234.7288 L 1222.8641,1235.0214 L 1223.3982,1235.3248 L 1224.6598,1233.2328 L 1227.5988,1233.6774 L 1228.1531,1231.8626 L 1229.2762,1231.3756 L 1229.868,1231.1789 L 1230.8964,1230.9698 L 1231.2932,1230.6146 L 1231.2183,1230.3662 L 1230.4201,1228.9266 L 1232.7992,1225.4095 L 1233.7667,1221.2162 L 1233.9036,1220.6071 L 1235.5772,1219.8675 L 1236.1341,1219.6178 L 1236.6587,1221.368 L 1238.0541,1222.515 L 1238.5016,1222.9244 L 1239.1609,1222.042 L 1238.4393,1220.2512 L 1238.9569,1219.2604 L 1240.6723,1220.7206 L 1241.9774,1218.7123 L 1242.8494,1219.4817 L 1244.0319,1219.2429 L 1244.4106,1218.7278 L 1243.8042,1217.0381 L 1243.3302,1216.6723 L 1244.429,1212.9584 L 1245.7157,1211.753 L 1250.0203,1212.2989 L 1250.608,1212.2926 L 1251.4829,1212.4063 L 1251.9164,1212.1974 L 1255.113,1210.6916 L 1255.7181,1210.7748 L 1258.1161,1211.517 L 1260.6135,1211.5316 L 1261.8183,1210.073 L 1263.5029,1209.2381 L 1264.1165,1205.248 L 1265.0487,1204.5515 L 1264.841,1204.1763 L 1267.7557,1201.0634 L 1268.1985,1200.6316 L 1268.2147,1200.0101 L 1268.9053,1198.301 L 1269.1189,1195.2722 L 1270.1271,1194.7474 L 1270.5593,1194.3713 L 1273.2609,1195.8209 L 1276.1503,1194.5724 L 1278.0237,1194.5543 L 1278.4586,1194.1623 L 1280.5721,1193.3922 L 1280.4292,1192.2185 L 1280.0181,1191.9712 L 1279.681,1191.0654 L 1277.7609,1189.5963 L 1278.4012,1185.3706 L 1278.7147,1184.8191 L 1281.0437,1183.008 L 1285.277,1183.426 L 1285.5569,1182.892 L 1286.9961,1181.9804 L 1288.7591,1181.8676 L 1288.989,1181.2813 L 1288.7175,1178.8156 L 1287.6428,1178.2424 L 1286.4369,1178.3536 L 1284.7952,1176.5514 L 1284.623,1174.7597 L 1285.7065,1174.3504 L 1286.1722,1172.7106 L 1286.7051,1172.4795 L 1286.2495,1170.2738 L 1286.8367,1170.1181 L 1287.7989,1169.3965 L 1289.4571,1170.0003 L 1289.8696,1169.5324 L 1291.389,1168.714 L 1291.1,1166.8877 L 1287.9376,1165.0607 L 1288.4427,1162.0821 L 1288.9988,1162.2288 L 1291.1325,1162.9753 L 1292.8201,1162.7294 L 1295.142,1164.6372 L 1294.9327,1166.993 L 1296.0166,1168.4658 L 1296.4401,1168.3852 L 1296.7254,1168.0575 L 1296.3342,1166.4717 L 1298.0733,1166.6989 L 1298.6576,1166.7413 L 1298.4749,1165.5579 L 1297.5358,1164.808 L 1296.9212,1162.4822 L 1296.8942,1161.8611 L 1297.4957,1158.8644 L 1298.7666,1157.6009 L 1299.0492,1156.4123 L 1300.5929,1155.5845 L 1301.6025,1152.7375 L 1301.3491,1152.2154 L 1301.1436,1149.955 L 1301.6992,1148.9962 L 1302.3176,1148.8851 L 1302.7095,1147.6701 L 1301.7769,1145.3021 L 1301.3979,1145.0118 L 1300.8395,1144.7971 L 1300.0066,1143.2681 L 1298.6083,1142.1319 L 1298.2479,1141.6185 L 1297.1626,1141.0174 L 1295.7208,1138.246 L 1293.8953,1138.1175 L 1293.3901,1138.448 L 1290.3093,1140.2875 L 1289.7862,1141.386 L 1288.2349,1140.5763 L 1287.7625,1140.9555 L 1285.1049,1137.6962 L 1286.2967,1136.2957 L 1286.5074,1135.1065 L 1287.5066,1133.8065 L 1287.1382,1133.3855 L 1285.3733,1132.8584 L 1282.7599,1130.2396 L 1286.7745,1126.7649 L 1287.3606,1126.8332 L 1286.3226,1124.589 L 1283.8846,1121.8576 L 1283.3649,1121.5199 L 1280.3905,1120.8163 L 1279.7923,1120.638 L 1279.2371,1122.128 L 1278.2039,1121.9092 L 1277.4581,1122.8168 L 1275.1642,1122.6898 L 1274.972,1122.1601 L 1275.0602,1119.9176 L 1273.3349,1120.5096 L 1271.7123,1118.0241 L 1271.1052,1118.0749 L 1270.7448,1117.7401 L 1269.4612,1117.2117 L 1268.9099,1117.4912 L 1266.2102,1118.5857 L 1263.673,1116.8496 L 1261.305,1117.3609 L 1260.7455,1117.5946 L 1259.0714,1118.2382 L 1259.5068,1118.7075 L 1260.6198,1120.9157 L 1259.7608,1121.6887 L 1256.0293,1121.1163 L 1254.6005,1122.3192 L 1254.435,1123.5972 L 1253.6481,1123.033 L 1253.2591,1122.7246 L 1251.4348,1123.0632 L 1250.6785,1124.0548 L 1250.4755,1125.9624 L 1249.7535,1127.0256 L 1248.7351,1126.4088 L 1247.7374,1124.1452 L 1246.0507,1123.5763 L 1245.5457,1123.9338 L 1243.9766,1124.8307 L 1243.3964,1128.4629 L 1242.6882,1127.9834 L 1242.6408,1127.469 L 1242.4142,1126.8815 L 1241.1083,1123.3795 L 1240.5046,1123.3665 L 1239.1639,1121.7349 L 1238.9708,1120.5295 L 1238.0427,1119.7759 L 1237.4316,1119.8649 L 1235.861,1120.768 L 1234.1643,1120.0775 L 1233.0415,1120.5643 L 1232.5036,1122.3369 L 1230.4649,1123.6771 L 1230.5859,1125.975 L 1229.393,1127.1979 L 1228.9327,1127.5391 L 1228.7946,1127.0031 L 1228.4921,1126.5428 L 1228.455,1125.9644 L 1227.8115,1123.1804 L 1227.1464,1120.845 L 1227.133,1115.882 L 1227.9545,1113.5357 L 1229.0343,1112.9619 L 1229.5471,1111.7941 L 1229.8987,1111.2632 L 1230.4725,1111.4313 L 1232.8616,1109.8481 L 1235.7069,1109.083 L 1236.144,1108.6693 L 1236.1479,1108.472 L 1236.0939,1107.8734 L 1235.7495,1107.3858 L 1237.1321,1106.6875 L 1237.6438,1106.5042 L 1236.8926,1105.5849 L 1237.3537,1104.4674 L 1236.5813,1102.8433 L 1236.6873,1102.2466 L 1237.2045,1101.1714 L 1238.6845,1100.1135 L 1238.9758,1099.5717 L 1238.6832,1099.0782 L 1238.7696,1097.9464 L 1237.3444,1097.0195 L 1236.9138,1096.7815 L 1236.344,1096.4552 L 1236.0144,1096.0269 L 1235.5494,1094.5212 L 1234.0147,1089.1066 L 1235.033,1086.8339 L 1233.7862,1085.5689 L 1233.446,1084.4246 L 1233.1386,1083.9146 L 1232.643,1082.9187 L 1232.2098,1082.5297 L 1229.3395,1079.833 L 1229.2504,1079.2603 L 1228.7094,1078.9629 L 1225.7946,1078.2133 L 1224.229,1076.3704 L 1223.7308,1076.2108 L 1223.2289,1076.0626 L 1223.1316,1075.4685 L 1222.9104,1074.3055 L 1220.0235,1073.7935 L 1218.4774,1072.9014 L 1218.2983,1072.4059 L 1218.1063,1071.9152 L 1217.9299,1071.3622 L 1217.7288,1070.2163 L 1216.1726,1068.505 L 1215.8635,1068.0135 L 1214.794,1065.3195 L 1214.4856,1064.7624 L 1212.6498,1062.194 L 1212.5711,1061.6083 L 1212.4314,1060.4358 L 1213.2562,1058.3382 L 1212.9551,1057.8965 L 1212.5767,1056.8973 L 1213.0718,1055.9569 L 1212.47,1055.875 L 1211.4429,1055.2257 L 1209.8967,1051.9441 L 1208.6464,1052.9382 L 1206.7328,1050.6871 L 1206.2612,1050.3033 L 1206.5029,1049.8816 L 1206.6832,1049.4307 L 1207.0219,1049.1406 L 1207.4899,1048.6997 L 1206.4341,1046.5679 L 1202.8813,1045.1885 L 1201.9955,1044.2582 L 1202.213,1043.1494 L 1204.4297,1041.9443 L 1206.2349,1036.6448 L 1205.2523,1033.0235 L 1205.4594,1032.8297 L 1206.1982,1031.2878 L 1206.4414,1030.7162 L 1205.397,1030.8885 L 1205.0084,1029.8103 L 1204.796,1029.2717 L 1207.1438,1029.1456 L 1209.1995,1026.7489 L 1209.7118,1026.4472 L 1209.5368,1025.845 L 1207.9219,1022.4737 L 1206.5005,1021.3044 L 1206.1673,1020.7703 L 1205.533,1019.7321 L 1202.0747,1018.2725 L 1202.059,1018.2312 L 1202.0933,1015.0839 L 1203.4012,1013.7342 L 1203.0594,1011.872 L 1204.0478,1010.3342 L 1208.1569,1011.6959 L 1209.2407,1011.0852 L 1209.818,1009.2954 L 1210.4268,1009.1369 L 1213.1721,1010.5813 L 1216.1373,1008.6602 L 1216.7154,1008.4096 L 1218.4244,1007.7704 L 1219.0547,1006.1385 L 1219.5022,1005.706 L 1219.5439,1005.6656 L 1218.9446,1005.5654 L 1218.6119,1004.397 L 1217.4944,1002.1115 L 1216.4401,996.50137 L 1216.1959,995.90106 L 1217.7895,991.33321 L 1217.5843,990.13952 L 1218.1798,989.1009 L 1217.8079,988.59522 L 1215.8448,985.46275 L 1214.6615,985.08535 L 1215.6452,981.56871 L 1214.2271,977.55159 L 1214.4261,976.9678 L 1216.2842,976.09724 L 1216.7179,975.77642 L 1215.9206,974.76272 L 1214.1943,971.3173 L 1214.0496,969.38758 L 1214.6725,967.62184 L 1213.5935,965.28971 L 1212.1133,964.05623 L 1211.5994,961.63598 L 1212.1101,961.26187 L 1212.7323,961.15482 L 1215.3343,961.72961 L 1215.8267,961.98564 L 1216.4475,958.53155 L 1221.268,957.7246 L 1221.8828,957.67392 L 1224.2066,957.38497 L 1225.0231,955.76186 L 1225.9076,955.36618 L 1226.4889,955.534 L 1228.0813,955.14595 M 423.54701,740.7784 L 424.25836,738.43038 L 425.84266,737.54291 L 427.45326,735.71822 L 428.0355,735.47595 L 428.40821,737.34406 L 429.63103,738.82044 L 431.5395,739.23337 L 433.78524,738.10226 L 435.09696,738.02349 L 436.52577,739.34039 L 441.56089,738.14687 L 441.90367,734.38799 L 443.30079,732.23404 L 443.9514,729.73951 L 443.84231,728.46053 L 443.92449,728.45578 L 446.19671,729.30018 L 448.72337,729.14183 L 449.17701,729.5805 L 448.45288,731.20551 L 450.09901,732.15094 L 450.65258,732.46037 L 454.12697,730.00005 L 455.84472,729.37042 L 456.45228,729.25531 L 458.07784,729.63125 L 457.63372,731.40466 L 457.97919,732.5303 L 460.52911,732.95827 L 461.59623,732.25101 L 461.91837,731.69253 L 462.12466,729.77795 L 461.92883,727.86614 L 462.74559,726.98178 L 463.34666,726.72575 L 469.05514,725.17275 L 469.26809,723.93338 L 468.41658,722.30839 L 469.22458,718.62924 L 469.32345,718.00761 L 468.50323,717.54403 L 468.26924,717.11033 L 468.84999,716.86898 L 468.5902,713.86196 L 470.61963,712.4071 L 470.7688,711.80744 L 470.91479,711.18159 L 470.61119,708.66119 L 469.28445,707.26805 L 471.17987,703.95935 L 474.98238,703.78564 L 475.5627,701.33723 L 476.10986,700.98782 L 477.09315,700.47964 L 479.42037,700.78005 L 480.00822,700.85037 L 484.4563,696.23886 L 484.92887,695.78375 L 484.97248,695.80578 L 485.48027,696.94356 L 485.4493,699.42589 L 486.45519,700.02936 L 487.08883,699.98398 L 489.60536,697.17811 L 495.71988,695.54072 L 496.3579,695.63079 L 496.96707,695.59227 L 499.49166,693.20537 L 500.10166,693.24444 L 501.61623,693.70759 L 502.09003,693.47878 L 503.27464,692.96938 L 504.33358,693.68877 L 508.60757,694.73556 L 510.46286,694.95526 L 513.16622,693.48022 L 514.95243,693.95461 L 515.40038,694.37828 L 515.76391,694.83409 L 517.53554,694.81407 L 518.09848,694.63766 L 518.7452,693.07642 L 521.23922,692.40979 L 524.43832,692.84824 L 526.00017,691.00036 L 526.56076,690.67455 L 527.35329,690.65185 L 527.52072,687.07642 L 528.87568,684.36974 L 528.74509,683.7734 L 529.69327,683.08948 L 531.95213,682.91113 L 532.41679,682.54771 L 532.82116,681.30603 L 532.91925,680.8105 L 534.03656,680.2851 L 535.29038,680.40695 L 537.69045,679.40314 L 540.98246,679.21011 L 543.2889,676.93429 L 544.3272,676.22777 L 545.46341,676.69901 L 548.48276,675.86422 L 548.82394,675.34605 L 548.08059,672.0368 L 547.27448,671.17746 L 547.12447,670.60972 L 547.40665,670.05973 L 549.24565,670.05198 L 550.32486,670.62031 L 554.01461,670.54302 L 555.04436,671.11417 L 555.60645,671.39758 L 555.97088,671.20446 L 556.32628,671.41353 L 556.78431,671.85332 L 558.50033,671.20565 L 559.85975,672.50972 L 560.67013,674.81068 L 561.84472,675.32131 L 561.98075,676.48576 L 565.07711,677.30077 L 565.43733,677.40784 L 576.33778,680.5177 L 576.98608,680.68331 L 578.10215,676.49956 L 577.70551,676.0084 L 577.47106,674.93691 L 577.95238,674.59798 L 579.26489,672.71566 L 579.86271,672.9494 L 580.15089,672.45429 L 580.75724,669.81474 L 580.91189,668.15496 L 579.96307,666.7858 L 580.43168,666.45399 L 580.65764,666.03575 L 581.13661,665.96199 L 582.35836,665.73221 L 583.70874,664.48278 L 584.16246,664.0433 L 583.06536,661.37134 L 583.33087,660.19264 L 585.33136,658.9462 L 585.80593,658.55514 L 585.86415,656.13585 L 586.7597,655.30824 L 587.45698,652.99977 L 586.94828,651.88752 L 587.49992,651.20168 L 587.91454,650.96511 L 587.72514,649.08983 L 587.6891,648.45596 L 588.80641,646.0042 L 589.28266,645.66266 L 591.65596,645.11294 L 592.64112,642.33979 L 594.50181,641.87688 L 595.69877,642.23264 L 596.33234,642.13514 L 597.55012,642.46553 L 598.1392,642.70057 L 598.95574,643.12872 L 599.38969,642.96889 L 601.72609,642.66674 L 603.64515,641.29608 L 604.24936,641.22664 L 605.35067,640.69004 L 605.79523,639.5722 L 605.61528,637.2174 L 605.38874,636.66072 L 603.89189,633.90813 L 604.47765,632.79246 L 603.89429,630.43323 L 604.5272,628.68849 L 605.37831,627.33951 L 604.87227,627.07754 L 602.99562,625.57042 L 602.119,624.01196 L 601.8822,623.46566 L 601.6275,621.03017 L 601.3996,620.457 L 600.88297,617.45491 L 600.5965,616.90232 L 600.41982,612.64993 L 599.37523,610.68394 L 598.7435,610.71704 L 598.89967,609.53213 L 597.99799,607.50254 L 598.19905,606.93776 L 598.2723,602.69801 L 597.73603,602.33213 L 597.43569,601.86414 L 597.07418,601.43825 L 597.65512,600.30611 L 597.89914,599.70825 L 595.6128,593.89082 L 595.45257,590.77022 L 596.24933,589.94511 L 596.90517,586.79202 L 599.76326,583.21599 L 600.38501,582.95797 L 600.60479,582.7579 L 602.29875,579.56209 L 601.31591,578.01328 L 601.04018,577.46338 L 600.53895,572.76588 L 599.89472,572.6907 L 600.85303,571.12024 L 600.93822,570.50449 L 601.41797,570.18666 L 599.95913,566.71238 L 598.04121,564.15604 L 598.00905,563.52051 L 598.17088,563.31624 L 598.19997,562.6732 L 597.6474,560.25413 L 597.94648,559.03533 L 599.40179,557.79624 L 599.83074,557.32582 L 599.60011,555.66493 L 599.91734,554.46044 L 598.78637,553.00018 L 598.30473,550.03841 L 598.61741,548.20219 L 599.56209,547.38428 L 599.21974,546.85713 M 696.99616,1580.9194 L 697.52346,1577.9044 L 696.43744,1575.0062 L 696.42138,1573.1382 L 695.36921,1571.6225 L 695.04591,1569.1457 L 695.63231,1569.0523 L 696.79835,1568.8362 L 698.72746,1566.5663 L 700.35236,1566.7076 L 701.07236,1565.0894 L 701.06893,1564.4863 L 700.49328,1562.0296 L 699.75956,1561.0529 L 699.42583,1555.3791 L 700.00694,1552.9275 L 702.38632,1552.4457 L 702.91063,1552.1134 L 703.62826,1551.1709 L 703.9621,1549.397 L 703.49067,1547.0547 L 705.00175,1546.2325 L 706.80092,1547.3956 L 707.24542,1547.783 L 711.13912,1544.7605 L 711.73644,1544.7221 L 709.4792,1542.815 L 709.53012,1541.5327 L 710.93547,1538.0426 L 709.64824,1535.9857 L 710.35366,1535.0904 L 710.14445,1533.2695 L 712.30778,1533.9521 L 713.57441,1532.037 L 715.58379,1531.0028 L 716.12577,1530.7955 L 717.06253,1527.6723 L 716.99265,1527.1041 L 717.58186,1526.4927 L 718.64352,1525.2541 L 718.58264,1524.1384 L 718.78489,1523.6219 L 719.93359,1521.4797 L 720.50573,1521.6433 L 721.75629,1523.6885 L 723.09368,1521.8608 L 725.46183,1521.8988 L 726.05247,1521.847 L 725.56053,1514.1511 L 725.27926,1513.5701 L 726.3281,1513.426 L 726.82526,1513.7288 L 727.84764,1514.2861 L 728.56171,1513.9081 L 728.72365,1513.3242 L 728.95395,1511.4838 L 731.38517,1507.9178 L 732.28874,1504.9908 L 732.27395,1504.3599 L 731.35302,1503.5639 L 731.60614,1502.9936 L 731.05861,1502.9025 L 729.48051,1502.3774 L 729.07194,1501.3251 L 728.99953,1498.863 L 729.92943,1498.1017 L 730.30515,1497.6228 L 731.0983,1495.2285 L 731.32193,1494.3829 L 731.42983,1493.9586 L 734.2331,1493.6235 L 735.71774,1494.6045 L 736.25565,1494.3394 L 737.23898,1492.7288 L 737.69971,1492.3134 L 737.87218,1492.0187 L 738.17638,1491.47 L 737.81714,1490.4339 L 735.31711,1487.8467 L 735.57867,1487.3272 L 735.24246,1486.2426 L 734.70252,1486.503 L 734.05137,1485.5304 L 734.80349,1483.8363 L 734.48826,1483.3892 L 734.97508,1482.3989 L 734.09714,1482.3 L 734.59088,1481.7747 L 734.15877,1481.4444 L 735.62878,1477.5759 L 735.86148,1477.0277 L 734.48737,1475.7388 L 734.03347,1475.3043 L 734.22859,1474.6965 L 734.32603,1472.8419 L 733.74609,1473.0393 L 732.54881,1473.0507 L 731.84653,1474.5413 L 731.50034,1475.5946 L 731.06763,1475.2562 L 730.30683,1475.4549 L 729.81373,1477.6377 L 729.26669,1478.6416 L 729.20048,1479.2208 L 726.12845,1479.1829 L 727.89189,1476.969 L 725.83031,1474.8321 L 726.18506,1473.0711 L 726.7983,1471.2807 L 726.31975,1469.4773 L 726.85232,1469.6427 L 730.57818,1469.0107 L 732.17958,1468.858 L 732.24732,1468.2754 L 732.08604,1467.8235 L 731.30064,1467.3994 L 730.74587,1467.5517 L 730.02733,1464.8385 L 728.41673,1464.2602 L 728.72588,1463.1124 L 728.96077,1462.1034 L 729.06041,1461.5955 L 729.56176,1460.4943 L 729.1172,1459.1174 L 729.11001,1458.5963 L 728.54527,1457.8283 L 728.41132,1457.359 L 727.5323,1456.7591 L 727.31053,1456.1758 L 725.83289,1454.2533 L 723.63098,1455.0184 L 723.07449,1455.0299 L 722.62674,1454.0068 L 723.2419,1451.8326 L 722.80233,1451.1496 L 722.96395,1450.5803 L 722.39326,1447.7293 L 721.28681,1447.8411 L 719.74983,1447.1596 L 718.75144,1447.5312 L 718.32262,1447.9055 L 717.71996,1447.904 L 715.53314,1447.1707 L 714.66948,1447.905 L 714.12813,1447.8654 L 713.75396,1447.4504 L 712.25272,1445.1343 L 709.2499,1447.1762 L 708.69914,1447.4384 L 708.54765,1446.8399 L 707.99095,1445.7488 L 705.68812,1446.4048 L 704.40925,1447.6132 L 703.9129,1447.2585 L 703.07262,1445.1215 L 702.49931,1445.1136 L 702.47033,1444.4896 L 703.1394,1443.455 L 703.35985,1441.594 L 699.88256,1441.5881 L 699.15935,1440.7121 L 699.0555,1440.1055 L 699.16249,1439.5278 L 698.94215,1436.6344 L 700.85973,1437.7566 L 701.31463,1437.43 L 701.31604,1436.2819 L 701.51215,1435.7422 L 701.8426,1434.7901 L 703.47801,1434.4638 L 703.85745,1432.8158 L 704.30472,1431.4831 L 703.09107,1431.3719 L 702.15587,1430.6494 L 702.43021,1429.4015 L 704.11798,1427.5637 L 703.33755,1424.5331 L 706.00284,1423.1176 L 706.51931,1422.7726 L 707.02103,1422.4068 L 710.07479,1419.4545 L 709.85323,1418.8799 L 709.78864,1417.6534 L 706.94641,1417.0195 L 707.56929,1416.0444 L 708.34566,1415.3075 L 707.37234,1412.9851 L 707.44008,1411.1178 L 706.5333,1410.2966 L 706.97417,1408.5595 L 705.92277,1406.5346 L 707.30788,1405.6434 L 707.73499,1406.2391 L 710.00309,1406.2512 L 709.79505,1402.61 L 710.61825,1401.7731 L 710.16607,1400.6188 L 710.0297,1400.0709 L 708.20573,1397.3888 L 708.78898,1396.9166 L 709.86105,1395.0069 L 710.963,1396.2531 L 711.13947,1395.7042 L 710.91046,1395.1624 L 710.09237,1393.0173 L 709.17459,1392.3425 L 708.65533,1392.3945 L 707.35633,1391.6112 L 705.89147,1391.3188 L 704.83447,1390.9865 L 704.28638,1390.1219 L 705.17884,1389.3677 L 705.8044,1387.675 L 707.2,1388.2543 L 708.11023,1387.5029 L 708.89293,1387.2001 L 709.26039,1386.9706 L 709.49133,1386.3936 L 712.05234,1383.0293 L 713.90215,1384.5517 L 715.30038,1382.6251 L 717.54072,1383.0102 L 718.78119,1381.6766 L 721.133,1384.3748 L 721.66274,1384.6603 L 722.14546,1384.365 L 722.5669,1383.978 L 722.25736,1381.7197 L 722.66572,1381.2542 L 725.21355,1381.437 L 726.94167,1378.9079 L 729.0967,1377.9725 L 730.06452,1374.3348 L 734.01822,1378.213 L 734.51983,1378.5642 L 735.3447,1379.4794 L 735.32142,1381.3766 L 732.11786,1384.2957 L 736.66399,1387.4077 L 738.33633,1389.2757 L 738.83957,1389.6515 L 739.31333,1389.2606 L 742.05846,1389.9451 L 743.38307,1388.6698 L 744.14192,1386.9628 L 744.10067,1386.3226 L 743.46506,1383.2019 L 741.65012,1379.2138 L 743.13252,1377.3301 L 743.18592,1376.0719 L 743.46253,1375.649 L 744.26314,1374.444 L 744.81093,1374.7039 L 746.44733,1373.9691 L 748.22874,1374.0346 L 750.76445,1371.6209 L 750.69131,1371.0096 L 752.48183,1372.5247 L 752.18231,1375.6406 L 754.47975,1376.3334 L 755.01741,1376.0515 L 755.57406,1374.9334 L 755.61505,1372.3763 L 757.56248,1370.8994 L 758.65843,1368.6162 L 759.12207,1368.858 L 759.62342,1368.5526 L 761.81178,1367.193 L 762.31654,1367.4962 L 763.63545,1367.4542 L 764.09605,1367.2671 L 764.12237,1369.643 L 766.35528,1370.5809 L 767.51855,1370.3185 L 768.9497,1371.1737 L 769.25504,1371.7166 L 770.3682,1371.7255 L 772.95212,1372.935 L 773.29655,1372.4602 L 774.88348,1371.8632 L 774.48134,1370.1323 L 774.56143,1369.538 L 775.72622,1369.9164 L 780.41676,1368.59 L 781.83652,1369.7979 L 782.43429,1369.9435 L 783.47836,1369.3556 L 784.99531,1367.3576 L 786.20691,1367.31 L 787.64819,1366.224 L 790.01737,1366.0258 L 790.62628,1366.1009 L 791.26137,1363.7494 L 791.62214,1363.2454 L 791.66098,1362.8744 L 792.67949,1361.7453 L 792.81767,1361.2337 L 796.06174,1361.2226 L 796.09882,1360.628 L 796.49463,1361.0359 L 797.58995,1360.8299 L 798.39297,1361.5274 L 798.50647,1362.0954 L 799.37415,1359.8869 L 800.75481,1360.9441 L 802.34781,1361.2644 L 802.77184,1361.6768 L 803.74176,1361.0764 L 805.34171,1360.713 L 806.42172,1360.1529 L 807.6251,1357.9196 L 808.62843,1357.2317 L 809.63112,1356.8745 L 810.71872,1357.0945 L 810.47791,1357.6527 L 813.41576,1359.6247 L 814.54942,1361.6943 L 814.70203,1362.2845 L 817.25039,1363.5264 L 817.41881,1365.3532 L 818.47503,1366.8657 L 820.21393,1366.444 L 820.63378,1365.994 L 821.03567,1363.6351 L 822.52693,1363.1091 L 823.84495,1361.1695 L 824.219,1360.7009 L 825.38303,1360.8289 L 828.14271,1359.9328 L 828.48487,1359.4371 L 828.02554,1358.3022 L 828.26216,1357.0769 L 829.26005,1355.5461 L 829.29105,1354.3005 L 830.08407,1352.2051 L 832.46375,1350.5341 L 832.71228,1349.9843 L 833.58223,1350.7114 L 835.26823,1350.8298 L 835.69264,1351.2257 L 835.0068,1349.6987 L 835.25456,1348.0079 L 835.56281,1347.5164 L 835.25811,1346.9421 L 834.31919,1345.2525 L 835.43463,1344.8217 L 838.4646,1345.1848 L 842.83954,1347.4959 L 843.18575,1348.0301 L 844.61273,1348.2244 L 846.02389,1347.2726 L 846.49752,1345.7406 L 847.52084,1346.2456 L 847.77696,1345.7145 L 847.05075,1344.1463 L 847.0195,1341.4003 L 847.23271,1340.8421 L 847.25967,1340.2314 L 846.25723,1339.6076 L 844.74661,1340.4542 L 843.95853,1339.6193 L 842.65796,1339.3964 L 842.66277,1337.6661 L 843.1836,1336.6395 L 843.42403,1336.1135 L 843.58903,1336.0691 L 848.33752,1336.4479 L 848.9177,1336.6046 L 852.22466,1329.2534 L 852.13191,1328.7388 L 850.94093,1327.7858 L 852.67451,1325.4115 L 852.04093,1322.4578 L 853.69314,1323.0406 L 854.70444,1321.6043 L 854.9517,1321.0569 L 854.34811,1321.0484 L 851.50036,1318.0386 L 851.24171,1317.5583 L 850.60294,1316.095 L 850.04769,1316.3291 L 847.89982,1317.0998 L 847.40354,1316.7279 L 846.47437,1315.0911 L 844.65752,1314.8056 L 845.34754,1312.7083 L 845.14318,1312.1857 L 845.92987,1311.4977 L 846.41489,1311.3076 L 847.86642,1308.5824 L 848.03294,1308.0431 L 847.5135,1307.3687 L 847.68547,1306.2438 L 846.92004,1304.6759 L 847.42784,1303.6103 L 847.76051,1303.1254 L 847.93589,1302.0167 L 849.36856,1301.4616 L 849.89787,1301.325 L 850.45122,1301.1173 L 851.03583,1301.0586 L 851.51643,1302.2325 L 853.24381,1303.9486 L 853.65797,1307.7453 L 853.7449,1308.377 L 853.88738,1308.3743 L 854.10769,1306.5807 L 854.88071,1305.6045 L 859.03864,1305.6131 L 860.76083,1303.8522 L 861.73417,1304.4815 L 863.99655,1304.7826 L 864.30088,1304.2705 L 867.15471,1305.0538 L 868.83198,1304.3807 L 868.82692,1302.5386 L 869.28714,1302.1395 L 868.71683,1299.8727 L 867.65276,1299.6226 L 868.59332,1298.2644 L 868.9837,1297.8566 L 868.76365,1297.2912 L 868.95497,1295.5149 L 868.45249,1293.1482 L 867.63302,1292.649 L 867.14838,1292.5356 L 866.87291,1291.9893 L 865.12186,1292.1573 L 865.13173,1290.9828 L 863.92101,1289.6862 L 864.11272,1288.469 L 863.8337,1287.9244 L 864.34466,1286.2067 L 864.02212,1285.0246 L 864.09019,1284.4132 L 862.72661,1283.8514 L 862.32004,1283.5707 L 863.07485,1281.8024 L 863.23694,1279.2565 L 861.17462,1275.3137 L 859.84343,1273.9964 L 859.71866,1272.7108 L 858.83909,1271.7939 L 860.3139,1270.8861 L 862.00952,1271.2131 L 862.68068,1272.7409 L 862.84442,1273.3137 L 865.82845,1269.6699 L 866.34271,1269.3716 L 866.53302,1269.3272 L 867.91065,1268.2594 L 869.68548,1267.9383 L 870.43016,1266.9934 L 870.68678,1265.7801 L 870.8566,1266.3563 L 871.94242,1266.7627 L 873.65588,1266.7758 L 874.23897,1266.8026 L 873.76863,1265.2821 L 874.27048,1265.1144 L 873.3451,1262.8922 L 874.76753,1260.9102 L 876.82163,1258.9213 L 877.28489,1258.5669 L 879.7348,1255.8997 L 880.27284,1255.6249 L 880.48214,1255.0177 L 879.71848,1251.97 L 880.13694,1251.5705 L 879.76846,1249.275 L 879.7453,1248.6863 L 881.55772,1248.2915 L 882.30708,1247.2601 L 884.02725,1246.5118 L 888.99034,1246.3965 L 889.59267,1246.2231 L 889.61291,1245.9597 L 890.28218,1244.963 L 891.9187,1244.3275 L 892.53203,1242.0043 L 894.27435,1241.486 L 895.01472,1240.4968 L 895.34866,1239.3061 L 896.9538,1240.585 L 897.49804,1240.7007 L 898.95299,1238.1477 L 898.91642,1235.7959 L 899.16329,1235.2481 L 900.67581,1235.759 L 901.17045,1235.9629 L 901.8654,1232.1734 L 900.16826,1230.3802 L 899.64047,1230.0862 L 898.77988,1229.269 L 899.62238,1227.6733 L 899.47091,1227.0765 L 898.2941,1226.9149 L 899.28578,1225.4702 L 901.90399,1224.305 L 902.36649,1223.9583 L 905.78392,1223.4892 L 906.29514,1223.1849 L 906.76321,1223.0177 L 907.25152,1222.9424 L 906.83483,1217.9469 L 907.4226,1216.8339 L 909.05178,1217.1308 L 910.35108,1215.9169 L 912.11161,1216.0878 L 912.1559,1215.7665 L 912.48503,1213.5104 L 912.96993,1213.2216 L 913.24123,1211.7625 L 913.56681,1211.9527 L 913.91732,1212.0915 L 915.77225,1211.9329 L 916.83771,1211.2985 L 917.13064,1210.7308 L 917.17329,1210.2335 L 916.83707,1208.7914 L 916.31523,1208.6593 L 914.55596,1207.4268 L 914.28314,1206.953 L 914.10536,1205.4088 L 913.12557,1205.164 L 914.78297,1203.4299 L 917.05358,1203.3356 L 915.98256,1199.9644 L 916.02849,1198.35 L 915.41415,1198.3013 L 914.19672,1196.1131 L 914.27024,1194.2631 L 913.59806,1193.2545 L 913.69006,1189.6589 L 912.94842,1187.2528 L 915.97282,1186.5123 L 917.90038,1184.9502 L 917.37575,1184.8148 L 916.17705,1182.9781 L 915.75757,1182.5027 L 913.26122,1178.8572 L 912.94019,1177.619 L 911.7382,1177.293 L 912.01608,1176.7418 L 912.55273,1175.6411 L 911.94901,1174.5678 L 911.60445,1174.0703 L 910.74829,1172.4652 L 910.94113,1170.6794 L 910.4475,1170.3927 L 909.6784,1169.6454 L 909.27019,1170.0486 L 909.04166,1169.0808 L 909.6374,1169.1705 L 910.83927,1169.1211 L 912.92134,1167.9063 L 913.50569,1166.8578 L 913.44989,1165.6394 L 913.00915,1165.3471 L 912.01937,1164.997 L 911.59053,1164.7554 L 911.02895,1164.4596 L 909.32928,1163.663 L 907.53863,1164.2777 L 905.71913,1163.9702 L 905.70863,1163.5064 L 905.718,1162.58 L 905.10099,1162.6161 L 903.4093,1163.2942 L 901.79808,1162.432 L 900.24722,1163.4266 L 897.9341,1162.5365 L 896.63442,1161.1837 L 893.37491,1159.4968 L 893.45109,1158.3489 L 895.11747,1158.2944 L 896.34452,1157.0106 L 896.80284,1156.6209 L 897.33127,1156.2879 L 898.05203,1154.5325 L 897.82376,1153.9416 L 897.37049,1153.5037 L 895.61566,1151.6982 L 890.7195,1152.195 L 890.07655,1151.1083 L 890.44377,1149.2426 L 890.71304,1148.3254 L 890.7386,1147.8479 L 891.32701,1147.6438 L 894.19956,1146.4761 L 896.31567,1144.2109 L 896.33794,1143.579 L 896.1394,1141.7207 L 895.58098,1141.4256 L 893.74921,1141.851 L 891.46936,1140.8533 L 891.573,1140.3007 L 891.34055,1139.4517 L 889.91079,1138.768 L 890.54437,1135.8436 L 891.41356,1135.1334 L 891.75091,1133.3796 L 891.34472,1133.1616 L 891.65841,1132.629 L 891.01648,1129.5877 L 891.6307,1129.5443 L 894.06657,1129.8408 L 895.86139,1128.1541 L 896.85181,1125.9142 L 897.26066,1124.099 L 899.48913,1122.9993 L 900.11752,1123.0172 L 900.64177,1122.7306 L 901.65421,1121.3285 L 902.07938,1118.419 L 901.50957,1118.2059 L 899.09319,1116.3723 L 896.82094,1118.0583 L 895.85203,1116.6353 L 896.34401,1115.4718 L 894.59816,1115.6671 L 894.10656,1115.2856 L 893.91649,1112.8088 L 894.7924,1112.0759 L 896.59329,1112.5644 L 897.77289,1112.1666 L 897.79718,1111.5508 L 897.65647,1109.2 L 895.64704,1108.51 L 895.30095,1108.0278 L 893.21243,1107.2441 L 892.83092,1107.7447 L 891.80406,1108.4534 L 891.22363,1108.2265 L 890.7834,1105.2728 L 888.01941,1103.9256 L 884.60376,1105.2544 L 883.57993,1104.5919 L 883.36545,1102.7505 L 881.73462,1101.003 L 881.19392,1101.3091 L 880.14466,1101.9323 L 877.75586,1102.1174 L 876.31471,1101.105 L 876.16515,1099.2546 L 876.729,1098.9677 L 878.18862,1096.151 L 879.84059,1094.2233 L 881.96606,1092.8449 L 882.10436,1092.2208 L 877.92783,1089.4859 L 877.41054,1089.1387 L 876.27523,1088.6365 L 875.06211,1088.8763 L 874.37943,1089.8957 L 872.06365,1090.6898 L 871.88839,1091.2932 L 871.44348,1090.9055 L 870.56783,1088.7017 L 868.98521,1087.005 L 868.94637,1087.1125 L 868.37897,1087.1005 L 867.35072,1086.66 L 865.98422,1084.3399 L 865.74431,1083.7448 L 865.56943,1082.4757 L 866.15594,1081.3436 L 865.34938,1078.9286 L 864.16359,1077.4347 L 860.64923,1076.4303 L 859.86114,1077.4099 L 858.10188,1077.9343 L 857.75858,1077.4006 L 854.38607,1076.3842 L 850.90891,1077.8067 L 849.09144,1077.6722 L 848.34739,1078.6964 L 847.73191,1078.5665 L 847.30282,1078.1613 L 846.14929,1076.8187 L 845.61049,1075.1275 L 844.64728,1074.4528 L 844.33283,1074.9213 L 843.42479,1076.3437 L 843.22372,1076.9646 L 842.12992,1079.9887 L 841.96326,1080.6124 L 840.93197,1082.1757 L 837.32512,1083.1677 L 837.20706,1082.5809 L 836.61131,1079.675 L 836.04682,1079.4987 L 832.98661,1080.1818 L 831.74906,1077.9523 L 829.62081,1075.6704 L 830.0165,1075.172 L 831.30896,1072.9965 L 832.78908,1066.3661 L 832.57764,1066.3539 L 830.86924,1065.7797 L 828.80172,1062.6145 L 826.00649,1061.4529 L 824.87776,1061.5571 L 823.54581,1062.6892 L 822.48454,1062.2049 L 820.85029,1062.7629 L 820.24721,1062.5865 L 818.41986,1062.7575 L 817.34681,1062.1076 L 816.92822,1060.909 L 815.34459,1060.1057 L 814.32659,1057.8026 M 723.91671,1503.5432 L 722.62885,1502.2585 L 723.1279,1499.7843 L 723.34244,1499.1806 L 722.75689,1499.1355 L 720.24488,1497.7251 L 719.17535,1499.1134 L 718.70876,1499.5037 L 718.22182,1501.2509 L 717.25926,1501.9818 L 717.55584,1502.3665 L 717.27336,1502.7622 L 717.12314,1503.3689 L 716.84873,1504.5552 L 718.78447,1508.5584 L 718.93706,1509.1912 L 719.65941,1510.0961 L 720.79194,1509.8779 L 721.36424,1509.8148 L 721.59815,1509.8318 L 721.44648,1509.2778 L 722.71099,1507.558 L 723.71505,1507.4116 L 724.54934,1505.8062 L 724.56018,1504.5744 L 723.91671,1503.5432 z M 720.11376,1495.3453 L 720.7308,1497.0349 L 722.43529,1496.9922 L 724.48353,1497.9843 L 725.04459,1498.1058 L 725.14478,1498.0697 L 725.76835,1496.4761 L 725.84877,1495.8652 L 726.00059,1495.2931 L 726.11289,1494.1206 L 726.49896,1492.4394 L 726.39368,1491.8722 L 726.54928,1491.3247 L 726.72219,1490.783 L 726.6668,1490.216 L 724.79577,1487.4749 L 724.67051,1487.4625 L 724.21917,1487.1664 L 723.8413,1486.2957 L 722.86021,1485.864 L 722.3759,1485.8354 L 721.06498,1486.439 L 721.13334,1487.0122 L 721.56555,1488.6619 L 722.71265,1488.8069 L 723.22345,1488.5207 L 723.64968,1492.5908 L 723.59695,1493.186 L 723.03288,1493.2423 L 720.91372,1492.4616 L 720.14494,1493.4488 L 720.11376,1495.3453 z M 1501.9699,929.48511 L 1501.536,929.25042 L 1500.5524,930.36513 L 1497.7961,934.62815 L 1495.5643,936.84263 L 1491.8615,939.28231 L 1490.7247,941.54211 L 1486.7858,948.50885 L 1486.4716,949.04602 L 1485.9399,948.95405 L 1484.4948,948.2224 L 1483.6122,949.04018 L 1483.2316,952.05505 L 1482.3804,953.67647 L 1480.5367,953.1891 L 1480.2011,953.74063 L 1477.3182,957.14465 L 1477.1294,956.55311 L 1476.263,956.45152 L 1474.9729,957.74415 L 1471.8857,957.74126 L 1471.3706,957.69034 L 1470.8763,957.53182 L 1470.281,957.39636 L 1464.2656,956.53202 L 1463.6992,956.74771 L 1460.1711,957.36658 L 1459.662,957.70353 L 1459.0953,957.92934 L 1458.6353,957.47304 L 1457.9289,954.32996 L 1458.3111,951.7839 L 1457.7502,949.26304 L 1453.9576,948.74144 L 1453.7987,947.83714 L 1453.4077,947.36922 L 1451.9204,946.37054 L 1448.9848,946.2068 L 1449.5572,944.48697 L 1449.4826,943.91897 L 1449.0873,942.91074 L 1447.9952,944.07533 L 1447.6969,944.63917 L 1444.8682,945.88258 L 1443.9723,948.24606 L 1444.1961,948.68042 L 1443.8419,949.01478 L 1442.9881,951.12499 L 1441.6421,952.10972 L 1441.0542,951.97684 L 1438.7856,952.06105 L 1438.3925,953.19447 L 1438.1262,953.75477 L 1435.5737,956.42674 L 1432.0407,957.2577 L 1431.5513,957.05166 L 1430.9305,956.18691 L 1430.5495,956.55521 L 1427.485,957.10043 L 1426.9705,956.73584 L 1425.2446,954.97422 L 1425.4129,952.47142 L 1426.3661,951.97589 L 1427.3228,948.51164 L 1427.476,947.92663 L 1426.9925,947.71629 L 1426.1952,946.43465 L 1425.6529,946.6304 L 1424.8412,947.44778 L 1422.648,947.97344 L 1422.4962,947.36311 L 1420.9253,942.01059 L 1420.0908,942.89991 L 1419.2424,949.0744 L 1418.7797,948.92636 L 1418.4607,948.03938 L 1418.459,947.87464 L 1418.4988,947.23237 L 1418.1617,944.74271 L 1418.2923,944.13528 L 1414.5899,941.18721 L 1414.7385,940.62158 L 1414.8806,940.05391 L 1414.9709,939.46332 L 1413.325,937.93412 L 1413.5274,937.37567 L 1414.8039,936.16188 L 1415.1483,935.68453 L 1414.1884,935.00688 L 1413.7856,934.52043 L 1413.3316,934.20983 L 1411.3829,932.5592 L 1409.6066,932.5028 L 1406.4517,930.57674 L 1405.2666,929.68568 L 1406.3364,929.7063 L 1406.8542,929.52172 L 1406.5195,928.13421 L 1408.0427,927.15626 L 1406.6304,923.89843 L 1406.9652,922.85255 L 1408.0526,922.64858 L 1408.2226,922.12304 L 1408.2481,921.02084 L 1414.6305,921.39689 L 1414.9544,920.90719 L 1416.0887,919.54984 L 1417.1346,920.09099 L 1417.7077,920.27298 L 1420.0384,918.82766 L 1420.4849,917.78802 L 1420.4733,917.65584 L 1420.6262,914.10845 L 1418.9059,914.08895 L 1417.3978,913.12463 L 1416.9901,912.66256 L 1415.7324,911.3147 L 1413.2468,910.88956 L 1412.817,909.84231 L 1412.8954,909.73006 L 1413.0861,905.34437 L 1413.2127,904.72026 L 1412.5886,903.08765 L 1413.5035,902.36697 L 1413.8823,901.92215 L 1413.4706,900.44089 L 1413.1542,900.03358 L 1414.2363,899.43794 L 1414.8516,899.5061 L 1418.0014,899.49133 L 1418.5421,899.1468 L 1419.4604,896.12652 L 1417.9605,894.16143 L 1417.7696,893.55136 L 1419.1964,893.21002 L 1419.6929,893.1981 L 1421.7034,891.14946 L 1422.1852,890.80101 L 1423.0856,888.94279 L 1419.8465,885.97396 L 1420.8461,885.21274 L 1421.3775,884.87456 L 1421.0881,884.65743 L 1421.0657,884.05372 L 1420.5003,883.07333 L 1420.7422,882.51981 L 1417.7576,880.75711 L 1417.3607,880.32187 L 1418.7958,878.43129 L 1419.0049,877.87465 L 1418.7876,876.87005 L 1417.3171,875.3015 L 1417.4305,874.73454 L 1416.7818,872.76654 L 1417.1426,872.35237 L 1413.6094,871.90685 L 1413.1402,871.5316 L 1413.6533,868.59904 L 1413.7409,868.00637 L 1414.3431,868.16611 L 1416.6962,865.29785 L 1416.7138,864.67943 L 1415.8519,863.77685 L 1414.6275,863.49433 L 1414.2538,862.31428 L 1412.2597,860.9587 L 1411.1715,861.09015 L 1410.5463,861.00219 L 1409.4063,859.71919 L 1409.2391,857.42262 L 1408.9107,856.93932 L 1409.5428,856.04268 L 1409.8287,855.50868 L 1410.979,855.45847 L 1411.7624,856.35924 L 1414.3014,854.70104 L 1414.819,854.36523 L 1415.2479,854.25819 L 1415.6882,854.2091 L 1416.3017,854.39422 L 1418.6009,853.37493 L 1419.2414,853.34212 L 1419.6517,854.13208 L 1420.0544,854.40278 L 1425.9435,854.07367 L 1425.4749,853.6666 L 1426.0734,851.95474 L 1425.2623,851.02224 L 1425.5167,849.81201 L 1425.45,849.19685 L 1424.8072,849.07588 L 1423.6721,848.43213 L 1423.2982,849.34941 L 1421.8934,848.21761 L 1421.1324,848.35258 L 1420.4931,848.22231 L 1418.4549,846.70255 L 1418.0215,844.16993 L 1418.4133,842.95349 L 1417.0138,842.58826 L 1416.885,842.09596 L 1416.3192,842.28492 L 1415.7714,842.52238 L 1415.1357,842.84373 L 1412.9286,843.87565 L 1411.7176,842.4531 L 1410.5169,842.82392 L 1409.7888,843.81732 L 1408.9324,842.9667 L 1408.9392,841.75682 L 1407.0654,839.43072 L 1406.8208,838.87326 L 1406.6543,837.70796 L 1406.5633,837.12649 L 1406.2107,836.65409 L 1406.2258,834.34474 L 1404.3208,833.56899 L 1403.7044,833.55115 L 1402.1695,834.55596 L 1401.6147,835.64344 L 1400.4869,836.00336 L 1400.5705,835.37588 L 1400.5697,834.11161 L 1399.1334,832.85857 L 1400.5205,831.83782 L 1400.6174,831.20917 L 1399.6299,826.40169 L 1401.2148,824.84825 L 1401.7456,824.67358 L 1402.1388,823.08621 L 1402.6544,822.87974 L 1405.0706,822.39818 L 1405.7971,820.81513 L 1407.0223,820.65663 L 1407.6016,820.44637 L 1407.4702,819.83392 L 1402.7326,818.09008 L 1402.1723,817.79936 L 1402.1573,817.75765 L 1403.2031,814.25341 L 1404.5969,813.06214 L 1405.1756,812.00038 L 1405.5332,811.58564 L 1406.6033,811.63036 L 1408.3327,809.23234 L 1409.4113,808.71806 L 1410.5044,808.6111 L 1411.0877,808.70722 L 1412.6224,808.34883 L 1412.8706,807.88574 L 1413.3092,808.39649 L 1415.1173,808.2183 L 1416.7503,806.85338 L 1416.8519,806.30902 L 1417.6711,805.41355 L 1417.7151,803.58608 L 1418.0229,803.05279 L 1419.3666,801.35461 L 1419.4803,800.80416 L 1419.1104,799.85964 L 1419.7374,798.99479 L 1419.7909,798.44531 L 1421.0987,797.67437 L 1421.6079,797.676 L 1422.8824,796.5747 L 1422.8963,795.47542 L 1422.7948,794.92321 L 1423.6535,793.75149 L 1424.1035,793.52537 L 1424.5613,792.31665 L 1425.4034,789.45189 L 1425.0621,787.67851 L 1424.5969,787.28 L 1423.8809,786.00901 L 1424.1814,785.55973 L 1426.8391,784.1178 L 1427.3386,783.75711 L 1427.9624,782.76236 L 1427.477,780.42361 L 1428.085,779.37407 L 1428.6195,779.18932 L 1428.1714,775.64341 L 1428.4681,775.10026 L 1429.0535,772.11041 L 1429.0839,771.48598 L 1429.1187,771.04281 L 1429.1535,770.59966 L 1429.7229,770.02122 L 1430.7347,770.57985 L 1431.2809,770.77437 L 1431.6906,769.07342 L 1432.9475,767.095 L 1432.2589,766.36789 L 1431.7543,766.38077 L 1430.41,765.26065 L 1427.9666,765.12477 L 1427.0169,764.54583 L 1427.2773,763.41349 L 1427.7041,762.96761 L 1429.594,762.06735 L 1429.9688,760.28265 L 1429.3445,757.92183 L 1429.1882,757.64401 L 1429.2375,755.08258 L 1429.5753,754.5312 L 1429.9464,754.02889 L 1429.7381,752.80566 L 1430.2125,751.66698 L 1427.8176,750.62609 L 1424.4505,752.50303 L 1424.1589,751.99616 L 1422.1567,750.9406 L 1422.5698,749.17218 L 1423.0964,748.85163 L 1423.0865,747.72023 L 1421.7979,745.66687 L 1422.0743,742.50683 L 1422.8139,741.48346 L 1423.1384,741.05812 L 1422.4556,740.37482 L 1421.9738,740.74473 L 1420.2452,740.30113 L 1419.7134,738.60647 L 1419.1549,738.33154 L 1415.3626,740.32531 L 1415.5338,739.77373 L 1415.6132,738.73965 L 1414.2438,737.78067 L 1415.3575,737.47718 L 1418.4682,735.83754 L 1418.9151,735.45612 L 1418.3703,735.42718 L 1416.3401,734.72419 L 1416.45,734.2806 L 1416.8274,733.45048 L 1417.6122,731.97082 L 1417.8475,731.46454 L 1421.4633,731.92093 L 1422.0014,732.78785 L 1422.5576,733.03652 L 1423.4028,732.20986 L 1423.9533,731.97933 L 1424.7452,730.05927 L 1426.3103,728.0377 L 1427.0267,726.26283 L 1428.8813,726.35208 L 1429.0597,725.81418 L 1430.1765,722.66599 L 1430.1789,722.03392 L 1429.4992,719.6926 L 1428.372,719.3142 L 1428.8932,716.90808 L 1427.8896,712.01249 L 1426.9391,711.49305 L 1426.6187,710.96036 L 1423.0307,707.55198 L 1421.1859,707.13033 L 1420.1748,709.26937 L 1417.9232,713.51597 L 1417.475,713.73429 L 1416.5705,713.86765 L 1415.1859,712.34862 L 1414.6677,712.16606 L 1414.7743,709.09022 L 1416.4069,706.37343 L 1418.3523,704.75043 L 1418.6578,704.19401 L 1418.1611,704.13706 L 1417.8175,703.28956 L 1418.16,702.72977 L 1418.7684,699.53154 L 1420.639,699.01705 L 1422.2772,699.9639 L 1423.5677,700.03176 L 1426.7218,699.30957 L 1427.9432,697.94479 L 1428.4212,697.51734 L 1430.8916,698.84058 L 1431.4392,698.97736 L 1431.9048,699.42043 L 1434.4717,699.46104 L 1438.8826,693.99381 L 1439.1284,693.4061 L 1439.5899,693.46579 L 1440.1142,693.84243 L 1441.1878,694.54744 L 1441.3913,696.43235 L 1442.852,699.89416 L 1443.5515,699.26732 L 1444.0265,699.24215 L 1445.2043,699.58474 L 1446.9951,698.96147 L 1449.438,699.18007 L 1449.9957,698.88547 L 1450.7639,698.08413 L 1450.813,697.53629 L 1451.317,697.46656 L 1451.8158,697.36371 L 1452.7997,697.89671 L 1454.9029,697.05563 L 1455.1265,696.49698 L 1455.2769,695.87272 L 1455.0508,693.98483 L 1453.9107,692.4623 L 1454.2663,691.00859 L 1454.0362,690.55781 L 1454.9615,690.31809 L 1455.3897,690.10382 L 1454.9607,689.60851 L 1454.6002,688.5086 L 1454.9454,687.95335 L 1457.1021,686.48764 L 1456.9244,685.91882 L 1456.7126,685.36026 L 1456.8918,684.73723 L 1456.8976,683.45799 L 1457.038,682.88123 L 1456.334,681.98423 L 1453.3752,681.91216 L 1453.6635,680.91991 L 1453.3916,680.49213 L 1452.9501,680.23201 L 1453.1439,679.62582 L 1454.1064,674.08173 L 1455.1103,672.44264 L 1456.9825,672.40231 L 1457.6355,672.47554 L 1458.2777,672.56499 L 1459.4538,673.04548 L 1459.8868,673.19555 L 1461.3935,672.5528 L 1461.7366,672.10484 L 1462.0458,670.97523 L 1461.5027,667.4853 L 1462.6677,666.9748 L 1463.6533,665.56783 L 1467.1802,666.32545 L 1468.4215,666.23207 L 1468.1359,667.3082 L 1468.7028,667.82968 L 1469.2742,667.76681 L 1471.5445,666.85704 L 1472.1729,666.92041 L 1472.018,666.42146 L 1471.6851,665.55758 L 1471.5469,663.20893 L 1473.3995,660.76033 L 1473.4866,659.60017 L 1474.2697,658.66446 L 1474.6618,657.50439 L 1475.062,657.05423 L 1479.0904,658.08461 L 1479.5086,657.65023 L 1479.8505,656.78445 L 1480.0099,656.34697 L 1479.8139,655.74733 L 1479.2841,653.36818 M 835.57167,604.28607 L 835.00667,604.54019 L 830.7055,606.91221 L 830.21466,606.5433 L 829.68016,606.21341 L 828.10285,605.24926 L 827.27845,603.60924 L 826.20439,603.61241 L 826.01661,603.17699 L 825.77783,602.76579 L 825.78972,602.12378 L 821.61762,595.81306 L 821.17828,593.39768 L 820.56899,593.19792 L 817.20028,591.67994 L 815.97058,592.01976 L 814.59751,593.25876 L 814.53601,593.86201 L 815.42912,596.75943 L 814.99686,596.77831 L 814.59852,596.94126 L 814.29192,596.41316 L 813.40273,595.0585 L 812.2225,595.45679 L 809.76664,595.12588 L 807.92715,595.15061 L 807.32179,595.05845 L 803.82856,594.10015 L 802.63113,594.26799 L 802.631,593.61666 L 802.53255,592.33923 L 801.74067,591.29427 L 801.17264,591.21133 L 799.49689,590.91172 L 797.20009,588.00453 L 797.62905,586.85009 L 798.64364,586.14467 L 796.84223,583.67382 L 794.86811,584.97512 L 793.25815,584.01859 L 790.66829,584.13784 L 790.12278,583.879 L 789.04454,583.39775 L 788.75161,582.26809 L 788.57724,581.78041 L 787.2177,581.05576 L 786.3356,581.99914 L 784.6658,581.08993 L 783.21541,578.97174 L 782.80201,577.10995 L 783.66969,576.33226 L 783.6526,575.73267 L 782.79252,572.31563 L 782.83225,571.6716 L 782.55222,569.76388 L 782.31471,569.36664 L 781.94509,569.07948 L 782.17969,568.50805 L 781.79388,564.84313 L 782.66029,563.96891 L 782.94006,562.16294 L 782.21791,561.15218 L 781.87575,560.6851 L 781.1789,559.79568 L 781.16523,559.14307 L 780.59632,557.26712 L 779.29145,555.78073 L 778.93714,555.97025 L 777.7864,555.54617 L 777.25911,555.20859 L 775.70218,553.54624 L 774.46375,553.31203 L 773.81815,553.29511 L 772.33435,552.10019 L 770.51713,551.80193 L 769.91582,551.90421 L 768.39786,551.22876 L 767.88272,551.54279 L 767.74644,552.18766 L 767.3834,552.6804 L 763.1665,553.37231 L 762.68591,553.32059 L 762.21885,553.19945 L 761.66069,553.37677 L 759.30505,555.04016 L 758.92733,555.29692 L 758.273,555.21035 L 756.44376,555.02327 L 756.18574,556.23584 L 756.61066,557.39236 L 756.03111,557.64619 L 753.93715,556.3401 L 752.8493,556.64885 L 753.09326,557.15547 L 754.23654,558.41271 L 754.6707,558.81891 L 754.03762,559.7585 L 753.45352,559.91065 L 750.55325,560.44598 L 750.05457,560.11738 L 749.52513,560.08406 L 748.75729,560.78752 L 748.16458,561.91887 L 748.47233,562.48779 L 747.22099,564.69316 L 745.2256,564.68058 L 745.23901,564.84469 L 744.72526,565.10068 L 743.16049,565.58816 L 742.76151,566.07792 L 741.53168,568.25547 L 742.5488,569.80122 L 739.65853,570.28025 L 739.1239,570.28364 L 737.55837,570.31656 L 737.00046,570.06592 L 735.30117,568.59116 L 735.06366,567.43006 L 734.48043,567.19507 L 732.08453,567.80696 L 731.84102,568.93074 L 728.13207,570.69012 L 728.35117,571.24465 L 727.73725,569.98778 L 727.39328,569.47971 L 727.86954,568.49194 L 727.84713,567.88563 L 727.35035,561.37807 L 727.64953,561.10449 L 728.24496,558.67731 L 727.8863,556.91133 L 726.72248,556.36166 L 726.11774,556.23124 L 724.47121,557.60724 L 720.93793,557.91453 L 719.64501,557.87614 L 717.19496,557.03713 L 716.64544,556.76757 L 715.78849,555.94482 L 715.89275,553.60092 L 715.21184,552.62483 L 715.63457,552.25847 L 715.01667,550.75706 L 714.96615,550.21267 L 714.93673,549.63293 L 713.44486,547.86582 L 712.86078,548.0186 L 713.54662,545.71942 L 716.24007,544.5386 L 716.33919,543.33322 L 711.95531,540.79253 L 710.65947,539.51656 L 710.37693,538.9578 L 710.17416,538.53493 L 709.85208,538.1845 L 709.38191,537.75973 L 708.40032,536.97615 L 707.33184,537.47488 L 705.44606,537.07986 L 703.93362,535.97433 L 703.37171,537.59085 L 702.05736,538.9072 L 701.6637,539.42303 L 703.8819,541.63106 L 702.89657,543.27254 L 700.67628,544.63096 L 700.27498,547.04701 L 698.53734,546.82786 L 698.46158,545.63424 L 697.92998,545.32428 L 695.54267,545.05724 L 695.11902,544.70247 L 694.11503,544.21686 L 692.24968,546.74838 L 692.01536,547.96676 L 689.87021,549.05042 L 689.94974,551.37717 L 688.34814,550.68809 L 687.68086,549.22304 L 687.08983,549.12253 L 685.38133,548.52463 L 684.86308,548.21289 L 684.85095,546.64722 L 684.31754,546.48737 L 683.9118,546.9665 L 680.80091,547.06285 L 680.92398,546.91064 L 680.41886,546.54276 L 678.08965,545.67732 L 677.60202,546.06589 L 676.30424,546.0837 L 674.12559,548.12286 L 672.29588,548.02149 L 670.19237,546.79318 L 669.74748,547.21501 L 669.00967,548.8579 L 666.94987,549.95497 L 666.57453,550.44197 L 664.6413,553.35301 L 663.48161,553.20143 L 663.23758,552.64264 L 662.83258,553.06339 L 662.30229,554.09242 L 661.77526,553.88084 L 659.57353,553.74237 L 659.43335,553.4348 L 658.85007,553.76027 L 656.98984,555.61219 L 651.8531,558.55151 L 651.89309,556.83895 L 651.88282,556.19106 L 651.35445,553.01034 L 650.00291,550.88652 L 649.97287,551.46528 L 648.12699,552.62728 L 648.13353,553.77053 L 647.57947,553.99996 L 646.98876,554.21121 L 645.80225,553.95253 L 645.63838,553.36944 L 643.91276,553.83507 L 642.86556,553.26217 L 642.25445,553.52218 L 641.60859,554.64389 L 642.06251,555.74567 L 644.0444,557.39082 L 638.91208,559.94353 L 638.36503,560.03813 L 636.70078,558.88708 L 636.43434,558.31805 L 636.20613,554.73485 L 634.23856,554.76232 L 631.79413,556.65468 L 631.4957,556.18901 L 631.05245,554.18405 L 631.11845,553.14145 L 630.62411,552.78538 L 629.99236,552.58291 L 627.607,548.80533 L 625.76826,548.1432 L 625.24422,548.43026 L 621.25432,549.34923 L 620.83294,548.87045 L 619.56863,548.90906 L 618.4639,548.27816 L 617.73185,546.00713 L 615.17844,545.73243 L 613.93447,545.33975 L 612.87834,546.07341 L 612.67119,547.91815 L 611.41676,549.35601 L 607.72207,550.40967 L 606.60081,549.69199 L 600.41043,545.59646 L 600.12782,546.01812 L 599.21974,546.85713 L 595.29152,546.05391 L 593.25758,544.45137 L 592.62913,544.50227 L 591.37486,544.43706 L 589.66094,545.18295 L 587.60308,543.97729 L 587.00153,542.91031 L 584.2618,543.16459 L 583.65699,543.0623 L 581.9187,540.69377 L 581.74472,541.26067 L 578.6793,541.52888 L 576.58818,540.4255 L 576.5279,540.41992 L 575.92956,540.49552 L 573.56439,542.24368 L 573.9562,542.73166 L 573.99104,543.95786 L 572.79382,546.73282 L 572.239,546.84953 L 571.70241,546.66758 L 571.37879,547.16907 L 569.56055,548.62909 L 567.76283,548.9068 L 567.37735,548.4484 L 566.80597,548.67971 L 566.28882,550.97747 L 565.99409,550.44756 L 564.8963,550.38498 L 564.00293,552.08755 L 564.24844,553.32735 L 560.65325,555.86182 L 559.63863,556.29789 L 557.56059,555.51395 L 556.94674,555.46287 L 553.9726,555.29678 L 552.37569,553.49901 L 552.96039,552.44983 L 551.23301,550.83106 L 550.19676,551.07499 L 549.11456,550.61009 L 548.03413,550.99291 L 546.61832,550.10434 L 546.10154,550.35402 L 545.38705,547.48707 L 545.36873,546.89058 L 545.01453,546.39692 L 542.8923,542.87052 L 542.57929,542.95274 L 542.32795,541.15729 L 540.63938,539.36897 L 541.39067,537.08984 L 542.17098,536.14775 L 541.31529,534.55367 L 541.3169,533.94954 L 539.51327,533.62167 L 539.90808,530.5876 L 539.07462,529.0091 L 537.91157,528.43553 L 537.45121,528.0688 L 536.47078,527.41115 L 535.25002,523.37094 M 909.2221,262.20154 L 912.35141,263.62433 L 912.96233,263.65378 L 914.29947,261.94478 L 914.55799,261.44789 L 915.79769,261.08012 L 918.20319,261.79482 L 918.53775,262.31676 L 919.27598,262.66203 L 918.40628,266.47981 L 919.23853,267.33148 L 921.05524,267.93023 L 921.38614,268.47831 L 922.71277,269.88484 L 923.57058,270.71694 L 924.16088,270.53698 L 926.27825,271.77708 L 927.43342,273.7295 L 927.63879,274.28249 L 927.85505,274.71714 L 931.72144,277.67215 L 932.19912,278.05359 L 933.31658,278.59668 L 933.85703,278.90882 L 934.31257,280.70059 L 937.57992,284.44329 L 938.16909,284.73209 L 940.20687,286.1103 L 942.60224,286.83739 L 943.13851,287.15479 L 943.7025,287.4295 L 947.02578,289.06284 L 947.05147,289.95915 L 948.58664,292.07198 L 948.6971,292.60971 L 948.90589,293.1828 L 949.37561,293.59793 L 950.53584,293.94385 L 951.28229,294.86602 L 951.51322,296.58022 L 951.24686,297.1027 L 951.38036,297.71256 L 952.12289,298.6496 L 952.28751,299.38896 L 952.16211,301.82508 L 952.95893,302.76017 L 953.07104,303.36201 L 953.006,303.97991 L 954.03666,308.19764 L 955.10781,309.49881 L 955.36999,310.01259 L 956.06748,311.60716 L 956.42419,312.10226 L 957.13863,313.68201 L 957.24998,314.2511 L 959.07555,314.99083 L 959.82378,316.02042 L 959.99334,316.62363 L 960.29741,317.16505 L 960.48886,318.36442 L 957.80435,318.48094 L 956.06608,317.59466 L 955.1588,319.28927 L 954.84701,319.76447 L 955.50438,321.90133 L 955.17993,321.90362 L 952.95336,323.1809 L 951.71708,322.942 L 951.66456,326.4783 L 951.56928,327.63849 L 950.4069,327.97566 L 948.31243,330.10538 L 950.73349,332.36013 L 951.916,331.7763 L 953.91974,329.21929 L 955.20828,328.89475 L 955.63813,329.39921 L 956.11721,329.71774 L 956.24488,331.89462 L 956.35598,332.43582 L 955.70924,332.59804 L 952.80594,334.11017 L 952.63398,335.96736 L 952.4796,336.53019 L 951.49424,337.20103 L 950.77449,338.80287 L 949.58541,339.13198 L 949.92529,339.56973 L 950.31199,339.97251 L 950.67035,340.33607 L 951.93586,341.21026 L 952.12276,341.80018 L 952.49643,342.97672 L 951.77086,344.69192 L 948.9579,347.0472 L 950.41993,348.09039 L 950.67617,349.22033 L 951.7582,349.41263 L 952.30105,349.1343 L 952.48795,349.28899 L 952.2059,350.48191 L 949.06761,350.80121 L 949.46001,352.32251 L 951.06882,351.40364 L 952.01103,352.25075 L 952.3337,352.80191 L 953.07813,353.85099 L 953.52747,354.32077 L 953.284,354.8794 L 953.09129,357.78017 L 955.4325,358.30358 L 955.51159,358.36873 L 954.66239,361.76519 L 952.27271,363.90162 L 952.02634,364.29787 L 952.18578,364.9963 L 952.97411,365.56873 L 954.87902,365.89842 L 955.43099,367.04257 L 957.16128,363.84344 L 958.36694,363.33103 L 960.3298,364.13754 L 960.8309,364.39047 L 960.97389,366.72379 L 960.96769,367.33311 L 959.67914,367.42725 L 959.29915,367.93248 L 959.3404,370.38806 L 958.02364,371.76213 L 957.4222,372.01759 L 955.75543,372.9459 L 956.06963,373.43159 L 955.93271,374.41164 L 954.8026,374.80245 L 954.35427,375.1983 L 953.97782,376.28032 L 953.05168,376.85712 L 952.53654,379.88696 L 951.51512,382.13045 L 951.97648,383.14066 L 954.26822,382.62772 L 954.86169,382.77788 L 954.35617,383.17251 L 952.28726,384.68099 L 955.16652,387.33465 L 956.06786,389.03688 L 957.26149,389.62655 L 957.36488,390.15813 L 957.04423,391.67661 L 959.11693,395.57767 L 958.84639,396.81502 L 958.69277,397.42888 L 958.38377,397.9699 L 959.29864,402.10894 L 958.91282,403.26495 L 959.28649,403.72068 L 960.46254,403.41047 L 961.98151,404.5805 L 961.6577,406.40621 L 962.74252,406.9644 L 961.2114,411.87563 L 960.71866,411.46483 L 958.21686,410.87706 L 958.36491,410.25331 L 956.67663,407.5901 L 956.14618,407.95366 L 954.20014,407.7078 L 953.18505,408.49091 L 951.22636,408.5942 L 950.79005,408.98033 L 950.76677,410.11094 L 949.93288,410.92241 L 949.7346,411.49574 L 949.95819,412.65733 L 949.87746,414.18278 L 950.30377,414.50485 L 951.12045,413.55715 L 954.34832,415.71701 L 954.87055,416.10595 L 954.28252,416.37967 L 954.05247,418.20195 L 951.72707,419.25102 L 951.72366,419.87198 L 953.00562,420.8911 L 953.03131,421.48918 L 954.682,421.82222 L 955.17778,423.50458 L 955.15463,424.08808 L 956.85442,424.988 L 959.00811,423.59943 L 959.41733,423.12013 L 959.48642,423.09501 L 961.05082,423.77798 L 961.59355,424.00117 L 961.69376,423.46648 L 962.12475,423.11039 L 964.55797,424.8054 L 966.36013,424.60364 L 967.04319,425.59692 L 966.71646,426.77231 L 967.24919,426.57832 L 968.61543,425.78965 L 971.23655,425.39334 L 971.83293,425.09587 L 972.11966,424.90858 L 972.86017,426.62181 L 972.85359,427.25266 L 979.35299,425.26693 L 979.79778,425.7413 L 982.41232,425.35436 L 982.99326,425.03789 L 984.07656,423.84832 L 984.43365,423.44418 L 986.47206,424.64335 L 987.64355,424.86017 L 990.02121,422.8888 L 990.47043,422.4648 L 992.1625,422.23833 L 992.5511,421.83105 L 992.56831,421.78155 L 994.10247,420.61622 L 996.55618,419.78303 L 997.42044,418.85044 L 997.94836,418.48237 L 997.94,419.07556 L 999.13149,419.40058 L 999.5225,421.70145 L 999.84492,422.20989 L 1002.3824,422.58894 L 1004.1986,422.08491 L 1005.3992,423.47997 L 1005.8403,423.03725 L 1007.0777,423.33332 L 1007.6022,423.6345 L 1008.3918,424.4838 L 1007.6742,425.42047 L 1008.191,426.203 L 1008.4573,426.59367 L 1009.4956,426.49954 L 1010.3614,425.18002 L 1010.0587,424.68272 L 1010.9268,425.18076 L 1011.423,425.28979 L 1013.9334,424.98484 L 1014.9797,424.37364 L 1015.5865,424.19696 L 1017.331,426.66579 L 1015.5062,428.27198 L 1015.0909,428.73611 L 1016.2895,429.2453 L 1018.2827,429.24956 L 1020.5388,428.54063 L 1020.8834,428.05556 L 1021.4382,428.38699 L 1023.3171,427.86797 L 1023.955,427.72294 L 1024.2675,425.93826 L 1025.6659,423.94274 L 1025.8268,423.33964 L 1026.5498,423.10274 L 1027.0148,423.15845 L 1027.9462,423.09411 L 1028.4301,423.24024 L 1032.5376,429.44818 L 1033.0192,429.87552 L 1034.5123,428.22459 L 1034.9373,427.84519 L 1037.6699,429.57044 L 1039.6513,429.15628 L 1043.5047,430.30405 L 1043.3776,430.69827 L 1043.2524,431.09249 L 1042.9583,432.01398 L 1042.8086,432.4739 L 1045.7715,431.45903 L 1046.0861,431.98532 L 1047.6773,432.6484 L 1048.1481,432.9992 L 1048.0741,433.56433 L 1050.3298,434.38178 L 1050.8854,434.60799 L 1051.1032,435.69789 L 1049.7086,437.51759 L 1054.2813,438.51792 L 1054.9128,438.7542 L 1055.118,435.76738 L 1055.7822,434.8356 L 1056.3804,434.64644 L 1056.3337,435.23298 L 1057.8262,435.47176 L 1058.5082,439.1167 L 1060.6938,440.06603 L 1061.1265,441.74198 L 1061.4346,442.2505 L 1061.9381,442.3161 L 1062.438,442.40143 L 1064.793,440.22495 L 1064.9442,439.60592 L 1065.5063,439.76062 L 1066.0865,439.69191 L 1067.6457,437.74511 L 1067.8472,437.14933 L 1068.7829,438.73191 L 1070.0855,438.63487 L 1073.302,440.71645 L 1073.547,441.29098 L 1075.47,443.53562 L 1075.1717,444.05365 L 1075.027,444.61176 L 1076.0779,445.18653 L 1076.6806,445.13002 L 1078.9246,443.1353 L 1079.3724,442.25492 L 1080.4793,445.38086 L 1080.7205,445.91282 L 1083.3809,445.71558 L 1083.9881,445.44587 L 1087.0802,443.17298 L 1085.4907,442.08484 L 1084.9372,441.74193 L 1087.4536,441.81269 L 1086.9181,440.75806 L 1087.4207,440.66218 L 1087.8979,440.48403 L 1089.5473,439.45628 L 1090.1156,439.13084 L 1091.6353,441.09188 L 1094.0054,441.5842 L 1094.6312,441.44504 L 1095.8126,443.59035 L 1096.0406,444.16021 L 1098.0583,443.93822 L 1100.3577,442.61893 L 1100.979,442.87782 L 1101.7174,441.36107 L 1104.6312,442.65163 L 1105.8748,442.33512 L 1106.3929,442.70369 L 1107.2049,442.00626 L 1107.3962,440.86045 L 1108.5391,441.25017 L 1110.1183,440.38961 L 1110.6367,440.69759 L 1110.9829,442.73949 L 1111.0389,443.2824 L 1112.13,443.82165 L 1112.7502,443.73285 L 1112.9725,442.05179 L 1114.1506,440.77769 L 1114.7519,440.73978 L 1115.868,440.39551 L 1118.1106,441.07779 L 1118.607,440.76332 L 1122.0571,441.1561 L 1122.6123,441.38448 L 1122.4358,440.84391 L 1121.433,439.45307 L 1121.378,438.33019 L 1123.0273,435.9651 L 1123.3474,435.46985 L 1124.3506,436.32198 L 1128.8392,437.42147 L 1129.64,437.0182 L 1129.9587,437.35827 L 1131.7894,437.51041 L 1132.6929,438.3573 L 1134.5272,438.80922 L 1135.1598,438.74321 L 1134.3315,442.26328 L 1135.4945,442.90431 L 1137.0356,444.99223 L 1137.2451,445.59915 L 1137.1375,446.70079 L 1138.3789,447.82941 L 1138.3722,448.42428 L 1137.17,448.87046 L 1136.5918,451.22457 L 1134.9315,452.16765 L 1134.879,453.32085 L 1135.9632,454.68268 L 1139.4327,455.9098 L 1140.6923,457.56982 L 1140.7381,458.10443 L 1142.5074,458.71328 L 1142.7028,459.28568 L 1143.2512,459.08616 L 1143.3341,460.68294 L 1143.5091,461.21897 L 1145.3785,461.34457 L 1146.5103,463.4362 L 1146.5859,464.04187 L 1147.0347,465.87946 L 1147.5197,466.3073 L 1147.3067,466.64185 L 1147.1297,466.99489 L 1147.8049,468.1119 L 1148.3517,468.40569 L 1150.1603,467.91016 L 1152.3368,466.72401 L 1152.8151,466.33679 L 1153.7606,468.77866 L 1153.8336,470.72411 L 1153.8683,471.37539 L 1154.3648,471.80699 L 1156.0347,473.79936 L 1160.0234,471.67683 L 1160.7455,469.98791 L 1161.7815,473.56931 L 1161.048,475.95989 L 1162.6503,477.8276 L 1162.7522,480.28628 L 1163.3431,480.56501 L 1164.9478,479.63878 L 1165.6078,479.6654 L 1164.9976,480.97415 L 1164.7278,481.39639 L 1165.9446,481.89212 L 1167.7858,481.18638 L 1169.062,482.56742 L 1171.0012,482.80232 L 1171.4771,483.24781 L 1170.6602,485.11216 L 1170.6077,485.63749 L 1172.3647,486.03259 L 1172.7072,486.50755 L 1173.7503,484.29944 L 1175.0096,484.10642 L 1175.6465,484.04968 M 937.57267,206.74644 L 940.38541,207.4622 L 941.77291,209.42156 L 942.3541,209.69094 L 942.98199,211.89957 L 943.63012,211.94858 L 945.23589,212.91217 L 944.97864,213.47544 L 945.64676,213.60619 L 948.55753,211.97053 L 948.80593,211.3811 L 949.09823,212.11756 L 950.23607,211.35733 L 952.98752,210.86612 L 953.55391,210.48135 L 954.85713,209.2577 L 956.71852,208.79355 L 957.57822,207.96053 L 960.73878,208.3188 L 961.38691,208.35391 L 962.45717,208.33745 L 962.99673,208.3274 L 964.75284,209.67521 L 965.17775,210.03036 L 968.26504,211.25437 L 968.94709,211.38019 L 969.00276,211.71797 L 971.15392,212.92515 L 971.94112,215.0707 L 973.55322,215.92529 L 974.21109,215.90553 L 974.88226,216.31701 L 974.91883,216.78957 L 977.52653,216.926 L 980.26407,213.61882 L 980.9055,213.46995 L 983.1999,215.34684 L 983.14966,215.92657 L 982.63262,217.10376 L 979.384,219.33763 L 980.83501,221.46927 L 981.30447,221.7509 L 982.10749,221.13843 L 982.6349,220.96707 L 983.88498,222.43706 L 986.97087,223.66985 L 987.79059,224.26877 L 988.12187,224.64331 L 989.21352,225.08551 L 991.03378,224.79638 L 992.04963,225.40976 L 992.49239,225.80057 L 993.87242,227.13339 L 995.18412,227.38833 L 995.86237,227.34333 L 997.24164,228.1597 L 997.56001,228.60337 L 995.87603,230.09567 L 995.78834,231.21544 L 996.31183,231.48445 L 996.3794,232.56106 L 997.88369,233.96447 L 998.29241,234.41308 L 998.44742,236.74332 L 998.55916,237.33054 L 999.94298,236.30404 L 1001.6695,236.69486 L 1002.2103,236.99185 L 1003.1421,235.63544 L 1005.2455,236.62006 L 1005.6394,237.06573 L 1006.3109,238.74658 L 1006.6643,239.26614 L 1009.6414,236.07233 L 1010.2999,236.1828 L 1010.9288,235.68262 L 1011.4688,235.74571 L 1012.9561,235.24573 L 1013.0082,234.74025 L 1013.6371,234.96409 L 1014.765,234.34029 L 1016.1102,234.34011 L 1016.486,235.9414 L 1016.919,235.57161 L 1018.0493,235.10582 L 1019.7816,234.82986 L 1021.797,232.45955 L 1024.1221,233.61024 L 1024.4958,234.11882 L 1025.2859,235.00798 L 1025.8895,235.1455 L 1028.0023,234.01403 L 1028.8626,234.60144 L 1029.107,235.12008 L 1029.6341,233.54275 L 1028.3079,231.51097 L 1027.7309,231.77376 L 1027.543,231.22074 L 1029.3277,230.70831 L 1029.8341,230.36853 L 1030.082,230.73775 L 1030.3121,231.11686 L 1033.4848,236.22175 L 1034.2566,236.04965 L 1034.6568,235.52461 L 1034.9494,234.26604 L 1036.1947,232.80575 L 1036.4123,232.86811 L 1036.9964,232.98662 L 1038.6565,231.44019 L 1039.2162,231.24359 L 1040.5304,232.3394 L 1042.3803,232.43651 L 1042.9909,232.52924 L 1044.2678,232.1483 L 1044.9162,231.98992 L 1045.5136,233.50581 L 1045.8706,233.9396 L 1046.4795,234.91215 L 1048.4985,236.02973 L 1049.1106,236.08989 L 1049.5803,236.62591 L 1050.0447,237.05842 L 1050.3567,237.59736 L 1050.3132,238.06004 L 1050.4361,238.51011 L 1049.9813,238.66848 L 1049.1311,239.09862 L 1048.6039,239.11745 L 1047.6778,239.59019 L 1047.1414,239.8208 L 1044.7597,241.44404 L 1044.079,241.31182 L 1042.758,241.24287 L 1040.9671,242.15361 L 1040.2063,242.43341 L 1040.2959,243.00455 L 1040.1675,244.06854 L 1039.6988,244.24337 L 1038.7425,243.95241 L 1038.5528,244.46246 L 1038.1842,245.48658 L 1037.0493,245.71042 L 1037.2811,247.60176 L 1036.4922,248.59424 L 1035.7708,252.29389 L 1035.2221,254.11079 L 1037.681,253.9398 L 1037.9982,254.61462 L 1039.532,255.58278 L 1040.1638,255.68501 L 1040.5435,257.37957 L 1041.4537,258.05841 L 1042.0806,257.96387 L 1043.9254,253.20554 L 1044.1665,252.61484 L 1044.3296,252.19001 L 1044.6542,251.34182 L 1045.2455,250.58251 L 1045.2939,250.10172 L 1046.5522,250.00168 L 1047.1094,249.6511 L 1047.9428,249.06169 L 1049.8534,248.91556 L 1052.2509,248.35229 L 1052.8731,248.33876 L 1055.0731,253.04662 L 1056.7153,251.9786 L 1057.0772,251.44752 L 1056.8469,249.20305 L 1057.4772,248.1771 L 1059.1648,248.80858 L 1059.6335,249.22682 L 1060.7823,248.65222 L 1061.4037,248.84589 L 1061.944,248.97061 L 1061.4849,249.92487 L 1059.7936,251.66972 L 1059.757,252.07187 L 1060.2188,252.97584 L 1060.5566,253.36592 L 1062.4616,254.13804 L 1062.7372,254.60511 L 1065.1203,253.95589 L 1067.0219,254.09689 L 1067.5237,254.47271 L 1067.5134,254.86846 L 1067.7656,255.37814 L 1068.163,255.79986 L 1069.2521,256.35362 L 1069.6525,256.82453 L 1070.4553,256.16269 L 1070.7892,255.75194 L 1072.3923,256.51656 L 1072.7559,256.96773 L 1074.0601,256.70877 L 1075.2245,257.26015 L 1076.4354,258.74604 L 1076.777,259.27932 L 1078.2745,258.47995 L 1078.6932,258.06317 L 1078.2171,257.60963 L 1075.9826,255.33297 L 1076.7308,254.39717 L 1078.0013,253.93962 L 1077.1914,250.97002 L 1079.4775,250.98191 L 1080.0759,251.07335 L 1082.2561,252.96651 L 1082.5572,253.46193 L 1084.3688,253.87981 L 1086.1529,253.28472 L 1086.5261,253.76277 L 1086.2213,255.36333 L 1086.1776,255.90648 L 1086.4251,256.43811 L 1086.645,257.42913 L 1085.7122,259.60265 L 1084.4387,260.95541 L 1083.9949,261.40291 L 1084.1403,262.49214 L 1084.356,263.0084 L 1082.0939,264.92314 L 1081.6472,265.31177 L 1082.4747,266.24152 L 1082.8935,266.71645 L 1085.8732,266.26365 L 1086.5288,265.24758 L 1088.2489,264.93668 L 1088.4002,264.71576 L 1089.4773,263.1719 L 1089.8546,262.66843 L 1090.2716,263.14191 L 1092.4489,262.08724 L 1092.8959,262.53804 L 1093.7275,260.92102 L 1095.2937,259.81058 L 1095.9556,259.82795 L 1095.8936,262.33595 L 1096.1187,262.93653 L 1096.6335,263.00054 L 1097.1337,263.13166 L 1098.6069,266.00249 L 1097.7956,267.6998 L 1096.5259,267.93315 L 1095.6576,268.75848 L 1095.957,269.3234 L 1096.0772,269.7773 L 1097.9498,270.23725 L 1098.8855,269.60613 L 1098.5274,269.15423 L 1099.4077,268.38468 L 1101.1114,267.40591 L 1103.7504,267.59117 L 1104.1502,265.20368 L 1105.4842,266.03852 L 1106.0082,265.81743 L 1106.4946,265.43357 L 1106.6616,264.86005 L 1107.1768,264.45168 L 1107.8493,264.39243 L 1108.8963,264.74008 L 1109.4168,264.92113 L 1110.2657,266.10125 L 1110.6481,266.52608 L 1112.829,265.07493 L 1113.473,264.87139 L 1114.5904,264.40102 L 1115.1153,264.10457 L 1115.7651,263.47602 L 1117.0264,263.69475 L 1117.4029,264.18852 L 1117.5714,263.70737 L 1118.0985,263.57862 L 1121.0749,264.5113 L 1121.6277,264.79348 L 1123.3139,265.3562 L 1123.6763,265.80609 L 1125.2991,264.78105 L 1125.6712,264.26241 L 1126.369,265.728 L 1128.5508,266.91689 L 1128.7144,267.95765 L 1129.6256,269.15625 L 1129.8887,269.61345 L 1133.0943,269.46824 L 1132.8975,270.65823 L 1134.8208,270.5571 L 1135.3812,270.25224 L 1135.9157,271.32464 L 1136.1048,271.89633 L 1140.0062,270.82081 L 1143.2708,268.57104 L 1143.8576,268.89912 L 1145.1364,268.44156 L 1145.2328,268.49185 L 1145.4713,269.02457 L 1146.6247,269.4377 L 1146.998,268.34518 L 1147.5996,268.48636 L 1148.0567,268.58164 L 1148.507,268.70142 L 1149.4208,270.16299 L 1148.8625,270.38336 L 1150.3897,271.3166 L 1152.2731,270.87494 L 1152.8324,270.71382 L 1153.39,270.55107 L 1155.714,271.19059 L 1156.9079,270.90731 L 1157.7324,269.28536 L 1158.7515,268.65387 L 1158.5655,268.08202 L 1158.9326,267.55935 L 1161.6028,267.43261 L 1163.2433,268.40992 L 1163.9136,268.39694 L 1164.6723,267.76618 L 1166.8117,269.19867 L 1168.0194,269.10247 L 1168.4692,269.55986 L 1168.3826,270.05126 L 1175.6103,270.50351 L 1176.2679,270.62221 L 1178.1812,268.50446 L 1178.4135,267.98874 L 1178.5519,267.59665 L 1181.3012,266.97834 L 1182.8029,264.58463 L 1184.0081,264.25546 L 1184.6616,264.23187 L 1186.0983,264.40212 L 1187.0854,265.08316 L 1187.5462,265.47745 L 1189.4434,266.05882 L 1191.1531,267.96954 L 1191.2799,268.5853 L 1191.5444,269.09498 L 1191.9605,269.50847 L 1192.8931,268.81847 L 1193.3491,268.4624 L 1193.9864,268.23234 L 1195.6427,267.32362 L 1197.4877,268.11255 L 1198.0315,267.00778 L 1197.4554,266.77059 L 1197.5342,265.23989 L 1198.4902,264.08593 L 1199.0156,264.01515 L 1203.5318,262.08614 L 1204.1383,261.93015 L 1204.748,261.42119 L 1205.5119,262.36137 L 1208.223,263.83118 L 1208.6164,264.29258 L 1211.8063,264.75508 L 1212.3462,265.11407 L 1212.688,265.67972 L 1214.6688,265.25727 L 1216.8742,266.65812 L 1217.4839,266.94981 L 1219.5592,265.53323 L 1220.1699,265.34706 L 1221.5715,266.67732 L 1224.1818,267.21205 L 1225.8972,268.17108 L 1226.0237,268.78244 L 1225.3915,268.98928 L 1226.4521,269.78864 L 1226.5408,271.68035 L 1226.5273,272.31713 L 1230.6374,269.77109 L 1231.0288,269.28755 L 1233.5768,268.66412 L 1234.2483,268.68515 L 1234.4404,269.17326 L 1238.5506,265.99134 L 1239.4665,266.52809 L 1239.6898,267.10563 L 1240.1857,268.88704 L 1238.2758,273.43762 L 1238.3598,275.26373 L 1238.9624,275.04723 L 1241.5147,274.96768 L 1242.2306,276.64042 L 1243.5174,276.62828 L 1244.2548,277.20137 L 1244.7268,277.36848 L 1246.4575,276.67755 L 1250.2747,277.56347 L 1250.9027,277.75542 L 1251.4736,279.45543 L 1253.4189,279.1494 L 1254.0674,279.2878 L 1258.0459,278.20104 L 1258.6171,277.97365 M 962.36999,1632.4528 L 965.02755,1631.1382 L 965.53611,1630.8226 L 967.23375,1630.3249 L 970.67902,1631.0625 L 971.83078,1630.7907 L 971.70702,1629.5484 L 973.36987,1629.075 L 974.11834,1628.1295 L 974.24096,1626.2846 L 974.90149,1625.2574 L 975.09851,1624.6651 L 976.42173,1625.9169 L 978.21959,1625.8294 L 979.31579,1626.3703 L 980.38694,1625.8324 L 981.44746,1624.2913 L 984.33406,1624.0302 L 984.72279,1623.5373 L 984.69305,1622.3728 L 986.54672,1618.8628 L 987.45666,1616.2539 L 987.98002,1616.2219 L 989.63907,1617.2623 L 990.04526,1617.5792 L 990.59659,1617.6327 L 993.18936,1616.8763 L 993.66439,1615.7626 L 995.4377,1616.0826 L 997.06448,1615.3902 L 1001.1961,1615.534 L 1003.8967,1614.217 L 1005.825,1615.7127 L 1006.9866,1616.04 L 1008.1283,1615.643 L 1008.7258,1615.7024 L 1008.8141,1614.4457 L 1009.7688,1612.8752 L 1009.7065,1611.6665 L 1008.5729,1609.4586 L 1007.5839,1608.799 L 1006.3914,1608.8776 L 1005.5068,1608.0389 L 1005.5314,1607.4446 L 1002.1155,1604.6242 L 1001.7675,1604.1951 L 1000.4364,1603.3039 L 999.94691,1603.0412 L 998.82577,1601.8657 L 998.64166,1599.5817 L 998.46451,1599.6562 L 997.89521,1599.5498 L 995.0696,1598.9572 L 993.27047,1600.4341 L 992.13441,1600.5406 L 991.60915,1601.5167 L 990.24253,1601.7853 L 989.65261,1601.9209 L 988.1921,1602.972 L 987.92713,1602.6348 L 987.52587,1602.5299 L 987.07135,1602.5977 L 986.63099,1602.7394 L 986.04803,1602.6617 L 981.42114,1602.2168 L 980.58118,1600.6526 L 979.05348,1599.7886 L 979.05765,1599.3616 L 978.83368,1599.0081 L 978.26172,1599.0112 L 976.70644,1598.258 L 976.19813,1597.1704 L 976.27089,1596.5867 L 978.36055,1595.9031 L 978.72536,1595.4609 L 978.21959,1595.1598 L 975.24669,1590.6994 L 974.85745,1590.3223 L 974.79393,1589.7099 L 973.98383,1588.905 L 970.21273,1587.5421 L 969.92093,1587.0102 L 970.02216,1585.7988 L 971.96946,1583.5921 L 971.89961,1582.4147 L 971.89936,1581.8234 L 972.56318,1581.1819 L 973.67394,1581.1768 L 974.28854,1581.1369 L 981.02356,1580.4485 L 982.68362,1579.5906 L 983.21065,1579.3087 L 985.82178,1577.8569 L 985.42761,1576.6975 L 985.38484,1576.0997 L 985.94882,1572.0165 L 986.59151,1571.1577 L 986.36349,1570.6101 L 985.295,1567.7518 L 985.25691,1567.1179 L 979.92368,1565.5369 L 979.3287,1565.3693 L 979.64542,1563.0364 L 981.61791,1562.2983 L 981.55198,1561.7203 L 982.86356,1561.1862 L 985.10582,1561.4626 L 986.27036,1562.7666 L 986.81017,1562.7046 L 988.33496,1561.2686 L 986.64959,1560.9181 L 985.91364,1560.0048 L 985.59641,1556.3544 L 986.08548,1555.2448 L 986.07637,1554.1342 L 984.90349,1552.9587 L 983.82474,1552.7864 L 984.15564,1552.3034 L 985.87593,1549.9458 L 985.91276,1548.761 L 985.76015,1548.2163 L 985.11468,1547.3077 L 984.668,1546.5032 L 982.78978,1545.1767 L 981.90401,1545.6857 L 980.86475,1545.2048 L 980.1722,1542.9774 L 980.65748,1541.9956 L 982.80206,1542.0419 L 983.04147,1541.5133 L 981.82024,1539.6253 L 981.35964,1539.3007 L 981.66637,1538.8686 L 982.11799,1538.6132 L 982.06699,1537.9777 L 981.46771,1535.5146 L 981.57653,1533.8841 L 981.18553,1532.2382 L 979.15407,1531.5886 L 978.60426,1531.5292 L 978.52973,1530.5585 L 977.11971,1529.8369 L 975.62086,1530.253 L 974.13505,1532.82 L 973.80908,1531.6603 L 972.60545,1530.3647 L 972.61165,1527.2576 L 972.27126,1527.7526 L 969.60091,1527.7908 L 968.98151,1524.8685 L 968.74083,1525.4172 L 968.19848,1525.6147 L 968.52824,1527.2935 L 965.72124,1527.5966 L 965.1198,1526.9911 L 964.57796,1526.7649 L 962.58396,1525.5254 L 960.35714,1525.9885 L 959.80948,1524.9131 L 959.23322,1524.6959 L 955.77036,1522.1313 L 954.76451,1520.5356 L 953.02928,1519.9156 L 951.24357,1520.0698 L 950.97202,1519.4906 L 951.01593,1517.691 L 952.82024,1515.3819 L 952.38925,1513.6404 L 952.77924,1513.1952 L 951.78819,1512.4755 L 949.78787,1509.3406 L 949.88404,1506.8716 L 948.69571,1504.6798 L 948.28889,1504.2117 L 949.56174,1503.1966 L 949.91453,1502.7234 L 950.59493,1501.929 L 951.56004,1499.911 L 950.71742,1499.1918 L 950.26176,1498.8605 L 950.68794,1498.4032 L 953.23339,1496.8948 L 954.30302,1496.4472 L 952.84251,1493.9515 L 953.09243,1493.3973 L 953.02169,1492.269 L 952.6522,1491.7805 L 954.2352,1492.4808 L 955.64395,1491.4243 L 955.98206,1490.3304 L 958.44564,1492.1733 L 958.8989,1492.6136 L 959.4372,1491.5922 L 960.50126,1491.1175 L 961.56381,1491.5896 L 962.02428,1491.9575 L 962.50867,1491.6978 L 964.11394,1491.7866 L 964.17544,1491.1502 L 964.12584,1489.9608 L 963.05494,1488.4482 L 963.04684,1482.8226 L 963.99082,1482.1751 L 965.71175,1482.0646 L 965.14409,1481.3109 L 964.57277,1479.7369 L 964.59239,1479.1404 L 965.79488,1477.8419 L 967.51821,1478.0259 L 968.04069,1476.9541 L 968.22847,1475.469 L 967.84266,1475.1361 L 969.38985,1473.678 L 969.55055,1473.1413 L 971.63768,1474.3294 L 971.7694,1475.5547 L 974.76053,1478.4784 L 974.50327,1481.7143 L 975.51621,1482.1816 L 976.4159,1481.5635 L 976.91333,1480.9509 L 976.51941,1480.465 L 978.03598,1477.1449 L 979.20899,1476.8147 L 980.95573,1477.3198 L 982.42269,1476.405 L 982.75018,1476.7058 L 983.12878,1476.9273 L 983.03894,1477.4473 L 983.40033,1478.351 L 984.29876,1477.6217 L 986.58999,1479.379 L 989.32184,1478.3398 L 990.36287,1476.8462 L 991.35885,1477.4995 L 992.4338,1477.0317 L 992.57514,1476.428 L 991.61927,1474.9182 L 991.40188,1474.3406 L 991.92841,1474.4962 L 994.43033,1475.5464 L 996.55643,1479.7031 L 996.63046,1481.3595 L 996.92681,1481.876 L 997.49914,1481.889 L 998.55979,1481.4398 L 999.31674,1482.2064 L 999.75065,1481.7843 L 1000.9252,1481.8922 L 1001.4809,1482.1009 L 1001.7686,1481.7861 L 1004.227,1480.8634 L 1004.6157,1480.4369 L 1005.2177,1480.4106 L 1007.4949,1478.3653 L 1009.2698,1478.1853 L 1011.0059,1481.4946 L 1014.4279,1483.9107 L 1014.9243,1484.2682 L 1016.7328,1479.5719 L 1015.9771,1477.8341 L 1015.8714,1475.9113 L 1017.5263,1474.2195 L 1018.0035,1473.8197 L 1018.2541,1473.2835 L 1018.5657,1472.7801 L 1020.1951,1471.2794 L 1020.4001,1470.0959 L 1021.1111,1470.8624 L 1021.3004,1471.4113 L 1021.7145,1471.8334 L 1023.3733,1473.5083 L 1023.7631,1473.1711 L 1025.6388,1472.5274 L 1026.196,1472.3235 L 1027.4387,1473.5801 L 1031.799,1475.0952 L 1033.66,1476.5961 L 1034.1966,1476.8493 L 1034.6925,1476.8676 L 1035.1888,1476.8827 L 1038.1694,1477.9709 L 1039.1963,1477.5675 L 1038.9409,1476.9856 L 1039.3128,1476.4781 L 1041.8217,1474.7798 L 1044.7969,1475.1947 L 1047.1304,1474.6233 L 1047.6553,1474.4107 L 1048.2,1474.4265 L 1050.274,1474.3337 L 1050.6474,1474.8176 L 1053.3866,1476.7517 L 1057.0643,1476.5806 L 1058.7646,1477.2544 L 1059.2928,1476.8936 L 1061.0154,1476.8275 L 1063.3845,1475.1066 L 1063.916,1475.3583 L 1064.4451,1475.237 L 1064.4084,1474.134 L 1064.7576,1473.6982 L 1065.8723,1474.0424 L 1068.8333,1470.9231 L 1069.2783,1470.4962 L 1069.2835,1469.8848 L 1068.9004,1468.8247 L 1071.6899,1469.3525 L 1072.2422,1468.2784 L 1071.8757,1467.7969 L 1070.9305,1466.2824 L 1070.6024,1463.8633 L 1071.2183,1462.1682 L 1071.0855,1459.7054 L 1072.6883,1460.296 L 1073.2586,1460.3397 L 1072.9011,1459.8269 L 1067.6166,1453.9714 L 1065.7446,1450.8446 L 1065.914,1450.2338 L 1067.5612,1447.5772 L 1067.0841,1445.7576 L 1066.4906,1445.8917 L 1066.1779,1445.3499 L 1065.613,1444.4172 L 1067.1535,1442.482 L 1069.3945,1433.4174 L 1069.9372,1433.6416 L 1070.4178,1435.3695 L 1072.1529,1435.4705 L 1074.3554,1434.6719 L 1074.6868,1435.1994 L 1079.1924,1436.7421 L 1081.4716,1439.5271 L 1082.1816,1441.2469 L 1083.1911,1441.9265 L 1083.7679,1441.7901 L 1086.6293,1439.7815 L 1088.33,1440.0071 L 1089.1477,1439.1114 L 1089.5402,1438.6324 L 1090.8069,1437.2923 L 1092.5431,1437.6669 L 1094.6263,1436.3278 L 1097.6479,1436.2897 L 1099.6127,1434.065 L 1101.9719,1434.5181 L 1102.586,1434.4997 L 1103.9379,1433.1738 L 1104.0792,1428.679 L 1106.0243,1427.1918 L 1106.9436,1427.7285 L 1108.5568,1426.8589 L 1108.8885,1426.3255 L 1110.3764,1425.49 L 1110.959,1425.3798 L 1111.9877,1424.7574 L 1113.7478,1425.0373 L 1115.9401,1425.961 L 1116.6154,1426.9567 L 1117.1208,1427.2556 L 1118.2246,1427.6093 L 1120.3574,1426.7827 L 1121.9326,1427.5408 L 1122.0834,1426.9553 L 1122.1455,1425.7855 L 1123.0056,1424.9736 L 1121.2092,1423.3041 L 1121.5493,1421.5171 L 1121.0261,1420.3731 L 1121.4818,1419.1953 L 1120.9805,1418.0365 L 1121.2437,1416.7961 L 1121.3749,1416.176 L 1122.5311,1416.0376 L 1123.5549,1413.8645 L 1121.6938,1411.6532 L 1121.4729,1411.0823 L 1121.6413,1410.4789 L 1120.4001,1407.664 L 1120.6014,1407.0921 L 1122.3295,1405.6275 L 1121.6768,1404.6432 L 1121.6865,1402.8216 L 1122.6459,1401.4876 L 1123.2596,1401.5692 L 1125.0996,1401.4345 L 1128.4982,1402.9864 L 1130.3216,1404.707 L 1133.3246,1405.4196 L 1133.4208,1405.2317 L 1133.868,1404.8156 L 1137.332,1405.5905 L 1140.2336,1405.5677 L 1142.433,1404.6858 L 1143.5854,1403.1705 L 1144.1569,1402.9192 L 1145.2204,1402.669 L 1145.7671,1402.5276 L 1145.9232,1400.0831 L 1144.261,1398.2924 L 1144.0356,1396.4729 L 1145.0099,1394.2322 L 1146.6777,1393.6162 L 1147.3951,1391.9167 L 1147.4838,1391.2947 L 1148.9436,1389.9201 L 1149.3616,1390.2394 L 1150.4224,1390.8742 L 1151.5997,1390.5669 L 1154.5774,1391.2695 L 1157.6031,1390.7111 L 1157.5187,1388.9722 L 1159.1861,1387.3617 L 1159.6392,1386.9929 L 1158.8215,1383.3745 L 1158.7599,1382.7504 L 1159.1696,1381.5787 L 1159.7079,1380.4564 L 1161.8173,1379.2752 L 1162.0315,1377.4069 L 1165.5792,1376.9057 L 1165.6774,1376.2675 L 1167.2139,1372.7707 L 1170.3809,1370.9339 L 1171.3201,1367.2398 L 1171.1627,1367.106 L 1170.5356,1366.8418 L 1170.0345,1366.4645 L 1167.1395,1364.0563 L 1164.8404,1363.1603 L 1163.1638,1361.3068 L 1161.4291,1361.7448 L 1160.7746,1360.7163 L 1158.7624,1362.1705 L 1158.2735,1361.779 L 1157.8541,1361.3707 L 1156.9592,1360.6189 L 1156.3301,1357.7381 L 1156.0856,1357.3334 L 1155.8746,1356.9097 L 1155.1329,1356.7602 L 1154.5472,1356.9104 L 1152.9018,1358.7078 L 1151.7,1358.6447 L 1149.0188,1355.3536 L 1147.582,1354.405 L 1151.1488,1352.1904 L 1153.5696,1352.1701 L 1154.6304,1351.5444 L 1155.2333,1351.4434 L 1155.2431,1350.8912 L 1155.2005,1348.1346 L 1154.9094,1347.6457 L 1154.792,1346.5013 L 1156.0398,1345.3632 L 1156.3026,1344.8026 L 1156.5021,1342.947 L 1159.3177,1340.8648 L 1161.5353,1340.1336 L 1161.3355,1338.3121 L 1159.6054,1335.797 L 1159.861,1334.5722 L 1159.253,1334.6314 L 1156.2758,1334.1444 L 1154.5353,1334.7153 L 1152.3482,1333.6052 L 1151.1555,1333.7479 L 1150.6822,1334.8751 L 1147.7071,1334.7295 L 1145.0323,1336.144 L 1144.5302,1336.4934 L 1143.4329,1336.64 L 1142.8918,1336.5069 L 1140.016,1335.9817 L 1141.0898,1335.5586 L 1141.5608,1334.4028 L 1141.9926,1333.9622 L 1142.549,1332.816 L 1142.6252,1330.9207 L 1143.4269,1329.2379 L 1139.0156,1327.3516 L 1138.0215,1325.8423 L 1136.3255,1326.5106 L 1134.5671,1326.3219 L 1133.7756,1321.4293 L 1132.7515,1320.8822 L 1131.9894,1322.5266 L 1131.7543,1323.0884 L 1131.1989,1323.3769 L 1130.0178,1323.5224 L 1129.6778,1322.9844 L 1130.1437,1319.1739 L 1133.7753,1314.8115 L 1132.739,1313.3647 L 1133.3535,1311.0246 L 1131.2342,1310.1847 L 1130.439,1307.8166 L 1130.6682,1306.5954 L 1130.9544,1306.0423 L 1129.8933,1305.3849 L 1129.501,1304.279 L 1129.7543,1303.6945 L 1129.8688,1301.8291 L 1129.4068,1300.7093 L 1131.5967,1299.7422 L 1131.6218,1296.6997 L 1130.7523,1296.0097 L 1130.2888,1295.658 L 1130.697,1294.4911 L 1132.1014,1293.3102 L 1132.2409,1291.4024 L 1131.3473,1290.5261 L 1131.5107,1289.9093 L 1131.4881,1289.2874 L 1131.3986,1288.058 L 1130.0551,1286.9997 L 1129.1014,1284.7167 L 1127.3519,1283.6644 L 1126.8525,1283.5014 L 1123.6004,1280.5383 L 1123.1152,1278.7987 L 1123.9006,1276.3639 L 1123.7342,1273.8359 L 1124.817,1268.8909 L 1124.2527,1267.7653 L 1123.9488,1267.213 L 1123.8968,1266.6549 L 1122.081,1265.4763 L 1121.8002,1264.995 L 1121.2596,1263.998 L 1119.4539,1262.6949 L 1118.9527,1262.4518 L 1118.2899,1261.9159 L 1118.1406,1261.4986 L 1116.5813,1259.5766 L 1115.9346,1257.8224 L 1112.7122,1254.1018 L 1112.4137,1253.5498 L 1111.9362,1253.4636 M 1223.3982,1235.3248 L 1225.2413,1236.7651 L 1223.554,1239.2631 L 1223.4706,1241.1482 L 1224.3446,1242.0296 L 1224.2477,1243.2747 L 1224.2981,1243.9024 L 1226.0561,1243.9478 L 1226.1865,1244.5475 L 1225.8302,1245.0701 L 1224.5514,1247.127 L 1226.2907,1251.1234 L 1227.4778,1252.4986 L 1227.5,1253.0055 L 1227.6039,1253.9007 L 1227.4298,1254.4995 L 1227.3975,1258.84 L 1228.9821,1259.6294 L 1229.1618,1260.2269 L 1228.8128,1262.4652 L 1228.9675,1263.0292 L 1230.4757,1263.9456 L 1230.2671,1265.1635 L 1230.8755,1266.2125 L 1231.1211,1266.777 L 1233.7614,1266.4524 L 1234.3111,1266.5942 L 1235.5394,1269.5187 L 1235.8465,1270.0812 L 1236.3582,1272.4232 L 1236.4513,1273.0322 L 1236.7002,1273.5475 L 1238.1349,1275.9439 L 1237.7298,1276.8613 L 1238.2992,1277.1022 L 1239.1212,1279.479 L 1239.1636,1284.5185 L 1240.5602,1287.2746 L 1241.1212,1287.509 L 1242.701,1288.4305 L 1242.9005,1288.9991 L 1243.8131,1289.7432 L 1245.488,1289.8068 L 1246.5396,1292.0857 L 1245.5782,1294.3868 L 1247.7272,1295.5061 L 1249.4536,1297.2856 L 1248.3148,1299.3241 L 1246.1582,1299.2951 L 1246.3281,1301.0361 L 1246.7041,1301.4179 L 1247.4975,1302.1071 L 1247.9689,1305.3384 L 1247.5842,1305.7475 L 1247.6271,1306.3488 L 1247.5061,1309.2295 L 1246.8562,1310.2001 L 1245.3116,1311.0405 L 1245.6911,1311.3993 L 1246.8743,1313.0331 L 1247.3042,1313.3306 L 1247.8306,1313.0202 L 1248.4028,1312.8111 L 1250.1364,1311.191 L 1253.9359,1310.2985 L 1254.2851,1310.5811 L 1254.639,1310.8577 L 1255.1836,1311.1863 L 1256.831,1309.5983 L 1258.6115,1311.7641 L 1258.7401,1313.4877 L 1258.8716,1314.0567 L 1261.2556,1314.275 L 1262.7156,1313.2838 L 1263.3155,1313.2541 L 1264.0649,1316.0753 L 1264.4028,1316.5474 L 1267.7389,1318.0622 L 1268.1741,1318.5039 L 1269.995,1320.6729 L 1270.409,1321.06 L 1270.9313,1321.4185 L 1271.8112,1322.3371 L 1273.5537,1323.0046 L 1275.4355,1321.6641 L 1277.0268,1318.4397 L 1277.3622,1317.9354 L 1277.4366,1317.3368 L 1277.283,1313.7518 L 1279.5557,1313.5228 L 1281.0448,1312.5203 L 1282.4576,1310.5767 L 1282.0161,1309.4893 L 1287.6341,1309.1582 L 1289.3599,1308.3868 L 1289.7689,1307.8929 L 1290.3806,1307.9803 L 1291.7055,1310.0956 L 1291.5913,1311.3477 L 1291.4157,1311.9598 L 1290.3449,1315.6287 L 1290.5627,1317.4869 L 1291.8594,1318.6606 L 1295.4556,1318.386 L 1295.9154,1319.547 L 1296.5227,1319.5293 L 1297.7417,1317.3719 L 1298.1425,1316.8881 L 1297.579,1317.101 L 1297.8352,1310.8833 L 1297.8704,1310.2622 L 1298.9845,1308.8919 L 1299.6034,1308.8764 L 1301.8993,1309.512 L 1304.834,1309.1365 L 1305.5827,1310.025 L 1305.9262,1311.1751 L 1307.1204,1311.2373 L 1308.0044,1312.0921 L 1310.2772,1312.0166 L 1310.1042,1312.316 L 1309.8379,1312.8941 L 1311.2969,1315.7365 L 1312.9198,1316.6183 L 1313.461,1316.3612 L 1316.587,1318.0073 L 1317.011,1317.9753 L 1317.4075,1318.1369 L 1317.8706,1318.465 L 1318.8194,1320.5236 L 1319.3078,1320.1666 L 1320.8517,1319.2444 L 1321.4012,1319.4847 L 1321.997,1321.2171 L 1322.9453,1321.9189 L 1323.2891,1318.7345 L 1323.3421,1318.0945 L 1323.446,1317.4479 L 1323.2372,1311.685 L 1323.1204,1311.048 L 1323.6615,1311.3146 L 1326.8249,1312.715 L 1331.0172,1312.7222 L 1332.1114,1311.6361 L 1336.7606,1311.8675 L 1337.3414,1311.9092 L 1338.4688,1313.2912 L 1339.6145,1313.3676 L 1342.0225,1315.8493 L 1342.6016,1315.7858 L 1342.3946,1320.0124 L 1342.5911,1320.593 L 1342.7657,1321.1005 L 1342.5302,1322.1309 L 1343.6073,1324.175 L 1343.6836,1326.5204 L 1343.5599,1327.0953 L 1343.725,1328.8578 L 1344.668,1329.5041 L 1345.2307,1329.5851 L 1348.7527,1326.6727 L 1349.248,1326.3768 L 1351.6447,1323.7652 L 1352.1792,1323.4902 L 1354.2948,1323.0088 L 1354.8406,1323.032 L 1355.1188,1323.9104 L 1358.1232,1323.4303 L 1358.7303,1323.3656 L 1359.9322,1322.0939 L 1363.2261,1320.5724 L 1363.7496,1320.2615 L 1365.4923,1319.1475 L 1366.0154,1319.1017 L 1367.6771,1319.1748 L 1368.9869,1318.1318 L 1369.5014,1317.918 L 1370.467,1317.0884 L 1371.0653,1316.8843 L 1374.4827,1315.5125 L 1374.9546,1315.1064 L 1376.6858,1318.8876 L 1377.0138,1319.4097 L 1378.2745,1319.4373 L 1381.2065,1320.0905 L 1386.2506,1316.38 L 1386.7261,1314.6436 L 1387.8279,1314.0511 L 1388.3922,1313.7825 L 1388.6968,1313.9157 L 1389.2017,1314.9976 L 1388.8119,1316.1316 L 1388.8575,1316.7308 L 1388.6436,1317.9173 L 1386.3953,1319.813 L 1385.9903,1322.1378 L 1387.6443,1322.7868 L 1387.8413,1325.8367 L 1387.7742,1326.4496 L 1387.4197,1326.9464 L 1386.542,1327.7809 L 1386.3118,1328.3417 L 1388.0215,1329.9669 L 1388.5785,1330.1589 L 1389.554,1330.9722 L 1393.7493,1332.1491 L 1397.4663,1332.3668 L 1397.6989,1329.7923 L 1397.7581,1329.1496 L 1398.272,1329.1724 L 1398.7815,1329.0967 L 1399.3025,1329.0937 L 1399.7895,1329.2903 L 1402.292,1330.9472 L 1402.8478,1331.1663 L 1404.2575,1332.1083 L 1405.2211,1333.5216 L 1405.711,1333.8006 L 1405.8097,1333.181 L 1407.6154,1333.1056 L 1409.8187,1334.0617 L 1412.3422,1332.3323 L 1414.4525,1333.5654 L 1414.9946,1333.8487 L 1415.4623,1334.2544 L 1415.9902,1334.5702 L 1415.819,1334.9583 L 1415.5788,1336.1795 L 1416.2568,1338.5783 L 1415.8214,1342.3223 L 1415.826,1342.9643 L 1417.5612,1343.5036 L 1419.951,1343.0806 L 1420.8473,1343.9235 L 1421.8777,1343.6546 L 1422.4711,1343.5194 L 1422.5902,1345.3822 L 1423.3933,1346.1357 L 1423.9668,1346.3536 L 1424.421,1349.2094 L 1424.8707,1349.5588 L 1429.8213,1350.2517 L 1430.4475,1350.2006 L 1431.5652,1349.8278 L 1432.0043,1348.6942 L 1435.9345,1346.991 L 1437.0943,1344.0699 L 1437.0972,1343.9959 L 1439.5126,1344.1847 L 1440.8758,1342.9891 L 1439.2183,1340.5071 L 1438.7468,1340.1084 L 1440.3336,1336.9556 L 1443.1364,1336.7979 L 1443.5154,1336.3422 L 1444.4355,1336.4873 L 1445.4008,1338.6966 L 1447.0227,1339.5259 L 1448.1643,1340.9533 L 1447.306,1343.2102 L 1447.1959,1343.8256 L 1448.4021,1344.0709 L 1448.9906,1344.2629 L 1452.6264,1344.4213 L 1453.2024,1344.6459 L 1453.5674,1341.9876 L 1453.7234,1341.4646 L 1449.0556,1340.7407 L 1448.811,1340.1786 L 1449.8721,1337.3053 L 1449.783,1336.694 L 1452.8769,1336.3547 L 1454.1247,1335.299 L 1452.9653,1332.3328 L 1453.5222,1329.1743 L 1453.6348,1328.6296 L 1452.5318,1327.4419 L 1452.4478,1326.4358 L 1452.6507,1324.5718 L 1453.3859,1323.5673 L 1454.2199,1322.7055 L 1453.9474,1322.1997 L 1452.8228,1320.9088 L 1452.3253,1321.213 L 1449.1751,1322.518 L 1449.1236,1321.9134 L 1447.4134,1319.6381 L 1447.3808,1318.4401 L 1447.7781,1318.0279 L 1448.2882,1317.1384 L 1447.5325,1316.3384 L 1446.9667,1316.2891 L 1445.2877,1314.7841 L 1444.3074,1315.3804 L 1444.9286,1313.615 L 1447.0783,1311.4055 L 1446.8315,1310.292 L 1446.2665,1310.0585 L 1445.8324,1310.4742 L 1441.7599,1310.6145 L 1441.6005,1310.6406 L 1441.1009,1310.5928 L 1439.6243,1310.3782 L 1439.0487,1310.4903 L 1437.9729,1310.2535 L 1436.9679,1310.8708 L 1435.7974,1310.8162 L 1435.1842,1308.6573 L 1434.0232,1308.3582 L 1433.2038,1307.4416 L 1430.9977,1308.4205 L 1429.7085,1309.708 L 1429.3903,1309.2354 L 1428.2713,1307.3145 L 1426.6604,1307.1079 L 1426.4318,1306.529 L 1425.8926,1304.2026 L 1423.5055,1304.1093 L 1422.9195,1304.0722 L 1422.3704,1303.8588 L 1421.9135,1302.7227 L 1423.341,1301.6372 L 1423.2244,1299.7332 L 1422.104,1296.0781 L 1420.5317,1294.2644 L 1420.2757,1293.6812 L 1422.2188,1292.1459 L 1422.8303,1292.0753 L 1427.1503,1294.3811 L 1428.2604,1294.0271 L 1428.8359,1292.9136 L 1429.7937,1293.0505 L 1429.972,1292.5511 L 1430.0309,1291.1149 L 1426.1515,1289.3133 L 1426.0246,1288.6924 L 1425.5668,1285.6682 L 1426.4028,1284.7662 L 1425.7336,1283.0647 L 1425.5851,1282.4578 L 1425.4013,1282.0223 L 1425.267,1280.2606 L 1426.3421,1279.862 L 1426.9125,1279.9234 L 1427.4274,1280.9734 L 1428.4669,1281.5299 L 1431.4131,1281.3825 L 1431.9967,1281.476 L 1436.4315,1283.1931 L 1436.8927,1283.5993 L 1438.2475,1284.6231 L 1438.787,1284.4502 L 1439.3454,1284.2057 L 1443.1257,1286.0923 L 1443.7165,1286.2329 L 1445.5016,1284.5617 L 1446.4147,1280.9405 L 1446.5874,1280.3307 L 1447.4566,1279.5388 L 1449.7402,1280.0464 L 1450.8183,1279.5618 L 1451.4177,1279.5765 L 1451.2338,1279.0186 L 1449.1183,1276.2513 L 1448.6586,1275.889 L 1446.7548,1273.6401 L 1445.1522,1273.9296 L 1444.8341,1273.4121 L 1442.9079,1272.0092 L 1443.8225,1268.3167 L 1444.077,1267.7334 L 1444.1596,1267.4242 L 1445.0137,1266.7877 L 1446.0387,1264.2212 L 1446.5862,1264.0819 L 1446.7326,1262.5556 L 1447.9417,1259.9495 L 1449.0887,1259.8198 L 1449.5149,1258.0918 L 1448.6774,1257.1992 L 1448.3553,1252.8904 L 1448.5343,1252.2938 L 1449.4863,1251.9617 L 1449.7779,1251.5382 L 1450.7601,1252.2987 L 1453.8222,1252.4954 L 1459.137,1254.3042 L 1462.1285,1252.2943 L 1462.7137,1250.5656 L 1464.9093,1251.7098 L 1466.7533,1251.9166 L 1467.3769,1251.8889 L 1468.6927,1247.9511 L 1469.734,1247.3484 L 1470.2429,1247.0226 L 1470.7374,1246.6598 L 1472.1856,1245.5506 L 1471.7851,1243.1682 L 1470.1668,1242.4322 L 1469.6985,1242.289 L 1468.7492,1242.1075 L 1469.9964,1240.783 L 1470.95,1237.7411 L 1472.2781,1235.5857 L 1471.9202,1233.0684 L 1471.9924,1232.4312 L 1473.7554,1233.0389 L 1474.6363,1233.924 L 1477.1007,1234.0196 L 1478.7603,1234.7816 L 1479.3761,1234.6999 L 1480.349,1233.1843 L 1481.496,1232.7406 L 1483.694,1233.6948 L 1485.9871,1231.7463 L 1487.1515,1232.1356 L 1487.6862,1232.4441 L 1487.8252,1230.837 L 1487.9451,1230.306 L 1490.8884,1228.7647 L 1491.3755,1228.5014 L 1491.2777,1227.9023 L 1491.0595,1226.7078 L 1487.6971,1224.7929 L 1487.4838,1224.2312 L 1490.7854,1222.0284 L 1491.2373,1221.6597 L 1494.3047,1221.3372 L 1495.9211,1218.6057 L 1497.6948,1218.0918 L 1500.4846,1221.919 L 1501.0206,1222.1675 L 1505.676,1218.4086 L 1506.1868,1218.0681 L 1508.1885,1216.7325 L 1510.3782,1213.6281 L 1513.852,1214.4006 L 1514.7532,1215.2593 L 1515.3405,1215.4781 L 1518.238,1214.6819 L 1518.7205,1214.2731 L 1522.8615,1215.5487 L 1525.3624,1215.4475 L 1527.669,1212.4235 L 1531.1454,1211.5291 L 1532.3834,1211.7464 L 1534.2915,1214.975 L 1536.4283,1216.2133 L 1538.4202,1215.3954 L 1538.8387,1215.0336 L 1538.2207,1211.3183 L 1538.4133,1210.0568 L 1539.2406,1209.0906 L 1538.7493,1207.3025 L 1539.1646,1205.4367 L 1538.6875,1202.3283 L 1539.2077,1199.8109 L 1539.1931,1199.1677 L 1538.5924,1198.988 L 1535.6387,1198.0362 L 1534.854,1197.063 L 1534.7747,1196.4264 L 1535.4026,1194.6391 L 1533.8559,1191.9232 L 1533.8839,1190.6399 L 1534.7014,1188.9184 L 1534.1362,1187.7772 L 1533.5146,1187.7762 L 1526.2869,1189.1759 L 1520.9989,1187.4442 L 1519.5758,1186.2079 L 1519.5491,1184.2894 L 1520.2779,1183.3002 L 1520.3879,1180.748 L 1521.5489,1177.1436 L 1521.72,1176.528 L 1524.6552,1175.6922 L 1522.9879,1170.2314 L 1523.13,1168.3609 L 1526.5799,1165.8683 L 1526.8434,1165.2854 L 1528.9085,1167.4633 L 1530.9908,1168.6164 L 1533.987,1168.0134 L 1535.9916,1166.6057 L 1536.165,1166.0004 L 1539.7697,1169.2738 L 1541.2718,1173.4314 L 1540.0426,1175.6498 L 1544.0943,1177.1466 L 1545.2634,1176.7344 L 1547.0624,1177.2895 L 1548.8993,1176.9625 L 1551.209,1178.9047 L 1554.8797,1178.1982 L 1555.5068,1178.1679 L 1555.7122,1175.6487 L 1555.0392,1171.3259 L 1558.1239,1169.0979 L 1558.4598,1168.5493 L 1560.9728,1170.3652 L 1562.2084,1170.2812 L 1564.9066,1168.8578 L 1565.2267,1167.6678 L 1566.4511,1166.4289 L 1566.8247,1165.9718 L 1568.5209,1166.6851 L 1571.5056,1166.3633 L 1573.1717,1168.0296 M 1365.6889,1317.8315 L 1365.2507,1317.4081 L 1357.4415,1314.8908 L 1356.8421,1314.9443 L 1353.3443,1315.7636 L 1353.5649,1315.1985 L 1353.4966,1313.9902 L 1352.4133,1311.8673 L 1354.0866,1309.5379 L 1353.592,1309.1725 L 1352.0345,1308.202 L 1350.8222,1308.2551 L 1351.3351,1307.1683 L 1353.6718,1305.2592 L 1353.78,1304.6442 L 1353.8309,1304.0864 L 1355.1462,1303.1914 L 1355.5744,1302.8505 L 1355.8263,1302.2634 L 1355.9644,1299.0975 L 1357.0205,1296.7869 L 1360.8495,1295.1688 L 1361.2486,1294.7103 L 1361.7206,1294.5077 L 1362.2322,1294.504 L 1363.6426,1292.7001 L 1365.3172,1293.9727 L 1365.8909,1293.9681 L 1368.1146,1296.0684 L 1369.0927,1295.3525 L 1369.7049,1295.2887 L 1369.5735,1296.9064 L 1369.0411,1297.215 L 1369.6878,1299.5663 L 1371.4782,1299.8766 L 1373.3557,1301.4821 L 1376.3012,1301.2785 L 1376.4454,1302.141 L 1376.2292,1302.5183 L 1375.7647,1302.9327 L 1374.079,1304.6427 L 1370.5039,1305.3445 L 1370.0479,1308.389 L 1368.471,1310.3242 L 1368.5698,1311.4679 L 1369.0187,1311.8079 L 1366.9911,1313.14 L 1366.3448,1314.1901 L 1365.6889,1317.8315 z M 593.08203,948.80268 L 593.77341,947.99658 L 594.04532,946.4381 L 594.59747,946.43024 L 595.01951,947.57276 L 596.51011,948.16029 L 598.21387,947.21829 L 597.97076,946.65756 L 598.82285,945.82503 L 601.11143,942.25236 L 601.30862,941.67416 L 601.68265,942.8306 L 605.86968,941.04668 L 610.84358,941.37715 L 612.28088,939.35849 L 612.59235,938.78054 L 614.24017,939.56771 L 617.2973,937.76864 L 616.58262,939.22615 L 616.42496,939.74815 L 616.26761,940.36073 L 615.22083,943.9814 L 613.31798,946.46697 L 616.46034,948.42851 L 618.85221,947.89924 L 619.22698,948.40901 L 621.33548,947.65991 L 622.14291,946.37679 L 622.41927,945.85659 L 624.51675,946.6335 L 624.73921,946.07935 L 625.71457,946.08071 L 625.43608,947.23983 L 627.20999,947.38993 L 627.72749,946.23928 L 627.48703,944.48377 L 628.80453,943.17726 L 629.81787,943.58425 L 630.19376,944.09109 L 631.99568,943.78316 L 632.93566,942.9765 L 633.69694,943.70846 L 632.50857,945.00419 L 633.05449,946.11688 L 634.31139,946.29224 L 635.8331,947.38266 L 636.46693,947.36408 L 639.29911,949.47012 L 639.67699,949.96239 L 642.74223,950.15503 L 643.76046,949.79094 L 643.55734,948.07486 L 643.99313,947.65283 L 645.16415,947.4476 L 645.99552,946.57891 L 646.40104,946.13526 L 649.07875,947.43807 L 649.57194,947.77479 L 651.68437,947.85041 L 652.12823,947.54533 L 652.71528,947.50323 L 653.20795,947.18317 L 654.06157,946.23202 L 654.00442,944.41642 L 656.26196,943.47821 L 657.69815,942.20908 L 658.35662,939.84471 L 661.44636,940.49675 L 663.83025,939.5968 L 664.12196,939.02788 L 666.23429,935.41531 L 666.5885,934.92816 L 666.14553,934.47515 L 665.09123,933.7861 L 662.6369,933.44521 L 662.21187,932.32307 L 660.99757,932.0439 L 658.55999,930.14233 L 657.32512,930.06707 L 656.30754,933.62043 L 656.07411,934.19891 L 653.92436,932.90853 L 654.58574,931.84786 L 653.73072,928.92797 L 654.05558,926.54467 L 656.15663,925.28159 L 656.42908,923.50135 L 657.32833,923.04444 L 657.67841,922.53902 L 656.6648,920.9618 L 656.44072,919.08332 L 655.10254,917.83476 L 655.48578,914.75598 L 654.56106,913.90501 L 654.36997,913.30301 L 653.1044,912.17343 L 653.82333,910.63819 L 653.37264,909.63605 L 655.14985,909.0141 L 657.62114,909.02178 L 658.44738,908.07876 L 658.34953,906.91835 L 658.3243,906.33808 L 657.8855,903.3167 L 657.04707,902.76189 L 656.44515,902.91782 L 655.82831,900.58155 L 655.59165,900.00264 L 657.01839,898.14294 L 656.32207,897.16302 L 656.60344,896.0839 L 655.28101,894.85255 L 656.47652,892.49932 L 656.94955,892.19678 L 654.53219,889.2349 L 653.26484,888.96325 L 651.49563,889.66908 L 651.29333,888.48961 L 652.28944,887.80642 L 652.66598,885.49365 L 653.58376,884.69834 L 654.03674,884.29596 L 651.88037,882.2584 L 651.41126,881.85136 L 648.84372,880.00288 L 651.65106,877.52845 L 649.46507,873.78174 L 648.03686,872.53385 L 647.49623,872.86243 L 646.30788,871.01778 L 646.63358,869.2929 L 646.28569,868.1504 L 645.08447,868.50266 L 643.96207,867.90231 L 643.56294,867.39908 L 642.70177,865.01365 L 642.87871,862.42503 L 643.45504,861.26169 L 643.71799,859.50622 L 645.60451,857.93855 L 646.17693,857.68277 L 645.93334,857.18006 L 644.79176,855.35678 L 644.1661,855.35783 L 642.31398,855.36025 L 641.18077,854.01946 L 638.72964,853.57489 L 638.27282,853.11197 L 636.80424,851.92144 L 636.21534,851.80957 L 635.08406,849.80743 L 634.89055,849.37214 L 634.2018,848.72262 L 634.03214,848.13819 L 631.00319,844.46631 L 629.30134,843.80476 L 631.09509,840.54381 L 630.83483,839.37357 L 631.66057,838.45801 L 632.15524,837.41109 L 630.32789,837.04411 L 629.53759,835.31875 L 626.74839,834.01936 L 626.85016,832.93181 L 623.77628,832.74131 L 623.1598,832.51765 L 622.99415,831.89222 L 625.1448,831.35225 L 624.80111,830.15916 L 623.56464,830.19764 L 622.87624,828.48345 L 620.98061,828.56545 L 620.47406,828.15616 L 621.2299,827.35654 L 621.77222,827.14841 L 623.02372,827.06138 L 625.95401,828.12855 L 626.54472,827.9222 L 626.42885,826.76272 L 627.37099,825.25929 L 629.06881,825.01023 L 630.67088,824.03404 L 631.3023,823.99759 L 632.18392,824.88468 L 632.77408,824.65716 L 632.34639,824.20993 L 634.67974,822.27849 L 635.07301,821.79194 L 636.84785,822.11271 L 638.29529,823.99737 L 639.57137,824.14031 L 641.78599,823.26087 L 644.23345,825.28882 L 645.78725,824.15907 L 646.25647,823.72128 L 647.36184,824.05779 L 647.98814,824.92136 L 648.5699,824.98322 L 648.54694,823.96348 L 649.44145,822.38504 L 652.77706,823.77718 L 654.5515,823.28756 L 655.53892,823.94382 L 656.16312,823.94033 L 658.63155,823.17538 L 659.28654,823.10838 L 659.25619,822.60901 L 660.32901,821.60471 L 661.23469,820.00247 L 662.92142,819.09941 L 663.58328,817.33017 L 665.42097,817.46764 L 665.86929,816.30522 L 664.27484,814.38443 L 664.26686,811.89058 L 663.81341,811.44282 L 668.90279,808.82065 L 669.45527,808.47323 L 672.40887,807.5743 L 675.45038,807.47323 L 676.00718,807.75488 L 675.87007,808.80175 L 673.41306,810.55785 L 673.85201,812.91783 L 676.36021,810.22825 L 678.2716,810.35054 L 680.67247,809.51619 L 682.93199,810.56559 L 683.92461,809.78401 L 685.05581,805.92276 L 685.66151,805.83123 L 686.30799,806.53178 L 688.61915,805.80632 L 689.19824,805.62026 L 689.7614,805.41685 L 691.35372,806.22404 L 691.59756,806.76565 L 694.49592,806.03645 L 695.07801,805.89196 L 697.6248,804.32768 L 700.97986,803.89807 L 701.37475,803.43744 L 701.96867,804.3861 L 704.21462,803.50971 L 708.17617,805.18612 L 708.53786,805.68333 L 710.95792,804.05083 L 711.199,802.8992 L 714.87906,804.14783 L 716.13681,803.94391 L 716.76507,803.76945 L 716.81032,805.02888 L 713.5396,807.91477 L 712.04545,809.96346 L 712.52567,810.37954 L 713.08094,810.64349 L 713.63466,810.91246 L 714.54457,810.13 L 715.68354,809.98901 L 717.17635,810.95819 L 717.77245,812.5674 L 718.32851,812.80691 L 721.10123,811.10663 L 721.71731,810.8754 L 721.46765,809.66816 L 721.90364,807.25679 L 721.98691,806.61725 L 722.23147,806.02051 L 723.391,804.75392 L 723.81395,804.3592 L 725.94093,805.07321 L 726.06384,805.64889 L 729.04181,805.69103 L 729.58646,806.70345 L 730.17007,806.86709 L 731.21326,803.94913 L 731.08947,803.33559 L 729.89506,802.94977 L 729.63949,801.74106 L 730.28061,800.66693 L 730.33541,799.45884 L 733.29156,793.92837 L 736.60401,791.03339 L 737.04487,790.5844 L 738.89348,792.93706 L 739.27436,793.40005 L 741.09968,792.16254 L 741.4388,792.62188 M 837.74383,517.28907 L 837.12683,518.374 L 838.36716,520.43598 L 838.84953,520.85456 L 838.64985,521.93847 L 838.75488,523.658 L 839.88613,524.00894 L 839.38301,524.42743 L 838.26429,526.73682 L 838.70122,528.49792 L 839.27406,528.23744 L 841.67741,528.47132 L 842.10714,532.6925 L 844.38078,534.886 L 847.62865,535.27219 L 849.25531,536.34201 L 849.82043,536.67908 L 851.2202,537.55421 L 851.77444,537.4986 L 853.22255,539.52083 L 851.57944,541.4533 L 852.55037,542.16334 L 856.46358,543.9778 L 857.09311,544.04124 L 856.89217,544.65957 L 855.43811,547.55496 L 853.78046,548.64697 L 855.01029,549.61431 L 855.53137,549.75184 L 855.54542,550.33368 L 855.23616,552.03734 L 853.04084,552.8872 L 853.16738,553.34544 L 853.24798,553.8127 L 853.62507,555.69216 L 855.5153,558.3175 L 856.58999,559.01962 L 857.92561,559.01716 L 858.19109,559.60634 L 857.78034,560.0718 L 854.25245,563.38391 L 854.64282,566.39461 L 852.25402,568.41721 L 851.87807,569.60278 L 851.33332,569.89342 L 849.45119,572.16431 L 849.09245,571.70194 L 848.06521,572.01604 L 847.82833,572.57935 L 846.46007,574.61155 L 844.60261,574.51817 L 842.68694,576.00163 L 840.9321,575.30847 L 841.1786,575.85979 L 839.39326,577.24629 L 839.01884,576.79094 L 838.19621,575.94612 L 837.60616,576.05909 L 834.3531,577.42777 L 834.0236,577.59026 L 833.50656,579.00622 L 833.1296,579.50514 L 831.97405,580.98274 L 832.0234,582.21688 L 830.4628,584.84383 L 830.86329,585.32617 L 831.38653,584.98697 L 833.15744,584.59952 L 835.54902,586.54879 L 836.76265,586.86159 L 836.16286,587.14258 L 835.11423,587.88602 L 834.09357,590.25063 L 834.79422,591.34235 L 834.26301,592.03512 L 838.66541,598.96501 L 839.59535,601.19435 L 836.70672,602.50007 L 836.72153,603.73806 L 835.57167,604.28607 L 835.55585,605.43767 L 837.29095,606.06614 L 839.39415,608.2028 L 840.05848,608.9339 L 840.49402,609.19393 L 841.00157,609.57602 L 843.54095,609.36988 L 846.5551,610.24991 L 849.7068,612.40289 L 849.9724,612.97059 L 849.73767,613.59969 L 850.62901,614.4393 L 850.32469,614.98575 L 842.24228,615.51044 L 842.82765,617.19694 L 841.34841,620.46109 L 841.08382,621.00051 L 840.58007,621.3914 L 838.13509,621.98442 L 837.91175,622.54306 L 839.70139,623.18074 L 841.56416,622.88151 L 841.31197,626.56391 L 840.72407,626.80683 L 835.10866,627.14879 L 835.45196,627.66369 L 835.55889,633.03697 L 836.76961,633.15715 L 837.55706,634.09633 L 840.71914,633.88261 L 841.00562,636.37106 L 840.39494,638.17689 L 839.96168,639.77551 L 838.33401,642.17942 L 838.95088,643.18773 L 839.54346,644.86432 L 840.5311,645.52861 L 841.28881,647.78455 L 841.63566,648.27819 L 841.98984,650.10247 L 841.58808,650.60334 L 837.93731,651.86716 L 837.41597,652.98729 L 837.20263,656.63011 L 837.86986,659.02066 L 837.99881,659.63016 L 837.54365,660.0582 L 835.5985,658.50766 L 835.11853,656.77477 L 834.22353,655.98752 L 831.82815,657.88101 L 831.27998,658.14006 L 830.78269,658.48532 L 830.4633,660.30598 L 831.23696,664.51196 L 830.70107,665.59333 L 832.08515,666.77712 L 832.5598,667.16108 L 832.58384,668.99976 L 831.87219,670.7359 L 830.67956,670.28207 L 830.34347,670.78726 L 829.25094,671.33332 L 828.31202,674.12705 L 827.49078,675.01687 L 827.02626,675.42421 L 824.83702,678.16269 L 824.72161,678.76219 L 823.55505,678.3169 L 822.17047,679.43575 L 823.5486,681.97082 L 822.87959,682.9731 L 822.2593,682.94462 L 820.05031,682.13444 L 819.54112,682.40321 L 817.04072,684.63171 L 816.92341,684.66725 L 816.3941,685.00884 L 813.89446,685.31986 L 813.08018,686.26833 L 812.83242,688.01256 L 811.91147,688.8532 L 812.02877,689.56633 L 811.66586,690.08576 L 809.8127,690.49915 L 808.09431,692.36594 L 808.0709,692.44854 L 809.64985,694.31297 L 810.04249,696.67689 L 811.13554,697.14687 L 811.97993,696.23703 L 812.38751,695.76928 L 812.8328,696.75513 L 812.16759,697.83545 L 809.1633,700.18877 L 805.34614,700.05192 L 805.4499,700.89693 L 804.96551,701.30086 L 803.63129,702.54451 L 801.16328,703.13629 L 800.02456,702.71777 L 797.70738,704.81391 L 797.07431,704.756 L 795.18648,704.92119 L 794.80218,704.42496 L 792.99457,704.98851 L 792.74972,705.57503 L 791.75766,709.07482 L 789.26978,709.65011 L 788.0583,709.41891 L 784.77918,705.52891 L 784.17888,705.50064 L 783.07571,705.11767 L 782.90476,705.74377 L 780.76727,708.96349 L 781.86563,710.56061 L 783.02788,711.17546 L 784.63113,713.9897 L 784.84789,714.57862 L 785.58029,716.92853 L 784.98911,717.10731 L 782.53097,718.75476 L 782.04721,718.39141 L 777.54863,716.70549 L 777.59621,716.07574 L 775.39646,713.87148 L 769.48825,713.16406 L 767.42643,710.7506 L 766.84852,710.80011 L 764.08454,711.00701 L 763.74175,711.46355 L 764.04341,712.02497 L 763.81362,715.74155 L 764.32028,716.91139 L 763.81337,717.14846 L 762.34147,717.82889 L 761.72814,718.70732 L 759.95735,723.39463 L 759.07551,724.33143 L 760.6599,725.2634 L 760.85312,726.41031 L 763.08919,726.29839 L 762.44055,730.33882 L 762.49041,730.92991 L 760.47123,733.73641 L 760.02847,734.12173 L 759.80083,735.60058 L 757.95324,739.37876 L 757.52629,739.84129 L 757.98272,744.16354 L 758.06725,744.78001 L 757.53414,746.53871 L 754.47722,749.31044 L 754.10709,749.80764 L 755.92824,750.27816 L 755.98885,752.13281 L 757.68624,752.87703 L 754.5887,755.91799 L 754.10735,756.32444 L 752.40464,756.56045 L 752.7139,757.12449 L 753.27751,759.56439 L 752.91535,760.03165 L 751.78346,761.39609 L 749.50109,761.94778 L 749.55638,762.58808 L 748.69769,764.98671 L 747.33095,766.36267 L 745.06249,770.26446 L 745.8445,771.08504 L 745.7086,772.33964 L 745.16385,772.59033 L 744.77525,773.04073 L 744.30224,776.65488 L 743.38168,778.2267 L 743.98109,780.02153 L 743.80659,782.51492 L 744.30515,783.16074 L 743.8605,783.50086 L 743.28044,783.55519 L 741.44627,786.35931 L 742.46946,787.80471 L 743.06546,788.01651 L 742.67635,790.46833 L 741.8064,792.11761 L 741.4388,792.62188 L 742.85401,796.01134 L 743.36396,796.3803 L 744.55861,795.96454 L 744.74564,800.66466 L 745.06932,801.1838 L 746.05227,800.44173 L 747.88962,800.63529 L 748.59912,799.08155 L 750.32498,799.51238 L 750.82987,800.59776 L 752.01452,800.36746 L 752.44121,799.94095 L 751.612,801.64586 L 751.71463,802.90701 L 754.70916,803.93719 L 755.12788,804.41785 L 755.87623,802.90963 L 757.32016,801.99469 L 757.85631,801.78448 L 758.09306,803.69871 L 759.66796,806.37509 L 756.72024,809.78914 L 757.00192,810.98637 L 756.87108,811.62026 L 757.45935,811.85281 L 759.23773,811.20389 L 760.98333,812.99043 L 763.4974,811.5114 L 764.10213,810.58526 L 764.39507,810.07721 L 765.49798,809.7519 L 767.98826,810.19705 L 768.07278,814.23502 L 768.51099,814.67125 L 771.90463,813.22578 L 772.40142,812.85593 L 773.59974,814.08098 L 773.74766,817.00168 L 773.85826,817.59954 L 772.67576,818.86573 L 773.25264,822.27084 L 773.63467,822.74001 L 773.95822,823.21889 L 772.10507,824.52533 L 771.51729,824.50588 L 773.4336,826.57958 L 772.37383,827.98111 L 773.41208,829.32215 L 772.98299,830.34199 L 772.85784,830.89802 L 773.93836,833.7523 L 775.26043,835.04677 L 775.80873,835.35378 L 778.05732,834.30136 L 778.68419,834.3628 L 780.77878,832.13174 L 783.08078,833.01289 L 783.71284,833.02038 L 785.39896,834.02909 L 785.93384,834.40611 L 787.87925,834.35895 L 789.6227,835.22199 L 790.15226,835.60444 L 790.80748,834.04346 L 790.92364,833.48792 L 796.19626,831.13519 L 796.80592,830.89719 L 798.23378,830.44446 L 798.56556,830.05829 L 799.54092,830.79779 L 804.17831,830.11634 L 804.76672,830.32034 L 805.91898,830.81438 L 810.33644,830.69382 L 810.77705,830.2448 L 810.41047,827.31209 L 807.63598,826.22437 L 807.23296,825.76448 L 807.16437,824.6519 L 807.32002,824.10869 L 806.50296,822.7873 L 806.37945,822.26181 L 806.4803,821.57662 L 808.77812,821.60967 L 809.36653,821.49634 L 812.90214,821.35179 L 813.55546,822.28391 L 813.33275,822.8334 L 813.59697,823.88089 L 814.80857,825.16639 L 815.34497,825.42314 L 816.48432,824.87389 L 817.63469,825.43531 L 818.21322,826.56842 L 821.97193,827.30106 L 822.57172,828.99527 L 822.605,829.63108 L 822.70762,830.15573 L 823.99756,834.4093 L 823.61819,836.29143 L 824.34554,837.77233 L 823.68969,839.3014 L 823.80737,840.48528 L 826.66866,843.55689 L 826.9454,844.08939 L 828.1846,845.978 L 828.72416,846.20919 L 829.97714,848.22134 L 831.52243,847.39248 L 832.30191,848.09783 L 831.61303,849.08892 L 832.25016,849.98303 L 835.23913,850.06249 L 835.44475,850.64284 L 834.21075,851.76138 L 835.19509,853.28556 L 836.88261,853.97362 L 837.01434,855.78779 L 837.11747,856.39467 L 837.15682,856.70657 L 837.84468,858.38664 L 837.55896,860.82414 L 839.17283,861.7116 L 839.59079,863.53189 L 841.54543,866.06523 L 843.30166,866.77113 L 843.42959,867.39899 L 844.17136,868.25567 L 844.40799,868.77127 L 845.96922,870.50316 L 848.31272,871.04278 L 848.88227,872.02965 L 849.93836,872.63752 L 849.84143,874.40495 L 851.25588,877.09141 L 851.66473,877.54996 L 851.95792,878.75899 L 850.8216,879.32879 L 848.81116,881.67417 L 849.44157,881.58851 L 850.02251,882.60158 L 849.45258,883.72758 L 850.50222,886.60979 L 849.49016,887.33238 L 847.95677,890.05737 L 847.76569,890.63682 L 849.14446,892.55334 L 849.59734,894.91166 L 850.58422,896.40284 L 852.73677,896.87115 L 853.30227,896.89714 L 853.03995,897.93869 L 853.5046,898.89638 L 853.7592,899.37386 L 855.55972,899.97095 L 856.42473,900.89875 L 858.90236,900.76536 L 859.9868,902.08971 L 862.43077,901.836 L 863.04714,901.77282 L 864.30594,905.07417 L 863.76031,907.37224 L 869.46783,906.9856 L 871.31669,907.54834 L 872.57803,907.29134 L 874.35716,908.05155 L 876.28877,909.73451 L 876.83365,910.08318 L 879.76783,913.21757 L 880.0514,913.76125 L 879.56764,914.15197 L 878.49194,914.75428 L 878.86168,916.51414 L 880.53313,919.13157 L 878.32541,919.4892 L 880.27575,923.25437 L 881.90291,923.89955 L 882.50372,923.97616 L 884.64855,925.2264 L 884.6941,927.09341 L 885.91343,927.03777 L 886.91157,926.27151 L 888.13861,926.40346 L 887.9116,926.98101 L 885.65175,930.6683 L 885.90318,932.45006 L 883.61119,935.38797 L 884.05344,936.36729 L 885.05309,936.6717 L 885.58658,936.58493 L 885.66314,935.97496 L 887.54793,934.43877 L 888.12507,934.64786 L 888.47508,938.05715 L 890.72203,938.55189 L 891.31537,938.63408 L 892.89545,936.70331 L 894.10466,936.34587 L 895.29172,936.77741 L 896.55305,936.75213 L 896.99151,937.53609 L 900.47158,937.13785 L 900.53788,935.91933 L 901.90184,934.90938 L 900.73971,933.60313 L 904.26381,932.50635 L 904.79414,932.16067 L 906.65615,932.86956 L 907.05412,933.25133 L 908.49122,935.03869 L 908.83439,935.50032 L 910.77448,937.7441 L 911.35985,937.59227 L 911.17953,938.18695 L 912.68104,939.28452 L 913.25527,941.68671 L 913.71562,942.10581 L 916.42304,940.47501 L 916.48707,939.19904 L 917.50824,937.58636 L 919.85477,936.78976 L 921.87066,933.55564 L 923.63815,932.95583 L 924.06306,933.4334 L 924.19416,932.93014 L 924.46141,931.44638 L 925.62746,930.11604 L 925.76805,928.93971 L 927.10784,927.81011 L 927.6555,927.57902 L 928.84041,928.00964 L 929.96951,929.45093 L 930.30028,933.19918 L 931.43255,933.20433 L 933.25863,931.48166 L 933.85754,931.28495 L 934.25259,930.78915 L 936.09373,931.06276 L 937.73278,928.5858 L 938.24818,928.21575 L 939.78878,928.90403 L 938.92668,931.83598 L 940.56105,934.38631 L 942.30121,935.08667 L 943.5976,933.73573 L 944.08781,933.34644 L 944.90095,931.64645 L 947.14043,929.44877 L 947.68087,929.12835 L 950.94544,933.66938 L 953.27831,934.47208 L 953.3393,933.84142 L 955.56398,931.66403 L 956.15137,931.43091 L 955.92651,930.20036 L 957.31515,927.42729 L 956.7504,925.64932 L 957.13205,925.15306 L 956.41799,924.1316 L 956.0938,923.72086 L 955.7777,923.3053 L 960.45406,922.38136 L 961.6105,922.60532 L 962.18714,922.41212 L 962.67646,923.62307 L 964.55949,925.41214 L 964.74398,926.70583 L 967.79558,927.54999 L 969.2089,926.33186 L 972.39615,926.53342 L 973.03327,926.48186 L 973.50362,924.95553 L 974.47316,925.46011 L 975.04271,925.40099 L 976.52523,924.57181 L 977.53615,925.14391 L 978.3689,926.61708 L 984.68698,925.22862 L 985.32688,925.08587 L 986.02057,925.90871 L 986.54963,926.01003 L 986.8413,926.79853 L 991.05086,927.47533 L 991.43959,927.95573 L 995.11832,928.63487 L 995.74684,928.54876 L 996.8853,928.77522 L 998.39339,930.38927 L 998.94687,930.56192 L 998.93068,930.61133 L 1000.805,930.48383 L 1002.3926,928.51468 L 1005.5092,928.59359 L 1006.5977,928.08252 L 1008.9486,928.05085 L 1010.5557,928.20876 L 1011.1139,928.21935 L 1012.2767,927.70185 L 1012.7502,927.27831 L 1015.6377,928.1389 L 1019.2095,927.65232 L 1019.8139,927.7619 L 1020.2326,928.22216 L 1022.6776,928.56219 L 1023.2801,928.72135 L 1022.95,927.47623 L 1023.739,923.06103 L 1026.371,918.65833 L 1027.3367,919.51027 L 1027.8296,919.92477 L 1028.3881,919.85043 L 1029.5776,918.03067 L 1029.4276,917.48937 L 1028.8375,916.40682 L 1030.0208,914.24489 L 1033.7378,911.01219 L 1034.3218,910.79358 L 1036.3204,910.81923 L 1040.0775,910.4454 L 1042.2444,909.35359 L 1044.3855,910.38964 L 1048.3025,908.53503 L 1048.826,908.18552 L 1050.5477,908.46692 L 1051.016,910.11322 L 1052.2222,909.8754 L 1053.5526,908.69228 L 1054.708,909.08004 L 1055.1226,910.19661 L 1055.6247,910.56149 L 1056.0991,910.1563 L 1057.5405,908.97053 L 1059.8607,908.05409 L 1060.6736,907.12032 L 1065.3182,904.17883 L 1064.3584,902.59106 L 1064.696,900.82347 L 1063.3891,896.70737 L 1061.5288,896.912 L 1060.8125,894.59646 L 1059.6394,894.16022 L 1060.2132,893.96614 L 1062.2043,892.7776 L 1061.859,892.26332 L 1061.6909,891.05497 L 1063.1747,889.16119 L 1062.7673,887.35822 L 1062.2475,887.0818 L 1059.4642,886.27861 L 1059.9143,885.03772 L 1064.4181,883.2027 L 1064.5297,884.42061 L 1066.6671,885.5208 L 1067.6342,883.29463 L 1067.6698,882.67134 L 1066.3778,881.37998 L 1066.6111,879.54464 L 1067.2106,879.3609 L 1069.7245,879.60905 L 1070.7497,878.07312 L 1073.0372,877.17275 L 1073.4841,876.74524 L 1073.279,875.60744 L 1074.8531,873.71563 L 1076.6931,873.52817 L 1076.958,871.07625 L 1076.9062,870.45078 L 1080.1717,868.8113 L 1080.6636,869.13625 L 1081.8359,872.00159 L 1083.2686,873.21509 L 1083.6993,874.35938 L 1085.3251,873.70017 L 1085.7532,874.12374 L 1086.7648,873.48114 L 1088.1144,871.45192 L 1091.8039,871.1119 L 1092.4263,871.12727 L 1094.1571,872.5926 L 1094.7342,872.72135 L 1094.4924,870.4147 L 1094.5955,869.84114 L 1098.4821,866.49884 L 1099.1235,864.7822 L 1100.8853,864.02443 L 1101.4705,863.75051 L 1102.9846,862.71165 L 1102.7301,862.14054 L 1103.2399,861.09451 L 1106.1694,860.14387 L 1106.6487,860.54729 L 1107.217,860.58291 L 1108.2443,860.63855 L 1109.1839,858.59252 L 1111.7115,858.67524 L 1113.8254,859.85751 L 1116.2983,859.33067 L 1117.7468,860.51271 L 1118.3129,860.23154 M 883.61119,935.38797 L 883.08618,935.15548 L 881.0465,934.42237 L 880.83151,935.00649 L 879.97117,936.64691 L 880.04254,937.88821 L 877.44825,939.36106 L 877.61047,939.96247 L 877.34436,941.80465 L 875.02668,940.89607 L 874.0107,939.33556 L 870.95934,940.03403 L 870.38106,939.86395 L 867.5261,939.25868 L 867.62809,939.86258 L 864.61634,942.79541 L 864.48702,943.41797 L 864.49588,946.51645 L 863.85863,948.30946 L 862.43127,949.52161 L 862.3885,951.3603 L 861.65293,952.35519 L 861.92436,954.21998 L 861.60637,954.35702 L 861.15564,953.92038 L 859.92188,953.70783 L 859.43775,954.10782 L 857.70594,953.38739 L 855.20579,953.36867 L 852.9949,952.34157 L 852.84976,954.15601 L 852.21872,954.22327 L 848.68411,953.02516 L 847.22196,956.49141 L 843.67065,957.72271 L 843.88817,958.29132 L 843.17601,959.96849 L 841.98389,960.20169 L 841.38283,961.91803 L 842.43829,962.45255 L 842.39463,963.09338 L 841.37866,963.68719 L 836.93335,963.90772 L 835.79008,966.19469 L 835.20635,966.45961 L 835.42286,966.96386 L 836.05024,967.67727 L 835.89902,968.75832 L 836.36595,969.15714 L 837.55731,969.45149 L 838.5495,971.67856 L 840.08454,972.56889 L 839.50259,974.11893 L 839.84741,974.47418 L 840.70522,975.297 L 839.97268,977.01266 L 840.39469,978.86909 L 841.67324,980.2994 L 840.94754,981.15911 L 840.55426,981.66694 L 838.83624,982.08841 L 838.25151,982.34661 L 837.37548,983.11407 L 839.95902,986.52155 L 839.95282,988.43062 L 839.30469,989.46014 L 839.30431,989.87156 L 838.29719,991.44951 L 839.17473,993.70517 L 837.9759,995.07622 L 838.13749,996.8471 L 838.65301,997.12491 L 841.59453,998.92806 L 842.10992,999.2967 L 842.98949,1000.1686 L 843.26762,1002.0163 L 844.28829,1002.5895 L 846.77692,999.80107 L 847.80758,1000.916 L 847.77139,1001.4531 L 849.23468,1002.2754 L 849.78272,1002.3953 L 851.53402,1004.093 L 851.04077,1005.1946 L 851.24842,1006.3067 L 852.91291,1007.0284 L 852.77928,1007.6005 L 852.90683,1009.9167 L 854.01341,1010.5288 L 853.69897,1013.0653 L 851.64828,1014.5274 L 851.37331,1015.4901 L 851.11846,1015.9339 L 851.17933,1016.9582 L 850.56144,1017.0946 L 849.32174,1016.9559 L 846.5818,1019.5343 L 843.60814,1020.2715 L 841.94074,1019.4952 L 840.68522,1019.6198 L 838.64972,1018.1187 L 837.40408,1018.1726 L 837.13214,1018.7128 L 837.01181,1019.9165 L 837.89365,1020.7302 L 837.86506,1021.3643 L 837.58363,1024.4604 L 839.33544,1027.0463 L 838.87762,1027.4056 L 836.82061,1029.3742 L 837.22148,1029.7006 L 838.19937,1029.5317 L 838.52647,1029.9335 L 837.94414,1031.6991 L 835.36275,1036.7249 L 833.60804,1038.448 L 833.4424,1039.0538 L 833.72699,1040.8665 L 832.95662,1041.7705 L 833.81835,1043.3725 L 833.62411,1043.9228 L 832.10287,1044.2872 L 831.82815,1043.7251 L 831.06284,1042.7386 L 829.84643,1042.7087 L 828.60863,1041.3782 L 825.58562,1041.1575 L 824.54813,1041.7766 L 824.16598,1046.1571 L 825.0849,1047.8099 L 824.69542,1048.9732 L 824.18559,1049.1814 L 822.63208,1049.1073 L 822.09657,1049.3291 L 818.94386,1051.6543 L 818.98119,1052.1934 L 818.82314,1053.2616 L 818.24574,1053.2591 L 817.25229,1053.2674 L 816.58859,1054.865 L 816.94189,1055.3428 L 816.32527,1057.0066 L 814.80414,1056.7241 L 814.32659,1057.8026 L 814.06465,1059 L 812.23769,1061.5515 L 811.19729,1061.5254 L 810.83096,1063.7998 L 810.13246,1064.6974 L 810.61268,1065.6365 L 808.97615,1066.3297 L 808.99792,1067.5454 L 806.39173,1069.0148 L 807.23081,1070.6859 L 807.45642,1071.2699 L 806.07551,1072.4632 L 804.29296,1072.519 L 802.77475,1073.5003 L 802.60101,1072.9926 L 802.39171,1070.9173 L 801.17871,1071.115 L 799.51081,1073.0024 L 798.9753,1074.8417 L 797.96058,1075.1768 L 798.09193,1075.9471 L 798.39575,1076.4582 L 799.59382,1077.7632 L 799.9523,1078.8935 L 799.45247,1079.8795 L 799.97457,1080.9386 L 797.72927,1085.1962 L 798.19645,1085.5607 L 798.73778,1087.1062 L 797.78925,1088.641 L 795.78526,1089.9297 L 794.58352,1090.0195 L 794.07116,1089.9397 L 793.57361,1089.797 L 793.39216,1090.9005 L 792.56637,1092.3692 L 791.49458,1092.6699 L 791.69553,1093.6328 L 791.08928,1094.3667 L 790.77888,1094.8697 L 789.40151,1096.7417 L 789.27231,1099.6776 L 788.65645,1099.6434 L 788.15523,1100.0096 L 787.69248,1099.6129 L 786.31169,1098.5463 L 782.52021,1099.945 L 782.58107,1100.5771 L 781.83209,1101.4568 L 780.59252,1101.5938 L 779.77495,1103.2193 L 776.98857,1104.3329 L 776.9496,1104.3915 L 776.77852,1106.2145 L 776.29185,1107.3232 L 773.96594,1104.5845 L 772.93288,1104.5623 L 773.00767,1106.9929 L 774.65684,1108.75 L 773.05006,1109.4882 L 772.45634,1109.4249 L 771.33103,1109.3675 L 769.86875,1110.3641 L 768.91465,1111.8691 L 769.00246,1112.3902 L 768.50555,1113.8715 L 768.2073,1114.3387 L 767.9036,1115.9037 L 766.71211,1118.816 L 766.20356,1121.9895 L 766.30175,1122.5333 L 767.15677,1123.914 L 767.35493,1124.4649 L 768.12024,1127.2635 L 768.16161,1127.3035 L 768.88693,1130.9476 L 768.6784,1132.8111 L 768.3761,1134.0305 L 767.88462,1134.3744 L 766.60683,1135.556 L 766.22368,1135.7063 L 765.87886,1135.477 L 765.40674,1135.1261 L 762.59404,1135.4054 L 762.49078,1135.9547 L 761.2893,1138.3362 L 761.2502,1138.8721 L 760.50704,1140.2752 L 760.04644,1140.599 L 756.76706,1140.6708 L 756.80199,1141.1914 L 756.88031,1142.18 L 756.44249,1142.4491 L 756.32228,1143.068 L 756.30545,1144.2979 L 756.75086,1144.7362 L 754.6111,1147.0677 L 753.39405,1147.415 L 753.04948,1149.2565 L 752.48272,1149.2084 L 751.38385,1150.2603 L 749.29875,1149.425 L 749.10008,1149.2332 L 748.73844,1148.8009 L 747.29843,1147.1377 L 746.28232,1146.8743 L 745.82653,1147.2876 L 744.26492,1148.1992 L 743.04825,1148.1362 L 741.67366,1146.9392 L 741.1222,1147.2666 L 739.27132,1149.8299 L 738.92625,1150.3752 L 735.94677,1151.4063 L 735.18918,1153.4371 L 734.85297,1154.9451 L 734.38011,1155.3512 L 732.22765,1158.2741 L 732.85785,1159.2357 L 734.68784,1159.5074 L 735.01064,1160.643 L 729.9927,1162.7751 L 730.17317,1163.3835 L 730.89184,1165.114 L 729.38575,1167.8745 L 729.55404,1169.7587 L 728.80714,1170.5998 L 727.84059,1169.9964 L 727.41631,1170.3814 L 726.82254,1170.4196 L 723.52685,1166.2753 L 722.89532,1166.3496 L 720.59825,1167.3558 L 716.48123,1171.9581 L 715.24498,1172.1628 L 714.15098,1171.5679 L 713.52411,1171.5209 L 710.41617,1171.1536 L 708.10276,1170.1523 L 707.75827,1169.7849 L 706.64536,1168.7752 L 703.55344,1168.6927 L 702.1476,1167.4892 L 699.97603,1163.8199 L 699.75266,1162.5913 L 699.21487,1162.2855 L 695.72315,1161.1261 L 695.49312,1161.6674 L 694.95499,1163.3087 L 694.56939,1162.7906 L 693.7282,1159.7415 L 691.77335,1158.0793 L 688.71237,1157.3504 L 688.30533,1157.8386 L 686.74425,1159.8113 L 686.12564,1162.2693 L 685.91557,1161.6744 L 684.09224,1155.6782 L 683.94842,1155.0496 L 683.69755,1153.7911 L 681.81918,1151.1964 L 681.59801,1150.006 L 682.35705,1147.6628 L 682.30057,1147.0491 L 683.26588,1144.8286 L 682.77096,1143.1342 L 680.98548,1143.0253 L 681.6051,1140.6919 L 681.78425,1140.1324 L 681.68434,1138.4454 L 679.79167,1137.1733 L 679.29618,1136.8883 L 676.72978,1135.7481 L 676.17165,1135.7075 L 674.79024,1134.7832 L 673.13988,1134.7942 L 672.61692,1135.1624 L 669.61774,1136.1372 L 669.23484,1135.6707 L 665.20914,1134.8774 L 664.82107,1134.4985 L 662.80987,1134.0901 L 662.43233,1133.5645 L 662.02414,1131.6586 L 662.64372,1127.9064 L 662.16718,1127.5474 L 660.57791,1125.7752 L 659.47595,1127.8403 L 659.41514,1129.7523 L 658.81975,1129.7158 L 657.7505,1129.2281 L 654.46664,1130.2465 L 653.92554,1130.5456 L 652.29969,1129.5038 L 644.96866,1128.6153 L 644.1826,1128.546 M 1414.6677,712.16606 L 1413.618,712.4853 L 1412.7228,714.04356 L 1412.344,714.51476 L 1410.6489,713.6002 L 1410.831,712.34939 L 1410.0787,711.34516 L 1409.5059,711.05218 L 1408.2421,710.80252 L 1407.3205,711.6755 L 1406.0983,711.66483 L 1402.5278,715.14332 L 1402.498,716.40474 L 1401.9099,716.55262 L 1399.7544,717.28408 L 1397.8933,714.01826 L 1397.8895,712.83315 L 1399.7261,709.48093 L 1400.0552,708.93324 L 1398.5027,709.31314 L 1398.0649,709.66764 L 1397.7366,709.92904 L 1397.3137,709.92858 L 1397.3736,709.28385 L 1394.0783,705.37818 L 1391.1699,703.92337 L 1389.6313,703.59917 L 1389.275,703.20624 L 1389.4144,702.58242 L 1389.8989,698.19177 L 1389.2792,698.21616 L 1387.6035,698.70352 L 1387.032,700.4892 L 1384.5704,703.49575 L 1383.4281,704.13252 L 1382.1931,703.74907 L 1382.1186,703.48316 L 1380.9206,703.60973 L 1380.288,702.51009 L 1378.3899,702.36917 L 1375.8257,700.67715 L 1375.1806,700.71142 L 1373.9839,700.22314 L 1373.2538,699.17648 L 1374.4493,695.65544 L 1371.284,695.78093 L 1371.5215,693.29717 L 1371.021,692.89368 L 1368.4686,694.53179 L 1367.839,694.63931 L 1367.5965,695.88863 L 1366.5626,696.66747 L 1363.3543,697.02639 L 1363.7084,696.49471 L 1361.8534,694.75554 L 1361.4796,693.55353 L 1361.8796,693.05307 L 1362.8028,692.25369 L 1362.8346,690.53825 L 1363.6357,689.61975 L 1363.7305,689.02383 L 1362.8326,688.33951 L 1362.332,688.70665 L 1362.9109,686.98765 L 1362.1426,683.39313 L 1361.5686,683.2379 L 1360.5416,682.64672 L 1359.6274,683.36103 L 1357.8133,683.62027 L 1357.388,682.66036 L 1356.8026,682.48859 L 1357.3122,682.30264 L 1357.4501,680.81923 L 1356.9504,680.60904 L 1359.6312,679.36549 L 1360.1293,679.03268 L 1360.6573,678.81115 L 1361.6834,678.30132 L 1365.7535,675.58062 L 1366.5882,672.8088 L 1366.0932,672.5572 L 1365.4228,671.79958 L 1365.3426,671.92037 L 1365.3866,671.38039 L 1363.947,670.71453 L 1362.4631,668.96626 L 1362.5412,666.49544 L 1361.5232,664.20957 L 1360.3143,664.2791 L 1358.1518,663.33574 L 1358.2371,660.51468 L 1357.6359,659.52291 L 1357.15,659.17334 L 1356.7194,658.68403 L 1355.4325,655.11998 L 1355.1347,654.55599 L 1354.0033,653.99852 L 1351.4626,654.56352 L 1349.2097,658.93115 L 1348.7349,658.58217 L 1346.3286,656.89023 L 1345.7535,655.88667 L 1345.814,655.28137 L 1347.826,653.94328 L 1350.2748,650.53112 L 1350.0151,649.98164 L 1349.1255,648.38907 L 1347.7227,647.08182 L 1344.516,646.70801 L 1343.4105,647.18442 L 1342.2315,646.69597 L 1341.6095,646.68858 L 1340.4775,646.19846 L 1340.2158,645.06344 L 1341.424,642.87385 L 1342.989,641.88487 L 1341.5454,640.68588 L 1340.6844,638.40562 L 1340.0769,638.61432 L 1335.6368,639.05701 L 1331.8935,638.21736 L 1331.5379,637.76598 L 1329.9052,636.14359 L 1329.4823,635.66399 L 1325.9474,637.0982 L 1322.7386,635.32804 L 1319.4919,635.3923 L 1319.1775,635.01326 L 1318.8432,634.1072 L 1318.2538,634.34894 L 1313.9521,634.61904 L 1312.076,637.02675 L 1310.9855,637.59916 L 1310.7246,638.16457 L 1309.8321,638.93154 L 1308.5885,638.64437 L 1308.5552,639.27192 L 1309.4989,641.5943 L 1311.0781,642.6295 L 1311.6496,645.07026 L 1311.2209,645.47146 L 1310.6894,645.73496 L 1308.0393,645.34855 L 1306.1441,645.99823 L 1303.4899,645.68693 L 1297.3498,647.85452 L 1296.2303,647.27442 L 1295.7037,646.89225 L 1293.4903,645.64586 L 1290.4359,646.77526 L 1287.8272,646.91664 L 1284.7457,647.83005 L 1280.3739,646.70244 L 1279.4704,648.22685 L 1278.6646,649.24371 L 1278.8062,649.86736 L 1279.0177,651.12937 L 1277.9217,653.43727 L 1277.3193,653.222 L 1275.5034,653.83148 L 1273.6297,653.45596 L 1271.9634,652.56779 L 1269.125,649.26366 L 1269.0916,648.62936 L 1269.5861,646.792 L 1269.3837,644.97604 L 1268.777,645.10832 L 1266.3471,644.86125 L 1265.5088,645.74181 L 1265.5137,646.37199 L 1266.6789,646.96158 L 1266.8665,649.47119 L 1266.1506,650.48284 L 1264.2593,650.78823 L 1264.1083,648.28412 L 1261.9663,647.15812 L 1261.3855,647.42137 L 1258.7345,650.09929 L 1258.7406,651.34638 L 1258.1642,651.22184 L 1256.2443,652.34384 L 1255.181,652.9834 L 1252.7649,652.95037 L 1252.5248,650.58454 L 1252.1548,650.09122 L 1248.5027,649.77427 L 1247.7386,652.64008 L 1246.6029,653.21302 L 1244.9957,652.21867 L 1243.9613,652.89454 L 1243.3077,652.8875 L 1241.4925,650.38406 L 1241.0298,650.70994 L 1238.9726,652.55315 L 1238.4122,652.61578 L 1237.8221,652.41463 L 1236.1247,651.65001 L 1234.3905,652.27182 L 1231.4853,651.81116 L 1231.1385,652.20245 L 1230.4782,653.00871 L 1229.9152,652.7166 L 1228.7941,653.29012 L 1227.5927,652.9116 L 1227.3838,652.77598 L 1228.4405,651.12838 L 1228.8542,647.31848 L 1229.9297,644.30943 L 1228.6085,641.37559 L 1228.4256,640.78811 L 1227.5981,639.87569 L 1226.3432,639.79407 L 1225.8716,640.21768 L 1225.6647,643.23852 L 1223.3055,644.15297 L 1223.4998,643.57599 L 1223.0634,642.76836 L 1221.8144,642.83378 L 1221.7341,642.26167 L 1220.5226,639.13344 L 1221.1219,639.18405 L 1223.4365,638.69936 L 1224.4448,639.32206 L 1224.4217,638.70643 L 1224.3722,636.86161 L 1221.558,634.46979 L 1220.9755,633.37665 L 1220.4978,633.24935 L 1219.5532,633.21889 L 1219.1712,632.71004 L 1218.2654,631.81342 L 1218.8435,631.59703 L 1218.8193,628.22966 L 1218.3691,627.80692 L 1216.3238,624.7778 L 1215.3079,624.08674 L 1215.353,623.50203 L 1216.1993,621.46297 L 1215.9692,620.8848 L 1215.6944,620.32721 L 1215.261,619.89013 L 1214.385,618.33984 L 1213.2204,617.91444 L 1212.5096,616.31468 L 1211.5533,615.54959 L 1210.9252,615.6831 L 1209.5324,616.81004 L 1207.9753,615.70737 L 1207.867,614.48185 L 1208.1594,613.931 L 1209.7317,612.03237 L 1208.5852,609.2066 L 1208.0249,608.8762 L 1204.9227,607.99073 L 1205.5873,610.91819 L 1203.5546,613.29172 L 1202.5987,612.65201 L 1202.1227,611.48965 L 1202.0235,612.09489 L 1201.7001,613.25227 L 1198.7641,614.38629 L 1198.6118,613.75883 L 1197.7237,610.66224 L 1196.5858,609.08812 L 1196.3512,608.58584 L 1195.302,606.08231 L 1194.7947,605.69592 L 1193.1568,604.7308 L 1189.4134,607.16549 L 1188.9101,606.81896 L 1187.0356,605.32835 L 1187.5946,604.9749 L 1191.3403,601.32095 L 1192.9103,598.58602 L 1192.6218,598.12428 L 1191.189,597.44891 L 1190.7691,597.80417 L 1190.3696,597.34571 L 1190.1765,596.77697 L 1193.2694,593.1811 L 1193.2574,592.5823 L 1193.0707,592.04487 L 1192.0978,590.00515 L 1191.5621,589.62509 L 1187.9629,588.11899 L 1188.5982,585.25907 L 1185.5174,583.00376 L 1185.6296,581.12747 L 1184.991,581.25931 L 1183.0769,581.36236 L 1183.0839,580.8198 L 1183.229,578.66444 L 1182.689,578.29797 L 1178.0792,573.0049 L 1176.9802,572.29894 L 1174.3431,572.3143 L 1174.103,571.83243 L 1173.8281,571.36819 L 1173.786,571.32649 L 1173.1282,571.3552 L 1171.2093,571.66118 L 1168.862,573.85739 L 1168.2341,573.70102 L 1166.6422,570.98642 L 1166.7394,568.4735 L 1167.5094,565.04542 L 1167.6443,564.4569 L 1166.9735,563.79835 L 1165.1574,563.87662 L 1166.3059,563.39508 L 1166.3655,562.7957 L 1165.788,562.55627 L 1163.988,562.07081 L 1164.4536,560.31416 L 1164.9503,559.88997 L 1165.4755,559.49693 L 1165.5903,556.94832 L 1164.4739,555.45085 L 1164.5287,554.22824 L 1162.8548,552.42417 L 1163.3086,552.03538 L 1165.3427,550.96827 L 1166.3985,550.73547 L 1167.9468,549.95191 L 1169.0991,550.16294 L 1169.132,549.54515 L 1168.0037,546.12493 L 1165.5508,543.28272 L 1165.9412,542.93103 L 1166.7203,542.22605 L 1170.6811,543.14046 L 1171.2835,543.1636 L 1174.4374,540.85709 L 1175.1078,540.82878 L 1175.4678,539.79979 L 1173.1587,535.51578 L 1173.6012,535.04672 L 1175.0769,533.93439 L 1175.6618,533.69101 L 1177.0977,531.96023 L 1179.4467,531.76683 L 1178.1894,529.57366 L 1178.6137,529.0947 L 1184.6761,526.95364 L 1184.5763,526.33562 L 1182.7029,524.59645 L 1180.1988,523.95664 L 1180.3877,522.96946 L 1181.7275,521.61297 L 1181.073,521.74995 L 1179.1194,522.07509 L 1176.5451,521.4794 L 1174.5589,523.17641 L 1171.3334,523.78153 L 1172.3091,520.74016 L 1170.2529,518.34816 L 1170.7115,517.88415 L 1170.2697,516.85891 L 1172.0325,514.96422 L 1173.8467,514.16711 L 1174.0465,512.31051 L 1174.6902,512.13693 L 1173.0427,510.49982 L 1173.4428,508.23498 L 1173.3654,507.6536 L 1173.3131,506.56789 L 1173.3514,505.96178 L 1173.3952,504.76559 L 1170.2752,504.91716 L 1169.5243,503.92896 L 1169.5886,502.71332 L 1169.4977,502.10551 L 1169.0309,501.67186 L 1166.051,502.17837 L 1164.8466,501.71395 L 1166.1301,496.5195 L 1166.7636,496.51793 L 1168.4788,497.04848 L 1170.2073,496.31538 L 1170.2592,495.71277 L 1170.0473,493.2655 L 1167.5447,493.08776 L 1165.8088,492.27092 L 1166.9703,490.28225 L 1167.5064,490.61149 L 1169.2455,491.343 L 1171.1331,491.33381 L 1173.7522,489.75855 L 1174.3377,490.00005 L 1174.7245,490.95078 L 1175.1084,491.31429 L 1175.4696,490.99218 L 1175.902,490.7648 L 1175.6552,488.87916 L 1176.4178,487.11762 L 1175.8511,484.654 L 1175.6465,484.04968 L 1175.7095,483.54905 L 1175.8494,483.06279 L 1175.5612,482.52618 L 1175.1563,481.38798 L 1176.2116,481.14463 L 1176.7687,480.90586 L 1177.9014,480.46814 L 1178.6454,476.87884 L 1180.1669,474.23277 L 1181.1369,473.03529 L 1183.5231,472.50622 L 1185.9585,472.78714 L 1186.6866,471.85123 L 1186.9536,468.75188 L 1186.9416,468.11888 L 1188.7015,467.25797 L 1189.3362,467.08992 L 1190.3334,466.71723 L 1189.4278,464.71781 L 1189.0974,464.23777 L 1190.547,463.2852 L 1192.2838,463.33824 L 1192.8583,463.17951 L 1193.252,460.17112 L 1194.9641,456.81203 L 1195.2144,456.23576 L 1197.8187,456.18014 L 1198.4212,455.93669 L 1198.8868,455.50861 L 1200.0058,454.03756 L 1198.2163,450.14292 L 1197.5639,450.06182 L 1196.498,449.39068 L 1192.1715,450.30579 L 1192.0328,450.83141 L 1188.4889,450.41404 L 1188.3027,449.85882 L 1188.5902,446.73876 L 1188.6197,446.11302 L 1189.0029,445.97088 L 1190.2494,445.52636 L 1190.6817,444.32153 L 1191.1108,443.82551 L 1194.2384,443.7259 L 1195.0555,442.72792 L 1195.1167,442.09778 L 1194.2541,441.22321 L 1193.0293,437.8578 L 1192.716,437.33852 L 1191.8716,435.76896 L 1190.3697,435.45355 L 1190.1765,434.89527 L 1191.4956,433.64655 L 1191.7003,431.91094 L 1192.6765,431.17167 L 1192.6831,429.98521 L 1192.8461,429.57687 L 1193.2689,429.28761 L 1197.1057,429.75562 L 1200.2034,428.98343 L 1200.7839,428.71347 L 1202.2724,429.3261 L 1202.5763,429.77137 L 1203.2461,430.77848 L 1204.3706,430.23009 L 1204.9819,430.07588 L 1207.237,428.59676 L 1207.8361,428.27489 L 1208.45,428.25916 L 1208.9879,427.9756 L 1209.0113,427.37944 L 1209.3006,424.4689 L 1207.9718,424.29515 L 1206.0965,424.96039 L 1203.65,423.99121 L 1202.5177,421.86902 L 1203.3269,420.88807 L 1203.4182,420.2702 L 1202.9019,420.12514 L 1202.5096,419.17706 L 1200.5433,420.62075 L 1199.8774,419.06194 L 1198.0885,418.74892 L 1197.1102,418.02836 L 1197.115,416.87316 L 1196.6886,416.44736 L 1198.5268,416.16438 L 1199.92,413.60841 L 1199.6711,413.06046 L 1199.0655,412.94062 L 1197.1661,408.89743 L 1197.8234,407.88726 L 1198.4158,407.6931 L 1197.8417,407.44404 L 1196.7133,406.01129 L 1197.64,404.52243 L 1197.2542,403.73413 L 1195.2858,402.38525 L 1195.0256,401.85534 L 1195.5585,401.51042 L 1195.858,399.70597 L 1196.1976,399.18549 L 1198.5851,398.13231 L 1198.9255,397.57744 L 1201.2233,397.1971 L 1201.9511,396.8721 L 1203.7206,396.00391 L 1204.3911,395.87364 L 1206.8037,395.71333 L 1207.4097,395.6019 L 1208.1468,394.98006 L 1208.0483,393.92841 L 1208.027,393.40059 L 1208.7092,393.2971 L 1210.145,393.3971 L 1212.1329,392.1939 L 1212.6398,391.8954 L 1212.927,392.43606 L 1214.1381,392.09725 L 1214.621,391.69981 L 1215.8742,391.34553 L 1217.8242,391.6758 L 1218.4889,391.68109 L 1219.0759,392.6134 L 1219.6303,392.91091 L 1221.9739,393.8835 L 1222.6748,392.88226 L 1222.5767,391.72037 L 1221.6645,390.8756 L 1221.4902,390.29075 L 1222.2628,389.95808 L 1222.5766,389.60378 L 1223.0074,388.63577 L 1222.7044,387.61148 L 1223.0543,387.19393 L 1224.9166,386.74161 L 1227.0023,385.36079 L 1227.5974,385.1353 L 1229.443,384.68032 L 1230.8342,382.83514 L 1231.2772,382.40321 L 1232.3333,383.6081 L 1232.5299,384.10645 L 1235.4699,387.47258 L 1235.8947,387.95738 L 1238.4517,387.61139 L 1239.1,387.67039 L 1241.83,389.7739 L 1242.2946,390.86285 L 1242.4018,391.44015 L 1243.5045,391.09595 L 1245.2823,391.14684 L 1245.5593,387.34856 L 1245.4848,386.71767 L 1245.8776,384.32644 L 1246.8609,382.78211 L 1247.0076,382.16762 L 1246.2647,379.31609 L 1245.7769,377.33271 L 1245.5457,376.84984 L 1246.7613,375.55197 L 1247.9789,375.45048 L 1248.5602,375.26859 L 1249.1616,375.50288 L 1246.1189,370.88063 L 1246.0266,369.65956 L 1246.0303,369.04678 L 1246.0441,368.44571 L 1245.9687,366.87192 L 1245.9477,366.34721 L 1245.9062,364.58174 L 1245.96,363.99464 L 1247.8892,363.91259 L 1248.4135,361.63945 L 1250.171,362.12783 L 1250.2934,361.53066 L 1250.3616,358.40218 L 1249.3384,357.63832 L 1247.3586,357.2837 L 1247.1732,356.09204 L 1248.342,355.56239 L 1250.5036,352.59416 L 1248.7198,351.88508 L 1248.4325,349.43779 L 1248.945,348.30804 L 1248.458,347.90388 L 1246.8076,347.11922 L 1244.7792,344.65968 L 1244.1196,343.59821 L 1245.675,342.61938 L 1246.1481,340.30624 L 1246.8023,340.32583 L 1247.1855,340.85131 L 1249.8346,340.666 L 1252.9344,341.90364 L 1254.7608,341.27025 L 1255.4288,341.15628 L 1255.6243,339.64574 L 1256.5906,337.98406 L 1256.7675,333.57531 L 1256.7936,332.93682 L 1259.3529,333.00163 L 1259.3672,330.914 L 1259.9045,330.66275 L 1261.0507,330.22273 L 1261.6466,330.06815 L 1263.5563,329.30647 L 1264.2331,329.15726 L 1264.1213,328.72768 L 1265.1426,326.65735 L 1265.006,326.09089 L 1266.3872,325.19994 L 1266.7515,324.79901 L 1268.683,324.20499 L 1269.3117,323.96269 L 1269.5924,323.26937 L 1269.4039,322.69002 L 1269.9622,320.35025 L 1272.0294,318.75768 L 1271.4159,316.9795 L 1269.1979,315.61199 L 1267.9015,315.93446 L 1267.6173,315.37782 L 1266.8983,314.39101 L 1267.3554,313.94781 L 1269.2508,312.45276 L 1269.5193,311.91018 L 1268.5668,309.75012 L 1267.9663,309.54616 L 1269.074,304.83547 L 1269.9145,304.06428 L 1270.3674,301.77003 L 1271.9214,300.74086 L 1272.2981,300.2468 L 1272.3659,299.67166 L 1272.4353,299.0987 L 1273.0496,292.2733 L 1273.1487,291.64815 L 1271.9599,291.96276 L 1270.7706,291.68292 L 1270.3541,290.70962 L 1268.898,290.46981 L 1268.3464,289.40306 L 1268.7555,285.60029 L 1269.8281,284.02305 L 1270.1619,282.14353 L 1270.2941,281.80162 M 1106.1948,609.96525 L 1108.1757,609.78763 L 1109.1846,611.4299 L 1109.6485,611.89079 L 1111.4916,612.3079 L 1112.6863,611.99672 L 1113.4998,613.67571 L 1114.5245,613.93893 L 1114.7454,613.35367 L 1115.9265,613.60664 L 1116.6638,614.649 L 1117.1786,615.03469 L 1117.7039,615.94378 L 1116.2621,618.6862 L 1118.6936,618.70022 L 1119.4666,622.20153 L 1119.6822,622.76913 L 1120.6043,623.16036 L 1120.5652,623.70602 L 1120.5452,626.03782 L 1120.64,626.61755 L 1121.8812,628.01326 L 1124.2415,628.82891 L 1125.6848,629.98026 L 1126.3197,629.97465 L 1125.7085,631.02808 L 1126.6057,632.61034 L 1129.4041,633.90662 L 1129.9766,634.1539 L 1129.5206,634.61657 L 1127.1818,635.7389 L 1127.7379,637.43482 L 1129.5438,638.13284 L 1129.5796,640.58881 L 1129.7871,641.5184 L 1130.2829,641.44264 L 1129.8171,642.55319 L 1130.5132,643.59282 L 1130.466,644.87355 L 1128.6067,646.54794 L 1127.5735,649.54949 L 1127.0031,649.35679 L 1125.4748,650.23702 L 1124.2157,652.04774 L 1122.5058,652.55358 L 1122.2461,653.13528 L 1121.0626,653.66386 L 1120.3581,656.06072 L 1118.1331,656.70093 L 1115.7485,657.25149 L 1116.207,658.40991 L 1115.1678,658.99498 L 1115.7073,662.68859 L 1113.6094,664.10552 L 1116.5557,665.23026 L 1117.2014,665.26203 L 1117.658,665.64585 L 1118.5341,668.39847 L 1118.133,669.56956 L 1116.0096,670.59909 L 1116.0254,671.84267 L 1116.7091,672.86505 L 1116.2113,673.94625 L 1116.7679,674.03649 L 1117.334,674.02978 L 1117.3251,674.65471 L 1117.743,676.46426 L 1117.2648,678.91423 L 1116.6317,678.89571 L 1112.8485,678.95986 L 1111.7791,679.61742 L 1111.3885,680.08803 L 1108.4962,681.12819 L 1107.5704,682.67697 L 1106.3423,682.58403 L 1106.1034,683.14298 L 1105.4662,683.2205 L 1103.2338,682.02007 L 1102.6596,682.27094 L 1101.5582,682.83723 L 1096.0919,683.41904 L 1095.7658,683.97946 L 1096.3356,685.80886 L 1095.5951,689.56103 L 1095.1028,689.99197 L 1095.4174,691.11245 L 1095.1424,691.62883 L 1096.6866,692.70953 L 1098.7826,691.2644 L 1099.5127,692.24966 L 1099.0264,694.01803 L 1099.584,694.3307 L 1100.1636,694.60623 L 1100.7262,694.91421 L 1104.6584,697.9096 L 1103.8975,700.23323 L 1105.1722,702.31013 L 1106.3102,702.19848 L 1106.8625,702.47565 L 1108.0728,704.23828 L 1108.462,704.64261 L 1106.6224,705.98079 L 1106.1751,706.33619 L 1105.9103,707.4822 L 1105.6903,708.05136 L 1107.1205,711.57888 L 1106.5259,712.71271 L 1107.3842,714.41493 L 1109.1067,715.28037 L 1109.8074,717.66769 L 1111.0678,717.98851 L 1111.2849,718.58916 L 1110.6853,718.86388 L 1109.022,720.79193 L 1108.415,720.56521 L 1103.4093,719.22012 L 1102.7868,720.38373 L 1102.3367,720.77698 L 1099.4989,721.64392 L 1098.88,721.67279 L 1097.6159,722.86664 L 1096.1141,721.95046 L 1094.6644,723.06798 L 1094.8822,723.68803 L 1098.3901,727.55009 L 1099.987,729.34422 L 1100.2805,729.8659 L 1100.5416,730.93035 L 1100.6385,731.47222 L 1101.2178,733.34827 L 1101.2416,734.00149 L 1103.8501,737.90718 L 1104.0286,738.48753 L 1104.1099,738.83358 L 1105.6364,742.8404 L 1105.5931,743.45877 L 1104.2453,745.33738 L 1104.0829,747.075 L 1104.1019,747.65913 L 1100.7172,755.22703 L 1100.4049,755.79242 L 1099.3335,757.32979 L 1099.0415,757.88879 L 1098.7044,758.43102 L 1097.8368,760.118 L 1098.2721,762.53918 L 1098.9473,764.15265 L 1100.9625,765.34438 L 1101.5319,765.53113 L 1102.7558,765.92626 L 1103.2414,766.34101 L 1103.6428,766.82922 L 1104.5531,767.70776 L 1104.9899,768.14346 L 1106.8599,770.57593 L 1110.9073,773.358 L 1111.9345,774.71675 L 1112.0726,775.80546 L 1111.9525,776.36055 L 1111.6011,780.83418 L 1113.1321,784.37714 L 1113.4764,784.92781 L 1113.7376,785.45313 L 1113.9685,785.99301 L 1116.1801,793.02022 L 1116.2733,793.62958 L 1116.6945,794.14317 L 1116.861,794.74659 L 1116.4292,797.16152 L 1117.4127,798.74772 L 1117.8337,799.2367 L 1117.9732,802.3064 L 1118.0511,802.91565 L 1118.0824,803.14625 L 1118.0647,803.79597 L 1118.2242,805.73873 L 1117.1053,808.06528 L 1116.7921,810.51251 L 1117.0702,811.08399 L 1120.6486,813.45826 L 1121.0843,813.89981 L 1121.8594,814.33789 L 1122.3049,814.28107 L 1123.4515,816.63939 L 1123.7173,817.23907 L 1123.716,819.82545 L 1123.5785,820.46236 L 1122.7214,822.05219 L 1122.5206,823.24153 L 1122.1953,826.33662 L 1123.7608,829.66135 L 1124.2947,829.9954 L 1124.1614,831.24293 L 1122.6112,833.98611 L 1122.4237,834.47798 L 1120.6108,839.33821 L 1121.6041,840.96123 L 1121.9929,841.49128 L 1122.1435,842.41239 L 1122.3041,842.85151 L 1123.0379,849.74394 L 1121.4241,851.62459 L 1121.1632,852.21109 L 1121.4603,853.09748 L 1121.6571,853.52377 L 1121.5501,854.70415 L 1119.4628,856.98227 L 1119.1991,857.54101 L 1118.3213,859.65574 L 1118.3129,860.23154 L 1118.8438,863.69636 L 1119.006,864.26891 L 1120.5251,867.03348 L 1124.3292,870.28019 L 1124.8188,870.68117 L 1126.9769,871.31729 L 1127.5017,871.5213 L 1130.5857,872.56032 L 1132.3923,875.2589 L 1132.8559,875.7209 L 1133.1418,876.08598 L 1135.4402,879.23937 L 1139.4822,881.33777 L 1140.1242,881.47478 L 1142.9713,879.41693 L 1143.8934,878.06988 L 1147.1259,876.18839 L 1148.2362,874.67609 L 1149.4851,874.60369 L 1150.0631,874.85081 L 1150.1132,874.81849 L 1151.9705,874.68457 L 1152.7851,877.06886 L 1154.5014,879.70295 L 1157.0069,880.2856 L 1158.8631,880.04106 L 1159.4184,879.70596 L 1160.6216,879.29373 L 1163.0096,875.07164 L 1163.6115,874.86573 L 1166.719,875.55755 L 1169.1997,875.35324 L 1168.6362,877.17009 L 1168.9206,878.38524 L 1170.6806,879.00526 L 1171.5646,879.90626 L 1170.8748,884.0892 L 1170.3699,884.47703 L 1171.7147,885.84688 L 1171.9208,886.46522 L 1174.2592,886.0856 L 1175.3901,886.42445 L 1175.8373,886.03604 L 1175.8588,884.80223 L 1180.1158,880.28735 L 1181.2506,879.74657 L 1181.8727,879.86953 L 1182.9436,881.34372 L 1183.9015,880.80713 L 1184.3907,880.40492 L 1185.0978,879.41865 L 1183.7123,876.57364 L 1183.588,874.1216 L 1183.5631,873.48935 L 1185.6329,874.64183 L 1186.7563,874.35327 L 1187.2649,873.39861 L 1187.7227,874.48361 L 1189.6492,872.96401 L 1187.4043,868.57785 L 1189.2363,866.1023 L 1189.7233,865.7036 L 1190.4094,868.05609 L 1193.519,868.02893 L 1193.9014,868.54365 L 1193.8317,869.15133 L 1193.0624,870.10801 L 1194.9459,873.16491 L 1194.9413,876.22057 L 1196.6494,876.81488 L 1197.0921,879.22308 L 1197.1976,879.82874 L 1199.2857,880.89719 L 1199.1096,882.69281 L 1201.8565,884.24359 L 1202.6217,885.22268 L 1202.7516,885.83855 L 1202.7834,886.38231 L 1203.2642,887.16567 L 1203.4151,887.61094 L 1204.44,889.78113 L 1204.882,890.21175 L 1205.7711,891.71163 L 1204.5342,893.91644 L 1205.3119,894.88118 L 1207.2047,895.1844 L 1207.6215,898.20322 L 1207.7689,898.82786 L 1207.9267,899.79168 L 1207.9494,900.27918 L 1208.1821,902.58389 L 1208.0216,903.15204 L 1207.1688,904.22297 L 1206.9676,905.43221 L 1208.1273,906.9322 L 1209.8915,907.55292 L 1211.7207,907.04134 L 1212.6915,908.44958 L 1213.0398,908.97761 L 1214.7818,909.16436 L 1216.4257,910.61839 L 1216.9725,910.39984 L 1220.1699,908.38342 L 1221.3426,909.77333 L 1220.5643,910.79027 L 1221.1855,911.77142 L 1221.284,911.798 L 1222.4632,911.36318 L 1223.5622,911.84683 L 1223.1304,914.97671 L 1223.7441,916.05664 L 1226.6176,917.38986 L 1227.8034,917.44621 L 1227.9872,916.83272 L 1228.5129,915.67639 L 1229.5918,914.98862 L 1230.2271,914.87791 L 1232.4619,915.81988 L 1234.9068,915.66407 L 1235.4741,915.90612 L 1234.7553,918.05378 L 1235.8029,918.24978 L 1236.3827,918.1877 L 1237.5475,917.90082 L 1240.9146,921.11143 L 1240.9893,921.70729 L 1240.4793,922.83682 L 1241.1526,925.03837 L 1239.4471,925.69509 L 1240.2166,927.24179 L 1240.2004,927.86188 L 1239.7445,928.2308 L 1238.7829,928.85557 L 1238.8497,929.43808 L 1239.1189,929.94895 L 1239.2735,931.05317 L 1237.9556,932.84245 L 1238.3717,934.58242 L 1238.4994,935.16603 L 1239.7245,937.8611 L 1239.3145,940.86085 L 1239.1982,941.45926 L 1239.2252,942.05212 L 1238.9788,945.49473 L 1240.0793,945.68247 L 1241.4592,945.72815 L 1238.9787,947.5402 L 1237.2177,946.9489 L 1234.1691,947.2611 L 1234.1945,949.71537 L 1234.1954,950.06921 L 1232.1421,951.43105 L 1228.3903,951.9924 L 1227.2053,953.50918 L 1228.0813,955.14595 L 1228.6177,955.49403 L 1228.9796,957.36086 L 1229.2489,957.94226 L 1229.0779,961.00146 L 1227.8095,962.23672 L 1227.8003,964.10768 L 1226.8911,966.37877 L 1228.8354,967.34237 L 1229.3357,967.57951 L 1230.305,968.31817 L 1232.721,967.8949 L 1235.7723,968.40529 L 1236.3855,968.50524 L 1237.3231,969.07775 L 1237.1882,970.91813 L 1238.3637,972.33994 L 1238.9042,974.09411 L 1239.3422,974.54112 L 1243.0926,974.14369 L 1244.2891,974.59736 L 1244.7347,974.15441 L 1246.6173,972.82755 L 1247.1297,972.56079 L 1247.965,971.61452 L 1248.382,971.14 L 1249.3132,971.43868 L 1250.7451,970.74627 L 1251.2862,970.66963 L 1253.3771,969.55768 L 1253.932,969.31344 L 1257.6053,972.5602 L 1257.6733,973.17564 L 1257.7306,973.17694 L 1258.3311,973.29625 L 1258.9299,973.41851 L 1263.3346,973.84041 L 1264.4242,973.30157 L 1264.1839,972.70999 L 1264.043,971.44926 L 1264.1953,970.83404 L 1264.7397,971.10693 L 1266.8868,970.03568 L 1268.1064,971.3649 L 1268.576,971.75308 L 1269.0577,972.65195 L 1269.2646,973.11924 L 1269.4644,972.98417 L 1270.0557,972.74171 L 1271.2792,971.42508 L 1273.0625,971.38138 L 1273.4593,971.85524 L 1273.9356,973.56876 L 1272.8598,975.00057 L 1272.2589,975.0435 L 1272.8323,976.74286 L 1275.9143,976.96365 L 1276.5314,976.92646 L 1277.5254,974.64026 L 1278.5291,973.95598 L 1279.1187,973.72406 L 1279.9152,973.97931 L 1280.2516,974.29556 L 1280.8325,974.27566 L 1282.0951,972.37375 L 1282.126,971.79191 L 1283.1723,972.36829 L 1284.6572,971.35784 L 1286.1607,972.19645 L 1287.1475,971.69366 L 1287.7147,971.89452 L 1288.0548,971.36006 L 1286.7715,969.29076 L 1288.2173,967.28901 L 1289.9435,966.63456 L 1289.9,965.40885 L 1289.6654,964.33286 L 1290.3323,962.16782 L 1289.9128,961.07069 L 1289.5823,960.58622 L 1289.9272,960.26605 L 1290.5192,957.26773 L 1291.0092,956.86269 L 1290.9608,955.89032 L 1290.949,955.39624 L 1291.2521,953.60848 L 1292.3078,952.06772 L 1292.1447,951.46084 L 1292.7523,951.59228 L 1294.4951,951.4163 L 1294.831,950.22371 L 1296.1826,951.42019 L 1296.4018,952.01022 L 1298.1468,951.39051 L 1299.2784,951.83441 L 1300.9525,953.59336 L 1302.0105,953.10542 L 1302.6032,952.93567 L 1304.2511,956.21371 L 1304.5682,956.75084 L 1309.421,955.86728 L 1309.9402,955.50988 L 1310.1473,953.807 L 1311.079,952.3389 L 1311.3823,951.83886 L 1312.9546,952.01519 L 1313.1934,952.5734 L 1313.2642,954.93911 L 1314.523,956.18638 L 1315.011,956.52645 L 1318.5462,956.88531 L 1319.0649,957.17839 L 1319.2677,954.77152 L 1318.8695,954.28406 L 1321.2444,952.21844 L 1321.1829,950.94589 L 1321.6172,950.47963 L 1323.4474,950.15983 L 1324.8762,951.35948 L 1326.8071,949.9139 L 1328.5405,950.31479 L 1328.4789,951.27096 L 1328.5964,951.74034 L 1329.7821,953.51284 L 1330.3167,953.53705 L 1330.385,955.69881 L 1330.3086,956.26919 L 1329.4584,956.68812 L 1328.6199,955.95013 L 1327.4185,956.96921 L 1326.9114,956.73513 L 1326.9954,958.54834 L 1328.2163,959.94954 L 1330.0526,959.70856 L 1330.4958,960.14335 L 1331.9889,960.93269 L 1333.9481,962.95633 L 1333.5487,963.99762 L 1331.9034,963.81575 L 1333.3907,966.61012 L 1333.8858,966.88865 L 1332.0927,969.00513 L 1332.0891,969.60749 L 1331.9465,970.20399 L 1332.4544,971.8985 L 1333.5613,973.08955 L 1336.9102,973.85603 L 1337.3665,973.47344 L 1338.4287,973.48156 L 1338.9239,973.2173 L 1339.52,973.29351 L 1339.5193,972.67947 L 1339.6335,970.84922 L 1341.0535,968.85259 L 1341.1056,967.65564 L 1341.3011,965.91024 L 1341.4567,965.34557 L 1341.7524,964.53984 L 1342.1181,963.60494 L 1343.0594,962.0592 L 1343.3908,959.65965 L 1343.3935,959.0523 L 1343.4091,958.49969 L 1344.1111,957.06828 L 1345.1564,955.69063 L 1345.3559,955.14697 L 1346.03,951.44981 L 1346.1903,950.84436 L 1347.2402,948.58122 L 1348.5317,945.97196 L 1348.7509,945.39146 L 1348.6871,942.91502 L 1348.6542,942.29679 L 1348.4663,941.0726 L 1349.4304,938.30003 L 1350.0123,937.34253 L 1350.3364,936.88544 L 1350.5984,936.46422 L 1351.3783,935.19859 L 1353.0967,931.95371 L 1353.2936,929.84652 L 1353.4044,929.32152 L 1353.5462,928.05376 L 1353.6065,927.41847 L 1353.6049,926.91303 L 1353.6407,925.40148 L 1353.7784,924.66664 L 1353.9763,924.15451 L 1356.2598,921.60328 L 1356.5075,921.08462 L 1356.5793,918.35093 L 1356.5165,917.80068 L 1356.5159,917.57018 L 1358.1815,914.31594 L 1358.3282,913.87299 L 1358.4257,913.41855 L 1358.6945,912.37365 L 1358.93,911.88771 L 1359.0755,911.72789 L 1360.6581,911.5201 L 1360.6726,912.62193 L 1361.3595,913.34602 L 1362.6062,912.96607 L 1363.5401,911.58642 L 1364.8289,911.3843 L 1368.1376,912.38982 L 1368.6725,912.13963 L 1368.9073,913.62104 L 1369.1341,914.0813 L 1373.7736,916.67852 L 1374.2607,917.03941 L 1375.8371,916.76635 L 1376.3732,916.75862 L 1379.387,914.53419 L 1381.6079,915.45189 L 1383.6654,913.99682 L 1384.2924,913.90053 L 1385.1946,912.61224 L 1388.1208,913.32109 L 1388.3175,910.93264 L 1390.321,912.34006 L 1392.7948,912.73433 L 1393.0914,913.2868 L 1392.6855,913.69515 L 1393.8411,915.60762 L 1393.4863,916.69285 L 1394.2882,917.5404 L 1394.5738,919.329 L 1394.5461,919.95018 L 1395.7527,920.00278 L 1396.8549,921.40987 L 1397.2281,921.88463 L 1398.1908,921.39493 L 1398.7143,921.59374 L 1399.7595,922.96449 L 1401.4524,923.26768 L 1401.9621,923.56677 L 1406.6304,923.89843 M 1636.9042,730.7305 L 1637.6959,729.77589 L 1638.4011,726.70832 L 1638.0119,726.25322 L 1637.8592,725.67898 L 1637.7052,725.12575 L 1637.216,724.11593 L 1637.0599,723.91708 L 1636.6111,723.63483 L 1635.4223,722.6328 L 1634.8438,722.511 L 1633.8513,721.8966 L 1634.029,721.47375 L 1634.0177,720.57164 L 1634.1098,719.98223 L 1633.3657,718.37411 L 1632.3506,717.84424 L 1632.1638,717.21356 L 1631.6387,716.00585 L 1631.3339,715.75711 L 1631.3934,715.25638 L 1631.2151,714.26698 L 1630.3313,713.57224 L 1629.8733,713.20723 L 1629.8398,713.20526 L 1625.6514,713.03008 L 1623.6229,714.3894 L 1623.4939,714.98496 L 1622.8872,715.12093 L 1622.5962,714.61292 L 1622.6177,713.57113 L 1621.5773,713.10846 L 1621.4752,712.29182 L 1621.8332,711.95343 L 1621.3789,711.63204 L 1621.1924,709.46095 L 1621.3724,709.05123 L 1621.288,708.16478 L 1621.7428,707.48268 L 1622.1229,707.55587 L 1622.508,704.75893 L 1622.5844,704.1949 L 1622.9166,703.72816 L 1624.7742,703.95187 L 1625.3766,703.78111 L 1625.187,703.2213 L 1624.87,702.08557 L 1626.1414,700.12658 L 1625.6831,699.75372 L 1625.1735,699.25432 L 1625.952,698.31446 L 1625.3005,696.91365 L 1625.0106,696.13051 L 1625.3016,696.06529 L 1624.9332,695.62837 L 1623.8998,693.72605 L 1624.1274,693.12289 L 1625.1454,690.76671 L 1624.8649,690.3005 L 1624.4709,689.91995 L 1624.1323,689.51794 L 1623.0172,688.41 L 1622.7899,687.86953 L 1622.4083,686.75988 L 1621.8891,687.09551 L 1620.2118,686.32767 L 1619.5815,686.1594 L 1617.1897,685.29481 L 1612.6252,681.75599 L 1610.7247,681.89478 L 1610.5863,681.52443 L 1610.1573,681.17548 L 1608.7115,680.49532 L 1608.0211,680.72803 L 1606.7057,680.38177 L 1606.1669,680.08444 L 1603.3235,679.23565 L 1602.9736,678.71682 L 1600.5398,673.91989 L 1600.9461,672.22432 L 1606.6403,670.2888 L 1607.2624,670.38984 L 1607.3889,670.05761 L 1608.6681,667.99978 L 1609.903,667.71556 L 1610.2931,667.22372 L 1610.1385,666.75362 L 1610.1495,665.80695 L 1609.6483,665.43748 L 1608.7739,664.59386 L 1608.66,663.3831 L 1608.6644,661.55633 L 1607.4686,660.18543 L 1609.5739,658.79562 L 1610.0928,658.4229 L 1610.8906,657.05153 L 1611.0866,655.31471 L 1609.3201,654.77138 L 1610.8885,652.80264 L 1610.5816,649.1329 L 1610.7719,648.5358 L 1610.991,647.29619 L 1611.6854,645.11984 L 1612.9518,643.90686 L 1613.2947,643.43214 L 1613.0952,642.91487 L 1613.2024,641.30997 L 1613.2661,640.0863 L 1614.3231,639.40351 L 1615.5296,639.76068 L 1617.4396,638.15335 L 1618.0755,638.12062 L 1619.0653,636.51353 L 1620.736,635.59155 L 1621.4737,634.5616 L 1622.4389,633.04234 L 1621.6446,631.99979 L 1622.7674,629.77466 L 1623.3685,629.5127 L 1623.504,628.25053 L 1624.7585,626.05613 L 1626.9477,624.73693 L 1629.0681,620.95432 L 1629.3202,620.37759 L 1630.1179,620.00407 L 1631.0916,616.8684 L 1631.0611,616.21241 L 1629.0916,615.93098 L 1627.8848,614.38954 L 1630.3362,609.84884 L 1630.226,608.58544 L 1630.805,607.88288 L 1630.9567,607.39258 L 1631.4191,606.24005 L 1633.4083,604.74704 L 1633.8604,604.30902 L 1634.1206,603.72298 L 1633.7692,603.18342 L 1635.1385,601.96405 L 1636.4578,598.67934 L 1637.3133,595.99673 L 1637.1969,595.43633 L 1639.2317,591.50061 L 1639.8689,591.33239 L 1640.3731,590.91911 L 1640.4683,590.76825 L 1640.7375,590.2142 L 1640.83,589.05497 L 1642.4594,587.20774 L 1642.2322,585.43976 L 1642.7128,585.14049 L 1644.9114,584.60916 L 1645.5026,583.06456 L 1645.3015,582.47103 L 1644.4913,580.79509 L 1643.3099,580.31949 L 1643.0879,579.73316 L 1643.6305,577.95811 L 1641.8639,577.24365 L 1641.4855,577.78625 L 1639.1291,578.89553 L 1638.737,579.0964 L 1638.2941,579.12463 L 1637.6782,579.05208 L 1635.2312,578.73692 L 1633.8216,576.91314 L 1633.2509,576.74484 L 1630.0239,575.36391 L 1631.2513,573.98086 L 1631.5977,573.44922 L 1633.1695,571.49346 L 1633.9064,571.06872 L 1634.1182,570.52766 L 1633.5322,568.889 L 1632.1728,567.75872 L 1631.6294,567.4734 L 1631.1648,567.07901 L 1631.4506,566.50597 L 1632.5349,565.78674 L 1632.2335,564.64744 L 1632.7003,562.40141 L 1632.52,561.83926 L 1633.7394,559.90914 L 1634.2526,559.59651 L 1634.09,559.32345 L 1633.8522,558.64065 L 1633.6078,556.78667 L 1635.1936,553.28202 L 1635.4461,551.38136 L 1634.8424,551.08727 L 1632.2632,550.36363 L 1632.2712,549.80245 L 1631.9273,548.24242 L 1632.3384,547.26988 L 1632.5962,547.83334 L 1636.3076,548.47836 L 1635.9966,545.91867 L 1633.5461,545.17761 L 1630.9714,545.55654 L 1630.6138,546.08589 L 1630.3896,545.75172 L 1630.1689,545.4161 L 1629.1009,544.28697 L 1628.6854,543.95989 L 1630.4531,541.74325 L 1632.0152,542.95539 L 1635.0479,541.67302 L 1637.8668,543.22 L 1639.734,542.83895 L 1640.9972,543.26259 L 1641.6584,543.35763 L 1641.7333,543.15617 L 1642.0256,542.66266 L 1644.0871,541.5874 L 1644.3944,541.08183 L 1644.8649,539.39837 L 1645.8912,538.76589 L 1647.1741,538.86365 L 1648.2854,538.40449 L 1650.9364,534.91947 L 1652.4977,532.6313 L 1652.8411,532.18726 L 1653.4158,531.93686 L 1653.9616,531.63053 L 1653.0244,530.74893 L 1655.3338,525.66971 L 1654.8805,524.01008 L 1657.1769,521.77673 L 1658.9239,519.10533 L 1658.3165,519.10462 L 1654.7246,518.70847 L 1654.1061,518.72068 L 1653.5264,517.04039 L 1652.9626,516.79409 L 1651.4356,513.72308 L 1651.0675,513.27119 L 1653.5749,512.23074 L 1653.9098,511.74341 L 1654.3675,509.23115 L 1656.6189,506.06252 L 1657.3631,502.28001 L 1659.7666,500.1079 L 1660.0618,499.53121 L 1659.4343,499.47658 L 1657.1957,496.04575 L 1657.2351,495.57874 L 1657.222,494.65399 L 1655.1121,493.45805 L 1654.5953,493.08148 L 1653.8266,493.70059 L 1653.4196,493.98732 L 1653.0414,492.78564 L 1651.9471,492.11088 L 1651.4439,491.70532 L 1653.0908,490.32648 L 1653.6222,490.14419 L 1653.3273,489.82846 L 1653.0719,489.4838 L 1652.6116,489.89945 L 1651.454,490.36703 L 1649.1352,488.33009 L 1647.9656,488.39896 L 1648.1788,488.9666 L 1648.2498,490.0495 L 1647.7526,489.73509 L 1647.2345,488.7591 L 1646.1535,488.60946 L 1645.5426,488.44834 L 1644.1853,487.21037 L 1645.0199,486.37198 L 1643.8093,484.32778 L 1643.2943,484.57574 L 1642.3674,485.85512 L 1639.2472,485.38403 L 1638.3934,487.03849 L 1639.0623,489.47193 L 1638.1025,490.33966 L 1636.8283,490.67702 L 1635.9951,491.64272 L 1636.0149,492.84945 L 1636.4264,493.34438 L 1635.8502,493.59077 L 1635.2356,493.73453 L 1634.1418,493.92953 L 1633.6425,494.18874 L 1633.0151,494.34176 L 1631.2359,495.07224 L 1630.4396,496.04705 L 1629.9185,495.72555 L 1628.8623,493.66237 L 1629.3383,493.30608 L 1631.5407,492.4105 L 1631.1725,491.36171 L 1630.6484,491.05811 L 1627.0469,490.82633 L 1626.7077,490.29642 L 1626.3734,489.76503 L 1626.6991,489.25199 L 1627.284,486.95226 L 1627.1057,486.46781 L 1627,484.96501 L 1627.6395,484.86993 L 1630.749,484.83631 L 1631.1912,484.85851 L 1631.5956,484.6892 L 1632.1119,484.41602 L 1632.9097,483.62402 L 1632.325,482.03909 L 1631.6919,482.00089 L 1630.4406,481.85463 L 1626.8074,482.76238 L 1627.3718,481.6668 L 1623.7716,478.96154 L 1618.8899,476.831 L 1618.2214,476.79821 L 1616.9082,476.94174 L 1615.0279,476.31075 L 1615.7906,473.91999 L 1614.7268,471.58519 L 1613.0012,470.75274 L 1613.3753,468.88696 L 1613.6766,468.91201 L 1613.8629,469.50853 L 1615.4583,470.57419 L 1616.0862,470.40196 L 1617.6094,469.25595 L 1618.106,467.58171 L 1618.6877,466.681 L 1618.6999,466.14992 L 1618.8691,465.60298 L 1618.9606,464.4919 L 1619.4925,464.22887 L 1622.6987,464.68853 L 1623.164,464.82692 L 1623.6231,464.98306 L 1624.056,465.00273 L 1624.4886,465.00083 L 1623.9407,462.54468 L 1625.3036,461.23106 L 1624.6731,458.81778 L 1626.34,456.97991 L 1627.0643,455.40929 L 1626.4745,454.05391 L 1627.3599,451.36312 L 1627.7304,450.90028 L 1630.3645,447.75348 L 1629.773,446.94415 L 1629.5641,446.49425 L 1629.0912,445.37071 L 1629.399,444.2063 L 1629.8704,443.77398 L 1631.6881,444.09067 L 1632.9824,442.71966 L 1635.2525,444.74397 L 1634.8169,445.12875 L 1633.3023,445.76901 L 1633.925,448.06868 L 1633.8692,448.67133 L 1635.1676,449.69139 L 1635.5296,450.15686 L 1635.1369,451.2784 L 1635.9716,452.1203 L 1635.8952,452.71681 L 1636.883,455.97464 L 1640.7444,456.00557 L 1640.8612,456.60991 L 1641.8364,456.04126 L 1642.3774,455.84572 L 1643.6668,457.61382 L 1643.9745,458.10297 L 1645.1935,458.1022 L 1646.6002,460.07887 L 1646.8983,460.60508 L 1647.5222,460.40812 L 1650.5448,459.21225 L 1657.6054,461.97066 L 1657.1628,462.98167 L 1657.152,464.42339 L 1657.1332,464.91629 L 1659.0657,464.89255 L 1659.19,465.49289 L 1661.2425,466.96713 L 1661.7707,467.31857 L 1662.619,466.42959 L 1663.86,466.39437 L 1664.8028,465.59711 L 1665.3491,465.29438 L 1666.4593,465.14791 L 1666.9922,465.45871 L 1667.9521,465.84835 L 1668.4857,465.88918 L 1670.0548,465.61141 L 1671.5987,464.60769 L 1677.0336,463.1726 L 1677.5614,462.82155 L 1677.8169,463.38733 L 1680.8966,464.00556 L 1682.0384,466.09603 L 1684.746,467.27185 L 1685.3503,467.34271 L 1687.1936,467.58213 L 1688.2851,469.102 L 1690.8538,468.63186 L 1690.4553,467.49976 L 1693.7957,463.98433 L 1694.2543,463.17329 L 1693.9887,462.58979 L 1694.6156,460.78818 L 1695.3649,459.7356 L 1695.2164,459.13978 L 1694.9077,458.60459 L 1697.3731,455.05906 L 1697.2062,453.32224 L 1697.6823,452.93921 L 1698.6018,451.40689 L 1699.6555,450.79735 L 1699.9222,450.23797 L 1701.3073,448.16399 L 1700.7999,447.05786 M 1600.9461,672.22432 L 1600.3956,671.88698 L 1598.081,674.03337 L 1597.6925,673.53057 L 1594.0836,670.90404 L 1593.7101,670.05152 L 1593.9775,669.50123 L 1593.922,668.33185 L 1593.1984,667.3546 L 1587.2795,665.07318 L 1587.1683,664.44611 L 1586.9086,664.54726 L 1586.3382,664.26912 L 1583.7282,662.55432 L 1582.9141,661.53018 L 1582.337,661.37217 L 1581.3508,660.72101 L 1581.1052,660.45393 L 1580.783,660.27879 L 1580.3074,659.88405 L 1578.5663,659.35915 L 1575.5156,657.38564 L 1574.8381,656.29374 L 1574.9677,655.01919 L 1573.5007,652.97784 L 1571.3769,651.54107 L 1571.1165,651.0167 L 1570.5524,650.00033 L 1569.9527,650.01646 L 1569.3347,650.21117 L 1565.836,651.82274 L 1564.5119,653.93085 L 1564.2153,654.4803 L 1562.4578,657.66955 L 1561.8298,657.71759 L 1557.577,658.81665 L 1554.3907,660.79387 L 1554.0801,660.24269 L 1551.7063,656.69906 L 1552.1986,654.92905 L 1550.6377,653.97831 L 1548.5257,650.11973 L 1545.5516,650.23292 L 1545.4138,649.63806 L 1545.0571,648.4708 L 1543.0119,647.15596 L 1541.7908,647.40449 L 1540.0576,646.68898 L 1539.5518,647.11172 L 1534.6756,648.97306 L 1532.6947,648.84451 L 1530.9259,647.95592 L 1528.9648,648.29165 L 1528.5476,648.68481 L 1527.1457,649.69344 L 1526.7608,650.01743 L 1525.6038,650.98544 L 1525.0138,650.92067 L 1523.9856,652.12579 L 1523.4062,651.98751 L 1521.6604,651.60864 L 1521.0043,652.57518 L 1520.363,652.45223 L 1519.7505,652.22681 L 1520.2083,650.3882 L 1520.072,649.76765 L 1516.909,647.71979 L 1516.5534,648.14747 L 1515.5144,648.50652 L 1514.2756,647.47148 L 1514.2175,646.9402 L 1513.5176,646.34897 L 1512.957,646.16133 L 1512.8,645.60548 L 1514.2814,644.82082 L 1514.616,644.30645 L 1514.0083,641.43581 L 1513.2139,640.55534 L 1513.1751,640.04308 L 1513.619,638.57392 L 1513.1578,638.11587 L 1510.4985,635.4389 L 1509.9889,635.77893 L 1508.3346,636.53969 L 1507.693,637.56352 L 1507.1082,637.37347 L 1504.6967,637.38308 L 1504.1034,637.50235 L 1503.0092,637.0007 L 1502.483,637.37652 L 1498.1232,640.06932 L 1496.5248,642.6898 L 1496.7311,643.89973 L 1495.0703,645.69273 L 1494.988,646.90733 L 1494.1581,647.874 L 1493.512,647.69476 L 1490.1739,647.66959 L 1490.13,648.27002 L 1489.9359,649.46184 L 1489.3921,649.69906 L 1488.3103,651.06153 L 1487.2444,651.51439 L 1486.598,651.49213 L 1485.3473,651.19444 L 1485.9705,648.87285 L 1486.4735,648.56431 L 1488.7713,645.96036 L 1488.5515,645.40557 L 1487.5813,644.68723 L 1487.2313,643.55374 L 1486.6638,643.53502 L 1484.683,644.52697 L 1483.916,645.14311 L 1483.6428,645.72218 L 1483.5007,649.47113 L 1482.8411,649.58188 L 1482.1721,649.60156 L 1480.6682,650.65824 L 1480.8215,652.34588 L 1479.2841,653.36818 L 1479.2791,652.78022 L 1476.7231,649.74133 L 1475.698,649.28675 L 1474.8799,646.3604 L 1475.4266,646.05488 L 1475.3835,645.70253 L 1475.3403,645.3515 L 1474.7222,645.40202 L 1474.363,644.28839 L 1473.612,645.67987 L 1473.5912,646.27968 L 1472.2946,647.51938 L 1470.498,647.72186 L 1469.23,649.54082 L 1468.8746,649.03996 L 1467.097,648.4948 L 1465.841,643.86494 L 1466.3428,643.49466 L 1467.7529,641.54298 L 1467.9202,640.99866 L 1466.845,639.1091 L 1466.9582,638.48675 L 1465.5796,635.74658 L 1465.5606,635.22724 L 1465.6299,633.69123 L 1464.617,634.35101 L 1464.0368,634.07459 L 1461.0719,630.87987 L 1458.6415,631.56624 L 1458.5197,630.33006 L 1458.6018,630.20181 L 1457.6004,628.57329 L 1455.9452,627.50864 L 1455.4389,625.65895 L 1454.9077,626.02707 L 1450.7375,624.54195 L 1450.2864,624.98764 L 1450.3129,626.79271 L 1447.4151,624.413 L 1448.2009,622.05178 L 1449.0553,621.09407 L 1449.5055,620.63348 L 1450.678,620.4559 L 1452.3803,619.82948 L 1452.0762,619.31828 L 1450.4114,617.7985 L 1451.0455,616.87131 L 1451.1662,616.2903 L 1451.7049,616.03273 L 1452.9618,614.91558 L 1452.8857,613.81957 L 1453.7479,613.28885 L 1454.1176,612.23916 L 1453.9126,610.90575 L 1454.0199,610.36209 L 1454.224,609.2842 L 1453.6685,607.75202 L 1453.4012,607.16827 L 1455.881,605.15724 L 1459.8291,605.1518 L 1459.8527,604.6228 L 1459.7123,603.57507 L 1459.3146,603.17515 L 1459.0099,602.70637 L 1458.7304,602.17956 L 1457.2818,599.62254 L 1456.7374,599.256 L 1454.3636,597.01667 L 1453.8149,597.24262 L 1452.9157,597.96112 L 1452.3897,597.59721 L 1448.4304,595.5216 L 1449.5143,593.2632 L 1449.7825,592.66683 L 1450.0648,590.73631 L 1449.5265,590.41321 L 1444.7293,586.47679 L 1444.3937,587.01792 L 1441.7908,589.779 L 1441.7523,589.12725 L 1434.8419,580.38839 L 1434.5446,579.8289 L 1433.5143,577.57195 L 1433.9577,576.41106 L 1433.4057,576.08835 L 1431.496,575.80659 L 1430.5234,575.00366 L 1427.3736,575.00047 L 1427.113,575.55504 L 1425.526,575.93005 L 1423.4939,578.24502 L 1421.2428,579.29982 L 1421.0562,578.72356 L 1420.1183,577.18543 L 1420.7773,575.51565 L 1420.2956,573.87992 L 1420.6365,573.39588 L 1423.3727,570.46212 L 1422.808,570.19071 L 1419.0655,569.79722 L 1417.1664,568.23516 L 1417.6647,568.04651 L 1419.1845,568.04273 L 1423.9122,563.95184 L 1426.1957,563.03551 L 1426.8115,562.86496 L 1426.5982,562.35985 L 1426.1282,562.05537 L 1424.9695,562.57379 L 1423.7604,562.14926 L 1423.5401,561.56496 L 1422.9355,560.45273 L 1421.6279,560.38175 L 1419.1338,558.35434 L 1418.4334,556.59381 L 1418.7127,554.73352 L 1418.4058,554.2827 L 1418.0918,553.83655 L 1417.7024,553.30697 L 1415.0768,553.54135 L 1414.0716,552.69288 L 1413.9837,552.74721 L 1413.339,552.56043 L 1411.5535,551.69818 L 1411.2351,551.13693 L 1408.7747,546.75749 L 1407.4462,546.77646 L 1406,545.52107 L 1405.628,546.00954 L 1404.7523,546.88105 L 1404.3242,546.70107 L 1403.9201,546.47917 L 1403.7029,545.89717 L 1401.8312,545.78543 L 1396.3233,542.7761 L 1395.4158,543.56169 L 1394.8073,543.33628 L 1394.1895,543.13852 L 1394.0998,542.5678 L 1393.5352,541.55107 L 1391.971,540.98651 L 1392.2621,539.86799 L 1391.71,539.55424 L 1389.1934,537.95151 L 1388.2191,536.4539 L 1387.6225,536.67679 L 1386.5917,537.37005 L 1385.4925,536.85856 L 1385.1191,536.39011 L 1384.3453,535.47697 L 1383.9414,535.12908 L 1383.4093,533.75565 L 1382.9511,533.38308 L 1382.2473,532.51366 L 1382.4458,530.90008 L 1381.8445,531.1067 L 1379.3128,531.40284 L 1376.2254,530.86186 L 1376.0103,530.26251 L 1374.8462,527.3386 L 1374.5011,524.20366 L 1373.8871,524.08775 L 1371.5564,527.59835 L 1370.9975,527.77901 L 1368.1409,528.03433 L 1366.8587,526.67843 L 1367.8607,523.78806 L 1366.6578,521.67325 L 1366.5409,520.01642 L 1366.4215,519.4599 L 1366.8411,519.05751 L 1368.7289,517.71073 L 1368.3767,517.22556 L 1368.2706,515.47369 L 1367.7419,515.11291 L 1365.867,514.67685 L 1366.1498,513.52495 L 1367.7476,512.52898 L 1368.1399,512.03843 L 1367.2379,509.92854 L 1368.9366,510.51991 L 1369.356,510.08786 L 1368.1113,507.90587 L 1368.497,504.25891 L 1366.0116,504.13894 L 1364.9715,503.48209 L 1364.8779,502.95935 L 1364.6661,502.37197 L 1361.488,499.35766 L 1360.9088,498.92809 L 1359.2901,495.81289 L 1359.0267,495.26186 L 1358.3956,495.18275 L 1357.8152,494.93423 L 1357.2673,495.19003 L 1354.4285,494.24628 L 1353.8377,494.09618 L 1353.782,493.96289 L 1353.4144,493.47456 L 1354.2162,491.88961 L 1353.4605,490.95983 L 1353.2541,490.39263 L 1354.7032,489.02993 L 1355.0464,488.46669 L 1358.5966,486.33475 L 1359.167,486.13402 L 1359.4067,484.7421 L 1358.2941,484.20874 L 1357.6172,482.03975 L 1356.2269,480.83684 L 1356.3339,480.23996 L 1357.1486,479.2245 L 1357.6508,476.71928 L 1357.2191,476.22886 L 1356.3959,475.67703 L 1356.6753,475.28109 L 1356.8346,474.66447 L 1358.745,472.93197 L 1359.259,471.20341 L 1360.9496,469.71104 L 1361.52,469.5992 L 1361.9211,470.125 L 1363.9555,469.97273 L 1366.9461,468.47851 L 1368.9563,468.53201 L 1369.2134,467.47637 L 1369.1194,466.91585 L 1370.8386,465.70718 L 1371.2465,465.3176 L 1372.1081,461.69674 L 1371.1197,460.87187 L 1367.3859,459.9993 L 1366.7507,460.17123 L 1368.5042,458.21986 L 1371.2034,457.87849 L 1371.3261,456.72976 L 1371.8409,453.20132 L 1371.7935,452.83801 L 1371.4962,452.25607 L 1368.5962,450.62119 L 1363.1179,453.12244 L 1362.9563,453.0433 L 1363.3103,452.5251 L 1367.3758,447.72237 L 1368.0566,446.01468 L 1367.8192,444.95288 L 1366.9059,440.70287 L 1367.0473,440.08902 L 1366.8664,437.487 L 1365.8099,435.08548 L 1365.3966,434.56275 L 1364.882,433.83256 L 1364.6121,433.47376 L 1364.3748,433.07488 L 1364.1485,432.66994 L 1362.942,429.31523 L 1362.8536,428.72549 L 1361.5592,426.2184 L 1361.3752,425.68318 L 1359.9491,423.34978 L 1360.0392,422.80841 L 1361.5059,421.47028 L 1364.6123,420.30612 L 1366.1318,419.03114 L 1366.2999,418.40685 L 1365.9334,417.92327 L 1364.493,416.77586 L 1364.2383,416.22194 L 1363.6384,413.88812 L 1361.1281,413.64621 L 1362.3015,413.08136 L 1363.2846,411.4652 L 1366.8563,409.78701 L 1367.3175,409.33325 L 1367.1613,408.74628 L 1368.1678,408.01248 L 1368.726,407.71824 L 1370.5952,407.0304 L 1371.8853,407.3632 L 1373.806,406.84543 L 1373.6195,405.14276 L 1374.3477,404.29853 L 1374.8464,403.97621 L 1374.4968,403.31375 L 1373.8435,403.15924 L 1372.6112,402.70479 L 1371.2263,400.60491 L 1372.1565,399.13747 L 1371.4266,397.72453 L 1371.049,397.33929 L 1370.936,396.18312 L 1370.7592,395.5874 L 1374.3913,391.23082 L 1374.1711,390.01047 L 1374.9478,389.02159 L 1377.945,389.22034 L 1378.5437,389.36668 L 1380.0602,387.38016 L 1379.8823,386.77918 L 1380.5085,385.68217 L 1377.9275,382.97155 L 1380.5232,381.13582 L 1381.1635,380.98301 L 1381.8836,380.0485 L 1380.9665,379.30127 L 1380.7622,378.7471 L 1380.0952,376.34479 L 1381.2317,373.52567 L 1380.3478,372.80742 L 1380.0673,372.60928 L 1379.4524,372.76807 L 1377.8258,370.94429 L 1377.8315,370.31495 L 1378.0259,369.07856 L 1377.4403,368.01885 L 1376.7599,367.96034 L 1374.918,365.30806 L 1374.905,364.66498 L 1375.2449,364.16325 L 1377.1258,363.92913 L 1378.0786,362.3972 L 1378.153,361.8063 L 1378.7014,361.66821 L 1379.6955,359.37204 L 1378.7816,358.57594 L 1378.9116,356.72957 L 1379.4865,354.95719 L 1380.5114,355.26704 L 1381.0447,355.41291 L 1381.5204,354.60674 L 1381.6715,354.16815 L 1380.8605,350.53039 L 1381.8856,348.89622 L 1382.4767,348.57565 L 1385.7535,349.21441 L 1386.647,350.87488 L 1386.6752,351.51188 L 1387.6139,352.80253 L 1387.5606,353.3283 L 1388.6672,353.88182 L 1389.8125,353.24352 L 1390.981,352.77872 L 1392.1707,353.17108 L 1392.806,353.06282 L 1394.4251,352.17185 L 1397.0375,353.51455 L 1397.0251,354.14364 L 1398.6021,354.9874 L 1399.1883,355.15247 L 1400.1409,357.41294 L 1400.5715,357.87674 L 1401.7312,357.375 L 1402.3836,357.4489 L 1403.3091,355.93805 L 1406.2261,354.95648 L 1406.7791,354.68192 L 1406.3244,354.03111 L 1406.8379,353.61232 L 1410.3501,348.29887 L 1411.3192,349.1194 L 1412.5697,349.0856 L 1413.074,348.68962 L 1414.4045,348.66879 L 1415.3789,348.03518 L 1415.5187,346.81079 L 1415.6265,346.19339 L 1416.6376,344.38107 L 1417.1266,344.11128 M 924.67247,467.74868 L 925.90471,469.12841 L 925.75274,470.83105 L 926.20625,471.26867 L 927.3494,470.70507 L 929.28519,471.28935 L 929.57268,471.87663 L 929.71605,472.37654 L 930.05505,473.28401 L 929.31935,474.03385 L 931.87442,476.83649 L 932.51053,476.97021 L 932.14079,478.06672 L 930.29497,480.29828 L 931.39218,481.52384 L 931.88973,481.79528 L 932.02564,481.26818 L 933.13133,481.50256 L 933.56422,481.85357 L 934.93805,483.04079 L 934.22273,485.43237 L 934.82935,485.45966 L 935.40523,485.64343 L 936.44639,486.38681 L 936.40438,487.01493 L 934.80784,488.09491 L 935.89367,490.37454 L 934.92198,491.54719 L 934.49681,491.91781 L 934.15338,496.25707 L 935.52899,498.3715 L 934.93792,499.47827 L 935.18834,500.25678 L 937.75999,500.75303 L 940.25736,502.86656 L 939.97188,504.4897 L 939.66098,505.24855 L 939.00184,505.37596 L 935.83407,509.47778 L 936.45044,510.12974 L 934.66232,511.57787 L 935.0756,512.0097 L 934.84403,512.55432 L 937.94043,513.80855 L 938.52757,513.94292 L 938.19009,515.11324 L 937.88273,515.65008 L 937.31445,517.96995 L 937.44073,518.582 L 938.05647,519.21766 L 939.97846,520.91719 L 942.5639,520.74031 L 942.26578,521.91002 L 943.05373,522.86493 L 943.62442,523.14798 L 943.36995,524.21853 L 944.30014,524.98195 L 944.36581,526.17805 L 945.14124,527.11875 L 945.49555,527.61398 L 947.42387,526.63501 L 948.51831,527.02087 L 947.87903,527.69322 L 948.20335,528.09195 L 948.64409,527.68717 L 951.59838,527.71709 L 952.01027,528.76925 L 950.31756,532.28404 L 950.00362,532.8635 L 950.53267,533.19809 L 950.92292,534.13876 L 953.15924,535.08525 L 955.39454,534.85677 L 955.88349,534.50307 L 957.5371,535.30346 L 957.97011,537.03159 L 959.37406,538.23023 L 959.64548,538.7839 L 960.21883,538.68482 L 960.79205,538.57903 L 959.40822,543.50577 L 959.47681,546.0536 L 961.06955,549.42489 L 960.71587,549.968 L 961.54521,550.84041 L 961.94216,551.29977 L 961.528,551.7678 L 962.80351,554.51987 L 963.42203,554.67041 L 966.60359,554.38232 L 967.10544,555.51367 L 967.35725,556.08265 L 968.39702,558.16773 L 969.62204,558.24429 L 970.1368,558.56519 L 971.82053,559.32828 L 972.45967,559.25891 L 973.05036,559.37908 L 975.63174,559.33369 L 976.3458,558.29743 L 977.57664,557.93099 L 977.86275,556.16209 L 978.67702,556.50342 L 978.93529,556.87174 L 979.17432,558.36688 L 979.91027,559.12614 L 980.48855,559.19896 L 979.77918,560.2152 L 979.9972,562.6442 L 978.33663,564.36566 L 978.82647,564.57202 L 978.91099,565.97408 L 982.36626,565.75521 L 982.93429,565.90534 L 984.54779,566.37832 L 984.83541,566.84892 L 983.73364,569.69007 L 983.50422,570.27645 L 984.79985,570.51399 L 985.67993,572.83342 L 986.11408,573.31496 L 984.62978,574.5809 L 983.99772,577.66996 L 985.48063,579.80588 L 984.62662,580.7189 L 984.83085,582.42147 L 982.55531,583.39532 L 983.08424,585.18186 L 983.25937,585.77794 L 984.46351,585.8401 L 985.16049,587.21166 L 986.36324,587.36398 L 986.9667,587.43721 L 988.88895,587.66772 L 991.38404,587.06274 L 993.18443,587.51485 L 994.2266,586.7745 L 994.38503,585.81202 L 998.79136,585.98832 L 1000.3559,584.12068 L 1001.4712,583.61927 L 1002.1041,583.65863 L 1001.8487,584.91555 L 1001.7092,585.54241 L 1005.5766,585.11472 L 1008.1621,585.26997 L 1008.2633,584.70578 L 1007.3814,583.98587 L 1007.1858,583.44698 L 1007.0329,582.27332 L 1008.845,582.60151 L 1009.3318,582.23383 L 1010.2181,582.62011 L 1010.6799,582.46138 L 1010.8638,580.62769 L 1013.9193,576.76497 L 1014.8809,578.27617 L 1017.0481,579.53937 L 1018.8822,579.50411 L 1017.8361,581.98979 L 1019.1241,582.1626 L 1018.7452,584.64422 L 1018.7356,585.27727 L 1019.9627,584.72512 L 1021.3147,582.66687 L 1021.768,582.23239 L 1025.2583,583.36461 L 1025.7016,582.92883 L 1027.249,579.47515 L 1027.8496,579.2101 L 1028.9859,579.38105 L 1029.3851,578.97963 L 1030.7825,581.54643 L 1032.7369,583.07585 L 1034.5275,583.39706 L 1037.6133,582.46973 L 1038.1463,581.56907 L 1038.6669,581.19459 L 1040.5757,584.58002 L 1040.9569,585.11989 L 1040.808,590.46533 L 1040.8737,591.07233 L 1041.0775,591.59033 L 1042.8409,593.23992 L 1043.4094,593.54152 L 1043.9617,593.30711 L 1044.8857,594.04994 L 1046.6055,593.53126 L 1047.0729,593.16203 L 1048.046,593.97595 L 1048.5299,595.70171 L 1048.982,596.14484 L 1051.2047,596.19332 L 1051.7669,596.22422 L 1051.9127,597.97083 L 1052.9267,598.34626 L 1052.7698,600.64162 L 1053.1867,600.64253 L 1053.5046,603.01919 L 1053.8949,603.49677 L 1053.5524,604.38415 L 1052.9342,604.55049 L 1052.1022,606.75877 L 1052.8712,609.70064 L 1051.7844,611.2375 L 1051.241,610.86967 L 1048.8623,609.76007 L 1048.3891,610.8725 L 1047.4219,611.57467 L 1047.6998,612.12092 L 1046.0618,614.57195 L 1043.93,615.80373 L 1043.7331,616.8972 L 1045.3979,617.281 L 1045.7895,616.8754 L 1048.1445,616.23622 L 1053.1706,616.82169 L 1053.794,616.94791 L 1053.7327,616.3625 L 1055.3365,614.5985 L 1055.7303,614.14887 L 1059.9126,614.09427 L 1060.839,615.74634 L 1063.5142,615.77763 L 1067.998,614.54821 L 1068.6579,614.43554 L 1071.4301,617.27305 L 1071.8307,617.80252 L 1072.1877,617.77932 L 1073.189,616.95627 L 1077.1197,617.01944 L 1079.1351,614.71668 L 1082.6595,613.35264 L 1083.276,613.20943 L 1083.1563,612.06608 L 1081.149,609.9608 L 1080.8984,609.43171 L 1083.2117,610.33133 L 1085.9952,609.53857 L 1086.5379,609.23894 L 1087.711,609.61541 L 1088.8127,609.1184 L 1090.3271,609.84081 L 1090.2639,610.43574 L 1088.9974,611.75385 L 1088.6804,614.14293 L 1088.8771,614.71962 L 1089.2498,615.80397 L 1091.0129,615.99347 L 1091.5882,616.13337 L 1091.896,615.56458 L 1093.7934,614.99231 L 1097.0991,611.88216 L 1097.4008,611.31021 L 1097.9284,611.23143 L 1100.9928,610.77841 L 1101.6057,610.68889 L 1105.539,610.07226 L 1106.1948,609.96525 L 1105.9318,607.70875 L 1105.9958,607.14353 L 1108.1108,605.00837 L 1108.6106,604.63888 L 1110.5786,604.3335 L 1110.6676,602.64685 L 1112.3029,601.90642 L 1112.8568,601.62159 L 1113.8893,602.11008 L 1115.0109,601.54681 L 1115.8743,599.22889 L 1118.3911,594.35798 L 1120.2718,594.18183 L 1119.7831,590.1324 L 1117.9548,589.69903 L 1117.3864,589.43605 L 1117.6652,588.18871 L 1118.0162,587.64905 L 1117.6386,587.17391 L 1116.7898,585.64557 L 1117.7278,584.86616 L 1116.4161,584.15268 L 1116.2382,583.64491 L 1119.5993,579.09565 L 1118.9058,578.07184 L 1119.1291,576.83233 L 1120.5107,574.00461 L 1122.1059,574.47741 L 1122.6935,574.42657 L 1124.4522,573.85724 L 1127.0412,574.96293 L 1126.8561,575.54509 L 1127.3387,575.92781 L 1129.2334,572.78708 L 1129.7493,572.43192 L 1131.4306,572.01924 L 1131.951,571.7052 L 1132.5828,572.67332 L 1135.7668,571.32084 L 1135.993,570.77724 L 1137.4558,571.9137 L 1137.6556,572.52252 L 1138.7698,572.29244 L 1139.5175,573.19318 L 1140.1233,573.24054 L 1140.9899,572.86353 L 1141.394,572.62122 L 1142.3724,572.17961 L 1142.9108,572.13612 L 1145.4895,572.67592 L 1146.0157,573.07645 L 1147.1042,572.43902 L 1148.0985,570.87849 L 1148.6937,570.65821 L 1149.8889,570.68858 L 1150.0858,570.09908 L 1152.9745,571.65214 L 1153.5672,571.64785 L 1153.7145,571.07886 L 1155.4376,571.61425 L 1156.0244,571.79254 L 1156.8379,571.59841 L 1158.0747,571.58567 L 1158.7538,570.60419 L 1159.3716,570.63475 L 1159.3124,571.236 L 1159.9566,571.7094 L 1160.6066,568.2497 L 1161.597,567.51898 L 1161.7553,566.93414 L 1162.9821,566.92827 L 1164.8944,568.36217 L 1166.1252,568.42431 L 1166.7394,568.4735"/> |
</g> |
<g inkscape:groupmode="layer" id="layer3" inkscape:label="International boundaries" style="display:inline" transform="translate(-6.2490173e-2,5.4199219e-2)"> |
<path id="polyline3151" d="M 734.23967,1613.4397 L 734.23967,1613.4397" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"/> |
<path id="polyline3153" d="M 1978.3687,1649.9015 C 1977.449,1639.1164 1976.551,1628.2363 1974.0055,1617.7089 L 1973.9404,1617.6144" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"/> |
<path id="polyline3155" d="M 1878.0526,1859.4879 C 1887.8518,1862.3954 1897.6422,1865.3576 1907.3788,1868.4423 C 1912.8996,1861.2019 1918.4511,1853.9821 1924.0796,1846.8286" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"/> |
<path id="polyline3157" d="M 734.23967,1613.4397 L 734.23967,1613.4397" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"/> |
<path id="polyline3159" d="M 1520.0952,-0.05400259 C 1519.4668,3.057023 1523.4085,5.5954934 1520.9864,8.5957284 C 1521.2262,11.544272 1520.6836,14.550927 1519.8632,17.48268 C 1523.6886,18.414111 1519.9921,21.526453 1521.9324,24.690816 C 1521.2937,27.301062 1517.9675,27.974859 1517.3287,30.612597 C 1512.937,30.962089 1513.8228,36.632986 1510.6447,38.841718 C 1508.404,41.607532 1506.9612,45.125503 1503.7194,47.08434 C 1504.8978,50.109268 1501.8296,51.954515 1503.1499,55.498003 C 1502.6521,58.034168 1504.7472,62.427599 1507.5905,59.837437 C 1510.1579,58.852175 1512.4948,55.198391 1515.3885,56.441451 C 1515.5764,58.511408 1508.7491,60.598978 1514.8965,61.677252 C 1515.1454,64.568013 1510.109,65.375484 1507.7947,66.550227 C 1505.3661,68.555157 1502.9122,69.47062 1500.6279,71.289034 C 1498.1751,75.511258 1491.6149,75.656124 1490.2863,80.847314 C 1490.0003,84.011347 1485.5664,86.864739 1483.7137,83.183628 C 1482.8735,77.956551 1480.472,81.465797 1477.3082,82.4183 C 1477.1395,83.902861 1476.5641,88.83263 1479.0295,89.489636 C 1482.0401,90.899458 1480.5453,94.064315 1480.0188,96.460059 C 1483.2273,96.987343 1486.4024,92.206721 1489.4044,95.440226 C 1491.928,96.430756 1495.8615,93.37455 1497.3881,96.299223 C 1494.4364,97.903135 1494.705,100.85036 1495.6335,103.83018 C 1497.9895,105.31524 1500.3395,105.73733 1502.7251,106.56571 C 1505.5763,107.23999 1500.6673,111.61137 1503.905,113.59045 C 1504.5201,115.41611 1502.4676,121.0307 1499.6843,118.57076 C 1496.4526,118.62575 1494.4041,121.0954 1496.2649,123.9674 C 1496.7055,127.07843 1493.7413,128.59064 1491.4097,127.57871 C 1490.2291,130.66949 1497.5717,131.72718 1495.4126,135.49686 L 1495.2437,135.91599" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"/> |
<path id="polyline3161" d="M 1160.931,23.027147 C 1160.901,25.90836 1163.718,29.506173 1160.7175,31.981593 C 1157.8189,33.860258 1163.4414,34.873342 1160.8567,37.110061 C 1162.6787,38.860485 1161.1783,42.320674 1164.338,42.909033 C 1167.3639,44.620607 1169.6802,48.112568 1173.6957,47.137842 C 1175.8839,46.650067 1178.461,46.630476 1180.3333,45.607351 C 1181.0107,43.301328 1179.0842,40.656018 1180.4075,38.693888 C 1182.977,39.328999 1184.8634,36.728796 1187.5087,37.704346 C 1188.8726,36.081667 1190.8598,34.818193 1192.8937,36.706737 C 1195.4208,38.843364 1199.2839,36.678257 1201.1187,39.754218 C 1203.6814,42.604318 1208.2075,40.319366 1210.8941,43.110366 C 1213.7087,42.380102 1215.7308,44.073569 1214.2639,47.012729 C 1213.2964,50.006708 1215.4008,52.345493 1218.4137,52.373478 C 1221.0046,53.206959 1223.6281,52.301374 1226.1838,52.011474 C 1225.8745,55.251892 1229.7558,53.555793 1230.9368,52.011474 C 1233.1748,52.474885 1235.4069,52.373643 1237.1951,50.51753 C 1240.2011,48.780275 1242.4804,44.91775 1246.4772,45.916676 C 1251.8398,43.814618 1256.6219,40.366283 1261.4885,37.270732 C 1264.9629,33.859106 1268.84,30.559094 1271.301,26.329793 C 1269.7296,23.767287 1270.5822,22.17457 1273.8354,22.571144 C 1277,22.708274 1280.42,21.598393 1283.4343,22.879152 C 1283.9372,26.904981 1289.2418,25.592944 1292.1143,25.980629 C 1294.9719,26.354156 1297.3179,22.480437 1294.6116,20.744828 C 1293.9172,17.772908 1288.8576,15.772586 1291.6965,12.502207 C 1294.2635,10.546827 1288.0412,8.9274416 1292.0771,8.0850711 C 1295.8578,7.0418618 1299.4029,5.1263209 1302.7535,3.3732617 C 1305.2137,3.6689227 1307.9464,2.1162085 1310.1147,3.1045987 C 1310.6371,6.5689029 1306.6889,9.9922162 1309.1679,13.374868 C 1312.1736,13.57225 1315.0829,10.750794 1318.0335,12.95821 C 1320.359,13.224733 1322.5755,14.585169 1324.8197,13.26737 C 1326.3842,12.526735 1324.3793,9.1671312 1327.6975,8.8508924 C 1328.5317,6.6584573 1330.1715,5.4063428 1331.9701,4.1892927 C 1333.6673,2.4110464 1335.7949,2.1588457 1337.1815,-0.05400259" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"/> |
<path id="polyline3163" d="M 1342.42,-0.05400259 C 1344.3578,0.92879044 1346.7419,2.2207435 1347.6751,4.0575951 C 1348.1413,6.7320433 1345.8135,7.8514725 1345.8828,10.447561 C 1345.356,12.533979 1348.2956,15.694556 1344.5096,13.871862 C 1342.9302,12.793424 1338.8728,10.814503 1339.2644,14.288026 C 1339.8761,17.391973 1344.6547,16.364402 1347.0461,15.951366 C 1350.4671,15.279709 1354.7815,14.456599 1357.0608,17.844683 C 1359.5006,19.645812 1361.4585,15.84963 1363.3919,14.689868 C 1366.4756,12.352072 1369.6132,9.4140641 1369.0827,5.1322472 C 1369.3337,3.1567838 1372.9666,0.8082872 1373.1302,4.0575951 C 1374.5541,5.7321296 1377.7869,4.4612482 1378.1526,7.6290683 C 1379.6146,9.8101448 1381.397,12.781736 1378.821,14.891859 C 1376.1495,17.009885 1376.5548,20.82006 1379.3129,22.677983 C 1382.0041,25.243946 1384.6965,28.223109 1384.5952,32.182925 C 1386.3893,35.174271 1390.0188,33.114686 1392.6067,32.948088 C 1394.6761,33.894335 1399.0147,34.553646 1396.7564,37.727392 C 1396.6475,39.675693 1394.1973,43.945163 1397.966,43.351702 C 1400.806,42.356068 1403.6049,42.753794 1406.4575,43.473028 C 1409.7164,44.712302 1411.5182,40.236561 1414.692,41.996533 C 1416.8846,42.977845 1419.432,43.248154 1420.9859,41.083376 C 1423.7873,40.61733 1427.0189,40.098772 1428.6447,37.472722 C 1432.3484,36.207109 1434.1333,40.005431 1436.8048,41.593375 C 1439.3715,44.121474 1436.5664,48.272909 1438.4201,50.788992 C 1442.2092,52.210008 1446.3536,52.92562 1449.848,54.964463 C 1450.112,58.288674 1453.7575,57.68056 1456.0771,57.300613 C 1458.709,57.597261 1461.4054,55.026525 1463.8101,57.407288 C 1466.7906,57.727807 1464.9274,62.60753 1468.2105,62.227089 C 1470.1953,61.627536 1472.7757,59.854887 1474.1518,62.442415 C 1477.2936,64.548423 1473.2464,66.928363 1471.441,68.134218 C 1468.4763,70.192487 1472.9526,71.393239 1473.7248,72.712025 C 1473.2952,75.79128 1467.3338,72.129593 1469.3489,75.765763 C 1468.8756,77.517012 1469.4377,80.914808 1467.1893,81.357312 C 1464.5118,78.906421 1464.8539,83.605059 1463.7358,85.00912 C 1466.4783,86.330706 1464.6993,89.119401 1464.525,91.466745 C 1464.3537,95.261611 1457.9837,95.184568 1458.7786,99.198874 C 1460.3781,100.54301 1464.0545,96.763292 1463.296,100.58581 C 1461.1016,102.57807 1460.8132,106.20485 1458.4629,107.84466 C 1455.0769,106.66102 1456.2439,111.12327 1453.9976,112.31512 C 1452.5451,113.81351 1448.6198,112.62528 1448.8154,116.15724 C 1446.5699,118.7902 1448.7524,123.76952 1451.8902,124.97439 C 1454.3852,126.20312 1456.3513,126.69338 1455.8094,129.57162 C 1458.3967,131.55959 1452.5401,135.30754 1456.1744,135.76519 C 1457.998,133.65771 1459.9008,136.07107 1461.5636,134.8955 C 1462.813,134.05494 1464.6558,129.64784 1465.8896,132.50585 C 1467.8456,133.11955 1469.2995,136.2235 1471.4921,135.62922 C 1473.4483,134.13297 1474.8764,133.95946 1476.0828,135.66 C 1477.712,135.6144 1480.7641,131.86497 1480.6873,135.25816 C 1480.5556,137.85968 1484.7803,135.7247 1486.4008,135.57472 C 1489.074,133.66297 1491.2329,136.95903 1493.8696,136.06316 C 1494.941,136.10596 1497.7238,138.3198 1497.5274,139.8758 C 1495.8279,143.91744 1498.8489,143.99744 1501.2444,142.1168 C 1503.6173,142.19928 1505.7232,143.12166 1507.4419,142.11828 C 1509.428,147.01743 1512.5102,151.98325 1516.2704,155.63654 C 1513.9542,155.75194 1515.413,163.02824 1517.7465,159.60986 C 1520.8702,158.74823 1523.8389,161.98338 1527.0671,160.37519 C 1530.1939,161.72706 1524.2859,163.76969 1525.3125,166.26881 C 1522.2204,165.88755 1521.4053,169.28766 1518.6657,170.79263 C 1514.2544,171.94745 1516.0937,175.22162 1518.1364,176.59242 C 1515.4267,178.71753 1521.2381,178.88001 1519.9652,180.60689 C 1521.1142,181.10307 1521.0197,185.98971 1524.152,183.70771 C 1526.5352,183.03918 1528.5119,182.51981 1530.2976,183.90904 C 1533.2438,181.95779 1535.4812,185.67659 1538.5319,185.13087 C 1535.4141,186.42216 1536.1902,192.42938 1540.1101,191.74917 C 1542.8902,194.52091 1539.0854,197.50138 1539.581,200.59562 C 1537.1346,202.91465 1537.0613,205.8976 1539.5532,208.05958 C 1541.9175,209.83141 1544.8904,212.00014 1544.1578,215.3897 C 1541.2739,216.84348 1539.5649,219.11872 1536.82,217.21404 C 1534.6276,214.55178 1530.5197,217.54378 1530.4741,220.5715 C 1527.9917,222.85317 1531.6879,225.73174 1527.3084,226.46514 C 1524.1265,227.18454 1519.5938,227.094 1518.6657,231.00244 C 1515.6748,231.27489 1513.2172,234.07248 1516.4097,235.98358 C 1517.2269,239.15452 1518.3096,242.46524 1513.7509,241.98322 C 1509.7029,241.27996 1512.716,246.10881 1510.8211,246.19919 C 1512.7417,246.7943 1512.8785,252.32692 1509.4472,250.52233 C 1506.4812,249.59782 1510.3108,244.09434 1506.2536,243.50088 C 1503.2913,241.85153 1503.6746,249.26083 1500.1638,245.89053 C 1495.8213,246.82772 1498.8126,239.03995 1494.6125,241.78271 C 1493.0411,243.64393 1488.5407,242.24942 1489.2001,246.13285 C 1489.2072,248.90508 1488.0704,251.70876 1484.9763,252.20081 C 1481.928,253.49046 1478.4474,255.24632 1478.9977,259.22161 C 1479.0648,262.28292 1473.078,262.60838 1476.0811,266.30892 C 1476.0856,269.35129 1473.8696,271.18321 1471.1904,272.39137 C 1468.8427,275.17891 1474.3329,276.44848 1472.2858,278.741 C 1469.4325,281.04736 1468.9125,281.76923 1465.5843,282.24186 C 1464.1243,284.69703 1464.3399,287.38447 1462.7239,289.77578 C 1461.629,291.76243 1457.2702,295.4493 1462.2319,295.66941 C 1467.8095,296.79295 1460.7012,300.07502 1462.1205,299.73721 C 1462.7055,302.81581 1460.7281,302.28161 1460.5795,305.53701 C 1461.6741,307.71183 1460.5389,311.54917 1462.7239,312.86647 C 1465.9681,311.70589 1467.2581,311.99958 1467.7834,315.96795 C 1469.5207,318.59038 1472.5508,321.19058 1471.2276,324.70773 C 1472.4075,328.50309 1476.5581,322.73885 1477.6609,326.64006 C 1479.1603,329.1247 1472.9,332.68843 1476.8161,334.42685 C 1480.5189,334.38124 1481.3873,337.05899 1481.0959,340.17248 C 1480.6039,342.55439 1476.1725,342.01082 1477.1039,345.35428 C 1478.1928,347.94017 1471.5207,349.78789 1476.3613,349.73027 C 1478.0846,352.36701 1474.2398,354.40207 1473.1956,356.84638 C 1472.005,357.42782 1470.5771,357.22534 1469.3987,357.81287" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"/> |
<path id="polyline3165" d="M 1539.581,373.46612 C 1540.2658,369.03845 1538.389,364.67695 1539.1261,360.35035 C 1540.6231,358.31941 1542.2373,355.31308 1539.2654,353.69156 C 1540.6988,351.96748 1540.481,350.34892 1542.1154,348.1471 C 1545.4925,346.10726 1547.3789,342.19174 1548.8643,338.69549 C 1545.6308,336.14401 1548.2585,335.16271 1550.8046,333.00386 C 1552.5093,330.65618 1555.6256,329.88146 1557.767,328.21171 C 1556.8019,326.1378 1556.7761,324.98989 1559.1689,325.4189 C 1556.8842,323.68806 1556.0851,320.1184 1559.2432,318.81409 C 1558.1515,316.07215 1557.3039,313.16246 1559.9394,311.18881 C 1560.3413,307.75727 1557.8209,311.48118 1555.1956,309.29566 C 1553.1475,305.38654 1551.0924,309.9841 1548.1726,309.51378 C 1546.288,307.55231 1542.5696,308.63948 1541.8369,305.28168 C 1540.8302,302.61662 1536.9025,301.13716 1535.0879,303.85869 C 1533.5649,303.1737 1533.8674,297.3311 1530.6503,299.02604 C 1528.7279,296.79839 1525.1644,296.49795 1523.6878,293.58842 C 1521.7697,291.06888 1522.5096,288.15129 1521.339,285.30513 C 1519.6984,283.70896 1517.4155,282.23988 1516.6975,280.62049 C 1516.925,285.86156 1515.2328,281.89763 1513.9497,279.2515 C 1515.3254,276.51729 1510.0913,276.17734 1511.3132,272.90137 C 1509.0665,271.16609 1512.002,267.4025 1509.4194,265.16924 C 1507.3067,262.96676 1510.1074,262.11254 1508.7138,259.16762 C 1509.9245,256.98012 1509.5919,254.3065 1510.6886,251.26576 L 1510.7561,251.12616" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"/> |
<path id="polyline3167" d="M 1687.6506,1412.7404 C 1687.3313,1409.6026 1684.9545,1407.0649 1684.6243,1403.84 C 1683.513,1400.2412 1680.6109,1394.8862 1685.1163,1392.4554 C 1687.1199,1390.8485 1690.5918,1389.9439 1690.1107,1386.7103 C 1691.538,1384.3831 1690.5363,1379.9059 1694.3347,1379.7428 C 1697.636,1379.4573 1697.9852,1375.2961 1700.833,1374.1038 C 1702.8141,1372.5561 1705.0301,1370.7451 1703.8966,1367.9016 C 1702.8002,1364.3941 1707.1515,1364.1806 1708.2412,1361.9287 C 1709.673,1359.3649 1711.6503,1355.0255 1708.1113,1353.1486 C 1705.1705,1351.2887 1701.8838,1347.2336 1704.7042,1343.9928 C 1702.2615,1342.0644 1707.7508,1339.0333 1703.7057,1338.6607 C 1701.0804,1336.8672 1699.7293,1338.6899 1698.1329,1339.8306 C 1698.1547,1342.7154 1696.5988,1343.2792 1693.9448,1342.5286 C 1691.366,1341.4586 1690.4029,1344.194 1688.3222,1344.2475 C 1683.814,1343.6425 1680.4667,1348.9816 1675.833,1347.3079 C 1674.5015,1349.3016 1672.3538,1350.8473 1670.105,1348.8253 C 1667.9311,1346.9942 1663.7766,1350.7918 1663.1798,1346.6905 C 1662.5659,1341.9309 1657.1129,1345.0875 1654.2121,1343.751 C 1651.9868,1342.149 1650.7041,1337.5424 1647.4259,1339.1732 C 1644.2122,1338.3329 1643.9121,1333.8149 1640.5376,1333.1721 C 1639.0933,1329.9091 1636.0668,1335.9168 1635.0186,1331.9578 C 1633.4373,1329.9158 1630.4043,1329.7876 1628.6456,1327.7756 C 1626.0962,1325.4289 1623.1993,1329.8339 1620.9498,1327.5198 C 1617.222,1326.6466 1618.5809,1321.6631 1616.5493,1319.1838 C 1615.2235,1317.0781 1610.9667,1317.0006 1612.1954,1313.6387 C 1612.176,1310.3869 1607.507,1309.4933 1607.693,1306.1207 C 1605.2847,1305.2306 1604.2371,1303.7656 1605.4964,1301.4107 C 1607.1529,1299.2681 1605.5823,1297.0571 1606.0052,1294.856 C 1607.3014,1292.6095 1610.8301,1293.4302 1612.084,1291.7298 C 1610.6296,1289.7936 1607.8109,1288.894 1607.6187,1286.2929 C 1603.9525,1284.6581 1602.0403,1280.4716 1601.7146,1276.6804 C 1601.362,1274.3887 1601.986,1272.3487 1604.1097,1271.1901 C 1604.6089,1267.9342 1609.162,1269.4797 1609.4847,1266.2494 C 1611.6228,1265.1297 1612.3347,1263.439 1612.3481,1260.8573 C 1613.0929,1258.3226 1614.8398,1257.8858 1615.3612,1256.5432 C 1613.3338,1254.029 1613.5961,1250.7248 1615.881,1248.5017 C 1617.8425,1244.5666 1622.5926,1244.0799 1626.1484,1246.0731 C 1629.0762,1247.6983 1629.984,1245.8333 1628.5434,1243.3201 C 1629.3517,1238.8804 1622.7479,1238.522 1623.4097,1234.017 C 1624.0704,1231.0538 1624.029,1227.4349 1621.4416,1225.4252 C 1621.9152,1223.6613 1626.3039,1221.247 1623.0942,1220.0285 C 1621.4631,1218.8476 1621.4928,1215.9433 1618.6659,1215.9608 C 1616.0552,1214.4125 1612.3369,1211.8292 1609.9118,1215.0483 C 1606.8755,1216.1486 1603.3757,1214.5525 1600.6934,1213.168 C 1598.2677,1210.7434 1595.8004,1208.3202 1592.394,1207.4228 C 1591.2194,1205.2318 1588.0418,1205.5063 1587.7895,1202.8983 C 1589.5368,1200.6061 1586.4744,1199.026 1588.2166,1197.3539 C 1590.2409,1194.8017 1588.1304,1191.4529 1587.3546,1188.9932 C 1588.7142,1187.0411 1588.296,1184.8063 1585.8586,1184.1308 C 1583.083,1182.658 1578.2305,1185.4981 1577.0302,1181.338 C 1576.2274,1178.7024 1578.4946,1174.6507 1574.7835,1173.6059 C 1574.6196,1171.5676 1571.5594,1170.1386 1572.7617,1168.4482 C 1574.1175,1165.5481 1578.439,1166.7669 1579.2859,1163.4431 C 1581.4926,1161.9807 1583.7947,1162.1985 1586.2113,1162.7319 C 1588.2842,1161.6066 1589.7337,1157.1194 1592.5055,1159.7249 C 1594.6008,1161.6145 1598.3218,1160.3274 1599.2173,1163.7389 C 1600.8592,1165.9619 1603.494,1163.892 1605.5857,1163.8462 C 1609.7792,1162.301 1603.6768,1159.7885 1606.4584,1158.1539 C 1608.6123,1158.1559 1610.6521,1157.5369 1612.6504,1156.9321 C 1613.7351,1154.8039 1614.7774,1153.5405 1615.259,1151.3753 C 1615.7625,1149.8304 1619.3987,1149.7465 1621.1506,1148.7428 C 1623.7362,1149.6454 1625.3248,1146.5239 1627.4853,1146.7565 C 1628.3645,1149.7978 1630.2446,1149.7743 1631.2171,1146.716 C 1632.1338,1144.8953 1633.5834,1141.3583 1636.1372,1143.1052 C 1638.5638,1138.4426 1634.8831,1133.7908 1634.2063,1129.2236 C 1634.9114,1126.7158 1638.4177,1128.5551 1637.1585,1124.6996 C 1639.5361,1123.1467 1640.7466,1121.475 1641.0304,1118.6204 C 1641.9172,1116.9271 1645.223,1113.1484 1641.4403,1113.0114 C 1639.5132,1112.2231 1638.5849,1110.0595 1636.0723,1109.9995 C 1632.6557,1108.2962 1633.8302,1103.1326 1630.4745,1101.0989 C 1628.8894,1100.0101 1625.2954,1101.5539 1626.0926,1098.2527 C 1626.1464,1096.205 1622.0434,1097.0039 1620.7061,1095.3243 C 1618.55,1092.1211 1617.7926,1087.7556 1618.731,1083.9685 C 1617.3656,1082.0122 1615.6467,1080.2755 1616.9679,1077.6327 C 1616.4337,1075.4032 1621.2529,1072.6478 1617.6819,1071.4573 C 1616.1208,1069.285 1614.3349,1067.9533 1611.6111,1069.1547 C 1609.4602,1069.5733 1608.1233,1066.687 1608.2872,1064.8525 C 1605.2045,1063.9132 1600.9309,1064.6155 1599.5702,1060.7851 C 1598.3128,1058.502 1595.2871,1057.1061 1595.9124,1053.965 C 1595.3601,1049.3227 1594.1524,1044.6 1595.6711,1039.9361 C 1595.2969,1036.6498 1599.1005,1034.2947 1601.5532,1036.8096 C 1604.6209,1038.2638 1601.3716,1031.6788 1605.0459,1033.2635 C 1609.4299,1035.9355 1614.0188,1031.986 1617.8861,1030.1225 C 1620.619,1027.7202 1620.8879,1023.8048 1622.4629,1020.8599 C 1626.325,1019.4587 1623.5554,1018.1983 1624.041,1015.2209 C 1625.8987,1012.1581 1619.0354,1012.4819 1621.7945,1009.8778 C 1622.3968,1006.4477 1618.159,1005.212 1616.9392,1002.4003 C 1615.0875,999.86234 1611.7997,998.13825 1611.3506,994.77568 C 1608.2472,993.99142 1606.5707,999.16055 1603.4413,996.90935 C 1601.8236,994.41286 1606.8586,991.48522 1603.2927,989.90188 C 1603.6784,988.00478 1606.5763,986.84782 1605.9014,984.19609 C 1604.3228,982.3678 1600.7582,983.64905 1598.9759,981.45727 C 1596.615,981.81648 1592.4244,981.50584 1592.8861,978.24912 C 1591.8334,975.25711 1595.5611,972.94945 1594.5153,969.72466 C 1593.0786,964.36408 1599.2624,961.49917 1600.6283,957.05207 C 1600.7869,953.45656 1597.3319,951.72276 1596.1908,948.60762 C 1594.1335,946.43873 1591.1685,944.07509 1590.8369,940.99797 C 1592.3073,938.89526 1596.368,938.0626 1595.4204,934.67254 C 1596.6749,931.83874 1596.4491,927.12166 1592.5055,926.89991 C 1587.044,924.72164 1581.4407,922.9559 1575.5911,922.12077 C 1572.3962,921.16251 1569.4646,924.12224 1566.1314,922.88544 C 1561.2303,922.19091 1555.6115,922.50961 1552.2806,926.69809 C 1549.2144,930.25952 1544.7347,932.29111 1540.0451,931.88039 C 1535.8346,931.55658 1531.0429,933.14649 1529.49,937.42485 C 1526.8761,939.48115 1523.8644,941.3845 1523.1679,944.94281 C 1521.3976,947.3048 1522.9159,948.76352 1525.3125,949.31945 C 1526.7829,951.13095 1523.0349,952.44759 1525.1732,954.62208 C 1525.9354,956.29695 1527.7099,960.6237 1529.2857,957.30674 C 1531.206,956.03273 1532.2679,959.75203 1532.34,961.21405 C 1529.29,964.07089 1525.2897,966.236 1521.7941,968.63734 C 1521.106,970.85051 1516.9282,970.60573 1517.923,973.6718 C 1517.8617,976.22674 1514.3355,976.68933 1513.0027,978.61178 C 1510.5662,979.45234 1507.0531,980.75961 1505.2325,978.14244 C 1503.052,977.97206 1500.9165,978.46741 1499.4304,980.08828 C 1496.8491,979.56428 1494.0583,978.77789 1491.6973,980.63878 C 1488.2394,982.30903 1491.5201,979.33991 1492.1523,977.73929 C 1493.5769,975.89832 1495.0634,974.41524 1492.6071,972.70482 C 1490.9783,971.33566 1487.76,969.03046 1490.537,966.95902 C 1493.5444,963.87499 1497.8989,962.97269 1501.4356,960.86488 C 1503.5221,961.75169 1505.0204,960.96777 1506.6332,960.35356 C 1509.8979,960.16095 1508.4758,956.10631 1507.1634,954.40659 C 1505.9657,951.81297 1509.8051,950.33928 1509.1686,948.00379 C 1510.9356,945.18349 1512.094,941.90932 1513.8104,938.99584 C 1513.8542,935.0859 1509.3824,933.98754 1507.2747,931.37056 C 1505.8723,930.13029 1501.3231,929.24331 1503.8419,927.27311 C 1507.1011,924.91787 1501.0051,921.25273 1504.4898,918.65663 C 1506.8246,916.19932 1508.5779,913.45524 1509.4844,910.17285 C 1510.3178,907.55569 1513.1003,906.70327 1514.3395,904.46705 C 1512.8892,902.58476 1509.2304,900.7945 1510.1899,898.11741 C 1515.1638,894.69756 1518.9761,889.97455 1523.5857,886.11548 C 1527.0378,883.43577 1529.1862,878.9653 1533.8532,877.98019 C 1536.5431,876.76414 1540.215,876.06005 1541.0663,872.95923 C 1543.8359,872.91857 1542.6169,869.08107 1545.5779,869.41541 C 1548.7955,869.14 1549.8443,865.90748 1551.6402,863.79061 C 1552.2041,861.20111 1546.5678,860.37026 1549.3284,857.38649 C 1549.6853,854.87583 1550.2781,852.39597 1552.1414,850.47302 C 1553.748,845.69092 1551.5983,840.83952 1548.7623,837.0486 C 1550.4729,834.27785 1553.1645,831.73477 1555.6133,829.42314 C 1557.7916,829.1181 1560.2009,829.39467 1562.3716,828.20083 C 1566.1145,827.50876 1569.1096,825.06115 1572.8803,824.44267 C 1576.2691,822.26967 1577.3455,816.84339 1582.1266,816.85722 C 1584.9239,815.77845 1584.0417,812.73064 1581.939,811.49828 C 1582.5531,810.81708 1582.3744,807.75758 1584.3665,806.8008 C 1586.2611,806.45822 1589.7063,806.06757 1588.0031,803.28496 C 1588.4486,800.9335 1592.0119,801.56434 1593.5916,799.98215 C 1596.7598,798.79687 1598.1167,795.35233 1601.1855,794.12985 C 1598.9916,792.60891 1600.6175,791.07446 1602.8887,789.68439 C 1605.0051,786.7826 1607.7117,784.15754 1610.9237,782.48992 C 1612.5212,781.65068 1614.1081,779.68427 1614.4793,778.01994 C 1613.7609,775.97402 1614.8666,773.52049 1613.4952,771.45498 C 1613.8354,769.12854 1617.5541,770.60833 1619.1021,768.72934 C 1621.2888,768.8184 1623.0699,766.92837 1621.7573,764.84953 C 1623.2297,763.07836 1626.6198,764.67766 1627.3459,761.74871 C 1628.071,760.21163 1626.7837,757.53225 1625.3689,757.10439 C 1623.7226,755.3487 1621.786,755.49719 1619.7892,757.01006 C 1615.6247,758.07237 1611.343,757.63086 1607.1639,757.93606 C 1603.9947,759.65735 1605.248,754.93731 1606.8112,753.96275 C 1609.8972,754.00242 1608.5295,748.80366 1611.9077,749.74744 C 1614.7627,748.9291 1610.6276,743.50843 1614.5813,744.09498 C 1617.0093,744.65782 1617.6996,741.20274 1620.3184,741.71899 C 1623.3327,739.47651 1618.8453,737.10398 1619.3344,734.53736 C 1617.7461,731.5396 1622.0294,733.03799 1622.992,731.03321 C 1624.6624,730.46873 1626.4084,733.06037 1628.4693,732.85888 C 1632.0729,735.30236 1635.9612,729.22945 1639.3772,732.65771 C 1641.0976,734.82463 1644.2044,731.69647 1645.4578,733.51671 C 1643.8712,735.559 1642.9165,737.75572 1643.0908,740.40613 C 1641.8918,743.22314 1646.5989,743.50333 1648.4099,743.23647 C 1651.496,742.38752 1649.7515,748.32692 1652.6112,746.09892 C 1654.2806,744.47575 1656.5639,744.70704 1658.3617,743.79981 C 1660.1561,742.89851 1663.0157,743.09556 1664.8677,744.07522 C 1667.2054,744.68137 1669.386,744.59412 1671.1263,742.92781 C 1673.7946,742.55906 1674.1645,738.92766 1676.9283,738.60467 C 1679.4398,736.23692 1675.6448,735.64164 1674.6447,734.18803 C 1674.8147,730.76109 1678.537,732.78957 1679.7783,734.38936 C 1682.4311,734.88339 1685.5811,731.36839 1682.9069,729.20773 C 1681.5396,726.0804 1687.4565,729.8593 1686.6666,726.05225 C 1687.2849,723.30603 1681.0427,725.38043 1684.2672,722.56375 C 1685.7434,720.37527 1690.5392,721.49256 1690.0458,718.17212 C 1691.264,715.56583 1696.0698,718.20768 1694.966,714.35948 C 1695.0024,711.58873 1691.7096,710.09956 1692.1159,707.13735 C 1689.9545,704.23853 1685.4574,702.76598 1685.4691,698.5854 C 1684.711,696.14686 1684.7413,693.47192 1687.2978,692.18194 C 1690.2233,689.99511 1689.425,686.314 1687.7899,683.59 C 1685.8351,678.85267 1688.2047,673.44286 1691.3455,669.76307 C 1692.7776,666.88976 1688.001,663.00237 1692.0788,661.26512 C 1695.6227,659.65906 1693.4646,655.90124 1694.0192,653.07583 C 1696.9803,649.92744 1700.9155,645.95906 1698.877,641.20528 C 1697.1776,637.1648 1691.6272,635.27197 1692.1903,630.3078 C 1692.2346,627.1543 1692.4622,623.89923 1693.2022,620.78935 C 1692.6517,617.12734 1697.7086,616.27608 1696.832,612.65472 C 1697.6093,608.70972 1700.5316,605.53796 1701.9935,601.77997 C 1703.7379,599.00921 1707.3978,597.52498 1707.6192,593.79267 C 1708.8975,590.16852 1706.2193,584.82638 1710.5991,582.83939 C 1713.0096,581.5369 1716.9259,579.59551 1715.046,576.20578 C 1714.1725,572.02553 1712.699,567.75771 1714.5446,563.58635 C 1715.175,559.5686 1719.373,556.54843 1717.8866,552.20242 C 1717.0471,548.25413 1723.5099,549.16268 1722.7418,545.12812 C 1722.5237,540.80219 1721.9076,536.46818 1721.832,532.17254 C 1723.8228,529.06414 1724.2309,525.18532 1726.2603,522.19875 C 1730.4846,520.24831 1733.9297,517.26537 1737.0567,513.86163 C 1740.3871,511.71925 1743.1592,507.77936 1742.2554,503.64537 C 1743.3965,499.8319 1749.6436,505.01074 1749.8492,500.08805 C 1748.8272,495.87373 1753.9548,496.42604 1756.4311,495.25541 C 1761.8601,492.25402 1760.0019,485.07354 1763.1801,480.50117 C 1764.2681,475.17301 1769.2962,471.99087 1770.811,466.78092 C 1772.3614,465.39315 1778.4475,462.76151 1773.1597,462.91493 C 1770.9072,464.00457 1768.766,461.51218 1766.2716,461.89509 C 1763.08,461.51943 1760.2743,459.52421 1756.9231,459.61229 C 1754.1359,457.89215 1752.2037,454.89998 1748.7631,454.12116 C 1746.6228,452.5742 1743.0036,453.85167 1742.0792,450.85967 C 1739.8316,448.55644 1737.6144,448.28448 1735.4726,450.71167 C 1732.7319,448.04579 1730.1556,452.42407 1727.597,450.40301 C 1724.6279,450.78279 1722.4381,445.42797 1720.1424,447.81152 C 1718.1467,448.83794 1714.9606,450.95038 1713.1428,448.98002 C 1710.7369,447.94998 1707.9306,448.66558 1705.5862,449.79918 C 1702.158,450.22834 1700.5212,447.61447 1699.5334,444.91269 C 1697.3742,442.3125 1694.7594,443.13841 1691.922,443.29068 C 1687.2969,442.58956 1687.7803,436.57345 1684.1322,434.99094 C 1681.7487,432.35205 1683.1408,432.23006 1683.6031,429.80912 C 1682.4417,426.73613 1679.7726,427.57357 1677.1048,427.8228 C 1674.0578,427.98051 1676.1896,423.90497 1672.1474,425.28466 C 1668.6451,425.24384 1665.9562,426.84264 1666.0576,430.52112 C 1665.6145,432.9674 1661.1713,430.62944 1659.7356,433.11194 C 1657.8123,436.57674 1657.1773,437.33417 1653.8963,435.9176 C 1651.5597,433.35031 1648.0725,434.98139 1645.7734,436.41409 C 1644.1776,436.25408 1642.1202,432.42151 1639.5164,435.40759 C 1638.056,433.02584 1634.3683,433.02074 1633.9928,431.28628 C 1631.252,427.21864 1632.1234,434.47501 1630.4466,434.84376 C 1629.7404,436.73527 1625.7044,438.71715 1625.0623,435.40759 C 1624.8598,431.34489 1622.6813,427.63085 1623.8275,423.4995 C 1621.8909,423.66593 1619.2219,421.65985 1617.0785,420.65401 C 1613.4874,421.95041 1613.1607,415.97693 1609.8004,417.35137 C 1607.6183,420.27719 1604.7996,418.83246 1602.3458,417.55253 C 1598.4275,418.72661 1601.4602,422.39307 1602.5594,424.62749 C 1601.8871,426.36689 1600.3267,430.56853 1597.2492,429.24595 C 1594.3909,428.29032 1591.9998,426.84182 1589.1263,427.3663 C 1586.229,428.09229 1583.777,425.2389 1584.4197,422.533 C 1587.2886,421.76258 1586.9544,415.89429 1583.6027,417.62003 C 1579.9942,419.99223 1581.5865,414.1954 1580.4742,412.31755 C 1578.9377,410.65108 1575.6448,411.04915 1577.0672,407.64509 C 1575.9924,405.53447 1573.6581,403.24902 1571.3023,401.79196 C 1568.043,401.20442 1569.4845,396.72703 1566.9762,396.75814 C 1563.3025,393.34702 1567.2482,392.74071 1569.0835,391.66968 C 1567.5448,389.54885 1567.3498,386.69349 1563.9499,385.88338 C 1559.3074,384.2742 1564.3063,381.53868 1561.8426,379.26509 C 1559.2182,378.16163 1557.5987,375.88293 1554.9171,375.04995 C 1553.3277,372.07572 1550.0637,373.99126 1548.0567,371.43912 C 1545.3275,368.65159 1544.1885,373.97825 1541.0348,372.86178 C 1537.8441,374.23753 1535.2088,370.74788 1532.0614,370.3248 C 1530.9359,368.01911 1528.5917,367.24983 1526.3243,365.6395 C 1522.5957,363.0709 1518.154,366.36778 1514.0611,365.23683 C 1512.9281,366.68896 1513.6729,367.83605 1510.3417,368.13417 C 1508.4298,367.88972 1509.8955,372.9441 1506.458,372.00246 C 1506.0625,376.87082 1503.6973,372.61601 1501.2996,372.80829 C 1499.5234,375.68111 1497.9054,375.67765 1494.6601,374.85026 C 1491.3212,374.82062 1491.1021,375.92639 1490.0728,372.20445 C 1490.7473,368.99943 1488.3359,367.19978 1485.4311,366.60599 C 1482.2058,366.22242 1478.7989,366.29172 1475.6836,366.00215 C 1472.9688,363.79869 1473.4276,361.73763 1471.9703,359.32986 C 1469.4409,359.61367 1469.2057,356.93594 1466.1682,356.94021 C 1462.8491,352.76441 1462.4684,359.30418 1460.0186,359.54092 C 1457.4025,359.19784 1456.2884,359.29431 1454.5197,357.30732 C 1451.084,355.37795 1446.5283,357.55474 1446.5152,361.67885 C 1446.265,365.50813 1443.6994,362.70972 1442.3174,361.26138 C 1440.0347,360.47811 1436.3726,359.51358 1435.6815,362.79334 C 1433.8315,365.38944 1429.9828,363.46335 1427.5957,365.29033 C 1425.4139,363.93911 1425.8721,361.63079 1427.371,359.91344 C 1427.9888,357.59656 1423.6427,356.56735 1425.5162,354.34939 C 1424.495,352.55847 1422.1976,351.10256 1422.7114,348.47239 C 1421.2511,345.56385 1417.7406,343.85293 1414.692,342.91129 C 1412.206,340.55802 1411.5759,342.56329 1409.7249,344.12061 C 1406.9814,346.08767 1404.9682,341.96258 1406.6061,340.21315 C 1407.4107,338.44873 1410.6772,337.09948 1407.6901,335.42214 C 1405.4194,333.85857 1403.8293,331.77133 1402.1035,329.68754 C 1399.3075,328.71101 1397.5757,333.51665 1394.6119,331.1647 C 1393.0578,329.11383 1388.8524,331.80524 1388.347,328.58804 C 1389.063,324.90988 1386.0333,327.40029 1384.4839,326.69405 C 1382.5861,324.36334 1383.5501,320.84603 1381.2531,318.61227 C 1379.846,314.85675 1375.4286,319.13413 1373.7986,315.96795 C 1370.3453,316.24715 1368.2856,313.24329 1366.7247,310.67816 C 1364.5864,310.516 1362.3017,310.45081 1360.598,311.82606 C 1357.8146,314.54447 1354.1543,312.21951 1351.0822,311.64531 C 1347.919,313.7179 1349.9408,309.21121 1350.6924,307.77867 C 1351.1994,305.18357 1349.7715,302.33314 1348.3715,300.10004 C 1348.784,298.04078 1350.7211,296.4079 1351.2215,294.15308 C 1353.7601,291.12864 1351.0346,287.8599 1348.6871,285.85629 C 1348.782,282.02521 1346.6147,284.72205 1344.5869,283.48903 C 1341.0779,282.95219 1340.8209,277.42205 1343.9433,276.20401 C 1346.7286,273.71888 1343.9828,268.9455 1347.3597,266.59174 C 1347.5327,265.0843 1344.9325,262.13147 1347.7774,261.15461 C 1349.2526,259.84339 1347.482,254.99461 1350.6768,256.52197 C 1352.4478,259.96027 1351.9409,251.62085 1351.9132,253.05306 C 1350.8767,250.83989 1355.6341,249.70894 1352.9482,247.98484 C 1352.8326,245.02445 1349.3579,246.63281 1347.4689,247.04765 C 1345.3117,247.62186 1347.0098,241.64361 1343.7019,244.17221 C 1342.6045,247.20421 1339.8488,248.47114 1337.1572,249.70317 C 1336.0221,251.87602 1335.5903,254.63886 1332.6268,254.95247 C 1329.6054,256.11174 1327.0366,259.61983 1328.013,262.7256 C 1329.9911,265.73604 1327.3423,269.55411 1326.9268,272.79453 C 1326.642,276.47383 1321.8276,276.03642 1319.1938,276.80785 C 1316.3173,276.57606 1314.1762,278.27002 1312.092,279.85533 C 1308.5167,279.72067 1307.5135,284.62739 1303.7929,284.33864 C 1300.8571,285.04784 1297.8562,286.6743 1295.0014,284.59397 C 1292.8027,283.35864 1290.3852,284.53602 1288.2384,283.01969 C 1285.982,283.6143 1284.1391,282.55249 1282.6916,280.92916 C 1279.3711,279.27783 1275.5502,281.03764 1271.9694,281.03666 C 1269.4111,281.55241 1265.9949,282.81441 1264.7284,279.6135 C 1263.5907,277.15256 1260.1351,279.42353 1259.3881,277.84431 C 1260.6064,276.00926 1261.6172,274.31563 1259.2106,272.69345 C 1257.9203,270.48916 1260.029,267.74179 1261.5999,266.39041 C 1264.5379,267.23821 1264.9572,264.23584 1266.9234,263.20382 C 1269.5194,263.17402 1270.6105,260.28261 1268.4511,258.71112 C 1266.4814,256.81188 1265.2616,254.33975 1266.2045,251.69082 C 1266.5501,248.94954 1262.0898,248.8794 1260.7551,250.46834 C 1257.2018,251.29079 1258.6222,248.23919 1258.5363,246.25319 C 1261.2585,245.4612 1259.8438,242.64682 1260.9789,240.65028 C 1262.4305,239.00143 1259.2508,235.60676 1262.2682,235.32575 C 1263.6466,233.28592 1264.6333,230.54941 1267.4298,229.87528 C 1270.6406,227.82113 1266.8373,224.00766 1264.0877,224.12948 C 1263.2642,221.17715 1259.7872,222.61233 1261.7391,225.20348 C 1262.9659,227.74689 1257.5587,228.11103 1258.462,225.09597 C 1255.9656,223.78888 1257.577,220.089 1254.7395,218.83969 C 1253.433,216.66882 1250.9789,217.52469 1249.8876,215.26328 C 1247.2044,214.2008 1246.6385,211.46627 1245.2704,209.28206 C 1242.3615,210.34173 1239.5487,211.83469 1236.3863,211.61756 C 1233.6758,212.87922 1230.6499,214.90687 1227.5577,213.85922 C 1226.794,211.44618 1223.7753,212.00738 1222.4612,209.99324 C 1220.2656,209.00928 1218.593,211.36338 1216.39,209.931 C 1213.9052,210.31754 1211.2505,209.08518 1209.0654,210.90573 C 1206.9311,211.97364 1207.1548,215.24764 1206.4938,217.36335 C 1203.6204,214.60989 1204.865,220.79392 1201.9608,217.3515 C 1199.7008,214.21924 1199.0948,210.25185 1197.8511,206.79791 C 1199.3077,204.41765 1200.2591,201.67291 1199.0393,198.91796 C 1198.7667,196.45933 1199.5851,193.67541 1197.6745,191.64184 C 1197.0975,189.41236 1194.0581,188.83355 1193.6642,186.2987 C 1192.6577,184.7855 1190.2277,182.30628 1188.7069,184.56687 C 1185.8461,182.60821 1182.3401,183.18554 1179.4235,184.78171 C 1176.244,184.48473 1178.285,180.74584 1179.5628,179.54591 C 1178.6661,178.38483 1174.6887,176.28425 1173.6606,178.20753 C 1172.7965,180.65365 1170.7551,181.64714 1168.3008,181.55314 C 1165.5185,181.74904 1163.199,183.76484 1160.4669,183.81521 C 1158.7851,181.5454 1155.7593,181.41404 1153.6808,179.63974 C 1151.3407,179.24087 1150.7142,176.65712 1149.2526,175.37125 C 1148.9565,172.18203 1149.8807,168.9752 1149.6053,165.75816 C 1149.3326,163.0819 1146.2731,161.79209 1146.6904,159.04668 C 1146.1223,156.57555 1144.2396,154.07742 1144.9265,151.56857 C 1147.8923,150.48618 1146.2384,148.79173 1145.4801,146.91866 C 1146.5227,144.22759 1143.1622,143.09021 1141.1296,143.63445 C 1139.214,142.36209 1138.9523,140.19089 1138.0048,138.43339 C 1137.1554,135.78495 1135.2218,133.84274 1134.5199,131.08268 C 1132.8898,129.26658 1129.0445,129.26296 1127.6316,130.1697 C 1126.3719,132.41037 1123.3947,132.94736 1121.415,131.64668 C 1118.9793,131.70298 1117.6784,134.27948 1115.0805,133.72767 C 1113.1505,134.23931 1111.4333,136.64247 1109.6168,136.26943 C 1108.0923,135.00744 1105.2451,138.10694 1106.9854,139.41931 C 1104.8189,140.60047 1106.1172,143.51839 1103.7176,144.60161 C 1102.3487,148.27054 1101.1164,145.86492 1099.4247,144.19186 C 1096.83,144.8194 1095.7645,142.19187 1093.8402,141.46029 C 1090.5622,143.09103 1085.674,140.87407 1086.7013,136.77449 C 1084.4617,135.73194 1083.4498,134.23372 1083.1399,131.89246 C 1080.8779,131.27134 1079.4526,129.59945 1078.2627,127.78004 C 1079.7942,124.29154 1075.0441,124.37105 1072.8887,124.11589 C 1071.3324,123.0791 1069.0624,126.83577 1067.4012,124.11523 C 1066.4294,122.26668 1066.8632,119.28621 1064.0962,118.93359 C 1063.8792,116.92702 1065.8399,114.69523 1064.9518,112.24138 C 1064.513,110.05322 1064.4368,107.71723 1062.5459,106.31416 C 1063.1407,104.19811 1065.529,103.06601 1066.1665,100.98387 C 1068.6608,100.55289 1066.3104,97.044631 1065.1452,95.990557 C 1064.7358,93.510691 1063.4901,92.025308 1061.0606,91.466745 C 1058.571,88.335307 1059.1772,83.718814 1058.0064,79.974653 C 1057.7651,78.139941 1057.2454,76.172543 1055.9733,74.793012" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"/> |
<path id="polyline3169" d="M 1669.8917,1422.7149 C 1669.0035,1420.3435 1669.1604,1418.1586 1671.3292,1416.5274 C 1672.5394,1414.315 1675.2919,1413.5731 1675.8051,1416.7139 L 1675.9443,1417.2245" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"/> |
<path id="polyline3171" d="M 1959.1333,1564.52 C 1957.3671,1559.9557 1954.8655,1555.7238 1952.7742,1551.3103 C 1950.728,1544.9865 1945.7422,1540.3663 1942.4698,1534.7305 C 1938.9038,1530.3847 1935.0272,1526.0607 1930.6521,1522.5279" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"/> |
<path id="polyline3173" d="M 1832.7959,696.75975 C 1830.8054,693.99508 1832.2864,692.80224 1835.2763,693.07518 C 1838.3611,693.85631 1836.3513,697.39651 1833.5016,696.61192 L 1832.9234,696.73308 L 1832.7959,696.75975 z" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"/> |
<path id="polyline3175" d="M 1694.7896,716.69513 C 1697.883,717.01796 1699.651,712.11306 1702.4855,713.74215 C 1705.6602,711.8304 1705.9481,713.21387 1704.9235,715.61999 C 1707.0432,718.71028 1702.3208,719.62673 1700.1369,718.97795 C 1696.4885,720.14923 1700.7808,721.53535 1701.9285,722.64277 C 1704.1221,722.81216 1705.2707,725.31112 1707.7956,724.26775 C 1711.8671,722.4551 1717.5717,724.01538 1720.8387,720.40094 C 1722.0792,718.42153 1723.181,714.76692 1726.186,716.44047 C 1729.2339,715.73901 1733.9219,714.55786 1735.1536,718.62879 C 1734.1529,721.34439 1736.2721,723.34092 1739.0527,722.49543 C 1744.074,719.99647 1749.9002,723.56761 1754.7867,720.62499 C 1756.9154,721.27656 1759.971,721.32513 1760.2929,718.42746 C 1760.9889,716.13805 1764.1345,716.85861 1764.9719,714.60131 C 1767.5779,714.50698 1768.9926,712.75441 1770.347,710.69483 C 1772.541,707.93149 1774.6806,712.52033 1776.6318,710.68133 C 1778.6287,709.65557 1780.4962,712.40345 1782.7588,711.46066 C 1784.4606,712.775 1784.5057,715.62477 1786.5927,716.84297 C 1788.8401,719.18126 1792.5301,718.69941 1795.3191,718.17212 C 1797.9636,716.25494 1801.1553,720.10693 1804.1383,718.21279 C 1805.3486,717.08563 1810.6741,717.38375 1808.5803,715.90545 C 1805.9291,717.11377 1803.744,714.01691 1806.7099,712.68182 C 1807.524,710.53285 1810.7642,711.24269 1811.24,708.65369 C 1813.1332,706.1297 1815.9496,709.24287 1818.0635,709.9295 C 1818.6646,711.71104 1818.5432,717.02768 1821.2101,714.26317 C 1823.8273,712.63079 1823.3806,709.16056 1822.148,706.77469 C 1822.8455,702.36694 1824.0735,706.59015 1825.6572,706.2242 C 1828.3071,704.89241 1825.0215,701.70417 1823.5746,701.60226 C 1821.2921,699.36917 1819.9279,703.4783 1817.9613,701.74088 C 1814.5412,699.74204 1814.0877,705.49426 1810.9617,704.89504 C 1808.8268,704.34405 1806.344,706.70506 1806.0787,704.23721 C 1805.1386,702.7431 1802.2834,703.30743 1801.2327,701.37756 C 1797.2337,701.25887 1800.172,699.35815 1799.5338,697.12241 C 1797.0517,695.17773 1799.6095,692.86496 1801.8547,692.38377 C 1804.6191,691.85879 1804.5439,689.50207 1804.1754,687.40264 C 1806.1943,686.09142 1806.1274,682.95587 1808.2879,682.1135 C 1811.5666,682.56704 1814.2036,679.63544 1817.5065,680.89234 C 1821.4002,680.12421 1814.5467,676.51948 1818.5554,675.96536 C 1820.8941,677.28415 1825.4606,675.00249 1825.9727,678.50284 C 1823.9487,679.80468 1826.3863,682.51468 1827.1854,683.7128 C 1830.5639,683.26733 1828.4217,679.29353 1829.8441,677.53569 C 1831.7289,678.30464 1835.0997,679.61849 1833.8916,682.42216 C 1835.2871,684.7249 1840.1505,681.75002 1840.1856,685.57698 C 1838.6508,687.11455 1837.5921,688.96704 1837.4749,691.16194 C 1842.2998,691.08934 1837.5802,697.49792 1838.7012,696.18094 C 1842.2378,695.80939 1844.982,698.4305 1848.1973,698.89474 C 1849.4281,696.85984 1849.1013,693.98537 1846.0899,694.26276 C 1843.0822,693.36179 1845.6705,690.37802 1847.7052,690.30229 C 1848.8408,686.76571 1850.1995,690.95403 1850.8337,692.43711 C 1853.1655,691.44838 1854.0565,694.51151 1856.4744,694.29174 C 1859.315,697.18579 1854.9586,695.17181 1854.4263,696.61192 C 1854.6831,699.08092 1857.7824,700.36875 1857.8705,703.06938 C 1861.6374,706.76234 1867.0316,703.32125 1870.635,701.13573 C 1873.6371,698.57948 1877.5531,696.71563 1881.4933,698.1294 C 1885.2714,697.30136 1887.919,700.89621 1891.1977,701.39171 C 1894.1813,700.03342 1896.5323,704.15144 1899.5342,702.76006 C 1903.226,702.52415 1907.1921,701.45082 1910.249,704.30766 C 1921.9047,711.1133 1933.7082,717.95022 1945.2548,724.76408 C 1945.1907,727.95544 1942.4868,732.43481 1946.3037,734.44271 C 1947.6909,735.97747 1948.0468,739.0238 1950.9083,737.83935 C 1952.8098,739.1927 1957.4545,738.73703 1956.1441,742.26998 C 1954.7598,745.45854 1956.0583,748.79379 1958.7157,750.71328 C 1958.674,754.40722 1954.6652,756.827 1951.2611,756.40624 C 1948.0975,759.11855 1949.2377,764.47534 1945.2455,766.56851 C 1941.2573,771.49268 1939.4882,777.70766 1936.2128,783.09441 C 1933.9527,787.47105 1934.4981,792.68545 1937.0855,796.774 C 1938.0849,800.74254 1940.2791,806.86895 1935.3679,809.08459 C 1932.4981,808.68259 1932.1453,813.9342 1934.6274,812.63022 C 1937.4468,812.4121 1940.8467,809.86062 1943.4167,811.56743 C 1945.285,815.30944 1949.1425,810.24353 1951.6139,812.84324 C 1954.4136,814.29143 1957.0656,810.22493 1960.0525,812.18541 C 1962.1851,812.67302 1963.8408,814.51218 1965.9938,814.62906 C 1968.3459,814.49226 1970.174,817.22663 1972.6407,815.89073 C 1975.7526,816.34443 1977.7059,820.77984 1981.4228,819.15303 C 1985.7889,818.05567 1982.3801,822.26078 1985.1546,822.50902 C 1988.3594,823.1838 1984.5447,826.58638 1984.5885,828.50998 C 1983.5546,830.66077 1984.8166,832.7816 1984.783,834.78554 C 1987.0435,836.22466 1990.2953,836.2385 1991.4117,839.18276 C 1993.2098,840.99853 1996.4133,836.84315 1997.743,840.14941 C 1998.0643,841.00396 1999.2498,841.30836 2000.0624,841.26374" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"/> |
<path id="polyline3177" d="M 2000.0624,954.04327 C 1998.3108,951.97611 2000.9684,948.38374 1998.0957,946.67381 C 1996.8812,944.62805 2001.1776,942.06374 1998.1329,940.47234 C 1995.5684,940.11807 1993.8323,935.58108 1991.3466,938.02869 C 1990.2683,939.47028 1988.6154,934.50858 1986.3523,937.37152 C 1984.0007,938.71533 1981.2483,938.94382 1978.7214,939.30451 C 1976.2459,940.9639 1973.9433,943.39174 1971.0163,944.08299 C 1969.3647,943.30285 1967.8537,939.07223 1966.0588,942.25733 C 1964.3151,944.21616 1964.7375,946.94659 1965.1492,949.06412 C 1964.5021,951.53229 1961.6403,953.7063 1959.6788,951.00896 C 1956.58,949.84409 1953.2849,955.662 1950.4814,951.9636 C 1948.234,952.54686 1946.3592,952.40512 1944.7535,950.54061 C 1941.4981,951.50777 1938.3304,947.73743 1938.1438,944.54031 C 1937.8712,940.86545 1935.498,937.75542 1931.9146,936.76702 C 1930.5605,935.10006 1933.7958,932.84968 1931.5365,930.92344 C 1929.3805,928.01507 1931.9613,924.60096 1931.0316,921.32862 C 1930.8519,918.75722 1932.2575,916.21052 1931.599,913.73016 C 1930.2634,914.30453 1927.3515,915.65591 1926.9534,917.61804 C 1926.8435,920.42747 1923.7662,920.75013 1922.4642,918.50946 C 1920.0957,917.4437 1920.4284,916.24821 1921.0531,914.28065 C 1919.002,912.27622 1916.4548,916.03371 1914.0904,914.33399 C 1910.7216,913.52355 1906.9297,916.80068 1908.2235,920.28161 C 1908.1257,922.9694 1903.7422,923.6758 1905.262,926.79258 C 1906.1535,928.56918 1910.3077,928.06955 1909.0552,931.19095 C 1908.9158,934.04846 1907.9434,937.3837 1909.0312,939.96233 C 1911.6502,941.01213 1911.4191,943.99475 1910.0523,945.86881 C 1911.6321,948.0219 1907.5095,949.58992 1908.6157,952.15144 C 1908.0946,955.18591 1904.8482,957.10096 1904.8072,960.46156 C 1904.5345,962.7149 1904.1607,965.23527 1901.4003,965.53603 C 1899.9814,967.45683 1897.3354,967.93934 1897.8276,971.06041 C 1897.4952,975.75889 1891.1642,974.47385 1889.5453,978.35662 C 1887.9555,981.16046 1884.7524,982.85705 1883.604,985.83457 C 1884.1017,988.64714 1885.5895,991.59766 1883.3254,994.11785 C 1880.5483,996.08903 1875.0723,995.88079 1874.5713,1000.3202 C 1874.6454,1002.9948 1879.7693,1005.2631 1876.8178,1007.851 C 1874.9946,1008.8737 1871.109,1011.8484 1874.6734,1013.2886 C 1876.1291,1014.7392 1875.0278,1017.9553 1877.5235,1019.2349 C 1879.7957,1019.8457 1881.9811,1020.5112 1883.4476,1022.1148 C 1884.2702,1024.0473 1884.6534,1026.2201 1882.6572,1027.8266 C 1880.4218,1029.1154 1879.6628,1031.4635 1879.77,1033.8277 C 1877.4181,1035.2366 1879.3164,1039.1666 1876.241,1039.2445 C 1873.1626,1041.5278 1873.5659,1035.2167 1870.9507,1037.0899 C 1868.4284,1038.8889 1868.4839,1032.7192 1865.4372,1035.7002 C 1862.2775,1038.723 1862.6608,1035.4007 1864.2207,1033.0832 C 1866.6249,1030.401 1864.4323,1027.3302 1864.0254,1024.376 C 1863.2066,1021.6063 1859.2695,1019.9048 1860.8597,1016.698 C 1860.8333,1013.3689 1856.3469,1014.1226 1854.742,1011.9182 C 1852.3444,1009.9372 1849.5868,1008.1212 1846.3034,1008.5621 C 1848.2566,1006.1762 1846.619,1001.8257 1850.3045,1000.9369 C 1851.6935,998.78686 1852.5997,997.32585 1854.8069,996.30552 C 1855.2673,992.89125 1852.6853,989.54746 1849.8126,988.11689 C 1847.6667,988.99268 1845.938,989.40703 1843.8143,988.18899 C 1842.2278,986.94742 1842.0819,982.41274 1839.87,986.29057 C 1837.9221,988.618 1833.7908,989.22924 1832.5176,985.92791 C 1829.7191,987.71422 1829.1961,982.53275 1826.3629,984.30408 C 1823.2046,985.83885 1825.6711,980.78956 1823.0207,980.34427 C 1822.7135,978.51054 1823.3389,975.73336 1820.3471,975.85964 C 1818.4565,974.18543 1817.7599,971.25862 1815.1856,970.0605 C 1814.9379,967.04495 1812.7392,966.22694 1810.2795,965.72238 C 1808.5924,964.24193 1805.0984,965.56023 1804.7696,962.74387 C 1801.2185,961.59531 1805.4483,958.12475 1803.3307,955.97758 C 1800.6558,953.66547 1802.823,950.26076 1803.5441,947.54647 C 1805.8907,945.48425 1804.1014,942.45768 1805.6888,940.01568 C 1806.016,937.57828 1805.4946,935.1506 1805.9022,932.73955 C 1804.0915,929.98246 1805.451,926.87539 1805.1224,923.94643 C 1803.0775,919.68486 1798.7546,923.8307 1795.4955,923.54327 C 1790.9834,923.01384 1789.2209,928.60523 1785.2281,929.38274 C 1782.6666,931.78787 1787.3961,932.27005 1786.7319,934.52537 C 1785.7267,937.27389 1783.1095,939.36904 1780.2987,939.81385 C 1780.2852,942.95483 1777.5695,942.96059 1775.8705,944.59365 C 1774.5761,947.23517 1773.2619,950.90147 1769.7528,950.99711 C 1767.9686,953.21555 1764.7712,950.12 1763.1058,952.82277 C 1761.0189,954.60019 1758.7442,957.04482 1758.3993,959.79022 C 1760.6397,960.33232 1761.6311,962.11567 1762.6139,963.9657 C 1766.2707,965.15756 1764.6946,969.70738 1766.9398,972.15432 C 1767.7419,974.65592 1764.9265,975.97273 1765.9286,978.49095 C 1765.7279,981.51242 1761.1317,980.7173 1761.1006,983.94142 C 1759.9914,987.52836 1755.8901,987.05606 1753.052,987.86156 C 1751.5729,990.25533 1749.7764,993.69774 1750.9447,996.50734 C 1753.195,998.45482 1750.4403,999.99635 1749.1436,1001.286 C 1749.1322,1003.7699 1747.9968,1006.3769 1745.1704,1006.723 C 1741.8445,1008.4754 1737.85,1006.938 1734.5595,1008.3614 C 1733.0783,1010.4082 1730.1447,1011.588 1731.004,1014.7109 C 1728.6955,1016.4832 1731.6571,1019.2003 1729.6022,1021.2219 C 1727.3518,1021.8516 1725.2245,1018.6037 1722.881,1020.7121 C 1720.5195,1022.9144 1718.9377,1019.9291 1718.063,1018.0137 C 1715.2549,1015.5531 1713.7565,1022.3238 1711.0727,1019.4367 C 1709.5099,1017.5184 1710.7829,1014.3142 1707.2216,1014.3172 C 1704.5136,1013.6129 1703.7571,1008.9445 1700.341,1010.4425 C 1697.1047,1011.1498 1693.9075,1010.3738 1691.3455,1008.3614 C 1688.7388,1007.8314 1687.4842,1010.8219 1688.0034,1012.9792 C 1685.6569,1014.5978 1681.5552,1012.4663 1680.1219,1015.9863 C 1676.6469,1018.6871 1672.6524,1021.2724 1668.3926,1022.3274 C 1665.188,1020.4991 1661.5936,1022.0889 1658.3245,1020.6579 C 1655.1023,1021.7235 1653.3141,1025.5964 1649.4682,1025.3832 C 1646.9947,1025.5765 1646.057,1027.729 1644.1859,1028.8466 C 1641.4475,1028.1579 1638.6951,1027.4841 1635.9238,1028.4845 C 1630.5446,1028.9979 1628.276,1022.174 1625.2757,1019.1276" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"/> |
<path id="polyline3179" d="M 1949.256,811.98425 C 1951.2458,810.32765 1953.1575,807.99596 1953.9627,805.52662 C 1952.9446,803.33123 1953.3041,801.40383 1953.4706,799.16365 C 1952.4584,796.93484 1952.1665,795.17421 1949.6366,794.54584 C 1949.2119,791.92374 1944.1389,792.96053 1945.5241,789.91388 C 1946.6881,787.59172 1948.2008,783.90435 1944.8279,782.63775 C 1941.3317,781.59685 1946.6113,779.44359 1944.7906,777.76477 C 1943.3686,776.45521 1941.7924,775.27504 1941.0217,773.44213" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"/> |
<path id="polyline3181" d="M 1945.2826,724.72359 C 1949.9148,727.60332 1955.3459,726.58036 1960.5725,726.81741 C 1962.9673,726.38232 1966.3794,726.79239 1966.69,723.55592 C 1967.8478,719.40103 1970.4683,713.54625 1975.7971,714.81614 C 1979.3565,715.58246 1977.4139,719.57224 1976.9946,721.87744 C 1978.4563,723.19228 1980.9505,723.44891 1982.0262,725.48891 C 1983.7998,725.88598 1984.3902,721.20232 1987.0485,723.3006 C 1988.3988,726.50035 1990.6316,723.96517 1992.8878,724.92426 C 1995.226,724.1023 1996.559,722.93908 1995.4871,726.76408 C 1996.307,729.17183 2000.7069,729.20262 1999.8131,732.50971 C 1999.9763,733.10218 1999.7433,733.78603 2000.0624,734.33224" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none"/> |
<path id="polyline3183" d="M 510.08995,1483.4121 C 508.97935,1490.0322 512.84544,1489.9206 514.4406,1490.1821 C 517.1247,1492.3662 514.4212,1496.5211 517.65008,1498.0788 C 519.73137,1495.3985 522.31511,1496.8398 525.16446,1495.5728 C 527.34373,1496.0235 532.22653,1497.4269 529.29576,1500.4841 C 530.83455,1502.7641 529.65401,1506.8179 534.01722,1506.3387 C 538.01999,1507.1527 538.45616,1502.2634 538.66247,1500.0226 C 541.01096,1499.0158 544.0212,1499.6185 546.37733,1500.4193 C 548.61932,1502.0882 551.53823,1504.0486 554.41433,1503.6765 C 557.31199,1501.6442 560.47934,1503.9942 561.19663,1507.0382 C 561.02029,1510.4145 561.08409,1514.1622 560.96915,1517.2552 C 558.35606,1519.1055 559.9684,1522.8548 557.53858,1524.9956 C 558.46408,1527.9324 555.65391,1530.4483 554.00314,1532.3195 C 552.0677,1533.9528 547.94144,1535.5305 550.87781,1538.6324 C 552.74636,1540.5259 552.46861,1545.269 556.24801,1544.6175 C 558.84221,1545.9143 562.08643,1546.4686 564.7939,1546.7496 C 568.01629,1545.2559 565.02359,1541.1164 566.70477,1538.716 C 565.54972,1535.8176 567.42758,1532.2012 570.39246,1532.0865 C 572.97351,1530.1928 577.78753,1530.8402 573.19363,1533.4156 C 571.37457,1535.7653 570.00121,1539.8427 573.78957,1540.8626 C 575.98872,1543.9197 578.22799,1544.5157 581.0654,1542.3914 C 584.28998,1543.5018 585.10188,1545.5817 587.88031,1546.7665 C 591.78716,1544.8199 591.94715,1551.2677 593.793,1550.3818 C 596.44929,1547.5752 597.79839,1550.8332 600.4948,1551.7805 C 602.30914,1555.2615 606.85296,1552.0736 609.42823,1554.8803 C 609.91721,1557.9722 613.63616,1559.3043 616.04101,1560.7739 C 618.42598,1563.2717 621.20647,1559.27 623.46092,1561.2655 C 626.33549,1563.0377 629.70818,1561.6189 632.78188,1562.9581 C 636.29232,1562.5575 638.19044,1558.7713 641.94984,1559.4405 C 643.03311,1562.6774 646.31201,1565.5912 644.41592,1569.2657 C 642.27299,1571.2079 645.86733,1575.421 648.53899,1575.075 C 652.33673,1573.0126 652.31326,1578.0512 654.9056,1579.0714 C 658.091,1579.7565 658.89966,1583.3883 660.87681,1585.3403 C 660.50066,1589.4566 663.13142,1588.843 665.73372,1590.41 C 663.28541,1594.4096 668.33,1593.9955 669.44445,1591.6007 C 671.21498,1592.3341 670.0763,1587.8889 672.67281,1586.6813 C 674.75722,1584.1328 676.88762,1589.8105 679.73198,1589.5587 C 681.45088,1591.2823 685.0464,1588.1927 687.46745,1590.3413 C 690.42793,1588.515 691.39041,1584.9596 694.17351,1583.4208 C 695.60487,1589.0017 697.19289,1579.0654 697.968,1581.9064 C 700.40787,1583.3584 702.40938,1586.43 704.89358,1586.8237 C 708.24413,1585.8725 708.05909,1590.8918 711.49142,1591.3774 C 714.32824,1595.5439 716.23325,1588.9905 718.56752,1590.2815 C 716.98215,1593.2039 717.48547,1596.1118 720.72775,1597.6782 C 722.58947,1599.6387 722.49143,1603.3897 724.57776,1604.7124 C 728.3114,1603.597 729.09153,1606.7585 729.43588,1609.5132 C 732.29967,1609.278 734.80952,1611.742 737.77061,1610.8657 C 737.90939,1606.3341 741.47709,1609.3267 744.25271,1608.6585 C 746.6325,1606.0923 748.93238,1605.5366 751.78477,1606.4029 C 754.34639,1605.0992 757.5579,1604.2673 759.19283,1602.2333 C 762.29487,1602.0992 764.47947,1604.8893 767.19191,1605.5585 C 771.95579,1604.1741 770.25751,1609.0578 772.13999,1611.2426 C 773.80584,1614.8334 777.79802,1612.6653 778.48118,1609.6757 C 776.20249,1605.7422 790.12355,1604.7324 784.3284,1604.6791 C 786.1349,1606.9802 787.42095,1607.8802 788.34016,1610.2293 C 790.49649,1610.0708 793.79141,1611.5919 796.42197,1610.0697 C 798.1372,1606.8405 801.49072,1612.8277 803.48723,1609.0154 C 805.79159,1608.2099 808.86067,1609.9858 811.59084,1609.9693 C 813.59221,1606.8625 814.75446,1609.7465 818.0437,1610.3482 C 820.62174,1608.7814 823.67409,1612.7578 823.48892,1607.8288 C 823.94021,1604.4912 822.85181,1600.9279 820.1578,1598.9184 C 817.76359,1598.457 823.72289,1595.531 819.76717,1593.7107 C 821.90869,1592.1019 822.45014,1589.6532 822.11666,1586.3751 C 820.4033,1583.1091 824.54426,1581.2869 826.74294,1580.341 C 830.31656,1577.7944 831.36464,1584.2338 834.89332,1583.2765 C 837.2996,1584.1719 840.81908,1581.4964 842.16317,1584.7549 C 845.2511,1585.1473 847.14059,1586.4248 849.95796,1588.1224 C 852.87794,1588.0067 854.46634,1594.055 857.14633,1591.702 C 859.37448,1587.8939 861.85083,1592.6336 863.93014,1593.1247 C 867.03789,1592.0126 869.00573,1593.9391 871.97573,1594.4761 C 875.33618,1592.0886 877.12905,1595.5195 879.71355,1597.0467 C 883.06282,1598.8196 880.30294,1602.6691 883.13481,1604.7949 C 885.26303,1607.9543 887.60132,1606.9908 890.12852,1605.5912 C 892.94606,1604.8085 894.57708,1604.5278 897.65513,1606.1349 C 900.1171,1605.5594 903.75454,1606.9891 905.70931,1605.5527 C 910.85358,1604.9537 908.07433,1608.7232 910.2492,1610.5666 C 914.08649,1609.7136 913.76974,1613.9067 915.20682,1616.0789 C 918.37164,1618.3784 916.63786,1623.1177 919.2037,1625.5385 C 919.71834,1628.5418 925.91986,1627.4577 924.4263,1624.0943 C 922.48061,1622.5357 925.6404,1615.8493 927.49017,1619.0334 C 930.50954,1620.6117 934.45053,1614.9091 937.41819,1618.7686 C 937.88206,1622.2214 941.66493,1622.1354 944.07911,1623.0668 C 946.84551,1622.0256 948.86967,1624.7035 951.8605,1622.9538 C 953.81955,1624.1155 959.27455,1624.0333 957.24131,1626.9501 C 954.70265,1629.9744 960.36324,1630.6153 962.46116,1630.8808 C 965.932,1634.2126 958.79171,1632.1019 958.18609,1634.9912 C 957.50552,1637.3252 956.01241,1640.131 955.88079,1642.9523 C 955.91962,1644.979 956.59239,1648.2395 959.38564,1646.9771 C 962.03898,1648.6916 965.12602,1647.6701 968.16402,1648.2754 C 971.1483,1648.8815 972.16152,1652.6576 975.25573,1653.2098 C 976.6916,1656.135 979.93864,1656.1781 982.20826,1655.2504 C 984.28945,1655.0616 985.15252,1658.5964 985.84573,1661.0743 C 986.25461,1663.9304 986.50159,1667.4777 988.57968,1669.7938 C 990.80221,1671.349 993.12657,1674.6572 995.93332,1672.2707 C 997.95809,1673.0179 1001.7209,1671.431 1002.9173,1670.2606 C 1003.0695,1667.716 1007.5315,1667.2157 1007.2878,1663.3868 C 1008.4012,1660.829 1012.1668,1659.7275 1014.9401,1660.4458 C 1018.0353,1662.4104 1021.2718,1659.1408 1024.3182,1657.9505 C 1026.8618,1658.6055 1029.4227,1660.1891 1031.9681,1660.4619 C 1035.0235,1661.3216 1035.9379,1663.0216 1038.4422,1664.5515 C 1041.1119,1665.0866 1043.4597,1667.0113 1046.4914,1666.4871 C 1046.217,1669.0876 1049.7162,1671.4267 1051.1746,1673.517 C 1052.6641,1675.8797 1056.1515,1675.0834 1058.3301,1677.0162 C 1062.1534,1678.2366 1060.292,1671.1773 1064.5026,1672.2643 C 1066.5313,1674.191 1069.7139,1674.7238 1072.7291,1674.8915 C 1075.1701,1676.0259 1080.4038,1676.3841 1076.6572,1672.7206 C 1075.3949,1670.0178 1073.1529,1666.9725 1076.8607,1666.7963 C 1076.5049,1663.0764 1081.3972,1664.767 1082.7008,1661.7221 C 1085.1616,1660.3682 1088.16,1661.7886 1090.6579,1662.9154 C 1093.5371,1661.4971 1094.7196,1658.9432 1097.5914,1657.8514 C 1098.0912,1654.803 1104.287,1653.5902 1103.1331,1654.1773 C 1105.7579,1655.0474 1109.553,1656.2679 1109.7557,1652.4208 C 1111.9462,1647.3176 1114.3825,1654.3648 1116.4899,1652.4472 C 1118.5262,1649.6818 1120.9356,1653.4928 1123.6383,1651.404 C 1124.3445,1653.7845 1126.0893,1656.8365 1128.5952,1658.0491 C 1130.4526,1662.0172 1133.4535,1657.3609 1136.2012,1658.4975 C 1137.6823,1659.6603 1139.1614,1658.587 1140.7501,1658.4114" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" inkscape:transform-center-x="-312.22571" inkscape:transform-center-y="91.711108" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/> |
<path id="polyline3185" d="M 920.55923,1627.232 C 920.19278,1629.8376 917.64254,1631.5687 920.70833,1633.5965 C 919.7447,1634.375 914.88191,1639.3951 919.04945,1638.8707 C 921.35806,1637.3424 923.54173,1642.1095 923.63736,1644.2284 C 922.24163,1645.9789 917.68658,1645.8345 918.06959,1647.9624 C 919.99731,1650.0833 920.92312,1652.8705 921.06811,1655.4082 C 922.10098,1657.5389 925.98847,1655.8891 928.02882,1657.4716 C 930.5683,1657.5047 935.49889,1658.1939 935.00566,1654.3829 C 937.54155,1654.0686 938.06155,1653.9048 940.24284,1651.9089 C 942.38728,1653.168 945.4339,1652.49 947.84459,1651.2489 C 949.02894,1649.6752 947.5108,1643.9628 950.12577,1645.9697 C 951.99034,1646.9497 954.91591,1646.9829 955.82425,1644.3166" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" inkscape:transform-center-x="-423.42272" inkscape:transform-center-y="152.18689"/> |
<path id="polyline3187" d="M 987.17111,1655.0069 C 983.78756,1653.0508 987.03076,1650.3837 987.82763,1647.9215 C 991.52735,1644.5842 988.79379,1651.2464 990.87625,1652.6073 C 994.12092,1654.3115 992.24185,1656.7726 988.4935,1655.5498 C 988.08506,1655.0691 987.862,1654.7439 987.17111,1655.0069 z" style="fill:none;stroke:#646464;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" inkscape:transform-center-x="-475.91757" inkscape:transform-center-y="161.23798"/> |
<path style="fill:none;fill-rule:evenodd;stroke:#646464;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 428.6147,473.05883 C 455.95567,474.87741 480.59394,474.94229 491.38772,466.84157 C 505.40237,455.49847 513.95131,410.3087 499.17972,398.59426 C 475.20598,379.58217 470.4878,362.2728 475.99086,314.66688" id="path2691" sodipodi:nodetypes="ccss"/> |
</g> |
<g inkscape:groupmode="layer" id="layer14" inkscape:label="Legend" style="display:inline"> |
<g transform="translate(19.032227,8)" id="g7172"> |
<text sodipodi:linespacing="125%" xml:space="preserve" x="97.243156" y="1839.4103" transform="scale(1.0299372,0.970933)" id="text4242" style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;font-family:Arial;-inkscape-font-specification:Arial"><tspan x="97.243156" y="1839.4103" id="tspan4244" sodipodi:role="line" style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;font-family:Arial;-inkscape-font-specification:Arial">0</tspan></text> |
<text sodipodi:linespacing="125%" xml:space="preserve" x="542.34253" y="1839.4103" transform="scale(1.0299372,0.970933)" id="text4246" style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;font-family:Arial;-inkscape-font-specification:Arial"><tspan x="542.34253" y="1839.4103" id="tspan4248" sodipodi:role="line" style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;font-family:Arial;-inkscape-font-specification:Arial">250</tspan></text> |
<text sodipodi:linespacing="125%" xml:space="preserve" x="319.53906" y="1836.2384" transform="scale(1.0299372,0.970933)" id="text4250" style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;font-family:Arial;-inkscape-font-specification:Arial"><tspan x="319.53906" y="1836.2384" id="tspan4252" sodipodi:role="line" style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;writing-mode:lr-tb;text-anchor:middle;font-family:Arial;-inkscape-font-specification:Arial">(km)</tspan></text> |
</g> |
<g transform="translate(20.032227,12)" id="g7188"> |
<text xml:space="preserve" style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:100%;writing-mode:lr-tb;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial" x="93" y="1840.0374" id="text7180" sodipodi:linespacing="100%"><tspan sodipodi:role="line" id="tspan7182" x="93" y="1840.0374">41°</tspan></text> |
<text xml:space="preserve" style="font-size:14px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:end;line-height:100%;writing-mode:lr-tb;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial" x="92.726563" y="1793.7874" id="text7184" sodipodi:linespacing="100%"><tspan sodipodi:role="line" id="tspan7186" x="92.726563" y="1793.7874">51° 30'</tspan></text> |
</g> |
<path sodipodi:nodetypes="ccccccc" d="M 119.13223,1848.0475 L 119.13223,1801.0269 L 577.52881,1801.0268 C 555.40679,1810.5984 535.33668,1821.1534 518.63788,1832.7432 C 511.31423,1837.8044 503.13144,1842.6409 497.07351,1848.0475 L 497.07351,1848.0475 L 119.13223,1848.0475 z" style="fill:#ffffff;stroke:#000000;stroke-width:0.40000001;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" id="path7113"/> |
<path sodipodi:nodetypes="ccccccc" d="M 270.36669,1848.0437 L 194.73685,1848.0437 C 197.19022,1838.1049 200.38885,1828.2056 203.67099,1818.3164 C 206.02367,1812.5486 208.07415,1806.7537 210.85667,1801.0232 L 302.59198,1801.0232 C 288.95312,1815.4664 279.78679,1830.6363 271.40053,1845.8315 C 271.03676,1846.5671 270.69084,1847.3045 270.36669,1848.0437 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7115"/> |
<path sodipodi:nodetypes="ccccccc" d="M 346.00368,1848.0437 L 421.62503,1848.0437 C 428.97003,1840.2228 438.7864,1832.939 447.68023,1825.467 C 458.84604,1816.8373 471.83278,1808.6956 486.03756,1801.0232 L 394.311,1801.0232 C 383.34544,1808.9283 373.6358,1817.2033 365.26982,1825.7248 C 358.85208,1833.1628 351.37279,1840.4298 346.00368,1848.0437 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7117"/> |
<path id="polyline7119" style="fill:none;stroke:#000000;stroke-width:0.3;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none" d="M 119.13223,1839.1088 L 508.99281,1839.1088M 119.13223,1830.132 L 522.40202,1830.132M 119.13223,1821.1814 L 536.80452,1821.1814M 119.13223,1812.2228 L 553.69021,1812.2228M 119.13223,1803.2454 L 572.39877,1803.2454"/> |
<path id="path7194" d="M 116.53223,1848.0475 L 121.78223,1848.0475" style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> |
<path style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 116.53223,1801.0268 L 121.78223,1801.0268" id="path7196"/> |
</g> |
</svg> |
/tags/v5.12-baouque/services/presentations/images/cartes/europe_01.svg |
---|
New file |
0,0 → 1,24 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
<!-- Created with Inkscape (http://www.inkscape.org/) --> |
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" id="svg2443" sodipodi:version="0.32" inkscape:version="0.48.0 r9654" width="700.20001" height="544.77948" xml:space="preserve" sodipodi:docname="Europe_polar_stereographic_Caucasus_Urals_boundary.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.0"><metadata id="metadata2448"><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="defs2446"><linearGradient id="linearGradient6576"><stop id="stop6578" offset="0" style="stop-color:#ffffff;stop-opacity:0.87029289"/><stop style="stop-color:#ffffff;stop-opacity:0.84313725;" offset="0.24846628" id="stop6580"/><stop id="stop6582" offset="0.35889572" style="stop-color:#ffffff;stop-opacity:0.80784314;"/><stop style="stop-color:#ffffff;stop-opacity:0.77254902;" offset="0.45398772" id="stop6584"/><stop id="stop6586" offset="0.5398773" style="stop-color:#ffffff;stop-opacity:0.69803922;"/><stop style="stop-color:#ffffff;stop-opacity:0.5372549;" offset="0.67177916" id="stop6588"/><stop id="stop6590" offset="1" style="stop-color:#ffffff;stop-opacity:0;"/></linearGradient><linearGradient id="linearGradient6554"><stop style="stop-color:#ffffff;stop-opacity:0.84313726;" offset="0" id="stop6556"/><stop id="stop6562" offset="0.19938652" style="stop-color:#ffffff;stop-opacity:0.84313725;"/><stop style="stop-color:#ffffff;stop-opacity:0.80784314;" offset="0.29754603" id="stop6566"/><stop id="stop6568" offset="0.40797544" style="stop-color:#ffffff;stop-opacity:0.77254902;"/><stop style="stop-color:#ffffff;stop-opacity:0.69803922;" offset="0.5398773" id="stop6570"/><stop id="stop6572" offset="0.67177916" style="stop-color:#ffffff;stop-opacity:0.5372549;"/><stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop6558"/></linearGradient><linearGradient id="linearGradient30254"><stop id="stop30256" offset="0" style="stop-color:#ffffff;stop-opacity:0.70588237;"/><stop style="stop-color:#ffffff;stop-opacity:0.49803922;" offset="0.06936417" id="stop30278"/><stop style="stop-color:#ffffff;stop-opacity:0.42352942;" offset="0.18829629" id="stop30258"/><stop style="stop-color:#ffffff;stop-opacity:0.23137255;" offset="0.4757762" id="stop30260"/><stop id="stop30280" offset="0.52215797" style="stop-color:#ffffff;stop-opacity:0.21176471;"/><stop style="stop-color:#ffffff;stop-opacity:0.13333334;" offset="0.63416964" id="stop30262"/><stop id="stop30264" offset="0.72393781" style="stop-color:#d8d8d8;stop-opacity:0.10980392;"/><stop style="stop-color:#bfbfbf;stop-opacity:0.09411765;" offset="0.82466286" id="stop30268"/><stop id="stop30266" offset="1" style="stop-color:#000000;stop-opacity:0;"/></linearGradient><linearGradient id="linearGradient26900"><stop style="stop-color:#ffffff;stop-opacity:0.52816904;" offset="0" id="stop26902"/><stop id="stop30218" offset="0.31546393" style="stop-color:#ffffff;stop-opacity:0.42352942;"/><stop id="stop30216" offset="0.55670106" style="stop-color:#ffffff;stop-opacity:0.23137255;"/><stop id="stop30214" offset="0.85154641" style="stop-color:#ffffff;stop-opacity:0.13333334;"/><stop style="stop-color:#d8d8d8;stop-opacity:0.10980392;" offset="0.87422681" id="stop30234"/><stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop26904"/></linearGradient><radialGradient inkscape:collect="always" xlink:href="#linearGradient26900" id="radialGradient26906" cx="388" cy="-49.22052" fx="388" fy="-49.22052" r="665" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0,0.9586396,-1,0,338.77949,-421.17269)"/><linearGradient id="linearGradient26892"><stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop26894"/><stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop26896"/></linearGradient><inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="0 : 526.18109 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" id="perspective2450"/><inkscape:perspective id="perspective67867" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d"/><inkscape:perspective id="perspective76559" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d"/> |
<inkscape:perspective id="perspective76809" inkscape:persp3d-origin="227.08525 : 149.90885 : 1" inkscape:vp_z="454.1705 : 224.86328 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 224.86328 : 1" sodipodi:type="inkscape:persp3d"/><inkscape:perspective id="perspective26882" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d"/><radialGradient inkscape:collect="always" xlink:href="#linearGradient30254" id="radialGradient30252" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-2.1313608e-8,1.0258432,-1,-2.0776672e-8,338.7795,-447.24769)" cx="388" cy="-49.22052" fx="388" fy="-49.22052" r="665"/><radialGradient inkscape:collect="always" xlink:href="#linearGradient6554" id="radialGradient6560" cx="132" cy="198.77948" fx="132" fy="198.77948" r="326" gradientUnits="userSpaceOnUse"/><radialGradient inkscape:collect="always" xlink:href="#linearGradient6576" id="radialGradient6574" gradientUnits="userSpaceOnUse" cx="132" cy="198.77948" fx="132" fy="198.77948" r="326"/></defs><sodipodi:namedview inkscape:window-height="750" inkscape:window-width="1280" inkscape:pageshadow="2" inkscape:pageopacity="0.0" guidetolerance="10.0" gridtolerance="10.0" objecttolerance="10.0" borderopacity="1.0" bordercolor="#666666" pagecolor="#ffffff" id="base" showgrid="false" inkscape:zoom="8.0032384" inkscape:cx="643.4648" inkscape:cy="156.76913" inkscape:window-x="132" inkscape:window-y="0" inkscape:current-layer="g2452" showguides="true" inkscape:guide-bbox="true" inkscape:window-maximized="0"/><g id="g2452" inkscape:groupmode="layer" inkscape:label="Europe raw" transform="matrix(1.25,0,0,-1.25,52.773157,551.17946)"> |
<g id="g2862" transform="translate(264,285.84)"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path2864"/></g><g id="g2870" transform="translate(261.6,285.6)"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path2872"/></g><g id="g2942" transform="translate(272.4,277.2)"><path d="M 0,0 L 0,-0.24 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path2944"/></g><g id="g3006" transform="translate(272.64,277.44)"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3008"/></g><g id="g3046" transform="translate(272.4,265.92)"><path d="M 0,0 L 0,-0.24 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3048"/></g><g id="g3050" transform="translate(272.64,265.92)"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3052"/></g><g id="g3162" transform="translate(290.4,259.92)"><path d="M 0,0 L 0,-0.24 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3164"/></g><g id="g3256" transform="translate(294.24,233.76)"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3258"/></g><g id="g3276" transform="translate(292.8,233.76)"><path d="M 0,0 L 0,0.24 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3278"/></g><g id="g3802" transform="translate(316.08,285.6)"><path d="M 0,0 L -0.72,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3804"/></g><g id="g3870" transform="translate(252.48,284.88)"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3872"/></g><g id="g3882" transform="translate(254.64,285.12)"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3884"/></g><g id="g3970" transform="translate(233.52,283.2)"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3972"/></g><g id="g4510" transform="translate(281.76,216.96)"><path d="M 0,0 L 0,-0.24 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path4512"/></g><g id="g6006" transform="translate(317.28,224.88)"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path6008"/></g><g id="g6018" transform="translate(308.16,213.12)"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path6020"/></g><g id="g6394" transform="translate(322.56,238.8)"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path6396"/></g><g id="g6826" transform="translate(204.96,285.84)"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path6828"/></g><g id="g7010" transform="translate(233.52,283.2)"><path d="M 0,0 L 0,-0.24 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path7012"/></g><g id="g7218" transform="translate(237.84,266.16)"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path7220"/></g><g id="g7650" transform="translate(274.56,206.16)"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path7652"/></g><g id="g7898" transform="translate(280.8,205.2)"><path d="M 0,0 L 0,0.24 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path7900"/></g><g id="g7916" transform="translate(279.36,189.36)"><path d="M 0,0 L 0,0.48 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path7918"/></g><g id="g8188" transform="translate(301.68,206.16)"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path8190"/></g><g id="g8584" transform="translate(370.08,230.4)"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path8586"/></g><g id="g8904" transform="translate(205.2,285.84)"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path8906"/></g><g id="g8908" transform="translate(189.84,279.36)"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path8910"/></g><g id="g8956" transform="translate(200.4,288)"><path d="M 0,0 L -0.96,0 L 0,0" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path8958"/></g><g id="g9072" transform="translate(200.4,288)"><path d="M 0,0 L -0.96,0 L 0,0" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path9074"/></g><g id="g9504" transform="translate(205.44,280.8)"><path d="M 0,0 L 0,-0.24 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path9506"/></g><g id="g9932" transform="translate(181.44,251.52)"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path9934"/></g><g id="g9992" transform="translate(216.48,246)"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path9994"/></g><g id="g9996" transform="translate(216.24,246.24)"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path9998"/></g><g id="g10024" transform="translate(242.64,190.56)"><path d="M 0,0 L -0.48,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path10026"/></g><g id="g10664" transform="translate(313.68,146.16)"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path10666"/></g><g id="g10848" transform="translate(354.48,192.96)"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path10850"/></g><g id="g10988" transform="translate(377.52,174.96)"><path d="M 0,0 L 0,0.24 L 0,0" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path10990"/></g><g id="g10992" transform="translate(376.56,174.24)"><path d="M 0,0 L 0,0.24 L 0,0" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path10994"/></g><g id="g11028" transform="translate(354.48,192.96)"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path11030"/></g><g id="g11368" transform="translate(397.92,264)"><path d="M 0,0 L 0,-0.24 L 0,0" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path11370"/></g><g id="g12232" transform="translate(300.72,143.76)"><path d="M 0,0 L 0,-0.48 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path12234"/></g><g id="g12248" transform="translate(288.96,143.76)"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path12250"/></g><g id="g12748" transform="translate(351.6,151.68)"><path d="M 0,0 L 0,-0.24 L 0,0" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path12750"/></g><g id="g13024" transform="translate(448.56,245.04)"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path13026"/></g><g id="g13572" transform="translate(121.68,288)"/><g id="g13764" transform="translate(386.16,139.2)"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path13766"/></g><path id="path2472" style="fill:#90b2d6;fill-opacity:1;fill-rule:nonzero;stroke:none" d="M -360.74313,479.8661 L -360.74313,460.31141 L -360.04474,456.81951 L -360.04474,443.55026 L -359.34636,440.05835 L -359.34636,433.77291 L -358.64798,430.281 L -358.64798,427.48748 L -357.9496,423.99557 L -357.9496,417.71014 L -357.25122,414.21823 L -357.25122,410.72632 L -356.55284,407.93279 L -355.85445,404.44088 L -355.85445,400.94898 L -355.15607,398.15545 L -355.15607,394.66354 L -354.45769,391.17163 L -353.75931,388.37811 L -353.75931,384.8862 L -353.06093,381.39429 L -352.36255,378.60076 L -351.66416,375.10886 L -351.66416,371.61695 L -350.96578,368.82342 L -349.56902,361.83961 L -348.87064,359.04608 L -347.47387,352.06226 L -346.77549,349.26874 L -346.07711,345.77683 L -345.37873,342.9833 L -343.98197,335.99949 L -343.28358,333.20596 C -337.27459,305.23869 -327.47106,278.34808 -318.14185,251.49531 L -316.74508,248.70178 L -315.34832,245.20988 L -312.55479,239.62282 L -311.85641,236.13092 L -309.06289,230.54386 C -301.29339,213.6052 -293.87018,196.39591 -284.61953,180.26039 L -283.22277,176.76848 L -281.12762,173.97495 C -274.72579,161.36625 -266.54017,149.85751 -259.47779,137.65911 L -257.38265,134.86558 L -255.98588,132.07205 L -251.79559,126.485 L -250.39883,123.69148 L -246.20854,118.10442 L -244.81178,116.00928 L -238.52634,107.6287 L -237.12958,104.83517 L -235.03443,102.74003 L -228.749,94.359447 L -226.65385,92.264302 L -222.46357,86.677249 L -220.36842,84.582105 L -216.17813,78.995052 L -214.08299,76.899907 L -209.8927,71.312854 L -207.79755,69.217709 L -205.70241,66.424183 L -203.60726,64.329038 L -201.51212,61.535511 L -199.41697,59.440366 L -197.32183,56.64684 L -194.5283,54.551695 L -192.43316,51.758169 L -190.33801,49.663024 L -188.24287,46.869497 L -186.14772,44.774352 L -183.35419,42.679208 L -181.25905,39.885681 L -179.16391,37.790536 L -176.37038,35.695391 L -174.27523,32.901865 L -172.18009,30.80672 L -169.38656,28.711575 L -167.29142,25.918049 C -158.9283,18.852755 -151.5691,10.946493 -142.84806,4.2682187 L -140.75292,2.1730739 L -135.16586,-2.0172158 L -133.07072,-4.1123607 L -127.48367,-8.3026504 L -125.38852,-10.397795 L -119.80147,-14.588085 L -117.70632,-16.68323 L -109.32574,-22.968664 L -107.2306,-25.063809 L -104.43707,-26.460572 L -96.056493,-32.746007 L -93.961348,-34.14277 L -88.374295,-38.33306 L -85.580768,-39.729823 L -79.993716,-43.920113 L -77.200189,-45.316876 L -74.406663,-47.412021 L -71.613136,-48.808784 L -68.81961,-50.903929 L -66.026083,-52.300692 L -63.232557,-54.395837 L -60.43903,-55.7926 L -57.645504,-57.887745 L -54.851977,-59.284508 L -52.058451,-61.379653 L -46.471398,-64.17318 L -43.677872,-66.268325 L -38.090819,-69.061851 L -35.297292,-71.156996 L -31.805384,-72.553759 L -26.218331,-75.347286 L -23.424805,-77.44243 L -17.837752,-80.235957 L -14.345844,-81.63272 L -5.9652643,-85.82301 L -2.4733562,-87.219773 L 5.9072232,-91.410063 L 9.3991313,-92.806826 L 14.986184,-95.600352 L 18.478092,-96.997116 L 24.065145,-99.790642 L 27.557053,-100.48902 L 33.144106,-103.28255 L 36.636014,-104.67931 L 39.429541,-106.07608 C 66.282314,-115.40529 93.172916,-125.20882 121.14019,-131.21781 L 123.93372,-131.9162 L 130.91753,-133.31296 L 133.71106,-134.01134 L 137.20297,-134.70972 L 139.99649,-135.4081 L 146.98031,-136.80487 L 149.77384,-137.50325 L 156.75765,-138.90001 L 159.55118,-139.59839 L 163.04309,-139.59839 L 166.53499,-140.29678 L 169.32852,-140.99516 L 172.82043,-141.69354 L 176.31234,-141.69354 L 179.10586,-142.39192 L 182.59777,-143.0903 L 186.08968,-143.0903 L 188.88321,-143.78868 L 192.37511,-143.78868 L 195.86702,-144.48707 L 198.66055,-145.18545 L 202.15246,-145.18545 L 205.64437,-145.88383 L 211.9298,-145.88383 L 215.42171,-146.58221 L 218.21523,-146.58221 L 221.70714,-147.28059 L 227.99258,-147.28059 L 231.48449,-147.97897 L 244.75374,-147.97897 L 248.24564,-148.67736 L 287.35501,-148.67736 L 290.84692,-147.97897 L 304.11617,-147.97897 L 307.60808,-147.28059 L 313.89352,-147.28059 L 317.38542,-146.58221 L 320.17895,-146.58221 L 323.67086,-145.88383 L 329.95629,-145.88383 L 333.4482,-145.18545 L 336.94011,-145.18545 L 339.73364,-144.48707 L 343.22554,-143.78868 L 346.71745,-143.78868 L 349.51098,-143.0903 L 353.00289,-143.0903 L 356.49479,-142.39192 C 370.49444,-140.29096 384.529,-138.14925 398.39769,-134.70972 L 401.8896,-134.01134 L 404.68313,-133.31296 L 411.66694,-131.9162 L 414.46047,-131.21781 L 417.95238,-130.51943 L 420.7459,-129.82105 L 424.23781,-129.12267 L 427.03134,-128.42429 L 430.52325,-127.02753 L 433.31677,-126.32914 L 440.30059,-124.93238 L 443.09411,-123.53562 L 446.58602,-122.83724 L 449.37955,-122.13885 L 452.87146,-120.74209 L 455.66498,-120.04371 L 459.15689,-118.64695 L 461.95042,-117.94856 L 465.44233,-116.5518 L 468.23585,-115.85342 L 471.72776,-114.45666 L 474.52129,-113.75827 L 477.31481,-112.36151 L 480.80672,-111.66313 L 483.60025,-110.26637 L 487.09216,-109.56798 L 489.88568,-108.17122 L 493.37759,-106.77446 L 496.17112,-106.07608 L 498.96464,-104.67931 L 502.45655,-103.28255 L 508.04361,-100.48902 L 511.53551,-99.790642 L 517.12257,-96.997116 L 520.61447,-95.600352 L 526.20153,-92.806826 L 529.69344,-91.410063 L 538.07401,-87.219773 L 541.56592,-85.82301 L 549.9465,-81.63272 L 553.43841,-80.235957 L 559.02546,-77.44243 L 561.81899,-75.347286 L 567.40604,-72.553759 L 570.89795,-71.156996 C 582.93921,-63.605745 595.48971,-56.872182 607.21379,-48.808784 L 610.00732,-47.412021 L 612.80085,-45.316876 L 615.59437,-43.920113 L 621.18143,-39.729823 L 623.97495,-38.33306 L 629.56201,-34.14277 L 631.65715,-32.746007 L 640.03773,-26.460572 L 642.83126,-25.063809 L 644.9264,-22.968664 L 653.30698,-16.68323 L 655.40213,-14.588085 L 660.98918,-10.397795 L 663.08432,-8.3026504 L 668.67138,-4.1123607 L 670.76652,-2.0172158 L 676.35357,2.1730739 L 678.44872,4.2682187 L 681.24225,6.3633636 L 683.33739,8.4585084 L 686.13092,10.553653 L 688.22606,12.648798 L 691.01959,14.743943 L 693.11473,17.537469 L 695.90826,19.632614 L 698.0034,21.727759 L 700.79693,23.822904 L 702.89208,25.918049 L 704.98722,28.711575 L 707.78075,30.80672 L 709.87589,32.901865 L 711.97104,35.695391 L 714.76456,37.790536 L 716.85971,39.885681 L 718.95485,42.679208 L 721.74838,44.774352 L 723.84352,46.869497 L 725.93867,49.663024 L 728.03381,51.758169 L 730.12896,54.551695 L 732.92249,56.64684 L 735.01763,59.440366 L 737.11278,61.535511 L 739.20792,64.329038 L 741.30306,66.424183 L 743.39821,69.217709 L 745.49335,71.312854 C 757.65101,86.915863 770.92899,101.56733 781.8092,118.10442 L 785.99949,123.69148 L 787.39625,126.485 L 791.58654,132.07205 L 792.9833,134.86558 C 799.17562,144.52653 806.54937,155.56096 811.83961,165.59437 L 813.93475,168.3879 L 816.72828,173.97495 L 818.82342,176.76848 L 820.22019,180.26039 L 823.01371,185.84744 L 825.10886,188.64097 L 827.90239,194.22802 L 829.29915,197.71993 L 833.48944,206.10051 L 834.8862,209.59241 L 839.07649,217.97299 L 840.47325,221.4649 L 843.26678,227.05195 L 844.66354,230.54386 L 847.45707,236.13092 L 848.15545,239.62282 L 850.94898,245.20988 L 852.34574,248.70178 L 853.74251,251.49531 L 854.44089,254.28884 L 855.83765,257.78075 L 857.23441,260.57427 L 857.93279,264.06618 L 859.32956,266.85971 L 860.02794,270.35161 L 861.4247,273.14514 L 862.12308,275.93867 L 863.51985,279.43058 L 864.21823,282.2241 L 865.61499,285.71601 L 866.31337,288.50954 C 870.99253,301.06586 874.03049,313.99756 877.48748,326.92053 L 878.18586,329.71405 L 878.88424,333.20596 L 879.58262,335.99949 L 880.97939,342.9833 L 881.67777,345.77683 L 882.37615,349.26874 L 883.07453,352.06226 L 884.4713,359.04608 L 885.16968,361.83961 L 886.56644,368.82342 L 887.26482,371.61695 L 887.26482,375.10886 L 887.9632,378.60076 L 888.66159,381.39429 L 889.35997,384.8862 L 889.35997,388.37811 L 890.05835,391.17163 L 890.75673,394.66354 L 890.75673,398.15545 L 891.45511,400.94898 L 891.45511,404.44088 L 892.15349,407.93279 L 892.85188,410.72632 L 892.85188,414.21823 L 893.55026,417.71014 L 893.55026,423.99557 L 894.24864,427.48748 L 894.24864,430.281 L 894.94702,433.77291 L 894.94702,440.05835 L 895.6454,443.55026 L 895.6454,456.81951 L 896.34378,460.31141 L 896.34378,479.8661 L 267.80033,479.8661"/><path style="fill:#d2d0c5;fill-opacity:1;fill-rule:nonzero;stroke:none" d="M -360.74313,479.86612 L -360.74313,478.48391 L -360.01565,477.75642 L -360.01565,472.15482 L -357.9787,470.77261 L -357.25122,471.50009 L -357.25122,472.8823 L -353.75931,477.10169 L -353.03183,479.13864 L -353.03183,479.86612 L -360.74313,479.86612 z M -325.82405,479.86612 L -326.55153,479.13864 L -327.93374,478.48391 L -326.55153,478.48391 L -325.09657,479.86612 L -325.82405,479.86612 z M -161.70437,479.86612 L -161.70437,479.13864 L -158.93994,477.10169 L -159.59467,477.75642 L -158.21246,477.10169 L -158.21246,477.75642 L -157.48498,475.64673 L -157.48498,476.37421 L -156.83025,474.992 L -156.10277,475.64673 L -156.10277,474.992 L -155.44803,474.992 L -154.72055,473.60978 L -151.95612,473.60978 L -151.22864,472.8823 L -148.46422,472.8823 L -147.73674,472.15482 L -147.00926,474.992 L -145.91803,474.26452 L -147.00926,474.26452 L -146.35452,472.8823 L -145.62704,470.77261 L -146.35452,472.15482 L -143.51735,463.13406 L -142.86261,461.6791 L -142.13513,463.13406 L -142.13513,466.62597 L -142.86261,466.62597 L -142.13513,468.66291 L -143.51735,468.66291 L -142.86261,470.11788 L -143.51735,470.11788 L -143.51735,470.77261 L -144.24483,470.77261 L -144.24483,471.50009 L -143.51735,471.50009 L -141.4804,470.11788 L -140.02544,467.2807 L -140.75292,466.62597 L -139.37071,465.17101 L -139.37071,462.40658 L -138.64323,459.64215 L -137.98849,458.91467 L -138.64323,458.91467 L -137.98849,457.53246 L -138.64323,457.53246 L -137.26101,455.42276 L -137.98849,454.69528 L -134.49658,454.69528 L -134.49658,454.33154 L -135.15132,454.04055 L -134.49658,453.31307 L -134.49658,452.65834 L -135.8788,452.65834 L -136.53353,451.93085 L -136.53353,451.20337 L -135.15132,451.20337 L -135.8788,450.54864 L -133.7691,449.82116 L -134.49658,449.16643 L -135.8788,449.16643 L -135.15132,447.71147 L -134.49658,444.94704 L -134.49658,444.21956 L -133.04162,444.21956 L -132.38689,444.94704 L -131.00468,445.67452 L -133.04162,444.94704 L -134.49658,447.05673 L -133.04162,448.43895 L -132.38689,448.43895 L -131.65941,449.82116 L -131.00468,449.82116 L -131.65941,449.16643 L -129.54971,450.54864 L -128.89498,451.20337 L -129.54971,451.93085 L -128.1675,452.65834 L -128.89498,451.93085 L -128.1675,451.93085 L -126.78529,451.20337 L -125.40307,449.82116 L -125.40307,450.54864 L -124.02086,451.20337 L -119.07399,449.82116 L -117.69178,448.43895 L -117.03704,448.43895 L -117.03704,447.71147 L -115.58208,447.71147 L -114.19987,446.32925 L -114.92735,446.32925 L -113.54514,445.67452 L -115.58208,445.67452 L -114.92735,444.94704 L -113.1814,445.52902 L -111.43544,444.94704 L -113.54514,444.94704 L -112.81766,444.21956 L -114.19987,443.56482 L -112.09017,443.56482 L -114.19987,442.83734 L -111.43544,442.83734 L -112.81766,442.18261 L -111.43544,441.45513 L -112.81766,441.45513 L -111.43544,440.07292 L -111.43544,440.72765 L -108.59827,440.07292 L -107.94353,440.07292 L -107.94353,439.34544 L -105.83384,439.34544 L -106.56132,438.6907 L -109.32575,439.34544 L -108.59827,438.6907 L -109.32575,437.23574 L -107.21605,437.23574 L -107.21605,436.58101 L -107.94353,436.58101 L -107.21605,435.85353 L -106.56132,435.85353 L -107.21605,435.1988 L -105.83384,435.85353 L -108.59827,433.74383 L -106.56132,433.74383 L -107.21605,433.0891 L -105.83384,433.0891 L -105.83384,432.36162 L -106.56132,432.36162 L -105.83384,431.70689 L -105.83384,430.97941 L -105.10636,430.97941 L -105.10636,430.25193 L -104.45163,430.25193 L -105.10636,428.86971 L -103.06941,427.4875 L -102.34193,428.21498 L -103.06941,428.86971 L -101.61445,428.86971 L -102.34193,427.4875 L -100.66873,428.72422 L -99.577504,428.21498 L -100.23224,427.4875 L -100.95972,427.4875 L -99.577504,424.72307 L -100.23224,424.72307 L -98.122542,422.61338 L -98.122542,421.23116 L -93.248421,415.62956 L -93.975902,414.90208 L -91.138726,413.51987 L -92.593688,413.51987 L -91.866207,413.01063 L -93.248421,413.51987 L -95.358115,415.62956 L -96.085596,415.62956 L -96.085596,414.24735 L -95.358115,412.79239 L -93.975902,405.15384 L -96.740329,410.02796 L -98.122542,409.30048 L -97.46781,410.75544 L -97.46781,411.41017 L -96.085596,411.41017 L -95.358115,412.79239 L -96.085596,412.13765 L -96.740329,412.13765 L -98.122542,414.90208 L -102.34193,419.7762 L -103.06941,419.12147 L -102.34193,418.39399 L -103.72414,419.12147 L -103.72414,419.7762 L -106.56132,421.23116 L -108.59827,421.8859 L -111.43544,421.23116 L -110.70796,420.50368 L -111.43544,420.50368 L -112.09017,419.7762 L -110.70796,419.7762 L -112.81766,418.39399 L -112.09017,418.39399 L -113.54514,417.73925 L -112.81766,417.01177 L -114.19987,415.62956 L -112.81766,416.28429 L -112.81766,414.90208 L -111.43544,415.62956 L -111.43544,414.90208 L -110.70796,414.90208 L -111.43544,413.51987 L -110.05323,413.51987 L -110.70796,412.79239 L -109.32575,412.79239 L -110.05323,412.13765 L -108.59827,412.13765 L -107.94353,411.41017 L -107.21605,411.41017 L -107.21605,410.75544 L -106.56132,411.41017 L -106.56132,410.75544 L -105.10636,410.02796 L -104.45163,410.75544 L -105.10636,409.30048 L -104.45163,410.02796 L -103.72414,409.30048 L -103.72414,410.02796 L -102.34193,410.02796 L -102.34193,409.30048 L -103.06941,408.64574 L -102.34193,407.91826 L -101.61445,408.64574 L -100.95972,407.26353 L -102.34193,407.26353 L -102.34193,406.53605 L -103.06941,405.15384 L -101.61445,404.42636 L -100.23224,405.80857 L -100.95972,404.42636 L -100.23224,404.42636 L -100.23224,403.77162 L -99.577504,403.77162 L -100.23224,403.04414 L -99.577504,403.04414 L -99.577504,402.31666 L -98.850023,402.31666 L -99.577504,401.66193 L -98.850023,400.27971 L -98.122542,400.93445 L -98.122542,399.55223 L -97.46781,399.55223 L -98.122542,398.82475 L -96.740329,399.55223 L -97.46781,398.82475 L -96.085596,397.44254 L -96.085596,396.06033 L -95.358115,396.06033 L -95.358115,395.33284 L -94.630634,396.06033 L -94.630634,395.33284 L -93.975902,395.33284 L -93.975902,393.95063 L -92.593688,395.33284 L -93.248421,393.95063 L -92.593688,391.84094 L -92.593688,392.56842 L -91.866207,392.56842 L -92.593688,391.1862 L -91.138726,390.45872 L -91.138726,393.2959 L -89.756513,391.84094 L -89.247276,392.56842 L -88.374299,392.56842 L -89.10178,391.84094 L -87.646818,390.45872 L -86.992085,390.45872 L -86.992085,391.1862 L -87.646818,392.56842 L -86.264605,391.1862 L -85.609872,391.84094 L -84.882391,390.45872 L -84.15491,390.45872 L -84.882391,391.84094 L -84.15491,391.1862 L -83.500177,389.80399 L -81.390483,389.07651 L -82.772697,389.80399 L -78.626056,389.07651 L -76.516361,389.80399 L -76.516361,391.1862 L -75.134148,390.45872 L -75.134148,391.84094 L -85.609872,395.33284 L -88.374299,393.95063 L -89.10178,394.67811 L -89.10178,396.78781 L -89.756513,396.78781 L -87.646818,397.44254 L -90.483994,400.27971 L -89.756513,404.42636 L -90.483994,404.42636 L -91.138726,405.15384 L -90.483994,406.53605 L -89.756513,405.15384 L -90.483994,407.26353 L -89.756513,406.53605 L -89.756513,407.26353 L -90.483994,408.64574 L -89.10178,409.30048 L -89.10178,411.41017 L -87.646818,409.30048 L -87.646818,411.41017 L -86.992085,412.79239 L -87.646818,414.24735 L -86.264605,414.90208 L -86.482849,415.12032 L -84.882391,415.62956 L -85.609872,414.90208 L -83.500177,416.28429 L -84.15491,417.01177 L -83.500177,417.01177 L -82.772697,417.73925 L -80.663002,417.01177 L -81.390483,419.7762 L -80.663002,419.7762 L -81.390483,421.23116 L -78.626056,418.39399 L -78.626056,419.12147 L -77.898575,418.39399 L -76.516361,418.39399 L -75.134148,417.73925 L -75.134148,418.39399 L -73.679186,418.39399 L -74.406667,419.7762 L -73.679186,419.7762 L -74.406667,420.50368 L -76.516361,423.26811 L -75.788881,423.26811 L -74.406667,424.72307 L -74.406667,426.10528 L -73.679186,428.21498 L -73.024453,428.21498 L -74.406667,430.25193 L -73.024453,428.86971 L -73.024453,428.21498 L -73.024453,426.76002 L -71.64224,425.3778 L -73.024453,422.61338 L -72.296972,421.23116 L -70.187278,419.12147 L -68.805064,418.39399 L -68.150332,416.28429 L -66.040637,416.28429 L -63.930943,418.39399 L -64.658424,416.28429 L -63.930943,416.28429 L -62.548729,419.12147 L -61.821248,423.99559 L -63.203462,428.21498 L -69.532545,439.34544 L -72.296972,442.83734 L -76.516361,447.05673 L -78.626056,447.05673 L -81.390483,449.16643 L -85.609872,451.93085 L -87.646818,456.15024 L -84.882391,453.31307 L -81.390483,452.65834 L -81.390483,450.54864 L -79.280789,450.54864 L -78.626056,449.82116 L -78.626056,449.16643 L -75.134148,447.71147 L -73.679186,446.32925 L -70.914759,445.67452 L -70.914759,444.94704 L -68.805064,444.94704 L -67.422851,442.18261 L -67.422851,442.83734 L -66.040637,442.18261 L -65.313156,441.45513 L -66.040637,441.45513 L -65.313156,440.07292 L -64.658424,440.72765 L -64.658424,440.07292 L -63.930943,440.07292 L -63.203462,435.85353 L -58.32934,435.1988 L -56.947127,433.74383 L -56.219646,433.0891 L -54.837432,432.36162 L -54.837432,431.70689 L -54.182699,431.70689 L -54.837432,430.97941 L -54.182699,429.59719 L -53.455219,428.86971 L -52.727738,422.61338 L -51.345524,420.50368 L -52.073005,418.39399 L -50.690791,417.01177 L -51.345524,414.24735 L -49.963311,410.75544 L -49.23583,405.80857 L -49.963311,405.15384 L -50.690791,405.15384 L -49.23583,403.04414 L -48.581097,401.66193 L -47.853616,400.93445 L -48.581097,400.93445 L -47.853616,400.27971 L -48.581097,400.27971 L -47.853616,398.82475 L -46.471403,396.78781 L -47.198883,396.78781 L -46.471403,395.33284 L -45.743922,394.67811 L -45.089189,395.33284 L -42.979494,393.2959 L -42.252014,393.2959 L -41.597281,392.56842 L -40.8698,392.56842 L -40.8698,391.1862 L -38.760106,391.84094 L -38.105373,391.84094 L -38.760106,391.1862 L -38.105373,391.1862 L -36.723159,389.80399 L -36.723159,390.45872 L -35.995678,391.1862 L -35.995678,390.45872 L -35.995678,389.07651 L -34.613465,389.07651 L -35.268198,388.34903 L -33.885984,387.6943 L -34.613465,387.6943 L -33.231251,386.31208 L -31.776289,384.20239 L -32.50377,383.47491 L -31.776289,382.09269 L -31.121557,382.82017 L -31.121557,382.09269 L -30.394076,381.36521 L -29.739343,381.36521 L -27.629649,379.32827 L -25.519954,378.60079 L -24.792473,379.32827 L -24.792473,377.8733 L -24.137741,377.8733 L -23.41026,378.60079 L -22.755527,378.60079 L -22.028046,381.36521 L -22.028046,377.8733 L -21.300565,378.60079 L -21.300565,383.47491 L -20.645833,380.71048 L -19.918352,380.71048 L -18.536138,382.09269 L -19.263619,380.71048 L -18.536138,381.36521 L -17.808657,380.71048 L -16.426444,381.36521 L -15.771711,381.36521 L -15.771711,380.71048 L -15.04423,381.36521 L -14.316749,381.36521 L -14.316749,382.09269 L -13.662016,382.09269 L -14.316749,382.82017 L -12.934536,383.47491 L -12.279803,383.47491 L -12.934536,386.96682 L -11.552322,385.5846 L -11.552322,386.31208 L -12.279803,386.96682 L -12.279803,387.6943 L -12.934536,389.07651 L -15.771711,389.07651 L -15.771711,389.80399 L -14.316749,389.80399 L -15.04423,391.1862 L -12.934536,389.07651 L -12.279803,389.07651 L -11.552322,390.45872 L -10.824841,389.80399 L -9.4426276,391.84094 L -10.170108,396.06033 L -11.552322,396.78781 L -11.552322,395.33284 L -13.662016,398.17002 L -16.426444,398.82475 L -16.426444,400.27971 L -17.808657,400.93445 L -18.536138,402.31666 L -18.536138,401.66193 L -19.918352,403.04414 L -21.300565,403.77162 L -20.645833,403.77162 L -20.645833,405.15384 L -19.263619,403.77162 L -17.153924,403.77162 L -17.153924,404.42636 L -16.426444,403.77162 L -16.426444,403.04414 L -15.771711,403.04414 L -15.771711,400.93445 L -13.662016,398.82475 L -12.934536,398.82475 L -13.662016,399.55223 L -12.934536,399.55223 L -12.279803,397.44254 L -10.824841,396.78781 L -13.662016,400.93445 L -13.662016,402.31666 L -10.170108,396.06033 L -8.7878948,396.06033 L -8.060414,393.2959 L -7.3329331,392.56842 L -7.3329331,393.95063 L -6.6782003,392.56842 L -5.9507195,392.56842 L -5.9507195,397.44254 L -5.9507195,398.17002 L -6.6782003,398.17002 L -5.9507195,399.55223 L -6.6782003,400.27971 L -5.9507195,400.27971 L -6.6782003,400.93445 L -5.9507195,400.93445 L -5.9507195,401.66193 L -5.2959867,400.93445 L -4.5685059,401.66193 L -3.8410251,401.66193 L -3.8410251,402.31666 L -3.1862923,403.04414 L -5.2959867,403.77162 L -8.4969025,405.59032 L -8.4241544,405.66307 L -4.5685059,403.77162 L -4.5685059,404.42636 L -3.8410251,404.42636 L -5.2959867,405.15384 L -5.2959867,406.39055 L -5.2232387,406.39055 L -5.1504906,406.39055 L -4.5685059,405.80857 L -3.1862923,405.80857 L -4.5685059,406.53605 L -7.3329331,407.91826 L -4.5685059,407.26353 L -5.9507195,407.91826 L -4.5685059,407.91826 L -7.3329331,410.02796 L -5.2959867,408.64574 L -5.9507195,410.02796 L -4.5685059,408.64574 L -3.1862923,408.64574 L -3.1862923,407.91826 L -2.4588115,409.30048 L -1.8040787,409.30048 L -2.4588115,410.02796 L -0.34911701,409.30048 L -0.34911701,410.75544 L -1.8040787,412.13765 L -0.34911701,411.41017 L -0.34911701,413.51987 L 0.30561575,414.24735 L -0.34911701,414.90208 L -0.34911701,417.01177 L 0.30561575,414.90208 L 1.0330966,414.90208 L 1.6878294,415.62956 L 2.4153102,414.90208 L 1.6878294,417.01177 L 1.6878294,419.12147 L 2.4153102,416.28429 L 2.4153102,418.39399 L 3.142791,417.73925 L 3.142791,418.39399 L 3.142791,419.12147 L 4.5250046,417.73925 L 4.5250046,418.39399 L 5.1797374,421.8859 L 5.1797374,419.12147 L 6.6346991,419.12147 L 6.6346991,418.39399 L 8.0169127,417.73925 L 5.1797374,417.73925 L 5.9072182,417.01177 L 5.1797374,416.28429 L 6.6346991,416.28429 L 6.6346991,417.01177 L 8.0169127,417.01177 L 9.3991263,417.01177 L 10.126607,417.73925 L 9.3991263,419.12147 L 9.3991263,420.50368 L 10.126607,420.50368 L 10.126607,419.7762 L 10.78134,420.50368 L 11.508821,419.7762 L 11.508821,420.50368 L 10.78134,422.61338 L 11.508821,423.26811 L 11.508821,422.61338 L 12.163554,421.8859 L 12.527294,421.23116 L 12.163554,421.23116 L 11.508821,420.50368 L 12.891034,419.7762 L 12.891034,420.50368 L 14.273248,421.8859 L 14.273248,421.23116 L 15.655462,421.23116 L 15.000729,421.8859 L 15.655462,422.61338 L 15.000729,423.26811 L 14.273248,423.26811 L 15.364469,423.85009 L 15.655462,423.26811 L 16.382942,423.26811 L 16.382942,423.99559 L 17.110423,423.99559 L 16.382942,424.72307 L 17.110423,424.72307 L 16.382942,426.10528 L 15.000729,426.76002 L 15.655462,427.4875 L 16.382942,426.76002 L 17.110423,424.72307 L 17.546912,425.15956 L 17.765156,424.72307 L 18.492637,425.3778 L 19.87485,425.3778 L 17.765156,427.4875 L 19.14737,427.4875 L 18.492637,428.21498 L 18.492637,429.59719 L 19.14737,428.86971 L 19.14737,427.4875 L 21.257064,426.76002 L 20.602331,427.4875 L 21.984545,426.76002 L 22.639278,428.21498 L 21.984545,428.21498 L 21.984545,428.86971 L 22.639278,428.21498 L 23.366758,428.86971 L 23.366758,429.59719 L 24.094239,428.86971 L 23.803247,430.03368 L 24.748972,429.59719 L 24.748972,430.25193 L 25.476453,430.25193 L 24.748972,430.97941 L 26.131186,430.97941 L 24.748972,431.70689 L 26.131186,431.70689 L 25.476453,433.0891 L 26.858667,431.70689 L 27.586147,433.0891 L 26.858667,433.74383 L 28.24088,433.0891 L 28.24088,433.74383 L 28.968361,433.0891 L 28.968361,433.74383 L 29.623094,433.74383 L 28.968361,434.47131 L 29.623094,434.47131 L 30.13233,434.98055 L 29.623094,435.85353 L 30.350575,435.1988 L 31.732788,435.85353 L 32.460269,435.85353 L 33.115002,437.96322 L 32.460269,437.23574 L 32.460269,437.96322 L 30.350575,437.96322 L 30.350575,438.6907 L 28.968361,437.96322 L 29.623094,438.6907 L 28.968361,438.6907 L 28.24088,437.96322 L 28.968361,439.34544 L 27.586147,440.07292 L 25.476453,438.6907 L 24.748972,437.96322 L 25.476453,439.34544 L 23.366758,437.96322 L 24.748972,439.34544 L 22.639278,438.6907 L 21.984545,437.96322 L 21.984545,439.34544 L 20.602331,437.96322 L 21.257064,440.07292 L 20.602331,440.72765 L 19.87485,439.34544 L 19.87485,440.07292 L 19.14737,440.07292 L 19.87485,440.72765 L 19.14737,440.72765 L 17.765156,439.34544 L 17.765156,440.07292 L 19.87485,442.18261 L 16.382942,442.83734 L 16.382942,443.56482 L 15.655462,443.56482 L 16.382942,444.21956 L 15.000729,444.94704 L 14.273248,446.32925 L 11.508821,447.05673 L 15.655462,447.71147 L 14.273248,447.71147 L 13.618515,447.71147 L 12.163554,449.16643 L 14.273248,447.71147 L 16.382942,449.16643 L 15.655462,449.82116 L 14.273248,449.82116 L 17.765156,450.54864 L 18.492637,451.93085 L 18.492637,454.69528 L 17.110423,456.15024 L 15.655462,456.80498 L 16.382942,456.80498 L 16.382942,457.53246 L 17.110423,457.53246 L 17.110423,458.18719 L 16.382942,458.18719 L 17.110423,458.91467 L 17.110423,458.18719 L 17.765156,457.53246 L 17.765156,456.80498 L 19.14737,457.53246 L 18.492637,456.80498 L 17.765156,456.80498 L 17.765156,456.15024 L 18.492637,455.42276 L 19.87485,456.15024 L 19.14737,455.42276 L 19.87485,455.42276 L 20.602331,456.15024 L 21.257064,456.15024 L 21.257064,454.69528 L 21.984545,454.69528 L 21.984545,457.53246 L 22.639278,456.80498 L 23.366758,457.53246 L 24.748972,456.15024 L 24.748972,457.53246 L 26.131186,456.80498 L 26.858667,457.53246 L 26.858667,458.91467 L 26.858667,461.6791 L 27.586147,462.40658 L 27.586147,458.91467 L 27.586147,458.18719 L 28.24088,458.18719 L 28.24088,457.53246 L 29.623094,457.53246 L 29.623094,458.18719 L 30.350575,457.53246 L 31.732788,458.18719 L 32.460269,457.53246 L 33.115002,458.18719 L 34.569963,456.80498 L 36.60691,457.53246 L 35.952177,458.18719 L 35.224696,458.18719 L 33.842483,458.91467 L 34.569963,459.64215 L 34.569963,460.29688 L 36.60691,460.29688 L 36.60691,461.02437 L 35.952177,461.02437 L 35.952177,462.40658 L 35.224696,462.40658 L 36.60691,463.78879 L 35.952177,465.17101 L 37.334391,465.17101 L 36.60691,465.89849 L 37.334391,465.89849 L 37.334391,467.2807 L 38.061872,466.62597 L 38.716604,467.2807 L 39.444085,466.62597 L 39.444085,467.2807 L 40.098818,465.89849 L 40.826299,468.00818 L 40.098818,468.00818 L 40.098818,468.66291 L 40.826299,468.00818 L 41.55378,469.39039 L 41.55378,468.66291 L 42.208512,468.66291 L 42.935993,470.11788 L 41.55378,470.11788 L 42.208512,470.77261 L 42.935993,470.11788 L 44.318207,470.77261 L 44.318207,471.50009 L 45.70042,472.8823 L 46.427901,474.26452 L 47.082634,474.992 L 45.045688,477.10169 L 45.045688,478.48391 L 44.318207,477.75642 L 45.045688,479.86612 L 31.732788,479.86612 L 32.460269,479.13864 L 31.078055,477.10169 L 31.732788,475.64673 L 31.078055,474.992 L 33.115002,474.26452 L 33.115002,473.60978 L 31.078055,474.26452 L 31.078055,473.60978 L 30.350575,473.60978 L 30.350575,472.8823 L 29.623094,473.60978 L 31.078055,474.26452 L 31.078055,474.992 L 31.078055,477.10169 L 31.078055,477.75642 L 31.732788,479.86612 L 26.131186,479.86612 L 3.142791,479.86612 L 3.142791,479.13864 L 3.7975238,478.48391 L 4.5250046,479.13864 L 4.5250046,478.48391 L 3.7975238,477.75642 L 3.142791,479.13864 L 2.4153102,477.10169 L 2.4153102,479.86612 L -47.198883,479.86612 L -47.853616,479.13864 L -48.581097,479.13864 L -48.581097,479.86612 L -55.564913,479.86612 L -54.837432,479.13864 L -56.219646,479.86612 L -55.564913,479.13864 L -55.564913,478.48391 L -57.674607,479.86612 L -59.711554,479.86612 L -60.439035,479.86612 L -59.711554,479.13864 L -61.166516,478.48391 L -60.439035,479.13864 L -61.166516,479.86612 L -65.313156,479.86612 L -65.313156,477.75642 L -66.69537,479.13864 L -66.040637,479.13864 L -66.040637,479.86612 L -71.64224,479.86612 L -71.64224,479.13864 L -70.914759,479.13864 L -70.187278,477.10169 L -70.914759,477.10169 L -73.024453,477.75642 L -72.296972,477.10169 L -73.024453,477.10169 L -72.296972,476.37421 L -73.024453,476.37421 L -73.679186,475.64673 L -73.679186,474.992 L -74.406667,475.64673 L -73.679186,474.26452 L -74.406667,474.26452 L -74.406667,474.992 L -75.134148,475.64673 L -73.024453,477.10169 L -73.679186,477.10169 L -74.406667,477.75642 L -73.679186,478.48391 L -74.406667,478.48391 L -72.296972,479.13864 L -73.679186,479.13864 L -73.679186,479.86612 L -99.577504,479.86612 L -98.850023,477.75642 L -100.23224,473.60978 L -98.122542,471.50009 L -98.122542,470.11788 L -93.975902,468.00818 L -92.593688,465.17101 L -89.10178,460.29688 L -88.374299,456.80498 L -89.756513,458.91467 L -89.10178,460.29688 L -94.630634,466.62597 L -95.358115,468.00818 L -98.122542,470.11788 L -98.850023,471.50009 L -100.95972,473.60978 L -100.95972,471.50009 L -104.45163,476.37421 L -105.83384,479.86612 L -151.95612,479.86612 L -158.93994,479.86612 L -159.59467,479.13864 L -161.70437,479.86612 z M -100.95972,473.60978 L -98.850023,477.75642 L -99.577504,479.13864 L -99.577504,479.86612 L -105.10636,479.86612 L -104.45163,477.10169 L -102.34193,474.26452 L -101.61445,472.8823 L -100.95972,473.60978 z M 19.14737,455.42276 L 18.492637,455.42276 L 19.87485,454.04055 L 20.602331,454.69528 L 19.14737,455.42276 z M 21.984545,439.34544 L 22.639278,438.6907 L 23.366758,439.34544 L 22.639278,439.34544 L 23.366758,440.07292 L 21.984545,439.34544 z M 30.350575,435.1988 L 30.13233,434.98055 L 30.350575,434.47131 L 30.350575,435.1988 z M 5.1797374,417.73925 L 5.9072182,418.39399 L 5.1797374,419.12147 L 5.1797374,417.73925 z M 1.0330966,414.90208 L 1.0330966,413.51987 L 1.6878294,413.51987 L 1.6878294,414.24735 L 2.4153102,414.24735 L 1.0330966,414.90208 z M -5.9507195,397.44254 L -5.2959867,395.33284 L -5.2959867,396.06033 L -4.5685059,396.06033 L -5.2959867,397.44254 L -5.9507195,397.44254 z M -19.918352,380.71048 L -19.918352,379.32827 L -19.263619,379.32827 L -19.918352,380.71048 z M -84.882391,390.45872 L -85.609872,389.80399 L -83.500177,388.34903 L -86.264605,389.80399 L -87.646818,389.80399 L -87.646818,390.45872 L -88.374299,389.07651 L -86.992085,387.6943 L -85.609872,385.5846 L -84.882391,386.31208 L -84.15491,385.5846 L -83.500177,384.20239 L -83.500177,384.85712 L -82.772697,385.5846 L -81.390483,384.85712 L -81.390483,386.31208 L -81.390483,386.96682 L -82.772697,387.6943 L -81.390483,387.6943 L -80.663002,388.34903 L -83.718422,389.58575 L -81.390483,388.34903 L -82.117964,388.34903 L -83.718422,389.58575 L -83.863918,389.65849 L -84.882391,390.45872 z M -89.10178,391.84094 L -89.756513,390.45872 L -88.374299,390.45872 L -89.10178,391.84094 z M -103.72414,419.7762 L -103.06941,419.7762 L -105.10636,421.8859 L -106.56132,421.8859 L -104.45163,420.50368 L -103.72414,419.7762 z M -107.21605,435.1988 L -108.59827,436.58101 L -109.32575,435.85353 L -109.32575,435.1988 L -108.59827,435.56254 L -108.59827,434.47131 L -107.21605,435.1988 z M 63.159961,479.86612 L 63.159961,477.75642 L 63.887441,478.48391 L 64.542174,477.75642 L 65.997136,479.86612 L 63.159961,479.86612 z M 65.997136,479.86612 L 65.997136,478.48391 L 64.542174,477.75642 L 65.269655,477.75642 L 64.542174,477.10169 L 65.997136,477.10169 L 65.997136,476.37421 L 64.542174,476.37421 L 64.542174,475.64673 L 65.269655,474.992 L 64.542174,474.992 L 63.887441,474.992 L 62.505228,474.992 L 63.887441,474.26452 L 64.542174,473.60978 L 63.159961,474.26452 L 63.159961,473.60978 L 61.777747,474.26452 L 62.505228,473.60978 L 61.050266,472.8823 L 61.050266,472.15482 L 60.395533,472.15482 L 59.668053,471.50009 L 60.395533,470.77261 L 59.01332,471.50009 L 59.01332,470.77261 L 58.285839,470.11788 L 56.903625,470.11788 L 58.285839,469.39039 L 57.558358,468.66291 L 59.01332,468.66291 L 56.903625,467.2807 L 56.903625,466.62597 L 56.176145,466.62597 L 56.903625,465.89849 L 56.176145,465.89849 L 56.176145,466.62597 L 55.521412,467.2807 L 55.521412,468.00818 L 54.793931,467.2807 L 54.793931,468.00818 L 54.06645,468.00818 L 52.684237,467.2807 L 52.684237,466.62597 L 53.411717,465.89849 L 52.029504,466.62597 L 52.029504,465.17101 L 52.684237,465.17101 L 52.684237,464.88001 L 52.029504,465.17101 L 52.684237,463.78879 L 51.302023,464.51627 L 52.029504,463.78879 L 51.302023,463.78879 L 51.302023,463.13406 L 49.919809,461.6791 L 50.574542,461.02437 L 51.302023,460.29688 L 50.574542,460.29688 L 49.919809,459.64215 L 50.574542,459.64215 L 50.574542,458.18719 L 49.919809,458.91467 L 48.537596,458.18719 L 49.919809,457.53246 L 47.810115,457.53246 L 47.082634,456.15024 L 47.082634,455.42276 L 47.810115,455.42276 L 46.427901,454.69528 L 46.427901,453.31307 L 47.082634,451.93085 L 46.427901,451.93085 L 46.427901,449.82116 L 45.70042,448.43895 L 45.70042,447.71147 L 44.318207,445.67452 L 45.045688,444.21956 L 45.70042,444.94704 L 47.082634,445.67452 L 46.427901,444.94704 L 47.082634,444.94704 L 47.810115,444.21956 L 47.810115,445.67452 L 48.537596,445.67452 L 48.537596,446.32925 L 47.810115,446.32925 L 48.537596,447.05673 L 49.192328,446.32925 L 49.192328,447.05673 L 49.919809,447.05673 L 51.302023,448.43895 L 50.574542,449.16643 L 51.302023,449.16643 L 50.574542,449.82116 L 52.029504,449.82116 L 52.029504,450.54864 L 52.684237,450.54864 L 53.411717,451.20337 L 52.684237,451.93085 L 53.411717,451.93085 L 52.684237,452.65834 L 54.06645,451.93085 L 54.06645,453.31307 L 54.793931,454.69528 L 56.903625,455.42276 L 57.558358,457.53246 L 59.01332,457.53246 L 59.01332,455.42276 L 58.285839,455.42276 L 59.01332,454.69528 L 58.285839,454.69528 L 56.176145,452.65834 L 59.668053,454.04055 L 58.285839,453.31307 L 59.01332,452.65834 L 57.558358,452.65834 L 55.521412,450.54864 L 56.176145,450.54864 L 56.176145,449.82116 L 55.521412,449.82116 L 54.793931,449.16643 L 56.176145,449.16643 L 54.06645,448.43895 L 54.06645,447.71147 L 53.411717,446.32925 L 56.176145,447.05673 L 54.793931,446.32925 L 54.06645,445.67452 L 53.411717,445.67452 L 53.411717,444.94704 L 54.06645,444.94704 L 54.06645,444.21956 L 52.684237,444.21956 L 54.06645,443.56482 L 52.684237,443.56482 L 52.684237,442.83734 L 52.029504,442.83734 L 51.302023,442.18261 L 52.029504,441.45513 L 54.793931,443.56482 L 53.411717,441.45513 L 54.06645,440.72765 L 54.793931,441.45513 L 55.521412,441.45513 L 55.521412,442.18261 L 56.176145,441.45513 L 56.176145,442.83734 L 56.903625,442.18261 L 58.285839,442.83734 L 59.668053,443.56482 L 61.050266,444.94704 L 61.050266,443.56482 L 62.505228,442.83734 L 63.159961,442.18261 L 63.159961,442.83734 L 62.505228,443.56482 L 63.159961,443.56482 L 63.159961,444.21956 L 63.887441,444.21956 L 63.887441,445.67452 L 64.542174,444.94704 L 65.269655,446.32925 L 65.269655,444.94704 L 65.997136,444.94704 L 66.651869,444.21956 L 67.37935,444.94704 L 65.997136,445.67452 L 67.37935,445.67452 L 67.015609,446.32925 L 67.37935,446.32925 L 68.761563,446.32925 L 66.651869,447.05673 L 67.37935,447.05673 L 68.761563,446.32925 L 68.761563,447.05673 L 69.489044,447.05673 L 68.761563,447.71147 L 69.489044,447.71147 L 69.489044,448.43895 L 67.37935,447.71147 L 68.761563,448.43895 L 68.034082,449.82116 L 68.761563,449.16643 L 69.489044,449.16643 L 69.489044,449.82116 L 70.143777,450.54864 L 70.143777,451.05788 L 70.871258,451.20337 L 70.143777,451.93085 L 71.52599,451.20337 L 70.143777,452.65834 L 72.253471,451.93085 L 71.52599,453.31307 L 72.253471,452.65834 L 72.253471,454.04055 L 72.980952,452.65834 L 73.635685,452.65834 L 73.635685,454.04055 L 74.363166,454.04055 L 74.363166,453.31307 L 75.017898,454.04055 L 75.017898,455.42276 L 74.363166,455.42276 L 73.635685,456.15024 L 74.363166,456.15024 L 75.017898,455.42276 L 75.017898,456.15024 L 75.745379,455.42276 L 76.47286,456.15024 L 75.745379,456.80498 L 77.127593,456.80498 L 77.855074,457.53246 L 76.47286,455.42276 L 77.855074,455.42276 L 77.127593,454.69528 L 77.855074,454.69528 L 77.127593,454.04055 L 78.509806,453.31307 L 79.964768,456.15024 L 82.001715,456.80498 L 81.346982,456.15024 L 82.001715,456.15024 L 79.964768,454.69528 L 80.619501,454.04055 L 81.346982,455.42276 L 81.346982,454.04055 L 82.656447,454.69528 L 82.001715,454.04055 L 82.729195,454.04055 L 82.729195,453.31307 L 83.456676,454.69528 L 83.456676,453.31307 L 82.729195,453.31307 L 82.001715,452.65834 L 81.346982,452.65834 L 82.001715,451.93085 L 80.619501,451.93085 L 79.964768,451.20337 L 80.619501,451.20337 L 79.237287,449.82116 L 82.001715,448.43895 L 80.619501,448.43895 L 79.237287,449.82116 L 78.509806,449.16643 L 79.964768,446.32925 L 81.346982,446.32925 L 79.237287,445.67452 L 79.237287,446.32925 L 78.509806,447.71147 L 77.127593,447.71147 L 76.47286,447.05673 L 77.127593,445.67452 L 75.745379,447.05673 L 75.745379,446.32925 L 75.017898,446.32925 L 76.47286,444.94704 L 75.745379,444.94704 L 75.017898,446.32925 L 74.363166,446.32925 L 75.017898,443.56482 L 73.635685,445.67452 L 73.635685,444.21956 L 72.980952,444.94704 L 72.253471,444.21956 L 73.562937,443.56482 L 72.980952,443.56482 L 73.635685,442.83734 L 72.253471,442.83734 L 72.253471,442.18261 L 72.980952,442.18261 L 72.253471,441.45513 L 72.253471,440.72765 L 70.871258,440.72765 L 70.871258,440.07292 L 72.253471,440.07292 L 72.253471,439.34544 L 72.980952,440.07292 L 72.980952,439.34544 L 73.635685,440.72765 L 73.635685,440.07292 L 74.363166,440.07292 L 75.017898,440.72765 L 75.017898,440.07292 L 75.745379,441.45513 L 75.745379,440.07292 L 76.47286,441.45513 L 76.47286,440.72765 L 77.127593,440.72765 L 79.237287,441.45513 L 77.127593,440.07292 L 77.127593,439.34544 L 78.509806,439.34544 L 78.509806,437.96322 L 79.237287,438.6907 L 79.237287,437.23574 L 79.964768,437.96322 L 80.619501,437.96322 L 81.346982,436.58101 L 82.729195,438.6907 L 82.001715,439.34544 L 83.456676,438.6907 L 84.111409,438.6907 L 84.111409,437.96322 L 83.456676,437.96322 L 83.456676,437.23574 L 84.111409,435.85353 L 84.83889,435.85353 L 86.221103,437.23574 L 86.221103,438.6907 L 86.948584,437.96322 L 85.493623,435.85353 L 86.948584,435.85353 L 87.603317,436.58101 L 87.603317,437.96322 L 88.330798,437.23574 L 88.330798,438.6907 L 89.713011,438.6907 L 88.985531,439.34544 L 88.330798,439.34544 L 88.330798,440.07292 L 88.330798,440.72765 L 86.221103,440.07292 L 85.493623,440.72765 L 88.330798,441.45513 L 87.603317,442.83734 L 86.948584,442.83734 L 86.948584,443.49208 L 87.603317,442.83734 L 88.330798,442.18261 L 88.985531,442.83734 L 90.440492,442.18261 L 91.095225,442.83734 L 88.985531,443.56482 L 86.948584,444.21956 L 87.603317,444.21956 L 88.985531,443.56482 L 89.713011,443.56482 L 88.330798,447.05673 L 89.713011,444.94704 L 88.985531,447.71147 L 90.440492,446.32925 L 90.440492,444.94704 L 91.822706,445.67452 L 91.095225,446.32925 L 92.477439,445.67452 L 92.477439,447.05673 L 93.204919,447.05673 L 93.204919,447.71147 L 93.9324,447.71147 L 93.9324,448.43895 L 92.477439,448.43895 L 93.9324,449.16643 L 93.204919,449.82116 L 94.587133,449.16643 L 94.587133,449.82116 L 95.314614,448.43895 L 95.314614,449.82116 L 94.587133,450.54864 L 93.204919,450.54864 L 91.822706,449.82116 L 93.204919,451.20337 L 95.314614,450.54864 L 94.587133,451.93085 L 93.9324,451.93085 L 94.587133,452.65834 L 95.314614,452.65834 L 94.587133,453.31307 L 95.314614,453.31307 L 95.314614,454.69528 L 93.9324,455.42276 L 96.696828,454.69528 L 96.696828,456.15024 L 95.969347,456.80498 L 96.696828,456.80498 L 96.696828,456.15024 L 97.424308,456.80498 L 95.969347,457.53246 L 95.969347,458.18719 L 97.424308,457.53246 L 97.424308,456.80498 L 98.079041,456.80498 L 98.079041,457.53246 L 98.806522,457.53246 L 98.806522,458.18719 L 98.079041,458.91467 L 98.806522,458.91467 L 98.079041,461.02437 L 98.806522,460.29688 L 98.806522,461.02437 L 99.461255,459.64215 L 100.18874,463.13406 L 100.18874,463.78879 L 100.91622,462.40658 L 100.18874,461.02437 L 100.91622,461.02437 L 100.91622,459.64215 L 101.57095,459.64215 L 101.57095,461.02437 L 102.29843,458.91467 L 102.95316,460.29688 L 103.68064,461.02437 L 102.29843,461.6791 L 101.57095,462.40658 L 102.29843,462.40658 L 103.68064,461.02437 L 103.68064,460.29688 L 104.40812,462.40658 L 103.68064,463.13406 L 104.40812,463.13406 L 104.40812,462.40658 L 104.40812,460.29688 L 103.68064,458.91467 L 103.68064,456.15024 L 105.06286,456.15024 L 105.79034,457.53246 L 105.79034,459.64215 L 106.44507,462.40658 L 105.79034,463.78879 L 107.17255,462.40658 L 107.17255,461.02437 L 108.55477,460.29688 L 107.90003,458.18719 L 109.93698,458.18719 L 109.93698,458.91467 L 112.04667,460.29688 L 112.77415,461.02437 L 111.39194,461.6791 L 110.66446,461.02437 L 110.66446,462.40658 L 109.93698,462.40658 L 109.28225,462.40658 L 109.28225,463.13406 L 107.90003,464.51627 L 107.90003,465.17101 L 109.93698,463.13406 L 111.39194,462.40658 L 110.66446,465.17101 L 109.28225,465.17101 L 108.55477,465.89849 L 107.90003,467.2807 L 109.28225,466.62597 L 109.28225,465.89849 L 109.93698,465.89849 L 112.04667,464.51627 L 112.77415,462.40658 L 113.42889,462.40658 L 112.77415,461.6791 L 114.15637,461.6791 L 116.26606,465.17101 L 114.15637,466.62597 L 114.88385,466.62597 L 114.15637,467.2807 L 113.42889,467.2807 L 114.15637,468.00818 L 115.53858,466.62597 L 116.26606,465.89849 L 116.9208,466.62597 L 116.26606,466.62597 L 114.15637,469.39039 L 113.50164,469.46314 L 114.15637,470.77261 L 114.15637,469.39039 L 116.9208,468.00818 L 117.64828,468.00818 L 118.37576,468.66291 L 117.64828,470.11788 L 117.64828,470.77261 L 119.75797,470.11788 L 121.14018,470.77261 L 122.5224,473.60978 L 120.48545,474.33726 L 121.14018,474.992 L 121.86766,474.992 L 121.14018,475.64673 L 120.4127,475.64673 L 119.75797,475.64673 L 119.75797,474.992 L 120.26721,474.41001 L 116.9208,475.64673 L 119.03049,474.992 L 119.75797,475.64673 L 117.64828,477.10169 L 120.4127,475.64673 L 121.14018,476.37421 L 121.86766,476.37421 L 121.14018,477.10169 L 120.5582,477.24719 L 121.14018,477.75642 L 122.5224,476.37421 L 123.24988,476.37421 L 123.24988,477.10169 L 121.86766,477.75642 L 123.24988,477.75642 L 122.5224,478.48391 L 121.14018,479.13864 L 120.4127,479.13864 L 119.75797,479.13864 L 118.37576,479.86612 L 108.55477,479.86612 L 100.18874,479.86612 L 100.18874,479.13864 L 99.461255,479.13864 L 99.461255,478.48391 L 98.806522,479.13864 L 96.696828,477.75642 L 97.424308,476.37421 L 98.806522,477.75642 L 98.079041,475.64673 L 95.969347,477.10169 L 95.314614,475.64673 L 94.587133,475.64673 L 94.587133,473.60978 L 92.477439,473.60978 L 91.095225,472.15482 L 87.603317,471.50009 L 86.948584,470.77261 L 85.493623,471.50009 L 84.83889,472.8823 L 82.729195,473.60978 L 82.001715,470.11788 L 82.001715,473.60978 L 77.855074,477.75642 L 75.017898,476.37421 L 73.635685,474.992 L 71.52599,474.992 L 72.253471,477.10169 L 70.871258,478.48391 L 71.52599,479.13864 L 70.871258,479.13864 L 70.871258,479.86612 L 65.997136,479.86612 z M 96.696828,477.75642 L 95.314614,477.75642 L 95.314614,477.10169 L 96.696828,477.75642 z M 98.806522,479.13864 L 99.461255,479.13864 L 99.461255,479.86612 L 98.806522,479.13864 z M 118.37576,479.86612 L 120.4127,479.13864 L 120.4127,479.86612 L 118.37576,479.86612 z M 120.4127,479.86612 L 121.14018,479.13864 L 121.14018,479.86612 L 120.4127,479.86612 z M 121.14018,479.86612 L 122.5224,479.13864 L 121.86766,479.86612 L 121.14018,479.86612 z M 92.477439,445.67452 L 91.822706,445.67452 L 91.822706,444.94704 L 93.204919,445.67452 L 92.477439,445.67452 z M 88.330798,440.72765 L 90.440492,440.07292 L 88.985531,441.45513 L 88.330798,440.72765 z M 88.330798,438.6907 L 88.985531,437.23574 L 88.985531,437.96322 L 88.330798,438.6907 z M 78.509806,437.96322 L 77.855074,437.23574 L 78.509806,437.23574 L 78.509806,437.96322 z M 78.509806,439.34544 L 77.855074,438.6907 L 77.127593,437.96322 L 77.855074,437.96322 L 78.509806,439.34544 z M 67.37935,446.32925 L 67.37935,445.67452 L 68.034082,444.94704 L 68.034082,445.67452 L 68.761563,445.67452 L 67.37935,446.32925 z M 61.050266,443.56482 L 57.558358,442.18261 L 56.903625,440.72765 L 57.558358,441.45513 L 57.558358,440.72765 L 58.285839,440.72765 L 58.285839,442.18261 L 59.01332,440.72765 L 59.668053,441.45513 L 59.740801,441.45513 L 60.395533,441.45513 L 61.050266,443.56482 z M 60.395533,441.45513 L 58.285839,440.07292 L 57.558358,439.34544 L 60.395533,440.72765 L 60.395533,441.45513 z M 54.793931,468.00818 L 55.521412,468.00818 L 55.521412,469.39039 L 54.793931,468.00818 z M 63.887441,474.992 L 64.542174,476.37421 L 64.542174,477.10169 L 63.159961,476.37421 L 62.505228,476.37421 L 63.887441,475.64673 L 63.159961,475.64673 L 63.887441,474.992 z M 95.969347,479.86612 L 96.696828,479.13864 L 98.079041,479.86612 L 95.969347,479.86612 z M 95.969347,479.86612 L 95.314614,479.13864 L 95.969347,479.13864 L 95.969347,479.86612 z M 122.5224,479.86612 L 123.90461,477.75642 L 125.35957,477.75642 L 126.01431,479.86612 L 122.5224,479.86612 z M 177.73819,479.86612 L 177.73819,479.13864 L 179.77514,479.86612 L 177.73819,479.86612 z M 181.2301,479.86612 L 181.2301,479.13864 L 182.61232,479.86612 L 181.2301,479.86612 z M 184.72201,479.86612 L 184.72201,478.48391 L 185.37674,478.48391 L 185.37674,477.10169 L 186.75896,477.75642 L 187.48644,479.86612 L 186.75896,479.86612 L 184.72201,479.86612 z M 187.48644,479.86612 L 188.21392,478.48391 L 187.48644,478.48391 L 187.48644,477.10169 L 186.10422,476.37421 L 186.75896,474.992 L 188.21392,474.26452 L 188.21392,474.992 L 188.86865,473.60978 L 189.59613,473.60978 L 189.59613,474.992 L 189.59613,475.64673 L 190.97834,476.37421 L 189.59613,474.992 L 190.97834,473.60978 L 190.97834,472.8823 L 191.70583,472.8823 L 191.70583,473.60978 L 192.36056,472.8823 L 197.23468,470.77261 L 201.45407,467.2807 L 202.18155,468.00818 L 198.68964,472.8823 L 197.96216,473.60978 L 198.68964,473.60978 L 201.45407,470.11788 L 202.18155,470.77261 L 202.83628,469.39039 L 203.56376,468.66291 L 203.56376,468.00818 L 204.2185,468.00818 L 204.2185,467.2807 L 206.32819,465.89849 L 208.43789,465.17101 L 209.16537,465.17101 L 210.54758,466.62597 L 209.16537,468.00818 L 210.54758,468.00818 L 211.20231,468.66291 L 212.65727,468.66291 L 211.92979,469.39039 L 212.65727,470.11788 L 211.20231,470.11788 L 211.92979,470.77261 L 211.20231,471.50009 L 209.8201,473.60978 L 212.65727,471.50009 L 213.31201,474.26452 L 212.73002,474.91925 L 214.03949,474.992 L 213.31201,476.37421 L 214.03949,477.75642 L 214.03949,479.86612 L 188.86865,479.86612 L 187.48644,479.86612 z M 355.8255,479.86612 L 356.48024,479.13864 L 352.98833,478.48391 L 354.37054,477.10169 L 355.8255,476.37421 L 355.8255,475.64673 L 352.3336,477.10169 L 350.87863,476.37421 L 352.98833,475.64673 L 351.60612,474.992 L 352.98833,474.26452 L 353.71581,474.26452 L 354.37054,473.60978 L 355.8255,473.60978 L 356.48024,474.26452 L 355.8255,472.8823 L 357.20772,472.8823 L 359.97214,471.50009 L 362.08184,470.77261 L 362.80932,470.77261 L 362.80932,471.50009 L 362.08184,472.15482 L 360.69963,474.26452 L 361.35436,474.992 L 360.69963,476.37421 L 361.35436,476.37421 L 360.69963,477.10169 L 359.97214,479.86612 L 355.8255,479.86612 z M 364.84627,479.86612 L 365.57375,479.13864 L 364.84627,478.48391 L 365.57375,477.75642 L 365.57375,476.37421 L 369.79314,473.60978 L 371.17535,472.15482 L 372.55756,472.8823 L 373.93978,472.15482 L 374.66726,470.77261 L 374.66726,470.11788 L 373.93978,468.66291 L 375.32199,468.66291 L 376.04947,469.39039 L 377.43169,470.11788 L 377.43169,469.39039 L 376.77695,469.39039 L 376.77695,468.66291 L 376.04947,469.39039 L 376.04947,468.00818 L 376.77695,466.62597 L 377.43169,466.62597 L 377.43169,465.17101 L 378.8139,463.13406 L 377.43169,463.78879 L 377.43169,463.13406 L 378.15917,461.6791 L 376.48596,462.84307 L 376.77695,463.13406 L 375.32199,463.78879 L 376.04947,463.78879 L 375.32199,464.51627 L 374.66726,463.78879 L 375.32199,463.13406 L 374.66726,463.13406 L 375.32199,461.6791 L 376.04947,461.02437 L 375.32199,460.29688 L 376.04947,460.29688 L 376.04947,459.64215 L 375.32199,459.64215 L 375.32199,458.18719 L 376.04947,458.91467 L 376.04947,457.53246 L 376.77695,457.53246 L 377.43169,458.18719 L 376.77695,458.91467 L 377.43169,458.91467 L 378.15917,454.69528 L 377.43169,454.04055 L 378.15917,453.31307 L 378.15917,452.65834 L 377.43169,452.65834 L 378.15917,450.54864 L 378.8139,449.82116 L 378.8139,449.16643 L 378.15917,449.16643 L 378.8139,447.71147 L 378.8139,448.43895 L 379.54138,447.05673 L 379.54138,446.32925 L 380.26886,446.32925 L 380.92359,445.67452 L 379.54138,443.56482 L 380.26886,443.56482 L 380.92359,444.94704 L 381.65107,444.21956 L 380.92359,444.21956 L 380.92359,443.56482 L 381.65107,443.56482 L 381.65107,442.83734 L 380.92359,443.56482 L 380.92359,442.83734 L 380.26886,442.18261 L 380.92359,442.18261 L 380.92359,441.45513 L 381.65107,441.45513 L 382.30581,442.83734 L 383.03329,442.83734 L 382.30581,442.18261 L 383.76077,442.18261 L 384.4155,441.45513 L 385.14298,441.45513 L 385.14298,442.18261 L 386.5252,441.45513 L 385.79771,441.45513 L 385.79771,440.72765 L 385.14298,441.45513 L 385.14298,440.72765 L 384.4155,440.72765 L 384.4155,440.07292 L 385.14298,439.34544 L 386.5252,440.72765 L 387.90741,440.72765 L 390.0171,440.72765 L 388.63489,440.07292 L 388.63489,437.23574 L 389.28962,436.58101 L 388.63489,435.1988 L 387.90741,432.36162 L 386.5252,426.10528 L 387.25268,426.10528 L 387.90741,424.72307 L 389.28962,425.3778 L 388.63489,423.99559 L 389.28962,424.72307 L 390.0171,423.99559 L 391.39932,424.72307 L 392.78153,423.26811 L 394.89123,422.61338 L 396.27344,424.72307 L 397.36466,425.23231 L 398.38313,424.72307 L 400.49283,425.3778 L 401.87504,426.76002 L 403.25726,426.76002 L 406.09443,424.72307 L 412.35077,423.99559 L 413.07825,422.61338 L 413.07825,421.23116 L 414.46046,421.23116 L 415.18794,421.8859 L 415.84267,421.8859 L 417.95237,422.61338 L 417.95237,421.8859 L 419.33458,423.26811 L 418.67985,424.72307 L 418.67985,426.10528 L 422.17176,427.4875 L 423.55397,426.10528 L 424.93618,426.10528 L 427.04588,425.3778 L 428.42809,425.3778 L 431.92,425.3778 L 430.53779,424.72307 L 428.42809,425.3778 L 426.3184,424.72307 L 424.93618,426.10528 L 423.55397,425.3778 L 422.17176,426.76002 L 419.33458,425.3778 L 418.67985,424.72307 L 420.06206,422.61338 L 417.95237,421.8859 L 417.95237,421.23116 L 415.84267,420.50368 L 416.57015,421.23116 L 415.84267,421.23116 L 415.18794,421.23116 L 413.73298,419.7762 L 412.35077,421.23116 L 411.69603,421.8859 L 408.85886,423.26811 L 407.47664,422.61338 L 409.58634,421.23116 L 410.96855,421.23116 L 410.24107,420.50368 L 410.96855,419.7762 L 410.24107,419.7762 L 408.85886,421.23116 L 404.71222,422.61338 L 404.71222,424.72307 L 403.25726,424.72307 L 402.60252,426.10528 L 401.87504,425.3778 L 400.49283,421.8859 L 397.7284,421.8859 L 395.61871,420.50368 L 394.23649,419.7762 L 392.78153,417.73925 L 393.50901,417.73925 L 392.78153,416.28429 L 393.50901,414.90208 L 392.78153,414.90208 L 394.23649,414.24735 L 394.23649,415.62956 L 394.89123,415.62956 L 396.27344,414.24735 L 396.27344,413.51987 L 393.50901,412.79239 L 393.50901,410.02796 L 395.61871,409.30048 L 399.76535,411.41017 L 399.76535,412.79239 L 400.49283,412.13765 L 400.49283,412.79239 L 403.25726,412.13765 L 402.60252,411.41017 L 400.49283,411.41017 L 398.38313,407.91826 L 397.00092,406.53605 L 395.61871,406.53605 L 395.61871,407.91826 L 392.78153,408.64574 L 390.74458,410.75544 L 388.63489,411.41017 L 388.63489,412.13765 L 387.25268,412.13765 L 386.5252,412.79239 L 385.14298,412.13765 L 385.14298,411.41017 L 390.0171,409.30048 L 390.74458,407.91826 L 390.74458,404.42636 L 392.1268,403.77162 L 392.78153,401.66193 L 394.89123,402.31666 L 400.49283,400.93445 L 402.60252,397.44254 L 403.98474,397.44254 L 405.36695,396.06033 L 408.20412,395.33284 L 409.58634,393.95063 L 410.24107,393.95063 L 410.24107,395.33284 L 411.69603,396.06033 L 411.69603,399.55223 L 417.22489,403.04414 L 420.06206,401.66193 L 420.06206,402.31666 L 422.17176,401.66193 L 422.17176,399.55223 L 424.93618,398.17002 L 426.3184,399.55223 L 426.3184,398.82475 L 427.04588,399.55223 L 427.04588,400.27971 L 427.70061,400.93445 L 429.15557,400.27971 L 427.70061,399.55223 L 427.04588,398.17002 L 424.2087,396.78781 L 424.2087,398.17002 L 422.82649,398.17002 L 421.44428,399.55223 L 420.7168,398.82475 L 419.33458,400.27971 L 416.57015,399.55223 L 415.84267,400.27971 L 415.18794,400.27971 L 414.46046,399.55223 L 413.73298,394.67811 L 413.73298,393.95063 L 415.84267,391.84094 L 419.33458,391.84094 L 421.44428,390.45872 L 422.82649,386.31208 L 424.93618,384.85712 L 424.93618,381.36521 L 425.66367,380.71048 L 424.93618,379.32827 L 425.66367,378.60079 L 427.04588,377.8733 L 427.04588,376.49109 L 424.93618,375.83636 L 422.82649,372.34445 L 422.17176,371.61697 L 418.67985,370.88949 L 417.95237,371.61697 L 418.67985,371.61697 L 418.67985,372.34445 L 417.95237,372.34445 L 418.67985,373.72666 L 419.33458,373.72666 L 420.06206,373.72666 L 420.7168,375.10888 L 420.86229,375.69086 L 421.44428,375.10888 L 422.17176,375.83636 L 422.82649,375.83636 L 423.55397,377.21857 L 421.44428,377.8733 L 420.7168,378.60079 L 421.44428,378.60079 L 421.44428,380.71048 L 420.7168,380.71048 L 420.7168,381.36521 L 419.33458,381.36521 L 420.06206,382.82017 L 418.67985,384.20239 L 418.02512,386.09384 L 415.18794,388.34903 L 413.73298,390.45872 L 413.07825,390.45872 L 408.85886,389.80399 L 406.74916,391.84094 L 406.09443,391.84094 L 403.25726,393.95063 L 401.87504,394.67811 L 400.49283,395.33284 L 399.76535,395.33284 L 399.76535,396.78781 L 396.27344,398.82475 L 394.23649,399.55223 L 390.74458,399.55223 L 390.0171,401.66193 L 386.5252,405.15384 L 385.14298,405.80857 L 383.76077,407.26353 L 380.92359,405.15384 L 378.8139,402.31666 L 378.8139,401.66193 L 378.15917,402.31666 L 377.43169,400.93445 L 384.4155,392.56842 L 385.14298,390.45872 L 385.14298,388.34903 L 386.5252,385.5846 L 387.90741,384.85712 L 387.90741,386.31208 L 389.28962,386.31208 L 390.0171,384.85712 L 391.39932,384.85712 L 390.74458,384.20239 L 392.1268,383.47491 L 392.78153,383.47491 L 393.50901,382.09269 L 392.78153,382.09269 L 394.89123,380.05575 L 394.89123,380.71048 L 398.38313,381.36521 L 399.11061,380.71048 L 401.87504,379.983 L 403.25726,380.71048 L 403.98474,382.09269 L 403.98474,381.36521 L 406.74916,377.21857 L 407.47664,377.21857 L 407.47664,375.83636 L 405.36695,376.49109 L 401.87504,375.83636 L 401.22031,376.49109 L 397.7284,375.18163 L 397.7284,375.83636 L 394.23649,373.72666 L 394.23649,372.34445 L 393.50901,372.99918 L 393.50901,373.72666 L 390.74458,373.72666 L 387.90741,371.61697 L 382.30581,368.12506 L 383.76077,366.74285 L 383.03329,366.01537 L 383.03329,365.36063 L 389.28962,363.25094 L 388.63489,363.25094 L 388.63489,361.14125 L 387.25268,360.41376 L 387.25268,359.75903 L 389.28962,357.64934 L 387.25268,356.26712 L 385.79771,357.64934 L 386.5252,359.03155 L 384.4155,359.03155 L 384.4155,360.41376 L 383.76077,359.75903 L 382.30581,356.92186 L 383.03329,356.26712 L 382.30581,356.26712 L 381.65107,354.15743 L 382.30581,355.53964 L 383.03329,353.42995 L 379.54138,352.04773 L 378.15917,349.93804 L 378.15917,347.17361 L 379.54138,346.44613 L 377.43169,346.44613 L 377.43169,345.06392 L 378.15917,343.68171 L 377.43169,341.57201 L 377.43169,345.06392 L 376.77695,345.7914 L 376.77695,345.06392 L 375.32199,344.40919 L 375.32199,343.68171 L 374.66726,344.40919 L 374.66726,345.06392 L 375.32199,345.06392 L 376.04947,345.7914 L 376.04947,346.44613 L 374.66726,347.17361 L 373.93978,349.28331 L 372.55756,348.55583 L 374.66726,350.66552 L 372.55756,349.28331 L 371.90283,347.10087 L 372.55756,346.44613 L 373.28504,346.44613 L 372.55756,345.7914 L 371.83008,345.7914 L 371.83008,346.73712 L 371.32085,344.99117 L 372.55756,344.40919 L 372.55756,342.29949 L 371.83008,342.29949 L 371.83008,343.68171 L 371.17535,342.95422 L 371.17535,344.40919 L 369.06566,340.1898 L 368.33817,340.1898 L 368.33817,336.69789 L 367.68344,336.69789 L 366.30123,333.20598 L 366.30123,331.82377 L 364.84627,329.71407 L 365.57375,328.98659 L 366.95596,324.83995 L 362.80932,321.34804 L 362.08184,321.34804 L 360.69963,323.45774 L 357.86245,323.45774 L 357.20772,324.11247 L 357.86245,326.94965 L 360.69963,329.71407 L 358.58993,331.09629 L 356.48024,331.82377 L 356.48024,332.4785 L 355.09802,332.4785 L 350.87863,330.44155 L 348.11421,330.44155 L 352.3336,328.98659 L 354.37054,324.83995 L 355.09802,320.62056 L 357.20772,320.62056 L 358.58993,319.96583 L 358.58993,318.51087 L 359.97214,317.85614 L 359.97214,315.01896 L 361.35436,312.25453 L 359.31741,313.63675 L 357.86245,311.52705 L 358.58993,313.63675 L 357.20772,314.36423 L 355.09802,312.98201 L 355.09802,313.63675 L 353.71581,313.63675 L 352.98833,309.49011 L 350.87863,307.38041 L 350.87863,305.27072 L 350.2239,303.8885 L 349.49642,303.16102 L 349.49642,301.77881 L 350.2239,301.05133 L 351.60612,300.39659 L 353.71581,298.2869 L 355.8255,297.55942 L 355.09802,296.17721 L 353.71581,296.90469 L 352.98833,296.17721 L 352.3336,294.79499 L 348.11421,294.79499 L 347.38673,294.06751 L 347.38673,293.41278 L 346.73199,294.06751 L 348.11421,294.79499 L 347.38673,295.52247 L 346.00451,294.79499 L 344.6223,295.52247 L 342.5126,296.17721 L 341.85787,295.52247 L 341.85787,294.06751 L 341.13039,293.41278 L 341.85787,292.03057 L 342.5126,292.03057 L 345.34978,289.92087 L 346.73199,290.5756 L 346.73199,291.30308 L 348.11421,290.5756 L 348.11421,289.92087 L 349.49642,287.81118 L 348.11421,287.0837 L 348.11421,285.70148 L 346.73199,286.42896 L 343.24009,285.70148 L 342.5126,287.0837 L 341.85787,287.0837 L 340.40291,287.81118 L 339.0207,287.0837 L 337.63848,287.81118 L 337.63848,288.53866 L 336.911,287.81118 L 336.911,289.19339 L 336.25627,289.92087 L 336.25627,290.5756 L 334.87406,291.30308 L 335.52879,292.03057 L 335.52879,292.6853 L 333.41909,294.06751 L 332.76436,294.06751 L 334.14657,295.52247 L 334.14657,296.17721 L 332.76436,297.55942 L 334.14657,297.55942 L 333.41909,298.2869 L 333.41909,299.01438 L 332.76436,298.2869 L 332.76436,299.66911 L 329.92719,300.39659 L 327.89024,300.39659 L 326.43528,299.66911 L 328.54497,301.05133 L 327.16276,301.05133 L 327.89024,301.77881 L 326.43528,301.77881 L 325.05306,302.50629 L 326.43528,303.16102 L 325.05306,303.16102 L 322.94337,303.8885 L 322.94337,305.27072 L 321.56116,305.27072 L 322.28864,305.9982 L 323.67085,305.9982 L 324.39833,305.27072 L 326.43528,303.8885 L 326.43528,305.27072 L 328.54497,303.8885 L 329.27245,304.54324 L 329.92719,303.16102 L 331.38215,304.54324 L 334.14657,303.16102 L 339.0207,304.54324 L 341.85787,303.8885 L 346.00451,305.9982 L 348.11421,308.03514 L 348.84169,310.14484 L 349.49642,314.36423 L 348.84169,316.47392 L 347.38673,317.12865 L 345.34978,319.96583 L 344.6223,320.62056 L 343.89482,319.96583 L 343.24009,320.62056 L 341.85787,321.34804 L 340.40291,322.00278 L 341.13039,321.34804 L 340.40291,321.34804 L 341.13039,320.62056 L 336.911,322.00278 L 336.25627,322.00278 L 336.25627,321.34804 L 332.76436,323.45774 L 326.43528,324.83995 L 325.05306,324.83995 L 325.05306,324.11247 L 324.39833,324.83995 L 322.28864,324.83995 L 320.17894,324.11247 L 320.90642,322.73026 L 319.45146,321.34804 L 320.17894,322.73026 L 319.45146,322.73026 L 320.17894,323.45774 L 319.45146,323.45774 L 319.45146,324.83995 L 318.79673,324.11247 L 318.06925,322.73026 L 318.06925,323.45774 L 318.06925,324.83995 L 317.41452,324.83995 L 316.68703,324.11247 L 315.95955,324.83995 L 315.30482,324.11247 L 315.30482,326.22216 L 313.92261,326.22216 L 314.57734,324.83995 L 313.92261,324.83995 L 313.19513,324.11247 L 313.19513,324.83995 L 310.4307,325.49468 L 310.4307,324.11247 L 309.70322,325.49468 L 309.70322,324.83995 L 308.321,323.45774 L 308.321,324.11247 L 309.70322,324.83995 L 308.97574,325.49468 L 308.321,325.49468 L 307.59352,324.83995 L 308.321,326.22216 L 307.59352,326.22216 L 304.8291,326.22216 L 305.48383,326.94965 L 308.97574,326.94965 L 309.70322,328.33186 L 311.08543,329.71407 L 311.08543,330.44155 L 309.70322,330.44155 L 309.70322,331.09629 L 307.95726,330.58705 L 307.88452,330.73255 L 308.321,331.09629 L 307.59352,331.82377 L 306.93879,331.09629 L 306.93879,331.82377 L 305.48383,331.09629 L 305.48383,331.82377 L 304.10162,332.4785 L 303.44688,331.09629 L 304.10162,328.98659 L 303.44688,328.98659 L 302.7194,328.33186 L 303.44688,330.44155 L 301.33719,329.71407 L 302.7194,331.09629 L 303.44688,333.20598 L 301.99192,332.4785 L 301.99192,333.93346 L 301.33719,333.20598 L 300.60971,333.93346 L 300.60971,332.4785 L 299.95498,332.4785 L 299.95498,331.82377 L 300.60971,331.82377 L 301.33719,331.09629 L 299.95498,331.09629 L 300.60971,330.44155 L 299.95498,330.44155 L 300.60971,328.98659 L 299.95498,328.98659 L 300.60971,328.33186 L 299.22749,328.33186 L 298.50001,326.94965 L 298.50001,328.98659 L 297.84528,328.98659 L 298.50001,330.44155 L 298.50001,331.82377 L 296.46307,326.22216 L 295.73559,324.11247 L 295.73559,324.83995 L 295.00811,324.11247 L 295.73559,326.94965 L 295.00811,327.60438 L 296.46307,331.09629 L 295.73559,331.09629 L 295.00811,331.09629 L 295.00811,329.71407 L 294.35337,331.09629 L 293.62589,330.44155 L 292.97116,331.09629 L 293.62589,329.71407 L 292.24368,330.44155 L 292.24368,328.98659 L 292.97116,328.98659 L 293.62589,328.33186 L 292.97116,328.33186 L 292.24368,326.94965 L 291.5162,326.94965 L 290.86146,325.49468 L 290.86146,324.83995 L 290.13398,324.11247 L 290.86146,323.45774 L 290.13398,323.45774 L 290.86146,322.73026 L 291.5162,322.73026 L 290.13398,322.00278 L 290.13398,322.73026 L 289.47925,323.45774 L 289.47925,324.11247 L 288.75177,324.11247 L 288.02429,324.11247 L 288.02429,323.45774 L 287.36956,323.45774 L 286.64208,322.00278 L 287.36956,322.73026 L 287.36956,322.00278 L 286.64208,321.34804 L 285.98734,322.00278 L 285.25986,322.00278 L 285.25986,320.62056 L 284.53238,320.62056 L 284.53238,319.96583 L 283.87765,320.62056 L 283.15017,319.96583 L 283.15017,318.51087 L 283.15017,316.47392 L 282.49544,315.74644 L 281.76795,315.74644 L 281.76795,316.47392 L 283.15017,318.51087 L 282.49544,321.34804 L 281.76795,319.96583 L 281.04047,319.23835 L 281.76795,318.51087 L 281.04047,318.51087 L 281.04047,319.23835 L 281.04047,319.96583 L 279.65826,319.23835 L 279.00353,318.51087 L 279.00353,317.85614 L 279.65826,317.85614 L 279.00353,317.12865 L 279.65826,316.47392 L 280.38574,316.47392 L 281.04047,317.12865 L 281.04047,316.47392 L 280.38574,316.47392 L 281.04047,315.01896 L 280.38574,315.01896 L 280.38574,315.74644 L 279.00353,316.47392 L 279.00353,317.12865 L 279.00353,317.85614 L 277.54857,317.12865 L 276.89383,317.12865 L 276.53009,316.11018 L 276.16635,316.47392 L 276.16635,317.12865 L 275.51162,316.47392 L 276.16635,317.85614 L 275.51162,317.12865 L 274.05666,317.12865 L 274.78414,316.47392 L 274.05666,316.47392 L 273.40192,315.74644 L 274.05666,315.01896 L 273.40192,314.36423 L 274.05666,314.36423 L 272.67444,313.63675 L 274.05666,313.63675 L 274.05666,312.98201 L 274.78414,314.36423 L 276.16635,314.36423 L 276.16635,315.01896 L 276.89383,314.36423 L 275.51162,313.63675 L 274.78414,312.98201 L 274.78414,312.25453 L 275.51162,312.25453 L 274.78414,311.52705 L 274.78414,310.87232 L 274.05666,310.14484 L 273.40192,310.87232 L 272.67444,310.14484 L 272.67444,309.49011 L 272.01971,308.76262 L 272.01971,309.49011 L 271.29223,308.03514 L 272.01971,308.03514 L 274.05666,308.76262 L 275.51162,309.49011 L 275.51162,308.76262 L 276.16635,308.03514 L 274.78414,308.03514 L 274.78414,306.65293 L 274.05666,308.03514 L 273.40192,307.38041 L 273.40192,308.03514 L 272.01971,308.03514 L 273.40192,305.9982 L 271.29223,307.38041 L 272.01971,306.65293 L 272.01971,305.27072 L 272.01971,303.8885 L 271.29223,305.27072 L 271.29223,303.8885 L 270.56475,306.65293 L 270.56475,305.27072 L 270.56475,303.8885 L 269.91002,304.54324 L 269.18254,303.8885 L 269.10979,303.74301 L 269.25528,303.81575 L 270.56475,302.50629 L 268.5278,302.50629 L 268.5278,301.77881 L 268.5278,301.05133 L 269.18254,300.39659 L 267.80032,300.39659 L 267.07284,299.66911 L 266.41811,300.39659 L 265.69063,299.01438 L 267.07284,299.01438 L 267.07284,298.2869 L 268.16406,298.79614 L 269.18254,298.2869 L 267.80032,298.2869 L 267.07284,298.2869 L 265.69063,298.2869 L 265.69063,296.90469 L 265.03589,296.17721 L 265.03589,296.90469 L 264.30841,296.17721 L 264.30841,296.90469 L 263.58093,296.17721 L 262.9262,296.17721 L 264.30841,294.79499 L 263.58093,294.79499 L 262.9262,294.79499 L 262.9262,294.06751 L 262.19872,294.06751 L 262.9262,293.41278 L 262.19872,292.6853 L 263.58093,293.41278 L 262.9262,292.6853 L 262.19872,292.6853 L 262.19872,292.03057 L 261.54399,292.6853 L 261.54399,291.30308 L 262.9262,290.5756 L 261.54399,290.5756 L 261.54399,289.92087 L 260.08903,289.19339 L 261.54399,289.19339 L 260.81651,288.53866 L 261.54399,287.81118 L 261.54399,287.0837 L 260.81651,288.53866 L 260.08903,287.81118 L 260.08903,286.42896 L 259.43429,286.42896 L 258.70681,285.70148 L 258.70681,285.04675 L 259.43429,285.04675 L 259.43429,284.31927 L 260.08903,284.31927 L 259.79803,283.95553 L 259.43429,284.31927 L 259.43429,283.59179 L 258.05208,282.20957 L 259.43429,282.20957 L 258.70681,281.55484 L 259.43429,281.55484 L 258.70681,280.82736 L 258.05208,282.20957 L 257.3246,280.82736 L 255.2149,280.09988 L 254.56017,279.44515 L 254.56017,278.71767 L 255.2149,278.71767 L 254.56017,278.06293 L 256.23338,279.00866 L 255.94238,278.71767 L 256.59712,278.71767 L 255.2149,278.06293 L 255.2149,276.60797 L 255.2149,275.95324 L 254.56017,274.57102 L 254.56017,275.95324 L 253.83269,275.95324 L 253.5417,276.46248 L 252.45048,275.95324 L 253.10521,275.22576 L 251.723,275.95324 L 252.45048,275.22576 L 251.723,275.22576 L 251.06826,274.57102 L 251.06826,273.84354 L 250.34078,274.57102 L 250.34078,273.11606 L 249.6133,273.11606 L 249.6133,272.46133 L 250.34078,272.46133 L 250.34078,271.73385 L 249.6133,271.73385 L 248.23109,271.73385 L 248.23109,271.07912 L 248.95857,271.07912 L 247.57635,269.62416 L 248.95857,270.13339 L 248.95857,268.96942 L 249.6133,269.62416 L 249.6133,268.96942 L 248.95857,268.24194 L 249.6133,268.24194 L 251.06826,268.96942 L 253.10521,270.35164 L 253.10521,271.07912 L 251.723,271.07912 L 254.56017,273.11606 L 253.83269,272.46133 L 255.2149,272.46133 L 255.2149,273.11606 L 258.05208,273.84354 L 255.2149,272.46133 L 253.10521,271.07912 L 254.56017,271.07912 L 255.2149,270.35164 L 253.10521,269.62416 L 251.723,268.96942 L 252.45048,268.96942 L 252.45048,268.24194 L 253.10521,267.58721 L 249.6133,268.24194 L 249.6133,267.58721 L 250.34078,266.85973 L 248.95857,266.85973 L 248.23109,266.85973 L 248.95857,268.24194 L 248.23109,269.62416 L 247.57635,269.62416 L 247.57635,268.96942 L 246.12139,268.96942 L 247.57635,268.24194 L 246.12139,268.24194 L 246.12139,267.58721 L 247.57635,267.58721 L 246.12139,266.85973 L 246.12139,267.58721 L 245.46666,268.24194 L 244.08445,268.24194 L 244.73918,267.58721 L 244.08445,267.58721 L 244.08445,266.13225 L 243.35697,267.58721 L 242.62948,267.58721 L 242.62948,266.13225 L 243.35697,266.13225 L 244.08445,265.47751 L 241.97475,266.13225 L 242.62948,265.47751 L 243.35697,265.47751 L 242.62948,264.75003 L 244.08445,263.36782 L 242.62948,264.0953 L 242.62948,264.75003 L 241.97475,266.13225 L 241.24727,265.47751 L 243.35697,261.98561 L 241.97475,263.36782 L 241.24727,264.75003 L 240.59254,264.75003 L 239.13758,264.75003 L 238.48284,265.47751 L 237.75536,265.47751 L 237.75536,264.0953 L 237.10063,263.36782 L 239.86506,263.36782 L 238.48284,262.64034 L 241.24727,263.36782 L 239.13758,262.64034 L 239.13758,261.98561 L 239.86506,261.98561 L 239.13758,261.25813 L 237.75536,262.64034 L 237.10063,262.64034 L 237.10063,261.98561 L 236.37315,262.64034 L 235.64567,261.98561 L 236.37315,261.98561 L 234.26346,261.25813 L 234.99094,261.25813 L 235.64567,259.14843 L 234.99094,258.4937 L 234.26346,260.60339 L 233.60872,260.60339 L 232.88124,261.25813 L 232.15376,260.60339 L 231.49903,260.60339 L 231.49903,259.87591 L 231.49903,259.14843 L 230.77155,259.87591 L 230.77155,259.14843 L 231.49903,258.4937 L 230.77155,258.4937 L 229.38933,257.76622 L 230.77155,257.76622 L 232.15376,257.11148 L 231.49903,257.11148 L 232.00826,257.03874 L 230.77155,256.384 L 231.49903,257.11148 L 229.38933,257.76622 L 230.11681,257.11148 L 229.38933,257.11148 L 228.66185,257.76622 L 228.00712,257.76622 L 228.66185,257.11148 L 229.38933,256.384 L 228.66185,256.384 L 228.00712,255.65652 L 230.11681,255.65652 L 228.00712,255.00179 L 229.38933,255.00179 L 228.66185,254.27431 L 228.00712,253.61958 L 228.00712,252.8921 L 228.00712,252.16461 L 228.66185,250.7824 L 229.38933,250.7824 L 232.15376,251.50988 L 233.60872,250.12767 L 233.60872,251.50988 L 234.26346,251.50988 L 234.26346,250.7824 L 235.64567,250.7824 L 234.99094,250.12767 L 235.64567,250.12767 L 236.37315,248.67271 L 235.64567,248.01797 L 235.64567,248.67271 L 234.99094,248.67271 L 235.64567,249.40019 L 234.99094,250.12767 L 234.26346,250.7824 L 233.60872,250.12767 L 232.88124,249.40019 L 232.88124,250.12767 L 231.49903,250.7824 L 229.38933,250.7824 L 229.38933,250.12767 L 228.00712,250.7824 L 227.27964,250.7824 L 228.00712,250.12767 L 228.00712,249.40019 L 227.27964,250.12767 L 227.27964,248.67271 L 228.00712,248.67271 L 229.38933,249.40019 L 229.38933,248.67271 L 228.66185,248.67271 L 228.00712,248.01797 L 228.66185,247.29049 L 228.00712,247.72698 L 228.00712,247.29049 L 227.27964,247.29049 L 228.00712,246.63576 L 230.11681,248.01797 L 229.89857,247.29049 L 229.38933,247.29049 L 228.66185,245.90828 L 228.00712,246.63576 L 228.00712,245.1808 L 227.27964,245.1808 L 228.00712,244.52607 L 227.27964,244.52607 L 228.00712,243.14385 L 229.38933,245.1808 L 228.66185,243.79859 L 229.38933,243.79859 L 228.66185,243.14385 L 229.38933,243.14385 L 229.38933,242.41637 L 228.00712,242.41637 L 227.27964,241.68889 L 226.62491,241.03416 L 227.27964,240.30668 L 227.27964,239.65194 L 228.00712,241.03416 L 228.66185,241.03416 L 228.66185,241.68889 L 229.38933,241.68889 L 230.77155,243.79859 L 231.42628,243.79859 L 230.77155,243.14385 L 230.77155,242.41637 L 231.49903,242.41637 L 230.11681,241.68889 L 230.11681,241.03416 L 228.66185,240.30668 L 229.38933,239.65194 L 230.11681,240.30668 L 230.11681,239.65194 L 231.49903,240.30668 L 230.11681,238.92446 L 229.38933,239.65194 L 228.66185,238.19698 L 228.00712,238.92446 L 227.27964,237.54225 L 228.00712,237.54225 L 227.78888,237.03301 L 227.27964,237.54225 L 228.00712,239.65194 L 227.27964,238.19698 L 227.27964,238.92446 L 225.89743,238.19698 L 226.62491,236.16004 L 227.27964,236.81477 L 227.27964,235.43256 L 228.66185,236.16004 L 228.66185,236.81477 L 228.00712,236.81477 L 228.66185,237.54225 L 228.66185,236.81477 L 229.38933,236.16004 L 230.77155,238.19698 L 230.77155,237.54225 L 232.15376,237.54225 L 229.38933,236.16004 L 230.11681,235.43256 L 228.66185,234.05034 L 229.24384,232.95912 L 230.11681,233.32286 L 231.49903,233.32286 L 229.38933,232.66813 L 230.11681,231.94065 L 228.00712,232.66813 L 227.27964,231.94065 L 228.00712,233.32286 L 226.62491,234.05034 L 227.27964,232.66813 L 226.62491,233.32286 L 225.89743,231.21317 L 226.62491,229.83095 L 229.38933,227.06653 L 230.77155,226.33904 L 232.15376,226.33904 L 230.11681,225.68431 L 230.77155,224.95683 L 231.49903,225.68431 L 231.49903,224.95683 L 231.49903,224.22935 L 232.88124,224.95683 L 232.15376,224.22935 L 232.88124,224.22935 L 234.26346,223.57462 L 236.37315,224.22935 L 237.10063,224.22935 L 237.75536,224.95683 L 238.48284,224.95683 L 239.86506,227.06653 L 240.59254,227.06653 L 241.24727,228.44874 L 241.24727,227.72126 L 242.62948,229.17622 L 241.97475,229.17622 L 243.35697,229.83095 L 242.62948,230.55843 L 244.08445,229.83095 L 243.35697,230.55843 L 244.73918,231.21317 L 244.08445,232.66813 L 244.73918,231.94065 L 245.46666,231.94065 L 245.46666,230.55843 L 246.12139,230.55843 L 246.12139,231.21317 L 246.84887,231.21317 L 246.84887,231.94065 L 247.57635,231.21317 L 248.23109,233.32286 L 248.23109,234.70507 L 247.57635,235.43256 L 248.23109,235.43256 L 248.95857,235.43256 L 248.95857,237.54225 L 249.6133,235.43256 L 248.95857,234.05034 L 248.95857,233.32286 L 249.6133,233.32286 L 249.6133,231.94065 L 250.34078,232.66813 L 251.723,231.21317 L 251.06826,230.55843 L 251.723,227.06653 L 251.06826,226.33904 L 251.723,226.33904 L 251.06826,224.95683 L 252.15948,225.53882 L 252.45048,226.33904 L 253.10521,225.68431 L 251.723,223.57462 L 251.723,222.84714 L 253.10521,222.84714 L 251.723,222.1924 L 252.45048,221.46492 L 252.81422,221.90141 L 252.45048,220.73744 L 253.83269,220.08271 L 253.10521,219.35523 L 253.83269,217.97302 L 253.83269,216.5908 L 254.56017,217.24553 L 254.56017,215.20859 L 255.2149,215.20859 L 255.2149,213.09889 L 256.59712,211.71668 L 257.3246,210.26172 L 258.05208,210.26172 L 258.05208,208.22477 L 256.59712,208.22477 L 257.3246,206.76981 L 255.94238,207.49729 L 258.70681,201.89569 L 257.3246,201.24096 L 258.05208,199.78599 L 257.3246,199.13126 L 260.08903,199.13126 L 262.19872,199.78599 L 263.58093,199.13126 L 265.03589,200.51348 L 264.30841,201.89569 L 264.30841,203.2779 L 265.69063,205.3876 L 266.41811,204.73286 L 266.41811,206.11508 L 269.18254,206.11508 L 269.18254,205.3876 L 270.56475,206.11508 L 272.01971,206.11508 L 272.01971,205.3876 L 273.40192,210.26172 L 274.05666,210.26172 L 274.05666,210.9892 L 274.78414,213.09889 L 274.78414,213.75363 L 275.51162,213.75363 L 274.78414,215.20859 L 275.51162,217.24553 L 275.51162,217.97302 L 274.78414,217.97302 L 274.78414,218.7005 L 275.51162,217.97302 L 274.78414,219.35523 L 275.51162,218.7005 L 275.51162,219.35523 L 274.78414,220.73744 L 276.16635,220.73744 L 276.16635,221.46492 L 275.51162,221.46492 L 276.16635,222.1924 L 275.51162,222.84714 L 276.16635,222.84714 L 275.51162,224.22935 L 274.78414,224.95683 L 275.51162,224.95683 L 276.16635,225.68431 L 275.51162,227.06653 L 276.89383,227.06653 L 276.16635,227.72126 L 276.89383,227.72126 L 276.89383,228.44874 L 277.54857,227.72126 L 279.00353,228.44874 L 278.27605,229.17622 L 279.00353,229.17622 L 279.00353,231.94065 L 279.65826,230.55843 L 279.65826,229.83095 L 280.38574,228.44874 L 281.04047,230.55843 L 283.15017,231.94065 L 281.76795,232.66813 L 282.49544,232.66813 L 281.76795,233.32286 L 281.04047,233.32286 L 281.04047,234.05034 L 281.76795,234.05034 L 285.25986,236.81477 L 283.87765,236.81477 L 284.53238,237.54225 L 283.87765,238.19698 L 285.25986,237.54225 L 285.25986,238.19698 L 284.53238,238.19698 L 283.87765,238.92446 L 283.87765,239.65194 L 283.15017,240.30668 L 283.15017,239.65194 L 282.20444,241.03416 L 281.76795,241.03416 L 282.05895,241.2524 L 281.76795,241.68889 L 281.04047,241.68889 L 280.38574,243.79859 L 279.00353,243.14385 L 278.27605,244.52607 L 276.89383,244.52607 L 277.54857,245.1808 L 276.89383,245.1808 L 277.54857,245.90828 L 276.16635,246.63576 L 276.89383,247.29049 L 276.16635,247.29049 L 276.89383,249.40019 L 276.16635,250.7824 L 276.89383,250.7824 L 276.16635,251.50988 L 276.89383,251.50988 L 276.16635,252.16461 L 276.67559,252.67385 L 277.54857,252.16461 L 276.89383,255.00179 L 277.54857,257.11148 L 278.27605,257.11148 L 276.89383,257.76622 L 276.89383,259.14843 L 277.54857,259.87591 L 278.27605,258.4937 L 278.27605,259.14843 L 279.00353,259.87591 L 279.00353,261.25813 L 278.27605,264.0953 L 279.00353,262.64034 L 279.65826,262.64034 L 279.65826,261.98561 L 280.38574,262.64034 L 281.04047,263.36782 L 279.65826,264.0953 L 281.04047,264.0953 L 281.04047,265.47751 L 281.76795,265.47751 L 282.49544,265.47751 L 281.76795,266.13225 L 282.49544,266.13225 L 283.15017,265.47751 L 283.87765,268.24194 L 284.53238,267.58721 L 284.53238,268.96942 L 285.25986,267.58721 L 285.98734,269.62416 L 287.36956,269.62416 L 287.36956,270.35164 L 288.02429,271.73385 L 288.02429,270.35164 L 288.75177,271.07912 L 289.47925,274.57102 L 291.5162,276.60797 L 290.86146,277.33545 L 290.86146,278.06293 L 289.47925,278.71767 L 290.13398,278.71767 L 290.13398,279.44515 L 289.62475,279.66339 L 290.86146,282.20957 L 290.13398,283.59179 L 290.86146,282.93705 L 290.86146,284.31927 L 290.13398,285.04675 L 291.5162,285.04675 L 291.5162,285.70148 L 290.86146,285.70148 L 292.24368,286.42896 L 292.97116,286.42896 L 292.24368,287.0837 L 292.24368,287.81118 L 292.97116,287.0837 L 292.24368,288.53866 L 293.62589,287.81118 L 293.62589,289.19339 L 295.00811,287.81118 L 295.73559,288.53866 L 296.46307,289.19339 L 296.46307,288.53866 L 297.1178,289.19339 L 297.1178,288.53866 L 298.50001,289.92087 L 298.50001,289.19339 L 299.22749,289.19339 L 299.95498,289.92087 L 300.60971,287.81118 L 301.99192,288.53866 L 302.7194,287.0837 L 302.7194,286.42896 L 303.44688,285.70148 L 302.7194,285.70148 L 303.44688,285.04675 L 303.44688,284.31927 L 304.10162,283.59179 L 304.10162,282.93705 L 303.44688,283.59179 L 304.10162,282.20957 L 302.7194,282.20957 L 301.33719,281.55484 L 301.33719,280.82736 L 300.60971,278.71767 L 300.60971,278.06293 L 299.95498,278.06293 L 299.95498,276.60797 L 299.22749,275.95324 L 299.22749,274.57102 L 297.84528,274.57102 L 298.50001,273.84354 L 297.1178,273.11606 L 297.1178,271.73385 L 296.46307,271.07912 L 295.73559,271.73385 L 295.00811,270.35164 L 295.00811,268.96942 L 294.35337,268.96942 L 295.00811,267.58721 L 294.35337,266.85973 L 294.35337,266.13225 L 293.62589,267.58721 L 292.97116,266.85973 L 292.24368,267.58721 L 292.24368,266.85973 L 292.24368,266.13225 L 292.97116,265.47751 L 292.24368,265.47751 L 292.24368,264.0953 L 291.5162,264.0953 L 290.86146,263.36782 L 290.86146,261.25813 L 291.5162,261.25813 L 291.5162,259.14843 L 292.24368,259.87591 L 292.24368,259.14843 L 292.97116,258.4937 L 292.24368,256.384 L 295.00811,252.8921 L 293.62589,253.61958 L 294.35337,252.8921 L 293.62589,252.8921 L 294.35337,252.16461 L 293.62589,252.16461 L 294.35337,250.12767 L 293.62589,250.12767 L 294.35337,248.67271 L 292.97116,248.67271 L 293.62589,248.01797 L 293.62589,247.29049 L 294.35337,246.63576 L 293.62589,245.90828 L 295.00811,244.52607 L 295.73559,245.1808 L 295.73559,243.79859 L 296.46307,245.1808 L 297.84528,243.79859 L 299.22749,243.79859 L 298.50001,242.41637 L 299.22749,243.14385 L 299.22749,242.41637 L 301.33719,243.79859 L 300.60971,242.41637 L 301.33719,241.68889 L 301.33719,241.03416 L 301.99192,241.03416 L 301.99192,240.30668 L 301.33719,238.92446 L 302.7194,239.65194 L 303.44688,241.03416 L 304.8291,241.03416 L 305.48383,241.68889 L 306.93879,242.41637 L 306.93879,241.68889 L 307.59352,242.41637 L 307.59352,241.68889 L 308.321,243.14385 L 308.97574,243.79859 L 309.70322,243.79859 L 310.4307,244.52607 L 311.08543,244.52607 L 311.81291,245.90828 L 311.81291,245.1808 L 313.19513,245.1808 L 312.46765,245.90828 L 313.19513,245.90828 L 313.19513,245.1808 L 313.92261,245.90828 L 313.92261,246.63576 L 315.30482,245.90828 L 314.57734,246.63576 L 314.57734,247.29049 L 316.68703,247.29049 L 317.41452,248.67271 L 319.45146,248.01797 L 318.79673,248.67271 L 320.17894,248.67271 L 320.17894,249.40019 L 320.90642,248.67271 L 322.28864,249.40019 L 322.28864,250.12767 L 323.67085,251.50988 L 323.67085,250.7824 L 324.39833,248.67271 L 325.78055,247.29049 L 329.27245,248.01797 L 329.92719,246.63576 L 330.65467,246.63576 L 332.03688,246.63576 L 331.38215,245.90828 L 330.65467,245.90828 L 326.43528,245.90828 L 326.43528,243.79859 L 324.39833,243.79859 L 324.39833,242.41637 L 322.94337,243.14385 L 323.67085,240.30668 L 322.94337,239.65194 L 318.79673,238.92446 L 317.41452,239.65194 L 314.57734,239.65194 L 313.92261,238.92446 L 313.19513,240.30668 L 313.19513,238.92446 L 312.46765,239.65194 L 312.46765,238.19698 L 311.08543,238.19698 L 310.4307,237.54225 L 309.70322,238.19698 L 309.70322,237.54225 L 307.59352,237.54225 L 306.93879,236.81477 L 307.59352,236.16004 L 306.21131,236.16004 L 306.93879,235.43256 L 304.10162,234.70507 L 304.8291,233.32286 L 304.10162,232.66813 L 305.48383,232.66813 L 304.8291,231.94065 L 304.8291,230.55843 L 306.93879,227.72126 L 307.59352,227.72126 L 308.321,227.06653 L 308.97574,228.44874 L 310.4307,227.72126 L 309.70322,223.57462 L 311.08543,218.7005 L 309.70322,216.5908 L 307.59352,215.86332 L 306.21131,216.5908 L 304.8291,218.7005 L 302.7194,220.73744 L 301.99192,222.1924 L 298.50001,219.35523 L 297.1178,217.24553 L 297.84528,215.20859 L 296.46307,213.09889 L 295.73559,210.26172 L 297.1178,203.2779 L 298.50001,201.89569 L 297.84528,200.51348 L 298.50001,200.51348 L 297.84528,199.13126 L 298.50001,197.02157 L 297.84528,196.29409 L 295.00811,197.02157 L 295.51734,197.60355 L 292.97116,196.29409 L 292.24368,196.29409 L 292.24368,193.52966 L 292.97116,194.91187 L 292.97116,194.25714 L 295.00811,194.25714 L 292.97116,193.52966 L 290.13398,190.03775 L 290.13398,190.76523 L 289.47925,190.76523 L 290.13398,191.41996 L 286.64208,190.76523 L 285.98734,191.41996 L 284.53238,194.91187 L 282.49544,194.91187 L 275.51162,192.14745 L 273.40192,189.31027 L 266.41811,187.27332 L 266.41811,186.54584 L 265.69063,184.43615 L 265.69063,183.78142 L 264.30841,185.16363 L 261.54399,185.81836 L 262.19872,186.54584 L 261.76223,187.41882 L 262.63521,187.78256 L 261.54399,188.65554 L 260.08903,187.92806 L 258.05208,190.03775 L 258.05208,191.41996 L 256.59712,190.76523 L 255.2149,190.76523 L 254.56017,190.03775 L 254.56017,190.76523 L 253.10521,189.31027 L 251.06826,189.31027 L 250.34078,188.65554 L 249.6133,187.27332 L 248.23109,187.92806 L 246.84887,187.92806 L 246.12139,188.65554 L 248.23109,189.31027 L 248.23109,191.41996 L 246.12139,190.76523 L 244.08445,192.14745 L 243.35697,191.41996 L 243.35697,192.14745 L 242.62948,192.14745 L 241.97475,192.80218 L 242.62948,192.80218 L 242.62948,194.91187 L 241.97475,194.91187 L 241.24727,196.29409 L 241.97475,195.63935 L 241.97475,196.29409 L 241.24727,197.74905 L 240.59254,197.74905 L 241.97475,199.13126 L 241.24727,199.13126 L 241.97475,199.78599 L 241.24727,200.51348 L 241.97475,201.24096 L 241.24727,201.24096 L 242.62948,202.62317 L 241.24727,203.2779 L 243.35697,203.2779 L 244.08445,203.2779 L 244.08445,204.00538 L 244.73918,204.00538 L 245.46666,206.76981 L 246.12139,206.76981 L 246.12139,206.11508 L 246.84887,207.49729 L 247.57635,206.76981 L 248.95857,208.8795 L 248.23109,209.60699 L 245.46666,210.26172 L 246.12139,211.71668 L 245.46666,213.75363 L 246.12139,213.75363 L 247.57635,215.86332 L 246.84887,218.7005 L 248.23109,220.08271 L 244.73918,219.35523 L 241.97475,215.86332 L 238.48284,215.86332 L 236.37315,213.09889 L 237.10063,212.00767 L 237.10063,212.37141 L 237.10063,213.09889 L 239.13758,214.48111 L 240.59254,214.48111 L 239.86506,215.20859 L 241.24727,214.48111 L 243.35697,215.20859 L 244.08445,214.48111 L 243.35697,214.48111 L 242.62948,213.75363 L 241.97475,214.48111 L 240.59254,213.75363 L 240.59254,211.71668 L 241.24727,211.71668 L 241.24727,210.26172 L 240.59254,211.71668 L 239.86506,210.9892 L 239.86506,213.09889 L 238.70109,212.29866 L 239.13758,213.75363 L 238.48284,213.75363 L 237.10063,212.37141 L 238.04636,211.93492 L 237.75536,211.71668 L 238.48284,210.26172 L 237.75536,210.9892 L 236.37315,210.9892 L 235.64567,212.37141 L 235.64567,210.9892 L 235.20918,207.13355 L 236.37315,205.3876 L 234.99094,204.73286 L 234.26346,202.62317 L 234.99094,201.89569 L 234.99094,202.62317 L 237.10063,200.51348 L 236.37315,197.02157 L 236.37315,194.91187 L 235.64567,194.25714 L 237.75536,193.52966 L 236.37315,192.80218 L 235.64567,192.80218 L 235.64567,191.41996 L 237.10063,191.41996 L 236.37315,190.76523 L 237.10063,189.31027 L 236.37315,189.31027 L 236.37315,188.65554 L 238.48284,187.92806 L 239.86506,185.16363 L 238.48284,187.27332 L 236.37315,187.27332 L 235.64567,187.92806 L 234.26346,186.54584 L 234.26346,185.16363 L 232.88124,185.81836 L 232.88124,185.16363 L 232.88124,184.43615 L 232.15376,185.16363 L 232.88124,185.16363 L 231.49903,187.27332 L 228.00712,187.27332 L 227.27964,186.54584 L 226.62491,184.43615 L 228.00712,183.78142 L 226.62491,183.78142 L 225.16994,185.81836 L 222.40552,185.81836 L 222.40552,185.16363 L 221.67804,185.16363 L 220.29582,185.81836 L 218.18613,184.43615 L 217.5314,183.78142 L 216.80391,181.67172 L 218.91361,180.94424 L 218.18613,179.56203 L 219.64109,178.83455 L 217.5314,178.83455 L 215.4217,177.45233 L 216.14918,176.7976 L 214.03949,178.17981 L 215.4217,178.17981 L 214.69422,178.83455 L 214.69422,180.28951 L 216.14918,179.56203 L 216.80391,180.94424 L 216.14918,180.94424 L 215.4217,182.32645 L 214.69422,182.32645 L 214.03949,183.05393 L 212.65727,178.83455 L 209.16537,175.34264 L 208.43789,175.34264 L 208.43789,173.96042 L 211.92979,172.57821 L 210.54758,172.57821 L 208.43789,173.96042 L 207.7104,173.96042 L 208.43789,172.57821 L 209.16537,171.85073 L 207.78315,171.85073 L 207.05567,172.57821 L 204.94598,171.85073 L 206.32819,170.46852 L 207.7104,171.196 L 209.16537,169.81378 L 207.7104,170.46852 L 206.32819,169.81378 L 204.94598,171.196 L 198.68964,169.0863 L 193.74277,168.35882 L 192.36056,163.4847 L 192.36056,162.82997 L 191.70583,162.82997 L 189.66888,161.37501 C 187.5763,161.55207 185.41974,161.48277 183.26705,160.72027 L 182.61232,159.33806 L 182.61232,158.61058 L 184.72201,157.8831 L 181.2301,157.8831 L 179.77514,157.22836 L 176.28323,159.99279 L 174.90102,159.33806 L 174.90102,161.37501 L 175.6285,162.82997 L 172.79132,162.82997 L 171.40911,164.21218 L 171.40911,160.72027 L 172.79132,159.33806 L 171.40911,155.11867 L 172.13659,153.73646 L 169.29942,154.39119 L 169.29942,155.11867 L 168.64468,155.11867 L 168.64468,153.73646 L 167.9172,155.11867 L 167.26247,154.39119 L 167.26247,155.11867 L 166.53499,155.11867 L 166.53499,155.84615 L 164.42529,155.11867 L 163.04308,158.61058 L 162.3156,158.61058 L 162.3156,159.33806 L 160.93339,158.61058 L 160.27865,159.33806 L 159.55117,157.8831 L 158.16896,158.61058 L 158.16896,157.8831 L 157.44148,159.33806 L 153.94957,159.99279 L 153.94957,159.33806 L 152.56736,159.33806 L 151.83988,157.22836 L 153.29484,157.22836 L 153.94957,157.22836 L 155.33178,155.84615 L 153.29484,156.50088 L 153.29484,157.22836 L 152.56736,156.50088 L 152.56736,155.84615 L 153.29484,155.84615 L 153.94957,155.11867 L 153.94957,154.39119 L 151.18514,155.11867 L 152.56736,153.73646 L 152.56736,152.35424 L 153.94957,151.62676 L 153.94957,153.00898 L 154.67705,151.62676 L 155.33178,152.35424 L 155.33178,150.89928 L 156.05926,151.62676 L 157.44148,150.24455 L 157.44148,149.51707 L 158.82369,150.24455 L 158.16896,149.51707 L 158.82369,148.86234 L 158.82369,146.75264 L 159.55117,148.13485 L 160.27865,147.40737 L 161.66087,147.40737 L 161.66087,146.75264 L 162.3156,146.75264 L 161.66087,146.02516 L 162.3156,146.02516 L 163.04308,145.37043 L 161.66087,145.37043 L 162.3156,143.91547 L 163.04308,143.26073 L 163.77056,143.26073 L 163.04308,142.53325 L 164.42529,141.15104 L 163.04308,139.76882 L 163.77056,136.27692 L 167.26247,132.78501 L 166.53499,132.05753 L 167.26247,132.05753 L 167.26247,129.94783 L 165.80751,129.2931 L 165.15277,127.91089 L 167.26247,125.07371 L 167.26247,124.41898 L 165.80751,126.45593 L 162.3156,118.81738 L 163.77056,120.19959 L 163.77056,118.81738 L 163.04308,118.81738 L 162.3156,118.0899 L 158.82369,110.45135 L 157.44148,108.99638 L 153.29484,108.34165 L 150.45766,110.45135 L 149.80293,110.45135 L 149.80293,111.10608 L 148.34797,111.83356 L 147.69323,110.45135 L 146.31102,112.48829 L 145.58354,112.48829 L 144.85606,111.83356 L 144.85606,112.48829 L 145.58354,112.48829 L 144.85606,113.94325 L 142.81911,113.21577 L 142.81911,113.94325 L 138.59972,114.59799 L 133.7256,117.43516 L 132.99812,117.43516 L 132.99812,118.0899 L 131.61591,118.81738 L 130.88843,120.19959 L 128.85148,119.47211 L 128.124,120.19959 L 123.90461,122.30928 L 122.5224,121.5818 L 123.24988,122.30928 L 121.86766,122.96402 L 121.14018,124.41898 L 119.75797,124.41898 L 119.75797,125.80119 L 118.37576,125.07371 L 118.37576,125.80119 L 114.88385,125.80119 L 114.15637,124.41898 L 114.88385,124.41898 L 115.53858,123.6915 L 114.88385,122.96402 L 114.88385,124.41898 L 113.42889,123.6915 L 113.42889,124.41898 L 111.39194,124.41898 L 110.66446,125.07371 L 109.93698,125.07371 L 109.93698,124.41898 L 108.55477,124.41898 L 107.90003,123.6915 L 107.17255,123.6915 L 106.44507,122.30928 L 107.17255,122.96402 L 107.90003,122.30928 L 107.17255,120.19959 L 106.44507,118.81738 L 108.55477,119.47211 L 109.28225,118.81738 L 107.90003,117.43516 L 107.17255,118.0899 L 107.17255,116.70768 L 108.55477,116.70768 L 106.44507,115.9802 L 108.55477,115.9802 L 105.79034,114.59799 L 103.68064,108.34165 L 103.68064,106.23196 L 104.40812,105.50448 L 101.57095,101.35784 L 98.806522,97.865928 L 97.424308,96.483714 L 93.9324,92.264325 L 91.822706,92.264325 L 91.822706,90.882112 L 88.985531,87.390204 L 88.985531,86.662723 L 91.095225,86.00799 L 93.9324,88.044937 L 93.204919,86.662723 L 93.204919,86.00799 L 91.822706,85.280509 L 91.095225,85.280509 L 91.095225,86.00799 L 90.440492,86.00799 L 90.440492,84.553029 L 89.713011,83.170815 L 91.822706,83.170815 L 92.477439,82.516082 L 93.204919,83.170815 L 93.204919,82.516082 L 93.9324,81.788601 L 92.477439,82.516082 L 92.477439,81.788601 L 91.822706,83.170815 L 91.822706,81.06112 L 89.713011,78.296693 L 89.713011,76.186999 L 85.493623,70.585396 L 89.713011,69.930664 L 93.204919,67.093488 L 92.477439,67.820969 L 94.587133,67.093488 L 97.424308,67.093488 L 100.18874,66.438755 L 100.91622,65.711275 L 102.95316,62.946847 L 103.68064,60.109672 L 102.95316,60.109672 L 102.95316,58.727459 L 104.40812,58.072726 L 103.68064,57.345245 L 102.95316,58.072726 L 103.68064,53.853337 L 105.06286,53.853337 L 106.44507,51.08891 L 107.90003,51.08891 L 108.55477,52.471123 L 108.55477,51.08891 L 111.39194,53.853337 L 115.53858,53.125856 L 117.64828,54.580818 L 122.5224,53.125856 L 125.35957,51.743642 L 128.85148,51.08891 L 130.23369,49.633948 L 132.34339,51.08891 L 133.7256,50.361429 L 135.10782,48.979215 L 137.21751,50.361429 L 138.59972,52.471123 L 142.09163,54.580818 L 144.20133,54.580818 L 144.85606,53.853337 L 147.69323,53.853337 L 146.96575,55.235551 L 148.34797,55.963031 L 150.45766,58.727459 L 151.18514,59.454939 L 151.18514,60.109672 L 156.05926,61.564634 L 158.16896,62.946847 L 156.78675,64.329061 L 155.33178,67.093488 L 155.33178,69.930664 L 157.44148,72.695091 L 159.55117,74.804785 L 165.15277,79.024174 L 165.15277,78.296693 L 167.26247,79.678907 L 165.80751,81.06112 L 168.64468,82.516082 L 177.01071,83.170815 L 178.39293,84.553029 L 183.26705,85.280509 L 185.37674,86.662723 L 186.10422,88.044937 L 185.37674,90.154631 L 187.48644,90.882112 L 186.10422,90.882112 L 186.10422,93.646539 L 186.75896,95.756234 L 186.10422,95.028753 L 186.10422,96.483714 L 186.75896,95.756234 L 186.75896,97.865928 L 187.48644,97.865928 L 189.59613,99.248142 L 190.25086,99.248142 L 194.47025,100.63036 L 195.19773,99.975622 L 197.96216,99.248142 L 197.96216,98.520661 L 197.96216,97.865928 L 199.34437,97.865928 L 199.34437,99.248142 L 200.72659,98.520661 L 200.72659,97.865928 L 202.83628,97.865928 L 202.18155,96.483714 L 204.94598,95.756234 L 205.67346,94.37402 L 206.32819,94.37402 L 206.32819,95.028753 L 207.7104,93.646539 L 208.43789,94.37402 L 209.16537,93.646539 L 209.8201,94.37402 L 211.20231,94.37402 L 211.92979,95.028753 L 211.20231,95.756234 L 211.92979,96.483714 L 213.31201,96.483714 L 214.03949,97.865928 L 214.69422,97.138447 L 215.4217,98.520661 L 221.67804,99.975622 L 225.16994,103.46753 L 226.62491,104.12226 L 229.38933,102.74005 L 230.11681,102.74005 L 233.60872,99.975622 L 233.60872,100.63036 L 234.26346,99.975622 L 235.64567,99.248142 L 236.37315,94.37402 L 237.75536,92.264325 L 237.10063,89.499898 L 239.13758,88.772417 L 238.48284,88.044937 L 241.24727,85.280509 L 240.59254,83.898296 L 242.62948,83.898296 L 244.08445,83.170815 L 245.46666,80.406388 L 247.57635,79.024174 L 248.23109,77.569212 L 251.06826,74.077304 L 253.10521,74.077304 L 253.83269,72.040358 L 255.2149,72.695091 L 257.3246,72.040358 L 258.70681,72.040358 L 260.81651,69.203183 L 260.81651,67.820969 L 262.9262,68.54845 L 263.58093,67.820969 L 262.9262,65.711275 L 266.41811,66.438755 L 267.80032,64.329061 L 267.07284,62.946847 L 268.5278,62.219367 L 270.56475,60.109672 L 271.29223,60.109672 L 272.01971,61.564634 L 272.67444,60.837153 L 272.67444,60.109672 L 276.89383,49.633948 L 276.16635,48.251734 L 274.05666,47.597002 L 274.78414,46.14204 L 274.05666,44.105094 L 272.67444,43.377613 L 272.67444,41.267918 L 273.40192,40.613186 L 276.16635,40.613186 L 276.89383,42.650132 L 279.65826,45.487307 L 279.65826,48.979215 L 281.76795,50.361429 L 283.87765,50.361429 L 284.53238,51.743642 L 283.87765,52.471123 L 283.87765,55.235551 L 281.04047,57.345245 L 279.65826,57.345245 L 279.00353,58.072726 L 279.65826,60.109672 L 279.65826,60.837153 L 279.65826,61.564634 L 281.76795,65.056542 L 283.15017,65.711275 L 283.87765,65.056542 L 283.87765,64.329061 L 285.98734,63.60158 L 288.75177,63.60158 L 290.13398,60.837153 L 290.13398,60.109672 L 292.24368,59.454939 L 292.97116,61.564634 L 293.62589,62.219367 L 292.97116,64.329061 L 289.47925,66.438755 L 289.47925,67.093488 L 285.98734,68.54845 L 282.49544,70.585396 L 274.78414,74.077304 L 274.05666,75.532266 L 276.16635,77.569212 L 276.16635,78.296693 L 273.40192,78.296693 L 273.40192,77.569212 L 272.01971,79.024174 L 270.56475,78.514938 L 266.41811,79.678907 L 265.69063,81.06112 L 264.30841,81.06112 L 260.81651,86.00799 L 258.70681,93.646539 L 252.45048,97.865928 L 250.34078,99.975622 L 249.6133,104.84974 L 250.34078,106.23196 L 251.06826,105.50448 L 251.06826,106.95944 L 251.723,107.61417 L 250.34078,108.34165 L 250.34078,109.72387 L 249.6133,109.72387 L 249.6133,111.10608 L 250.34078,111.83356 L 251.723,112.48829 L 252.45048,112.48829 L 251.06826,111.10608 L 254.56017,113.21577 L 255.94238,113.21577 L 255.94238,114.59799 L 257.3246,113.94325 L 257.3246,113.21577 L 258.70681,113.94325 L 258.70681,114.59799 L 260.08903,112.48829 L 258.05208,111.83356 L 258.70681,110.45135 L 258.70681,108.34165 L 258.70681,107.61417 L 260.81651,104.84974 L 260.81651,105.50448 L 261.54399,105.50448 L 261.54399,106.95944 L 262.19872,106.95944 L 263.58093,110.45135 L 265.03589,109.72387 L 267.07284,108.34165 L 267.80032,103.46753 L 269.91002,101.35784 L 269.91002,99.975622 L 268.5278,100.63036 L 268.5278,99.975622 L 272.67444,95.756234 L 274.05666,95.756234 L 274.05666,93.646539 L 275.51162,92.991806 L 277.18482,93.501043 L 280.38574,92.264325 L 286.64208,87.390204 L 287.36956,87.390204 L 292.24368,83.898296 L 292.24368,84.553029 L 293.62589,84.553029 L 293.62589,83.898296 L 292.24368,83.898296 L 294.35337,82.516082 L 295.00811,82.516082 L 297.1178,79.678907 L 299.95498,79.024174 L 300.60971,76.91448 L 299.22749,76.91448 L 299.95498,75.532266 L 299.22749,74.804785 L 299.95498,73.422572 L 299.22749,71.312877 L 299.95498,69.930664 L 299.22749,70.585396 L 298.50001,67.820969 L 299.22749,67.093488 L 299.95498,67.093488 L 299.95498,66.438755 L 299.22749,66.438755 L 300.60971,65.711275 L 300.60971,65.056542 L 298.50001,65.711275 L 300.60971,63.60158 L 303.44688,62.219367 L 304.10162,60.837153 L 304.8291,60.837153 L 304.8291,58.727459 L 306.21131,58.727459 L 305.48383,57.345245 L 306.93879,57.345245 L 306.93879,55.963031 L 308.321,55.235551 L 310.4307,52.471123 L 311.08543,52.471123 L 311.08543,53.853337 L 311.81291,53.125856 L 313.19513,53.853337 L 313.92261,52.471123 L 311.08543,52.471123 L 311.08543,50.361429 L 311.81291,51.08891 L 313.19513,48.251734 L 313.92261,48.979215 L 314.57734,47.597002 L 313.92261,46.869521 L 315.30482,46.869521 L 315.95955,48.251734 L 317.41452,46.869521 L 320.17894,48.251734 L 323.67085,48.251734 L 323.67085,48.979215 L 325.05306,47.597002 L 325.78055,48.979215 L 327.16276,47.597002 L 330.65467,47.597002 L 329.92719,46.14204 L 327.89024,45.487307 L 328.54497,45.487307 L 327.89024,44.759826 L 320.90642,47.597002 L 319.45146,47.597002 L 318.06925,45.487307 L 315.95955,46.14204 L 315.95955,44.105094 L 314.57734,43.377613 L 314.57734,41.995399 L 315.95955,41.995399 L 316.68703,40.613186 L 317.41452,40.613186 L 319.45146,38.503491 L 319.45146,37.77601 L 318.79673,35.666316 L 320.17894,34.284102 L 320.17894,32.901889 L 321.56116,32.901889 L 321.56116,32.174408 L 322.28864,32.901889 L 322.28864,35.011583 L 323.67085,35.011583 L 323.67085,34.284102 L 325.78055,32.174408 L 325.78055,30.792194 L 327.16276,29.409981 L 326.43528,31.519675 L 327.89024,33.629369 L 328.54497,33.629369 L 330.65467,31.519675 L 332.76436,30.792194 L 330.65467,32.174408 L 331.38215,33.629369 L 327.16276,41.267918 L 330.65467,40.613186 L 329.92719,39.158224 L 331.38215,38.503491 L 332.03688,39.885705 L 333.41909,40.613186 L 332.76436,41.267918 L 332.76436,42.650132 L 331.38215,41.995399 L 332.03688,41.267918 L 330.65467,41.995399 L 330.65467,44.105094 L 329.27245,44.105094 L 332.76436,46.14204 L 336.911,43.377613 L 337.63848,44.759826 L 336.25627,47.597002 L 336.911,48.251734 L 335.52879,49.633948 L 333.41909,49.633948 L 332.03688,51.08891 L 330.65467,50.361429 L 330.65467,51.743642 L 329.27245,52.471123 L 328.54497,51.743642 L 327.89024,52.471123 L 324.39833,53.125856 L 326.43528,53.853337 L 327.89024,55.235551 L 327.16276,55.235551 L 327.16276,55.963031 L 325.78055,56.617764 L 326.43528,58.727459 L 327.89024,58.072726 L 328.54497,57.345245 L 327.89024,55.963031 L 329.92719,57.345245 L 323.67085,64.329061 L 322.94337,64.329061 L 322.94337,67.820969 L 322.28864,68.54845 L 325.05306,70.585396 L 325.05306,69.930664 L 324.39833,69.203183 L 325.05306,67.820969 L 328.54497,66.438755 L 328.54497,67.820969 L 330.65467,67.093488 L 332.76436,65.711275 L 333.41909,65.056542 L 333.41909,65.711275 L 333.41909,66.438755 L 331.38215,67.093488 L 330.65467,68.54845 L 334.14657,68.54845 L 335.52879,67.093488 L 336.25627,67.820969 L 332.76436,69.930664 L 332.76436,69.203183 L 332.03688,69.203183 L 331.38215,69.930664 L 332.03688,70.585396 L 329.92719,71.312877 L 330.65467,72.695091 L 332.76436,72.695091 L 334.87406,73.422572 L 334.87406,74.804785 L 336.25627,75.532266 L 336.25627,74.077304 L 337.63848,74.804785 L 339.74818,76.186999 L 343.24009,75.532266 L 346.73199,76.186999 L 347.38673,74.077304 L 352.3336,75.532266 L 352.3336,74.804785 L 348.84169,71.312877 L 349.49642,70.585396 L 348.84169,68.54845 L 351.60612,73.422572 L 355.8255,76.186999 L 356.48024,79.678907 L 357.86245,80.406388 L 359.97214,79.678907 L 361.35436,81.788601 L 363.46405,81.06112 L 363.46405,81.788601 L 364.19153,81.06112 L 366.95596,81.788601 L 366.95596,82.516082 L 366.95596,84.553029 L 360.69963,85.280509 L 357.86245,88.044937 L 357.86245,89.499898 L 355.8255,91.536845 L 355.09802,92.991806 L 352.98833,92.991806 L 354.37054,94.37402 L 354.37054,95.756234 L 355.8255,95.756234 L 355.09802,100.63036 L 355.8255,102.01257 L 357.20772,102.74005 L 357.86245,102.74005 L 358.58993,104.12226 L 357.86245,106.95944 L 357.86245,108.34165 L 357.20772,111.10608 L 358.58993,114.59799 L 357.86245,113.21577 L 357.20772,114.59799 L 356.48024,115.32547 L 357.86245,115.9802 L 357.20772,117.43516 L 358.58993,118.0899 L 358.58993,116.70768 L 359.31741,116.70768 L 362.08184,118.0899 L 362.08184,120.92707 L 361.35436,120.92707 L 362.08184,121.5818 L 362.08184,123.6915 L 360.69963,123.6915 L 361.35436,124.41898 L 360.69963,124.41898 L 359.97214,126.45593 L 361.35436,124.41898 L 362.08184,125.80119 L 361.35436,125.80119 L 362.08184,126.45593 L 362.08184,127.18341 L 362.80932,127.18341 L 362.80932,127.91089 L 363.46405,127.18341 L 364.84627,129.94783 L 362.08184,131.40279 L 362.08184,132.05753 L 362.80932,132.78501 L 364.84627,129.94783 L 364.84627,132.78501 L 365.57375,133.43974 L 364.84627,134.8947 L 366.30123,136.27692 L 367.68344,136.27692 L 365.57375,139.76882 L 366.95596,137.65913 L 367.68344,136.27692 L 369.06566,136.27692 L 371.17535,136.93165 L 371.83008,137.65913 L 371.17535,139.04134 L 371.83008,139.76882 L 371.83008,139.04134 L 372.55756,137.65913 L 373.28504,136.93165 L 374.66726,137.65913 L 374.66726,136.93165 L 369.79314,136.27692 L 371.17535,134.8947 L 371.17535,136.27692 L 373.28504,136.27692 L 373.28504,135.54944 L 371.83008,134.8947 L 371.83008,134.16722 L 372.55756,134.8947 L 375.32199,134.16722 L 375.32199,133.43974 L 377.43169,133.43974 L 380.92359,135.54944 L 383.03329,135.54944 L 383.03329,136.27692 L 383.76077,134.8947 L 385.14298,134.8947 L 385.14298,134.16722 L 384.4155,134.16722 L 382.30581,132.05753 L 381.65107,132.78501 L 381.65107,132.05753 L 378.8139,127.91089 L 380.26886,127.18341 L 380.92359,127.91089 L 381.65107,127.91089 L 383.03329,129.94783 L 382.30581,127.91089 L 384.4155,127.18341 L 385.14298,127.91089 L 386.5252,126.45593 L 387.25268,122.96402 L 387.90741,122.96402 L 386.5252,122.30928 L 389.28962,121.5818 L 390.74458,122.30928 L 392.78153,124.41898 L 393.50901,126.45593 L 395.61871,127.91089 L 396.27344,127.91089 L 397.00092,129.94783 L 397.7284,129.94783 L 397.7284,131.40279 L 399.11061,132.05753 L 400.49283,131.40279 L 403.25726,133.43974 L 403.98474,133.43974 L 403.25726,135.54944 L 403.98474,136.27692 L 401.87504,136.93165 L 399.76535,134.8947 L 399.11061,135.54944 L 398.38313,134.16722 L 397.00092,133.43974 L 394.38199,135.0402 L 397.00092,132.78501 L 394.23649,132.78501 L 394.23649,134.16722 L 393.50901,134.8947 L 392.1268,135.54944 L 391.39932,134.8947 L 391.39932,136.27692 L 390.74458,134.8947 L 391.32657,136.64066 L 391.39932,136.27692 L 392.1268,136.93165 L 392.99978,136.20417 L 390.74458,139.04134 L 390.74458,138.38661 L 391.25382,136.78615 L 390.0171,135.54944 L 390.0171,136.27692 L 389.28962,136.27692 L 389.50787,136.71341 L 390.0171,136.27692 L 390.0171,136.93165 L 389.65336,136.93165 L 390.0171,137.65913 L 389.28962,139.04134 L 390.74458,139.04134 L 392.1268,141.87852 L 391.39932,143.26073 L 392.78153,141.87852 L 392.1268,139.04134 L 392.78153,139.76882 L 393.50901,142.53325 L 395.61871,146.02516 L 397.51016,146.67989 L 397.7284,147.40737 L 399.11061,148.13485 L 400.49283,148.13485 L 400.49283,147.40737 L 401.87504,151.62676 L 402.60252,150.89928 L 403.25726,153.00898 L 406.09443,154.39119 L 406.74916,153.73646 L 408.20412,156.50088 L 408.85886,155.84615 L 410.96855,157.22836 L 410.96855,157.8831 L 412.35077,158.61058 L 413.73298,157.22836 L 412.35077,156.50088 L 411.69603,154.39119 L 409.58634,153.00898 L 409.58634,152.35424 L 410.24107,153.00898 L 410.96855,152.35424 L 409.58634,151.62676 L 408.85886,152.35424 L 407.47664,150.24455 L 405.36695,150.24455 L 408.20412,148.13485 L 409.58634,148.86234 L 413.07825,146.75264 L 410.96855,146.75264 L 410.24107,148.13485 L 410.96855,145.37043 L 410.24107,146.02516 L 409.58634,145.37043 L 409.58634,142.53325 L 408.85886,141.15104 L 409.58634,139.04134 L 407.47664,137.65913 L 408.20412,137.65913 L 406.74916,136.27692 L 406.74916,137.65913 L 404.71222,137.65913 L 403.98474,136.27692 L 404.71222,136.93165 L 405.36695,136.27692 L 406.09443,136.93165 L 404.71222,134.8947 L 406.74916,134.8947 L 407.47664,136.27692 L 408.20412,136.27692 L 408.20412,135.54944 L 406.74916,134.8947 L 408.85886,134.8947 L 410.96855,132.78501 L 413.07825,132.78501 L 413.07825,134.16722 L 416.57015,132.05753 L 420.7168,132.78501 L 431.19252,128.56562 L 431.92,128.56562 L 433.30221,128.56562 L 434.02969,127.91089 L 438.17634,128.56562 L 439.6313,128.56562 L 441.01351,127.18341 L 443.12321,127.18341 L 448.65206,120.92707 L 448.65206,115.9802 L 442.39572,108.34165 L 441.01351,107.61417 L 438.17634,106.95944 L 436.79412,107.61417 L 436.13939,106.23196 L 435.41191,106.23196 L 430.53779,102.74005 L 427.04588,102.01257 L 426.3184,102.74005 L 425.66367,102.74005 L 424.93618,101.35784 L 422.82649,102.01257 L 420.7168,101.35784 L 418.67985,102.01257 L 417.22489,102.01257 L 416.57015,100.63036 L 413.73298,101.35784 L 412.35077,103.46753 L 411.69603,103.46753 L 409.58634,101.35784 L 407.47664,101.35784 L 405.36695,102.74005 L 405.36695,104.12226 L 404.71222,104.12226 L 403.25726,102.01257 L 393.50901,99.975622 L 387.25268,94.37402 L 382.30581,89.499898 L 383.03329,88.772417 L 381.65107,87.390204 L 378.8139,86.00799 L 375.32199,86.00799 L 373.28504,85.280509 L 367.68344,84.553029 L 366.95596,82.516082 L 369.06566,81.06112 L 369.06566,80.406388 L 373.93978,81.06112 L 371.83008,80.406388 L 371.17535,80.406388 L 367.68344,79.024174 L 366.30123,77.569212 L 369.06566,76.91448 L 368.33817,76.186999 L 363.46405,75.532266 L 361.35436,74.077304 L 360.69963,74.804785 L 359.97214,73.422572 L 357.20772,73.422572 L 355.8255,74.077304 L 354.37054,73.422572 L 352.3336,72.695091 L 350.2239,70.585396 L 350.2239,69.203183 L 348.84169,68.54845 L 348.84169,67.820969 L 349.49642,63.60158 L 355.8255,65.711275 L 353.71581,62.219367 L 355.8255,60.837153 L 355.8255,59.454939 L 357.86245,59.454939 L 356.48024,58.727459 L 356.48024,57.345245 L 355.8255,57.345245 L 355.8255,56.617764 L 357.86245,54.580818 L 356.48024,53.853337 L 355.8255,54.580818 L 355.8255,53.125856 L 355.09802,53.853337 L 355.09802,55.235551 L 352.98833,56.617764 L 352.98833,55.963031 L 353.71581,53.853337 L 354.37054,53.853337 L 353.71581,52.471123 L 355.8255,51.08891 L 355.8255,52.471123 L 356.48024,52.471123 L 357.86245,51.08891 L 358.58993,51.743642 L 360.69963,51.08891 L 361.35436,48.979215 L 359.97214,47.597002 L 361.35436,47.597002 L 362.08184,44.759826 L 363.46405,46.14204 L 364.19153,44.759826 L 365.57375,44.759826 L 364.19153,42.650132 L 365.57375,41.995399 L 371.17535,44.105094 L 370.44787,42.650132 L 369.06566,42.650132 L 369.06566,41.267918 L 366.30123,40.613186 L 364.19153,39.158224 L 364.84627,38.503491 L 366.95596,39.158224 L 366.95596,40.613186 L 369.79314,41.267918 L 370.44787,40.613186 L 369.06566,39.885705 L 370.44787,39.885705 L 371.83008,41.267918 L 371.17535,41.995399 L 371.83008,41.995399 L 372.55756,42.650132 L 372.55756,41.995399 L 373.93978,42.650132 L 373.93978,41.267918 L 375.32199,41.267918 L 376.04947,40.613186 L 376.04947,42.650132 L 377.43169,41.995399 L 377.43169,40.613186 L 378.15917,40.613186 L 378.8139,39.158224 L 383.76077,37.77601 L 385.79771,39.885705 L 387.25268,40.613186 L 388.63489,40.613186 L 389.28962,39.885705 L 389.28962,46.869521 L 392.78153,47.597002 L 400.49283,46.869521 L 403.98474,44.105094 L 407.47664,44.105094 L 413.07825,46.869521 L 413.73298,47.597002 L 414.46046,46.869521 L 415.18794,48.979215 L 415.84267,48.979215 L 416.57015,49.633948 L 416.57015,50.361429 L 419.33458,55.963031 L 420.7168,55.963031 L 425.66367,55.235551 L 427.04588,56.617764 L 427.70061,58.072726 L 426.3184,58.072726 L 427.70061,58.727459 L 428.42809,60.837153 L 429.81031,60.109672 L 431.19252,58.072726 L 429.15557,54.580818 L 431.92,52.471123 L 431.19252,50.361429 L 431.92,49.633948 L 431.19252,47.597002 L 433.30221,46.869521 L 434.68443,44.759826 L 434.68443,41.995399 L 436.79412,38.503491 L 435.41191,35.011583 L 436.13939,32.901889 L 435.41191,30.792194 L 435.41191,20.31647 L 434.68443,19.661737 L 436.13939,10.568227 L 434.02969,2.8569298 L 431.92,0.092502547 L 428.42809,-1.2897111 L 427.04588,-2.0171919 L 427.70061,-2.0171919 L 425.66367,-2.7446727 L 425.66367,-1.2897111 L 424.93618,-2.0171919 L 424.93618,-3.3994055 L 424.2087,-2.7446727 L 422.17176,-4.1268863 L 423.55397,-2.7446727 L 420.7168,-4.1268863 L 418.67985,-3.3994055 L 418.67985,-4.1268863 L 417.22489,-4.7816191 L 417.22489,-5.5090999 L 415.84267,-4.7816191 L 415.84267,-4.1268863 L 415.18794,-4.7816191 L 415.18794,-4.1268863 L 413.73298,-4.1268863 L 413.73298,-1.2897111 L 411.69603,-3.3994055 L 406.74916,-2.7446727 L 406.09443,-3.3994055 L 406.74916,-3.7631459 L 406.74916,-4.7816191 L 404.71222,-4.7816191 L 404.71222,-5.5090999 L 403.25726,-6.2365808 L 404.71222,-4.7816191 L 406.09443,-3.3994055 L 402.60252,-5.5090999 L 401.22031,-5.5090999 L 400.49283,-7.6187944 L 399.76535,-8.2735272 L 399.11061,-7.6187944 L 398.38313,-8.2735272 L 394.89123,-13.220397 L 392.1268,-15.257343 L 385.79771,-13.87513 L 381.65107,-14.60261 L 380.26886,-13.220397 L 378.8139,-14.60261 L 376.77695,-14.60261 L 375.32199,-13.220397 L 362.80932,-13.220397 L 358.58993,-15.257343 L 357.20772,-15.257343 L 354.37054,-11.110702 L 346.73199,-11.765435 L 343.24009,-11.110702 L 339.74818,-11.110702 L 339.74818,-11.765435 L 337.63848,-10.383222 L 337.63848,-9.001008 L 336.911,-6.8913136 L 328.54497,-4.7816191 L 326.43528,-5.5090999 L 325.05306,-5.5090999 L 322.28864,-7.6187944 L 319.45146,-7.6187944 L 315.95955,-9.7284888 L 311.81291,-14.60261 L 311.08543,-15.984824 L 311.08543,-16.712305 L 310.4307,-18.749251 L 311.81291,-20.858946 L 313.19513,-25.078335 L 312.46765,-27.842762 L 312.46765,-28.570243 L 308.97574,-32.716884 L 306.21131,-34.826578 L 303.44688,-34.826578 L 292.97116,-28.570243 L 283.15017,-26.460548 L 277.54857,-25.733067 L 274.05666,-24.350854 L 272.01971,-21.586427 L 270.56475,-16.712305 L 269.91002,-14.60261 L 263.58093,-13.220397 L 260.81651,-11.110702 L 255.94238,-10.383222 L 253.83269,-9.001008 L 248.23109,-9.7284888 L 244.73918,-9.001008 L 237.10063,-4.7816191 L 237.75536,-5.5090999 L 235.64567,-4.7816191 L 234.99094,-4.1268863 L 236.37315,-4.1268863 L 234.99094,-3.3994055 L 234.99094,-0.6349783 L 233.60872,-0.6349783 L 233.60872,-1.2897111 L 232.15376,-2.0171919 L 231.49903,-1.2897111 L 232.15376,0.092502547 L 230.11681,-0.6349783 L 228.00712,1.4747162 L 226.62491,3.5844106 L 226.62491,5.694105 L 228.00712,7.0763186 L 232.88124,9.8407459 L 236.37315,14.714868 L 235.64567,16.169829 L 235.64567,18.934256 L 234.26346,19.661737 L 234.26346,21.043951 L 232.88124,21.043951 L 231.49903,24.535859 L 232.15376,26.645553 L 234.99094,27.300286 L 237.10063,30.792194 L 237.10063,33.629369 L 233.60872,31.519675 L 232.15376,30.137461 L 230.77155,30.792194 L 231.49903,31.519675 L 230.11681,33.629369 L 230.77155,34.284102 L 230.11681,34.284102 L 230.77155,35.011583 L 228.66185,35.666316 L 228.00712,35.666316 L 228.00712,36.393797 L 227.27964,37.121277 L 223.133,36.393797 L 218.91361,33.629369 L 216.14918,33.629369 L 214.69422,34.284102 L 211.92979,33.629369 L 211.20231,33.629369 L 211.20231,35.011583 L 209.8201,35.011583 L 208.43789,36.393797 L 207.05567,36.393797 L 207.05567,35.011583 L 204.94598,35.011583 L 200.72659,37.121277 L 200.07186,37.121277 L 199.34437,35.666316 L 195.19773,35.666316 L 191.70583,34.284102 L 190.25086,35.011583 L 190.25086,36.393797 L 188.21392,37.77601 L 181.2301,39.158224 L 177.73819,38.503491 L 176.28323,39.158224 L 174.90102,38.503491 L 173.5188,39.885705 L 170.0269,38.503491 L 168.64468,39.158224 L 158.82369,39.885705 L 152.56736,38.503491 L 149.07545,35.666316 L 147.69323,35.666316 L 146.31102,37.121277 L 143.47385,35.666316 L 142.81911,37.121277 L 141.36415,37.121277 L 138.59972,35.666316 L 137.21751,34.284102 L 131.61591,32.901889 L 128.124,35.011583 L 126.01431,35.011583 L 124.63209,36.393797 L 125.35957,35.011583 L 124.63209,35.666316 L 124.63209,36.393797 L 124.63209,39.158224 L 123.24988,37.77601 L 121.14018,37.121277 L 118.37576,39.158224 L 117.64828,38.503491 L 116.9208,39.885705 L 113.42889,39.885705 L 110.66446,41.267918 L 107.90003,46.14204 L 107.90003,48.251734 L 108.55477,48.979215 L 107.17255,49.633948 L 104.40812,49.633948 L 103.68064,50.361429 L 100.18874,45.487307 L 90.440492,36.393797 L 83.456676,35.011583 L 74.363166,35.011583 L 70.871258,32.901889 L 65.269655,30.792194 L 63.887441,27.300286 L 56.176145,22.426164 L 53.411717,16.824562 L 52.029504,15.442348 L 53.411717,11.95044 L 51.302023,9.1860131 L 50.574542,8.4585323 L 47.082634,5.694105 L 43.590726,4.2391434 L 39.444085,2.202197 L 33.842483,2.202197 L 28.24088,-0.6349783 L 20.602331,0.092502547 L 15.000729,2.202197 L 10.78134,0.74723531 L 2.4153102,-6.2365808 L -3.8410251,-6.2365808 L -7.3329331,-6.8913136 L -15.04423,-13.87513 L -19.263619,-18.749251 L -33.231251,-22.241159 L -34.613465,-23.696121 L -30.394076,-21.586427 L -31.776289,-23.696121 L -40.215067,-27.842762 L -39.487586,-27.842762 L -40.215067,-29.224975 L -41.597281,-28.570243 L -47.198883,-33.444364 L -48.581097,-32.716884 L -49.963311,-32.716884 L -54.182699,-35.554059 L -61.166516,-44.647569 L -61.166516,-45.302302 L -59.056821,-42.537875 L -57.674607,-42.537875 L -58.32934,-48.139477 L -57.674607,-50.176424 L -56.219646,-48.79421 L -56.219646,-49.521691 L -55.564913,-50.176424 L -56.219646,-50.176424 L -56.947127,-53.013599 L -56.219646,-55.778026 L -57.674607,-56.505507 L -58.32934,-57.887721 L -49.963311,-62.10711 C -46.165861,-66.585505 -39.065648,-66.6495 -35.268198,-71.127872 L 2.4153102,-90.042374 L 5.1797374,-91.424588 L 6.6346991,-91.424588 L 20.602331,-98.408404 L 21.984545,-98.408404 L 24.748972,-99.790617 L 26.858667,-100.5181 L 31.078055,-102.55504 L 32.460269,-102.55504 L 39.444085,-106.04695 L 40.826299,-106.04695 L 42.208512,-106.77443 L 44.318207,-107.50191 C 49.105031,-109.70766 54.145018,-110.86579 59.01332,-113.03077 L 60.395533,-113.03077 L 64.542174,-115.14046 L 65.997136,-115.14046 L 68.761563,-116.52268 L 70.871258,-117.25016 L 72.253471,-117.25016 L 75.017898,-118.63237 L 76.47286,-118.63237 L 79.237287,-120.01458 L 81.346982,-120.01458 L 84.111409,-121.46955 L 85.493623,-121.46955 L 88.330798,-122.85176 L 89.713011,-122.85176 L 91.822706,-123.50649 L 93.204919,-124.23397 L 94.587133,-124.23397 L 95.969347,-124.96145 L 97.424308,-124.96145 L 98.806522,-125.61619 L 100.91622,-126.34367 L 102.29843,-126.34367 L 103.68064,-126.9984 L 105.06286,-126.9984 L 106.44507,-127.72588 L 107.90003,-127.72588 L 109.93698,-128.45336 L 111.39194,-129.1081 L 112.77415,-129.1081 L 114.15637,-129.83558 L 115.53858,-129.83558 L 116.9208,-130.49031 L 119.03049,-130.49031 L 120.4127,-131.21779 L 121.86766,-131.21779 L 123.24988,-131.94527 L 124.63209,-131.94527 L 126.74179,-132.6 L 128.124,-132.6 L 129.50621,-133.32748 L 130.88843,-133.32748 L 132.34339,-133.98222 L 133.7256,-133.98222 L 135.8353,-134.7097 L 137.21751,-134.7097 L 138.59972,-135.43718 L 139.98194,-135.43718 L 141.36415,-136.09191 L 143.47385,-136.09191 L 144.85606,-136.81939 L 147.69323,-136.81939 L 149.07545,-137.47413 L 151.18514,-137.47413 L 152.56736,-138.20161 L 153.94957,-138.20161 L 155.33178,-138.92909 L 158.82369,-138.92909 L 160.27865,-139.58382 L 163.04308,-139.58382 L 165.15277,-140.3113 L 166.53499,-140.3113 L 167.9172,-140.96603 L 170.75438,-140.96603 L 172.79132,-141.69351 L 175.6285,-141.69351 L 177.01071,-142.42099 L 180.50262,-142.42099 L 181.88483,-143.07573 L 186.75896,-143.07573 L 188.21392,-143.80321 L 190.97834,-143.80321 L 193.08804,-144.45794 L 197.23468,-144.45794 L 198.68964,-145.18542 L 203.56376,-145.18542 L 204.94598,-145.9129 L 211.20231,-145.9129 L 213.31201,-146.56764 L 221.0233,-146.56764 L 222.40552,-147.29512 L 230.11681,-147.29512 L 231.49903,-147.94985 L 246.12139,-147.94985 L 247.57635,-148.67733 L 288.02429,-148.67733 L 289.47925,-147.94985 L 304.10162,-147.94985 L 305.48383,-147.29512 L 313.19513,-147.29512 L 314.57734,-146.56764 L 322.28864,-146.56764 L 324.39833,-145.9129 L 330.65467,-145.9129 L 332.03688,-145.18542 L 336.911,-145.18542 L 338.36596,-144.45794 L 342.5126,-144.45794 L 344.6223,-143.80321 L 347.38673,-143.80321 L 348.84169,-143.07573 L 353.71581,-143.07573 L 355.09802,-142.42099 L 358.58993,-142.42099 L 359.97214,-141.69351 L 362.80932,-141.69351 L 364.84627,-140.96603 L 367.68344,-140.96603 L 369.06566,-140.3113 L 370.44787,-140.3113 L 372.55756,-139.58382 L 375.32199,-139.58382 L 376.77695,-138.92909 L 380.26886,-138.92909 L 381.65107,-138.20161 L 383.03329,-138.20161 L 384.4155,-137.47413 L 386.5252,-137.47413 L 387.90741,-136.81939 L 390.74458,-136.81939 L 392.1268,-136.09191 L 394.23649,-136.09191 L 395.61871,-135.43718 L 397.00092,-135.43718 L 398.38313,-134.7097 L 399.76535,-134.7097 L 401.87504,-133.98222 L 403.25726,-133.98222 L 404.71222,-133.32748 L 406.09443,-133.32748 L 407.47664,-132.6 L 408.85886,-132.6 L 410.96855,-131.94527 L 412.35077,-131.94527 L 413.73298,-131.21779 L 415.18794,-131.21779 L 416.57015,-130.49031 L 418.67985,-130.49031 L 420.06206,-129.83558 L 421.44428,-129.83558 L 422.82649,-129.1081 L 424.2087,-129.1081 L 425.66367,-128.45336 L 427.70061,-127.72588 L 429.15557,-127.72588 L 430.53779,-126.9984 L 431.92,-126.9984 L 433.30221,-126.34367 L 434.68443,-126.34367 C 437.78638,-125.56376 440.65268,-123.75966 443.77794,-123.50649 L 445.88763,-122.85176 L 447.26985,-122.85176 L 450.10702,-121.46955 L 451.48924,-121.46955 L 452.87145,-120.74207 L 454.98114,-120.01458 L 456.36336,-120.01458 L 459.12778,-118.63237 L 460.58275,-118.63237 L 461.96496,-117.97764 L 464.07465,-117.25016 L 465.45687,-116.52268 C 469.53369,-116.44118 473.13906,-112.95802 477.3148,-113.03077 L 481.53419,-110.99382 L 482.91641,-110.99382 L 485.68083,-109.53886 L 487.79053,-108.88413 L 489.17274,-108.15665 L 490.55496,-108.15665 L 496.15656,-105.39222 L 497.53877,-105.39222 L 498.99373,-104.66474 L 501.03068,-104.01001 L 505.25007,-101.90031 L 503.14037,-97.02619 L 503.14037,-96.298709 L 499.64847,-91.424588 L 498.99373,-89.314893 L 500.37595,-90.042374 L 501.75816,-91.424588 L 501.75816,-90.042374 L 496.88404,-87.93268 L 494.04686,-84.440771 L 493.39213,-81.603596 L 487.79053,-80.221383 L 485.0261,-78.111688 L 481.53419,-78.111688 L 478.04229,-76.729475 L 473.8229,-71.855353 L 471.7132,-66.981231 L 472.44068,-66.25375 L 472.44068,-66.981231 L 475.20511,-66.25375 L 471.7132,-65.599018 L 466.83908,-62.10711 L 456.36336,-51.631385 L 447.26985,-43.920088 L 447.26985,-41.810394 L 445.16015,-39.7007 L 444.50542,-38.318486 L 443.12321,-38.318486 L 440.28603,-35.554059 L 441.01351,-35.554059 L 439.6313,-34.171845 L 441.01351,-34.171845 L 440.28603,-33.444364 L 431.92,-27.842762 L 430.53779,-26.460548 L 428.42809,-25.078335 L 428.42809,-23.696121 L 427.04588,-21.586427 L 423.55397,-19.476732 L 424.2087,-15.984824 L 423.55397,-15.257343 L 424.2087,-15.257343 L 425.66367,-15.984824 L 427.70061,-19.476732 L 432.64748,-22.96864 L 434.68443,-27.188029 L 441.66824,-31.33467 L 446.61511,-32.716884 L 445.88763,-32.062151 L 447.26985,-29.224975 L 445.88763,-25.733067 L 446.61511,-21.586427 L 445.16015,-15.257343 L 445.88763,-13.220397 L 447.26985,-12.492916 L 447.99733,-21.586427 L 448.65206,-22.96864 L 448.65206,-27.842762 L 449.37954,-28.570243 L 449.37954,-27.188029 L 450.10702,-27.842762 L 452.14397,-26.460548 L 454.25366,-26.460548 L 453.59893,-27.188029 L 457.09084,-28.570243 L 459.85526,-31.33467 L 462.61969,-32.716884 L 462.61969,-33.444364 L 468.22129,-36.936272 L 473.09542,-41.155661 L 475.20511,-41.155661 L 475.20511,-43.192608 L 476.58732,-43.920088 L 477.3148,-43.920088 L 478.69702,-44.647569 L 483.57114,-48.139477 L 485.0261,-50.903905 L 484.29862,-51.631385 L 488.51801,-54.395813 L 488.51801,-55.123293 L 490.55496,-55.778026 L 491.28244,-55.123293 L 494.04686,-55.778026 L 494.04686,-55.123293 L 494.77435,-55.778026 L 501.03068,-57.16024 L 507.35976,-62.761842 L 508.0145,-64.144056 L 508.74198,-63.489323 L 510.12419,-64.871537 L 508.0145,-64.144056 L 510.12419,-65.599018 L 510.85167,-65.599018 L 512.96137,-69.745658 L 513.6161,-68.363445 L 513.6161,-71.855353 L 514.34358,-72.582834 L 514.34358,-73.237567 L 513.6161,-72.582834 L 513.6161,-73.965047 L 516.45327,-76.074742 L 518.49022,-78.839169 L 518.49022,-80.221383 L 520.59992,-82.331077 L 528.96594,-87.205199 L 531.07564,-87.205199 L 531.80312,-86.550466 L 533.18533,-86.550466 L 538.05946,-87.205199 L 543.66106,-84.440771 L 545.77075,-83.713291 L 572.3238,-70.473139 L 573.70602,-69.090926 L 577.85266,-66.981231 L 578.58014,-66.25375 L 582.79953,-64.144056 L 584.18174,-62.761842 L 592.54777,-58.615202 L 593.92998,-57.16024 L 599.53159,-54.395813 L 600.9138,-53.013599 L 602.29601,-52.286118 L 603.02349,-51.631385 L 605.78792,-50.176424 L 607.24288,-48.79421 L 611.38952,-46.684516 L 612.77174,-45.302302 L 615.60891,-43.920088 L 617.71861,-41.810394 L 621.86525,-39.7007 L 623.24746,-38.318486 L 626.08464,-36.936272 L 628.19433,-34.826578 L 630.95876,-33.444364 L 632.34097,-32.062151 L 633.72319,-31.33467 L 635.83288,-29.224975 L 638.67006,-27.842762 L 640.05227,-26.460548 L 641.43448,-25.733067 L 643.54418,-23.696121 L 646.30861,-22.241159 L 648.4183,-20.204213 L 649.80051,-19.476732 C 652.23035,-17.474705 656.29837,-13.933328 658.89402,-12.492916 L 659.6215,-11.110702 L 662.38593,-9.7284888 L 665.87784,-6.2365808 L 667.26005,-5.5090999 L 669.36975,-3.3994055 L 670.75196,-2.7446727 L 672.13417,-1.2897111 L 673.58914,-0.6349783 L 674.24387,0.74723531 L 675.62608,1.4747162 L 677.08104,2.8569298 L 678.46326,3.5844106 L 679.11799,4.9666242 L 680.57295,5.694105 L 684.06486,9.1860131 L 685.44707,9.8407459 L 686.10181,11.222959 L 687.55677,11.95044 L 691.04868,15.442348 L 692.43089,16.169829 L 693.08562,17.552043 L 694.54058,18.206776 L 693.08562,21.043951 L 693.08562,26.645553 L 693.8131,27.300286 L 695.19532,25.190592 L 697.30501,26.645553 L 697.30501,27.300286 L 695.9228,30.137461 L 696.57753,32.174408 L 695.9228,31.519675 L 695.19532,34.284102 L 694.54058,38.503491 L 695.9228,41.995399 L 693.08562,51.743642 L 690.3212,54.580818 L 688.2115,52.471123 L 674.97135,54.580818 L 672.86166,54.580818 L 670.75196,52.471123 L 659.6215,46.869521 L 651.91021,47.597002 L 647.03609,49.633948 L 642.16196,54.580818 L 640.707,55.235551 L 640.05227,58.727459 L 638.67006,58.727459 L 638.67006,60.109672 L 637.94258,59.454939 L 637.21509,59.454939 L 637.21509,60.109672 L 636.56036,59.454939 L 635.83288,59.454939 L 637.21509,53.853337 L 636.56036,52.471123 L 636.56036,49.633948 L 635.83288,49.633948 L 636.56036,47.597002 L 635.83288,41.995399 L 635.17815,38.503491 L 635.17815,37.77601 L 634.45067,37.77601 L 635.83288,35.011583 L 635.17815,34.284102 L 635.83288,34.284102 L 635.17815,33.629369 L 634.45067,33.629369 L 634.45067,32.174408 L 635.83288,32.901889 L 636.56036,32.174408 L 635.17815,30.137461 L 633.72319,30.137461 L 633.72319,29.409981 L 635.17815,29.409981 L 634.45067,28.027767 L 631.68624,24.535859 L 629.57655,23.808378 L 628.84906,23.153645 L 626.73937,22.426164 L 623.24746,19.661737 L 622.59273,19.661737 L 621.21052,16.169829 L 619.75555,14.714868 L 620.48304,14.060135 L 619.10082,14.060135 L 618.37334,13.332654 L 616.99113,12.677921 L 615.60891,15.442348 L 614.88143,14.060135 L 614.2267,14.714868 L 614.2267,13.332654 L 613.49922,14.060135 L 612.11701,13.332654 L 611.38952,12.677921 L 610.73479,14.060135 L 610.73479,16.169829 L 610.00731,16.169829 L 610.00731,15.442348 L 610.00731,14.060135 L 609.27983,15.442348 L 607.89762,15.442348 L 609.27983,16.169829 L 610.00731,15.442348 L 609.27983,21.043951 L 607.24288,23.153645 L 606.5154,22.426164 L 604.40571,24.535859 L 604.40571,25.918073 L 603.75098,25.918073 L 604.40571,26.645553 L 603.75098,26.645553 L 603.02349,28.027767 L 603.75098,27.300286 L 603.02349,28.6825 L 600.9138,28.027767 L 600.25907,28.6825 L 598.80411,28.6825 L 597.42189,25.918073 L 598.80411,23.808378 L 598.14937,23.808378 L 598.80411,22.426164 L 600.25907,22.426164 L 600.25907,20.31647 L 598.80411,20.31647 L 604.40571,14.714868 L 604.40571,13.332654 L 600.25907,14.714868 L 597.42189,17.552043 L 596.03968,18.206776 L 596.76716,16.824562 L 592.54777,18.206776 L 593.92998,18.206776 L 590.43808,20.31647 L 589.92884,20.31647 L 589.05586,21.698684 L 590.43808,21.043951 L 589.05586,24.535859 L 588.32838,25.918073 L 588.32838,24.535859 L 587.01892,24.535859 L 585.56395,26.645553 L 586.94617,26.645553 L 584.83647,27.300286 L 581.34457,26.645553 L 579.30762,28.027767 L 578.58014,27.300286 L 579.30762,27.300286 L 577.85266,26.645553 L 577.85266,27.300286 L 577.19792,26.645553 L 576.47044,28.027767 L 575.81571,27.300286 L 575.81571,28.027767 L 574.36075,28.027767 L 575.81571,28.6825 L 574.36075,29.409981 L 570.86884,28.027767 L 570.86884,28.6825 L 570.21411,28.6825 L 569.48663,28.6825 L 569.48663,29.409981 L 569.48663,30.137461 L 568.10441,30.792194 L 568.10441,31.519675 L 565.99472,30.792194 L 563.88503,33.629369 L 561.1206,34.284102 L 560.39312,35.666316 L 559.73838,35.666316 L 557.62869,36.393797 L 554.86426,39.885705 L 553.4093,39.158224 L 552.75457,37.77601 L 552.75457,38.503491 L 551.37235,37.77601 L 552.75457,40.613186 L 554.13678,41.995399 L 554.86426,44.759826 L 552.02709,45.487307 L 551.37235,44.759826 L 552.02709,44.759826 L 552.02709,44.105094 L 552.02709,43.377613 L 549.91739,44.759826 L 552.02709,46.14204 L 552.75457,46.14204 L 554.13678,46.14204 L 554.86426,46.869521 L 554.13678,46.869521 L 555.519,47.597002 L 555.519,48.251734 L 554.86426,48.251734 L 556.90121,48.979215 L 556.24648,51.08891 L 554.13678,51.743642 L 555.519,53.853337 L 554.13678,53.853337 L 555.519,54.580818 L 556.24648,53.853337 L 556.24648,55.235551 L 557.62869,55.235551 L 557.62869,53.853337 L 555.519,52.471123 L 558.35617,52.471123 L 558.35617,53.125856 L 559.0109,52.471123 L 561.1206,53.125856 L 561.84808,52.471123 L 563.88503,56.617764 L 565.33999,56.617764 L 566.7222,55.235551 L 573.70602,53.853337 L 575.81571,51.08891 L 577.85266,51.743642 L 578.58014,50.361429 L 577.85266,51.08891 L 577.85266,49.633948 L 579.96235,49.633948 L 579.30762,50.361429 L 579.96235,50.361429 L 582.79953,47.597002 L 588.32838,44.759826 L 591.82029,45.487307 L 593.92998,47.597002 L 596.03968,47.597002 L 598.14937,48.251734 L 601.64128,48.251734 L 600.9138,46.869521 L 602.29601,46.869521 L 610.73479,48.979215 L 611.38952,47.597002 L 614.2267,47.597002 L 618.37334,51.743642 L 619.75555,51.08891 L 623.24746,52.471123 L 625.35716,58.072726 L 626.73937,59.454939 L 626.73937,62.219367 L 628.19433,64.329061 L 628.84906,66.438755 L 630.23128,68.54845 L 632.34097,70.585396 L 633.06845,69.930664 L 634.45067,70.585396 L 635.83288,69.930664 L 637.94258,69.203183 L 641.43448,66.438755 L 643.54418,65.711275 L 644.19891,64.329061 L 647.03609,62.946847 L 650.52799,65.711275 L 651.91021,65.711275 L 651.91021,65.056542 L 652.63769,66.438755 L 654.67463,66.438755 L 655.40212,68.54845 L 656.78433,69.203183 L 657.51181,70.585396 L 663.11341,72.040358 L 663.76815,73.422572 L 663.11341,72.695091 L 662.38593,73.422572 L 663.11341,74.077304 L 663.76815,73.422572 L 664.49563,74.804785 L 663.76815,74.804785 L 668.64227,76.91448 L 668.64227,77.569212 L 670.09723,77.569212 L 671.47944,79.024174 L 671.47944,80.406388 L 672.13417,80.406388 L 673.58914,81.06112 L 672.13417,81.06112 L 672.86166,82.516082 L 673.58914,82.516082 L 674.24387,81.788601 L 681.95517,86.00799 L 681.22769,87.390204 L 681.22769,88.044937 L 681.95517,88.044937 L 683.33738,89.499898 L 684.71959,88.044937 L 684.71959,89.499898 L 686.10181,90.882112 L 685.44707,90.882112 L 685.44707,92.264325 L 686.82929,92.991806 L 687.55677,92.991806 L 687.55677,92.264325 L 688.2115,92.991806 L 687.55677,93.646539 L 687.55677,95.756234 L 691.04868,98.520661 L 692.43089,100.63036 L 694.54058,102.01257 L 693.08562,102.74005 L 693.8131,104.12226 L 697.30501,106.95944 L 696.57753,107.61417 L 695.9228,106.95944 L 696.57753,108.99638 L 697.30501,108.99638 L 696.57753,107.61417 L 697.30501,107.61417 L 700.06944,108.99638 L 700.79692,110.45135 L 702.17913,109.72387 L 702.90661,111.10608 L 701.5244,111.10608 L 701.5244,112.48829 L 705.01631,115.9802 L 705.01631,117.43516 L 707.05326,119.47211 L 710.54516,125.07371 L 712.00013,126.45593 L 711.27264,126.45593 L 711.27264,127.18341 L 709.89043,126.45593 L 709.16295,123.6915 L 708.50822,125.80119 L 709.89043,127.91089 L 712.65486,127.18341 L 712.65486,126.45593 L 715.49203,127.18341 L 718.25646,123.6915 L 719.63867,125.80119 L 721.02089,126.45593 L 721.02089,127.18341 L 722.47585,128.56562 L 723.13058,126.45593 L 723.85806,127.91089 L 724.5128,127.18341 L 723.85806,126.45593 L 724.5128,126.45593 L 725.24028,125.80119 L 725.24028,126.45593 L 725.96776,125.80119 L 725.96776,126.45593 L 727.34997,126.45593 L 726.62249,125.07371 L 728.0047,125.80119 L 727.34997,125.07371 L 728.73218,124.41898 L 728.73218,125.07371 L 730.1144,125.07371 L 729.45967,124.41898 L 730.1144,124.41898 L 730.1144,123.6915 L 730.84188,125.07371 L 731.49661,124.41898 L 732.44234,124.85547 L 732.95157,124.41898 L 733.60631,125.07371 L 732.95157,125.80119 L 734.33379,126.45593 L 733.67905,127.18341 L 735.716,127.18341 L 734.33379,128.56562 L 735.716,128.56562 L 735.716,131.40279 L 736.44348,129.2931 L 737.8257,128.56562 L 737.8257,127.91089 L 739.20791,127.91089 L 739.20791,129.2931 L 737.8257,131.40279 L 738.48043,130.67531 L 739.20791,131.40279 L 740.59012,129.2931 L 741.3176,129.94783 L 742.69982,129.2931 L 744.08203,129.94783 L 744.08203,128.56562 L 745.46424,129.2931 L 744.80951,128.56562 L 751.06585,131.40279 L 752.44806,132.05753 L 755.28524,134.8947 L 754.55775,137.65913 L 755.28524,138.38661 L 755.93997,139.04134 L 755.28524,139.76882 L 756.66745,140.42356 L 755.28524,141.15104 L 756.66745,141.15104 L 757.39493,142.53325 L 760.15936,137.65913 L 758.77714,136.27692 L 758.77714,133.43974 L 758.04966,133.43974 L 758.77714,132.05753 L 758.04966,130.67531 L 756.66745,131.40279 L 757.39493,129.94783 L 756.66745,127.91089 L 755.93997,127.18341 L 755.28524,128.56562 L 754.55775,126.45593 L 753.90302,127.91089 L 754.55775,125.07371 L 771.36256,127.18341 L 773.39951,127.91089 L 781.11081,131.40279 L 783.2205,137.65913 L 782.49302,139.04134 L 783.87523,146.02516 L 782.49302,146.75264 L 781.11081,150.24455 L 778.34638,150.24455 L 778.34638,150.89928 L 779.00111,150.89928 L 778.34638,151.62676 L 776.89142,150.89928 L 777.6189,151.62676 L 776.23668,151.62676 L 776.23668,153.00898 L 774.85447,155.11867 L 774.85447,155.84615 L 776.23668,155.11867 L 775.5092,156.50088 L 777.6189,157.8831 L 778.34638,159.99279 L 778.34638,157.8831 L 776.89142,156.50088 L 779.00111,154.39119 L 779.72859,154.39119 L 780.38332,156.50088 L 780.38332,155.11867 L 781.83829,153.00898 L 783.87523,156.50088 L 783.87523,155.11867 L 784.60271,153.00898 L 784.60271,152.35424 L 785.33019,153.73646 L 785.98493,150.89928 L 787.36714,151.62676 L 786.71241,150.89928 L 788.09462,150.24455 L 788.09462,152.35424 L 788.8221,150.89928 L 789.47684,151.62676 L 790.20432,151.62676 L 790.85905,150.24455 L 792.31401,150.24455 L 792.96874,150.89928 L 792.96874,150.24455 L 795.07844,148.86234 L 796.46065,146.02516 L 799.29783,144.64295 L 799.95256,146.02516 L 802.06225,148.13485 L 806.28164,156.50088 L 807.66386,157.22836 L 813.26546,168.35882 L 814.64767,169.0863 L 822.28622,184.43615 L 823.0137,185.16363 L 837.70881,214.48111 L 839.09103,217.24553 L 839.09103,218.7005 L 844.69263,229.83095 L 844.69263,231.21317 L 848.83927,239.65194 L 848.83927,241.03416 L 851.67645,246.63576 L 851.67645,248.01797 L 854.44087,253.61958 L 854.44087,255.00179 L 857.2053,260.60339 L 857.2053,261.98561 L 859.315,266.13225 L 859.315,268.24194 L 860.69721,271.07912 L 860.69721,272.46133 L 862.8069,276.60797 L 862.8069,278.06293 L 863.53438,279.44515 L 862.15217,281.55484 L 861.42469,285.04675 L 861.42469,283.59179 L 860.69721,285.04675 L 860.04248,284.31927 L 858.66026,285.04675 L 859.315,285.04675 L 857.93278,289.19339 L 857.93278,287.81118 L 857.2053,288.53866 L 856.55057,287.0837 L 856.55057,288.53866 L 852.33118,287.81118 L 850.94897,289.19339 L 848.83927,292.03057 L 849.56675,294.79499 L 849.56675,299.66911 L 846.07484,305.27072 L 848.18454,304.54324 L 852.33118,303.8885 L 852.33118,304.54324 L 850.94897,304.54324 L 850.94897,305.9982 L 852.33118,305.27072 L 851.67645,305.9982 L 852.33118,305.9982 L 849.56675,307.38041 L 848.83927,308.03514 L 850.94897,308.03514 L 848.18454,309.49011 L 848.83927,310.14484 L 848.18454,310.14484 L 848.18454,310.87232 L 848.83927,310.87232 L 852.33118,308.76262 L 853.05866,310.14484 L 853.71339,310.14484 L 851.67645,310.87232 L 853.05866,310.87232 L 854.44087,312.25453 L 853.71339,312.25453 L 854.44087,312.98201 L 850.94897,312.25453 L 850.22149,312.98201 L 850.94897,313.63675 L 852.33118,313.63675 L 852.33118,314.36423 L 853.05866,314.36423 L 853.71339,315.01896 L 851.67645,316.47392 L 853.71339,315.74644 L 853.71339,317.12865 L 851.67645,317.12865 L 852.33118,317.85614 L 850.22149,318.51087 L 851.67645,318.51087 L 850.94897,319.23835 L 852.33118,318.51087 L 852.33118,319.23835 L 853.05866,317.85614 L 854.44087,318.51087 L 854.44087,319.23835 L 853.71339,319.23835 L 853.71339,321.34804 L 851.67645,321.34804 L 850.94897,322.00278 L 849.56675,322.00278 L 848.18454,323.45774 L 853.05866,322.00278 L 852.33118,323.45774 L 850.94897,324.11247 L 850.94897,324.83995 L 852.33118,323.45774 L 853.05866,323.45774 L 851.67645,325.49468 L 853.71339,322.73026 L 854.44087,323.45774 L 855.16836,324.83995 L 851.67645,327.60438 L 853.05866,327.60438 L 850.94897,330.44155 L 847.45706,330.44155 L 849.56675,331.09629 L 854.44087,329.71407 L 853.05866,331.82377 L 849.56675,333.20598 L 847.45706,331.82377 L 846.07484,332.4785 L 846.72958,333.20598 L 848.83927,334.58819 L 847.45706,336.69789 L 848.18454,338.0801 L 848.18454,340.1898 L 851.67645,341.57201 L 854.44087,342.29949 L 854.44087,342.95422 L 859.315,342.29949 L 860.04248,341.57201 L 860.04248,342.95422 L 861.42469,342.29949 L 861.42469,342.95422 L 863.53438,342.95422 L 864.18912,341.57201 L 865.64408,342.29949 L 867.02629,342.29949 L 872.6279,344.40919 L 869.79072,343.68171 L 869.79072,345.06392 L 873.28263,344.40919 L 878.88423,347.17361 L 878.88423,348.55583 L 879.61171,347.17361 L 880.99393,348.55583 L 880.26644,348.55583 L 879.61171,349.93804 L 876.1198,351.393 L 878.15675,350.66552 L 878.88423,351.393 L 878.88423,350.66552 L 880.99393,349.28331 L 880.26644,351.393 L 880.99393,351.393 L 880.99393,349.93804 L 882.37614,350.66552 L 881.64866,352.04773 L 883.10362,352.04773 L 880.99393,352.77522 L 883.75835,353.42995 L 883.75835,355.53964 L 884.48583,356.92186 L 884.48583,359.75903 L 885.14057,361.14125 L 885.14057,363.25094 L 885.86805,364.63315 L 885.86805,366.01537 L 886.59553,367.39758 L 886.59553,370.88949 L 887.25026,372.34445 L 887.25026,375.10888 L 887.97774,377.21857 L 887.97774,378.60079 L 888.63247,379.983 L 888.63247,382.82017 L 889.35995,384.85712 L 889.35995,387.6943 L 890.08744,389.07651 L 890.08744,392.56842 L 890.74217,393.95063 L 890.74217,398.82475 L 891.46965,400.27971 L 891.46965,403.04414 L 892.12438,405.15384 L 892.12438,409.30048 L 892.85186,410.75544 L 892.85186,415.62956 L 893.57934,417.01177 L 893.57934,423.26811 L 894.23408,425.3778 L 894.23408,432.36162 L 894.96156,434.47131 L 894.96156,442.83734 L 895.61629,444.94704 L 895.61629,458.18719 L 896.34377,459.64215 L 896.34377,479.86612 L 786.71241,479.86612 L 687.55677,479.86612 L 595.3122,479.86612 L 582.07205,479.86612 L 582.79953,478.48391 L 582.07205,475.64673 L 580.68983,472.8823 L 579.96235,472.8823 L 579.96235,477.75642 L 579.30762,478.48391 L 578.58014,479.86612 L 509.46946,479.86612 L 427.04588,479.86612 L 404.71222,479.86612 L 406.09443,477.75642 L 405.36695,477.75642 L 403.98474,479.86612 L 398.38313,479.86612 L 387.90741,479.86612 L 388.63489,477.75642 L 389.28962,477.75642 L 390.0171,474.992 L 390.74458,474.992 L 390.0171,473.60978 L 392.78153,473.60978 L 391.39932,472.15482 L 390.0171,472.15482 L 390.74458,470.11788 L 390.74458,471.50009 L 394.23649,472.15482 L 395.61871,472.15482 L 395.61871,470.77261 L 394.23649,471.50009 L 391.39932,470.77261 L 391.39932,468.66291 L 390.74458,468.66291 L 390.74458,469.39039 L 389.28962,470.77261 L 387.90741,470.11788 L 387.47092,469.68139 L 387.25268,469.39039 L 386.88894,469.75414 L 385.79771,470.77261 L 387.25268,470.11788 L 389.28962,472.15482 L 389.28962,475.64673 L 387.90741,477.75642 L 387.25268,477.10169 L 385.14298,478.48391 L 385.79771,479.13864 L 387.25268,479.13864 L 387.25268,479.86612 L 369.79314,479.86612 L 369.79314,478.48391 L 369.06566,479.86612 L 364.84627,479.86612 z M 387.90741,477.75642 L 387.90741,478.48391 L 387.25268,478.48391 L 387.90741,477.75642 z M 882.37614,350.66552 L 880.99393,349.28331 L 882.37614,349.28331 L 883.10362,349.93804 L 883.10362,350.66552 L 882.37614,350.66552 z M 861.42469,342.29949 L 862.8069,341.57201 L 863.53438,342.29949 L 861.42469,342.29949 z M 790.20432,151.62676 L 788.8221,150.89928 L 789.47684,150.24455 L 790.20432,150.24455 L 790.20432,151.62676 z M 736.44348,129.2931 L 735.716,128.56562 L 736.44348,127.18341 L 737.09821,127.91089 L 736.44348,129.2931 z M 569.48663,30.137461 L 570.21411,28.6825 L 570.21411,29.409981 L 569.48663,30.137461 z M 600.25907,20.31647 L 598.80411,21.698684 L 598.80411,21.043951 L 600.25907,20.31647 z M 635.17815,30.137461 L 635.17815,30.792194 L 633.72319,30.792194 L 635.17815,30.137461 z M 637.21509,60.109672 L 638.67006,60.837153 L 637.94258,60.837153 L 637.94258,61.564634 L 637.21509,60.837153 L 637.21509,61.564634 L 635.83288,61.564634 L 636.56036,60.837153 L 636.56036,60.109672 L 637.21509,60.109672 z M 232.15376,0.092502547 L 232.88124,0.74723531 L 233.60872,-0.6349783 L 234.99094,0.74723531 L 234.26346,1.4747162 L 232.15376,2.202197 L 232.15376,0.092502547 z M 370.44787,39.885705 L 369.06566,39.158224 L 369.79314,39.158224 L 370.44787,39.885705 z M 364.19153,42.650132 L 363.46405,43.377613 L 362.80932,42.650132 L 362.80932,41.267918 L 364.19153,42.650132 z M 353.71581,52.471123 L 352.98833,53.125856 L 352.98833,52.471123 L 353.71581,52.471123 z M 360.69963,74.804785 L 361.35436,75.532266 L 359.31741,75.532266 L 358.58993,74.804785 L 360.69963,74.804785 z M 397.51016,146.67989 L 397.00092,144.64295 L 397.7284,146.75264 L 397.51016,146.67989 z M 392.99978,136.20417 L 393.50901,135.54944 L 394.38199,135.0402 L 392.99978,136.20417 z M 359.31741,116.70768 L 358.58993,115.9802 L 358.58993,115.32547 L 359.31741,116.70768 z M 358.58993,115.32547 L 357.86245,115.32547 L 357.20772,114.59799 L 358.58993,115.32547 z M 328.54497,66.438755 L 329.27245,65.056542 L 332.03688,64.329061 L 330.65467,65.056542 L 328.54497,66.438755 z M 326.43528,53.853337 L 326.43528,53.125856 L 327.89024,53.853337 L 329.92719,53.125856 L 332.76436,51.08891 L 333.41909,50.361429 L 336.25627,50.361429 L 337.63848,47.597002 L 339.0207,46.869521 L 339.74818,46.869521 L 340.40291,46.869521 L 340.40291,48.979215 L 338.36596,48.979215 L 336.25627,53.125856 L 332.03688,53.125856 L 329.92719,55.963031 L 326.43528,53.853337 z M 332.76436,46.14204 L 332.03688,45.487307 L 332.76436,44.759826 L 333.41909,45.487307 L 332.76436,46.14204 z M 286.64208,87.390204 L 283.15017,88.772417 L 281.76795,88.772417 L 286.64208,86.662723 L 285.98734,87.390204 L 286.64208,87.390204 z M 281.76795,88.772417 L 279.65826,88.772417 L 279.00353,88.044937 L 283.15017,88.044937 L 281.76795,88.772417 z M 265.03589,109.72387 L 264.30841,107.61417 L 265.69063,107.61417 L 266.41811,106.23196 L 266.41811,106.95944 L 265.03589,109.72387 z M 165.80751,129.2931 L 165.80751,130.67531 L 165.15277,131.40279 L 165.80751,129.2931 z M 161.66087,146.75264 L 160.27865,147.40737 L 160.93339,146.75264 L 161.66087,146.75264 z M 208.43789,172.57821 L 207.05567,173.30569 L 207.7104,173.96042 L 206.32819,173.30569 L 207.7104,172.57821 L 208.43789,172.57821 z M 214.03949,183.05393 L 215.4217,183.78142 L 214.69422,185.16363 L 214.03949,183.78142 L 214.03949,183.05393 z M 237.75536,210.9892 L 237.75536,211.71668 L 237.24613,211.71668 L 237.75536,210.9892 z M 241.97475,201.24096 L 243.35697,198.40378 L 244.08445,197.74905 L 243.35697,197.74905 L 246.84887,197.02157 L 246.84887,199.13126 L 247.57635,199.13126 L 246.84887,200.51348 L 246.84887,201.89569 L 246.12139,201.24096 L 245.46666,200.51348 L 245.46666,201.24096 L 246.12139,201.24096 L 244.73918,201.89569 L 243.35697,201.89569 L 241.97475,201.24096 z M 241.24727,197.74905 L 241.97475,196.94882 L 241.97475,196.29409 L 242.62948,195.63935 L 243.35697,195.63935 L 243.35697,197.02157 L 241.24727,197.74905 z M 254.56017,190.76523 L 257.3246,191.41996 L 255.2149,191.41996 L 254.56017,190.76523 z M 258.05208,190.03775 L 259.43429,189.31027 L 260.08903,190.03775 L 261.54399,190.03775 L 260.81651,191.41996 L 259.43429,192.14745 L 258.70681,192.14745 L 259.43429,191.41996 L 258.70681,191.41996 L 258.70681,190.76523 L 258.05208,190.03775 z M 260.81651,191.41996 L 260.81651,192.14745 L 260.08903,192.80218 L 260.08903,193.52966 L 259.43429,192.80218 L 260.81651,191.41996 z M 262.63521,187.78256 L 262.9262,187.56432 L 262.9262,187.92806 L 262.63521,187.78256 z M 262.9262,187.56432 L 262.9262,187.27332 L 262.19872,186.54584 L 262.19872,185.81836 L 262.9262,185.81836 L 264.30841,185.81836 L 264.30841,186.54584 L 262.9262,187.56432 z M 264.30841,186.54584 L 265.03589,186.54584 L 265.69063,185.81836 L 266.41811,187.27332 L 264.30841,186.54584 z M 284.53238,194.91187 L 286.64208,192.80218 L 286.64208,193.52966 L 284.53238,194.91187 z M 295.51734,197.60355 L 295.73559,197.74905 L 295.95383,198.18554 L 295.51734,197.60355 z M 295.95383,198.18554 L 297.84528,200.51348 L 297.84528,201.89569 L 295.95383,198.18554 z M 324.39833,248.67271 L 322.94337,249.40019 L 323.67085,248.01797 L 324.39833,248.67271 z M 300.60971,242.41637 L 300.60971,243.14385 L 299.22749,242.41637 L 298.50001,241.68889 L 299.95498,241.68889 L 298.50001,241.03416 L 298.50001,240.30668 L 299.95498,241.03416 L 300.60971,241.03416 L 300.60971,242.41637 z M 292.24368,266.85973 L 291.5162,267.58721 L 290.86146,266.85973 L 290.86146,267.58721 L 290.13398,266.85973 L 291.5162,266.13225 L 292.24368,266.85973 z M 297.1178,271.73385 L 296.46307,273.11606 L 296.46307,272.46133 L 297.1178,271.73385 z M 281.76795,241.68889 L 282.13169,241.3979 L 282.49544,241.68889 L 281.76795,241.68889 z M 282.13169,241.3979 L 282.05895,241.2524 L 282.20444,241.03416 L 282.49544,241.03416 L 282.13169,241.3979 z M 281.76795,233.32286 L 283.15017,232.66813 L 283.87765,233.32286 L 283.15017,233.32286 L 282.49544,234.05034 L 282.49544,233.32286 L 281.76795,233.32286 z M 252.15948,225.53882 L 252.08674,225.32057 L 252.45048,225.68431 L 252.15948,225.53882 z M 252.08674,225.32057 L 251.723,224.95683 L 251.723,224.22935 L 252.08674,225.32057 z M 229.38933,232.66813 L 229.24384,232.95912 L 228.66185,232.66813 L 229.38933,232.66813 z M 227.27964,239.65194 L 226.62491,241.03416 L 225.89743,240.30668 L 226.62491,239.65194 L 226.62491,238.92446 L 227.27964,239.65194 z M 227.27964,245.1808 L 226.62491,245.90828 L 225.89743,243.79859 L 226.62491,243.79859 L 227.27964,245.1808 z M 228.00712,247.72698 L 228.00712,248.01797 L 226.62491,248.67271 L 228.00712,247.72698 z M 230.77155,258.4937 L 230.11681,259.87591 L 229.38933,259.87591 L 229.38933,259.14843 L 230.77155,258.4937 z M 235.64567,261.98561 L 235.64567,262.64034 L 234.26346,262.64034 L 234.26346,261.98561 L 235.64567,261.98561 z M 239.13758,264.75003 L 240.59254,265.47751 L 240.59254,266.13225 L 239.86506,265.47751 L 239.13758,266.13225 L 239.13758,264.75003 z M 244.08445,268.24194 L 246.12139,268.96942 L 246.12139,269.62416 L 245.46666,269.62416 L 245.46666,270.35164 L 244.73918,270.35164 L 242.62948,268.96942 L 244.08445,268.24194 z M 242.62948,268.96942 L 241.24727,268.96942 L 241.97475,267.58721 L 242.62948,268.24194 L 242.62948,268.96942 z M 244.73918,270.35164 L 245.46666,271.07912 L 244.73918,271.73385 L 243.35697,270.35164 L 244.73918,270.35164 z M 253.5417,276.46248 L 253.83269,276.60797 L 253.10521,277.33545 L 253.5417,276.46248 z M 259.43429,283.59179 L 258.70681,285.04675 L 258.05208,283.59179 L 258.70681,284.31927 L 257.3246,282.20957 L 259.43429,283.59179 z M 260.81651,288.53866 L 259.43429,288.53866 L 258.70681,287.81118 L 260.81651,288.53866 z M 260.08903,289.19339 L 260.08903,290.5756 L 258.70681,288.53866 L 260.08903,289.19339 z M 266.41811,300.39659 L 267.80032,300.39659 L 267.80032,301.05133 L 266.41811,300.39659 z M 268.5278,302.50629 L 269.10979,303.74301 L 268.5278,303.16102 L 268.5278,303.8885 L 267.80032,303.8885 L 267.07284,303.16102 L 267.07284,302.50629 L 267.07284,301.77881 L 268.5278,302.50629 z M 272.01971,309.49011 L 272.67444,311.52705 L 271.29223,312.25453 L 272.01971,311.52705 L 271.29223,311.52705 L 271.29223,310.14484 L 270.56475,310.14484 L 269.91002,308.76262 L 270.56475,308.03514 L 271.29223,309.49011 L 272.01971,309.49011 z M 269.91002,308.76262 L 270.56475,310.87232 L 269.91002,310.87232 L 270.56475,312.25453 L 269.91002,312.25453 L 269.91002,311.52705 L 269.18254,310.87232 L 269.91002,309.49011 L 268.5278,309.49011 L 269.18254,308.76262 L 268.5278,307.38041 L 269.91002,307.38041 L 269.91002,308.76262 z M 269.18254,308.76262 L 268.5278,308.76262 L 267.07284,307.38041 L 267.07284,308.03514 L 265.69063,308.03514 L 266.41811,307.38041 L 265.69063,307.38041 L 265.69063,305.9982 L 267.07284,306.65293 L 267.80032,307.38041 L 269.18254,308.76262 z M 276.16635,317.85614 L 278.27605,317.85614 L 278.27605,318.51087 L 279.00353,319.23835 L 279.00353,319.96583 L 278.27605,320.62056 L 278.27605,319.96583 L 277.54857,319.23835 L 276.89383,319.23835 L 276.89383,318.51087 L 277.54857,318.51087 L 276.16635,317.85614 z M 278.27605,320.62056 L 279.65826,319.96583 L 281.04047,321.34804 L 280.38574,322.00278 L 279.65826,321.34804 L 279.65826,322.00278 L 279.00353,321.34804 L 278.27605,320.62056 z M 287.36956,323.45774 L 287.36956,324.11247 L 286.64208,324.83995 L 286.64208,323.45774 L 285.98734,324.83995 L 285.25986,323.45774 L 285.25986,324.11247 L 284.53238,323.45774 L 286.64208,322.73026 L 287.36956,323.45774 z M 288.75177,324.11247 L 289.47925,324.83995 L 288.75177,325.49468 L 288.02429,324.83995 L 288.75177,324.11247 z M 291.5162,326.94965 L 292.24368,327.60438 L 291.5162,328.33186 L 290.86146,328.98659 L 291.5162,326.94965 z M 295.73559,331.09629 L 296.46307,331.82377 L 296.46307,333.20598 L 295.73559,332.4785 L 295.73559,333.20598 L 295.00811,332.4785 L 294.35337,332.4785 L 295.73559,331.09629 z M 315.30482,326.22216 L 315.95955,325.49468 L 317.41452,325.49468 L 318.06925,326.94965 L 316.68703,326.94965 L 314.57734,327.60438 L 313.92261,326.94965 L 315.30482,326.22216 z M 371.17535,344.40919 L 371.32085,344.99117 L 371.17535,345.06392 L 371.17535,344.40919 z M 378.15917,402.31666 L 378.15917,403.04414 L 377.50443,403.04414 L 378.15917,402.31666 z M 377.50443,403.04414 L 378.8139,403.77162 L 378.8139,405.15384 L 379.54138,406.53605 L 378.15917,406.53605 L 376.77695,407.26353 L 376.04947,406.53605 L 375.32199,404.42636 L 376.77695,403.77162 L 377.50443,403.04414 z M 418.02512,386.09384 L 418.67985,385.5846 L 417.95237,386.31208 L 418.02512,386.09384 z M 421.44428,375.10888 L 421.44428,373.72666 L 422.82649,374.3814 L 422.82649,375.10888 L 421.44428,375.10888 z M 418.67985,372.34445 L 420.06206,371.61697 L 421.44428,372.34445 L 420.7168,372.99918 L 418.67985,372.34445 z M 385.14298,411.41017 L 383.76077,412.13765 L 383.03329,411.41017 L 383.76077,410.75544 L 385.14298,411.41017 z M 383.76077,442.18261 L 380.92359,440.72765 L 381.65107,440.72765 L 382.30581,440.07292 L 383.03329,440.07292 L 383.03329,440.72765 L 383.76077,442.18261 z M 376.04947,457.53246 L 376.04947,456.80498 L 376.77695,456.15024 L 376.04947,457.53246 z M -54.182699,479.13864 L -51.345524,477.10169 L -52.073005,476.37421 L -52.073005,477.10169 L -52.727738,477.75642 L -52.727738,477.10169 L -53.455219,477.10169 L -53.455219,478.48391 L -54.182699,479.13864 z M -6.6782003,479.13864 L -4.5685059,479.13864 L -4.5685059,477.10169 L -5.9507195,476.37421 L -6.6782003,474.992 L -8.060414,474.992 L -8.060414,476.37421 L -7.3329331,475.64673 L -6.6782003,479.13864 z M 92.477439,479.13864 L 91.095225,477.75642 L 90.440492,474.992 L 92.477439,474.992 L 92.477439,476.37421 L 93.204919,477.75642 L 93.9324,477.75642 L 93.204919,478.48391 L 93.204919,479.13864 L 92.477439,479.13864 z M 21.984545,478.48391 L 22.639278,478.48391 L 21.984545,476.37421 L 22.639278,477.10169 L 23.366758,477.10169 L 21.984545,476.37421 L 21.839049,476.01047 L 21.984545,475.64673 L 21.693553,475.64673 L 20.602331,472.8823 L 20.602331,474.26452 L 21.257064,474.992 L 21.257064,475.64673 L 21.693553,475.64673 L 21.839049,476.01047 L 21.257064,477.75642 L 21.984545,478.48391 z M 578.58014,478.48391 L 577.19792,477.10169 L 575.81571,476.37421 L 578.58014,478.48391 z M 4.5250046,477.75642 L 5.1797374,476.37421 L 4.5250046,476.37421 L 4.5250046,477.75642 z M 35.224696,477.75642 L 34.569963,476.37421 L 35.224696,475.64673 L 34.569963,473.60978 L 34.569963,474.992 L 33.842483,474.992 L 34.569963,475.64673 L 33.842483,476.37421 L 35.224696,477.75642 z M 406.74916,477.75642 L 407.47664,475.64673 L 410.24107,473.60978 L 410.96855,472.8823 L 411.69603,472.8823 L 414.46046,474.992 L 413.73298,473.60978 L 410.96855,472.15482 L 410.24107,473.60978 L 407.47664,474.992 L 406.74916,477.75642 z M -84.15491,477.10169 L -83.500177,477.10169 L -82.772697,475.64673 L -82.117964,475.64673 L -82.772697,474.992 L -83.500177,474.26452 L -82.772697,475.64673 L -84.882391,475.64673 L -84.882391,476.37421 L -82.772697,475.64673 L -84.15491,477.10169 z M 10.78134,477.10169 L 10.78134,475.64673 L 10.78134,474.26452 L 11.508821,473.60978 L 10.126607,472.8823 L 10.78134,475.64673 L 10.126607,475.64673 L 10.78134,477.10169 z M -62.548729,476.37421 L -61.166516,475.64673 L -61.821248,476.37421 L -61.166516,476.37421 L -59.711554,474.992 L -59.711554,475.64673 L -57.674607,472.8823 L -59.711554,474.26452 L -59.711554,474.992 L -60.439035,474.992 L -61.166516,474.26452 L -62.548729,476.37421 z M -3.8410251,476.37421 L -3.1862923,476.37421 L -3.6227808,475.93772 L -2.4588115,472.8823 L -1.8040787,472.8823 L -1.8040787,471.50009 L -2.4588115,472.8823 L -2.4588115,472.15482 L -3.1862923,472.15482 L -3.1862923,474.26452 L -3.8410251,473.60978 L -3.8410251,474.26452 L -4.5685059,474.992 L -3.6227808,475.93772 L -3.8410251,476.37421 z M 18.492637,476.37421 L 18.492637,475.64673 L 19.14737,476.37421 L 19.14737,475.64673 L 18.492637,474.26452 L 17.765156,474.992 L 18.492637,476.37421 z M 174.24629,476.37421 L 173.5188,475.64673 L 172.13659,474.992 L 172.13659,473.60978 L 171.40911,473.60978 L 172.13659,471.50009 L 170.75438,472.15482 L 170.75438,471.50009 L 170.0269,471.50009 L 169.29942,470.11788 L 170.0269,468.66291 L 170.0269,467.2807 L 171.40911,465.89849 L 170.75438,464.51627 L 170.0269,464.51627 L 169.29942,465.17101 L 168.64468,464.51627 L 169.29942,466.62597 L 167.9172,469.39039 L 167.26247,465.17101 L 167.9172,464.51627 L 167.26247,464.51627 L 167.26247,465.17101 L 167.26247,470.77261 L 167.26247,471.50009 L 166.53499,472.8823 L 166.53499,472.15482 L 165.80751,473.60978 L 165.15277,472.8823 L 165.15277,472.15482 L 164.42529,472.8823 L 163.77056,472.15482 L 165.15277,470.77261 L 165.80751,470.11788 L 164.42529,470.77261 L 163.77056,470.77261 L 163.04308,468.66291 L 163.04308,466.62597 L 162.3156,466.62597 L 162.3156,468.00818 L 160.93339,470.11788 L 158.82369,468.00818 L 158.82369,467.2807 L 157.44148,463.13406 L 159.55117,465.17101 L 160.27865,465.17101 L 160.27865,464.51627 L 158.82369,463.13406 L 160.93339,463.13406 L 160.93339,462.40658 L 160.27865,461.6791 L 160.27865,460.29688 L 160.93339,460.29688 L 160.93339,459.64215 L 161.66087,460.29688 L 161.66087,459.64215 L 160.27865,458.91467 L 160.27865,458.18719 L 162.3156,458.18719 L 162.3156,456.80498 L 161.66087,456.80498 L 162.3156,456.15024 L 161.66087,454.69528 L 161.66087,453.31307 L 160.27865,452.65834 L 160.93339,451.93085 L 160.27865,451.20337 L 160.93339,450.54864 L 159.55117,450.54864 L 160.27865,449.16643 L 158.82369,449.16643 L 159.55117,447.71147 L 158.82369,447.71147 L 158.82369,447.05673 L 158.16896,447.05673 L 158.16896,446.32925 L 156.78675,447.05673 L 157.44148,446.32925 L 156.05926,446.32925 L 156.05926,445.67452 L 154.67705,445.67452 L 153.94957,443.56482 L 154.67705,442.83734 L 153.94957,442.18261 L 153.29484,442.83734 L 152.56736,442.18261 L 151.83988,440.72765 L 151.83988,440.07292 L 151.18514,440.07292 L 150.45766,440.07292 L 150.45766,440.72765 L 149.80293,440.07292 L 147.69323,441.45513 L 149.80293,439.34544 L 148.34797,439.34544 L 148.34797,438.6907 L 147.69323,438.6907 L 146.96575,437.23574 L 146.96575,437.96322 L 146.96575,438.6907 L 146.31102,438.6907 L 146.31102,437.96322 L 145.58354,437.96322 L 144.20133,435.1988 L 142.81911,435.1988 L 142.81911,434.47131 L 142.09163,435.1988 L 141.36415,435.1988 L 141.36415,433.0891 L 139.98194,432.36162 L 139.3272,433.0891 L 139.98194,431.70689 L 139.3272,432.36162 L 139.3272,431.70689 L 138.59972,432.36162 L 137.87224,431.70689 L 137.87224,430.97941 L 137.21751,433.74383 L 136.49003,433.74383 L 136.49003,433.0891 L 137.21751,433.0891 L 136.49003,432.36162 L 137.21751,432.36162 L 136.49003,431.70689 L 135.8353,431.70689 L 133.7256,432.36162 L 132.99812,431.70689 L 134.38034,430.25193 L 133.7256,430.25193 L 132.34339,431.70689 L 131.61591,430.97941 L 131.61591,431.70689 L 130.23369,432.36162 L 130.23369,431.70689 L 128.85148,430.25193 L 128.85148,429.59719 L 129.50621,430.25193 L 128.85148,428.86971 L 130.23369,426.76002 L 131.61591,427.4875 L 131.61591,428.21498 L 132.34339,427.4875 L 132.99812,427.4875 L 133.7256,426.76002 L 137.21751,429.59719 L 135.10782,427.4875 L 133.7256,426.76002 L 135.8353,425.3778 L 132.99812,426.10528 L 133.7256,423.26811 L 135.10782,422.61338 L 133.7256,422.61338 L 132.34339,423.99559 L 130.88843,424.72307 L 131.61591,423.26811 L 132.99812,421.8859 L 132.99812,421.23116 L 131.61591,422.61338 L 130.88843,422.61338 L 129.50621,422.61338 L 132.34339,421.23116 L 131.61591,420.50368 L 129.50621,421.8859 L 130.88843,419.7762 L 130.23369,419.7762 L 130.23369,418.39399 L 129.50621,419.12147 L 129.50621,421.23116 L 128.85148,418.39399 L 129.50621,417.73925 L 128.124,417.01177 L 128.124,418.39399 L 127.39652,419.12147 L 127.39652,417.73925 L 127.39652,417.01177 L 126.74179,416.28429 L 126.74179,417.73925 L 126.01431,416.28429 L 126.74179,415.62956 L 126.01431,415.62956 L 125.35957,414.90208 L 125.35957,417.73925 L 126.01431,422.61338 L 125.35957,425.3778 L 123.90461,426.10528 L 122.5224,423.99559 L 122.5224,420.50368 L 121.86766,419.12147 L 122.5224,417.01177 L 121.86766,416.28429 L 122.5224,416.28429 L 123.24988,415.62956 L 123.24988,414.90208 L 123.90461,413.51987 L 123.24988,413.51987 L 122.5224,414.24735 L 121.86766,412.13765 L 121.14018,413.51987 L 120.4127,413.51987 L 119.03049,413.51987 L 119.75797,411.41017 L 119.03049,412.13765 L 119.03049,413.51987 L 117.64828,412.79239 L 116.26606,412.79239 L 116.9208,412.13765 L 118.37576,411.41017 L 116.9208,411.41017 L 118.37576,410.75544 L 117.64828,410.02796 L 116.26606,410.75544 L 116.9208,410.02796 L 116.26606,410.02796 L 116.26606,409.37323 L 116.19331,409.37323 L 115.53858,410.02796 L 116.26606,410.75544 L 114.88385,410.02796 L 116.26606,411.41017 L 116.26606,412.79239 L 114.15637,412.13765 L 114.88385,411.41017 L 112.77415,412.13765 L 114.15637,410.75544 L 112.77415,410.75544 L 112.77415,409.30048 L 112.04667,409.30048 L 112.77415,411.41017 L 112.04667,410.75544 L 110.66446,412.79239 L 110.66446,413.51987 L 111.39194,412.79239 L 111.39194,414.24735 L 110.66446,415.62956 L 110.08248,415.92055 L 110.66446,414.24735 L 110.30072,414.24735 L 109.93698,414.90208 L 109.93698,414.24735 L 108.55477,414.90208 L 107.17255,416.28429 L 108.55477,414.24735 L 107.17255,414.90208 L 108.55477,413.51987 L 107.17255,413.51987 L 109.28225,410.75544 L 109.93698,411.41017 L 110.66446,410.75544 L 112.04667,410.02796 L 109.28225,410.75544 L 109.28225,409.30048 L 108.55477,410.75544 L 108.55477,409.30048 L 107.90003,406.53605 L 107.53629,406.89979 L 107.90003,405.80857 L 105.06286,408.64574 L 105.79034,407.26353 L 105.06286,407.26353 L 105.06286,408.64574 L 103.68064,409.30048 L 104.40812,412.13765 L 103.68064,412.79239 L 103.68064,413.51987 L 102.29843,413.51987 L 102.95316,412.79239 L 101.57095,413.51987 L 102.29843,413.51987 L 100.18874,414.90208 L 98.079041,414.24735 L 100.18874,412.79239 L 99.461255,412.79239 L 101.57095,410.02796 L 98.079041,414.24735 L 97.424308,414.24735 L 98.079041,412.79239 L 97.424308,413.51987 L 96.696828,413.51987 L 96.696828,412.79239 L 97.424308,410.02796 L 98.806522,409.30048 L 97.424308,409.30048 L 97.424308,408.64574 L 96.696828,410.75544 L 95.969347,410.75544 L 96.696828,409.30048 L 95.314614,410.75544 L 95.969347,409.30048 L 94.587133,411.41017 L 93.9324,410.75544 L 94.587133,409.30048 L 94.587133,407.91826 L 93.204919,411.41017 L 91.095225,410.75544 L 90.440492,410.75544 L 90.440492,409.51872 L 89.713011,410.02796 L 89.713011,409.30048 L 88.985531,409.30048 L 90.440492,407.91826 L 88.985531,408.64574 L 88.985531,407.91826 L 89.567515,407.55452 L 88.330798,407.91826 L 88.985531,407.26353 L 87.603317,407.91826 L 87.603317,406.53605 L 88.330798,405.80857 L 86.948584,405.80857 L 88.330798,405.15384 L 87.603317,405.15384 L 86.221103,404.42636 L 88.330798,403.04414 L 88.985531,403.77162 L 91.095225,402.31666 L 91.095225,400.93445 L 89.713011,403.04414 L 88.330798,403.04414 L 85.493623,404.42636 L 85.493623,403.77162 L 85.493623,403.04414 L 84.83889,403.04414 L 85.493623,402.31666 L 84.111409,403.04414 L 84.111409,401.66193 L 82.729195,402.31666 L 82.729195,401.66193 L 83.456676,401.66193 L 83.456676,400.93445 L 84.111409,400.93445 L 84.111409,400.27971 L 83.456676,400.27971 L 83.456676,400.93445 L 82.001715,401.66193 L 82.729195,400.93445 L 81.346982,401.66193 L 77.855074,398.82475 L 79.237287,398.17002 L 79.964768,398.17002 L 79.964768,397.44254 L 82.001715,397.44254 L 81.346982,398.17002 L 83.456676,398.17002 L 82.001715,397.44254 L 84.111409,396.78781 L 86.221103,398.82475 L 86.948584,399.55223 L 86.948584,398.82475 L 87.603317,398.17002 L 86.221103,398.82475 L 84.111409,396.06033 L 84.111409,395.33284 L 84.111409,394.67811 L 83.456676,394.67811 L 82.729195,393.95063 L 83.456676,395.33284 L 83.456676,396.06033 L 82.729195,396.06033 L 82.001715,396.06033 L 82.729195,395.33284 L 81.346982,395.33284 L 82.729195,394.67811 L 82.001715,393.95063 L 81.346982,394.67811 L 79.964768,394.67811 L 80.619501,393.2959 L 77.855074,396.78781 L 77.127593,396.06033 L 75.745379,396.06033 L 75.745379,395.33284 L 75.017898,396.06033 L 74.363166,396.06033 L 74.363166,395.33284 L 75.017898,394.67811 L 75.745379,392.56842 L 74.363166,393.95063 L 73.635685,393.95063 L 74.363166,392.56842 L 72.980952,393.95063 L 72.980952,393.2959 L 73.635685,392.56842 L 74.363166,390.45872 L 72.253471,393.2959 L 71.52599,393.2959 L 72.253471,392.56842 L 71.52599,392.56842 L 72.253471,391.84094 L 73.562937,389.22201 L 73.490189,389.22201 L 71.52599,391.1862 L 70.871258,390.45872 L 70.143777,390.45872 L 71.52599,389.07651 L 70.871258,389.07651 L 71.52599,388.34903 L 70.143777,388.34903 L 69.489044,388.34903 L 70.143777,387.6943 L 67.37935,387.6943 L 66.651869,386.31208 L 68.034082,385.5846 L 68.034082,384.85712 L 67.37935,385.5846 L 66.651869,385.5846 L 67.37935,384.20239 L 66.651869,384.20239 L 67.37935,383.47491 L 65.997136,384.20239 L 66.651869,382.82017 L 65.997136,383.47491 L 65.997136,382.82017 L 64.542174,382.82017 L 65.997136,382.09269 L 66.651869,382.09269 L 66.651869,381.36521 L 64.542174,382.82017 L 64.542174,382.09269 L 63.159961,382.09269 L 63.159961,381.36521 L 64.542174,381.36521 L 65.997136,380.71048 L 63.159961,380.71048 L 64.542174,379.983 L 63.014464,379.983 L 62.505228,380.71048 L 62.505228,379.983 L 61.777747,380.71048 L 62.505228,379.32827 L 61.777747,379.983 L 61.777747,379.32827 L 63.887441,377.8733 L 63.159961,377.8733 L 63.887441,377.21857 L 61.050266,379.32827 L 61.777747,378.60079 L 62.505228,377.8733 L 61.777747,377.8733 L 62.505228,376.49109 L 61.777747,377.21857 L 61.777747,376.49109 L 61.050266,377.21857 L 60.395533,377.21857 L 60.759274,376.85483 L 60.395533,376.49109 L 61.050266,375.83636 L 62.505228,375.83636 L 62.505228,375.10888 L 61.050266,375.83636 L 61.050266,375.10888 L 61.777747,375.10888 L 60.395533,374.3814 L 61.777747,373.72666 L 60.395533,373.72666 L 61.050266,372.99918 L 59.668053,373.72666 L 59.01332,372.99918 L 59.668053,372.34445 L 60.395533,370.88949 L 60.395533,371.61697 L 60.395533,372.34445 L 61.050266,372.34445 L 60.395533,371.61697 L 61.050266,370.88949 L 60.395533,370.88949 L 61.777747,370.23476 L 61.050266,370.23476 L 61.26851,369.72552 L 61.050266,369.50728 L 60.395533,369.50728 L 61.050266,368.85254 L 61.777747,368.85254 L 63.159961,368.85254 L 63.159961,368.12506 L 63.887441,368.85254 L 63.159961,367.39758 L 63.887441,367.39758 L 65.269655,366.74285 L 65.997136,368.12506 L 65.997136,367.39758 L 65.997136,366.01537 L 63.887441,367.39758 L 63.159961,366.74285 L 65.997136,365.36063 L 67.37935,364.63315 L 65.269655,365.36063 L 63.159961,366.74285 L 62.505228,366.74285 L 63.887441,366.01537 L 61.777747,366.74285 L 61.777747,366.01537 L 63.159961,366.01537 L 63.159961,365.36063 L 62.505228,365.36063 L 63.159961,364.63315 L 63.887441,363.90567 L 63.159961,363.90567 L 61.777747,365.36063 L 62.505228,363.90567 L 61.050266,363.90567 L 61.050266,363.25094 L 63.159961,363.25094 L 63.159961,362.52346 L 61.050266,363.25094 L 63.159961,361.86873 L 61.050266,361.86873 L 64.542174,361.14125 L 60.54103,360.55926 L 61.050266,361.14125 L 60.395533,361.86873 L 59.01332,361.14125 L 60.250037,360.48651 L 59.668053,360.41376 L 60.395533,359.75903 L 61.050266,359.75903 L 61.777747,358.37682 L 61.050266,359.03155 L 60.395533,359.03155 L 59.668053,359.75903 L 59.01332,359.75903 L 59.668053,359.03155 L 59.01332,358.37682 L 59.668053,358.37682 L 60.395533,358.37682 L 59.668053,357.64934 L 60.395533,356.92186 L 59.668053,356.92186 L 60.395533,356.26712 L 61.050266,356.26712 L 61.050266,356.92186 L 62.505228,357.64934 L 61.777747,356.92186 L 63.159961,357.64934 L 63.159961,356.92186 L 61.777747,356.92186 L 63.159961,354.88491 L 62.505228,354.88491 L 63.159961,352.77522 L 63.887441,354.15743 L 64.542174,353.42995 L 64.542174,354.15743 L 65.269655,353.42995 L 64.542174,354.88491 L 63.887441,355.53964 L 65.269655,354.88491 L 65.269655,356.26712 L 65.997136,354.88491 L 65.997136,354.15743 L 66.651869,354.88491 L 67.37935,354.15743 L 67.37935,354.88491 L 68.761563,354.88491 L 68.761563,357.64934 L 69.489044,355.53964 L 70.143777,354.88491 L 70.871258,355.53964 L 71.52599,355.53964 L 70.143777,356.92186 L 70.725761,356.92186 L 71.52599,355.53964 L 71.52599,357.64934 L 72.253471,355.53964 L 72.980952,356.26712 L 72.253471,356.92186 L 72.835456,356.92186 L 72.980952,356.26712 L 74.363166,356.26712 L 75.017898,356.92186 L 73.635685,358.37682 L 74.363166,359.03155 L 75.017898,356.92186 L 75.745379,357.64934 L 76.47286,356.92186 L 76.47286,357.64934 L 77.127593,356.92186 L 75.745379,359.03155 L 76.47286,359.03155 L 76.47286,358.37682 L 77.127593,357.64934 L 77.855074,357.64934 L 77.855074,358.37682 L 78.509806,357.64934 L 79.237287,357.64934 L 77.855074,359.03155 L 79.237287,359.03155 L 80.619501,359.75903 L 80.619501,363.25094 L 81.346982,360.41376 L 82.001715,359.75903 L 81.346982,361.14125 L 82.001715,361.86873 L 82.001715,360.41376 L 82.729195,361.14125 L 82.001715,363.90567 L 82.001715,364.63315 L 82.729195,362.52346 L 83.456676,363.25094 L 83.456676,362.52346 L 84.111409,362.52346 L 84.111409,363.25094 L 85.493623,362.52346 L 84.111409,362.52346 L 84.83889,361.14125 L 85.493623,361.14125 L 85.493623,360.41376 L 86.221103,361.14125 L 86.221103,360.41376 L 86.948584,360.41376 L 86.221103,362.52346 L 86.221103,363.25094 L 87.603317,363.90567 L 86.948584,362.52346 L 87.603317,360.41376 L 87.603317,363.25094 L 88.330798,360.41376 L 88.985531,361.86873 L 88.985531,362.52346 L 89.713011,363.90567 L 91.095225,363.90567 L 90.440492,363.25094 L 90.440492,362.52346 L 91.095225,363.25094 L 90.440492,361.86873 L 91.095225,362.52346 L 90.440492,361.14125 L 91.095225,361.14125 L 91.822706,362.52346 L 91.822706,361.14125 L 92.477439,361.86873 L 92.477439,360.41376 L 93.204919,361.14125 L 92.477439,364.63315 L 93.204919,364.63315 L 93.204919,361.86873 L 93.9324,360.41376 L 95.314614,361.86873 L 95.314614,362.52346 L 95.969347,361.86873 L 96.696828,362.52346 L 96.696828,363.90567 L 95.969347,363.90567 L 95.969347,366.74285 L 98.806522,363.90567 L 98.079041,363.90567 L 98.806522,363.25094 L 99.461255,364.63315 L 100.40698,365.14239 L 100.18874,364.63315 L 100.91622,364.63315 L 100.91622,365.36063 L 101.57095,365.36063 L 102.29843,366.01537 L 102.29843,366.74285 L 101.57095,367.39758 L 101.20721,366.74285 L 101.57095,368.12506 L 102.29843,368.12506 L 102.95316,368.85254 L 102.95316,368.12506 L 103.68064,368.12506 L 102.95316,367.39758 L 104.40812,367.39758 L 103.68064,366.01537 L 104.40812,365.36063 L 105.06286,365.36063 L 106.44507,366.01537 L 106.44507,366.74285 L 107.17255,366.74285 L 107.17255,367.39758 L 107.90003,367.39758 L 107.90003,366.74285 L 109.28225,367.39758 L 109.93698,366.74285 L 109.28225,366.01537 L 109.93698,366.01537 L 109.93698,365.36063 L 110.66446,366.74285 L 109.93698,364.63315 L 110.66446,364.63315 L 110.66446,363.90567 L 111.39194,364.63315 L 111.39194,363.90567 L 112.04667,364.63315 L 112.04667,363.90567 L 112.04667,363.25094 L 113.42889,363.90567 L 112.77415,364.63315 L 113.42889,365.36063 L 113.42889,364.63315 L 114.15637,364.63315 L 114.15637,363.90567 L 115.53858,364.63315 L 116.26606,364.63315 L 116.26606,365.36063 L 116.9208,365.36063 L 116.9208,366.74285 L 117.64828,366.01537 L 117.64828,365.36063 L 118.37576,363.90567 L 114.88385,363.90567 L 115.53858,363.25094 L 114.88385,363.25094 L 113.42889,363.25094 L 112.77415,362.52346 L 112.77415,361.86873 L 113.42889,361.86873 L 112.77415,361.14125 L 114.15637,361.14125 L 114.15637,361.86873 L 114.88385,362.52346 L 114.88385,361.86873 L 114.88385,361.14125 L 115.53858,361.14125 L 115.53858,361.86873 L 116.9208,363.25094 L 116.26606,361.86873 L 116.9208,362.52346 L 116.26606,361.14125 L 117.64828,360.41376 L 118.37576,361.14125 L 119.03049,360.41376 L 118.37576,360.41376 L 118.37576,359.75903 L 118.37576,359.03155 L 119.75797,359.75903 L 120.4127,359.03155 L 121.14018,359.75903 L 121.86766,359.75903 L 121.14018,360.41376 L 121.86766,360.41376 L 121.86766,359.75903 L 121.86766,358.37682 L 122.5224,358.37682 L 122.5224,359.03155 L 123.24988,359.03155 L 122.5224,358.37682 L 123.24988,358.37682 L 123.24988,357.64934 L 125.35957,358.37682 L 125.35957,359.03155 L 126.74179,359.03155 L 126.01431,358.37682 L 126.74179,358.37682 L 127.39652,358.37682 L 128.124,359.03155 L 129.50621,359.03155 L 129.50621,359.75903 L 131.61591,359.03155 L 131.61591,360.41376 L 132.34339,359.75903 L 132.34339,360.41376 L 133.7256,359.75903 L 133.7256,361.14125 L 137.87224,361.14125 L 138.59972,359.75903 L 138.59972,360.41376 L 139.3272,360.41376 L 139.3272,361.14125 L 140.70942,361.14125 L 139.98194,362.52346 L 140.70942,361.86873 L 141.36415,365.36063 L 142.09163,365.36063 L 141.36415,363.90567 L 142.09163,363.90567 L 141.36415,361.86873 L 142.09163,361.14125 L 141.36415,361.14125 L 140.70942,359.75903 L 141.36415,359.75903 L 142.09163,358.37682 L 142.81911,359.75903 L 142.81911,358.37682 L 143.47385,357.64934 L 144.20133,359.03155 L 144.20133,358.37682 L 143.47385,357.64934 L 144.85606,356.92186 L 144.85606,358.37682 L 145.58354,357.64934 L 146.31102,358.37682 L 146.31102,356.26712 L 147.69323,356.26712 L 147.69323,356.92186 L 148.34797,355.53964 L 149.80293,355.53964 L 150.45766,354.88491 L 150.45766,355.53964 L 151.18514,354.88491 L 151.83988,355.53964 L 151.83988,354.15743 L 152.56736,354.15743 L 153.29484,353.42995 L 153.29484,354.15743 L 153.94957,353.42995 L 155.33178,353.42995 L 154.67705,352.77522 L 158.16896,352.77522 L 158.16896,352.04773 L 158.82369,352.77522 L 159.55117,352.77522 L 158.82369,353.42995 L 159.55117,353.42995 L 159.55117,352.77522 L 160.27865,353.42995 L 160.93339,352.77522 L 161.66087,353.42995 L 160.93339,354.15743 L 161.66087,354.15743 L 162.3156,352.77522 L 163.04308,354.15743 L 163.77056,353.42995 L 164.42529,353.42995 L 164.42529,352.77522 L 165.15277,353.42995 L 165.15277,354.15743 L 165.80751,352.77522 L 166.53499,352.77522 L 167.26247,354.15743 L 167.9172,353.42995 L 168.64468,354.15743 L 169.29942,354.15743 L 170.0269,353.42995 L 170.0269,354.15743 L 170.75438,353.42995 L 171.40911,353.42995 L 172.13659,353.42995 L 172.79132,354.15743 L 170.75438,354.88491 L 168.64468,356.92186 L 167.26247,360.41376 L 166.53499,360.41376 L 167.26247,361.14125 L 163.77056,361.86873 L 163.04308,363.25094 L 160.93339,362.52346 L 160.27865,362.52346 L 160.93339,363.25094 L 159.55117,363.90567 L 159.55117,364.63315 L 158.82369,364.63315 L 158.82369,365.36063 L 159.55117,364.63315 L 160.27865,363.90567 L 163.04308,363.90567 L 164.42529,362.52346 L 165.15277,363.25094 L 165.15277,363.90567 L 160.93339,366.01537 L 161.66087,367.39758 L 159.55117,368.12506 L 159.55117,368.85254 L 161.66087,367.39758 L 162.3156,367.39758 L 164.42529,368.85254 L 164.42529,370.23476 L 165.15277,368.85254 L 165.80751,370.23476 L 165.80751,368.12506 L 167.26247,366.74285 L 170.0269,366.01537 L 170.75438,367.39758 L 170.75438,366.74285 L 171.40911,366.74285 L 171.40911,368.85254 L 169.29942,370.88949 L 169.29942,372.34445 L 170.0269,372.34445 L 169.29942,374.3814 L 170.0269,374.3814 L 169.29942,375.83636 L 170.0269,375.83636 L 170.75438,375.10888 L 170.0269,370.88949 L 170.75438,370.23476 L 171.40911,370.88949 L 171.40911,370.23476 L 172.13659,368.85254 L 172.13659,366.01537 L 173.5188,366.01537 L 172.79132,365.36063 L 172.79132,363.25094 L 170.75438,360.41376 L 171.40911,358.37682 L 172.79132,356.92186 L 175.6285,359.03155 L 173.5188,356.92186 L 174.24629,356.26712 L 174.24629,355.53964 L 175.6285,355.53964 L 175.6285,356.26712 L 176.28323,356.92186 L 176.28323,357.64934 L 177.01071,357.64934 L 177.73819,358.37682 L 177.01071,359.03155 L 177.73819,359.03155 L 178.39293,359.75903 L 179.12041,360.41376 L 178.39293,361.14125 L 179.12041,361.14125 L 179.77514,362.52346 L 179.12041,362.52346 L 177.73819,361.86873 L 178.39293,363.25094 L 180.50262,363.90567 L 180.50262,364.63315 L 178.39293,363.90567 L 179.77514,365.36063 L 177.73819,365.36063 L 180.50262,366.01537 L 179.77514,369.50728 L 179.12041,369.50728 L 179.77514,370.23476 L 179.12041,372.34445 L 177.73819,372.99918 L 175.6285,375.10888 L 179.12041,372.99918 L 179.12041,373.72666 L 179.77514,374.3814 L 179.77514,375.10888 L 181.2301,375.83636 L 179.77514,376.49109 L 179.77514,375.83636 L 179.12041,376.49109 L 177.73819,377.21857 L 177.01071,378.60079 L 176.28323,379.32827 L 177.73819,378.60079 L 177.73819,377.21857 L 179.12041,377.21857 L 180.50262,376.49109 L 181.2301,377.21857 L 179.77514,379.983 L 179.12041,382.09269 L 179.77514,383.47491 L 179.77514,381.36521 L 180.50262,380.71048 L 180.50262,379.32827 L 181.2301,379.32827 L 182.61232,375.83636 L 185.37674,374.3814 L 186.10422,374.3814 L 183.26705,377.8733 L 185.37674,375.83636 L 183.99453,378.60079 L 182.61232,379.32827 L 181.88483,379.32827 L 182.61232,379.983 L 184.72201,379.32827 L 183.99453,382.82017 L 184.72201,383.47491 L 184.72201,379.32827 L 185.37674,379.983 L 186.75896,380.71048 L 187.34094,379.32827 L 186.10422,379.32827 L 186.10422,377.21857 L 187.48644,374.3814 L 189.59613,374.3814 L 191.70583,372.99918 L 193.08804,375.10888 L 193.74277,375.83636 L 192.36056,378.60079 L 191.70583,378.60079 L 190.25086,376.49109 L 190.97834,377.8733 L 190.97834,379.983 L 191.70583,379.32827 L 191.70583,379.983 L 193.08804,380.71048 L 193.74277,380.71048 L 194.47025,382.82017 L 194.47025,381.36521 L 195.12499,380.71048 L 194.47025,380.71048 L 193.08804,379.983 L 193.08804,378.60079 L 195.85247,377.21857 L 195.85247,378.60079 L 195.85247,379.32827 L 195.27048,380.63773 L 196.57995,379.32827 L 195.85247,378.60079 L 196.57995,377.8733 L 196.57995,377.21857 L 199.34437,377.8733 L 198.68964,379.32827 L 199.34437,379.983 L 197.96216,379.32827 L 197.96216,379.983 L 197.96216,380.71048 L 196.57995,381.36521 L 197.23468,381.36521 L 198.68964,383.47491 L 197.96216,384.85712 L 196.57995,384.20239 L 196.57995,384.85712 L 197.96216,384.85712 L 198.68964,384.85712 L 199.34437,384.20239 L 199.34437,386.96682 L 199.34437,389.80399 L 200.07186,385.5846 L 200.72659,384.85712 L 200.72659,384.20239 L 200.72659,382.82017 L 202.83628,384.85712 L 203.56376,386.96682 L 204.2185,386.96682 L 204.2185,389.07651 L 201.45407,391.1862 L 203.56376,389.80399 L 204.2185,389.07651 L 204.94598,389.07651 L 205.67346,389.80399 L 205.67346,390.45872 L 204.2185,391.1862 L 204.2185,392.56842 L 203.56376,392.56842 L 202.18155,392.56842 L 203.56376,393.95063 L 204.2185,393.95063 L 203.56376,394.67811 L 204.2185,394.67811 L 203.56376,395.33284 L 204.2185,395.33284 L 203.56376,396.78781 L 204.2185,396.78781 L 204.94598,397.44254 L 204.94598,395.33284 L 207.05567,395.33284 L 205.67346,396.78781 L 207.7104,395.33284 L 206.32819,396.78781 L 207.05567,396.78781 L 208.43789,395.33284 L 209.8201,392.56842 L 210.54758,392.56842 L 212.65727,396.06033 L 211.92979,397.44254 L 211.20231,396.06033 L 210.54758,396.78781 L 211.20231,398.17002 L 210.54758,398.17002 L 209.8201,399.55223 L 211.20231,398.82475 L 210.54758,399.55223 L 210.54758,400.27971 L 211.20231,399.55223 L 210.54758,400.93445 L 211.20231,401.66193 L 211.20231,400.93445 L 211.92979,400.27971 L 212.65727,398.82475 L 213.31201,398.82475 L 213.31201,399.55223 L 212.65727,400.93445 L 211.92979,402.31666 L 212.65727,403.04414 L 209.8201,401.66193 L 209.16537,402.31666 L 211.92979,404.42636 L 211.92979,405.15384 L 212.65727,404.42636 L 215.4217,407.26353 L 214.69422,407.26353 L 214.69422,407.91826 L 215.4217,407.26353 L 215.4217,408.64574 L 216.80391,408.64574 L 217.5314,407.91826 L 218.18613,409.30048 L 218.91361,409.30048 L 221.67804,412.79239 L 222.40552,413.51987 L 223.78773,412.13765 L 225.16994,413.51987 L 225.89743,414.24735 L 223.78773,415.62956 L 224.51521,415.62956 L 223.78773,417.01177 L 223.133,415.62956 L 222.40552,415.62956 L 222.40552,414.90208 L 221.67804,414.24735 L 221.0233,414.24735 L 221.67804,414.90208 L 221.0233,414.90208 L 221.67804,415.62956 L 222.40552,416.28429 L 223.78773,417.01177 L 225.16994,415.62956 L 226.62491,414.90208 L 229.38933,415.62956 L 228.00712,417.73925 L 226.62491,417.73925 L 225.89743,419.7762 L 225.16994,419.12147 L 224.51521,419.12147 L 223.78773,419.7762 L 225.89743,419.7762 L 226.62491,418.39399 L 228.66185,419.12147 L 228.66185,418.39399 L 230.11681,417.01177 L 230.77155,417.73925 L 232.15376,417.73925 L 232.88124,419.12147 L 233.60872,419.12147 L 237.75536,421.23116 L 237.10063,422.61338 L 236.37315,424.72307 L 234.26346,426.10528 L 233.60872,425.3778 L 232.88124,426.10528 L 232.88124,424.72307 L 232.15376,425.3778 L 231.49903,424.72307 L 230.77155,423.26811 L 230.11681,425.3778 L 229.38933,424.72307 L 228.66185,424.72307 L 230.11681,426.10528 L 228.66185,426.10528 L 220.29582,422.61338 L 225.16994,426.10528 L 225.89743,426.10528 L 227.27964,426.76002 L 229.38933,430.25193 L 227.27964,431.70689 L 225.89743,429.59719 L 225.16994,430.25193 L 221.67804,430.25193 L 221.67804,430.97941 L 225.16994,430.97941 L 225.89743,432.36162 L 223.78773,435.1988 L 223.133,435.1988 L 221.67804,435.1988 L 221.67804,435.85353 L 220.29582,436.58101 L 218.18613,436.58101 L 218.91361,437.96322 L 222.40552,436.58101 L 222.40552,438.6907 L 223.78773,435.85353 L 224.51521,435.85353 L 227.27964,433.0891 L 229.38933,433.0891 L 230.11681,432.36162 L 232.88124,433.74383 L 232.15376,436.58101 L 231.49903,435.85353 L 232.15376,437.23574 L 230.11681,437.23574 L 232.15376,437.96322 L 232.15376,439.34544 L 229.38933,440.72765 L 229.38933,441.45513 L 232.15376,440.07292 L 232.88124,440.72765 L 232.15376,442.83734 L 231.49903,442.83734 L 231.49903,443.56482 L 231.49903,445.67452 L 229.38933,447.71147 L 228.66185,447.71147 L 228.66185,448.43895 L 228.00712,448.43895 L 227.27964,449.16643 L 226.62491,449.16643 L 226.62491,449.82116 L 225.16994,449.16643 L 225.16994,450.54864 L 224.51521,449.16643 L 224.51521,447.71147 L 223.133,448.43895 L 223.78773,447.05673 L 222.40552,448.43895 L 222.40552,447.71147 L 221.0233,447.05673 L 221.67804,447.71147 L 222.40552,448.43895 L 221.67804,449.16643 L 222.40552,451.20337 L 222.40552,452.65834 L 221.67804,451.93085 L 221.67804,453.31307 L 221.0233,451.93085 L 221.0233,453.31307 L 220.29582,453.31307 L 221.0233,454.04055 L 220.29582,454.04055 L 219.64109,451.20337 L 218.91361,452.65834 L 218.91361,451.93085 L 220.29582,449.82116 L 220.29582,447.71147 L 218.18613,446.32925 L 218.91361,447.05673 L 219.64109,449.16643 L 218.91361,449.16643 L 217.5314,448.43895 L 219.64109,449.82116 L 217.5314,452.65834 L 215.4217,449.16643 L 215.4217,449.82116 L 216.80391,452.65834 L 216.14918,454.04055 L 214.69422,452.65834 L 213.31201,449.16643 L 214.03949,449.82116 L 214.69422,449.82116 L 211.20231,447.71147 L 211.92979,449.82116 L 212.65727,451.20337 L 212.65727,451.93085 L 214.03949,454.69528 L 213.31201,456.80498 L 211.20231,455.42276 L 209.8201,453.31307 L 209.16537,453.31307 L 209.8201,454.69528 L 207.7104,451.93085 L 209.16537,454.69528 L 209.16537,456.80498 L 205.67346,456.80498 L 209.16537,458.18719 L 211.20231,459.64215 L 209.8201,460.29688 L 209.8201,461.02437 L 209.16537,461.02437 L 207.05567,463.78879 L 202.83628,458.91467 L 204.2185,462.40658 L 205.67346,463.13406 L 206.32819,463.78879 L 204.94598,465.17101 L 202.83628,463.78879 L 201.45407,464.51627 L 200.07186,463.13406 L 198.68964,463.78879 L 200.07186,465.17101 L 200.07186,465.89849 L 199.34437,466.62597 L 197.96216,467.2807 L 195.85247,467.2807 L 195.19773,468.00818 L 195.19773,468.66291 L 192.36056,470.11788 L 190.25086,468.66291 L 190.25086,467.2807 L 190.97834,466.62597 L 190.97834,465.89849 L 192.36056,465.89849 L 191.70583,464.51627 L 190.25086,466.62597 L 190.25086,465.89849 L 189.59613,464.51627 L 188.86865,465.89849 L 186.75896,465.17101 L 183.26705,466.62597 L 182.61232,468.00818 L 183.26705,468.66291 L 181.88483,469.39039 L 182.61232,470.11788 L 181.2301,471.50009 L 180.50262,470.77261 L 180.50262,471.50009 L 179.77514,471.50009 L 179.77514,472.15482 L 179.12041,473.60978 L 178.39293,473.60978 L 178.39293,474.26452 L 177.01071,475.64673 L 175.6285,476.37421 L 174.24629,476.37421 z M 218.91361,452.65834 L 219.64109,454.04055 L 218.91361,454.69528 L 218.18613,453.31307 L 218.91361,452.65834 z M 222.40552,448.43895 L 223.133,449.16643 L 223.133,449.82116 L 223.133,450.54864 L 222.40552,448.43895 z M 223.133,449.16643 L 223.78773,449.16643 L 223.78773,450.54864 L 223.133,449.16643 z M 218.91361,409.30048 L 220.29582,410.02796 L 220.29582,410.75544 L 218.91361,409.30048 z M 197.96216,380.71048 L 198.68964,380.71048 L 199.34437,381.36521 L 199.34437,382.09269 L 200.07186,382.82017 L 199.34437,383.47491 L 197.96216,382.09269 L 197.96216,380.71048 z M 170.0269,366.01537 L 167.26247,366.01537 L 165.80751,367.39758 L 163.77056,366.74285 L 163.04308,367.39758 L 161.66087,366.74285 L 161.66087,366.01537 L 165.80751,363.90567 L 166.53499,363.25094 L 168.64468,362.52346 L 168.64468,363.90567 L 169.29942,364.63315 L 169.29942,365.36063 L 170.0269,366.01537 z M 165.80751,367.39758 L 164.42529,368.12506 L 163.77056,367.39758 L 165.80751,367.39758 z M 168.64468,354.15743 L 168.64468,353.42995 L 169.29942,353.42995 L 168.64468,354.15743 z M 100.18874,364.63315 L 99.461255,364.63315 L 100.18874,363.25094 L 100.18874,364.63315 z M 98.079041,363.90567 L 97.424308,364.63315 L 96.696828,364.63315 L 97.424308,363.25094 L 98.079041,363.90567 z M 90.440492,363.25094 L 89.713011,363.90567 L 88.985531,361.14125 L 89.713011,361.14125 L 90.440492,363.25094 z M 83.456676,362.52346 L 83.456676,361.86873 L 84.111409,361.86873 L 83.456676,362.52346 z M 84.111409,361.86873 L 84.111409,361.14125 L 84.83889,360.41376 L 84.111409,361.86873 z M 63.159961,352.77522 L 61.777747,356.26712 L 61.050266,355.53964 L 61.777747,354.88491 L 62.505228,352.77522 L 63.159961,352.77522 z M 61.777747,354.88491 L 61.050266,354.88491 L 61.050266,354.15743 L 61.777747,354.15743 L 61.777747,354.88491 z M 61.777747,354.15743 L 61.050266,353.42995 L 61.777747,353.42995 L 61.777747,354.15743 z M 59.01332,372.99918 L 59.01332,373.72666 L 58.285839,374.3814 L 57.558358,373.72666 L 58.285839,372.99918 L 59.01332,371.61697 L 59.01332,372.99918 z M 65.997136,382.82017 L 65.633396,383.47491 L 64.542174,383.47491 L 65.997136,382.82017 z M 65.633396,383.47491 L 65.997136,383.47491 L 65.269655,384.20239 L 65.633396,383.47491 z M 73.635685,393.95063 L 75.017898,394.67811 L 73.635685,395.33284 L 73.635685,393.95063 z M 77.855074,396.78781 L 78.509806,396.06033 L 79.964768,395.33284 L 79.237287,396.06033 L 78.36431,397.44254 L 77.855074,397.44254 L 77.855074,396.78781 z M 78.36431,397.44254 L 78.509806,397.44254 L 77.855074,398.17002 L 78.36431,397.44254 z M 79.964768,395.33284 L 81.346982,394.67811 L 81.346982,395.33284 L 80.619501,396.06033 L 79.964768,396.06033 L 79.964768,395.33284 z M 82.001715,396.06033 L 82.001715,396.78781 L 82.001715,397.44254 L 79.237287,396.78781 L 80.619501,396.78781 L 82.001715,396.06033 z M 82.001715,396.78781 L 82.729195,396.06033 L 82.729195,396.78781 L 82.001715,396.78781 z M 103.68064,413.51987 L 107.17255,410.02796 L 106.44507,410.02796 L 107.75454,408.79124 L 107.90003,409.30048 L 107.17255,411.41017 L 107.17255,412.79239 L 107.17255,413.51987 L 107.17255,414.24735 L 106.44507,412.13765 L 106.44507,414.90208 L 105.79034,414.90208 L 105.79034,413.51987 L 106.44507,411.41017 L 105.06286,412.79239 L 105.06286,414.24735 L 104.40812,414.90208 L 104.40812,414.24735 L 103.68064,414.90208 L 103.68064,414.24735 L 102.95316,414.90208 L 103.68064,414.90208 L 102.95316,415.62956 L 102.29843,414.90208 L 100.91622,414.90208 L 103.68064,413.51987 z M 106.44507,414.90208 L 106.44507,415.62956 L 105.79034,416.28429 L 106.44507,414.90208 z M 107.17255,412.79239 L 107.90003,411.41017 L 109.28225,410.75544 L 107.90003,412.13765 L 107.17255,412.79239 z M 107.75454,408.79124 L 107.53629,408.282 L 107.90003,408.64574 L 107.75454,408.79124 z M 107.53629,408.282 L 107.17255,407.91826 L 107.31805,407.55452 L 107.53629,408.282 z M 107.31805,407.55452 L 107.17255,407.26353 L 107.53629,406.89979 L 107.31805,407.55452 z M 107.17255,407.91826 L 106.44507,409.30048 L 105.79034,408.64574 L 106.44507,407.91826 L 107.17255,407.91826 z M 105.79034,408.64574 L 106.44507,410.02796 L 104.40812,412.13765 L 104.40812,409.30048 L 105.79034,408.64574 z M 110.08248,415.92055 L 109.93698,416.28429 L 109.28225,416.28429 L 110.08248,415.92055 z M 119.03049,413.51987 L 120.4127,414.24735 L 121.86766,414.24735 L 121.86766,414.90208 L 119.75797,415.62956 L 119.03049,414.24735 L 119.03049,413.51987 z M 121.86766,414.90208 L 121.86766,415.62956 L 121.14018,415.62956 L 121.86766,414.90208 z M 121.86766,415.62956 L 122.5224,415.26582 L 122.5224,414.90208 L 123.24988,414.90208 L 122.5224,415.62956 L 121.86766,415.62956 z M 130.88843,422.61338 L 130.88843,424.72307 L 130.23369,424.72307 L 129.50621,423.99559 L 129.50621,423.26811 L 130.88843,422.61338 z M 136.49003,432.36162 L 135.8353,433.0891 L 135.10782,432.36162 L 136.49003,432.36162 z M 135.10782,432.36162 L 134.38034,433.0891 L 134.38034,432.36162 L 135.10782,432.36162 z M 137.21751,433.74383 L 137.87224,433.74383 L 139.98194,433.0891 L 138.59972,434.47131 L 137.87224,434.47131 L 137.21751,433.74383 z M 146.96575,438.6907 L 146.96575,439.34544 L 146.31102,440.07292 L 146.31102,439.34544 L 146.96575,438.6907 z M 151.83988,440.72765 L 151.83988,441.45513 L 151.25789,442.03712 L 151.83988,440.72765 z M 160.27865,461.6791 L 159.55117,462.40658 L 158.82369,461.6791 L 160.27865,461.6791 z M -57.674607,475.64673 L -52.073005,473.60978 L -51.345524,473.60978 L -51.345524,474.26452 L -47.198883,469.39039 L -47.853616,468.66291 L -48.581097,470.11788 L -47.853616,467.2807 L -49.23583,469.39039 L -49.23583,468.66291 L -48.581097,467.2807 L -48.581097,466.62597 L -49.963311,468.66291 L -51.345524,469.39039 L -50.690791,469.39039 L -53.455219,471.50009 L -49.963311,469.39039 L -49.23583,470.11788 L -52.727738,472.15482 L -52.073005,472.15482 L -54.837432,472.8823 L -56.947127,472.8823 L -56.365142,473.46429 L -56.43789,473.53704 L -56.947127,473.60978 L -56.219646,473.60978 L -55.564913,474.26452 L -57.674607,475.64673 z M -56.219646,473.60978 L -56.365142,473.46429 L -53.455219,472.8823 L -56.219646,473.60978 z M 27.586147,475.64673 L 26.858667,474.992 L 27.586147,473.60978 L 26.858667,473.60978 L 26.131186,473.60978 L 25.476453,474.26452 L 25.476453,473.60978 L 23.366758,473.60978 L 24.748972,474.26452 L 25.476453,474.992 L 25.476453,474.26452 L 26.131186,474.992 L 27.586147,475.64673 z M 168.64468,475.64673 L 167.9172,474.992 L 167.9172,473.60978 L 168.64468,474.992 L 168.64468,475.64673 z M -47.198883,474.26452 L -45.089189,473.60978 L -45.089189,474.26452 L -44.361708,473.60978 L -45.089189,473.60978 L -47.198883,473.60978 L -47.198883,474.26452 z M 115.53858,474.26452 L 116.26606,472.8823 L 115.53858,472.15482 L 115.53858,474.26452 z M -145.62704,474.04627 L -144.97231,473.60978 L -145.62704,473.60978 L -144.24483,472.8823 L -144.97231,472.8823 L -145.62704,472.8823 L -145.62704,473.60978 L -145.62704,474.04627 z M 168.64468,473.60978 L 167.9172,472.8823 L 168.64468,471.50009 L 168.64468,473.60978 z M 563.23029,473.60978 L 565.33999,473.60978 L 563.88503,472.15482 L 564.61251,471.50009 L 563.23029,471.50009 L 561.84808,468.66291 L 562.50281,470.77261 L 559.0109,469.39039 L 563.23029,472.15482 L 563.88503,472.8823 L 563.23029,473.60978 z M -328.58847,472.8823 L -330.04344,472.15482 L -328.73397,472.15482 L -328.58847,472.8823 z M -328.73397,472.15482 L -328.73397,472.08207 L -328.58847,472.15482 L -328.73397,472.15482 z M -328.73397,472.08207 L -330.04344,471.50009 L -329.31595,469.39039 L -328.73397,472.08207 z M -89.10178,472.8823 L -88.374299,472.8823 L -87.646818,471.50009 L -88.374299,471.50009 L -88.374299,472.15482 L -89.10178,472.15482 L -89.10178,472.8823 z M 4.5250046,472.8823 L 5.1797374,472.15482 L 5.1797374,471.50009 L 5.1797374,470.11788 L 4.5250046,472.8823 z M 347.38673,472.8823 L 346.00451,472.15482 L 345.34978,471.50009 L 346.00451,471.50009 L 347.38673,470.77261 L 347.38673,469.39039 L 346.00451,470.11788 L 346.00451,470.77261 L 344.6223,470.11788 L 345.34978,467.2807 L 344.6223,467.2807 L 345.34978,466.62597 L 344.6223,466.62597 L 345.34978,465.89849 L 345.34978,465.17101 L 346.73199,465.17101 L 348.11421,463.78879 L 349.49642,463.78879 L 349.49642,464.51627 L 352.3336,464.51627 L 352.98833,465.17101 L 352.98833,465.89849 L 353.71581,465.89849 L 353.71581,467.2807 L 355.8255,469.39039 L 355.8255,471.50009 L 355.09802,472.15482 L 353.71581,472.15482 L 352.3336,471.50009 L 352.3336,472.15482 L 349.49642,472.8823 L 347.38673,472.8823 z M -335.57229,472.15482 L -334.19008,469.39039 L -332.08038,468.00818 L -331.42565,468.00818 L -332.80786,469.39039 L -335.57229,472.15482 z M -331.42565,468.00818 L -329.31595,468.00818 L -330.04344,470.11788 L -330.69817,470.11788 L -331.42565,468.00818 z M -16.426444,472.15482 L -15.771711,471.50009 L -14.316749,469.39039 L -14.316749,467.2807 L -13.662016,467.2807 L -14.316749,466.62597 L -15.771711,468.66291 L -16.426444,471.50009 L -16.426444,472.15482 z M 559.0109,472.15482 L 556.90121,470.77261 L 556.24648,470.11788 L 556.24648,470.77261 L 554.86426,470.77261 L 553.4093,470.11788 L 554.86426,471.50009 L 556.24648,471.50009 L 559.0109,472.15482 z M 411.0413,472.08207 L 412.35077,470.77261 L 412.35077,467.2807 L 413.07825,467.2807 L 413.73298,465.89849 L 412.35077,467.2807 L 411.69603,470.77261 L 411.0413,472.08207 z M 545.77075,471.50009 L 549.26266,471.50009 L 544.24304,470.48162 L 543.66106,470.11788 L 543.00633,470.26337 L 542.27884,470.11788 L 541.55136,468.00818 L 542.27884,468.00818 L 542.27884,467.2807 L 541.55136,467.2807 L 542.27884,465.89849 L 542.27884,465.17101 L 543.66106,465.17101 L 545.04327,464.51627 L 545.04327,465.89849 L 545.77075,465.89849 L 545.77075,465.17101 L 546.42549,465.89849 L 546.42549,466.62597 L 546.42549,467.2807 L 549.26266,466.62597 L 549.26266,467.2807 L 549.91739,466.62597 L 549.26266,466.62597 L 546.42549,466.62597 L 547.88045,464.51627 L 547.15297,463.78879 L 547.15297,464.51627 L 546.42549,465.89849 L 546.42549,464.51627 L 544.38854,463.78879 L 543.66106,463.13406 L 542.93358,463.13406 L 543.66106,462.40658 L 542.27884,461.6791 L 542.93358,463.13406 L 543.66106,463.78879 L 542.27884,463.78879 L 542.27884,464.51627 L 541.55136,463.78879 L 541.55136,464.51627 L 540.16915,463.78879 L 540.16915,464.51627 L 540.89663,464.51627 L 540.89663,465.89849 L 541.55136,464.51627 L 542.27884,464.51627 L 540.89663,466.62597 L 540.16915,466.62597 L 540.89663,468.00818 L 539.44167,468.00818 L 540.16915,468.66291 L 540.89663,468.66291 L 540.89663,469.39039 L 540.16915,469.39039 L 541.55136,470.11788 L 540.89663,470.77261 L 543.00633,470.26337 L 544.24304,470.48162 L 545.77075,471.50009 z M -100.95972,470.77261 L -98.850023,470.11788 L -100.95972,470.11788 L -100.95972,470.77261 z M 65.269655,470.77261 L 65.997136,469.39039 L 64.542174,469.39039 L 63.887441,470.11788 L 65.269655,470.77261 z M 341.13039,470.77261 L 338.36596,469.39039 L 337.63848,469.39039 L 337.63848,468.66291 L 336.911,469.39039 L 336.25627,468.66291 L 336.25627,468.00818 L 337.63848,465.89849 L 337.63848,465.17101 L 339.0207,463.78879 L 339.0207,465.17101 L 340.40291,464.51627 L 341.13039,464.51627 L 341.13039,463.13406 L 341.85787,463.78879 L 341.85787,462.40658 L 342.5126,461.6791 L 342.5126,463.13406 L 343.89482,463.78879 L 343.24009,463.13406 L 343.24009,462.40658 L 345.34978,464.51627 L 344.6223,465.89849 L 343.89482,469.39039 L 341.85787,469.39039 L 341.13039,470.77261 z M 336.25627,468.66291 L 336.25627,469.39039 L 335.52879,468.66291 L 335.52879,468.00818 L 336.25627,468.66291 z M 401.87504,470.77261 L 402.60252,470.77261 L 401.87504,470.11788 L 401.22031,470.11788 L 401.87504,470.77261 z M -113.54514,469.39039 L -111.43544,468.66291 L -107.21605,469.39039 L -104.45163,468.66291 L -105.83384,468.66291 L -103.72414,467.2807 L -104.45163,467.2807 L -105.10636,467.2807 L -105.10636,468.00818 L -108.59827,468.00818 L -108.59827,468.66291 L -110.05323,468.00818 L -113.54514,469.39039 z M 17.110423,469.39039 L 17.765156,469.39039 L 17.110423,468.66291 L 16.382942,468.00818 L 16.382942,467.2807 L 15.655462,468.00818 L 17.110423,469.39039 z M 67.37935,469.39039 L 67.524846,469.2449 L 68.034082,469.39039 L 68.034082,468.66291 L 67.524846,469.2449 L 67.015609,469.02665 L 66.651869,468.66291 L 66.651869,468.00818 L 67.37935,468.66291 L 67.37935,467.2807 L 68.034082,468.00818 L 68.761563,468.00818 L 71.52599,468.66291 L 68.761563,465.17101 L 65.997136,463.78879 L 65.269655,463.78879 L 65.269655,465.17101 L 65.997136,464.51627 L 66.651869,465.17101 L 65.269655,466.62597 L 65.269655,467.2807 L 65.997136,468.66291 L 67.015609,469.02665 L 67.37935,469.39039 z M 392.1268,468.66291 L 394.23649,468.66291 L 393.50901,468.00818 L 392.1268,468.66291 z M 18.492637,467.2807 L 19.14737,466.62597 L 20.602331,467.2807 L 20.602331,466.62597 L 18.492637,465.89849 L 17.765156,465.17101 L 17.765156,465.89849 L 18.492637,467.2807 z M 22.639278,467.2807 L 24.094239,467.2807 L 24.094239,465.89849 L 22.639278,467.2807 z M 406.74916,467.2807 L 408.20412,467.2807 L 408.85886,465.89849 L 408.20412,465.89849 L 408.20412,466.62597 L 406.74916,465.17101 L 406.74916,467.2807 z M -8.060414,466.62597 L -7.3329331,465.89849 L -7.3329331,466.62597 L -6.6782003,466.62597 L -6.6782003,465.89849 L -5.9507195,465.17101 L -6.6782003,464.51627 L -6.6782003,465.89849 L -7.3329331,465.89849 L -7.3329331,465.17101 L -8.060414,465.17101 L -8.060414,464.51627 L -8.7878948,465.17101 L -8.060414,466.62597 z M 15.655462,465.89849 L 17.110423,465.89849 L 17.110423,463.78879 L 16.382942,463.78879 L 16.382942,465.17101 L 15.655462,465.89849 z M 51.302023,465.17101 L 50.574542,464.51627 L 49.919809,463.78879 L 49.919809,464.51627 L 48.537596,463.13406 L 48.537596,461.6791 L 50.574542,463.13406 L 51.302023,465.17101 z M 367.68344,465.17101 L 369.06566,462.40658 L 369.06566,463.78879 L 369.79314,463.13406 L 369.06566,464.51627 L 367.68344,465.17101 z M -71.64224,464.51627 L -70.914759,463.78879 L -70.187278,462.40658 L -71.64224,461.02437 L -73.024453,461.02437 L -73.024453,463.13406 L -71.64224,464.51627 z M -27.629649,464.51627 L -28.284381,463.78879 L -27.629649,463.78879 L -27.629649,463.13406 L -28.284381,463.13406 L -28.284381,463.78879 L -29.011862,463.13406 L -29.739343,463.78879 L -27.629649,464.51627 z M 346.00451,464.51627 L 344.6223,463.13406 L 343.89482,461.02437 L 344.6223,461.02437 L 345.34978,461.02437 L 346.73199,462.40658 L 347.38673,461.6791 L 347.38673,463.13406 L 346.00451,464.51627 z M 347.38673,461.6791 L 346.73199,460.29688 L 347.38673,461.02437 L 347.38673,461.6791 z M 335.52879,463.78879 L 334.87406,463.13406 L 334.87406,462.40658 L 335.52879,461.6791 L 336.25627,463.13406 L 335.52879,463.78879 z M 348.18696,463.71604 L 348.84169,463.13406 L 348.11421,462.40658 L 349.49642,463.13406 L 348.18696,463.71604 z M -129.54971,461.6791 L -128.89498,461.6791 L -127.51277,461.02437 L -128.1675,460.29688 L -129.54971,461.6791 z M 11.508821,461.6791 L 12.163554,461.6791 L 11.508821,461.02437 L 11.508821,459.64215 L 10.78134,460.29688 L 11.508821,461.02437 L 11.508821,461.6791 z M 106.44507,461.02437 L 106.44507,459.64215 L 107.17255,459.64215 L 107.17255,460.29688 L 106.44507,461.02437 z M -32.50377,460.29688 L -31.121557,458.91467 L -31.485297,458.18719 L -31.776289,457.53246 L -31.776289,458.18719 L -32.50377,458.18719 L -31.776289,458.91467 L -32.50377,459.64215 L -32.50377,460.29688 z M -28.284381,459.64215 L -27.629649,459.64215 L -27.629649,458.91467 L -28.648122,458.91467 L -29.011862,458.18719 L -29.011862,458.91467 L -28.648122,458.91467 L -28.284381,459.64215 z M -59.056821,458.91467 L -56.947127,458.91467 L -58.32934,457.53246 L -59.056821,458.18719 L -59.711554,458.18719 L -59.056821,458.91467 z M -34.613465,458.91467 L -33.231251,458.18719 L -33.231251,457.53246 L -32.50377,456.15024 L -33.231251,456.80498 L -32.50377,455.42276 L -33.231251,456.15024 L -35.995678,455.42276 L -33.885984,456.15024 L -35.268198,456.80498 L -34.613465,456.80498 L -34.613465,457.53246 L -33.231251,457.53246 L -34.613465,458.91467 z M 844.69263,458.91467 L 846.72958,458.18719 L 843.96515,458.18719 L 844.69263,458.91467 z M 211.20231,458.18719 L 209.16537,457.53246 L 209.8201,455.42276 L 210.54758,456.15024 L 211.20231,458.18719 z M -359.36091,457.53246 L -360.01565,454.04055 L -359.36091,456.15024 L -359.36091,457.53246 z M -52.727738,457.53246 L -50.690791,457.53246 L -52.073005,456.80498 L -52.727738,456.15024 L -52.727738,455.42276 L -51.345524,455.42276 L -52.727738,454.69528 L -52.727738,454.04055 L -53.455219,454.69528 L -53.455219,455.42276 L -54.182699,455.42276 L -54.182699,456.15024 L -52.727738,456.15024 L -53.455219,456.80498 L -52.073005,456.80498 L -52.727738,457.53246 z M 12.891034,457.53246 L 12.163554,456.80498 L 10.126607,455.42276 L 11.508821,456.80498 L 12.891034,457.53246 z M 80.619501,457.53246 L 80.619501,456.80498 L 79.237287,456.15024 L 80.619501,457.53246 z M 841.20072,457.53246 L 843.23767,456.15024 L 839.09103,456.15024 L 841.20072,457.53246 z M -64.658424,456.80498 L -62.548729,456.15024 L -62.766973,455.85925 L -61.821248,455.42276 L -63.203462,454.69528 L -63.930943,454.69528 L -61.821248,454.04055 L -61.821248,452.65834 L -59.711554,454.04055 L -59.711554,453.31307 L -61.821248,452.65834 L -61.166516,451.93085 L -61.821248,451.20337 L -62.621477,450.62139 L -62.548729,450.54864 L -62.91247,450.40314 L -64.658424,449.16643 L -64.658424,449.82116 L -62.91247,450.40314 L -62.621477,450.62139 L -63.203462,451.20337 L -63.930943,451.20337 L -61.821248,452.65834 L -62.548729,453.31307 L -63.930943,454.04055 L -63.203462,454.04055 L -63.930943,454.69528 L -62.766973,455.85925 L -64.658424,456.80498 z M 582.07205,456.80498 L 584.83647,456.15024 L 587.67365,454.04055 L 589.78334,454.69528 L 589.78334,452.80383 L 590.43808,452.65834 L 589.78334,452.65834 L 589.78334,452.80383 L 584.18174,454.04055 L 582.79953,454.04055 L 582.07205,454.69528 L 581.34457,454.69528 L 579.96235,455.42276 L 582.07205,456.80498 z M -117.03704,456.15024 L -116.30956,456.15024 L -116.30956,455.42276 L -115.58208,455.42276 L -117.03704,454.04055 L -118.41926,454.69528 L -117.03704,456.15024 z M -26.247435,456.15024 L -24.792473,456.15024 L -24.137741,455.42276 L -24.792473,455.42276 L -24.792473,454.69528 L -25.519954,455.42276 L -26.247435,454.69528 L -26.902168,454.04055 L -28.284381,452.65834 L -27.629649,454.04055 L -26.247435,454.69528 L -26.902168,455.42276 L -25.519954,455.42276 L -26.247435,456.15024 z M 97.424308,456.15024 L 98.079041,454.69528 L 98.079041,456.15024 L 97.424308,456.15024 z M 82.729195,455.42276 L 83.456676,455.42276 L 82.729195,454.69528 L 82.729195,455.42276 z M -42.979494,454.69528 L -42.252014,454.69528 L -42.252014,454.04055 L -43.706975,453.31307 L -42.39751,452.73108 L -42.252014,452.65834 L -42.979494,452.65834 L -44.361708,451.93085 L -44.361708,452.65834 L -45.089189,452.65834 L -43.706975,453.31307 L -45.089189,453.31307 L -42.252014,454.04055 L -42.979494,454.69528 z M -19.918352,454.69528 L -18.536138,454.04055 L -17.808657,454.69528 L -17.153924,454.69528 L -18.536138,454.04055 L -19.918352,453.31307 L -19.918352,454.69528 z M 93.204919,454.69528 L 93.204919,453.31307 L 92.477439,453.31307 L 93.204919,454.69528 z M 95.969347,454.69528 L 95.969347,453.31307 L 96.696828,453.31307 L 95.969347,454.69528 z M -137.26101,454.04055 L -136.53353,453.31307 L -135.15132,453.31307 L -136.53353,454.04055 L -137.26101,454.04055 z M -16.426444,454.04055 L -17.008428,452.94933 L -16.426444,451.93085 L -17.153924,451.20337 L -16.426444,449.82116 L -17.153924,450.54864 L -17.153924,451.20337 L -17.808657,451.93085 L -17.153924,451.93085 L -17.153924,452.65834 L -17.008428,452.94933 L -17.153924,453.31307 L -16.426444,454.04055 z M -105.83384,453.31307 L -105.10636,453.31307 L -105.10636,452.65834 L -103.72414,452.65834 L -105.10636,451.93085 L -105.10636,452.65834 L -105.83384,452.65834 L -105.83384,453.31307 z M 13.618515,453.31307 L 15.655462,453.31307 L 12.891034,452.65834 L 13.618515,453.31307 z M 364.84627,453.31307 L 364.84627,452.65834 L 365.57375,452.65834 L 364.84627,453.31307 z M -1.8040787,452.65834 L -1.0765979,451.93085 L -3.1862923,451.93085 L -5.2959867,449.82116 L -3.8410251,451.93085 L -1.8040787,452.65834 z M 29.623094,452.65834 L 31.078055,450.54864 L 32.460269,450.54864 L 33.115002,451.20337 L 33.115002,451.93085 L 29.623094,452.65834 z M 2.4153102,451.93085 L 3.142791,451.20337 L 1.0330966,451.20337 L 2.4153102,451.93085 z M 12.163554,451.93085 L 15.655462,451.20337 L 15.000729,450.54864 L 12.163554,451.93085 z M 4.5250046,451.20337 L 3.7975238,450.54864 L 3.142791,450.54864 L 4.5250046,451.20337 z M -137.98849,450.54864 L -137.98849,449.82116 L -137.26101,447.71147 L -136.53353,449.16643 L -137.26101,449.82116 L -137.98849,450.54864 z M -24.137741,450.54864 L -23.41026,450.54864 L -23.41026,449.82116 L -22.755527,449.82116 L -23.41026,448.43895 L -24.137741,448.43895 L -24.792473,447.05673 L -24.792473,447.71147 L -24.137741,448.43895 L -24.137741,449.16643 L -23.41026,449.82116 L -24.137741,450.54864 z M 4.5250046,450.54864 L 5.1797374,449.16643 L 4.5250046,449.16643 L 3.7975238,449.16643 L 1.6878294,447.71147 L 1.1058447,447.71147 L 3.7975238,449.82116 L 4.5250046,450.54864 z M -3.1862923,449.82116 L -2.4588115,449.82116 L -1.8040787,449.16643 L -3.1862923,449.16643 L -2.4588115,448.43895 L -4.5685059,448.43895 L -3.8410251,447.71147 L -3.1862923,447.71147 L -4.5685059,447.05673 L -4.5685059,447.71147 L -5.2959867,447.05673 L -4.5685059,448.43895 L -3.1862923,449.16643 L -3.1862923,449.82116 z M 332.76436,449.82116 L 332.03688,449.16643 L 332.76436,448.43895 L 333.41909,449.16643 L 332.76436,449.82116 z M 580.68983,449.82116 L 582.79953,448.43895 L 581.34457,448.43895 L 580.68983,449.82116 z M -42.979494,449.16643 L -42.252014,449.16643 L -42.688502,448.87544 L -42.252014,448.43895 L -43.706975,447.71147 L -40.8698,447.71147 L -43.706975,447.05673 L -42.252014,446.32925 L -42.979494,445.67452 L -42.979494,444.94704 L -40.215067,444.94704 L -41.306289,444.36505 L -40.8698,444.21956 L -41.597281,444.21956 L -41.306289,444.36505 L -42.979494,444.94704 L -42.979494,443.56482 L -42.252014,442.83734 L -43.706975,443.56482 L -46.471403,442.18261 L -47.853616,442.83734 L -47.853616,443.56482 L -48.581097,444.21956 L -52.073005,444.94704 L -49.963311,444.94704 L -47.198883,447.71147 L -45.743922,447.71147 L -44.361708,447.71147 L -42.688502,448.87544 L -42.979494,449.16643 z M -45.743922,447.71147 L -47.198883,447.05673 L -47.853616,445.67452 L -47.198883,443.56482 L -46.471403,443.56482 L -45.089189,444.94704 L -45.089189,444.21956 L -45.743922,443.56482 L -44.361708,443.56482 L -43.706975,444.94704 L -43.706975,446.32925 L -45.743922,447.71147 z M -28.284381,449.16643 L -26.902168,449.16643 L -26.902168,448.43895 L -26.247435,448.43895 L -26.247435,447.71147 L -25.519954,448.43895 L -24.792473,448.43895 L -25.519954,447.71147 L -26.902168,447.05673 L -26.247435,448.43895 L -27.629649,447.71147 L -28.284381,449.16643 z M -338.40947,448.43895 L -338.9187,446.91124 L -339.0642,447.05673 L -339.79168,447.05673 L -339.79168,444.21956 L -338.40947,444.94704 L -338.40947,446.32925 L -338.62771,446.5475 L -337.68198,447.05673 L -337.68198,448.43895 L -338.40947,448.43895 z M -339.79168,444.21956 L -340.51916,444.21956 L -341.17389,442.18261 L -339.79168,442.18261 L -339.0642,444.21956 L -339.79168,444.21956 z M -56.947127,448.43895 L -55.564913,447.71147 L -54.182699,447.71147 L -52.727738,447.71147 L -52.073005,447.05673 L -53.455219,447.05673 L -56.219646,447.05673 L -56.947127,446.32925 L -56.219646,446.32925 L -56.947127,445.67452 L -58.32934,445.67452 L -60.439035,444.94704 L -59.711554,445.67452 L -59.056821,445.67452 L -60.439035,446.32925 L -59.711554,447.05673 L -59.056821,447.05673 L -59.711554,446.32925 L -58.32934,446.32925 L -57.674607,446.32925 L -56.947127,448.43895 z M -0.34911701,448.43895 L 0.30561575,448.43895 L -0.34911701,447.71147 L 0.30561575,447.05673 L -0.34911701,447.05673 L -0.34911701,447.71147 L -0.34911701,448.43895 z M -96.740329,447.05673 L -95.358115,446.32925 L -95.358115,445.67452 L -96.740329,446.32925 L -96.740329,444.94704 L -98.850023,444.94704 L -96.740329,447.05673 z M 423.19023,446.69299 C 423.06778,446.23099 422.96989,445.76561 422.82649,445.31078 L 422.82649,446.32925 L 423.19023,446.69299 z M 600.9138,446.32925 L 600.47731,445.67452 L 601.64128,445.67452 L 599.53159,443.56482 L 599.53159,444.21956 L 600.47731,445.67452 L 600.25907,445.67452 L 600.9138,446.32925 z M 716.87425,446.32925 L 719.63867,445.67452 L 718.25646,443.56482 L 718.25646,441.45513 L 717.52898,440.72765 L 716.87425,438.6907 L 716.14677,438.6907 L 715.49203,437.96322 L 714.76455,437.96322 L 714.76455,439.34544 L 712.65486,439.34544 L 712.00013,440.72765 L 712.65486,443.56482 L 713.38234,443.56482 L 716.14677,444.94704 L 716.87425,446.32925 z M -5.2959867,445.67452 L -5.2959867,444.94704 L -5.2959867,444.21956 L -4.5685059,443.56482 L -5.2959867,443.56482 L -5.9507195,444.21956 L -5.2959867,445.67452 z M -2.4588115,445.67452 L -3.1862923,444.94704 L -4.5685059,444.94704 L -2.4588115,445.67452 z M 223.78773,445.67452 L 226.62491,443.56482 L 228.66185,442.83734 L 226.62491,442.83734 L 226.62491,443.56482 L 225.16994,444.21956 L 223.78773,442.83734 L 224.51521,444.21956 L 224.51521,444.94704 L 222.40552,444.21956 L 223.78773,445.67452 z M -92.593688,444.94704 L -93.248421,444.21956 L -92.593688,444.21956 L -94.630634,443.56482 L -95.358115,443.56482 L -92.593688,444.94704 z M -31.121557,444.94704 L -29.739343,444.94704 L -29.011862,444.94704 L -29.739343,444.21956 L -28.284381,443.56482 L -29.011862,442.83734 L -29.739343,443.56482 L -29.739343,444.21956 L -30.394076,443.56482 L -31.121557,444.94704 z M 446.61511,444.94704 L 449.37954,444.21956 L 452.87145,444.94704 L 449.37954,443.56482 L 446.61511,444.94704 z M 435.41191,444.21956 L 438.17634,442.83734 L 440.28603,439.34544 L 439.6313,439.34544 L 438.17634,442.18261 L 435.41191,444.21956 z M 422.46275,443.85582 C 422.35129,443.42722 422.22888,442.99362 422.17176,442.54635 L 422.17176,443.56482 L 422.46275,443.85582 z M 633.72319,443.56482 L 633.06845,440.72765 L 632.34097,442.18261 L 633.72319,443.56482 z M -60.439035,442.83734 L -61.166516,442.18261 L -59.711554,442.18261 L -59.711554,441.45513 L -63.203462,441.45513 L -60.439035,442.83734 z M 8.6716455,442.83734 L 8.6716455,442.18261 L 8.6716455,441.45513 L 7.2894319,441.45513 L 8.6716455,442.18261 L 8.0169127,442.18261 L 8.6716455,442.83734 z M 61.050266,442.83734 L 61.050266,441.45513 L 61.777747,442.18261 L 62.505228,442.18261 L 61.777747,442.83734 L 61.050266,442.83734 z M 61.050266,441.45513 L 61.050266,440.72765 L 61.777747,441.45513 L 61.050266,441.45513 z M 443.77794,442.83734 L 444.50542,442.83734 L 445.16015,441.45513 L 443.77794,442.83734 z M 42.935993,442.18261 L 41.55378,440.07292 L 40.826299,439.34544 L 42.935993,438.6907 L 42.208512,439.34544 L 43.590726,438.6907 L 43.590726,442.18261 L 42.935993,442.18261 z M -41.597281,441.45513 L -40.215067,440.72765 L -41.597281,439.34544 L -41.597281,441.45513 z M 45.045688,441.45513 L 44.318207,440.72765 L 45.045688,439.34544 L 45.70042,441.45513 L 45.045688,441.45513 z M 50.574542,441.45513 L 49.919809,440.07292 L 51.302023,438.6907 L 51.302023,440.72765 L 50.574542,441.45513 z M 340.40291,441.45513 L 339.0207,440.07292 L 341.13039,440.72765 L 341.13039,441.45513 L 340.40291,441.45513 z M 434.02969,441.45513 L 435.19366,441.45513 L 435.04817,440.87315 L 434.02969,441.45513 z M -0.34911701,440.07292 L 0.30561575,439.34544 L -1.8040787,437.96322 L -3.8410251,437.96322 L -1.8040787,438.6907 L -0.34911701,440.07292 z M 383.03329,439.34544 L 383.03329,437.96322 L 383.76077,438.6907 L 383.03329,439.34544 z M 568.8319,439.34544 L 568.8319,437.23574 L 568.10441,438.6907 L 568.8319,439.34544 z M 425.51817,439.12719 L 424.93618,437.96322 L 426.3184,435.1988 L 425.66367,433.74383 L 424.93618,436.58101 L 424.2087,437.23574 L 424.2087,437.96322 L 424.2087,438.6907 L 425.51817,439.12719 z M 434.82992,439.05444 L 435.41191,437.96322 L 435.41191,435.1988 L 434.68443,434.47131 L 434.17519,434.47131 L 434.68443,435.1988 L 434.68443,438.6907 L 434.82992,439.05444 z M -17.153924,438.6907 L -17.808657,437.96322 L -17.808657,437.23574 L -17.153924,437.96322 L -17.153924,437.23574 L -16.426444,437.96322 L -16.426444,437.23574 L -14.316749,437.96322 L -15.04423,436.58101 L -13.662016,438.6907 L -13.662016,437.96322 L -12.934536,438.6907 L -12.934536,437.23574 L -12.279803,437.96322 L -12.934536,436.58101 L -13.662016,437.23574 L -14.316749,437.23574 L -15.04423,436.58101 L -15.04423,437.23574 L -17.153924,435.1988 L -15.771711,437.23574 L -16.426444,436.58101 L -20.645833,430.97941 L -20.645833,429.59719 L -19.918352,429.59719 L -19.263619,430.25193 L -19.918352,427.4875 L -19.263619,429.59719 L -16.426444,430.25193 L -16.426444,430.97941 L -15.04423,431.70689 L -15.04423,430.97941 L -15.771711,430.97941 L -16.426444,430.25193 L -19.263619,428.86971 L -19.263619,427.4875 L -18.536138,427.4875 L -17.808657,428.21498 L -17.153924,427.4875 L -17.153924,426.76002 L -15.771711,426.76002 L -14.316749,426.76002 L -12.934536,427.4875 L -14.316749,426.10528 L -15.771711,426.76002 L -17.153924,423.99559 L -18.536138,423.26811 L -18.536138,422.61338 L -19.045375,421.23116 L -18.536138,419.7762 L -18.536138,421.8859 L -17.808657,423.26811 L -17.808657,421.23116 L -17.153924,419.7762 L -17.808657,420.50368 L -18.536138,419.12147 L -19.263619,420.50368 L -20.645833,423.99559 L -19.263619,424.72307 L -19.263619,427.4875 L -19.918352,426.76002 L -20.645833,427.4875 L -21.300565,429.59719 L -22.028046,428.86971 L -22.028046,429.59719 L -22.755527,430.25193 L -23.41026,429.59719 L -24.137741,429.59719 L -24.792473,429.59719 L -25.519954,428.21498 L -25.519954,427.4875 L -24.792473,427.4875 L -25.519954,426.10528 L -25.519954,426.76002 L -26.247435,426.10528 L -27.629649,426.10528 L -26.247435,426.76002 L -25.519954,428.21498 L -25.519954,430.25193 L -24.792473,431.70689 L -24.792473,430.25193 L -24.137741,430.97941 L -24.137741,430.25193 L -22.755527,430.97941 L -22.755527,430.25193 L -21.300565,430.25193 L -21.300565,431.70689 L -20.645833,430.97941 L -19.918352,432.36162 L -19.918352,433.0891 L -16.426444,437.23574 L -18.536138,435.1988 L -18.536138,437.23574 L -19.263619,435.85353 L -19.263619,436.58101 L -20.645833,435.85353 L -19.918352,436.58101 L -17.808657,437.96322 L -19.918352,437.23574 L -17.153924,438.6907 z M -17.153924,426.76002 L -18.536138,427.4875 L -18.536138,426.76002 L -17.808657,426.76002 L -17.153924,426.76002 z M -17.808657,426.76002 L -18.536138,426.10528 L -17.808657,425.3778 L -17.153924,426.10528 L -17.808657,426.76002 z M 370.44787,438.6907 L 370.44787,437.96322 L 370.44787,437.23574 L 371.17535,438.6907 L 370.44787,438.6907 z M 33.842483,437.96322 L 33.115002,435.85353 L 33.842483,435.85353 L 33.842483,436.58101 L 34.569963,437.23574 L 33.842483,437.96322 z M 427.04588,437.23574 L 426.3184,435.85353 L 426.3184,436.58101 L 427.04588,437.23574 z M 431.92,437.23574 L 431.92,436.58101 L 431.19252,435.85353 L 430.53779,434.47131 L 430.53779,436.58101 L 431.92,437.23574 z M -5.2959867,436.58101 L -4.5685059,436.58101 L -3.8410251,434.47131 L -5.9507195,433.74383 L -4.5685059,434.47131 L -4.5685059,435.85353 L -5.2959867,435.85353 L -5.2959867,436.58101 z M 316.68703,436.58101 L 315.30482,435.85353 L 317.41452,435.1988 L 317.41452,435.85353 L 316.68703,436.58101 z M 603.02349,435.85353 L 603.02349,433.74383 L 602.29601,433.74383 L 602.29601,434.47131 L 603.02349,435.85353 z M -34.613465,435.1988 L -31.776289,435.1988 L -34.613465,434.47131 L -34.613465,435.1988 z M 320.90642,435.1988 L 320.90642,434.47131 L 321.56116,433.0891 L 320.90642,432.36162 L 320.90642,430.97941 L 322.28864,430.97941 L 322.94337,430.97941 L 323.67085,431.70689 L 322.94337,433.74383 L 322.28864,434.47131 L 320.90642,435.1988 z M 320.90642,430.97941 L 318.79673,428.86971 L 318.79673,428.21498 L 320.17894,426.10528 L 321.56116,426.10528 L 321.56116,426.76002 L 322.28864,426.76002 L 322.28864,428.21498 L 320.90642,430.97941 z M 373.28504,435.1988 L 374.66726,434.47131 L 374.66726,435.1988 L 373.28504,435.1988 z M 374.66726,434.47131 L 373.93978,434.47131 L 374.66726,433.74383 L 374.66726,434.47131 z M -95.358115,434.47131 L -95.358115,433.74383 L -96.085596,432.36162 L -95.358115,431.70689 L -96.085596,431.70689 L -96.085596,432.36162 L -96.085596,433.0891 L -95.358115,434.47131 z M -33.231251,434.47131 L -33.885984,433.0891 L -33.231251,433.0891 L -32.50377,433.0891 L -33.231251,433.74383 L -29.739343,433.74383 L -32.50377,432.36162 L -33.231251,433.0891 L -33.231251,431.70689 L -35.268198,431.70689 L -33.885984,433.0891 L -35.268198,432.36162 L -33.231251,434.47131 z M -21.300565,434.47131 L -20.645833,433.74383 L -22.755527,431.70689 L -21.300565,434.47131 z M 434.10244,434.32582 L 434.68443,433.74383 L 433.30221,433.0891 L 434.10244,434.32582 z M 312.46765,433.74383 L 311.81291,432.36162 L 312.46765,432.36162 L 313.19513,433.0891 L 312.46765,433.74383 z M 419.33458,433.74383 L 419.33458,433.0891 L 420.06206,432.36162 L 424.2087,432.36162 L 423.55397,431.70689 L 421.44428,431.70689 L 420.06206,430.97941 L 419.33458,432.36162 L 418.67985,433.0891 L 419.33458,433.74383 z M 830.725,433.74383 L 831.37973,433.0891 L 827.88782,432.36162 L 830.725,433.74383 z M 318.79673,431.70689 L 318.06925,430.97941 L 318.06925,429.59719 L 319.45146,430.25193 L 318.79673,431.70689 z M 312.46765,430.97941 L 312.46765,429.59719 L 314.57734,430.25193 L 314.57734,430.97941 L 313.19513,430.97941 L 312.46765,430.97941 z M -0.34911701,430.25193 L 0.30561575,428.86971 L -0.34911701,428.86971 L -0.34911701,430.25193 z M 231.49903,430.25193 L 230.77155,429.59719 L 230.77155,427.4875 L 231.49903,428.21498 L 231.49903,430.25193 z M 463.34717,430.25193 L 462.61969,428.86971 L 459.85526,428.21498 L 462.61969,429.59719 L 463.34717,430.25193 z M -31.776289,429.59719 L -31.121557,429.59719 L -31.121557,428.86971 L -29.739343,428.86971 L -30.394076,427.4875 L -31.776289,426.76002 L -31.776289,427.4875 L -33.231251,426.76002 L -32.50377,427.4875 L -31.776289,429.59719 z M -8.060414,429.59719 L -8.060414,428.86971 L -8.7878948,428.21498 L -9.4426276,428.21498 L -9.4426276,428.86971 L -8.060414,429.59719 z M 313.19513,429.59719 L 312.46765,428.86971 L 313.92261,428.21498 L 313.41337,427.99673 L 313.92261,427.4875 L 314.57734,429.59719 L 313.19513,429.59719 z M 313.41337,427.99673 L 313.19513,428.21498 L 313.19513,427.85124 L 313.41337,427.99673 z M 313.19513,427.85124 L 312.46765,427.4875 L 313.19513,427.4875 L 313.19513,427.85124 z M -5.9507195,428.86971 L -7.3329331,427.4875 L -6.6782003,427.4875 L -6.6782003,426.76002 L -8.7878948,427.4875 L -8.060414,427.4875 L -8.060414,428.21498 L -5.9507195,428.86971 z M -3.8410251,428.86971 L -3.1862923,428.86971 L -1.0765979,428.21498 L -1.8040787,428.21498 L -3.1862923,428.21498 L -2.4588115,426.10528 L -3.1862923,426.76002 L -3.1862923,428.21498 L -3.1862923,428.86971 L -3.8410251,428.21498 L -3.8410251,427.4875 L -4.5685059,427.4875 L -3.8410251,428.86971 z M 315.95955,428.86971 L 315.95955,428.21498 L 316.68703,428.21498 L 316.68703,428.86971 L 315.95955,428.86971 z M 730.84188,428.86971 L 729.45967,426.10528 L 730.1144,428.21498 L 730.84188,428.86971 z M -22.028046,428.21498 L -22.319038,427.05101 L -22.028046,426.76002 L -22.755527,424.72307 L -22.755527,425.3778 L -22.319038,427.05101 L -22.755527,427.4875 L -22.028046,428.21498 z M 315.95955,427.4875 L 313.92261,426.76002 L 314.57734,426.76002 L 315.30482,426.76002 L 316.68703,426.76002 L 316.68703,427.4875 L 315.95955,427.4875 z M 314.57734,426.76002 L 313.92261,426.10528 L 312.46765,426.10528 L 313.19513,425.3778 L 313.92261,425.3778 L 315.95955,425.3778 L 315.30482,423.99559 L 316.68703,423.99559 L 317.41452,424.72307 L 316.68703,425.3778 L 317.41452,425.3778 L 317.41452,426.10528 L 314.57734,426.76002 z M 317.41452,427.4875 L 317.41452,426.76002 L 318.06925,426.76002 L 318.06925,427.4875 L 317.41452,427.4875 z M -104.45163,426.76002 L -103.72414,426.10528 L -103.06941,426.10528 L -104.45163,426.76002 z M 132.34339,426.76002 L 131.61591,426.10528 L 131.61591,425.3778 L 132.99812,424.72307 L 132.99812,425.3778 L 132.34339,426.76002 z M -30.394076,426.10528 L -30.394076,425.3778 L -29.739343,425.3778 L -31.776289,423.26811 L -32.50377,423.99559 L -32.50377,425.3778 L -31.776289,425.3778 L -31.776289,424.72307 L -30.394076,426.10528 z M 128.124,426.10528 L 127.39652,425.3778 L 128.124,424.72307 L 129.50621,426.10528 L 128.124,426.10528 z M 452.14397,426.10528 L 452.87145,423.26811 L 453.23519,423.12261 L 452.14397,422.61338 L 451.48924,422.61338 L 450.10702,423.99559 L 452.14397,423.26811 L 452.14397,426.10528 z M 120.4127,425.3778 L 119.03049,424.72307 L 118.37576,423.26811 L 118.37576,424.72307 L 116.9208,424.72307 L 115.53858,423.99559 L 116.26606,421.8859 L 115.53858,421.23116 L 116.26606,421.23116 L 115.53858,420.50368 L 115.53858,419.7762 L 114.88385,421.8859 L 114.15637,420.50368 L 114.15637,419.7762 L 118.37576,416.28429 L 119.03049,416.28429 L 119.75797,417.01177 L 120.4127,419.12147 L 120.4127,419.7762 L 121.86766,421.8859 L 121.86766,424.72307 L 120.4127,425.3778 z M 319.45146,425.3778 L 318.06925,423.99559 L 320.17894,422.61338 L 320.90642,422.61338 L 320.90642,423.26811 L 321.56116,423.26811 L 320.17894,423.99559 L 320.90642,425.3778 L 319.45146,425.3778 z M 700.06944,425.3778 L 701.5244,424.72307 L 700.06944,421.8859 L 698.68723,423.26811 L 699.41471,424.72307 L 700.06944,425.3778 z M 313.92261,424.72307 L 313.19513,423.99559 L 313.19513,423.26811 L 314.57734,423.99559 L 315.30482,424.72307 L 313.92261,424.72307 z M -92.593688,423.99559 L -90.483994,423.26811 L -90.483994,422.61338 L -92.593688,423.26811 L -92.593688,423.99559 z M -43.706975,423.99559 L -47.198883,421.8859 L -48.581097,421.8859 L -43.706975,423.99559 z M 322.94337,423.99559 L 322.28864,423.26811 L 322.94337,422.61338 L 323.67085,423.26811 L 322.94337,423.99559 z M 318.79673,423.26811 L 318.06925,421.8859 L 318.79673,420.50368 L 319.45146,420.50368 L 320.17894,421.8859 L 318.79673,423.26811 z M 438.17634,423.26811 L 443.77794,421.8859 L 444.50542,419.7762 L 445.16015,421.8859 L 445.16015,419.7762 L 444.50542,419.7762 L 443.12321,421.8859 L 438.90382,422.61338 L 437.5216,422.61338 L 438.17634,423.26811 z M 447.26985,423.26811 L 448.65206,423.26811 L 448.65206,421.8859 L 447.99733,421.8859 L 447.26985,423.26811 z M -16.426444,422.61338 L -16.426444,421.23116 L -17.153924,421.8859 L -16.426444,420.50368 L -17.153924,420.50368 L -17.153924,421.8859 L -16.426444,422.61338 z M 309.70322,421.8859 L 309.19398,420.94017 L 308.97574,421.23116 L 308.321,419.7762 L 309.70322,419.12147 L 309.70322,417.73925 L 308.97574,417.73925 L 308.321,416.28429 L 309.70322,415.62956 L 310.4307,414.90208 L 311.08543,414.24735 L 310.4307,415.62956 L 311.08543,415.62956 L 309.70322,417.01177 L 311.08543,417.01177 L 310.4307,418.39399 L 311.08543,418.39399 L 311.81291,419.7762 L 311.81291,421.23116 L 310.4307,421.23116 L 309.70322,421.8859 z M 309.70322,415.62956 L 308.321,415.62956 L 308.321,414.90208 L 308.97574,414.24735 L 309.70322,415.62956 z M 314.57734,421.8859 L 315.30482,421.23116 L 315.95955,421.23116 L 315.30482,421.8859 L 314.57734,421.8859 z M 388.63489,421.8859 L 388.63489,420.50368 L 390.0171,419.12147 L 391.39932,421.23116 L 388.63489,421.8859 z M 734.33379,421.8859 L 733.60631,419.12147 L 732.95157,419.12147 L 731.49661,420.50368 L 731.49661,421.23116 L 734.33379,421.8859 z M -33.231251,421.23116 L -33.231251,419.7762 L -35.995678,419.12147 L -35.268198,419.7762 L -33.885984,420.50368 L -33.231251,421.23116 z M 128.124,421.23116 L 128.85148,419.7762 L 128.85148,421.23116 L 128.124,421.23116 z M 314.57734,420.50368 L 314.57734,418.39399 L 315.30482,418.39399 L 315.95955,419.12147 L 315.95955,419.7762 L 314.57734,420.50368 z M 459.85526,420.50368 L 462.61969,418.39399 L 464.2929,418.103 L 461.96496,418.39399 L 459.85526,420.50368 z M -55.564913,419.7762 L -56.947127,415.62956 L -59.056821,414.24735 L -59.711554,410.02796 L -59.711554,404.42636 L -59.056821,402.31666 L -56.947127,403.77162 L -56.947127,406.53605 L -55.564913,409.30048 L -54.182699,418.39399 L -55.564913,419.7762 z M 542.93358,419.7762 L 542.27884,418.39399 L 542.93358,417.01177 L 543.66106,414.24735 L 542.93358,412.13765 L 543.51556,411.04643 L 544.09755,410.60994 L 545.989,410.17345 L 547.88045,411.41017 L 549.26266,411.41017 L 550.64487,412.13765 L 551.15411,411.99216 L 551.37235,412.13765 L 552.09984,411.62842 L 552.75457,411.41017 L 552.75457,412.79239 L 553.4093,412.79239 L 552.75457,411.41017 L 554.86426,410.75544 L 553.4093,410.75544 L 552.09984,411.62842 L 551.15411,411.99216 L 549.26266,410.75544 L 547.88045,411.41017 L 546.42549,410.02796 L 545.989,410.17345 L 545.77075,410.02796 L 545.04327,410.02796 L 544.09755,410.60994 L 543.66106,410.75544 L 543.51556,411.04643 L 542.93358,411.41017 L 542.93358,412.13765 L 542.93358,416.28429 L 540.89663,419.12147 L 541.55136,418.39399 L 542.93358,419.7762 z M 306.21131,419.12147 L 306.21131,417.73925 L 304.8291,415.62956 L 306.21131,415.62956 L 306.21131,416.28429 L 306.93879,415.62956 L 306.93879,416.28429 L 307.59352,417.01177 L 306.93879,418.39399 L 308.97574,418.39399 L 307.59352,419.12147 L 306.21131,419.12147 z M -20.645833,418.39399 L -19.263619,414.90208 L -20.645833,417.73925 L -20.645833,418.39399 z M 350.87863,418.39399 L 349.49642,417.73925 L 348.84169,416.28429 L 349.49642,413.51987 L 350.87863,412.79239 L 350.2239,412.13765 L 350.2239,411.41017 L 349.49642,410.75544 L 350.2239,410.02796 L 348.84169,408.64574 L 348.84169,406.53605 L 348.11421,406.53605 L 348.11421,405.80857 L 347.38673,406.53605 L 346.00451,404.42636 L 346.73199,403.77162 L 347.38673,403.77162 L 347.38673,402.31666 L 346.73199,402.31666 L 346.73199,403.04414 L 346.00451,402.31666 L 346.00451,401.66193 L 346.73199,401.66193 L 346.73199,400.93445 L 345.34978,399.55223 L 346.00451,398.17002 L 345.34978,396.78781 L 346.00451,396.78781 L 345.34978,395.33284 L 346.73199,394.67811 L 345.34978,393.95063 L 345.34978,393.2959 L 346.00451,393.2959 L 346.00451,391.1862 L 346.73199,390.45872 L 347.38673,391.1862 L 346.73199,389.07651 L 347.38673,389.80399 L 348.11421,389.07651 L 348.84169,389.80399 L 347.38673,387.6943 L 347.38673,386.96682 L 348.84169,387.6943 L 347.38673,385.5846 L 349.49642,385.5846 L 348.11421,384.85712 L 348.11421,384.20239 L 351.60612,384.85712 L 348.84169,383.47491 L 348.84169,382.09269 L 348.84169,379.983 L 348.11421,379.983 L 350.2239,379.32827 L 350.87863,382.09269 L 350.87863,381.36521 L 352.3336,382.09269 L 352.3336,381.36521 L 351.60612,381.36521 L 350.87863,379.983 L 350.87863,377.21857 L 351.60612,377.8733 L 352.3336,377.8733 L 350.87863,376.49109 L 350.2239,375.10888 L 351.60612,374.3814 L 350.87863,373.72666 L 352.3336,373.72666 L 350.87863,372.99918 L 350.87863,370.88949 L 352.3336,370.88949 L 352.3336,370.23476 L 352.98833,370.88949 L 352.98833,369.50728 L 353.71581,368.85254 L 352.98833,368.85254 L 353.71581,368.12506 L 352.98833,368.12506 L 354.37054,366.74285 L 352.3336,366.74285 L 352.98833,363.90567 L 355.09802,362.52346 L 357.20772,362.52346 L 356.48024,363.25094 L 357.20772,363.25094 L 356.48024,364.63315 L 358.58993,363.25094 L 357.86245,363.90567 L 358.58993,363.90567 L 359.31741,365.36063 L 359.31741,363.90567 L 360.69963,363.25094 L 361.35436,363.25094 L 362.08184,363.90567 L 362.80932,363.25094 L 362.08184,363.25094 L 362.80932,362.52346 L 361.35436,362.52346 L 362.80932,361.14125 L 362.08184,360.41376 L 364.19153,361.14125 L 364.84627,361.86873 L 364.84627,362.52346 L 367.68344,361.86873 L 366.95596,362.52346 L 367.68344,363.25094 L 369.06566,363.25094 L 368.33817,363.90567 L 368.84741,364.12392 L 368.33817,364.63315 L 369.06566,365.36063 L 369.79314,364.63315 L 371.83008,365.36063 L 369.79314,365.36063 L 371.83008,366.01537 L 371.17535,366.74285 L 371.17535,367.39758 L 366.30123,367.39758 L 363.46405,368.85254 L 361.35436,370.88949 L 360.69963,370.23476 L 360.69963,370.88949 L 359.97214,371.61697 L 359.97214,372.34445 L 358.58993,372.99918 L 357.86245,373.72666 L 357.20772,373.72666 L 357.86245,374.3814 L 357.20772,375.83636 L 357.86245,375.83636 L 356.48024,376.49109 L 357.20772,377.21857 L 357.20772,378.60079 L 355.8255,377.21857 L 356.48024,378.60079 L 356.48024,379.32827 L 355.09802,378.60079 L 356.48024,379.983 L 355.8255,379.983 L 355.09802,379.32827 L 354.37054,379.983 L 353.71581,380.71048 L 355.09802,379.983 L 355.8255,380.71048 L 355.09802,381.36521 L 355.8255,381.36521 L 355.8255,382.82017 L 352.98833,383.47491 L 355.09802,383.47491 L 355.8255,384.20239 L 354.37054,384.85712 L 352.3336,384.20239 L 354.37054,385.5846 L 355.09802,384.85712 L 355.09802,385.5846 L 352.98833,386.96682 L 352.3336,387.6943 L 353.71581,386.96682 L 354.37054,387.6943 L 353.71581,388.34903 L 354.37054,388.34903 L 354.37054,389.07651 L 353.71581,389.07651 L 354.37054,389.80399 L 352.98833,390.45872 L 351.60612,390.45872 L 353.71581,391.1862 L 352.98833,392.56842 L 351.60612,393.2959 L 353.71581,393.2959 L 353.71581,393.95063 L 352.98833,393.95063 L 352.98833,394.67811 L 353.71581,394.67811 L 352.98833,395.33284 L 353.71581,396.06033 L 352.98833,396.78781 L 351.60612,396.06033 L 352.3336,396.78781 L 352.3336,397.44254 L 352.98833,397.44254 L 351.60612,399.55223 L 352.3336,399.55223 L 352.3336,400.93445 L 352.98833,403.04414 L 352.3336,403.77162 L 352.98833,403.77162 L 352.98833,405.15384 L 354.37054,414.24735 L 355.09802,414.90208 L 352.98833,418.39399 L 350.87863,418.39399 z M 369.79314,364.63315 L 369.06566,364.63315 L 369.06566,364.12392 L 370.44787,364.63315 L 369.79314,364.63315 z M 369.06566,364.12392 L 368.84741,364.12392 L 369.06566,363.90567 L 369.06566,364.12392 z M 346.00451,391.1862 L 345.34978,391.84094 L 344.6223,391.1862 L 345.34978,389.80399 L 346.00451,391.1862 z M -74.406667,417.73925 L -73.024453,417.01177 L -73.679186,417.73925 L -74.406667,417.73925 z M 392.1268,417.73925 L 390.0171,416.28429 L 391.39932,414.24735 L 392.1268,413.51987 L 392.78153,415.62956 L 392.1268,417.73925 z M 710.54516,417.73925 L 711.27264,416.28429 L 709.89043,417.01177 L 710.54516,417.73925 z M 3.7975238,417.01177 L 4.5250046,414.90208 L 4.5250046,417.01177 L 3.7975238,417.01177 z M 311.81291,417.01177 L 311.81291,415.62956 L 312.46765,415.62956 L 312.46765,416.28429 L 311.81291,417.01177 z M 313.92261,417.01177 L 313.92261,416.28429 L 313.92261,415.62956 L 313.19513,414.90208 L 314.57734,415.62956 L 315.30482,415.62956 L 314.57734,416.28429 L 313.92261,417.01177 z M 467.71206,416.79353 L 471.05847,414.90208 L 468.22129,416.28429 L 467.71206,416.79353 z M 401.22031,415.62956 L 402.60252,415.62956 L 402.60252,414.90208 L 401.22031,415.62956 z M -107.21605,414.90208 L -106.56132,414.90208 L -105.83384,414.24735 L -106.56132,414.24735 L -105.83384,413.51987 L -106.56132,413.51987 L -107.21605,414.90208 z M 596.76716,414.90208 L 598.14937,412.13765 L 596.03968,411.41017 L 594.65747,409.30048 L 593.92998,410.02796 L 594.65747,411.41017 L 596.76716,414.24735 L 596.03968,414.24735 L 596.76716,414.90208 z M -84.15491,414.24735 L -84.15491,412.13765 L -85.609872,412.13765 L -85.609872,409.30048 L -86.264605,410.02796 L -86.992085,408.64574 L -86.992085,405.80857 L -86.264605,405.80857 L -86.264605,406.53605 L -84.882391,405.15384 L -84.15491,407.26353 L -84.15491,408.64574 L -83.500177,407.91826 L -83.500177,409.30048 L -84.882391,409.30048 L -84.882391,410.02796 L -84.15491,410.02796 L -84.882391,410.75544 L -83.500177,410.75544 L -82.772697,411.41017 L -82.772697,412.13765 L -82.117964,412.79239 L -81.390483,412.13765 L -80.008269,412.13765 L -82.772697,414.24735 L -84.15491,414.24735 z M -84.882391,405.15384 L -86.264605,405.15384 L -86.264605,403.77162 L -87.646818,404.42636 L -86.992085,403.77162 L -87.646818,403.77162 L -87.646818,400.93445 L -86.992085,400.93445 L -85.609872,400.93445 L -85.609872,401.66193 L -84.882391,402.31666 L -84.882391,400.93445 L -84.15491,400.93445 L -82.117964,398.82475 L -83.500177,403.04414 L -83.500177,402.31666 L -84.15491,405.15384 L -84.882391,405.15384 z M -14.316749,414.24735 L -13.662016,412.79239 L -13.662016,412.13765 L -14.316749,414.24735 z M 586.29144,414.24735 L 586.29144,412.79239 L 587.67365,411.41017 L 587.67365,410.02796 L 587.67365,409.30048 L 586.29144,408.64574 L 583.45426,407.91826 L 582.07205,412.79239 L 584.18174,412.79239 L 586.29144,414.24735 z M -91.138726,412.57414 L -90.483994,412.13765 L -91.866207,411.41017 L -91.866207,412.13765 L -91.138726,412.13765 L -91.138726,412.57414 z M 604.40571,410.75544 L 605.78792,409.30048 L 606.5154,409.30048 L 605.13319,407.91826 L 604.40571,408.64574 L 604.40571,410.02796 L 604.40571,410.75544 z M 609.27983,410.75544 L 610.00731,410.02796 L 609.27983,409.30048 L 607.24288,409.30048 L 609.27983,410.75544 z M 410.67756,410.46445 C 410.54445,410.14012 410.41967,409.82794 410.24107,409.51872 L 410.24107,410.02796 L 410.67756,410.46445 z M -14.316749,409.30048 L -13.662016,407.91826 L -15.771711,407.91826 L -14.316749,409.30048 z M 409.95008,409.00948 C 409.83843,408.82444 409.69324,408.61415 409.58634,408.4275 L 409.58634,408.64574 L 409.95008,409.00948 z M 91.822706,408.64574 L 95.314614,407.26353 L 96.696828,407.26353 L 100.18874,405.15384 L 100.91622,404.42636 L 99.461255,405.15384 L 100.18874,403.04414 L 98.806522,405.80857 L 97.424308,405.80857 L 95.969347,406.53605 L 95.314614,406.53605 L 93.9324,407.26353 L 91.822706,408.64574 z M 409.14985,407.55452 C 409.00736,407.22014 408.90847,406.90126 408.85886,406.53605 L 408.85886,407.26353 L 409.14985,407.55452 z M 217.5314,407.26353 L 217.5314,406.53605 L 218.18613,406.53605 L 217.5314,407.26353 z M 603.02349,407.26353 L 603.75098,407.26353 L 605.13319,404.42636 L 606.5154,403.04414 L 606.5154,402.31666 L 604.40571,401.66193 L 603.75098,403.77162 L 603.02349,404.42636 L 601.64128,403.77162 L 601.64128,405.15384 L 602.29601,405.80857 L 602.29601,405.15384 L 603.75098,404.42636 L 604.40571,405.15384 L 603.02349,406.53605 L 602.29601,406.53605 L 603.02349,407.26353 z M 90.367744,407.04529 L 91.095225,406.53605 L 90.440492,406.53605 L 90.440492,405.80857 L 91.095225,405.80857 L 89.713011,405.15384 L 90.367744,407.04529 z M 292.24368,406.53605 L 290.13398,405.15384 L 290.86146,405.15384 L 292.24368,406.53605 z M -28.284381,405.80857 L -28.284381,405.15384 L -29.739343,403.04414 L -29.739343,403.77162 L -28.284381,405.80857 z M 278.27605,405.80857 L 278.27605,404.42636 L 277.54857,405.15384 L 277.54857,402.31666 L 276.89383,402.31666 L 276.89383,403.77162 L 275.51162,403.04414 L 274.78414,404.42636 L 274.05666,404.42636 L 274.05666,403.04414 L 273.40192,403.77162 L 274.05666,402.31666 L 273.40192,401.66193 L 273.40192,400.93445 L 272.67444,400.93445 L 272.01971,400.27971 L 273.40192,398.82475 L 274.78414,399.55223 L 276.89383,400.27971 L 276.89383,398.82475 L 275.51162,398.82475 L 276.89383,397.44254 L 274.78414,398.17002 L 274.78414,397.44254 L 275.51162,396.78781 L 276.89383,396.06033 L 279.00353,396.78781 L 279.65826,395.33284 L 280.38574,395.33284 L 281.04047,396.06033 L 281.76795,397.44254 L 282.49544,396.78781 L 283.15017,398.17002 L 283.15017,399.55223 L 284.53238,401.66193 L 284.53238,402.31666 L 283.87765,403.04414 L 283.87765,403.77162 L 282.49544,403.77162 L 281.76795,404.42636 L 281.04047,403.77162 L 281.04047,405.15384 L 280.38574,403.77162 L 280.38574,404.42636 L 279.65826,403.77162 L 279.65826,403.04414 L 279.00353,403.04414 L 279.00353,405.15384 L 278.27605,405.80857 z M 273.40192,401.66193 L 272.67444,403.04414 L 271.29223,402.31666 L 272.01971,400.93445 L 273.40192,401.66193 z M 91.822706,405.08109 L 92.477439,404.42636 L 91.822706,404.42636 L 91.095225,403.77162 L 91.822706,405.08109 z M 496.88404,404.42636 L 496.88404,403.77162 L 496.6658,403.33513 C 496.75661,403.68975 496.8551,404.05696 496.88404,404.42636 z M 709.89043,404.42636 L 710.54516,403.77162 L 709.16295,401.66193 L 709.89043,404.42636 z M 212.65727,402.31666 L 212.65727,401.66193 L 213.31201,400.27971 L 214.03949,400.93445 L 213.31201,401.66193 L 212.65727,402.31666 z M 496.15656,401.80742 L 496.15656,400.93445 L 495.72007,400.49796 C 495.84999,400.95065 495.99172,401.35469 496.15656,401.80742 z M 269.18254,401.66193 L 269.18254,400.93445 L 269.18254,399.55223 L 268.5278,400.27971 L 268.5278,399.55223 L 269.91002,392.56842 L 269.18254,394.67811 L 268.5278,393.95063 L 268.5278,398.17002 L 267.07284,399.55223 L 266.41811,397.44254 L 266.41811,395.33284 L 265.69063,396.78781 L 265.03589,396.78781 L 265.69063,397.44254 L 264.30841,397.44254 L 265.03589,398.82475 L 265.69063,398.82475 L 266.41811,400.27971 L 264.30841,398.82475 L 263.58093,399.55223 L 263.58093,398.17002 L 262.9262,399.55223 L 262.9262,398.82475 L 262.19872,399.55223 L 262.9262,398.17002 L 261.54399,398.17002 L 262.19872,397.44254 L 261.54399,397.44254 L 262.19872,393.95063 L 262.9262,394.67811 L 263.58093,395.33284 L 263.58093,394.67811 L 262.9262,393.95063 L 263.43544,392.85941 L 262.19872,393.2959 L 262.9262,391.84094 L 262.19872,391.1862 L 263.58093,389.80399 L 265.03589,389.80399 L 263.58093,389.07651 L 264.30841,388.34903 L 264.30841,386.96682 L 265.69063,386.96682 L 266.41811,387.6943 L 266.41811,388.34903 L 267.80032,388.34903 L 266.41811,389.07651 L 267.07284,389.80399 L 267.07284,391.1862 L 267.80032,389.80399 L 268.5278,391.84094 L 268.5278,390.45872 L 267.80032,389.80399 L 268.5278,389.07651 L 269.91002,389.80399 L 269.91002,391.1862 L 270.56475,390.45872 L 269.91002,389.07651 L 270.56475,388.34903 L 271.29223,388.34903 L 270.56475,387.6943 L 269.18254,387.6943 L 269.18254,386.96682 L 268.5278,386.96682 L 267.80032,385.5846 L 266.41811,386.31208 L 265.69063,385.5846 L 265.69063,382.82017 L 268.5278,384.20239 L 269.18254,383.47491 L 271.29223,384.85712 L 270.56475,384.20239 L 271.29223,383.47491 L 269.91002,383.47491 L 267.07284,382.09269 L 269.18254,381.36521 L 269.91002,380.71048 L 267.80032,381.36521 L 267.07284,380.71048 L 267.07284,381.36521 L 265.69063,381.36521 L 267.07284,378.60079 L 268.5278,377.21857 L 269.91002,377.8733 L 270.56475,377.21857 L 268.5278,375.83636 L 269.91002,375.10888 L 269.91002,373.72666 L 271.29223,373.72666 L 272.01971,375.10888 L 271.29223,375.83636 L 272.01971,376.49109 L 272.01971,380.71048 L 273.40192,381.36521 L 273.40192,385.5846 L 274.05666,386.31208 L 274.05666,388.34903 L 275.51162,389.07651 L 274.78414,390.45872 L 275.51162,390.45872 L 276.16635,390.45872 L 276.89383,391.1862 L 277.54857,391.1862 L 277.54857,392.56842 L 275.51162,393.2959 L 274.78414,394.67811 L 273.40192,394.67811 L 273.40192,396.78781 L 272.67444,398.17002 L 272.01971,396.06033 L 271.29223,397.44254 L 272.01971,398.82475 L 271.29223,400.27971 L 270.56475,400.93445 L 269.91002,400.27971 L 269.91002,400.93445 L 269.18254,401.66193 z M 584.18174,401.66193 L 584.83647,401.66193 L 584.18174,400.27971 L 583.45426,400.93445 L 584.18174,401.66193 z M -75.134148,400.93445 L -75.788881,400.27971 L -75.134148,399.55223 L -75.134148,400.27971 L -73.679186,400.27971 L -75.134148,400.93445 z M 216.14918,399.55223 L 214.69422,398.82475 L 214.69422,398.17002 L 216.14918,398.82475 L 216.14918,399.55223 z M 643.54418,399.55223 L 644.92639,398.82475 L 644.19891,398.17002 L 643.54418,398.17002 L 643.54418,399.55223 z M -71.64224,398.82475 L -71.64224,398.17002 L -72.296972,398.17002 L -70.914759,397.44254 L -71.64224,398.82475 z M 589.05586,398.17002 L 589.78334,397.44254 L 590.43808,397.44254 L 589.78334,396.06033 L 588.32838,397.44254 L 589.05586,398.17002 z M 780.01958,398.02452 C 779.92581,397.2669 779.82148,396.52205 779.72859,395.76933 L 779.72859,397.44254 L 780.01958,398.02452 z M 87.603317,396.78781 L 87.603317,396.06033 L 88.330798,395.33284 L 86.948584,395.33284 L 86.948584,396.06033 L 87.603317,396.78781 z M 288.02429,395.33284 L 287.36956,393.95063 L 288.02429,393.95063 L 288.75177,394.67811 L 289.47925,394.67811 L 290.13398,395.33284 L 288.02429,395.33284 z M 275.51162,394.67811 L 275.51162,393.95063 L 276.16635,393.2959 L 276.89383,393.95063 L 275.51162,394.67811 z M 456.36336,394.67811 L 456.36336,393.2959 L 454.98114,393.2959 L 456.36336,394.67811 z M 209.16537,393.2959 L 208.43789,391.84094 L 207.7104,391.1862 L 206.32819,386.96682 L 207.05567,387.6943 L 209.16537,391.84094 L 209.16537,393.2959 z M 263.58093,393.2959 L 264.30841,392.56842 L 263.58093,392.78666 L 263.58093,393.2959 z M 779.36485,392.85941 C 779.26703,392.17919 779.11795,391.49941 779.00111,390.82246 L 779.00111,392.56842 L 779.36485,392.85941 z M 260.81651,392.56842 L 261.54399,389.80399 L 262.9262,386.96682 L 262.9262,389.07651 L 262.19872,389.80399 L 261.54399,391.84094 L 260.81651,392.56842 z M 398.38313,391.1862 L 399.76535,391.1862 L 399.76535,390.45872 L 399.11061,390.45872 L 398.38313,391.1862 z M 277.54857,390.45872 L 277.54857,389.80399 L 276.16635,389.07651 L 276.89383,389.07651 L 276.89383,388.34903 L 277.54857,386.96682 L 279.00353,387.6943 L 279.00353,389.80399 L 278.27605,390.45872 L 277.54857,390.45872 z M 398.38313,390.45872 L 398.38313,389.80399 L 397.7284,389.07651 L 397.00092,389.80399 L 398.38313,390.45872 z M 778.63737,388.85827 C 778.54381,388.41663 778.45428,387.98927 778.34638,387.5488 L 778.34638,388.34903 L 778.63737,388.85827 z M -60.439035,387.6943 L -59.056821,384.20239 L -58.32934,385.5846 L -59.056821,385.5846 L -59.056821,386.31208 L -56.947127,385.5846 L -60.439035,387.6943 z M -59.056821,384.20239 L -58.32934,382.09269 L -59.711554,383.47491 L -66.040637,386.96682 L -66.040637,385.5846 L -68.150332,385.5846 L -68.150332,384.20239 L -67.422851,382.09269 L -66.69537,381.36521 L -66.040637,381.36521 L -66.69537,380.71048 L -64.658424,379.983 L -66.040637,379.983 L -65.313156,378.60079 L -64.658424,378.60079 L -65.313156,377.8733 L -64.658424,377.21857 L -65.313156,377.21857 L -65.313156,375.83636 L -64.658424,374.3814 L -63.203462,374.3814 L -64.658424,373.72666 L -64.658424,372.99918 L -64.658424,370.88949 L -63.930943,370.23476 L -63.203462,370.23476 L -63.203462,369.50728 L -62.548729,368.12506 L -62.548729,367.39758 L -60.439035,368.12506 L -61.166516,367.39758 L -61.821248,366.74285 L -60.439035,366.01537 L -59.711554,366.01537 L -59.056821,365.36063 L -60.439035,366.01537 L -59.711554,365.36063 L -61.821248,366.01537 L -61.821248,365.36063 L -63.203462,366.74285 L -63.930943,366.74285 L -61.821248,364.63315 L -63.203462,365.36063 L -63.203462,364.63315 L -61.821248,363.90567 L -63.203462,363.90567 L -63.203462,363.25094 L -61.821248,362.52346 L -61.166516,362.52346 L -61.166516,363.25094 L -59.711554,363.25094 L -60.439035,362.52346 L -59.711554,361.14125 L -60.439035,361.14125 L -60.439035,360.41376 L -59.056821,359.03155 L -62.548729,361.14125 L -65.313156,361.86873 L -66.040637,363.25094 L -68.150332,363.90567 L -68.150332,362.52346 L -66.69537,361.86873 L -67.422851,360.41376 L -66.040637,359.75903 L -65.313156,360.41376 L -65.313156,359.75903 L -64.658424,359.03155 L -63.930943,359.75903 L -63.930943,359.03155 L -61.821248,359.03155 L -61.166516,357.64934 L -60.439035,356.92186 L -56.219646,356.92186 L -56.219646,356.26712 L -57.674607,354.15743 L -59.711554,353.42995 L -60.439035,353.42995 L -65.313156,353.42995 L -65.313156,352.77522 L -64.658424,352.04773 L -60.439035,350.66552 L -61.166516,350.66552 L -60.439035,349.93804 L -62.548729,350.66552 L -62.548729,349.93804 L -63.930943,349.93804 L -65.313156,349.28331 L -65.313156,348.55583 L -64.658424,348.55583 L -63.930943,347.90109 L -64.658424,346.44613 L -62.548729,345.7914 L -61.166516,346.44613 L -60.439035,347.17361 L -59.711554,346.44613 L -55.564913,346.44613 L -53.455219,348.55583 L -56.219646,348.55583 L -57.674607,349.28331 L -56.947127,349.93804 L -56.219646,349.93804 L -56.219646,350.66552 L -53.455219,350.66552 L -51.345524,349.93804 L -50.690791,350.66552 L -52.073005,350.66552 L -53.455219,352.04773 L -57.674607,352.04773 L -57.674607,352.77522 L -58.32934,352.77522 L -56.947127,353.42995 L -57.674607,353.42995 L -55.564913,355.53964 L -56.219646,354.15743 L -53.455219,354.15743 L -54.182699,356.26712 L -53.455219,356.26712 L -52.727738,356.26712 L -52.727738,354.88491 L -51.345524,353.42995 L -49.963311,354.15743 L -49.963311,352.77522 L -47.853616,352.04773 L -47.198883,353.42995 L -48.581097,353.42995 L -48.581097,354.88491 L -50.690791,355.53964 L -49.23583,355.53964 L -51.345524,356.26712 L -50.690791,356.92186 L -52.073005,357.64934 L -52.073005,358.37682 L -49.23583,356.26712 L -49.963311,357.64934 L -48.581097,356.26712 L -48.581097,357.64934 L -49.23583,357.64934 L -48.726593,358.23132 L -47.198883,357.64934 L -49.23583,359.75903 L -46.471403,358.37682 L -46.471403,359.03155 L -45.743922,357.64934 L -45.743922,358.37682 L -45.089189,356.92186 L -44.361708,357.64934 L -44.361708,356.92186 L -42.979494,357.64934 L -42.252014,361.14125 L -43.706975,361.86873 L -43.706975,362.52346 L -45.089189,362.52346 L -42.979494,363.25094 L -43.706975,363.90567 L -42.979494,363.90567 L -45.743922,364.63315 L -44.361708,365.36063 L -45.743922,365.36063 L -46.471403,366.01537 L -47.198883,366.74285 L -48.581097,366.74285 L -44.361708,367.39758 L -45.089189,367.39758 L -44.361708,368.12506 L -45.743922,367.39758 L -46.471403,368.12506 L -45.743922,368.12506 L -45.089189,368.12506 L -45.743922,368.85254 L -46.471403,368.85254 L -45.089189,369.50728 L -45.743922,369.50728 L -46.471403,370.23476 L -45.743922,370.23476 L -45.743922,370.88949 L -47.198883,372.34445 L -45.089189,370.88949 L -45.743922,371.61697 L -44.361708,371.61697 L -45.743922,372.99918 L -44.361708,372.34445 L -45.089189,372.99918 L -41.597281,370.23476 L -40.8698,370.88949 L -42.252014,371.61697 L -41.597281,372.34445 L -41.597281,372.99918 L -42.252014,372.99918 L -42.252014,373.72666 L -41.597281,373.72666 L -40.8698,374.3814 L -42.252014,375.10888 L -43.706975,375.10888 L -44.361708,375.83636 L -47.198883,376.49109 L -45.743922,376.49109 L -45.743922,377.21857 L -43.706975,377.21857 L -42.252014,377.21857 L -40.215067,376.49109 L -39.487586,377.21857 L -39.487586,376.49109 L -38.105373,375.83636 L -38.105373,376.49109 L -36.723159,375.83636 L -35.268198,376.49109 L -35.995678,375.83636 L -32.50377,375.10888 L -31.121557,375.83636 L -32.50377,376.49109 L -31.121557,377.8733 L -30.394076,375.10888 L -29.739343,375.10888 L -29.739343,374.3814 L -28.284381,375.10888 L -27.629649,375.10888 L -28.284381,376.49109 L -29.011862,375.83636 L -29.011862,377.21857 L -28.284381,377.21857 L -32.50377,380.71048 L -33.885984,380.71048 L -35.268198,381.36521 L -35.268198,382.09269 L -35.995678,380.71048 L -38.760106,382.82017 L -38.760106,381.36521 L -39.487586,382.09269 L -44.725448,382.09269 L -45.089189,382.82017 L -45.743922,382.82017 L -46.471403,382.09269 L -46.471403,382.82017 L -47.853616,382.82017 L -49.23583,382.09269 L -49.963311,382.09269 L -49.23583,382.82017 L -51.345524,383.47491 L -52.727738,383.47491 L -52.073005,381.36521 L -53.455219,382.82017 L -54.182699,383.47491 L -53.455219,384.20239 L -59.056821,384.20239 z M -44.361708,365.36063 L -42.979494,363.90567 L -42.252014,364.63315 L -43.706975,365.36063 L -44.361708,365.36063 z M -43.706975,365.36063 L -42.979494,365.36063 L -43.706975,366.01537 L -43.706975,365.36063 z M -53.455219,356.26712 L -53.455219,354.15743 L -52.727738,354.15743 L -53.455219,356.26712 z M 280.38574,387.6943 L 277.54857,386.31208 L 279.00353,384.85712 L 278.27605,381.36521 L 280.38574,382.82017 L 281.04047,382.09269 L 281.04047,379.983 L 283.15017,382.82017 L 283.15017,383.47491 L 283.15017,384.85712 L 282.49544,384.85712 L 280.38574,387.6943 z M 516.45327,386.96682 L 519.2177,385.5846 L 521.3274,382.82017 L 522.70961,382.09269 L 520.59992,382.82017 L 519.2177,385.5846 L 516.45327,386.31208 L 516.45327,386.96682 z M 565.33999,386.96682 L 567.37693,386.31208 L 565.99472,386.31208 L 565.33999,385.5846 L 565.33999,386.96682 z M 510.85167,386.31208 L 511.5064,385.5846 L 514.34358,384.85712 L 511.5064,384.85712 L 510.85167,385.5846 L 510.12419,384.20239 L 510.85167,386.31208 z M 414.46046,384.20239 L 415.18794,382.82017 L 414.46046,382.09269 L 413.73298,382.82017 L 413.07825,382.09269 L 412.35077,382.09269 L 412.35077,382.82017 L 413.73298,382.82017 L 413.73298,383.47491 L 414.46046,384.20239 z M 504.52259,384.20239 L 505.61381,383.69315 L 506.63228,384.20239 L 505.97755,383.47491 L 505.61381,383.69315 L 505.25007,383.47491 L 504.52259,383.47491 L 503.86786,382.09269 L 501.03068,381.36521 L 503.14037,382.09269 L 503.86786,382.09269 L 504.52259,384.20239 z M 718.98394,384.20239 L 719.63867,383.47491 L 716.87425,381.36521 L 718.25646,383.47491 L 718.98394,384.20239 z M 202.83628,383.47491 L 201.45407,381.36521 L 203.56376,380.71048 L 203.56376,379.32827 L 204.94598,380.71048 L 204.2185,380.71048 L 204.2185,382.09269 L 204.94598,382.09269 L 204.94598,383.47491 L 203.56376,382.82017 L 204.2185,383.47491 L 202.83628,383.47491 z M 177.73819,381.36521 L 178.39293,381.36521 L 179.12041,379.983 L 178.39293,379.983 L 177.73819,380.71048 L 176.28323,379.983 L 177.73819,381.36521 z M 498.99373,380.71048 L 501.03068,380.71048 L 499.64847,379.983 L 498.99373,380.71048 z M -56.947127,379.983 L -55.273921,378.96453 L -52.436745,377.8733 L -51.345524,377.8733 L -51.345524,377.43682 L -50.690791,377.21857 L -50.545295,376.92758 L -49.23583,376.49109 L -49.963311,375.83636 L -50.545295,376.92758 L -51.345524,377.21857 L -51.345524,377.43682 L -52.436745,377.8733 L -53.455219,377.8733 L -55.273921,378.96453 L -56.219646,379.32827 L -56.947127,379.983 z M 495.50183,379.983 L 498.26625,379.983 L 495.50183,379.32827 L 495.50183,379.983 z M 394.96397,379.91025 L 395.61871,379.32827 L 396.27344,379.32827 L 394.96397,379.91025 z M 199.34437,379.32827 L 199.34437,378.60079 L 200.07186,378.60079 L 200.07186,379.32827 L 199.34437,379.32827 z M 187.70468,378.38254 L 188.21392,377.21857 L 189.59613,376.49109 L 188.21392,376.49109 L 187.70468,378.38254 z M 722.47585,377.21857 L 722.47585,376.49109 L 721.74837,374.3814 L 721.74837,375.83636 L 722.47585,377.21857 z M 490.55496,376.49109 L 492.66465,376.49109 L 492.66465,375.83636 L 491.28244,375.83636 L 490.55496,374.3814 L 490.55496,375.83636 L 490.55496,376.49109 z M 718.98394,376.49109 L 718.98394,375.10888 L 718.25646,374.3814 L 717.52898,374.3814 L 717.52898,375.10888 L 718.98394,376.49109 z M -56.219646,375.83636 L -54.182699,374.3814 L -52.727738,372.99918 L -56.219646,375.83636 z M 181.88483,375.83636 L 181.2301,375.10888 L 182.61232,374.3814 L 183.99453,372.99918 L 181.2301,375.10888 L 180.50262,372.99918 L 180.50262,371.61697 L 181.2301,370.23476 L 181.2301,368.12506 L 181.88483,368.12506 L 181.2301,367.39758 L 182.61232,366.74285 L 183.26705,367.39758 L 182.61232,368.12506 L 182.61232,369.50728 L 183.99453,368.12506 L 184.72201,368.85254 L 183.99453,369.50728 L 183.99453,370.88949 L 185.37674,370.23476 L 185.37674,371.61697 L 186.75896,371.61697 L 186.10422,372.99918 L 184.72201,374.3814 L 181.88483,375.83636 z M 602.29601,375.10888 L 603.75098,373.72666 L 603.75098,372.99918 L 605.13319,372.34445 L 602.29601,371.61697 L 602.29601,372.99918 L 602.29601,375.10888 z M 665.87784,375.10888 L 672.13417,375.10888 L 672.13417,374.3814 L 667.98753,374.3814 L 666.60532,372.99918 L 665.87784,375.10888 z M 483.57114,374.3814 L 483.57114,373.87216 L 484.29862,374.3814 L 485.0261,373.72666 L 484.29862,373.72666 L 484.29862,374.3814 L 483.57114,373.72666 L 483.57114,373.87216 L 482.18893,372.99918 L 483.57114,374.3814 z M -35.268198,373.72666 L -35.268198,372.99918 L -34.613465,372.34445 L -34.613465,373.72666 L -35.268198,373.72666 z M 533.18533,373.72666 L 533.91281,373.72666 L 532.45785,372.99918 L 533.18533,372.34445 L 534.56755,365.36063 L 535.29503,363.90567 L 535.29503,362.95995 L 535.65877,362.37796 L 536.67724,361.86873 L 535.94976,361.86873 L 535.65877,362.37796 L 535.29503,362.52346 L 535.29503,362.95995 L 533.91281,365.36063 L 533.91281,367.39758 L 532.45785,371.61697 L 532.45785,372.99918 L 533.18533,373.72666 z M 693.08562,373.72666 L 693.08562,372.99918 L 691.70341,371.61697 L 691.70341,372.99918 L 693.08562,373.72666 z M 606.5154,372.99918 L 607.24288,372.99918 L 607.24288,372.34445 L 605.78792,372.34445 L 606.5154,372.99918 z M -59.056821,372.34445 L -56.947127,371.61697 L -56.947127,370.88949 L -59.056821,372.34445 z M 480.07923,372.34445 L 479.4245,371.61697 L 477.3148,370.88949 L 477.3148,370.23476 L 475.93259,369.50728 L 473.09542,368.85254 L 475.20511,369.50728 L 476.58732,370.23476 L 476.58732,371.61697 L 478.69702,371.61697 L 480.07923,372.34445 z M 417.22489,370.88949 L 417.95237,367.39758 L 415.18794,366.01537 L 415.84267,364.63315 L 413.73298,363.90567 L 415.18794,365.36063 L 415.18794,366.01537 L 417.22489,367.39758 L 417.22489,368.85254 L 416.57015,369.50728 L 417.22489,370.88949 z M 716.87425,370.23476 L 717.52898,369.50728 L 715.49203,367.39758 L 716.87425,370.23476 z M 587.67365,369.50728 L 588.32838,368.85254 L 588.32838,367.39758 L 587.67365,366.74285 L 586.94617,367.39758 L 587.67365,369.50728 z M 375.32199,368.12506 L 375.32199,366.74285 L 376.77695,366.74285 L 375.32199,366.01537 L 377.43169,365.36063 L 378.8139,364.63315 L 378.15917,365.36063 L 380.26886,366.01537 L 380.92359,365.36063 L 382.30581,365.36063 L 381.65107,366.01537 L 382.30581,366.01537 L 383.03329,366.74285 L 381.65107,368.12506 L 380.92359,368.12506 L 379.54138,368.12506 L 375.32199,368.12506 z M 473.09542,368.12506 L 473.09542,367.39758 L 472.00419,367.39758 L 471.05847,366.74285 L 471.7132,367.39758 L 472.00419,367.39758 L 473.09542,368.12506 z M -66.69537,367.39758 L -70.187278,366.01537 L -68.805064,365.36063 L -68.150332,366.74285 L -68.150332,366.01537 L -66.69537,367.39758 z M 471.05847,366.01537 L 471.05847,365.36063 L 468.94878,364.63315 L 469.60351,365.36063 L 471.05847,366.01537 z M 61.050266,365.36063 L 60.395533,363.90567 L 61.777747,364.63315 L 61.050266,365.36063 z M -49.963311,364.63315 L -48.581097,363.90567 L -48.581097,362.52346 L -49.963311,364.63315 z M 719.63867,364.63315 L 718.98394,360.41376 L 718.25646,359.75903 L 717.52898,360.41376 L 718.98394,361.14125 L 717.52898,361.86873 L 718.98394,362.52346 L 718.25646,362.52346 L 719.63867,364.63315 z M 723.13058,363.90567 L 722.47585,361.86873 L 722.47585,361.14125 L 723.13058,361.86873 L 723.85806,361.14125 L 721.74837,360.41376 L 721.74837,361.86873 L 723.13058,363.90567 z M 751.06585,363.90567 L 753.90302,363.25094 L 751.79333,363.25094 L 751.79333,361.86873 L 751.06585,363.90567 z M -40.8698,363.25094 L -42.252014,362.52346 L -40.8698,361.14125 L -40.215067,362.52346 L -40.8698,362.52346 L -40.8698,363.25094 z M 357.86245,363.25094 L 358.58993,362.52346 L 357.86245,362.52346 L 357.20772,361.86873 L 357.86245,361.14125 L 358.58993,361.86873 L 360.69963,361.14125 L 359.97214,363.25094 L 359.31741,362.52346 L 357.86245,363.25094 z M 521.3274,363.25094 L 521.98213,361.86873 L 521.98213,361.14125 L 521.3274,360.41376 L 520.59992,361.86873 L 521.3274,363.25094 z M 712.65486,363.25094 L 713.38234,363.25094 L 714.03707,362.52346 L 712.65486,361.14125 L 712.65486,363.25094 z M 581.34457,362.52346 L 582.07205,356.92186 L 583.45426,355.53964 L 586.29144,355.53964 L 586.94617,354.15743 L 591.82029,359.03155 L 593.27525,357.64934 L 592.54777,356.26712 L 593.27525,356.92186 L 593.27525,356.26712 L 589.78334,354.15743 L 588.32838,352.04773 L 586.29144,351.393 L 586.94617,354.15743 L 586.29144,354.88491 L 584.83647,354.15743 L 582.07205,355.53964 L 581.34457,360.41376 L 579.30762,360.41376 L 577.85266,359.75903 L 577.85266,359.03155 L 575.08823,357.64934 L 576.47044,359.75903 L 575.81571,361.86873 L 577.19792,359.03155 L 577.85266,360.41376 L 580.68983,361.86873 L 581.34457,362.52346 z M 612.77174,362.52346 L 613.49922,361.86873 L 613.49922,359.03155 L 612.77174,361.14125 L 612.77174,362.52346 z M 695.9228,362.52346 L 695.19532,360.41376 L 693.8131,358.37682 L 694.54058,361.86873 L 695.9228,362.52346 z M 466.1116,361.86873 L 466.83908,361.86873 L 466.83908,361.14125 L 465.45687,360.41376 L 466.1116,361.14125 L 466.1116,361.86873 z M 753.17554,360.41376 L 754.55775,360.41376 L 755.28524,359.03155 L 753.90302,359.75903 L 753.17554,360.41376 z M 415.18794,359.75903 L 417.22489,358.37682 L 415.84267,359.03155 L 415.18794,359.03155 L 415.18794,359.75903 z M 464.72939,359.03155 L 463.34717,356.26712 L 461.96496,355.53964 L 460.58275,351.393 L 458.47305,350.66552 L 457.74557,347.90109 L 457.09084,347.17361 L 457.09084,347.90109 L 458.47305,350.66552 L 459.85526,351.393 L 461.96496,355.53964 L 462.61969,356.26712 L 464.72939,359.03155 z M 751.06585,359.03155 L 750.41111,358.37682 L 749.68363,356.92186 L 749.68363,358.37682 L 751.06585,359.03155 z M 772.30829,358.59506 C 772.22585,358.1603 772.11907,357.71871 772.01729,357.2856 L 772.01729,358.37682 L 772.30829,358.59506 z M 649.14578,358.37682 L 651.18273,358.37682 L 649.80051,356.92186 L 649.14578,353.42995 L 648.4183,354.88491 L 647.03609,355.53964 L 649.14578,357.64934 L 649.14578,358.37682 z M 276.89383,357.64934 L 276.16635,356.92186 L 276.16635,356.26712 L 276.89383,356.92186 L 276.89383,357.64934 z M 414.46046,357.64934 L 415.84267,356.92186 L 414.46046,356.26712 L 414.46046,357.64934 z M 732.95157,357.64934 L 736.44348,357.64934 L 737.09821,356.92186 L 736.44348,356.26712 L 735.716,354.88491 L 734.98852,354.88491 L 735.716,356.26712 L 735.716,356.92186 L 732.95157,357.64934 z M 762.26905,356.92186 L 763.65127,356.26712 L 762.92378,354.88491 L 764.37875,354.88491 L 764.37875,349.93804 L 760.88684,350.66552 L 762.26905,352.77522 L 761.54157,354.15743 L 762.26905,356.92186 z M 771.8718,356.63086 C 771.71606,356.02167 771.54798,355.41761 771.36256,354.81216 L 771.36256,355.53964 L 771.8718,356.63086 z M 60.395533,355.53964 L 59.01332,354.88491 L 60.395533,354.88491 L 60.395533,355.53964 z M 60.395533,354.88491 L 59.668053,354.15743 L 60.395533,353.42995 L 60.395533,354.88491 z M 522.70961,354.15743 L 522.70961,352.77522 L 521.98213,352.77522 L 521.3274,353.42995 L 522.70961,354.15743 z M 715.49203,354.15743 L 716.87425,354.15743 L 714.76455,352.04773 L 714.76455,353.42995 L 715.49203,354.15743 z M 733.60631,354.15743 L 734.98852,354.15743 L 736.44348,352.77522 L 735.716,352.77522 L 734.33379,353.42995 L 733.60631,354.15743 z M 422.17176,353.42995 L 421.44428,352.04773 L 420.7168,352.77522 L 422.17176,353.42995 z M 696.57753,353.42995 L 698.03249,352.04773 L 696.57753,350.66552 L 695.9228,352.04773 L 696.57753,353.42995 z M 744.08203,352.77522 L 744.80951,352.77522 L 744.80951,352.04773 L 744.80951,351.393 L 744.08203,351.393 L 744.08203,352.04773 L 744.08203,352.77522 z M 539.44167,352.04773 L 541.55136,350.66552 L 540.16915,349.28331 L 538.78694,350.66552 L 539.44167,352.04773 z M 781.83829,352.04773 L 781.83829,351.393 L 783.2205,351.393 L 781.11081,349.28331 L 782.49302,349.28331 L 781.83829,348.55583 L 782.49302,347.17361 L 781.11081,347.90109 L 781.11081,349.28331 L 779.2921,349.28331 L 778.49187,348.11934 L 779.00111,346.44613 L 778.34638,347.90109 L 778.49187,348.11934 L 778.34638,348.55583 L 779.00111,349.28331 L 779.2921,349.28331 L 779.72859,349.93804 L 781.11081,349.93804 L 781.11081,351.393 L 781.83829,352.04773 z M 425.66367,351.393 L 428.42809,349.93804 L 424.93618,350.66552 L 425.66367,351.393 z M 521.3274,351.393 L 521.83663,348.55583 L 523.43709,348.55583 L 524.09182,349.93804 L 524.8193,349.28331 L 523.43709,348.55583 L 522.70961,347.90109 L 521.98213,346.44613 L 521.3274,347.17361 L 519.94518,344.40919 L 519.2177,345.06392 L 519.2177,346.44613 L 520.59992,347.17361 L 519.2177,347.90109 L 519.2177,349.28331 L 521.3274,351.393 z M 721.74837,351.393 L 722.47585,351.393 L 721.74837,350.66552 L 722.47585,349.93804 L 722.47585,348.55583 L 721.02089,348.55583 L 721.02089,349.28331 L 721.74837,351.393 z M 542.27884,350.66552 L 543.66106,350.66552 L 542.93358,349.93804 L 542.27884,349.93804 L 542.27884,350.66552 z M 851.67645,349.28331 L 850.94897,347.90109 L 853.05866,347.17361 L 848.18454,346.44613 L 850.22149,347.53735 L 850.22149,347.90109 L 846.72958,347.90109 L 846.72958,348.55583 L 850.22149,348.55583 L 851.67645,349.28331 z M 428.42809,348.55583 L 430.53779,347.90109 L 430.53779,347.17361 L 428.42809,348.55583 z M 875.39232,347.90109 L 873.28263,346.44613 L 873.28263,347.17361 L 875.39232,347.90109 z M 785.33019,346.44613 L 784.60271,344.40919 L 783.87523,344.40919 L 783.87523,345.7914 L 785.33019,346.44613 z M 431.92,345.7914 L 431.92,344.40919 L 431.19252,344.40919 L 431.92,345.7914 z M 455.63588,345.7914 L 455.63588,345.06392 L 455.34488,344.48193 C 455.43879,344.89277 455.5428,345.21361 455.63588,345.7914 z M 359.31741,345.06392 L 358.58993,343.68171 L 359.31741,340.91728 L 359.97214,338.80758 L 359.97214,339.46232 L 361.35436,338.80758 L 362.08184,339.46232 L 363.46405,341.57201 L 363.46405,342.95422 L 363.46405,344.40919 L 364.19153,342.95422 L 364.19153,344.40919 L 362.80932,345.06392 L 362.08184,345.06392 L 359.31741,345.06392 z M 749.68363,345.06392 L 748.95615,344.40919 L 751.06585,342.29949 L 750.41111,340.91728 L 748.95615,341.57201 L 748.30142,338.80758 L 746.91921,338.80758 L 746.91921,340.1898 L 748.30142,340.1898 L 747.57394,340.91728 L 747.57394,343.68171 L 749.68363,345.06392 z M 460.58275,344.40919 L 461.96496,342.95422 L 464.07465,342.29949 L 464.07465,340.91728 L 465.45687,341.57201 L 465.45687,340.91728 L 466.83908,340.1898 L 466.1116,340.1898 L 465.45687,340.91728 L 464.07465,340.91728 L 463.34717,342.29949 L 461.96496,342.29949 L 460.58275,343.68171 L 459.85526,343.68171 L 460.58275,344.40919 z M 455.12664,343.60896 L 455.92687,343.17247 L 453.59893,341.57201 L 452.58046,342.51774 C 454.02143,342.18528 454.64715,342.16487 455.12664,343.60896 z M 432.64748,342.95422 L 434.02969,340.91728 L 433.30221,340.91728 L 432.64748,342.95422 z M 443.77794,342.95422 L 444.21443,342.80873 L 441.66824,341.57201 L 443.77794,342.95422 z M 450.10702,342.95422 C 450.65264,342.88001 450.9837,342.82877 451.41649,342.73598 L 449.0158,341.93575 L 450.10702,342.95422 z M 459.12778,342.95422 L 459.85526,341.57201 L 459.12778,341.57201 L 459.12778,342.29949 L 458.47305,340.91728 L 457.74557,341.57201 L 459.12778,342.95422 z M 460.58275,342.95422 L 461.23748,342.29949 L 460.58275,340.1898 L 460.58275,342.95422 z M 208.43789,342.29949 L 207.05567,341.57201 L 209.16537,340.91728 L 209.8201,342.29949 L 208.43789,342.29949 z M 446.32412,342.22674 L 448.28832,341.64476 L 447.99733,341.57201 L 446.32412,342.22674 z M 614.88143,340.91728 L 615.60891,340.1898 L 613.49922,338.0801 L 613.49922,339.46232 L 614.88143,340.91728 z M 439.6313,340.1898 L 441.01351,339.46232 L 440.28603,339.46232 L 440.28603,338.80758 L 439.6313,338.80758 L 439.6313,340.1898 z M 749.68363,340.1898 L 752.44806,338.0801 L 751.79333,338.0801 L 749.68363,338.0801 L 748.95615,338.80758 L 749.68363,340.1898 z M 852.33118,340.1898 L 850.22149,339.46232 L 850.94897,338.80758 L 852.33118,339.46232 L 852.33118,340.1898 z M 600.9138,338.80758 L 605.13319,337.42537 L 603.75098,337.42537 L 603.75098,335.97041 L 600.25907,334.58819 L 597.42189,335.97041 L 597.42189,336.69789 L 598.80411,338.0801 L 600.9138,338.80758 z M 392.1268,338.0801 L 392.78153,338.0801 L 395.61871,337.42537 L 397.00092,335.31568 L 398.38313,334.58819 L 396.27344,335.31568 L 395.61871,336.69789 L 392.78153,338.0801 L 391.39932,336.69789 L 392.1268,338.0801 z M 809.04607,338.0801 L 809.77355,334.58819 L 811.8105,333.93346 L 812.53798,331.09629 L 811.8105,331.09629 L 809.77355,334.58819 L 809.04607,335.31568 L 809.04607,338.0801 z M 849.56675,337.42537 L 848.18454,336.69789 L 848.18454,335.97041 L 849.56675,335.97041 L 849.56675,337.42537 z M 376.77695,336.69789 L 377.43169,335.31568 L 378.8139,334.58819 L 376.77695,335.31568 L 376.77695,336.69789 z M 746.91921,335.97041 L 746.91921,334.58819 L 747.57394,331.82377 L 746.19172,332.4785 L 746.91921,335.97041 z M 755.28524,335.97041 L 755.28524,335.31568 L 752.44806,333.20598 L 751.06585,332.4785 L 755.28524,335.97041 z M 850.22149,335.97041 L 854.44087,333.93346 L 853.05866,335.97041 L 850.22149,335.97041 z M 594.65747,335.31568 L 596.03968,335.31568 L 596.03968,334.58819 L 596.76716,334.58819 L 595.3122,333.20598 L 593.92998,332.4785 L 593.27525,332.4785 L 594.65747,335.31568 z M 390.74458,334.58819 L 391.39932,333.20598 L 392.1268,331.09629 L 391.69031,330.73255 L 392.1268,328.33186 L 390.0171,325.78568 L 390.0171,325.49468 L 389.58062,325.20369 L 388.63489,324.11247 L 387.03443,323.74873 L 386.5252,323.45774 L 386.45245,323.60323 L 385.79771,323.45774 L 384.4155,326.22216 L 384.4155,327.60438 L 380.92359,331.82377 L 380.26886,332.4785 L 381.65107,331.82377 L 385.14298,328.33186 L 385.14298,325.49468 L 386.45245,323.60323 L 387.03443,323.74873 L 389.58062,325.20369 L 390.0171,325.78568 L 390.0171,326.94965 L 392.1268,328.33186 L 391.39932,330.44155 L 391.69031,330.73255 L 391.39932,332.4785 L 390.74458,334.58819 z M 466.83908,334.58819 L 469.60351,332.4785 L 470.33099,332.4785 L 470.33099,331.09629 L 471.05847,331.09629 L 470.33099,330.44155 L 470.33099,331.09629 L 469.60351,331.09629 L 469.60351,332.4785 L 467.56656,333.93346 L 466.83908,334.58819 z M 151.18514,331.82377 L 151.18514,331.09629 L 152.56736,330.44155 L 152.56736,329.71407 L 151.83988,328.98659 L 151.18514,330.44155 L 151.83988,328.33186 L 151.03965,327.53163 L 149.80293,326.94965 L 151.18514,328.33186 L 149.80293,327.60438 L 150.45766,328.33186 L 149.80293,328.33186 L 150.45766,328.98659 L 149.80293,328.98659 L 150.45766,329.71407 L 149.80293,329.71407 L 150.45766,330.44155 L 149.80293,331.09629 L 149.07545,331.09629 L 149.07545,330.44155 L 148.34797,331.09629 L 147.69323,330.44155 L 148.34797,328.33186 L 146.96575,329.71407 L 146.96575,328.98659 L 148.34797,327.60438 L 146.96575,328.33186 L 147.69323,327.60438 L 146.31102,327.60438 L 146.96575,328.33186 L 146.31102,329.71407 L 145.58354,328.98659 L 145.58354,328.33186 L 145.2198,328.6956 L 144.85606,329.71407 L 143.47385,328.98659 L 144.85606,326.94965 L 146.31102,326.94965 L 146.96575,326.22216 L 147.69323,326.22216 L 148.05698,325.85842 L 147.69323,325.49468 L 148.34797,324.83995 L 149.07545,325.49468 L 149.07545,324.83995 L 150.45766,324.83995 L 149.07545,324.11247 L 149.80293,324.11247 L 149.80293,323.45774 L 150.45766,322.73026 L 146.96575,322.73026 L 147.69323,321.34804 L 149.07545,321.34804 L 148.34797,319.96583 L 146.31102,322.00278 L 144.85606,322.73026 L 144.20133,322.00278 L 144.20133,322.73026 L 143.47385,322.73026 L 142.81911,323.45774 L 141.36415,324.11247 L 141.36415,322.73026 L 142.81911,322.00278 L 144.20133,320.62056 L 144.85606,320.62056 L 144.85606,319.96583 L 145.58354,319.96583 L 144.85606,319.23835 L 144.20133,318.51087 L 144.85606,317.85614 L 144.20133,317.12865 L 146.31102,317.12865 L 144.20133,316.47392 L 144.85606,315.74644 L 145.58354,315.74644 L 146.31102,315.01896 L 144.20133,315.01896 L 144.20133,314.36423 L 143.47385,315.01896 L 143.47385,314.36423 L 142.81911,314.36423 L 140.70942,315.01896 L 139.3272,313.63675 L 143.47385,311.52705 L 144.20133,310.87232 L 144.85606,309.49011 L 145.58354,310.14484 L 145.58354,309.49011 L 144.85606,309.49011 L 145.58354,308.76262 L 145.58354,306.65293 L 146.31102,305.9982 L 149.80293,302.50629 L 151.83988,301.77881 L 151.18514,302.50629 L 151.18514,303.16102 L 151.83988,302.50629 L 153.29484,302.50629 L 153.29484,303.16102 L 154.67705,303.16102 L 156.78675,301.77881 L 157.44148,302.50629 L 157.44148,301.77881 L 158.82369,301.77881 L 161.66087,302.50629 L 164.42529,301.77881 L 165.15277,301.05133 L 165.80751,301.77881 L 165.15277,301.77881 L 166.53499,302.50629 L 166.53499,301.77881 L 167.26247,301.77881 L 168.64468,302.50629 L 167.26247,303.16102 L 168.64468,303.16102 L 168.64468,304.54324 L 169.29942,303.16102 L 170.0269,303.8885 L 171.40911,303.8885 L 170.75438,305.9982 L 171.40911,305.9982 L 172.13659,304.54324 L 172.79132,304.54324 L 172.79132,305.27072 L 172.13659,305.27072 L 172.79132,305.9982 L 171.40911,306.65293 L 173.5188,306.65293 L 172.13659,307.38041 L 173.5188,307.38041 L 174.24629,308.03514 L 173.5188,308.76262 L 173.5188,309.49011 L 172.13659,310.14484 L 172.79132,311.52705 L 171.40911,311.52705 L 172.79132,313.63675 L 172.13659,315.01896 L 172.79132,315.01896 L 172.79132,315.74644 L 174.90102,315.74644 L 173.5188,316.47392 L 172.13659,316.47392 L 171.40911,315.74644 L 170.75438,316.47392 L 171.40911,317.85614 L 170.75438,319.96583 L 169.29942,319.96583 L 169.29942,318.51087 L 167.9172,317.85614 L 167.26247,317.85614 L 166.53499,319.23835 L 165.15277,317.85614 L 164.42529,318.51087 L 164.42529,319.96583 L 163.77056,320.62056 L 161.66087,317.12865 L 162.3156,318.51087 L 162.3156,322.00278 L 160.93339,322.00278 L 160.93339,321.34804 L 159.55117,322.00278 L 158.16896,319.96583 L 157.44148,320.62056 L 158.16896,323.45774 L 158.16896,324.11247 L 157.44148,324.11247 L 155.33178,321.34804 L 154.67705,321.34804 L 153.94957,321.34804 L 154.67705,322.00278 L 153.29484,322.00278 L 152.56736,320.62056 L 152.56736,321.34804 L 151.18514,319.23835 L 151.83988,321.34804 L 151.83988,322.00278 L 151.18514,322.00278 L 152.56736,322.73026 L 151.83988,322.73026 L 152.56736,323.45774 L 151.83988,324.11247 L 153.29484,324.11247 L 153.94957,324.11247 L 153.94957,324.83995 L 153.29484,325.49468 L 154.67705,325.49468 L 153.94957,326.22216 L 153.94957,326.94965 L 153.29484,326.22216 L 153.94957,327.60438 L 153.29484,328.33186 L 153.94957,328.33186 L 153.94957,328.98659 L 153.29484,328.98659 L 153.94957,330.44155 L 151.83988,331.82377 L 151.83988,331.09629 L 151.18514,331.82377 z M 483.57114,331.82377 L 484.29862,331.82377 L 483.57114,330.44155 L 482.91641,330.44155 L 483.57114,331.82377 z M 496.88404,331.09629 L 497.53877,331.09629 L 498.26625,329.71407 L 497.53877,329.71407 L 497.53877,328.98659 L 496.15656,328.98659 L 496.88404,331.09629 z M 813.92019,331.09629 L 814.64767,331.09629 L 814.64767,330.44155 L 817.4121,329.71407 L 818.13958,328.98659 L 820.24927,328.98659 L 820.24927,328.33186 L 820.90401,328.33186 L 822.28622,328.98659 L 828.6153,328.33186 L 828.10607,327.82262 L 828.6153,327.60438 L 829.99752,325.49468 L 828.6153,326.94965 L 824.39592,327.60438 L 819.52179,327.60438 L 813.92019,330.44155 L 813.92019,331.09629 z M 743.4273,330.44155 L 744.80951,329.71407 L 744.80951,328.98659 L 744.08203,328.98659 L 743.4273,328.98659 L 743.4273,330.44155 z M 288.75177,328.98659 L 289.47925,328.33186 L 289.47925,327.60438 L 288.75177,328.33186 L 288.75177,327.60438 L 287.36956,328.33186 L 287.36956,327.60438 L 286.64208,327.60438 L 286.64208,326.94965 L 287.36956,326.94965 L 287.36956,326.22216 L 288.02429,326.94965 L 288.75177,326.22216 L 289.47925,325.49468 L 290.13398,324.83995 L 290.86146,326.22216 L 290.86146,326.94965 L 290.13398,326.94965 L 290.13398,326.22216 L 289.47925,326.94965 L 290.13398,328.98659 L 288.75177,328.98659 z M 290.86146,326.94965 L 290.86146,327.60438 L 290.13398,327.60438 L 290.86146,326.94965 z M 612.77174,328.98659 L 612.77174,327.60438 L 611.38952,326.94965 L 611.38952,328.33186 L 612.77174,328.98659 z M 731.49661,327.60438 L 732.95157,325.49468 L 732.22409,325.49468 L 730.84188,326.22216 L 731.49661,327.60438 z M 521.98213,326.22216 L 522.70961,326.22216 L 522.70961,325.49468 L 521.98213,324.83995 L 521.98213,326.22216 z M 456.36336,325.49468 L 457.09084,324.83995 L 454.25366,323.45774 L 456.36336,325.49468 z M 751.79333,325.49468 L 752.44806,324.83995 L 751.79333,322.00278 L 751.06585,322.73026 L 750.41111,324.11247 L 751.79333,325.49468 z M 589.78334,324.83995 L 589.78334,323.45774 L 591.16556,321.34804 L 589.78334,319.23835 L 590.43808,318.51087 L 589.78334,317.85614 L 589.05586,316.47392 L 587.67365,315.74644 L 587.67365,314.36423 L 586.29144,313.63675 L 584.83647,310.87232 L 584.18174,310.14484 L 582.07205,307.38041 L 580.68983,303.16102 L 579.96235,303.16102 L 579.96235,301.77881 L 579.30762,302.50629 L 579.96235,301.05133 L 579.52586,300.61484 L 579.96235,299.66911 L 579.30762,299.66911 L 581.34457,297.55942 L 581.34457,295.52247 L 580.68983,295.52247 L 580.68983,294.06751 L 582.07205,293.41278 L 582.07205,292.6853 L 582.79953,292.6853 L 583.45426,292.03057 L 583.45426,290.5756 L 584.83647,289.92087 L 585.56395,290.5756 L 586.94617,289.19339 L 586.94617,288.53866 L 588.32838,288.53866 L 589.78334,289.92087 L 590.43808,289.19339 L 589.05586,287.81118 L 588.32838,288.53866 L 586.94617,287.81118 L 585.56395,289.19339 L 584.83647,288.53866 L 582.07205,288.53866 L 580.68983,287.81118 L 579.96235,287.81118 L 579.96235,289.19339 L 579.30762,288.53866 L 579.30762,289.19339 L 578.58014,290.5756 L 578.58014,291.30308 L 577.85266,291.30308 L 577.19792,292.03057 L 577.85266,292.6853 L 577.85266,294.06751 L 577.19792,293.41278 L 576.47044,295.52247 L 576.47044,298.2869 L 575.08823,299.66911 L 575.81571,301.77881 L 576.47044,301.77881 L 576.47044,302.50629 L 577.85266,303.16102 L 579.30762,306.65293 L 579.96235,308.03514 L 581.34457,308.76262 L 582.07205,308.76262 L 582.79953,310.87232 L 584.83647,312.25453 L 585.56395,315.01896 L 586.29144,317.12865 L 586.94617,317.85614 L 589.05586,318.51087 L 587.67365,319.23835 L 588.32838,319.23835 L 587.67365,319.96583 L 588.32838,319.96583 L 587.67365,321.34804 L 588.32838,322.00278 L 589.05586,322.00278 L 589.05586,322.73026 L 587.67365,322.73026 L 588.32838,323.45774 L 587.67365,324.11247 L 588.32838,324.11247 L 589.78334,324.83995 z M 516.45327,324.11247 L 517.10801,324.11247 L 517.83549,323.45774 L 516.45327,323.45774 L 516.45327,324.11247 z M 280.38574,323.45774 L 281.04047,322.00278 L 281.76795,322.00278 L 281.76795,322.73026 L 280.38574,323.45774 z M 282.49544,323.45774 L 282.49544,322.00278 L 283.87765,322.00278 L 283.87765,323.45774 L 282.49544,323.45774 z M 521.98213,323.45774 L 524.09182,322.73026 L 523.43709,322.00278 L 520.59992,322.00278 L 521.98213,323.45774 z M 747.57394,322.00278 L 749.68363,321.34804 L 749.68363,319.96583 L 751.79333,317.85614 L 751.79333,317.12865 L 751.06585,317.12865 L 749.68363,319.23835 L 746.91921,321.34804 L 747.57394,322.00278 z M 306.21131,320.62056 L 306.21131,319.23835 L 306.93879,319.23835 L 306.21131,318.51087 L 306.93879,317.85614 L 306.21131,317.85614 L 305.48383,317.12865 L 306.93879,316.47392 L 305.48383,316.47392 L 305.48383,315.74644 L 306.21131,315.74644 L 305.48383,315.01896 L 304.8291,315.74644 L 304.8291,315.01896 L 304.8291,314.36423 L 304.10162,315.01896 L 303.44688,315.74644 L 302.7194,315.74644 L 304.8291,318.51087 L 305.48383,318.51087 L 304.8291,319.23835 L 305.48383,319.96583 L 306.21131,320.62056 z M 304.10162,315.01896 L 304.8291,315.01896 L 304.10162,315.74644 L 304.10162,315.01896 z M 829.99752,320.62056 L 828.6153,319.23835 L 827.23309,319.23835 L 827.23309,316.47392 L 823.74118,317.12865 L 823.74118,315.01896 L 822.28622,313.63675 L 821.63149,312.98201 L 820.90401,312.98201 L 820.24927,311.52705 L 817.4121,310.87232 L 813.92019,311.52705 L 818.79431,311.52705 L 819.52179,312.98201 L 822.28622,313.63675 L 823.74118,317.12865 L 825.77813,317.12865 L 826.50561,319.23835 L 829.99752,320.62056 z M 335.52879,319.96583 L 335.74703,319.74759 L 336.25627,319.96583 L 336.25627,319.23835 L 335.74703,319.74759 L 335.52879,319.60209 L 335.52879,319.23835 L 334.87406,319.23835 L 335.52879,319.60209 L 335.52879,319.96583 z M 554.13678,318.51087 L 554.86426,317.85614 L 553.4093,317.85614 L 554.13678,316.47392 L 553.4093,316.47392 L 553.4093,317.85614 L 554.13678,318.51087 z M 654.52914,317.27415 L 654.0199,315.74644 L 653.29242,314.36423 L 653.07418,314.00049 C 653.57447,315.03391 654.04053,316.16102 654.52914,317.27415 z M 277.54857,316.47392 L 279.00353,315.74644 L 278.27605,315.74644 L 277.54857,315.01896 L 277.54857,316.47392 z M 315.30482,316.47392 L 315.30482,315.01896 L 314.57734,313.63675 L 315.30482,316.47392 z M 321.56116,316.47392 L 322.28864,315.01896 L 321.56116,315.01896 L 321.56116,316.47392 z M 755.93997,316.47392 L 758.04966,315.01896 L 756.66745,315.01896 L 755.93997,315.01896 L 755.93997,316.47392 z M 271.29223,315.74644 L 269.18254,312.98201 L 270.56475,312.98201 L 271.29223,314.36423 L 271.29223,315.74644 z M 328.54497,315.74644 L 328.54497,312.98201 L 327.89024,315.01896 L 328.54497,315.74644 z M 322.94337,313.63675 L 323.67085,310.87232 L 322.94337,310.14484 L 323.67085,310.14484 L 323.67085,309.49011 L 322.28864,309.49011 L 322.28864,308.03514 L 320.90642,308.76262 L 321.56116,308.03514 L 320.90642,308.03514 L 319.45146,308.76262 L 320.17894,308.76262 L 318.79673,309.49011 L 320.39719,309.99934 L 320.17894,310.14484 L 320.90642,310.14484 L 320.39719,309.99934 L 320.90642,309.49011 L 319.45146,309.49011 L 320.17894,308.76262 L 320.90642,308.76262 L 322.28864,309.49011 L 322.28864,310.14484 L 322.94337,310.14484 L 322.28864,310.87232 L 322.94337,310.87232 L 322.28864,311.52705 L 321.56116,311.52705 L 322.94337,312.25453 L 321.56116,312.98201 L 322.28864,312.98201 L 322.94337,313.63675 z M 325.78055,313.63675 L 326.43528,313.63675 L 327.89024,311.52705 L 327.16276,310.87232 L 325.78055,312.25453 L 325.78055,313.63675 z M 268.5278,312.98201 L 267.80032,312.25453 L 268.5278,311.52705 L 267.80032,311.52705 L 267.80032,310.87232 L 266.41811,311.52705 L 266.41811,310.87232 L 265.69063,310.14484 L 266.41811,309.49011 L 267.07284,310.14484 L 268.5278,310.87232 L 268.5278,310.14484 L 267.07284,310.14484 L 267.80032,309.49011 L 269.18254,310.14484 L 268.5278,312.98201 z M 505.97755,312.98201 L 506.63228,312.25453 L 506.63228,310.87232 L 505.97755,311.52705 L 505.97755,312.69102 L 505.97755,312.98201 z M 748.95615,312.98201 L 750.41111,311.52705 L 748.95615,311.52705 L 748.95615,310.14484 L 747.57394,308.76262 L 746.91921,308.76262 L 746.19172,309.49011 L 748.95615,312.98201 z M 488.51801,312.25453 L 487.79053,310.14484 L 487.06305,310.14484 L 486.40832,310.87232 L 487.79053,310.87232 L 488.51801,312.25453 z M 279.65826,310.14484 L 281.76795,309.49011 L 282.49544,308.03514 L 281.76795,307.38041 L 283.15017,307.38041 L 283.6594,305.8527 L 284.02314,305.27072 L 284.53238,305.27072 L 284.53238,304.54324 L 285.25986,304.54324 L 285.25986,303.8885 L 284.53238,304.54324 L 284.02314,305.27072 L 283.87765,305.27072 L 283.6594,305.8527 L 283.15017,306.65293 L 279.65826,308.03514 L 279.00353,308.03514 L 278.27605,308.76262 L 280.38574,308.03514 L 282.49544,308.03514 L 279.65826,310.14484 z M 304.10162,310.14484 L 304.8291,309.49011 L 305.48383,309.49011 L 305.48383,308.76262 L 306.21131,308.76262 L 306.21131,309.49011 L 306.93879,308.76262 L 306.93879,309.49011 L 307.59352,308.76262 L 306.93879,308.76262 L 306.93879,307.38041 L 306.21131,307.38041 L 304.8291,308.03514 L 305.48383,308.76262 L 304.8291,309.49011 L 304.10162,309.49011 L 303.44688,308.76262 L 304.10162,308.03514 L 303.44688,308.03514 L 301.99192,308.76262 L 301.33719,309.49011 L 302.7194,309.49011 L 303.44688,308.76262 L 304.10162,310.14484 z M 651.03723,309.6356 L 650.52799,308.03514 L 649.80051,306.65293 C 650.22699,307.8051 650.63294,308.69737 651.03723,309.6356 z M 263.58093,307.38041 L 262.9262,305.27072 L 263.58093,305.9982 L 263.58093,305.27072 L 264.30841,306.65293 L 265.03589,306.65293 L 265.03589,307.38041 L 263.58093,307.38041 z M 324.39833,307.38041 L 325.05306,307.38041 L 326.43528,305.9982 L 325.05306,306.65293 L 324.39833,307.38041 z M 610.00731,306.65293 L 610.00731,304.54324 L 607.24288,300.39659 L 606.5154,300.39659 L 606.5154,302.50629 L 608.6251,304.54324 L 610.00731,306.65293 z M 269.91002,305.9982 L 268.5278,305.27072 L 269.18254,304.54324 L 269.18254,305.27072 L 269.91002,305.27072 L 269.91002,305.9982 z M 280.38574,303.8885 L 281.76795,303.8885 L 283.15017,303.16102 L 280.38574,303.8885 z M 322.28864,303.8885 L 322.28864,302.50629 L 323.67085,302.50629 L 322.94337,301.77881 L 324.39833,300.39659 L 322.28864,300.39659 L 322.94337,301.05133 L 321.56116,302.50629 L 320.17894,302.50629 L 321.56116,303.16102 L 320.90642,303.16102 L 322.28864,303.8885 z M 578.58014,303.8885 L 579.30762,303.16102 L 579.30762,303.8885 L 578.58014,303.8885 z M 766.41569,303.8885 L 769.25287,303.8885 L 769.25287,302.50629 L 767.87065,303.16102 L 766.41569,303.16102 L 766.41569,303.8885 z M 848.83927,303.8885 L 850.94897,301.77881 L 850.94897,303.16102 L 848.83927,303.8885 z M 274.05666,303.16102 L 275.51162,302.50629 L 275.07513,302.50629 L 277.25757,301.05133 L 279.65826,300.39659 L 283.15017,297.55942 L 281.76795,298.2869 L 279.65826,300.39659 L 278.27605,300.39659 L 277.25757,301.05133 L 274.78414,301.77881 L 274.78414,302.50629 L 275.07513,302.50629 L 274.05666,303.16102 z M 619.75555,303.16102 L 619.75555,301.05133 L 621.21052,302.50629 L 620.48304,299.01438 L 621.21052,299.01438 L 621.86525,295.52247 L 619.75555,292.03057 L 616.99113,289.92087 L 616.26365,288.53866 L 615.60891,288.53866 L 614.88143,289.19339 L 615.60891,290.5756 L 615.60891,292.6853 L 619.10082,301.05133 L 619.75555,303.16102 z M 753.17554,301.77881 L 753.90302,301.05133 L 751.06585,301.05133 L 753.17554,301.77881 z M 274.05666,301.05133 L 274.78414,301.05133 L 272.67444,300.39659 L 273.40192,299.66911 L 272.67444,299.01438 L 272.01971,299.66911 L 272.67444,299.66911 L 272.01971,300.39659 L 274.05666,301.05133 z M 741.97234,301.05133 L 742.69982,299.66911 L 741.3176,297.55942 L 740.59012,298.2869 L 741.97234,301.05133 z M 322.94337,299.66911 L 323.67085,298.2869 L 321.56116,298.2869 L 321.56116,299.01438 L 322.94337,299.01438 L 322.94337,299.66911 z M 737.8257,299.66911 L 739.20791,299.66911 L 739.93539,299.66911 L 739.93539,298.2869 L 738.48043,298.2869 L 739.20791,299.66911 L 738.48043,299.01438 L 737.8257,299.66911 z M 307.59352,299.01438 L 308.321,298.2869 L 308.321,297.55942 L 308.321,296.17721 L 307.59352,296.90469 L 307.59352,298.2869 L 308.321,297.55942 L 307.59352,299.01438 z M 309.70322,298.2869 L 309.70322,297.55942 L 308.97574,297.55942 L 309.70322,298.2869 z M 320.17894,298.2869 L 321.56116,295.52247 L 319.45146,296.17721 L 318.79673,296.90469 L 320.17894,298.2869 z M 427.70061,298.2869 L 429.81031,297.55942 L 431.33802,296.4682 L 431.92,296.17721 L 431.84725,296.10446 L 432.64748,295.52247 L 431.19252,293.41278 L 431.92,293.41278 L 431.92,292.03057 L 432.64748,292.6853 L 433.30221,291.30308 L 434.02969,292.6853 L 434.68443,292.03057 L 434.02969,292.03057 L 434.68443,290.5756 L 434.02969,290.5756 L 434.02969,289.19339 L 435.41191,289.19339 L 436.79412,289.19339 L 436.79412,288.53866 L 436.79412,287.81118 L 436.13939,287.81118 L 437.5216,287.0837 L 438.17634,287.81118 L 439.6313,287.81118 L 440.28603,287.0837 L 441.66824,285.70148 L 439.6313,286.42896 L 439.6313,287.0837 L 438.17634,287.0837 L 438.17634,286.42896 L 436.79412,287.0837 L 436.13939,287.81118 L 436.79412,288.53866 L 435.41191,288.53866 L 435.41191,289.19339 L 434.68443,287.81118 L 433.30221,289.19339 L 431.92,286.42896 L 433.30221,289.92087 L 432.64748,289.92087 L 433.30221,290.5756 L 432.64748,291.30308 L 431.92,292.03057 L 431.19252,293.41278 L 431.19252,294.79499 L 430.53779,294.79499 L 431.84725,296.10446 L 431.33802,296.4682 L 427.70061,298.2869 z M 326.43528,297.55942 L 327.89024,297.55942 L 327.89024,296.17721 L 326.43528,295.52247 L 326.43528,296.17721 L 327.16276,296.90469 L 326.43528,296.90469 L 326.43528,297.55942 z M 297.84528,296.90469 L 298.50001,296.17721 L 299.22749,296.90469 L 299.22749,295.52247 L 298.50001,296.17721 L 298.50001,294.79499 L 297.84528,296.90469 z M 329.27245,296.90469 L 330.65467,296.90469 L 328.54497,295.52247 L 329.27245,296.90469 z M 644.92639,296.90469 C 644.71979,296.07168 644.40724,295.25446 644.05341,294.504 C 644.47801,295.45499 644.75447,296.34545 644.92639,296.90469 z M 276.89383,296.17721 L 280.38574,295.52247 L 282.49544,294.79499 L 281.76795,294.06751 L 279.00353,295.52247 L 277.54857,295.52247 L 276.89383,296.17721 z M 310.4307,296.17721 L 311.08543,296.17721 L 310.4307,295.52247 L 310.4307,296.17721 z M 312.46765,296.17721 L 313.92261,296.17721 L 313.19513,294.79499 L 312.46765,294.06751 L 311.08543,293.41278 L 310.4307,294.06751 L 311.08543,294.79499 L 311.08543,294.06751 L 313.19513,295.52247 L 312.46765,296.17721 z M 355.8255,296.17721 L 360.69963,296.17721 L 361.35436,295.52247 L 360.91787,295.01324 L 361.06337,294.43125 L 361.35436,294.06751 L 361.35436,292.6853 L 361.06337,294.43125 L 360.69963,294.79499 L 360.91787,295.01324 L 360.69963,296.17721 L 357.86245,295.52247 L 355.8255,296.17721 z M 323.67085,295.52247 L 324.39833,295.52247 L 325.78055,294.79499 L 325.78055,293.41278 L 327.16276,293.41278 L 327.89024,292.6853 L 327.16276,292.6853 L 325.05306,293.41278 L 324.39833,294.06751 L 322.94337,294.06751 L 322.28864,294.79499 L 323.67085,295.52247 z M 315.95955,294.79499 L 316.68703,294.79499 L 315.95955,294.06751 L 317.41452,294.06751 L 315.95955,293.63102 L 315.95955,293.41278 L 315.66856,293.55827 L 315.30482,293.41278 L 314.57734,294.06751 L 315.66856,293.55827 L 315.95955,293.63102 L 315.95955,294.06751 L 315.95955,294.79499 z M 338.36596,294.79499 L 337.63848,293.41278 L 338.36596,292.6853 L 339.0207,293.41278 L 338.36596,294.79499 z M 737.09821,294.79499 L 738.48043,294.79499 L 738.48043,294.06751 L 737.8257,293.41278 L 737.09821,294.79499 z M 306.93879,294.06751 L 308.321,293.41278 L 308.321,292.6853 L 307.59352,293.41278 L 306.93879,292.6853 L 306.93879,294.06751 z M 736.44348,294.06751 L 735.716,292.03057 L 734.33379,292.03057 L 734.33379,290.5756 L 732.95157,289.92087 L 733.60631,292.6853 L 736.44348,294.06751 z M 530.42091,293.41278 L 530.42091,292.6853 L 529.69343,291.30308 L 529.69343,292.6853 L 530.42091,293.41278 z M 277.54857,292.6853 L 279.65826,292.03057 L 279.65826,291.30308 L 279.00353,292.03057 L 278.27605,291.30308 L 277.54857,292.6853 z M 274.05666,292.03057 L 278.27605,289.19339 L 277.54857,289.19339 L 277.54857,287.81118 L 279.65826,285.70148 L 278.27605,285.70148 L 278.27605,286.42896 L 277.54857,287.81118 L 276.89383,287.0837 L 276.89383,288.53866 L 276.16635,289.19339 L 276.16635,288.53866 L 275.80261,288.82965 L 275.51162,288.53866 L 275.51162,289.19339 L 275.80261,288.82965 L 276.16635,289.19339 L 277.54857,289.19339 L 274.05666,291.30308 L 274.05666,292.03057 z M 361.35436,292.03057 L 363.46405,291.30308 L 366.15573,288.02942 L 367.68344,288.53866 L 366.30123,287.81118 L 366.15573,288.02942 L 365.57375,287.81118 L 363.46405,291.30308 L 362.08184,291.30308 L 361.35436,292.03057 z M 528.96594,292.03057 L 529.69343,290.5756 L 529.54793,290.43011 L 529.69343,289.92087 L 531.07564,289.19339 L 531.07564,290.5756 L 531.80312,289.92087 L 531.07564,289.19339 L 531.80312,287.81118 L 529.69343,287.0837 L 529.69343,287.81118 L 528.31121,289.19339 L 529.54793,290.43011 L 528.96594,292.03057 z M 265.03589,291.30308 L 263.58093,289.92087 L 263.58093,290.5756 L 262.9262,289.92087 L 263.58093,289.19339 L 262.9262,289.19339 L 262.9262,289.92087 L 262.9262,290.50286 L 265.03589,291.30308 z M 695.9228,291.30308 L 695.19532,288.53866 L 695.19532,290.5756 L 695.9228,291.30308 z M 706.39852,291.30308 L 707.05326,291.30308 L 706.68952,291.01209 L 707.78074,289.92087 L 706.39852,289.92087 L 706.39852,288.53866 L 705.01631,289.92087 L 706.68952,291.01209 L 706.39852,291.30308 z M 266.41811,289.19339 L 267.07284,289.19339 L 267.80032,288.53866 L 266.41811,289.19339 z M 321.56116,289.19339 L 322.28864,289.19339 L 323.67085,289.19339 L 324.39833,289.19339 L 326.43528,287.81118 L 323.67085,289.19339 L 322.94337,288.53866 L 322.28864,288.17492 L 322.28864,287.81118 L 322.28864,287.0837 L 321.56116,286.42896 L 322.28864,287.81118 L 321.56116,287.81118 L 320.90642,287.81118 L 320.17894,288.53866 L 321.56116,287.81118 L 322.28864,288.17492 L 322.28864,288.53866 L 322.94337,288.53866 L 321.56116,289.19339 z M 440.28603,289.19339 L 440.28603,288.53866 L 438.90382,288.53866 L 440.28603,289.19339 z M 640.99799,288.61141 C 640.89449,288.34097 640.79221,288.09269 640.707,287.81118 L 639.32479,285.70148 C 639.74033,286.30763 640.34787,287.41601 640.99799,288.61141 z M 315.95955,287.81118 L 316.68703,287.0837 L 317.41452,287.81118 L 316.68703,286.42896 L 316.68703,285.04675 L 315.95955,285.04675 L 315.95955,287.81118 z M 263.58093,287.0837 L 264.30841,286.42896 L 265.03589,287.0837 L 264.30841,285.70148 L 263.58093,287.0837 z M 498.99373,285.70148 L 500.37595,284.31927 L 500.37595,281.55484 L 498.99373,285.70148 z M 326.43528,285.04675 L 327.89024,285.04675 L 327.89024,284.31927 L 325.05306,283.59179 L 325.05306,284.31927 L 327.16276,284.31927 L 326.43528,285.04675 z M 272.01971,283.59179 L 275.51162,280.82736 L 274.78414,280.82736 L 272.01971,283.59179 z M 301.33719,283.59179 L 301.33719,282.93705 L 301.99192,282.20957 L 301.99192,283.59179 L 301.33719,283.59179 z M 321.56116,283.59179 L 321.56116,282.93705 L 322.28864,282.93705 L 322.28864,282.20957 L 321.56116,282.20957 L 320.90642,282.93705 L 321.56116,283.59179 z M 337.63848,282.93705 L 337.63848,282.20957 L 338.36596,282.93705 L 338.36596,282.20957 L 339.0207,282.20957 L 340.40291,280.09988 L 341.85787,280.82736 L 342.5126,280.09988 L 341.13039,280.09988 L 341.13039,279.44515 L 339.74818,280.09988 L 341.13039,278.06293 L 341.85787,275.22576 L 341.13039,277.33545 L 339.74818,279.44515 L 338.36596,279.44515 L 338.36596,280.09988 L 337.63848,281.55484 L 336.911,280.09988 L 336.911,282.20957 L 337.63848,282.93705 z M 435.41191,282.20957 L 436.79412,281.55484 L 437.5216,280.82736 L 438.17634,280.82736 L 440.28603,278.71767 L 438.90382,278.71767 L 438.17634,278.06293 L 438.90382,275.95324 L 436.79412,273.11606 L 436.79412,271.73385 L 436.13939,272.46133 L 436.79412,273.84354 L 436.79412,274.57102 L 438.17634,275.22576 L 438.17634,275.95324 L 437.5216,277.33545 L 438.90382,279.44515 L 438.17634,279.44515 L 438.17634,280.82736 L 436.79412,280.09988 L 436.79412,281.55484 L 435.41191,281.55484 L 435.41191,282.20957 z M 688.93898,282.20957 L 689.59372,282.20957 L 690.3212,281.55484 L 688.93898,281.55484 L 688.93898,282.20957 z M 637.72433,281.91858 C 637.2543,281.07117 636.83329,280.19251 636.34212,279.3724 L 636.56036,280.09988 L 637.72433,281.91858 z M 319.45146,281.55484 L 320.17894,280.82736 L 320.90642,280.82736 L 319.45146,279.44515 L 320.90642,279.44515 L 320.90642,278.71767 L 319.45146,279.44515 L 319.45146,280.09988 L 318.79673,280.82736 L 319.45146,281.55484 z M 332.76436,281.55484 L 333.41909,281.55484 L 334.87406,280.82736 L 334.87406,280.09988 L 332.76436,281.55484 z M 309.70322,280.82736 L 310.4307,280.09988 L 311.08543,280.82736 L 311.08543,280.09988 L 311.81291,279.44515 L 312.46765,280.09988 L 313.19513,280.09988 L 313.92261,279.44515 L 313.92261,278.71767 L 315.30482,278.06293 L 313.19513,278.06293 L 313.92261,278.71767 L 313.41337,278.93591 L 313.19513,278.71767 L 313.19513,279.08141 L 312.46765,279.44515 L 311.81291,278.06293 L 311.81291,277.33545 L 311.08543,278.06293 L 310.4307,278.06293 L 309.70322,279.44515 L 309.70322,280.82736 z M 313.19513,279.08141 L 313.41337,278.93591 L 313.92261,279.44515 L 313.19513,279.44515 L 313.19513,279.08141 z M 616.26365,280.09988 L 616.99113,280.09988 L 616.99113,279.44515 L 615.60891,279.44515 L 616.26365,280.09988 z M 262.19872,279.44515 L 262.9262,279.44515 L 263.58093,277.33545 L 265.69063,275.22576 L 267.80032,274.57102 L 268.5278,274.57102 L 269.18254,272.46133 L 269.83727,271.07912 L 269.18254,271.07912 L 268.5278,271.07912 L 268.5278,271.73385 L 269.18254,271.07912 L 269.18254,271.73385 L 267.80032,273.84354 L 265.69063,275.22576 L 262.9262,277.33545 L 261.54399,277.33545 L 262.19872,278.71767 L 262.19872,279.44515 z M 262.19872,278.71767 L 262.9262,277.33545 L 263.58093,277.33545 L 262.9262,278.06293 L 262.19872,278.71767 z M 271.29223,279.44515 L 273.40192,277.33545 L 274.05666,275.95324 L 271.29223,278.71767 L 271.29223,279.44515 z M 318.06925,279.44515 L 318.79673,279.08141 L 318.79673,279.44515 L 319.45146,278.71767 L 318.79673,279.08141 L 318.79673,278.71767 L 318.06925,278.71767 L 315.95955,278.06293 L 315.95955,277.33545 L 315.30482,278.71767 L 317.41452,278.71767 L 318.06925,279.44515 z M 324.39833,278.71767 L 326.43528,278.06293 L 325.78055,277.33545 L 326.43528,276.60797 L 325.05306,277.33545 L 325.05306,278.06293 L 324.39833,278.71767 z M 335.52879,278.71767 L 336.25627,278.06293 L 336.911,278.71767 L 336.911,278.06293 L 338.36596,276.60797 L 335.52879,276.60797 L 334.87406,277.33545 L 334.14657,278.06293 L 335.52879,278.71767 z M 635.03265,277.2627 C 634.54572,276.37751 634.09356,275.51812 633.72319,274.57102 L 634.45067,276.60797 L 635.03265,277.2627 z M 323.67085,276.60797 L 325.05306,275.95324 L 325.05306,275.22576 L 324.39833,275.95324 L 323.67085,276.60797 z M 737.09821,276.60797 L 737.8257,276.60797 L 737.8257,274.57102 L 735.716,275.22576 L 737.09821,276.60797 z M 506.63228,275.95324 L 508.0145,275.22576 L 508.0145,274.57102 L 507.35976,274.57102 L 506.63228,274.57102 L 506.63228,275.95324 z M 340.40291,275.22576 L 341.13039,275.22576 L 343.89482,274.57102 L 344.6223,273.84354 L 344.6223,274.57102 L 346.73199,273.11606 L 346.73199,270.35164 L 348.11421,269.62416 L 348.11421,268.96942 L 350.87863,266.13225 L 351.60612,266.13225 L 351.60612,264.75003 L 352.3336,264.75003 L 350.87863,261.25813 L 350.2239,261.25813 L 348.84169,261.98561 L 349.49642,261.98561 L 349.49642,262.64034 L 348.11421,264.75003 L 344.6223,265.47751 L 342.5126,266.13225 L 342.5126,266.85973 L 343.89482,266.13225 L 343.24009,267.58721 L 341.85787,268.96942 L 340.91215,270.27889 L 340.18467,270.86087 L 339.74818,270.35164 L 339.0207,271.73385 L 340.18467,270.86087 L 340.40291,271.07912 L 340.91215,270.27889 L 341.85787,269.62416 L 341.85787,268.96942 L 343.24009,268.24194 L 341.13039,271.73385 L 343.24009,270.35164 L 341.13039,272.46133 L 343.24009,271.07912 L 343.24009,270.35164 L 344.6223,268.96942 L 345.34978,269.62416 L 343.89482,271.07912 L 345.34978,270.35164 L 346.00451,271.73385 L 343.89482,273.84354 L 343.89482,273.11606 L 342.5126,273.84354 L 343.24009,272.46133 L 341.85787,273.84354 L 341.85787,273.11606 L 340.40291,275.22576 z M 350.2239,275.22576 L 351.60612,273.84354 L 350.87863,272.46133 L 350.2239,274.57102 L 350.2239,275.22576 z M 705.01631,275.22576 L 705.67104,273.84354 L 703.56135,273.84354 L 702.17913,273.11606 L 700.06944,269.62416 L 701.5244,273.11606 L 704.28883,274.57102 L 705.01631,275.22576 z M 183.99453,274.57102 L 183.26705,273.11606 L 184.72201,271.07912 L 184.43102,272.67957 L 184.72201,271.73385 L 185.37674,272.46133 L 185.37674,273.84354 L 184.72201,273.11606 L 184.72201,274.57102 L 184.14002,273.98904 L 183.99453,274.57102 z M 183.26705,273.11606 L 182.61232,273.11606 L 182.61232,272.46133 L 183.26705,271.73385 L 183.26705,273.11606 z M 318.79673,274.57102 L 321.56116,273.11606 L 322.94337,273.11606 L 323.67085,271.73385 L 325.05306,270.35164 L 325.78055,269.62416 L 325.05306,269.62416 L 324.39833,268.96942 L 325.05306,270.35164 L 324.39833,270.35164 L 323.67085,271.07912 L 322.94337,271.73385 L 322.94337,272.46133 L 322.28864,271.73385 L 321.56116,272.46133 L 320.90642,271.73385 L 318.79673,273.84354 L 319.45146,273.84354 L 318.79673,274.57102 z M 355.8255,274.57102 L 356.48024,273.84354 L 357.20772,274.57102 L 356.48024,273.11606 L 355.8255,273.84354 L 355.8255,274.57102 z M 734.33379,274.57102 L 737.09821,273.84354 L 736.44348,273.11606 L 736.44348,272.46133 L 735.716,272.46133 L 735.716,273.11606 L 734.33379,274.57102 z M 269.18254,273.84354 L 269.91002,273.84354 L 271.29223,273.11606 L 270.56475,271.73385 L 270.56475,273.11606 L 269.18254,273.84354 z M 263.58093,273.11606 L 267.07284,270.35164 L 266.41811,270.35164 L 265.03589,271.73385 L 263.58093,273.11606 z M 307.59352,273.11606 L 308.321,271.73385 L 307.59352,271.73385 L 307.59352,273.11606 z M 311.08543,273.11606 L 312.46765,273.11606 L 313.19513,271.73385 L 313.92261,269.62416 L 313.19513,269.62416 L 314.57734,268.24194 L 315.30482,268.24194 L 314.57734,268.96942 L 315.95955,268.24194 L 315.30482,269.62416 L 315.95955,269.62416 L 315.95955,268.96942 L 317.41452,269.62416 L 315.95955,271.07912 L 315.30482,272.46133 L 317.41452,270.35164 L 317.41452,269.62416 L 316.68703,268.96942 L 318.06925,266.13225 L 318.65123,265.914 L 318.79673,266.13225 L 319.30597,265.62301 L 321.56116,264.75003 L 320.17894,264.75003 L 321.56116,263.36782 L 320.90642,263.36782 L 320.90642,262.64034 L 321.9249,263.00408 L 320.90642,261.98561 L 321.34291,261.33087 L 320.17894,261.76736 L 320.17894,261.25813 L 319.45146,261.98561 L 317.41452,261.98561 L 318.06925,262.64034 L 317.56001,263.36782 L 317.41452,263.36782 L 317.48726,263.51332 L 316.68703,264.75003 L 316.68703,264.0953 L 315.95955,264.0953 L 315.30482,264.75003 L 315.30482,264.0953 L 314.57734,264.0953 L 314.57734,265.47751 L 315.30482,264.75003 L 316.68703,264.0953 L 315.30482,265.47751 L 315.95955,265.47751 L 315.30482,268.24194 L 315.30482,267.58721 L 313.19513,268.96942 L 312.46765,272.46133 L 311.81291,272.46133 L 311.08543,273.11606 z M 315.95955,265.47751 L 316.68703,264.75003 L 317.41452,264.0953 L 318.06925,264.75003 L 317.41452,266.13225 L 316.68703,266.85973 L 315.95955,266.13225 L 316.68703,266.13225 L 315.95955,265.47751 z M 318.06925,264.75003 L 317.48726,263.51332 L 317.56001,263.36782 L 320.17894,263.36782 L 320.17894,264.75003 L 319.45146,264.75003 L 318.79673,265.47751 L 319.45146,265.47751 L 319.30597,265.62301 L 318.65123,265.914 L 318.06925,264.75003 z M 319.45146,261.98561 L 320.17894,261.76736 L 320.17894,261.98561 L 319.45146,261.98561 z M 316.68703,268.96942 L 315.95955,268.96942 L 315.95955,268.24194 L 315.95955,267.58721 L 317.41452,266.85973 L 316.68703,267.58721 L 316.68703,268.96942 z M 327.16276,272.46133 L 327.16276,271.07912 L 326.43528,270.35164 L 327.16276,269.62416 L 326.43528,269.62416 L 326.43528,270.35164 L 325.78055,271.07912 L 327.16276,272.46133 z M 259.43429,271.73385 L 260.08903,271.73385 L 260.81651,270.35164 L 259.43429,271.73385 z M 310.4307,271.07912 L 311.08543,270.35164 L 311.08543,269.62416 L 311.08543,267.58721 L 312.46765,266.13225 L 311.81291,268.24194 L 312.46765,267.58721 L 313.92261,266.85973 L 313.19513,266.85973 L 313.19513,266.13225 L 313.92261,265.47751 L 313.19513,265.47751 L 313.92261,264.75003 L 312.46765,265.47751 L 311.08543,267.58721 L 309.70322,269.62416 L 310.4307,268.96942 L 311.08543,269.62416 L 309.70322,270.35164 L 310.4307,271.07912 z M 321.56116,271.07912 L 323.67085,268.96942 L 322.94337,268.24194 L 321.56116,269.62416 L 322.94337,268.96942 L 321.56116,271.07912 z M 269.91002,270.93362 L 270.56475,269.62416 L 269.91002,270.35164 L 269.91002,270.93362 z M 360.69963,270.35164 L 361.35436,268.24194 L 360.69963,267.58721 L 359.97214,269.62416 L 360.69963,270.35164 z M 260.81651,269.62416 L 261.03475,269.40591 L 261.54399,269.62416 L 261.54399,268.96942 L 261.03475,269.40591 L 260.81651,269.33316 L 260.81651,268.24194 L 261.54399,266.85973 L 260.08903,268.96942 L 260.81651,269.33316 L 260.81651,269.62416 z M 304.8291,269.62416 L 306.21131,268.24194 L 306.21131,266.85973 L 306.93879,266.85973 L 306.21131,266.13225 L 304.8291,269.62416 z M 182.61232,268.96942 L 182.61232,267.58721 L 183.26705,266.85973 L 183.26705,268.24194 L 182.61232,268.96942 z M 307.59352,268.96942 L 307.59352,268.24194 L 308.97574,268.24194 L 309.70322,267.58721 L 308.97574,267.58721 L 311.08543,265.47751 L 309.70322,266.13225 L 309.70322,264.75003 L 308.97574,264.75003 L 308.97574,264.0953 L 310.4307,262.64034 L 310.86719,262.64034 L 310.4307,264.0953 L 311.08543,262.64034 L 310.86719,262.64034 L 311.08543,261.98561 L 310.4307,261.98561 L 309.70322,262.64034 L 310.4307,259.87591 L 309.70322,261.25813 L 309.70322,259.87591 L 310.4307,259.14843 L 309.70322,259.14843 L 309.70322,258.4937 L 309.70322,257.11148 L 309.70322,256.384 L 310.4307,255.65652 L 309.70322,255.65652 L 309.70322,255.00179 L 310.4307,254.27431 L 309.70322,254.27431 L 309.70322,253.61958 L 308.97574,252.8921 L 308.321,254.27431 L 308.321,255.00179 L 308.97574,255.00179 L 308.97574,255.65652 L 307.59352,257.11148 L 308.321,257.11148 L 308.97574,257.76622 L 307.59352,257.76622 L 308.321,258.4937 L 308.97574,258.4937 L 308.97574,259.14843 L 309.70322,259.14843 L 308.321,260.60339 L 308.97574,260.60339 L 308.97574,261.25813 L 309.70322,261.98561 L 308.97574,263.36782 L 308.321,264.0953 L 307.59352,264.0953 L 307.59352,264.75003 L 306.21131,264.0953 L 306.21131,264.75003 L 306.93879,264.75003 L 306.93879,265.47751 L 307.59352,265.47751 L 307.59352,264.75003 L 308.321,264.0953 L 308.97574,264.75003 L 308.321,266.85973 L 308.97574,266.85973 L 307.59352,267.58721 L 306.93879,268.24194 L 307.59352,268.96942 z M 700.06944,268.96942 L 699.41471,266.85973 L 695.9228,266.13225 L 698.68723,267.58721 L 700.06944,268.96942 z M 299.95498,268.24194 L 300.60971,266.85973 L 299.95498,266.13225 L 299.95498,268.24194 z M 512.96137,268.24194 L 513.6161,268.24194 L 514.34358,266.85973 L 513.6161,267.58721 L 513.6161,266.85973 L 512.96137,267.58721 L 512.96137,268.24194 z M 322.94337,267.58721 L 325.05306,266.13225 L 324.39833,265.47751 L 325.05306,265.47751 L 323.67085,264.75003 L 325.78055,264.0953 L 323.67085,264.0953 L 323.67085,263.36782 L 325.05306,261.98561 L 325.05306,261.25813 L 324.39833,260.60339 L 323.67085,259.14843 L 323.16161,258.63919 L 323.67085,258.4937 L 322.94337,258.4937 L 323.16161,258.63919 L 321.56116,259.14843 L 321.56116,258.4937 L 322.28864,257.11148 L 321.56116,257.76622 L 321.56116,257.11148 L 320.90642,255.65652 L 321.56116,255.65652 L 322.28864,256.384 L 322.94337,255.65652 L 320.90642,253.61958 L 319.45146,253.61958 L 319.45146,254.27431 L 320.90642,254.27431 L 319.45146,255.00179 L 318.79673,255.00179 L 318.43299,254.63805 L 318.79673,254.27431 L 318.06925,254.27431 L 317.41452,254.27431 L 317.41452,255.00179 L 316.68703,255.00179 L 316.68703,255.65652 L 316.68703,256.384 L 315.95955,257.76622 L 316.68703,257.11148 L 316.68703,256.384 L 317.41452,256.384 L 316.68703,257.76622 L 317.41452,257.11148 L 318.06925,258.4937 L 317.41452,259.14843 L 318.06925,259.14843 L 319.45146,257.11148 L 319.45146,259.14843 L 320.90642,259.14843 L 320.17894,260.60339 L 320.90642,260.60339 L 321.48841,261.18538 L 322.28864,259.87591 L 323.67085,259.87591 L 323.67085,261.98561 L 324.39833,261.98561 L 322.94337,263.36782 L 322.94337,261.98561 L 322.36139,263.14958 L 322.94337,263.36782 L 322.94337,264.0953 L 322.28864,266.85973 L 323.67085,265.47751 L 322.94337,267.58721 z M 320.90642,259.14843 L 320.17894,258.4937 L 320.17894,257.76622 L 320.90642,258.4937 L 320.90642,259.14843 z M 317.41452,256.384 L 318.06925,255.65652 L 319.45146,256.384 L 318.06925,257.11148 L 318.79673,256.384 L 317.41452,256.384 z M 321.56116,257.11148 L 320.90642,257.11148 L 320.17894,256.384 L 321.56116,257.11148 z M 310.4307,266.85973 L 312.46765,264.75003 L 311.81291,261.98561 L 311.08543,263.36782 L 311.81291,263.36782 L 311.81291,264.0953 L 311.08543,264.75003 L 311.81291,264.75003 L 310.4307,266.85973 z M 336.911,266.85973 L 339.0207,266.13225 L 338.36596,265.47751 L 337.63848,265.47751 L 336.911,266.85973 z M 263.58093,266.13225 L 264.30841,265.62301 L 264.30841,266.13225 L 265.03589,266.13225 L 265.69063,265.47751 L 265.69063,266.13225 L 267.07284,264.0953 L 265.69063,264.75003 L 264.30841,265.62301 L 264.30841,265.47751 L 263.58093,266.13225 z M 362.80932,265.47751 L 363.46405,264.75003 L 364.84627,264.75003 L 364.84627,262.64034 L 364.19153,262.64034 L 364.19153,263.36782 L 363.46405,264.0953 L 363.46405,263.36782 L 362.80932,264.75003 L 362.80932,265.47751 z M 301.99192,264.75003 L 303.44688,261.98561 L 302.7194,261.98561 L 301.99192,264.75003 z M 328.54497,264.75003 L 329.27245,264.75003 L 329.92719,263.36782 L 329.27245,263.36782 L 328.54497,264.75003 z M 312.46765,264.0953 L 312.97688,263.87706 L 313.19513,264.0953 L 313.92261,263.36782 L 312.97688,263.87706 L 312.46765,263.36782 L 312.46765,264.0953 z M 266.41811,263.36782 L 266.41811,260.60339 L 265.69063,262.64034 L 266.41811,263.36782 z M 268.5278,263.36782 L 269.18254,261.25813 L 267.80032,262.64034 L 268.5278,263.36782 z M 324.39833,263.36782 L 325.05306,263.36782 L 325.78055,262.64034 L 326.43528,261.98561 L 327.16276,260.60339 L 326.43528,261.25813 L 326.43528,260.60339 L 325.78055,261.25813 L 326.43528,261.98561 L 325.78055,261.98561 L 324.39833,263.36782 z M 346.00451,262.64034 L 348.11421,262.64034 L 347.38673,261.98561 L 348.11421,261.25813 L 346.73199,261.25813 L 346.73199,260.60339 L 346.00451,262.64034 z M 806.28164,262.64034 L 807.66386,259.14843 L 807.66386,257.76622 L 806.93638,257.11148 L 806.28164,257.76622 L 806.28164,262.64034 z M 329.92719,261.98561 L 331.38215,261.25813 L 332.03688,261.25813 L 333.41909,259.87591 L 333.41909,260.60339 L 337.63848,258.4937 L 340.40291,255.65652 L 340.40291,253.61958 L 339.74818,254.27431 L 340.40291,252.8921 L 340.40291,251.50988 L 339.0207,250.12767 L 338.36596,250.7824 L 336.911,250.7824 L 336.25627,249.40019 L 336.911,248.67271 L 336.911,248.01797 L 336.25627,247.29049 L 334.87406,247.29049 L 334.87406,248.01797 L 334.87406,248.67271 L 332.03688,252.16461 L 330.65467,252.16461 L 330.65467,254.27431 L 327.89024,255.65652 L 327.16276,256.384 L 327.89024,256.384 L 327.16276,257.11148 L 327.89024,257.11148 L 328.54497,257.76622 L 327.89024,257.76622 L 328.54497,258.4937 L 327.89024,259.14843 L 329.27245,259.14843 L 329.27245,261.25813 L 329.92719,261.98561 z M 313.92261,261.25813 L 315.30482,259.87591 L 314.57734,261.25813 L 315.95955,259.14843 L 314.57734,259.87591 L 313.92261,261.25813 z M 835.59912,261.25813 L 837.70881,261.25813 L 838.36355,259.14843 L 834.87164,257.76622 L 835.59912,255.65652 L 833.48943,254.27431 L 834.21691,255.00179 L 834.87164,256.384 L 833.48943,257.11148 L 834.21691,258.4937 L 836.25385,259.14843 L 836.25385,260.60339 L 836.98133,260.60339 L 835.59912,261.25813 z M 232.88124,260.60339 L 233.60872,259.14843 L 234.26346,258.4937 L 232.88124,258.4937 L 232.88124,259.14843 L 232.15376,258.4937 L 232.88124,259.87591 L 232.15376,259.87591 L 232.88124,260.60339 z M 304.8291,260.60339 L 305.48383,260.60339 L 305.48383,259.87591 L 305.48383,259.14843 L 305.48383,258.4937 L 306.21131,257.76622 L 304.8291,258.4937 L 305.48383,258.4937 L 304.10162,259.87591 L 305.48383,259.14843 L 304.8291,260.60339 z M 302.7194,259.87591 L 302.7194,259.14843 L 303.44688,259.87591 L 303.44688,258.4937 L 304.10162,259.14843 L 304.10162,258.4937 L 303.44688,258.4937 L 303.44688,257.76622 L 302.7194,256.675 L 302.7194,256.384 L 302.57391,256.45675 L 301.99192,255.65652 L 301.99192,255.00179 L 302.7194,255.00179 L 302.7194,254.27431 L 302.50116,253.83782 L 302.7194,253.61958 L 301.99192,252.8921 L 302.7194,252.16461 L 304.10162,251.50988 L 303.44688,253.61958 L 304.8291,254.27431 L 304.8291,255.00179 L 304.8291,255.65652 L 306.21131,256.384 L 305.48383,255.00179 L 306.21131,254.27431 L 304.8291,254.27431 L 304.10162,253.61958 L 304.10162,252.16461 L 304.8291,252.16461 L 304.10162,251.50988 L 305.48383,251.50988 L 306.21131,250.12767 L 305.48383,250.7824 L 305.48383,250.12767 L 302.7194,251.50988 L 301.33719,252.16461 L 301.99192,252.8921 L 302.50116,253.83782 L 301.33719,255.00179 L 301.99192,255.65652 L 301.99192,256.384 L 301.33719,257.11148 L 302.57391,256.45675 L 302.7194,256.675 L 302.7194,257.11148 L 303.44688,257.76622 L 302.7194,259.14843 L 301.33719,258.4937 L 301.33719,259.14843 L 301.99192,259.14843 L 302.7194,259.87591 z M 312.46765,259.87591 L 313.92261,259.14843 L 314.57734,257.76622 L 313.92261,257.76622 L 314.57734,257.11148 L 314.57734,256.384 L 313.19513,257.40248 L 313.19513,256.384 L 312.46765,257.11148 L 311.81291,257.76622 L 311.81291,257.11148 L 311.81291,255.65652 L 311.08543,255.65652 L 310.4307,256.384 L 310.4307,257.76622 L 311.52192,257.25698 L 311.81291,257.76622 L 311.81291,258.4937 L 311.81291,259.14843 L 312.46765,259.87591 z M 312.46765,259.87591 L 312.46765,258.4937 L 313.19513,259.14843 L 312.46765,259.87591 z M 311.81291,258.4937 L 312.46765,257.11148 L 312.97688,257.62072 L 311.81291,258.4937 z M 311.52192,257.25698 L 311.08543,256.384 L 311.81291,257.11148 L 311.52192,257.25698 z M 360.69963,259.87591 L 362.08184,258.4937 L 360.69963,257.76622 L 358.58993,257.76622 L 358.58993,259.14843 L 360.69963,259.87591 z M 255.94238,259.14843 L 255.94238,255.00179 L 255.2149,256.384 L 255.94238,259.14843 z M 267.80032,259.14843 L 268.5278,258.4937 L 268.5278,259.14843 L 269.18254,259.14843 L 268.5278,258.4937 L 268.5278,257.11148 L 267.80032,259.14843 z M 366.95596,258.4937 L 369.79314,257.11148 L 370.44787,257.11148 L 370.44787,256.384 L 366.95596,257.76622 L 366.95596,258.4937 z M 519.94518,258.4937 L 520.59992,258.4937 L 520.59992,257.76622 L 520.45442,257.40248 L 520.59992,257.11148 L 520.30892,257.11148 L 519.94518,256.384 L 519.2177,257.11148 L 520.30892,257.11148 L 520.45442,257.40248 L 519.94518,258.4937 z M 431.92,257.76622 L 433.37496,255.80202 L 434.02969,257.11148 L 434.68443,255.65652 L 434.02969,255.65652 L 434.02969,255.00179 L 434.02969,254.27431 L 432.64748,253.61958 L 433.30221,253.61958 L 431.92,252.8921 L 431.19252,251.50988 L 429.15557,249.40019 L 428.42809,249.40019 L 428.42809,246.63576 L 427.70061,246.63576 L 428.42809,245.1808 L 426.3184,244.52607 L 427.70061,243.14385 L 427.70061,242.41637 L 429.15557,242.41637 L 427.70061,241.68889 L 429.15557,239.65194 L 428.42809,240.30668 L 427.70061,238.19698 L 429.15557,237.54225 L 429.81031,237.54225 L 431.19252,236.81477 L 431.92,236.81477 L 433.30221,241.03416 L 434.02969,241.03416 L 433.30221,240.30668 L 433.30221,238.19698 L 432.64748,237.54225 L 434.68443,236.16004 L 432.64748,236.16004 L 434.02969,234.05034 L 438.17634,236.16004 L 436.13939,234.70507 L 435.41191,234.05034 L 436.13939,232.66813 L 434.02969,231.21317 L 433.30221,231.94065 L 434.68443,231.94065 L 435.41191,232.66813 L 435.41191,233.32286 L 434.02969,233.32286 L 432.64748,234.05034 L 431.19252,236.81477 L 427.70061,236.81477 L 426.3184,239.65194 L 426.3184,241.03416 L 427.70061,241.68889 L 425.66367,243.79859 L 427.04588,246.63576 L 424.93618,247.29049 L 424.2087,248.01797 L 426.3184,247.29049 L 427.04588,247.29049 L 426.3184,248.01797 L 425.66367,248.67271 L 425.66367,249.40019 L 426.3184,248.01797 L 427.70061,249.40019 L 428.42809,249.40019 L 428.42809,250.12767 L 429.15557,250.7824 L 429.81031,250.7824 L 430.53779,252.16461 L 431.19252,252.16461 L 431.19252,252.8921 L 434.02969,255.00179 L 433.37496,255.80202 L 433.30221,255.65652 L 431.92,257.76622 z M 232.15376,256.96599 L 235.64567,256.384 L 232.88124,256.384 L 232.15376,255.65652 L 232.15376,256.96599 z M 313.92261,256.384 L 314.57734,255.00179 L 313.92261,255.00179 L 313.92261,256.384 z M 632.34097,256.384 L 633.06845,256.384 L 633.72319,255.65652 L 633.06845,255.00179 L 633.72319,253.61958 L 631.68624,255.00179 L 632.34097,256.384 z M 482.18893,255.00179 L 483.57114,255.00179 L 484.29862,254.27431 L 483.57114,253.61958 L 483.57114,254.27431 L 482.18893,255.00179 z M 203.56376,254.27431 L 202.83628,253.61958 L 203.56376,252.8921 L 204.2185,254.27431 L 203.56376,254.27431 z M 202.83628,253.61958 L 202.18155,253.61958 L 202.18155,252.16461 L 202.83628,253.61958 z M 314.57734,254.27431 L 315.30482,253.54683 L 315.95955,252.8921 L 315.30482,252.8921 L 315.30482,253.54683 L 314.57734,252.16461 L 314.57734,251.50988 L 313.92261,251.50988 L 314.57734,250.7824 L 313.19513,250.7824 L 313.92261,251.50988 L 313.19513,251.50988 L 313.92261,252.16461 L 314.57734,252.16461 L 313.92261,253.61958 L 314.57734,254.27431 z M 201.45407,253.61958 L 200.07186,252.16461 L 200.72659,252.16461 L 200.07186,251.50988 L 200.07186,250.7824 L 199.34437,250.7824 L 200.07186,249.40019 L 200.07186,250.12767 L 200.72659,250.12767 L 201.45407,250.12767 L 201.45407,250.7824 L 202.18155,251.50988 L 201.45407,251.50988 L 201.45407,252.16461 L 200.72659,251.50988 L 201.45407,253.61958 z M 200.72659,250.12767 L 200.07186,248.01797 L 199.34437,247.29049 L 200.07186,247.29049 L 200.72659,248.01797 L 200.72659,250.12767 z M 306.21131,253.61958 L 306.7933,252.67385 L 306.93879,252.8921 L 307.59352,251.50988 L 306.7933,252.67385 L 306.21131,251.50988 L 306.21131,250.7824 L 305.48383,252.16461 L 306.21131,252.16461 L 306.21131,253.61958 z M 311.08543,253.61958 L 312.46765,252.8921 L 313.19513,252.16461 L 312.46765,250.7824 L 312.46765,252.16461 L 311.81291,252.8921 L 311.08543,252.16461 L 310.86719,252.38286 L 310.4307,251.50988 L 311.08543,250.7824 L 309.99421,251.36439 L 309.70322,250.7824 L 309.70322,251.50988 L 309.99421,251.36439 L 310.4307,252.16461 L 309.70322,252.8921 L 311.08543,253.61958 z M 318.79673,253.61958 L 319.45146,252.8921 L 318.79673,251.50988 L 317.41452,252.16461 L 317.41452,252.8921 L 318.06925,252.16461 L 318.79673,252.16461 L 318.79673,253.61958 z M 238.48284,252.8921 L 237.10063,251.50988 L 237.10063,252.16461 L 238.48284,252.8921 z M 299.95498,252.8921 L 301.33719,252.8921 L 298.50001,250.7824 L 299.95498,252.8921 z M 227.27964,252.16461 L 226.62491,250.7824 L 227.27964,251.50988 L 227.27964,252.16461 z M 241.24727,251.50988 L 244.73918,250.7824 L 243.35697,250.7824 L 241.24727,251.50988 z M 364.84627,251.50988 L 366.30123,251.50988 L 366.30123,250.7824 L 364.19153,250.12767 L 366.30123,249.40019 L 369.79314,248.01797 L 371.17535,248.01797 L 371.17535,247.29049 L 371.83008,246.63576 L 371.17535,246.63576 L 371.17535,245.90828 L 371.83008,244.52607 L 370.44787,245.1808 L 371.17535,244.52607 L 369.79314,243.79859 L 370.44787,243.14385 L 369.79314,243.14385 L 369.06566,244.52607 L 367.68344,243.79859 L 364.84627,245.90828 L 363.46405,246.63576 L 364.19153,247.29049 L 364.19153,246.63576 L 364.84627,245.90828 L 365.57375,245.90828 L 364.84627,246.63576 L 367.68344,246.63576 L 366.95596,247.29049 L 366.30123,247.29049 L 366.30123,248.01797 L 365.57375,248.67271 L 364.19153,248.67271 L 364.19153,248.01797 L 363.46405,248.01797 L 363.46405,248.67271 L 364.19153,249.40019 L 362.80932,250.7824 L 364.19153,250.7824 L 364.84627,251.50988 z M 364.84627,251.50988 L 364.84627,250.7824 L 365.57375,250.7824 L 364.84627,251.50988 z M 237.10063,250.7824 L 238.48284,250.7824 L 237.10063,250.12767 L 237.10063,249.40019 L 236.37315,250.12767 L 237.10063,250.12767 L 237.10063,250.7824 z M 416.57015,250.12767 L 417.95237,248.67271 L 419.33458,249.40019 L 420.06206,248.67271 L 418.67985,248.01797 L 416.57015,249.40019 L 415.84267,248.67271 L 415.84267,248.01797 L 415.18794,248.67271 L 413.07825,247.29049 L 416.57015,250.12767 z M 422.82649,250.12767 L 422.17176,249.40019 L 421.44428,247.29049 L 421.44428,249.40019 L 422.82649,250.12767 z M 392.78153,248.67271 L 392.78153,245.90828 L 394.89123,244.52607 L 396.27344,242.41637 L 394.89123,241.03416 L 395.61871,242.41637 L 394.89123,242.41637 L 394.89123,243.14385 L 394.23649,243.79859 L 393.50901,243.79859 L 394.23649,244.52607 L 392.1268,245.1808 L 392.1268,247.29049 L 390.74458,246.63576 L 390.0171,246.63576 L 390.0171,248.01797 L 390.74458,246.63576 L 392.1268,248.01797 L 392.78153,248.67271 z M 410.24107,248.01797 L 408.85886,244.52607 L 408.20412,245.1808 L 408.85886,245.1808 L 410.24107,248.01797 z M 637.21509,247.29049 L 637.94258,247.29049 L 636.56036,245.90828 L 636.56036,246.63576 L 637.21509,247.29049 z M 251.06826,246.63576 L 251.723,245.90828 L 251.723,244.52607 L 252.45048,243.79859 L 252.45048,242.41637 L 251.723,243.79859 L 250.34078,245.90828 L 251.06826,245.1808 L 251.06826,246.63576 z M 265.69063,246.63576 L 266.41811,246.63576 L 267.80032,245.90828 L 268.5278,245.90828 L 267.80032,244.52607 L 267.80032,245.1808 L 266.41811,245.1808 L 265.69063,245.90828 L 265.69063,246.63576 z M 389.28962,246.63576 L 387.25268,245.90828 L 386.5252,244.52607 L 386.5252,245.1808 L 386.5252,245.90828 L 389.28962,246.63576 z M 248.23109,245.90828 L 248.95857,243.14385 L 248.95857,241.03416 L 248.23109,245.90828 z M 233.60872,245.1808 L 233.60872,244.52607 L 232.15376,244.52607 L 231.49903,243.87133 L 231.49903,244.52607 L 233.60872,245.1808 z M 189.59613,243.79859 L 188.86865,242.41637 L 189.59613,241.68889 L 190.25086,241.68889 L 190.25086,240.30668 L 190.97834,241.03416 L 191.70583,241.68889 L 190.25086,242.41637 L 190.25086,243.14385 L 189.59613,243.79859 z M 188.86865,242.41637 L 188.21392,241.68889 L 188.86865,241.03416 L 189.59613,241.03416 L 188.86865,242.41637 z M 304.10162,243.79859 L 305.48383,243.79859 L 305.48383,243.14385 L 304.10162,242.41637 L 304.10162,243.79859 z M 610.00731,243.79859 L 610.00731,241.68889 L 609.27983,241.03416 L 610.00731,243.79859 z M 175.6285,243.14385 L 172.79132,242.41637 L 172.79132,241.03416 L 172.13659,242.41637 L 172.13659,241.03416 L 171.40911,242.41637 L 170.75438,241.68889 L 170.75438,241.03416 L 171.40911,241.03416 L 170.75438,240.30668 L 171.40911,239.65194 L 170.0269,239.65194 L 170.0269,238.19698 L 171.40911,238.92446 L 172.13659,238.92446 L 172.13659,240.30668 L 172.79132,240.30668 L 175.6285,241.03416 L 174.24629,241.03416 L 175.6285,241.68889 L 175.6285,243.14385 z M 172.79132,240.30668 L 172.13659,238.92446 L 172.79132,238.92446 L 172.79132,239.65194 L 173.5188,239.65194 L 174.24629,240.30668 L 172.79132,240.30668 z M 277.54857,243.14385 L 276.89383,241.68889 L 275.51162,241.03416 L 277.54857,243.14385 z M 287.36956,243.14385 L 288.02429,242.41637 L 288.02429,241.68889 L 287.36956,241.68889 L 288.02429,240.30668 L 288.75177,239.65194 L 288.75177,240.30668 L 288.75177,241.68889 L 289.47925,241.03416 L 289.47925,241.68889 L 288.75177,242.41637 L 287.36956,243.14385 z M 288.75177,240.30668 L 289.47925,239.65194 L 290.13398,241.03416 L 288.75177,240.30668 z M 181.2301,242.41637 L 180.50262,241.03416 L 180.50262,240.30668 L 179.77514,241.03416 L 179.77514,240.30668 L 180.50262,238.92446 L 178.39293,239.65194 L 179.12041,238.92446 L 178.39293,238.19698 L 177.73819,238.19698 L 178.39293,236.16004 L 176.28323,237.54225 L 175.6285,237.54225 L 175.6285,236.16004 L 174.90102,235.43256 L 174.24629,233.32286 L 174.90102,233.32286 L 174.90102,232.66813 L 174.24629,232.66813 L 175.6285,231.94065 L 174.90102,231.94065 L 174.24629,231.21317 L 174.90102,230.55843 L 173.5188,231.21317 L 173.5188,230.55843 L 174.24629,229.83095 L 172.79132,230.55843 L 172.13659,229.83095 L 173.5188,229.17622 L 172.13659,229.17622 L 172.79132,228.44874 L 170.0269,229.17622 L 173.5188,227.72126 L 171.40911,227.72126 L 172.13659,226.33904 L 175.6285,227.72126 L 174.90102,227.06653 L 174.24629,227.06653 L 173.5188,226.33904 L 172.79132,225.68431 L 172.13659,224.95683 L 171.40911,224.22935 L 172.13659,224.22935 L 171.40911,223.57462 L 172.13659,223.57462 L 171.40911,222.84714 L 170.0269,222.1924 L 171.40911,222.1924 L 174.90102,222.84714 L 172.13659,221.46492 L 171.40911,220.73744 L 172.13659,220.08271 L 172.79132,221.46492 L 173.5188,220.08271 L 174.24629,222.1924 L 174.24629,221.46492 L 175.6285,222.1924 L 174.90102,221.46492 L 174.90102,221.39218 L 175.6285,219.35523 L 174.24629,220.73744 L 172.79132,218.7005 L 174.24629,217.24553 L 174.24629,216.5908 L 171.40911,214.48111 L 170.75438,212.37141 L 170.0269,213.09889 L 169.29942,212.37141 L 170.0269,209.60699 L 170.0269,211.71668 L 170.75438,211.71668 L 172.79132,209.60699 L 173.5188,211.71668 L 174.90102,209.60699 L 175.6285,210.26172 L 177.01071,209.60699 L 177.01071,210.9892 L 179.77514,209.60699 L 177.73819,209.60699 L 175.6285,206.76981 L 176.28323,204.00538 L 177.01071,204.00538 L 177.01071,202.62317 L 177.73819,203.2779 L 178.39293,202.62317 L 177.73819,201.89569 L 177.73819,201.24096 L 177.01071,201.24096 L 177.01071,200.51348 L 176.28323,199.78599 L 177.73819,199.13126 L 177.01071,199.13126 L 175.6285,197.74905 L 176.28323,195.63935 L 175.6285,197.02157 L 174.90102,197.02157 L 174.90102,195.63935 L 174.24629,197.02157 L 172.79132,197.02157 L 171.40911,197.74905 L 171.40911,197.02157 L 169.29942,197.02157 L 165.15277,194.91187 L 166.53499,194.25714 L 167.26247,194.91187 L 169.29942,194.25714 L 168.64468,193.52966 L 168.64468,192.80218 L 169.29942,192.80218 L 167.9172,192.14745 L 168.64468,191.41996 L 167.9172,191.41996 L 166.53499,189.31027 L 163.77056,189.31027 L 163.04308,188.65554 L 161.66087,188.65554 L 159.55117,187.92806 L 160.93339,187.27332 L 160.27865,186.54584 L 161.66087,185.81836 L 160.27865,185.81836 L 160.93339,185.16363 L 164.42529,185.81836 L 164.42529,184.43615 L 163.77056,183.78142 L 166.53499,183.05393 L 166.53499,181.67172 L 167.9172,180.28951 L 169.29942,180.28951 L 170.75438,181.67172 L 171.40911,180.94424 L 172.13659,180.94424 L 174.24629,182.32645 L 174.24629,181.67172 L 172.13659,180.28951 L 170.75438,179.56203 L 169.29942,178.17981 L 167.9172,178.83455 L 165.80751,180.28951 L 163.04308,180.28951 L 163.04308,179.56203 L 163.77056,178.83455 L 162.3156,178.83455 L 161.66087,179.56203 L 160.27865,177.45233 L 158.82369,176.7976 L 158.16896,176.7976 L 158.16896,176.07012 L 157.44148,176.7976 L 156.05926,175.34264 L 153.94957,173.96042 L 152.56736,174.68791 L 151.83988,173.96042 L 152.56736,173.30569 L 153.29484,173.96042 L 153.94957,172.57821 L 154.67705,171.85073 L 154.67705,172.57821 L 155.33178,172.57821 L 154.67705,173.30569 L 156.05926,173.30569 L 157.44148,173.30569 L 158.16896,173.96042 L 160.27865,173.96042 L 160.93339,173.30569 L 160.93339,173.96042 L 161.66087,172.57821 L 162.3156,172.57821 L 163.04308,171.196 L 163.77056,171.196 L 164.42529,171.85073 L 165.15277,173.96042 L 165.80751,173.96042 L 165.80751,174.68791 L 166.53499,173.96042 L 169.29942,173.96042 L 170.75438,171.85073 L 171.40911,172.57821 L 173.5188,171.196 L 173.5188,172.57821 L 176.28323,171.85073 L 177.73819,171.85073 L 177.01071,173.30569 L 178.39293,171.85073 L 178.39293,172.57821 L 180.50262,171.85073 L 179.77514,171.196 L 180.50262,170.46852 L 183.26705,171.196 L 184.72201,169.81378 L 186.10422,169.0863 L 189.59613,170.46852 L 190.25086,169.81378 L 190.97834,171.196 L 193.08804,171.196 L 193.74277,173.30569 L 190.97834,173.30569 L 190.25086,173.96042 L 190.97834,173.96042 L 190.25086,174.68791 L 189.59613,173.96042 L 188.86865,174.68791 L 190.25086,174.68791 L 187.48644,175.34264 L 191.70583,175.34264 L 190.97834,176.07012 L 191.70583,176.7976 L 190.25086,177.45233 L 192.36056,177.45233 L 192.36056,176.7976 L 193.74277,177.45233 L 194.47025,178.17981 L 195.85247,178.83455 L 197.96216,182.32645 L 197.96216,184.43615 L 196.57995,186.54584 L 192.36056,187.92806 L 190.97834,186.54584 L 189.59613,187.92806 L 192.36056,190.03775 L 191.70583,192.80218 L 190.97834,193.52966 L 190.25086,194.91187 L 188.21392,195.63935 L 187.48644,194.91187 L 187.48644,195.63935 L 188.21392,195.63935 L 190.25086,195.63935 L 190.97834,194.25714 L 191.70583,193.52966 L 191.70583,195.63935 L 190.97834,197.74905 L 191.70583,198.40378 L 190.97834,199.78599 L 190.25086,201.89569 L 188.21392,204.00538 L 187.48644,204.00538 L 188.21392,204.73286 L 187.48644,208.8795 L 188.21392,212.37141 L 186.75896,214.48111 L 186.75896,215.86332 L 183.99453,217.97302 L 182.61232,217.97302 L 181.2301,218.7005 L 179.77514,219.35523 L 179.12041,220.08271 L 181.2301,218.7005 L 183.26705,219.35523 L 185.37674,219.35523 L 183.99453,220.73744 L 184.72201,221.46492 L 185.37674,221.46492 L 188.21392,224.22935 L 190.97834,227.72126 L 192.36056,229.17622 L 191.70583,230.55843 L 186.75896,231.21317 L 186.10422,232.66813 L 182.61232,232.66813 L 181.2301,231.94065 L 180.50262,231.94065 L 181.88483,232.66813 L 182.61232,233.32286 L 180.50262,232.66813 L 181.88483,233.32286 L 182.61232,233.32286 L 183.26705,233.32286 L 183.99453,234.05034 L 183.26705,234.05034 L 181.88483,235.43256 L 183.26705,234.70507 L 183.26705,235.43256 L 188.21392,236.81477 L 189.59613,239.65194 L 188.21392,240.30668 L 188.21392,239.65194 L 186.75896,240.30668 L 185.37674,240.30668 L 182.61232,239.65194 L 183.26705,241.03416 L 182.61232,241.03416 L 181.88483,241.68889 L 181.2301,242.41637 z M 177.73819,171.85073 L 175.6285,171.196 L 177.01071,170.46852 L 179.12041,171.196 L 177.73819,171.85073 z M 174.24629,220.73744 L 174.90102,220.73744 L 174.90102,221.39218 L 174.24629,220.73744 z M 171.40911,220.73744 L 169.29942,219.35523 L 167.9172,216.5908 L 169.29942,216.5908 L 169.29942,217.24553 L 171.40911,220.08271 L 171.40911,220.73744 z M 171.40911,220.73744 L 171.40911,222.1924 L 170.0269,220.73744 L 170.0269,220.08271 L 171.40911,220.73744 z M 170.0269,222.1924 L 169.8814,222.3379 L 169.7359,222.1924 L 170.0269,222.1924 z M 169.7359,222.1924 L 168.64468,222.1924 L 168.64468,220.73744 L 169.7359,222.1924 z M 169.8814,222.3379 L 170.75438,223.57462 L 169.29942,222.84714 L 169.8814,222.3379 z M 712.00013,241.03416 L 714.03707,240.30668 L 712.65486,240.30668 L 712.00013,241.03416 z M 238.48284,240.30668 L 239.13758,238.19698 L 238.48284,238.92446 L 238.48284,240.30668 z M 247.57635,240.30668 L 247.57635,239.65194 L 248.23109,240.30668 L 248.23109,239.65194 L 248.23109,238.19698 L 247.57635,239.65194 L 246.84887,238.92446 L 246.84887,239.65194 L 247.57635,240.30668 z M 275.51162,240.30668 L 275.51162,239.65194 L 274.05666,239.65194 L 275.51162,240.30668 z M 324.39833,239.65194 L 325.78055,239.65194 L 324.39833,238.92446 L 324.39833,237.54225 L 323.67085,238.92446 L 324.39833,239.65194 z M 712.65486,239.65194 L 710.54516,238.92446 L 708.50822,238.92446 L 712.65486,239.65194 z M 167.26247,238.19698 L 168.64468,236.81477 L 168.64468,237.54225 L 169.29942,237.54225 L 168.64468,238.19698 L 167.26247,238.19698 z M 171.40911,236.81477 L 170.75438,235.43256 L 170.75438,236.16004 L 170.0269,235.43256 L 170.75438,234.70507 L 171.40911,234.70507 L 171.40911,234.05034 L 170.75438,234.05034 L 171.40911,232.66813 L 172.13659,232.66813 L 172.13659,231.94065 L 172.79132,232.66813 L 172.79132,231.94065 L 173.5188,231.94065 L 172.13659,231.21317 L 174.24629,231.94065 L 172.79132,233.32286 L 172.13659,233.32286 L 173.5188,235.43256 L 172.79132,236.81477 L 172.13659,236.81477 L 172.13659,234.70507 L 171.40911,236.81477 z M 167.9172,236.16004 L 166.53499,235.43256 L 166.53499,234.05034 L 167.26247,233.32286 L 167.26247,234.70507 L 167.9172,235.43256 L 167.9172,236.16004 z M 322.28864,236.16004 L 322.94337,235.43256 L 324.39833,231.94065 L 323.16161,230.12195 L 323.67085,229.17622 L 325.05306,229.83095 L 326.43528,228.44874 L 326.43528,227.06653 L 325.78055,227.06653 L 324.39833,228.44874 L 324.39833,227.72126 L 323.67085,229.17622 L 322.94337,229.83095 L 323.16161,230.12195 L 322.94337,230.55843 L 321.56116,231.21317 L 321.56116,232.66813 L 320.17894,234.05034 L 320.17894,235.43256 L 322.28864,236.16004 z M 339.0207,236.16004 L 340.40291,235.43256 L 341.13039,235.43256 L 341.85787,234.05034 L 340.40291,234.05034 L 340.40291,233.32286 L 337.63848,233.32286 L 339.0207,234.70507 L 339.0207,236.16004 z M 596.03968,236.16004 L 596.03968,234.70507 L 595.3122,233.32286 L 593.27525,234.05034 L 594.65747,235.43256 L 596.03968,236.16004 z M 526.20152,235.43256 L 526.929,234.70507 L 527.58373,235.43256 L 528.31121,232.66813 L 527.58373,231.94065 L 529.69343,229.17622 L 528.31121,227.72126 L 529.69343,227.72126 L 530.42091,227.06653 L 530.42091,226.33904 L 531.07564,226.33904 L 531.07564,224.95683 L 531.80312,226.33904 L 533.18533,226.33904 L 533.91281,224.95683 L 535.94976,224.95683 L 537.40472,224.22935 L 538.05946,224.95683 L 537.40472,225.68431 L 538.78694,225.68431 L 539.44167,224.95683 L 540.16915,225.68431 L 540.16915,224.95683 L 539.44167,224.95683 L 540.16915,223.57462 L 539.44167,223.57462 L 539.44167,220.08271 L 538.78694,219.35523 L 539.44167,219.35523 L 539.44167,218.7005 L 540.16915,217.97302 L 540.89663,218.7005 L 542.27884,216.5908 L 540.16915,217.24553 L 542.27884,215.86332 L 540.16915,216.5908 L 541.55136,214.48111 L 540.89663,213.09889 L 542.27884,212.37141 L 542.27884,213.09889 L 543.66106,213.09889 L 544.38854,213.75363 L 545.04327,212.37141 L 544.38854,211.71668 L 544.38854,210.9892 L 543.66106,209.60699 L 542.27884,209.60699 L 541.55136,208.22477 L 542.27884,206.76981 L 540.89663,206.76981 L 540.89663,204.73286 L 538.78694,205.3876 L 539.44167,206.76981 L 537.40472,205.3876 L 536.67724,206.11508 L 536.67724,205.3876 L 535.29503,204.73286 L 535.94976,204.00538 L 534.56755,204.00538 L 535.29503,202.62317 L 534.56755,203.2779 L 533.91281,202.62317 L 532.45785,199.78599 L 528.96594,203.2779 L 526.20152,204.73286 L 526.20152,206.11508 L 524.09182,206.76981 L 519.94518,215.86332 L 519.94518,217.97302 L 521.3274,218.7005 L 521.98213,220.08271 L 522.70961,220.08271 L 523.43709,217.97302 L 524.09182,219.35523 L 521.98213,221.46492 L 520.59992,222.1924 L 521.3274,223.57462 L 524.09182,222.84714 L 523.43709,224.22935 L 523.43709,224.95683 L 522.70961,224.95683 L 521.3274,224.95683 L 521.3274,225.68431 L 520.59992,224.95683 L 520.59992,227.06653 L 521.3274,228.44874 L 521.3274,229.17622 L 521.98213,228.44874 L 521.98213,229.17622 L 521.98213,229.83095 L 524.09182,231.21317 L 524.8193,229.83095 L 525.47404,229.83095 L 526.929,230.55843 L 526.929,231.21317 L 525.47404,231.94065 L 526.20152,232.66813 L 526.20152,235.43256 z M 521.98213,229.17622 L 522.70961,228.44874 L 522.70961,229.17622 L 524.09182,229.17622 L 524.09182,229.83095 L 521.98213,229.17622 z M 534.56755,204.00538 L 533.91281,204.00538 L 533.18533,204.00538 L 533.18533,203.2779 L 534.56755,204.00538 z M 538.78694,225.68431 L 538.78694,224.95683 L 539.44167,224.22935 L 538.78694,225.68431 z M 254.56017,234.70507 L 254.56017,234.05034 L 255.2149,234.05034 L 254.63292,232.88637 L 254.77841,232.44988 L 255.2149,232.0134 L 255.2149,233.32286 L 255.94238,231.94065 L 256.59712,232.66813 L 255.94238,231.21317 L 255.2149,230.55843 L 254.77841,232.44988 L 254.56017,232.66813 L 254.56017,229.83095 L 253.83269,233.32286 L 254.56017,234.70507 z M 254.56017,232.66813 L 254.63292,232.88637 L 254.56017,233.32286 L 254.56017,232.66813 z M 260.08903,233.32286 L 262.19872,233.32286 L 262.19872,232.66813 L 263.58093,232.66813 L 262.9262,230.55843 L 263.58093,230.55843 L 262.9262,227.72126 L 260.81651,227.06653 L 260.08903,226.33904 L 259.43429,226.33904 L 260.08903,227.06653 L 258.70681,227.06653 L 257.3246,224.95683 L 257.3246,225.68431 L 255.94238,224.95683 L 257.3246,227.06653 L 256.59712,228.44874 L 256.59712,229.83095 L 257.3246,228.44874 L 258.05208,230.55843 L 258.70681,231.21317 L 260.08903,229.17622 L 259.43429,232.66813 L 260.08903,233.32286 z M 301.33719,233.32286 L 300.60971,231.94065 L 299.95498,231.21317 L 300.60971,229.83095 L 301.33719,229.83095 L 301.33719,230.55843 L 301.99192,230.55843 L 302.7194,231.21317 L 301.99192,232.66813 L 301.33719,232.66813 L 301.33719,233.32286 z M 269.91002,232.66813 L 270.56475,232.66813 L 274.05666,232.66813 L 270.56475,231.21317 L 269.91002,232.66813 z M 304.10162,229.83095 L 303.44688,229.17622 L 303.73788,228.81248 L 302.7194,229.17622 L 301.33719,228.44874 L 301.33719,229.17622 L 299.95498,228.44874 L 299.22749,227.06653 L 298.50001,227.72126 L 297.84528,227.72126 L 299.22749,226.33904 L 298.50001,225.68431 L 299.95498,224.95683 L 299.22749,222.84714 L 299.95498,222.84714 L 299.95498,223.57462 L 300.60971,225.68431 L 301.99192,225.68431 L 301.99192,226.33904 L 304.8291,228.44874 L 304.31986,228.66698 L 304.8291,229.17622 L 304.10162,229.83095 z M 315.95955,229.83095 L 316.68703,229.83095 L 317.41452,227.06653 L 315.95955,229.17622 L 315.95955,229.83095 z M 267.07284,229.17622 L 267.80032,228.44874 L 267.07284,226.33904 L 267.80032,225.68431 L 266.41811,224.95683 L 264.30841,220.08271 L 263.58093,220.73744 L 264.30841,224.22935 L 265.69063,227.06653 L 267.07284,229.17622 z M 349.49642,229.17622 L 350.87863,227.72126 L 350.2239,227.06653 L 349.49642,228.44874 L 348.11421,227.72126 L 349.49642,229.17622 z M 169.29942,228.44874 L 169.29942,227.72126 L 170.75438,227.06653 L 169.29942,226.33904 L 168.64468,226.33904 L 168.64468,225.68431 L 170.75438,225.68431 L 170.75438,224.95683 L 171.40911,225.68431 L 172.13659,225.68431 L 170.75438,227.72126 L 170.75438,228.44874 L 169.29942,228.44874 z M 435.41191,227.72126 L 435.41191,222.84714 L 436.13939,222.1924 L 436.79412,222.1924 L 436.13939,221.46492 L 435.41191,220.08271 L 435.41191,222.1924 L 434.68443,225.68431 L 435.41191,227.72126 z M 526.20152,227.72126 L 526.20152,227.06653 L 525.47404,226.33904 L 526.929,226.33904 L 526.929,227.72126 L 526.20152,227.72126 z M 525.47404,226.33904 L 524.09182,224.95683 L 524.8193,224.95683 L 525.47404,226.33904 z M 270.56475,226.33904 L 272.01971,225.68431 L 270.56475,225.68431 L 270.56475,226.33904 z M 253.10521,224.95683 L 253.83269,224.95683 L 253.68719,224.37485 L 253.10521,224.95683 z M 167.26247,222.84714 L 165.80751,221.46492 L 167.26247,221.46492 L 166.53499,220.08271 L 167.9172,220.08271 L 168.64468,222.84714 L 167.26247,222.1924 L 167.26247,222.84714 z M 267.80032,222.1924 L 269.18254,221.46492 L 268.5278,220.73744 L 267.80032,221.46492 L 267.80032,222.1924 z M 284.53238,221.46492 L 281.76795,217.97302 L 282.49544,216.5908 L 281.76795,215.86332 L 282.49544,213.75363 L 282.49544,212.37141 L 283.87765,213.75363 L 283.87765,214.48111 L 284.53238,215.20859 L 284.53238,216.5908 L 285.98734,217.24553 L 285.25986,217.97302 L 285.25986,220.08271 L 286.64208,220.73744 L 285.98734,221.46492 L 285.25986,221.46492 L 285.25986,220.73744 L 284.53238,221.46492 z M 460.58275,221.46492 L 461.23748,220.73744 L 460.58275,220.08271 L 459.85526,220.73744 L 460.58275,221.46492 z M 526.929,220.73744 L 526.20152,219.35523 L 526.929,219.35523 L 526.929,220.73744 z M 156.05926,220.08271 L 156.05926,219.35523 L 154.67705,219.35523 L 154.67705,218.7005 L 155.33178,217.97302 L 153.94957,217.97302 L 153.94957,217.24553 L 153.29484,217.97302 L 151.83988,217.97302 L 152.56736,216.5908 L 153.94957,216.5908 L 153.29484,215.86332 L 155.33178,215.86332 L 153.94957,215.20859 L 151.18514,214.48111 L 151.83988,214.48111 L 151.83988,213.75363 L 151.18514,213.75363 L 149.80293,215.20859 L 148.34797,213.75363 L 148.34797,215.86332 L 146.31102,216.5908 L 145.58354,216.5908 L 146.31102,215.86332 L 144.92881,216.5908 L 145.58354,216.5908 L 145.58354,217.24553 L 144.85606,217.24553 L 144.20133,216.5908 L 144.20133,215.86332 L 144.85606,216.51805 L 144.85606,215.20859 L 145.58354,215.20859 L 144.85606,214.48111 L 144.85606,213.75363 L 144.20133,214.48111 L 144.20133,213.75363 L 145.58354,213.09889 L 145.58354,212.37141 L 143.47385,212.37141 L 143.47385,211.71668 L 144.20133,210.9892 L 142.81911,211.71668 L 141.36415,211.71668 L 142.09163,210.26172 L 141.36415,210.26172 L 142.09163,209.60699 L 142.81911,209.60699 L 142.09163,208.8795 L 144.20133,208.8795 L 143.47385,207.49729 L 146.31102,206.76981 L 145.58354,206.76981 L 146.31102,206.11508 L 146.31102,205.3876 L 144.20133,206.11508 L 142.81911,205.3876 L 143.47385,204.73286 L 142.09163,204.00538 L 139.3272,203.2779 L 140.70942,202.62317 L 141.36415,203.2779 L 142.09163,202.62317 L 142.81911,202.62317 L 142.09163,201.89569 L 142.81911,201.89569 L 144.85606,202.62317 L 144.20133,201.89569 L 145.58354,201.24096 L 141.36415,201.89569 L 140.70942,202.62317 L 139.98194,201.89569 L 138.59972,201.89569 L 139.3272,201.24096 L 138.59972,200.51348 L 137.87224,200.51348 L 137.87224,201.24096 L 136.49003,201.24096 L 137.21751,201.89569 L 135.8353,201.89569 L 135.10782,200.51348 L 137.21751,199.78599 L 135.8353,199.13126 L 135.10782,198.40378 L 135.10782,197.02157 L 135.8353,197.02157 L 138.59972,197.02157 L 135.8353,196.29409 L 135.10782,196.29409 L 138.59972,195.63935 L 135.8353,194.91187 L 137.87224,194.91187 L 135.8353,194.25714 L 137.87224,194.25714 L 137.87224,193.52966 L 138.59972,193.52966 L 137.87224,192.80218 L 139.3272,193.52966 L 140.70942,192.80218 L 140.70942,193.52966 L 141.36415,192.80218 L 141.36415,193.52966 L 142.81911,192.14745 L 142.81911,193.52966 L 144.20133,192.80218 L 144.85606,193.52966 L 144.20133,194.91187 L 145.58354,193.52966 L 144.85606,193.52966 L 144.85606,192.80218 L 146.31102,193.52966 L 146.96575,193.52966 L 146.96575,194.25714 L 147.69323,193.52966 L 148.34797,193.52966 L 149.07545,194.25714 L 149.07545,194.91187 L 151.83988,193.52966 L 152.56736,194.25714 L 152.56736,193.52966 L 153.94957,194.25714 L 153.29484,193.52966 L 153.94957,192.80218 L 156.05926,192.80218 L 156.05926,194.25714 L 155.33178,193.52966 L 155.33178,194.25714 L 156.05926,194.25714 L 159.55117,198.40378 L 160.27865,201.24096 L 159.55117,201.89569 L 160.93339,201.89569 L 160.27865,202.62317 L 160.93339,203.2779 L 160.27865,204.73286 L 160.93339,205.3876 L 160.93339,207.49729 L 162.3156,206.76981 L 161.66087,208.22477 L 163.04308,206.76981 L 163.77056,207.49729 L 164.42529,208.8795 L 165.15277,208.22477 L 165.80751,208.22477 L 165.80751,208.8795 L 166.53499,210.9892 L 166.53499,208.22477 L 167.26247,209.60699 L 167.26247,211.71668 L 165.15277,211.71668 L 167.26247,212.37141 L 165.80751,214.48111 L 165.80751,216.5908 L 162.3156,217.97302 L 161.66087,217.24553 L 160.27865,217.24553 L 162.3156,218.7005 L 160.93339,220.08271 L 160.93339,219.35523 L 160.27865,220.08271 L 159.55117,217.97302 L 158.16896,217.24553 L 159.55117,218.7005 L 159.55117,220.08271 L 158.82369,220.08271 L 158.16896,219.35523 L 157.44148,220.08271 L 156.05926,220.08271 z M 135.10782,198.40378 L 134.38034,198.40378 L 134.38034,197.74905 L 135.10782,198.40378 z M 172.13659,219.35523 L 170.75438,218.7005 L 170.75438,217.24553 L 171.40911,216.5908 L 172.13659,219.35523 z M 595.3122,217.24553 C 592.96533,214.71604 590.68395,212.1307 588.40113,209.53424 C 589.8018,211.17676 591.18618,212.85413 592.54777,214.48111 L 595.3122,217.24553 z M 277.54857,216.5908 L 276.89383,215.86332 L 276.16635,213.09889 L 274.05666,209.60699 L 274.78414,206.11508 L 277.54857,216.5908 z M 432.64748,215.86332 L 431.92,213.75363 L 430.53779,213.75363 L 430.53779,212.37141 L 430.39229,212.00767 L 430.53779,211.71668 L 430.02855,209.38874 L 430.53779,207.49729 L 431.92,206.76981 L 432.64748,206.11508 L 432.42924,205.75134 L 432.64748,205.3876 L 433.30221,204.73286 L 431.92,204.00538 L 431.92,203.2779 L 434.02969,201.89569 L 434.53893,200.87722 L 434.68443,201.24096 L 435.19366,201.4592 L 435.41191,201.89569 L 436.13939,201.89569 L 436.79412,201.89569 L 437.5216,201.89569 L 437.5216,201.24096 L 436.13939,201.89569 L 435.19366,201.4592 L 434.68443,200.51348 L 434.53893,200.87722 L 433.44771,198.76752 L 433.37496,198.33103 L 434.02969,197.74905 L 434.68443,195.63935 L 434.68443,191.41996 L 435.41191,190.03775 L 435.41191,183.78142 L 436.13939,183.05393 L 434.68443,183.78142 L 434.68443,189.31027 L 434.02969,192.14745 L 433.30221,192.80218 L 434.02969,192.80218 L 434.02969,195.63935 L 433.30221,197.02157 L 433.30221,197.74905 L 433.37496,198.33103 L 433.30221,198.40378 L 433.44771,198.76752 L 434.02969,201.89569 L 431.19252,203.2779 L 432.42924,205.75134 L 431.92,206.76981 L 430.53779,206.76981 L 429.81031,208.22477 L 430.02855,209.38874 L 429.81031,210.26172 L 430.39229,212.00767 L 429.81031,213.09889 L 430.53779,213.75363 L 430.53779,215.20859 L 431.19252,214.48111 L 430.53779,213.75363 L 431.92,214.48111 L 432.64748,215.86332 z M 142.81911,215.20859 L 143.47385,213.75363 L 144.20133,215.20859 L 142.81911,215.20859 z M 155.33178,214.48111 L 156.78675,214.48111 L 156.05926,212.37141 L 155.33178,214.48111 z M 163.04308,213.75363 L 163.77056,213.09889 L 163.04308,210.9892 L 161.66087,211.71668 L 163.04308,213.75363 z M 261.54399,213.75363 L 262.19872,213.09889 L 261.54399,210.9892 L 261.54399,213.75363 z M 526.929,213.75363 L 526.929,213.09889 L 526.20152,213.09889 L 526.929,212.37141 L 528.31121,213.09889 L 526.929,213.75363 z M 265.69063,210.9892 L 266.41811,210.26172 L 266.41811,210.9892 L 267.07284,210.26172 L 267.07284,208.8795 L 265.69063,209.60699 L 265.69063,210.9892 z M 144.85606,209.60699 L 145.58354,209.60699 L 146.31102,208.8795 L 146.31102,208.22477 L 144.85606,209.60699 z M 152.56736,208.22477 L 152.56736,207.49729 L 151.83988,206.76981 L 152.56736,206.76981 L 151.83988,206.11508 L 151.83988,206.76981 L 151.83988,207.49729 L 152.56736,208.22477 z M 172.13659,207.49729 L 170.75438,206.76981 L 168.64468,205.3876 L 170.0269,204.73286 L 171.40911,205.3876 L 172.13659,207.49729 z M 255.2149,206.11508 L 252.45048,204.73286 L 253.10521,204.73286 L 252.45048,201.89569 L 251.723,202.62317 L 252.45048,202.62317 L 251.723,203.2779 L 251.723,204.00538 L 252.45048,204.73286 L 251.723,204.73286 L 249.6133,205.3876 L 251.06826,204.73286 L 251.06826,204.00538 L 250.34078,204.00538 L 249.6133,202.62317 L 247.57635,203.2779 L 248.95857,202.62317 L 248.23109,202.62317 L 248.95857,201.89569 L 248.95857,199.78599 L 249.6133,198.40378 L 251.723,198.40378 L 251.723,197.02157 L 251.06826,197.02157 L 252.45048,196.29409 L 253.83269,196.29409 L 253.83269,197.02157 L 253.10521,197.74905 L 255.2149,198.40378 L 253.83269,199.78599 L 254.56017,201.24096 L 255.94238,201.89569 L 255.94238,204.00538 L 256.59712,205.3876 L 255.2149,206.11508 z M 255.94238,201.89569 L 255.94238,201.24096 L 256.59712,201.24096 L 255.94238,201.89569 z M 253.83269,196.29409 L 253.10521,195.63935 L 255.94238,195.63935 L 255.2149,196.29409 L 254.56017,197.02157 L 254.56017,196.29409 L 253.83269,196.29409 z M 252.45048,196.29409 L 251.723,195.63935 L 252.15948,193.96615 L 251.06826,195.63935 L 251.06826,194.91187 L 248.95857,196.29409 L 248.23109,195.63935 L 248.23109,194.91187 L 247.57635,194.91187 L 247.57635,194.25714 L 250.34078,192.80218 L 250.34078,193.52966 L 252.23223,193.52966 L 252.45048,192.80218 L 252.45048,193.52966 L 253.83269,194.91187 L 252.45048,195.63935 L 252.45048,196.29409 z M 246.12139,205.3876 L 246.12139,203.2779 L 246.84887,203.2779 L 246.84887,204.73286 L 246.12139,205.3876 z M 707.85348,204.95111 C 707.36762,204.17374 706.87608,203.40126 706.39852,202.62317 L 705.67104,201.89569 C 706.4046,202.83285 707.15243,203.89311 707.85348,204.95111 z M 149.07545,204.00538 L 149.80293,203.2779 L 148.34797,202.62317 L 146.96575,201.89569 L 147.69323,202.62317 L 148.34797,202.62317 L 149.07545,204.00538 z M 461.96496,204.00538 L 462.61969,204.00538 L 461.96496,203.2779 L 463.34717,203.2779 L 461.96496,202.62317 L 461.23748,202.62317 L 461.23748,203.2779 L 461.96496,204.00538 z M 253.68719,202.47767 L 253.83269,201.89569 L 253.46895,202.25943 L 253.68719,202.47767 z M 534.56755,200.51348 L 535.29503,199.13126 L 534.56755,198.40378 L 533.18533,198.40378 L 533.18533,199.78599 L 533.91281,199.13126 L 534.56755,199.13126 L 534.56755,200.51348 z M 485.68083,199.78599 L 487.06305,199.78599 L 489.17274,199.13126 L 489.17274,197.02157 L 490.55496,196.29409 L 492.00992,193.52966 L 492.66465,189.31027 L 496.88404,189.31027 L 494.77435,187.92806 L 492.66465,187.27332 L 489.90022,184.43615 L 488.51801,184.43615 L 488.51801,183.05393 L 487.06305,183.05393 L 487.06305,180.28951 L 488.51801,179.56203 L 487.79053,179.56203 L 487.06305,178.17981 L 487.06305,176.7976 L 489.90022,177.45233 L 490.55496,176.7976 L 492.66465,176.7976 L 490.55496,176.07012 L 490.55496,174.68791 L 488.51801,175.34264 L 485.0261,173.30569 L 485.0261,171.85073 L 486.40832,170.46852 L 490.55496,171.85073 L 491.28244,170.46852 L 496.88404,167.70409 L 498.26625,165.59439 L 500.37595,167.70409 L 503.86786,165.59439 L 504.52259,166.97661 L 505.97755,166.97661 L 506.63228,167.70409 L 508.74198,168.35882 L 509.46946,166.97661 L 510.85167,162.10249 L 512.23389,161.37501 L 512.96137,159.99279 L 514.34358,159.99279 L 514.99831,158.61058 L 516.45327,158.61058 L 519.2177,156.50088 L 517.10801,158.61058 L 515.72579,161.37501 L 514.99831,160.72027 L 514.34358,163.4847 L 514.34358,165.59439 L 517.10801,168.35882 L 519.2177,168.35882 L 523.43709,164.86691 L 528.96594,164.86691 L 530.42091,164.21218 L 530.42091,162.82997 L 529.69343,162.10249 L 528.31121,162.10249 L 527.58373,161.37501 L 529.69343,160.72027 L 528.31121,159.99279 L 526.929,157.22836 L 524.09182,158.61058 L 524.09182,157.22836 L 523.43709,157.22836 L 523.43709,156.50088 L 522.70961,156.50088 L 521.98213,155.84615 L 521.98213,156.50088 L 519.2177,157.22836 L 521.3274,153.73646 L 522.70961,150.24455 L 524.8193,148.13485 L 527.58373,147.40737 L 525.47404,148.86234 L 525.47404,149.51707 L 526.929,149.51707 L 527.43824,150.0263 L 528.31121,150.24455 L 528.31121,150.89928 L 528.31121,151.62676 L 529.69343,151.62676 L 529.69343,149.51707 L 530.42091,148.86234 L 531.07564,149.51707 L 533.18533,148.86234 L 532.45785,148.13485 L 531.07564,147.40737 L 530.42091,146.75264 L 529.69343,148.13485 L 530.42091,145.37043 L 531.80312,143.91547 L 531.07564,145.37043 L 532.45785,146.02516 L 533.18533,147.40737 L 533.91281,146.02516 L 533.91281,146.75264 L 535.29503,145.37043 L 534.56755,146.75264 L 535.94976,145.37043 L 538.05946,146.02516 L 539.44167,142.53325 L 542.93358,137.65913 L 551.37235,129.94783 L 550.64487,129.2931 L 548.53518,128.56562 L 549.91739,130.67531 L 539.44167,118.0899 L 532.45785,115.32547 L 526.20152,115.32547 L 524.09182,116.70768 L 522.78236,116.05295 L 522.70961,115.9802 L 516.45327,113.94325 L 512.96137,115.32547 L 507.43251,122.30928 L 507.43251,123.6915 L 506.70503,125.80119 L 508.08724,125.80119 L 508.08724,124.41898 L 508.81473,124.41898 L 507.43251,127.91089 L 508.08724,128.56562 L 508.81473,127.91089 L 508.08724,129.2931 L 506.70503,129.2931 L 506.70503,131.40279 L 505.32282,134.16722 L 504.59534,135.54944 L 505.97755,138.38661 L 506.63228,138.9686 L 506.63228,139.04134 L 506.70503,139.04134 L 508.0145,139.76882 L 509.46946,139.76882 L 508.74198,140.42356 L 505.25007,141.15104 L 503.86786,139.76882 L 501.75816,139.76882 L 501.03068,140.42356 L 498.26625,141.15104 L 494.77435,143.26073 L 491.28244,144.64295 L 488.51801,144.64295 L 485.0261,146.75264 L 481.53419,148.13485 L 480.07923,149.51707 L 477.3148,150.24455 L 477.3148,152.35424 L 476.58732,152.35424 L 475.93259,153.73646 L 474.55038,157.22836 L 473.8229,156.50088 L 475.20511,153.73646 L 473.09542,156.50088 L 470.33099,158.61058 L 470.33099,157.8831 L 468.94878,158.61058 L 466.83908,158.61058 L 465.45687,159.99279 L 466.1116,162.10249 L 465.45687,162.82997 L 466.83908,162.10249 L 466.1116,163.4847 L 466.83908,166.32188 L 466.1116,168.35882 L 465.45687,169.81378 L 464.07465,171.196 L 466.1116,170.46852 L 464.72939,171.85073 L 466.83908,171.196 L 466.1116,172.57821 L 468.22129,173.30569 L 468.22129,174.68791 L 468.94878,175.34264 L 468.22129,175.34264 L 468.94878,176.7976 L 470.33099,176.07012 L 471.05847,176.7976 L 468.94878,177.45233 L 468.94878,178.17981 L 469.60351,178.17981 L 469.60351,178.83455 L 470.33099,178.83455 L 470.33099,180.28951 L 470.33099,181.67172 L 471.7132,181.67172 L 469.60351,182.32645 L 470.33099,182.32645 L 470.33099,183.05393 L 469.60351,183.78142 L 471.05847,183.78142 L 470.33099,184.43615 L 471.7132,184.43615 L 471.7132,185.16363 L 472.44068,185.16363 L 473.09542,186.54584 L 473.8229,190.03775 L 474.55038,190.76523 L 475.20511,190.03775 L 474.55038,191.41996 L 475.20511,192.14745 L 475.20511,192.80218 L 476.58732,194.91187 L 479.4245,194.91187 L 479.4245,195.63935 L 480.80671,194.91187 L 480.80671,195.63935 L 481.53419,195.63935 L 481.53419,196.29409 L 482.18893,195.63935 L 483.57114,197.02157 L 483.57114,198.40378 L 485.68083,199.78599 z M 167.9172,199.13126 L 167.9172,198.40378 L 168.64468,197.02157 L 170.75438,197.74905 L 169.29942,197.74905 L 169.29942,199.13126 L 167.9172,199.13126 z M 451.48924,199.13126 L 452.14397,199.13126 L 452.87145,198.40378 L 451.48924,199.13126 z M 234.99094,198.40378 L 234.26346,195.63935 L 234.99094,197.02157 L 234.99094,198.40378 z M 266.41811,198.40378 L 266.41811,197.02157 L 267.80032,195.63935 L 268.5278,196.29409 L 268.5278,197.02157 L 266.41811,198.40378 z M 703.3431,197.96729 L 702.90661,197.02157 L 702.47013,196.58508 C 702.75828,197.04757 703.078,197.50291 703.3431,197.96729 z M 247.57635,197.74905 L 246.12139,195.63935 L 246.12139,194.25714 L 247.57635,196.29409 L 247.57635,197.74905 z M 769.9076,197.74905 L 771.36256,196.29409 L 771.36256,194.25714 L 770.63508,196.29409 L 769.9076,196.29409 L 769.9076,197.74905 z M 701.96089,195.78485 L 701.5244,194.91187 L 701.16066,194.54813 C 701.43741,194.9595 701.69443,195.37262 701.96089,195.78485 z M 443.77794,194.91187 L 444.50542,194.91187 L 443.77794,194.25714 L 443.12321,194.25714 L 443.77794,194.91187 z M 700.36043,193.38416 L 700.06944,192.80218 L 699.77845,192.51119 C 699.98028,192.80383 700.15948,193.09145 700.36043,193.38416 z M 248.23109,192.80218 L 247.57635,192.14745 L 248.95857,191.41996 L 248.23109,192.14745 L 248.23109,192.80218 z M 698.97822,191.27447 L 698.68723,190.76523 L 698.39623,190.47424 C 698.578,190.74412 698.7938,191.00485 698.97822,191.27447 z M 697.66875,189.31027 L 697.30501,188.65554 L 697.08677,188.43729 C 697.2704,188.7308 697.47821,189.01732 697.66875,189.31027 z M 302.7194,187.92806 L 302.7194,186.54584 L 301.99192,186.54584 L 301.99192,187.27332 L 301.33719,186.54584 L 301.33719,187.27332 L 302.7194,187.92806 z M 427.70061,187.27332 L 429.15557,186.54584 L 429.81031,187.27332 L 430.53779,187.27332 L 430.53779,185.16363 L 430.53779,184.43615 L 429.81031,183.78142 L 429.15557,182.32645 L 430.53779,181.67172 L 431.19252,182.32645 L 430.53779,180.94424 L 430.53779,180.28951 L 431.19252,180.28951 L 429.81031,179.56203 L 430.53779,178.17981 L 429.81031,177.45233 L 429.81031,176.07012 L 431.19252,175.34264 L 430.53779,174.68791 L 431.92,172.57821 L 430.53779,173.30569 L 429.15557,171.85073 L 429.15557,170.46852 L 428.42809,170.46852 L 427.70061,168.35882 L 426.3184,169.81378 L 427.04588,170.46852 L 426.3184,170.46852 L 427.04588,171.196 L 426.3184,171.196 L 427.04588,171.85073 L 427.04588,172.57821 L 427.04588,173.30569 L 428.42809,171.85073 L 429.15557,173.30569 L 428.42809,175.34264 L 427.70061,175.34264 L 429.15557,176.7976 L 429.15557,177.45233 L 427.04588,178.83455 L 428.42809,179.56203 L 429.15557,178.83455 L 429.81031,179.56203 L 429.81031,181.67172 L 429.15557,182.32645 L 429.15557,183.78142 L 430.53779,185.16363 L 429.81031,186.54584 L 429.15557,186.54584 L 428.42809,186.54584 L 427.70061,187.27332 z M -38.760106,186.54584 L -39.487586,185.16363 L -38.105373,185.81836 L -38.105373,186.54584 L -38.760106,186.54584 z M 255.94238,183.05393 L 256.59712,182.32645 L 255.94238,181.67172 L 255.2149,182.32645 L 255.94238,183.05393 z M 457.74557,180.94424 L 458.47305,180.94424 L 459.12778,180.28951 L 459.85526,180.28951 L 461.96496,180.28951 L 463.34717,178.83455 L 464.07465,177.45233 L 461.23748,179.56203 L 459.85526,180.28951 L 459.12778,179.56203 L 459.12778,180.28951 L 457.74557,180.94424 z M 352.3336,174.68791 L 354.37054,169.0863 L 352.98833,170.46852 L 352.3336,172.57821 L 351.60612,172.57821 L 352.3336,173.30569 L 352.3336,174.68791 z M 207.8559,171.77798 L 209.16537,171.196 L 209.16537,170.46852 L 207.8559,171.77798 z M 705.67104,169.0863 L 705.67104,168.35882 L 705.4528,167.84959 L 705.01631,165.81264 L 705.01631,164.21218 L 704.50707,163.26646 L 704.28883,162.10249 L 705.67104,161.37501 L 705.67104,160.72027 L 706.39852,159.99279 L 705.01631,159.99279 L 705.01631,161.37501 L 704.28883,162.10249 L 704.28883,162.82997 L 704.50707,163.26646 L 705.01631,165.81264 L 705.01631,166.97661 L 705.4528,167.84959 L 705.67104,169.0863 z M -31.776289,167.70409 L -31.776289,166.97661 L -31.121557,166.32188 L -31.121557,166.97661 L -31.776289,167.70409 z M -31.121557,165.59439 L -30.394076,162.82997 L -29.011862,162.10249 L -29.739343,164.86691 L -31.121557,165.59439 z M 361.35436,164.21218 L 364.19153,162.82997 L 364.84627,162.82997 L 369.06566,162.10249 L 368.33817,162.82997 L 368.33817,164.21218 L 369.06566,163.4847 L 369.79314,163.4847 L 372.55756,160.72027 L 373.28504,159.99279 L 371.83008,159.33806 L 371.83008,160.72027 L 370.44787,159.99279 L 369.06566,160.72027 L 362.80932,162.82997 L 361.35436,164.21218 z M 421.44428,162.10249 L 425.66367,162.10249 L 421.44428,161.37501 L 421.44428,162.10249 z M -23.41026,161.37501 L -22.755527,159.33806 L -21.300565,159.33806 L -21.300565,159.99279 L -22.755527,161.37501 L -23.41026,161.37501 z M 189.95987,161.37501 L 190.97834,161.37501 L 191.77857,161.15676 C 191.17592,161.26154 190.56562,161.31527 189.95987,161.37501 z M 378.15917,161.37501 L 378.15917,160.72027 L 382.5968,158.82882 L 385.14298,159.33806 L 383.03329,158.61058 L 382.5968,158.82882 L 381.65107,158.61058 L 378.8139,159.99279 L 378.15917,159.33806 L 373.93978,160.72027 L 377.43169,160.72027 L 378.15917,161.37501 z M 417.95237,161.37501 L 416.57015,159.99279 L 413.73298,157.8831 L 416.57015,160.72027 L 417.95237,161.37501 z M 433.30221,161.37501 L 434.02969,161.37501 L 436.13939,161.37501 L 437.5216,160.72027 L 438.17634,160.72027 L 440.28603,160.72027 L 437.5216,159.99279 L 436.13939,160.72027 L 434.68443,159.99279 L 434.02969,160.72027 L 433.30221,161.37501 z M 168.64468,160.72027 L 168.64468,159.99279 L 170.0269,159.33806 L 170.0269,159.99279 L 168.64468,160.72027 z M 430.53779,160.72027 L 431.19252,160.72027 L 429.15557,159.99279 L 430.53779,160.72027 z M 706.39852,159.33806 L 706.39852,158.61058 L 705.01631,158.61058 L 705.01631,157.8831 L 704.28883,158.61058 L 706.39852,159.33806 z M 385.79771,156.50088 L 387.25268,155.84615 L 387.25268,154.39119 L 389.28962,152.35424 L 389.28962,150.89928 L 387.25268,150.24455 L 385.14298,150.24455 L 383.76077,148.86234 L 382.30581,148.13485 L 382.30581,147.40737 L 383.03329,148.13485 L 383.76077,147.40737 L 382.30581,147.40737 L 381.65107,143.91547 L 382.30581,143.26073 L 381.65107,143.26073 L 381.65107,142.53325 L 376.04947,139.04134 L 380.92359,142.53325 L 380.92359,143.91547 L 382.30581,147.40737 L 380.92359,149.51707 L 383.03329,149.51707 L 383.03329,150.24455 L 383.76077,150.24455 L 385.14298,150.89928 L 387.25268,151.62676 L 387.90741,153.00898 L 385.79771,156.50088 z M 706.39852,153.73646 L 705.88929,152.136 L 706.39852,151.62676 L 707.05326,151.62676 L 706.39852,150.24455 L 706.39852,151.62676 L 705.67104,151.62676 L 705.88929,152.136 L 705.67104,152.35424 L 706.39852,153.73646 z M -19.918352,147.40737 L -19.918352,146.75264 L -19.918352,145.37043 L -19.263619,143.91547 L -16.426444,142.53325 L -15.771711,143.91547 L -18.536138,145.37043 L -19.263619,146.75264 L -19.918352,147.40737 z M 707.05326,147.40737 L 709.89043,146.02516 L 713.38234,143.26073 L 719.63867,143.91547 L 718.25646,143.26073 L 713.38234,143.26073 L 707.05326,147.40737 z M 410.96855,144.64295 L 412.35077,143.91547 L 411.69603,143.26073 L 410.96855,143.26073 L 410.96855,144.64295 z M 531.80312,143.26073 L 531.80312,141.87852 L 533.91281,140.42356 L 531.80312,143.26073 z M 725.24028,139.04134 L 725.96776,139.04134 L 725.60402,138.6776 L 726.62249,137.65913 L 726.186,136.71341 L 726.62249,136.27692 L 726.62249,135.54944 L 726.62249,134.8947 L 729.45967,131.40279 L 725.96776,134.8947 L 724.5128,135.54944 L 725.24028,136.93165 L 725.96776,134.8947 L 726.62249,135.54944 L 725.96776,136.27692 L 726.186,136.71341 L 725.96776,136.93165 L 726.62249,137.65913 L 725.24028,138.38661 L 725.60402,138.6776 L 725.24028,139.04134 z M 231.49903,134.8947 L 235.64567,131.40279 L 234.26346,131.40279 L 231.49903,134.8947 z M 279.00353,134.16722 L 278.27605,132.05753 L 278.27605,133.43974 L 279.00353,134.16722 z M 482.91641,131.40279 L 487.06305,130.67531 L 483.57114,129.94783 L 481.53419,128.56562 L 482.18893,129.94783 L 481.53419,130.67531 L 482.91641,131.40279 z M 217.5314,128.56562 L 218.91361,128.56562 L 216.14918,127.18341 L 217.5314,128.56562 z M 227.27964,128.56562 L 227.27964,127.91089 L 228.00712,127.18341 L 226.62491,127.91089 L 227.27964,128.56562 z M 286.64208,126.45593 L 287.36956,125.80119 L 283.15017,122.96402 L 281.76795,122.96402 L 285.98734,125.07371 L 286.64208,126.45593 z M 214.69422,125.07371 L 217.5314,123.6915 L 213.31201,123.6915 L 211.92979,122.30928 L 211.92979,122.96402 L 213.31201,124.41898 L 214.69422,125.07371 z M 353.71581,123.6915 L 355.8255,120.19959 L 354.37054,120.19959 L 353.71581,123.6915 z M 474.55038,121.5818 L 480.07923,121.5818 L 480.80671,120.92707 L 478.69702,118.81738 L 477.3148,120.92707 L 474.55038,120.92707 L 474.55038,121.5818 z M 228.66185,120.19959 L 226.62491,115.9802 L 226.62491,118.0899 L 227.27964,118.0899 L 228.66185,120.19959 z M 232.15376,119.47211 L 231.49903,118.0899 L 230.11681,116.70768 L 232.15376,119.47211 z M 241.24727,115.9802 L 239.86506,112.48829 L 239.13758,113.21577 L 239.13758,113.94325 L 241.24727,115.9802 z M 263.58093,108.99638 L 262.9262,108.34165 L 264.30841,106.95944 L 263.58093,108.99638 z M 264.30841,106.95944 L 262.9262,106.23196 L 264.30841,103.46753 L 264.30841,106.95944 z M 265.69063,104.12226 L 267.07284,102.01257 L 269.18254,100.63036 L 269.18254,101.35784 L 267.07284,102.74005 L 268.5278,102.01257 L 267.80032,102.74005 L 265.69063,104.12226 z M 488.51801,103.46753 L 489.90022,102.74005 L 490.55496,99.975622 L 492.00992,99.975622 L 493.39213,100.63036 L 494.04686,99.975622 L 493.39213,99.248142 L 496.15656,98.520661 L 495.50183,97.138447 L 494.77435,96.483714 L 495.50183,95.028753 L 494.77435,94.37402 L 492.66465,95.028753 L 489.90022,99.248142 L 488.51801,99.248142 L 487.79053,99.975622 L 487.79053,102.01257 L 486.40832,101.35784 L 486.40832,102.74005 L 488.51801,103.46753 z M 471.7132,102.74005 L 473.8229,102.74005 L 471.7132,100.63036 L 471.7132,97.865928 L 473.09542,98.520661 L 473.8229,97.865928 L 473.09542,95.756234 L 471.7132,95.028753 L 470.33099,96.483714 L 469.60351,95.028753 L 468.22129,95.028753 L 466.83908,94.37402 L 467.56656,96.483714 L 466.83908,97.138447 L 470.33099,99.248142 L 471.05847,100.63036 L 470.33099,99.975622 L 469.60351,100.63036 L 471.7132,102.74005 z M 266.41811,99.248142 L 267.80032,97.865928 L 269.18254,96.483714 L 267.80032,98.520661 L 266.41811,99.248142 z M 438.03084,96.629211 C 436.43629,95.942073 434.99658,95.236428 433.66595,94.592264 L 435.41191,95.756234 L 438.03084,96.629211 z M 430.39229,93.137302 C 428.67234,92.382282 426.75342,91.647096 424.2087,90.882112 L 425.66367,91.536845 L 430.39229,93.137302 z M 277.54857,92.264325 L 277.54857,91.536845 L 279.00353,90.882112 L 280.38574,91.536845 L 277.54857,92.264325 z M 229.38933,90.882112 L 228.66185,87.390204 L 227.27964,88.044937 L 226.62491,87.390204 L 224.51521,87.390204 L 223.78773,86.00799 L 223.133,85.280509 L 223.78773,83.898296 L 223.133,83.898296 L 223.133,83.170815 L 224.51521,82.516082 L 223.133,81.788601 L 223.133,81.06112 L 224.51521,80.406388 L 223.133,79.678907 L 225.16994,79.024174 L 223.78773,77.569212 L 225.16994,76.91448 L 226.62491,75.532266 L 228.00712,77.569212 L 227.27964,77.569212 L 228.66185,78.296693 L 228.66185,81.06112 L 230.11681,82.516082 L 230.11681,90.882112 L 229.38933,90.882112 z M 276.89383,90.882112 L 278.27605,90.154631 L 278.27605,90.663868 L 276.89383,90.882112 z M 278.27605,90.663868 L 279.00353,90.518371 L 278.27605,90.882112 L 278.27605,90.663868 z M 279.00353,90.518371 L 279.65826,90.154631 L 281.04047,90.154631 L 279.00353,90.518371 z M 236.37315,88.772417 L 234.26346,88.044937 L 236.37315,87.390204 L 236.37315,88.772417 z M 116.9208,86.662723 L 118.23026,85.789746 L 119.39423,85.426006 L 121.14018,86.00799 L 121.86766,84.553029 L 119.39423,85.426006 L 119.03049,85.280509 L 118.23026,85.789746 L 117.64828,86.00799 L 116.9208,86.662723 z M 495.50183,84.553029 L 496.88404,83.170815 L 494.77435,83.898296 L 495.50183,84.553029 z M 296.46307,83.170815 L 297.84528,82.516082 L 299.22749,81.06112 L 297.1178,81.788601 L 296.46307,83.170815 z M 451.48924,83.170815 L 452.87145,83.170815 L 452.87145,82.516082 L 452.87145,81.788601 L 451.48924,83.170815 z M 553.4093,81.06112 L 554.86426,81.06112 L 553.4093,80.406388 L 552.75457,79.024174 L 552.75457,79.678907 L 553.4093,81.06112 z M 121.86766,80.406388 L 122.5224,80.406388 L 120.4127,79.024174 L 121.86766,80.406388 z M 506.63228,80.406388 L 506.63228,79.678907 L 508.0145,79.024174 L 505.97755,78.296693 L 506.63228,80.406388 z M 371.17535,78.296693 L 373.28504,78.296693 L 372.55756,77.569212 L 370.44787,77.569212 L 371.17535,78.296693 z M 596.76716,78.296693 C 595.6646,77.595891 594.61209,76.825599 593.56624,76.041503 C 594.16371,76.541567 594.7108,77.040375 595.3122,77.569212 L 596.76716,78.296693 z M 142.81911,77.569212 L 143.47385,74.804785 L 142.09163,76.91448 L 142.81911,77.569212 z M 403.25726,75.532266 L 406.74916,74.077304 L 403.98474,74.804785 L 403.25726,74.804785 L 403.25726,75.532266 z M 226.62491,74.077304 L 221.67804,70.585396 L 219.64109,71.312877 L 218.91361,72.040358 L 218.18613,69.203183 L 219.64109,69.203183 L 219.64109,66.438755 L 220.29582,65.711275 L 219.64109,62.946847 L 219.64109,61.564634 L 220.29582,62.219367 L 221.0233,61.564634 L 220.29582,60.837153 L 220.29582,60.109672 L 219.64109,60.837153 L 219.64109,59.454939 L 218.91361,58.072726 L 218.91361,56.617764 L 218.18613,55.963031 L 218.91361,54.580818 L 218.18613,54.580818 L 218.18613,53.125856 L 219.64109,54.580818 L 220.29582,52.471123 L 221.0233,53.125856 L 221.67804,52.471123 L 223.133,53.125856 L 223.78773,55.235551 L 223.133,55.963031 L 227.27964,53.853337 L 228.00712,55.963031 L 229.38933,62.219367 L 229.38933,62.946847 L 228.66185,64.329061 L 230.77155,67.093488 L 229.38933,69.930664 L 230.11681,69.930664 L 228.66185,71.312877 L 229.38933,72.040358 L 228.66185,72.040358 L 228.66185,73.422572 L 228.00712,72.695091 L 228.00712,73.422572 L 227.27964,73.422572 L 226.62491,74.077304 z M 336.911,74.077304 L 336.25627,72.695091 L 336.911,72.040358 L 338.36596,72.040358 L 337.63848,73.422572 L 336.911,74.077304 z M 364.84627,74.077304 L 366.95596,74.077304 L 365.57375,73.422572 L 364.84627,74.077304 z M 402.60252,74.077304 L 403.98474,72.695091 L 403.98474,71.312877 L 405.36695,70.585396 L 404.71222,72.040358 L 406.74916,70.585396 L 406.09443,69.930664 L 406.09443,68.54845 L 405.36695,68.54845 L 401.87504,69.930664 L 401.87504,71.312877 L 402.60252,72.040358 L 402.60252,74.077304 z M 308.321,73.422572 L 308.97574,72.040358 L 308.321,71.312877 L 308.321,73.422572 z M 361.35436,73.422572 L 362.08184,73.422572 L 362.08184,72.695091 L 360.69963,72.695091 L 361.35436,73.422572 z M 309.70322,72.040358 L 311.08543,72.040358 L 311.81291,70.585396 L 310.4307,69.930664 L 310.4307,71.312877 L 309.70322,72.040358 z M 343.24009,72.040358 L 343.89482,71.312877 L 344.6223,72.040358 L 343.24009,72.040358 z M 538.78694,71.312877 L 539.44167,71.312877 L 539.29617,70.803641 L 539.44167,70.585396 L 539.15068,70.294404 L 538.78694,69.203183 L 538.05946,69.203183 L 539.15068,70.294404 L 539.29617,70.803641 L 538.78694,71.312877 z M 346.73199,70.585396 L 345.34978,68.54845 L 347.38673,69.203183 L 346.73199,70.585396 z M 181.88483,69.203183 L 178.39293,68.54845 L 174.90102,67.093488 L 176.28323,65.056542 L 177.01071,65.711275 L 177.73819,64.329061 L 179.12041,62.946847 L 179.77514,62.946847 L 181.2301,63.60158 L 183.26705,66.438755 L 182.61232,67.093488 L 181.88483,66.438755 L 181.2301,67.093488 L 181.88483,68.54845 L 181.2301,68.54845 L 181.88483,69.203183 z M 186.75896,69.203183 L 186.75896,68.54845 L 186.10422,67.820969 L 188.86865,66.438755 L 189.59613,66.438755 L 189.59613,67.820969 L 188.86865,68.54845 L 186.75896,69.203183 z M 341.85787,67.093488 L 341.13039,66.438755 L 341.13039,65.056542 L 342.5126,65.056542 L 342.5126,65.711275 L 343.24009,65.056542 L 343.89482,67.093488 L 342.5126,66.438755 L 342.5126,67.093488 L 341.85787,67.093488 z M 5.9072182,65.711275 L 7.2894319,62.219367 L 10.126607,62.219367 L 8.0169127,64.329061 L 7.2894319,65.711275 L 5.9072182,65.711275 z M 630.95876,65.711275 L 630.23128,65.056542 L 628.84906,62.946847 L 627.46685,62.219367 L 628.84906,61.564634 L 626.08464,57.345245 L 626.73937,55.963031 L 630.95876,62.219367 L 630.95876,65.711275 z M 391.39932,65.056542 L 390.74458,63.60158 L 390.0171,62.946847 L 389.28962,64.329061 L 391.39932,65.056542 z M 166.53499,63.60158 L 165.15277,62.219367 L 166.53499,61.564634 L 167.9172,62.219367 L 167.9172,63.60158 L 166.53499,63.60158 z M 501.03068,63.60158 L 503.14037,62.946847 L 499.64847,62.946847 L 501.03068,63.60158 z M 351.60612,62.946847 L 348.11421,60.837153 L 348.11421,60.109672 L 350.2239,59.454939 L 350.2239,60.837153 L 351.60612,60.837153 L 350.2239,59.454939 L 351.60612,59.454939 L 353.71581,59.454939 L 354.37054,60.109672 L 351.60612,62.946847 z M 491.28244,61.564634 L 492.66465,60.109672 L 496.15656,58.727459 L 496.88404,56.617764 L 495.50183,56.617764 L 493.39213,57.345245 L 491.28244,60.109672 L 491.28244,61.564634 z M 166.53499,60.837153 L 165.80751,60.109672 L 165.80751,59.454939 L 167.26247,59.454939 L 166.53499,60.837153 z M 301.99192,60.109672 L 301.99192,58.727459 L 304.8291,56.617764 L 304.10162,57.345245 L 304.10162,58.727459 L 303.44688,58.727459 L 304.10162,60.109672 L 301.99192,60.109672 z M 304.8291,56.617764 L 305.48383,55.963031 L 305.48383,56.617764 L 304.8291,56.617764 z M 386.5252,60.109672 L 387.25268,60.109672 L 387.25268,59.454939 L 387.90741,59.454939 L 388.63489,58.072726 L 387.90741,56.617764 L 387.25268,57.345245 L 387.25268,58.727459 L 386.5252,58.727459 L 386.5252,60.109672 z M 526.929,60.109672 L 524.09182,58.727459 L 523.72808,58.872955 L 523.43709,58.727459 L 521.98213,58.727459 L 520.59992,56.617764 L 520.59992,55.963031 L 520.09068,56.472268 L 519.29045,56.326772 L 517.10801,55.235551 L 514.99831,55.235551 L 514.99831,55.963031 L 513.6161,55.963031 L 514.99831,56.617764 L 514.99831,55.963031 L 517.10801,55.235551 L 517.83549,55.963031 L 519.29045,56.326772 L 519.94518,56.617764 L 520.09068,56.472268 L 520.59992,56.617764 L 521.98213,59.454939 L 523.72808,58.872955 L 526.929,60.109672 z M 392.1268,58.727459 L 394.89123,56.617764 L 393.50901,55.235551 L 391.39932,58.072726 L 392.1268,58.727459 z M 528.96594,57.345245 L 530.42091,57.345245 L 531.07564,56.617764 L 528.96594,57.345245 z M 338.36596,56.617764 L 338.36596,55.235551 L 339.0207,55.235551 L 339.74818,54.580818 L 340.40291,54.580818 L 338.36596,56.617764 z M 509.46946,56.617764 L 510.12419,55.963031 L 510.85167,56.617764 L 512.23389,55.963031 L 510.12419,55.963031 L 508.0145,55.963031 L 509.46946,56.617764 z M 384.4155,55.963031 L 384.4155,55.235551 L 382.30581,53.125856 L 383.03329,54.580818 L 384.4155,55.963031 z M 350.2239,55.235551 L 349.49642,54.580818 L 350.87863,53.125856 L 350.2239,51.743642 L 350.87863,51.08891 L 352.3336,52.471123 L 351.60612,54.580818 L 350.2239,55.235551 z M 497.53877,54.580818 L 498.99373,53.853337 L 499.64847,53.853337 L 500.37595,53.125856 L 499.64847,52.471123 L 497.53877,53.125856 L 497.53877,54.580818 z M 500.37595,52.471123 L 500.59419,51.598146 L 503.86786,49.633948 L 505.25007,49.633948 L 505.25007,47.597002 L 502.48564,47.597002 L 500.37595,49.633948 L 501.03068,49.633948 L 500.59419,51.598146 L 500.37595,51.743642 L 500.37595,52.471123 z M 310.4307,51.743642 L 309.70322,51.08891 L 309.70322,49.633948 L 310.4307,48.979215 L 311.08543,49.633948 L 310.4307,51.743642 z M 357.86245,48.979215 L 356.48024,47.597002 L 358.58993,46.869521 L 359.31741,48.251734 L 359.97214,48.979215 L 357.86245,48.979215 z M 545.04327,48.979215 L 546.78923,48.397231 L 548.53518,48.979215 L 547.15297,48.251734 L 546.78923,48.397231 L 546.42549,48.251734 L 545.04327,48.979215 z M 550.64487,48.979215 L 552.02709,48.251734 L 553.4093,46.869521 L 550.64487,48.979215 z M 309.70322,47.597002 L 309.70322,46.869521 L 308.97574,46.869521 L 308.321,44.759826 L 308.97574,44.759826 L 308.97574,46.14204 L 309.70322,44.105094 L 311.81291,44.105094 L 312.46765,44.759826 L 310.4307,46.14204 L 309.70322,47.597002 z M 342.5126,47.597002 L 341.85787,46.869521 L 343.89482,44.759826 L 344.6223,45.487307 L 343.89482,46.869521 L 343.24009,46.869521 L 342.5126,47.597002 z M 355.09802,46.869521 L 352.98833,46.14204 L 352.3336,44.759826 L 355.09802,46.869521 z M 422.17176,45.487307 L 416.57015,39.885705 L 410.24107,38.503491 L 410.96855,35.666316 L 408.85886,35.666316 L 407.47664,33.629369 L 406.74916,34.284102 L 408.20412,30.792194 L 410.96855,30.792194 L 412.35077,31.519675 L 413.73298,30.792194 L 413.73298,32.174408 L 417.95237,34.284102 L 417.95237,36.393797 L 420.7168,37.121277 L 418.67985,39.158224 L 422.17176,45.487307 z M 269.91002,44.105094 L 268.5278,42.650132 L 267.07284,43.377613 L 262.19872,41.267918 L 260.08903,41.995399 L 258.05208,41.267918 L 256.59712,42.650132 L 255.2149,42.650132 L 255.2149,43.377613 L 253.10521,43.377613 L 253.10521,41.995399 L 251.723,41.995399 L 250.34078,43.377613 L 250.34078,42.650132 L 248.23109,41.995399 L 248.23109,39.885705 L 249.6133,37.121277 L 251.723,37.77601 L 253.83269,36.393797 L 258.05208,32.901889 L 262.19872,32.174408 L 263.58093,29.409981 L 267.80032,28.6825 L 269.18254,28.027767 L 268.5278,30.137461 L 270.56475,31.519675 L 269.18254,33.629369 L 269.91002,33.629369 L 268.5278,34.284102 L 268.5278,36.393797 L 272.67444,44.105094 L 272.01971,44.105094 L 269.91002,43.377613 L 269.91002,44.105094 z M 311.08543,42.650132 L 311.08543,41.995399 L 312.46765,39.885705 L 313.12238,41.19517 L 311.08543,42.650132 z M 313.12238,41.19517 L 313.92261,40.613186 L 313.19513,41.267918 L 313.12238,41.19517 z M 349.49642,41.267918 L 348.11421,39.158224 L 348.84169,38.503491 L 350.2239,39.158224 L 350.2239,39.885705 L 349.49642,41.267918 z M 363.46405,41.267918 L 362.08184,39.885705 L 360.69963,39.158224 L 361.35436,37.77601 L 361.35436,39.158224 L 364.19153,40.613186 L 363.46405,41.267918 z M 347.38673,39.885705 L 346.00451,39.158224 L 346.73199,38.503491 L 347.38673,38.503491 L 347.38673,39.885705 z M 371.83008,38.503491 L 369.06566,36.393797 L 368.33817,34.284102 L 369.06566,34.284102 L 369.06566,31.519675 L 370.44787,33.629369 L 371.17535,34.284102 L 371.83008,38.503491 z M 539.00518,37.557766 C 538.45344,37.167138 537.90712,36.794691 537.40472,36.393797 L 534.56755,35.011583 C 536.10257,35.783155 537.58167,36.637718 539.00518,37.557766 z M 357.20772,37.121277 L 357.20772,36.393797 L 355.8255,36.393797 L 356.48024,35.666316 L 357.86245,36.393797 L 357.20772,37.121277 z M 227.27964,35.666316 L 228.5891,35.011583 L 227.27964,35.011583 L 227.27964,35.666316 z M 341.13039,35.666316 L 341.85787,34.284102 L 342.5126,34.284102 L 342.5126,35.666316 L 341.13039,35.666316 z M 341.85787,34.284102 L 341.13039,35.011583 L 341.13039,34.284102 L 341.85787,34.284102 z M -22.028046,34.284102 L -22.028046,30.137461 L -19.918352,32.174408 L -19.918352,33.629369 L -20.645833,34.284102 L -22.028046,34.284102 z M 698.03249,32.901889 L 699.41471,27.300286 L 700.06944,26.645553 L 700.06944,31.519675 L 698.03249,32.901889 z M 364.84627,30.792194 L 364.19153,28.027767 L 365.57375,25.918073 L 366.30123,27.300286 L 364.84627,28.027767 L 364.84627,30.792194 z M 330.65467,30.137461 L 330.65467,28.027767 L 331.38215,27.300286 L 332.03688,28.6825 L 330.65467,30.137461 z M 631.68624,28.027767 L 630.95876,25.918073 L 632.34097,25.918073 L 633.06845,28.027767 L 631.68624,28.027767 z M -29.011862,25.918073 L -28.284381,23.808378 L -26.247435,24.535859 L -26.247435,25.190592 L -29.011862,25.918073 z M -19.263619,25.190592 L -20.645833,24.535859 L -19.918352,23.153645 L -18.536138,23.153645 L -19.263619,25.190592 z M 593.27525,25.190592 L 591.82029,24.535859 L 593.92998,22.426164 L 595.3122,21.698684 L 594.65747,23.808378 L 593.92998,24.535859 L 592.54777,24.535859 L 593.27525,25.190592 z M -15.771711,24.535859 L -15.771711,20.31647 L -12.934536,20.31647 L -10.824841,22.426164 L -8.060414,23.153645 L -9.4426276,23.808378 L -12.279803,23.153645 L -15.771711,24.535859 z M 341.85787,23.808378 L 340.40291,22.426164 L 338.36596,22.426164 L 337.63848,21.698684 L 336.911,23.153645 L 336.911,20.31647 L 337.63848,19.661737 L 343.89482,20.31647 L 346.73199,19.661737 L 346.73199,18.934256 L 347.38673,17.552043 L 356.48024,21.043951 L 357.86245,20.31647 L 359.31741,21.698684 L 359.31741,23.808378 L 357.86245,22.426164 L 357.20772,22.426164 L 355.09802,21.043951 L 354.37054,21.698684 L 354.37054,23.153645 L 352.3336,22.426164 L 348.84169,22.426164 L 348.11421,23.153645 L 342.5126,21.698684 L 342.5126,22.426164 L 341.85787,22.426164 L 341.85787,23.808378 z M 262.19872,21.698684 L 262.9262,20.31647 L 264.30841,19.661737 L 263.58093,21.043951 L 262.19872,21.698684 z M -6.6782003,16.824562 L -9.4426276,15.442348 L -8.060414,12.677921 L -5.9507195,12.677921 L -5.2959867,14.060135 L -4.5685059,16.169829 L -5.2959867,15.442348 L -6.6782003,16.824562 z M 16.382942,16.824562 L 15.655462,16.169829 L 12.891034,16.169829 L 11.508821,14.714868 L 15.655462,14.714868 L 17.110423,16.169829 L 16.382942,16.824562 z M 9.3991263,14.060135 L 5.1797374,10.568227 L 2.4153102,10.568227 L 3.7975238,9.8407459 L 7.2894319,9.8407459 L 9.3991263,10.568227 L 10.78134,14.060135 L 9.3991263,14.060135 z M 237.10063,11.222959 L 235.64567,9.8407459 L 237.75536,9.8407459 L 237.75536,10.568227 L 237.10063,11.222959 z M 443.77794,11.222959 L 445.16015,7.0763186 L 444.50542,5.694105 L 445.88763,4.9666242 L 445.16015,4.2391434 L 443.77794,4.9666242 L 443.12321,9.1860131 L 443.12321,10.568227 L 443.77794,11.222959 z M 421.44428,-11.110702 L 423.55397,-13.220397 L 420.7168,-11.765435 L 421.44428,-11.110702 z M 119.24873,-17.148793 C 120.23278,-17.468326 121.1856,-17.751124 122.15866,-18.094519 L 121.14018,-18.094519 L 119.24873,-17.148793 z M 122.74064,-18.312763 C 123.16938,-18.462985 123.61921,-18.604803 124.05011,-18.749251 L 123.24988,-18.749251 L 122.74064,-18.312763 z M 125.79606,-19.331236 C 125.96661,-19.381566 126.1338,-19.4288 126.3053,-19.476732 L 126.01431,-19.476732 L 125.79606,-19.331236 z M 128.41499,-19.985969 C 128.77911,-20.058135 129.13509,-20.149367 129.50621,-20.204213 L 128.85148,-20.204213 L 128.41499,-19.985969 z M 397.00092,-22.241159 L 395.61871,-22.96864 L 395.03672,-22.96864 C 395.69078,-22.738174 396.35233,-22.487362 397.00092,-22.241159 z M 394.23649,-23.259633 L 393.50901,-23.696121 L 392.85428,-23.696121 C 393.3181,-23.55407 393.77507,-23.415302 394.23649,-23.259633 z M 142.74636,-23.696121 L 143.47385,-23.696121 L 144.56507,-24.205358 C 143.95587,-24.049619 143.35179,-23.881541 142.74636,-23.696121 z M 391.03558,-24.205358 L 390.74458,-24.350854 L 390.38084,-24.350854 C 390.59739,-24.299965 390.81945,-24.2606 391.03558,-24.205358 z M 145.2198,-24.350854 L 146.31102,-24.350854 L 146.52927,-24.641846 C 146.0945,-24.559414 145.65291,-24.452631 145.2198,-24.350854 z M 410.24107,-24.350854 L 410.96855,-24.350854 L 408.85886,-25.733067 L 406.74916,-25.733067 L 410.24107,-24.350854 z M 389.07138,-24.641846 L 388.63489,-25.078335 L 385.79771,-25.078335 C 386.88863,-25.0213 387.98921,-24.846984 389.07138,-24.641846 z M 362.80932,-29.952456 L 361.35436,-30.679937 L 360.11764,-30.679937 C 360.99858,-30.464161 361.93246,-30.239072 362.80932,-29.952456 z M 175.483,-30.679937 L 176.28323,-30.679937 L 176.79247,-30.970929 C 176.35084,-30.87737 175.92347,-30.787837 175.483,-30.679937 z M 358.58993,-31.043678 L 357.86245,-31.33467 L 356.84398,-31.33467 C 357.42298,-31.234755 358.01307,-31.162961 358.58993,-31.043678 z M 178.75667,-31.33467 L 180.50262,-31.33467 L 180.79361,-31.69841 C 180.11339,-31.60059 179.43363,-31.451509 178.75667,-31.33467 z M 354.73428,-31.69841 L 354.37054,-32.062151 L 351.89711,-32.062151 C 352.844,-31.945312 353.7944,-31.832826 354.73428,-31.69841 z M 183.70354,-32.062151 L 185.37674,-32.062151 L 185.95873,-32.353143 C 185.2011,-32.259397 184.45625,-32.155036 183.70354,-32.062151 z M 349.64192,-32.353143 L 348.84169,-32.716884 L 346.73199,-32.716884 C 347.71809,-32.574297 348.66483,-32.474056 349.64192,-32.353143 z M 446.61511,-75.347261 L 448.65206,-78.111688 L 448.65206,-79.56665 L 450.10702,-79.56665 L 448.65206,-80.221383 L 450.76175,-83.058558 L 450.10702,-83.058558 L 450.76175,-83.713291 L 449.37954,-84.440771 L 450.76175,-85.822985 L 452.14397,-85.822985 L 450.76175,-86.550466 L 448.65206,-85.822985 L 448.65206,-87.205199 L 447.99733,-87.93268 L 447.99733,-89.314893 L 446.61511,-91.424588 L 446.46962,-91.35184 L 445.88763,-92.07932 L 446.61511,-92.806801 L 445.88763,-92.806801 L 445.88763,-92.07932 L 445.88763,-91.424588 L 444.50542,-90.697107 L 443.12321,-92.07932 L 442.39572,-93.534282 L 443.12321,-94.189015 L 441.66824,-95.571228 L 442.39572,-96.298709 L 440.28603,-97.02619 L 441.01351,-97.680923 L 438.90382,-99.790617 L 438.90382,-103.28253 L 436.79412,-107.50191 L 437.5216,-105.39222 L 437.5216,-104.01001 L 438.17634,-102.55504 L 438.17634,-99.790617 L 440.28603,-95.571228 L 441.66824,-94.916496 L 439.6313,-93.534282 L 441.66824,-93.534282 L 441.66824,-92.806801 L 443.77794,-90.042374 L 446.46962,-91.35184 L 447.99733,-89.314893 L 447.26985,-87.93268 L 447.99733,-86.550466 L 447.99733,-83.713291 L 449.37954,-82.331077 L 448.65206,-81.603596 L 448.65206,-80.948863 L 447.99733,-80.948863 L 447.99733,-80.221383 L 445.88763,-81.603596 L 447.26985,-80.221383 L 446.61511,-79.56665 L 447.99733,-80.221383 L 447.26985,-77.456955 L 446.61511,-76.729475 L 446.61511,-75.347261 z" id="path2780"/><g id="g3466" transform="matrix(2.9099234,0,0,2.9099234,376.74786,403.7425)"><path d="M 0,0 L 0.48,-0.48 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path3468"/></g><path id="path4764" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" d="M 273.38738,279.43058 L 271.29224,281.52572 L 274.08576,278.73219 L 273.38738,279.43058"/><path id="path4936" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" d="M 273.38738,279.43058 L 271.29224,281.52572 L 274.08576,278.73219 L 273.38738,279.43058"/><g id="g5390" transform="matrix(2.9099234,0,0,2.9099234,322.97248,273.14514)"><path d="M 0,0 L 0.24,-0.48 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path5392"/></g><g id="g6998" transform="matrix(2.9099234,0,0,2.9099234,30.35058,434.47129)"><path d="M 0,0 L 0.24,0 L 0.24,0.24 L 0.24,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path7000"/></g><g id="g8192" transform="matrix(2.9099234,0,0,2.9099234,303.41779,241.01959)"><path d="M 0,0 L 0.48,0 L 0.72,0.24 L 0.48,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path8194"/></g><g id="g12152" transform="matrix(2.9099234,0,0,2.9099234,158.8528,74.10638)"><path d="M 0,0 L 0.24,0.24 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path12154"/></g><g id="g13720" transform="matrix(2.9099234,0,0,2.9099234,476.61643,-46.015258)"><path d="M 0,0 L 0.96,-0.48 L 1.2,-0.24 L 0.96,-0.48 L 0.24,0 L 0.96,-0.24 L 0.48,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path13722"/></g><g id="g13736" transform="matrix(2.9099234,0,0,2.9099234,476.61643,-46.015258)"><path d="M 0,0 L 0.96,-0.48 L 1.2,-0.24 L 0.96,-0.48 L 0.24,0 L 0.96,-0.24 L 0.48,0 L 0,0" style="fill:#dcdcdc;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path13738"/></g><path id="path76565" d="m 316.67089,436.57988 -1.38221,-0.72748 2.10969,-0.65473 0,0.65473 z m 4.21939,-1.38221 0,-0.72748 0.65473,-1.38222 -0.65473,-0.72748 0,-1.38221 1.38221,0 0.65474,0 0.72748,0.72748 -0.72748,2.03695 -0.65474,0.72748 z m 0,-4.21939 -2.10969,-2.10969 0,-0.65474 1.38221,-2.10969 1.38221,0 0,0.65473 0.72748,0 0,1.45496 z m -8.43878,2.76443 -0.65473,-1.38222 0.65473,0 0.72748,0.72748 z m 6.32909,-2.03695 -0.72748,-0.72748 0,-1.38221 1.38221,0.65473 z m -6.32909,-0.72748 0,-1.38221 2.1097,0.65473 0,0.72748 -1.38222,0 z m 0.72748,-1.38221 -0.72748,-0.72748 1.45497,-0.65474 -0.50924,-0.21824 0.50924,-0.50924 0.65473,2.1097 z m 0.21825,-1.60046 -0.21825,0.21824 0,-0.36374 z m -0.21825,-0.1455 -0.72748,-0.36374 0.72748,0 z m 2.76443,1.01848 0,-0.65474 0.72748,0 0,0.65474 z m 0,-1.38222 -2.03694,-0.72748 0.65473,0 0.72748,0 1.38221,0 0,0.72748 z m -1.38221,-0.72748 -0.65473,-0.65473 -1.45497,0 0.72748,-0.72748 0.72749,0 2.03694,0 -0.65473,-1.38222 1.38221,0 0.72748,0.72748 -0.72748,0.65474 0.72748,0 0,0.72748 z m 2.83717,0.72748 0,-0.72748 0.65474,0 0,0.72748 z m 2.03695,-2.10969 -1.38221,-1.38222 2.10969,-1.38221 0.72748,0 0,0.65473 0.65473,0 -1.38221,0.72748 0.72748,1.38222 z m -5.52885,-0.65474 -0.72749,-0.72748 0,-0.72748 1.38222,0.72748 0.72748,0.72748 z m 9.02076,-0.72748 -0.65474,-0.72748 0.65474,-0.65473 0.72748,0.65473 z m -4.14664,-0.72748 -0.72748,-1.38221 0.72748,-1.38221 0.65473,0 0.72748,1.38221 z m -9.09351,-1.38221 -0.50924,-0.94573 -0.21824,0.291 -0.65474,-1.45496 1.38222,-0.65474 0,-1.38221 -0.72748,0 -0.65474,-1.45496 1.38222,-0.65474 0.72748,-0.72748 0.65473,-0.65473 -0.65473,1.38221 0.65473,0 -1.38221,1.38222 1.38221,0 -0.65473,1.38221 0.65473,0 0.72748,1.38222 0,1.45496 -1.38221,0 z m 0,-6.25634 -1.38222,0 0,-0.72748 0.65474,-0.65473 z m 4.87412,6.25634 0.72748,-0.65473 0.65473,0 -0.65473,0.65473 z m 0,-1.38221 0,-2.1097 0.72748,0 0.65473,0.72748 0,0.65474 z m -8.36603,-1.38222 0,-1.38221 -1.38222,-2.1097 1.38222,0 0,0.65474 0.72748,-0.65474 0,0.65474 0.65473,0.72748 -0.65473,1.38221 2.03695,0 -1.38222,0.72748 z m 44.66732,-0.72748 -1.38221,-0.65473 -0.65473,-1.45496 0.65473,-2.76443 1.38221,-0.72748 -0.65473,-0.65473 0,-0.72748 -0.72748,-0.65474 0.72748,-0.72748 -1.38221,-1.38221 0,-2.1097 -0.72749,0 0,-0.72748 -0.72748,0.72748 -1.38221,-2.10969 0.72748,-0.65473 0.65473,0 0,-1.45497 -0.65473,0 0,0.72749 -0.72748,-0.72749 0,-0.65473 0.72748,0 0,-0.72748 -1.38221,-1.38221 0.65473,-1.38222 -0.65473,-1.38221 0.65473,0 -0.65473,-1.45496 1.38221,-0.65473 -1.38221,-0.72748 0,-0.65474 0.65473,0 0,-2.10969 0.72748,-0.72748 0.65473,0.72748 -0.65473,-2.1097 0.65473,0.72748 0.72748,-0.72748 0.72749,0.72748 -1.45497,-2.10969 0,-0.72748 1.45497,0.72748 -1.45497,-2.10969 2.1097,0 -1.38222,-0.72749 0,-0.65473 3.49191,0.65473 -2.76442,-1.38221 0,-1.38221 0,-2.1097 -0.72749,0 2.1097,-0.65473 0.65473,2.76443 0,-0.72748 1.45496,0.72748 0,-0.72748 -0.72748,0 -0.72748,-1.38222 0,-2.76442 0.72748,0.65473 0.72748,0 -1.45496,-1.38222 -0.65473,-1.38221 1.38221,-0.72748 -0.72748,-0.65473 1.45496,0 -1.45496,-0.72748 0,-2.1097 1.45496,0 0,-0.65473 0.65474,0.65473 0,-1.38221 0.72748,-0.65473 -0.72748,0 0.72748,-0.72749 -0.72748,0 1.38221,-1.38221 -2.03695,0 0.65474,-2.83717 2.10969,-1.38222 2.1097,0 -0.72749,0.72748 0.72749,0 -0.72749,1.38222 2.1097,-1.38222 -0.72748,0.65474 0.72748,0 0.72748,1.45496 0,-1.45496 1.38221,-0.65474 0.65474,0 0.72748,0.65474 0.72748,-0.65474 -0.72748,0 0.72748,-0.72748 -1.45496,0 1.45496,-1.38221 -0.72748,-0.72748 2.10969,0.72748 0.65473,0.72748 0,0.65473 2.83718,-0.65473 -0.72748,0.65473 0.72748,0.72748 1.38221,0 -0.72748,0.65474 0.50924,0.21824 -0.50924,0.50924 0.72748,0.72748 0.72748,-0.72748 2.03695,0.72748 -2.03695,0 2.03695,0.65473 -0.65473,0.72748 0,0.65473 -4.87412,0 -2.83718,1.45497 -2.10969,2.03694 -0.65474,-0.65473 0,0.65473 -0.72748,0.72748 0,0.72748 -1.38221,0.65474 -0.72748,0.72748 -0.65473,0 0.65473,0.65473 -0.65473,1.45496 0.65473,0 -1.38222,0.65473 0.72749,0.72749 0,1.38221 -1.38222,-1.38221 0.65473,1.38221 0,0.72748 -1.38221,-0.72748 1.38221,1.38221 -0.65473,0 -0.72748,-0.65473 -0.72748,0.65473 -0.65473,0.72748 1.38221,-0.72748 0.72748,0.72748 -0.72748,0.65474 0.72748,0 0,1.45496 -2.83717,0.65473 2.10969,0 0.72748,0.72748 -1.45496,0.65473 -2.03695,-0.65473 2.03695,1.38222 0.72748,-0.72749 0,0.72749 -2.10969,1.38221 -0.65474,0.72748 1.38222,-0.72748 0.65473,0.72748 -0.65473,0.65473 0.65473,0 0,0.72748 -0.65473,0 0.65473,0.72748 -1.38221,0.65474 -1.38222,0 2.1097,0.72748 -0.72748,1.38221 -1.38222,0.72748 2.1097,0 0,0.65474 -0.72748,0 0,0.72748 0.72748,0 -0.72748,0.65473 0.72748,0.72748 -0.72748,0.72748 -1.38222,-0.72748 0.72748,0.72748 0,0.65473 0.65474,0 -1.38222,2.1097 0.72748,0 0,1.38221 0.65474,2.1097 -0.65474,0.72748 0.65474,0 0,1.38221 1.38221,9.09351 0.72748,0.65473 -2.10969,3.49191 z m 18.9145,-53.76083 -0.72748,0 0,-0.50924 1.38222,0.50924 z m -0.72748,-0.50924 -0.21824,0 0.21824,-0.21824 z m -23.06114,27.06229 -0.65473,0.65473 -0.72748,-0.65473 0.72748,-1.38222 z m -34.1916,25.82557 0,-1.38222 0.65473,0 0,0.65474 z m 2.1097,0 0,-0.72748 0,-0.65474 -0.72749,-0.72748 1.38222,0.72748 0.72748,0 -0.72748,0.65474 z m -21.67893,-10.47573 -2.1097,-1.38221 0.72748,0 z m -13.96764,-0.72748 0,-1.38221 -0.72748,0.72748 0,-2.83718 -0.65473,0 0,1.45497 -1.38221,-0.72748 -0.72748,1.38221 -0.72749,0 0,-1.38221 -0.65473,0.72748 0.65473,-1.45497 -0.65473,-0.65473 0,-0.72748 -0.72748,0 -0.65473,-0.65473 1.38221,-1.45496 1.38222,0.72748 2.10969,0.72748 0,-1.45496 -1.38221,0 1.38221,-1.38222 -2.10969,0.72748 0,-0.72748 0.72748,-0.65473 1.38221,-0.72748 2.10969,0.72748 0.65474,-1.45496 0.72748,0 0.65473,0.72748 0.72748,1.38221 0.72748,-0.65473 0.65474,1.38221 0,1.38222 1.38221,2.10969 0,0.65473 -0.65473,0.72749 0,0.72748 -1.38222,0 -0.72748,0.65473 -0.72748,-0.65473 0,1.38221 -0.65473,-1.38221 0,0.65473 -0.72748,-0.65473 0,-0.72748 -0.65474,0 0,2.10969 z m -4.87412,-4.14664 -0.72748,1.38222 -1.38221,-0.72749 0.72748,-1.38221 z m -4.21939,0 0,-0.72748 0,-1.38221 -0.65473,0.72748 0,-0.72748 1.38221,-6.98382 -0.72748,2.1097 -0.65473,-0.72748 0,4.21938 -1.45496,1.38222 -0.65473,-2.1097 0,-2.10969 -0.72749,1.45496 -0.65473,0 0.65473,0.65473 -1.38221,0 0.72748,1.38222 0.65473,0 0.72749,1.45496 -2.1097,-1.45496 -0.72748,0.72748 0,-1.38222 -0.65473,1.38222 0,-0.72748 -0.72748,0.72748 0.72748,-1.38222 -1.38222,0 0.65474,-0.72748 -0.65474,0 0.65474,-3.4919 0.72748,0.72748 0.65473,0.65473 0,-0.65473 -0.65473,-0.72748 0.50923,-1.09123 -1.23671,0.43649 0.72748,-1.45496 -0.72748,-0.65473 1.38221,-1.38222 1.45496,0 -1.45496,-0.72748 0.72748,-0.72748 0,-1.38221 1.38221,0 0.72749,0.72748 0,0.65473 1.38221,0 -1.38221,0.72748 0.65473,0.72748 0,1.38222 0.72748,-1.38222 0.72748,2.03695 0,-1.38221 -0.72748,-0.65474 0.72748,-0.72748 1.38221,0.72748 0,1.38222 0.65474,-0.72748 -0.65474,-1.38222 0.65474,-0.72748 0.72748,0 -0.72748,-0.65473 -1.38222,0 0,-0.72748 -0.65473,0 -0.72748,-1.38221 -1.38221,0.72748 -0.72749,-0.72748 0,-2.76443 2.83718,1.38221 0.65473,-0.72748 2.1097,1.38221 -0.72748,-0.65473 0.72748,-0.72748 -1.38222,0 -2.83717,-1.38221 2.10969,-0.72748 0.72748,-0.65474 -2.10969,0.65474 -0.72748,-0.65474 0,0.65474 -1.38222,0 1.38222,-2.76443 1.45496,-1.38221 1.38221,0.65473 0.65474,-0.65473 -2.03695,-1.38222 1.38221,-0.72748 0,-1.38221 1.38222,0 0.72748,1.38221 -0.72748,0.72748 0.72748,0.65473 0,4.21939 1.38221,0.65474 0,4.21939 0.65473,0.72748 0,2.03694 1.45497,0.72748 -0.72748,1.38222 0.72748,0 0.65473,0 0.72748,0.72748 0.65473,0 0,1.38221 -2.03694,0.72748 -0.72748,1.38222 -1.38222,0 0,2.10969 -0.72748,1.38221 -0.65473,-2.10969 -0.72748,1.38221 0.72748,1.38222 -0.72748,1.45496 -0.72748,0.65473 -0.65474,-0.65473 0,0.65473 z m 18.84176,-6.32908 -0.65474,-1.38221 0.65474,0 0.72748,0.72748 0.72748,0 0.65473,0.65473 z m -12.51267,-0.65473 0,-0.72748 0.65473,-0.65474 0.72748,0.65474 z m -11.93069,-1.38222 0.72748,-0.72748 -0.72748,0.21825 z m -2.76443,-0.72748 0.72748,-2.76443 1.38222,-2.83717 0,2.10969 -0.72748,0.72748 -0.65474,2.03695 z m 16.73206,-2.10969 0,-0.65474 -1.38221,-0.72748 0.72748,0 0,-0.72748 0.65473,-1.38221 1.45496,0.72748 0,2.10969 -0.72748,0.65474 z m 2.83718,-2.76443 -2.83718,-1.38221 1.45496,-1.45497 -0.72748,-3.4919 2.1097,1.45496 0.65473,-0.72748 0,-2.1097 2.1097,2.83718 0,0.65473 0,1.38221 -0.65474,0 z m 114.57823,-7.78405 0.65473,-0.58198 0.65474,0 z m 6.25634,-3.41916 -3.49191,-1.30946 0,0.65473 -3.49191,-2.10969 0,-1.38222 -0.72748,0.65474 0,0.72748 -2.76443,0 -2.83717,-2.1097 -5.60161,-3.49191 1.45497,-1.38221 -0.72748,-0.72748 0,-0.65473 6.25633,-2.1097 -0.65473,0 0,-2.10969 -1.38222,-0.72748 0,-0.65473 2.03695,-2.1097 -2.03695,-1.38221 -1.45496,1.38221 0.72748,1.38221 -2.10969,0 0,1.38222 -0.65473,-0.65473 -1.45497,-2.83718 0.72749,-0.65473 -0.72749,0 -0.65473,-2.1097 0.65473,1.38222 0.72749,-2.1097 -3.49191,-1.38221 -1.38222,-2.1097 0,-2.76442 1.38222,-0.72748 -2.1097,0 0,-1.38222 0.72748,-1.38221 -0.72748,-2.1097 0,3.49191 -0.65473,0.72748 0,-0.72748 -1.45496,-0.65473 0,-0.72748 -0.65473,0.72748 0,0.65473 0.65473,0 0.72748,0.72748 0,0.65474 -1.38221,0.72748 -0.72748,2.10969 -1.38222,-0.72748 2.1097,2.10969 -2.1097,-1.38221 -0.65473,-2.18244 0.65473,-0.65473 0.72748,0 -0.72748,-0.65474 -0.72748,0 0,0.94573 -0.50924,-1.74596 1.23672,-0.58198 0,-2.1097 -0.72748,0 0,1.38222 -0.65473,-0.72748 0,1.45496 -2.1097,-4.21939 -0.72748,0 0,-3.49191 -0.65473,0 -1.38221,-3.49191 0,-1.38221 -1.45497,-2.10969 0.72749,-0.72748 1.38221,-4.14665 -4.14664,-3.4919 -0.72748,0 -1.38222,2.10969 -2.83717,0 -0.65473,0.65473 0.65473,2.83718 2.83717,2.76443 -2.10969,1.38221 -2.1097,0.72748 0,0.65473 -1.38221,0 -4.21939,-2.03694 -2.76443,0 4.21939,-1.45496 2.03695,-4.14665 0.72748,-4.21938 2.1097,0 1.38221,-0.65474 0,-1.45496 1.38221,-0.65473 0,-2.83718 1.38222,-2.76442 -2.03695,1.38221 -1.45496,-2.1097 0.72748,2.1097 -1.38221,0.72748 -2.1097,-1.38221 0,0.65473 -1.38221,0 -0.72748,-4.14664 -2.1097,-2.1097 0,-2.10969 -0.65473,-1.38221 -0.72748,-0.72749 0,-1.38221 0.72748,-0.72748 1.38221,-0.65473 2.1097,-2.1097 2.10969,-0.72748 -0.72748,-1.38221 -1.38221,0.72748 -0.72748,-0.72748 -0.65474,-1.38221 -4.21939,0 -0.72748,-0.72749 0,-0.65473 -0.65473,0.65473 1.38221,0.72749 -0.72748,0.72748 -1.38221,-0.72748 -1.38221,0.72748 -2.1097,0.65473 -0.65473,-0.65473 0,-1.45497 -0.72748,-0.65473 0.72748,-1.38221 0.65473,0 2.83718,-2.1097 1.38221,0.65474 0,0.72748 1.38221,-0.72748 0,-0.65474 1.38222,-2.10969 -1.38222,-0.72748 0,-1.38222 -1.38221,0.72749 -3.49191,-0.72749 -0.72748,1.38222 -0.65473,0 -1.45496,0.72748 -1.38222,-0.72748 -1.38221,0.72748 0,0.72748 -0.72748,-0.72748 0,1.38221 -0.65473,0.72748 0,0.65474 -1.38222,0.72748 0.65474,0.72748 0,0.65473 -2.1097,1.38221 -0.65473,0 1.38221,1.45497 0,0.65473 -1.38221,1.38221 1.38221,0 -0.72748,0.72748 0,0.72748 -0.65473,-0.72748 0,1.38222 -2.83718,0.72748 -2.03694,0 -1.45496,-0.72748 2.10969,1.38221 -1.38221,0 0.72748,0.72748 -1.45496,0 -1.38222,0.72748 1.38222,0.65473 -1.38222,0 -2.10969,0.72749 0,1.38221 -1.38222,0 0.72748,0.72748 1.38222,0 0.72748,-0.72748 2.03695,-1.38221 0,1.38221 2.10969,-1.38221 0.72748,0.65473 0.65473,-1.38222 1.45497,1.38222 2.76442,-1.38222 4.87412,1.38222 2.83718,-0.65473 4.14664,2.10969 2.10969,2.03695 0.72749,2.10969 0.65473,4.21939 -0.65473,2.10969 -1.45497,0.65474 -2.03694,2.83717 -0.72748,0.65474 -0.72748,-0.65474 -0.65474,0.65474 -1.38221,0.72748 -1.45496,0.65473 0.72748,-0.65473 -0.72748,0 0.72748,-0.72748 -4.21939,1.38221 -0.65473,0 0,-0.65473 -3.49191,2.10969 -6.32908,1.38221 -1.38222,0 0,-0.72748 -0.65473,0.72748 -2.1097,0 -2.10969,-0.72748 0.72748,-1.38221 -1.45496,-1.38221 0.72748,1.38221 -0.72748,0 0.72748,0.72748 -0.72748,0 0,1.38221 -0.65473,-0.72748 -0.72748,-1.38221 0,0.72748 0,1.38221 -0.65474,0 -0.72748,-0.72748 -0.72748,0.72748 -0.65473,-0.72748 0,2.1097 -1.38221,0 0.65473,-1.38222 -0.65473,0 -0.72749,-0.72748 0,0.72748 -2.76442,0.65474 0,-1.38222 -0.72748,1.38222 0,-0.65474 -1.38222,-1.38221 0,0.65473 1.38222,0.72748 -0.72748,0.65474 -0.65474,0 -0.72748,-0.65474 0.72748,1.38222 -0.72748,0 -2.76443,0 0.65474,0.72748 3.49191,0 0.72748,1.38221 1.38221,1.38222 0,0.72748 -1.38221,0 0,0.65473 -1.74596,-0.50924 -0.0727,0.1455 0.43649,0.36374 -0.72748,0.72748 -0.65473,-0.72748 0,0.72748 -1.45496,-0.72748 0,0.72748 -1.38222,0.65473 -0.65473,-1.38221 0.65473,-2.10969 -0.65473,0 -0.72748,-0.65474 0.72748,2.1097 -2.10969,-0.72748 1.38221,1.38221 0.72748,2.10969 -1.45496,-0.72748 0,1.45496 -0.65473,-0.72748 -0.72748,0.72748 0,-1.45496 -0.65474,0 0,-0.65473 0.65474,0 0.72748,-0.72748 -1.38222,0 0.65474,-0.65473 -0.65474,0 0.65474,-1.45496 -0.65474,0 0.65474,-0.65474 -1.38222,0 -0.72748,-1.38221 0,2.03695 -0.65473,0 0.65473,1.45496 0,1.38221 -2.03695,-5.6016 -0.72748,-2.1097 0,0.72748 -0.72748,-0.72748 0.72748,2.83718 -0.72748,0.65473 1.45496,3.49191 -0.72748,0 -0.72748,0 0,-1.38221 -0.65473,1.38221 -0.72748,-0.65473 -0.65473,0.65473 0.65473,-1.38221 -1.38221,0.72748 0,-1.45496 0.72748,0 0.65473,-0.65474 -0.65473,0 -0.72748,-1.38221 -0.72749,0 -0.65473,-1.45496 0,-0.65474 -0.72748,-0.72748 0.72748,-0.65473 -0.72748,0 0.72748,-0.72748 0.65473,0 -1.38221,-0.72748 0,0.72748 -0.65473,0.72748 0,0.65473 -0.72748,0 -0.72748,0 0,-0.65473 -0.65474,0 -0.72748,-1.45496 0.72748,0.72748 0,-0.72748 -0.72748,-0.65473 -0.65473,0.65473 -0.72748,0 0,-1.38221 -0.72748,0 0,-0.65474 -0.65473,0.65474 -0.72748,-0.65474 0,-1.45496 0,-2.03695 -0.65474,-0.72748 -0.72748,0 0,0.72748 1.38222,2.03695 -0.65474,2.83718 -0.72748,-1.38222 -0.72748,-0.72748 0.72748,-0.72748 -0.72748,0 0,0.72748 0,0.72748 -1.38221,-0.72748 -0.65474,-0.72748 0,-0.65473 0.65474,0 -0.65474,-0.72748 0.65474,-0.65474 0.72748,0 0.65473,0.65474 0,-0.65474 -0.65473,0 0.65473,-1.45496 -0.65473,0 0,0.72748 -1.38222,0.72748 0,0.65474 0,0.72748 -1.45496,-0.72748 -0.65473,0 -0.36374,-1.01848 -0.36374,0.36374 0,0.65474 -0.65473,-0.65474 0.65473,1.38222 -0.65473,-0.72748 -1.45497,0 0.72749,-0.65474 -0.72749,0 -0.65473,-0.72748 0.65473,-0.72748 -0.65473,-0.65473 0.65473,0 -1.38221,-0.72748 1.38221,0 0,-0.65473 0.72749,1.38221 1.38221,0 0,0.65473 0.72748,-0.65473 -1.38221,-0.72748 -0.72748,-0.65473 0,-0.72748 0.72748,0 -0.72748,-0.72749 0,-0.65473 -0.72749,-0.72748 -0.65473,0.72748 -0.72748,-0.72748 0,-0.65473 -0.65473,-0.72748 0,0.72748 -0.72748,-1.45496 0.72748,0 2.03694,0.72748 1.45497,0.72748 0,-0.72748 0.65473,-0.72748 -1.38221,0 0,-1.38222 -0.72749,1.38222 -0.65473,-0.65474 0,0.65474 -1.38221,0 1.38221,-2.03695 -2.10969,1.38221 0.72748,-0.72748 0,-1.38221 0,-1.38221 -0.72748,1.38221 0,-1.38221 -0.72748,2.76442 0,-1.38221 0,-1.38221 -0.65474,0.65473 -0.72748,-0.65473 -0.0727,-0.1455 0.1455,0.0728 1.30947,-1.30947 -2.03695,0 0,-0.72748 0,-0.72748 0.65473,-0.65473 -1.38221,0 -0.72748,-0.72748 -0.65473,0.72748 -0.72749,-1.38222 1.38222,0 0,-0.72748 1.09122,0.50924 1.01847,-0.50924 -1.38221,0 -0.72748,0 -1.38222,0 0,-1.38221 -0.65473,-0.72748 0,0.72748 -0.72748,-0.72748 0,0.72748 -0.72748,-0.72748 -0.65473,0 1.38221,-1.38221 -0.72748,0 -0.65473,0 0,-0.72749 -0.72748,0 0.72748,-0.65473 -0.72748,-0.72748 1.38221,0.72748 -0.65473,-0.72748 -0.72748,0 0,-0.65473 -0.65474,0.65473 0,-1.38221 1.38222,-0.72748 -1.38222,0 0,-0.65474 -1.45496,-0.72748 1.45496,0 -0.72748,-0.65473 0.72748,-0.72748 0,-0.72748 -0.72748,1.45496 -0.72748,-0.72748 0,-1.38221 -0.65473,0 -0.72748,-0.72749 0,-0.65473 0.72748,0 0,-0.72748 0.65473,0 -0.29099,-0.36374 -0.36374,0.36374 0,-0.72748 -1.38221,-1.38221 1.38221,0 -0.72748,-0.65474 0.72748,0 -0.72748,-0.72748 -0.65473,1.38222 -0.72749,-1.38222 -2.10969,-0.72748 -0.65473,-0.65473 0,-0.72748 0.65473,0 -0.65473,-0.65473 1.6732,0.94572 -0.29099,-0.29099 0.65473,0 -1.38221,-0.65473 0,-1.45497 0,-0.65473 -0.65473,-1.38221 0,1.38221 -0.72748,0 -0.291,0.50924 -1.09122,-0.50924 0.65474,-0.72748 -1.38222,0.72748 0.72748,-0.72748 -0.72748,0 -0.65473,-0.65473 0,-0.72748 -0.72748,0.72748 0,-1.45496 -0.72748,0 0,-0.65474 0.72748,0 0,-0.72748 -0.72748,0 -1.38222,0 0,-0.65473 0.72749,0 -1.38222,-1.45496 1.38222,0.50923 0,-1.16396 0.65473,0.65473 0,-0.65473 -0.65473,-0.72749 0.65473,0 1.45496,0.72749 2.03695,1.38221 0,0.72748 -1.38222,0 2.83718,2.03695 -0.72748,-0.65474 1.38221,0 0,0.65474 2.83718,0.72748 -2.83718,-1.38222 -2.10969,-1.38221 1.45496,0 0.65473,-0.72748 -2.10969,-0.72748 -1.38222,-0.65473 0.72748,0 0,-0.72749 0.65474,-0.65473 -3.49191,0.65473 0,-0.65473 0.72748,-0.72748 -1.38221,0 -0.72749,0 0.72749,1.38221 -0.72749,1.38222 -0.65473,0 0,-0.65473 -1.45496,0 1.45496,-0.72749 -1.45496,0 0,-0.65473 1.45496,0 -1.45496,-0.72748 0,0.72748 -0.65473,0.65473 -1.38222,0 0.65474,-0.65473 -0.65474,0 0,-1.45496 -0.72748,1.45496 -0.72748,0 0,-1.45496 0.72748,0 0.72748,-0.65473 -2.10969,0.65473 0.65473,-0.65473 0.72748,0 -0.72748,-0.72748 1.45496,-1.38222 -1.45496,0.72748 0,0.65474 -0.65473,1.38221 -0.72748,-0.65473 2.10969,-3.49191 -1.38221,1.38221 -0.72748,1.38222 -0.65473,0 -1.45497,0 -0.65473,0.72748 -0.72748,0 0,-1.38222 -0.65473,-0.72748 2.76442,0 -1.38221,-0.72748 2.76443,0.72748 -2.1097,-0.72748 0,-0.65473 0.72748,0 -0.72748,-0.72748 -1.38221,1.38221 -0.65473,0 0,-0.65473 -0.72748,0.65473 -0.72748,-0.65473 0.72748,0 -2.1097,-0.72748 0.72748,0 0.65474,-2.1097 -0.65474,-0.65473 -0.72748,2.1097 -0.65473,0 -0.72748,0.65473 -0.72748,-0.65473 -0.65474,0 0,-0.72749 0,-0.72748 -0.72748,0.72748 0,-0.72748 0.72748,-0.65473 -0.72748,0 -1.38221,-0.72748 1.38221,0 1.38222,-0.65473 -0.65474,0 0.50924,-0.0728 -1.23672,-0.65473 0.72748,0.72748 -2.10969,0.65473 0.72748,-0.65473 -0.72748,0 -0.72748,0.65473 -0.65473,0 0.65473,-0.65473 0.72748,-0.72748 -0.72748,0 -0.65473,-0.72748 2.10969,0 -2.10969,-0.65474 1.38221,0 -0.72748,-0.72748 -0.65473,-0.65473 0,-0.72748 0,-0.72748 0.65473,-1.38222 0.72748,0 2.76443,0.72748 1.45496,-1.38221 0,1.38221 0.65473,0 0,-0.72748 1.38222,0 -0.65474,-0.65473 0.65474,0 0.72748,-1.45496 -0.72748,-0.65473 0,0.65473 -0.65474,0 0.65474,0.72748 -0.65474,0.72748 -0.72748,0.65473 -0.65473,-0.65473 -0.72748,-0.72748 0,0.72748 -1.38222,0.65473 -2.10969,0 0,-0.65473 -1.38221,0.65473 -0.72748,0 0.72748,-0.65473 0,-0.72748 -0.72748,0.72748 0,-1.45496 0.72748,0 1.38221,0.72748 0,-0.72748 -0.72748,0 -0.65473,-0.65473 0.65473,-0.72748 -0.65473,0.43648 0,-0.43648 -0.72748,0 0.72748,-0.65474 2.10969,1.38222 -0.21824,-0.72748 -0.50924,0 -0.72748,-1.38222 -0.65473,0.72748 0,-1.45496 -0.72748,0 0.72748,-0.65473 -0.72748,0 0.72748,-1.38222 1.38221,2.03695 -0.72748,-1.38221 0.72748,0 -0.72748,-0.65474 0.72748,0 0,-0.72748 -1.38221,0 -0.72748,-0.72748 -0.65474,-0.65473 0.65474,-0.72748 0,-0.65473 0.72748,1.38221 0.65473,0 0,0.65473 0.72748,0 1.38221,2.1097 0.65474,0 -0.65474,-0.65474 0,-0.72748 0.72748,0 -1.38221,-0.72748 0,-0.65473 -1.45496,-0.72748 0.72748,-0.65473 0.72748,0.65473 0,-0.65473 1.38221,0.65473 -1.38221,-1.38221 -0.72748,0.72748 -0.72748,-1.45496 -0.65473,0.72748 -0.72748,-1.38222 0.72748,0 -0.21825,-0.50923 -0.50923,0.50923 0.72748,2.1097 -0.72748,-1.45496 0,0.72748 -1.38222,-0.72748 0.72748,-2.03695 0.65474,0.65473 0,-1.38221 1.38221,0.72748 0,0.65473 -0.65473,0 0.65473,0.72748 0,-0.72748 0.72748,-0.65473 1.38221,2.03695 0,-0.65474 1.38222,0 -2.76443,-1.38221 0.72748,-0.72748 -1.45496,-1.38222 0.58198,-1.09122 0.87298,0.36374 1.38221,0 -2.10969,-0.65473 0.72748,-0.72748 -2.10969,0.72748 -0.72748,-0.72748 0.72748,1.38221 -1.38222,0.72748 0.65474,-1.38221 -0.65474,0.65473 -0.72748,-2.10969 0.72748,-1.38221 2.76443,-2.76443 1.38221,-0.72748 1.38222,0 -2.03695,-0.65474 0.65473,-0.72748 0.72748,0.72748 0,-0.72748 0,-0.72748 1.38222,0.72748 -0.72748,-0.72748 0.72748,0 1.38221,-0.65473 2.1097,0.65473 0.72748,0 0.65473,0.72748 0.72748,0 1.38221,2.1097 0.72749,0 0.65473,1.38221 0,-0.72748 1.38221,1.45496 -0.65473,0 1.38221,0.65474 -0.72748,0.72748 1.45496,-0.72748 -0.72748,0.72748 1.38222,0.65473 -0.65474,1.45496 0.65474,-0.72748 0.72748,0 0,-1.38221 0.65473,0 0,0.65473 0.72748,0 0,0.72748 0.72748,-0.72748 0.65473,2.10969 0,1.38222 -0.65473,0.72748 0.65473,0 0.72749,0 0,2.10969 0.65473,-2.10969 -0.65473,-1.38222 0,-0.72748 0.65473,0 0,-1.38221 0.72748,0.72748 1.38221,-1.45496 -0.65473,-0.65473 0.65473,-3.49191 -0.65473,-0.72748 0.65473,0 -0.65473,-1.38222 1.09122,0.58199 0.29099,0.80023 0.65474,-0.65474 -1.38222,-2.10969 0,-0.72748 1.38222,0 -1.38222,-0.65473 0.72748,-0.72748 0.36374,0.43648 -0.36374,-1.16397 1.38222,-0.65473 -0.72748,-0.72748 0.72748,-1.38221 0,-1.38222 0.72748,0.65474 0,-2.03695 0.65473,0 0,-2.10969 1.38221,-1.38222 0.72748,-1.45496 0.72749,0 0,-2.03695 -1.45497,0 0.72748,-1.45496 -1.38221,0.72748 2.76443,-5.6016 -1.38222,-0.65473 0.72749,-1.45496 -0.72749,-0.65474 2.76443,0 2.1097,0.65474 1.38221,-0.65474 1.45496,1.38222 -0.72748,1.38221 0,1.38221 1.38221,2.1097 0.72749,-0.65473 0,1.38221 2.76442,0 0,-0.72748 1.38222,0.72748 1.45496,0 0,-0.72748 1.38221,4.87412 0.65473,0 0,0.72748 0.72749,2.1097 0,0.65473 0.72748,0 -0.72748,1.45496 0.72748,2.03695 0,0.72748 -0.72748,0 0,0.72748 0.72748,-0.72748 -0.72748,1.38221 0.72748,-0.65473 0,0.65473 -0.72748,1.38221 1.38221,0 0,0.72749 -0.65473,0 0.65473,0.72748 -0.65473,0.65473 0.65473,0 -0.65473,1.38221 -0.72748,0.72748 0.72748,0 0.65473,0.72748 -0.65473,1.38222 1.38221,0 -0.72748,0.65473 0.72748,0 0,0.72748 0.65473,-0.72748 1.45496,0.72748 -0.72748,0.72748 0.72748,0 0,2.76443 0.65474,-1.38221 0,-0.72748 0.72748,-1.38222 0.65473,2.1097 2.1097,1.38221 -1.38222,0.72748 0.72748,0 -0.72748,0.65473 -0.72748,0 0,0.72748 0.72748,0 3.49191,2.76443 -1.38221,0 0.65473,0.72748 -0.65473,0.65474 1.38221,-0.65474 0,0.65474 -0.72748,0 -0.65473,0.72748 0,0.72748 -0.72748,0.65473 0,-0.65473 -0.94573,1.38221 -0.43649,0 0.29099,0.21824 -0.29099,0.43649 -0.72748,0 -0.65473,2.1097 -1.38222,-0.65474 -0.72748,1.38222 -1.38221,0 0.65473,0.65473 -0.65473,0 0.65473,0.72748 -1.38221,0.72748 0.72748,0.65474 -0.72748,0 0.72748,2.10969 -0.72748,1.38221 0.72748,0 -0.72748,0.72748 0.72748,0 -0.72748,0.65474 0.50924,0.50923 0.87297,-0.50923 -0.65473,2.83717 0.65473,2.1097 0.72748,0 -1.38221,0.65473 0,1.38221 0.65473,0.72748 0.72748,-1.38221 0,0.65473 0.72748,0.72748 0,1.38222 -0.72748,2.83717 0.72748,-1.45496 0.65474,0 0,-0.65473 0.72748,0.65473 0.65473,0.72748 -1.38221,0.72748 1.38221,0 0,1.38222 0.72748,0 0.72748,0 -0.72748,0.65473 0.72748,0 0.65474,-0.65473 0.72748,2.76442 0.65473,-0.65473 0,1.38222 0.72748,-1.38222 0.72748,2.03695 1.38221,0 0,0.72748 0.65474,1.38221 0,-1.38221 0.72748,0.72748 0.72748,3.49191 2.03694,2.03694 -0.65473,0.72748 0,0.72749 -1.38221,0.65473 0.65473,0 0,0.72748 -0.50924,0.21824 1.23672,2.54619 -0.72748,1.38221 0.72748,-0.65473 0,1.38221 -0.72748,0.72748 1.38221,0 0,0.65473 -0.65473,0 1.38222,0.72749 0.72748,0 -0.72748,0.65473 0,0.72748 0.72748,-0.72748 -0.72748,1.45496 1.38221,-0.72748 0,1.38221 1.38221,-1.38221 0.72748,0.72748 0.72748,0.65473 0,-0.65473 0.65474,0.65473 0,-0.65473 1.38221,1.38221 0,-0.72748 0.72748,0 0.72748,0.72748 0.65474,-2.10969 1.38221,0.72748 0.72748,-1.45496 0,-0.65473 0.72748,-0.72749 -0.72748,0 0.72748,-0.65473 0,-0.72748 0.65473,-0.72748 0,-0.65473 -0.65473,0.65473 0.65473,-1.38221 -1.38221,0 -1.38221,-0.65474 0,-0.72748 -0.72748,-2.10969 0,-0.65473 -0.65474,0 0,-1.45497 -0.72748,-0.65473 0,-1.38221 -1.38221,0 0.65473,-0.72748 -1.38221,-0.72748 0,-1.38222 -0.65474,-0.65473 -0.72748,0.65473 -0.72748,-1.38221 0,-1.38221 -0.65473,0 0.65473,-1.38222 -0.65473,-0.72748 0,-0.72748 -0.72748,1.45496 -0.65473,-0.72748 -0.72748,0.72748 0,-0.72748 0,-0.72748 0.72748,-0.65473 -0.72748,0 0,-1.38222 -0.72749,0 -0.65473,-0.72748 0,-2.10969 0.65473,0 0,-2.1097 0.72749,0.72748 0,-0.72748 0.72748,-0.65473 -0.72748,-2.10969 2.76442,-3.49191 -1.38221,0.72748 0.72748,-0.72748 -0.72748,0 0.72748,-0.72748 -0.72748,0 0.72748,-2.03695 -0.72748,0 0.72748,-1.45496 -1.38221,0 0.65473,-0.65473 0,-0.72748 0.72748,-0.65474 -0.72748,-0.72748 1.38221,-1.38221 0.72748,0.65473 0,-1.38221 0.72748,1.38221 1.38222,-1.38221 1.38221,0 -0.72748,-1.38222 0.72748,0.72748 0,-0.72748 2.1097,1.38222 -0.72748,-1.38222 0.72748,-0.72748 0,-0.65473 0.65473,0 0,-0.72748 -0.65473,-1.38221 1.38221,0.72748 0.72748,1.38221 1.38221,0 0.65474,0.65473 1.45496,0.72748 0,-0.72748 0.65473,0.72748 0,-0.72748 0.72748,1.45496 0.65474,0.65474 0.72748,0 0.72748,0.72748 0.65473,0 0.72748,1.38221 0,-0.72748 1.38221,0 -0.72748,0.72748 0.72748,0 0,-0.72748 0.72749,0.72748 0,0.72748 1.38221,-0.72748 -0.72748,0.72748 0,0.65474 2.10969,0 0.72748,1.38221 2.03695,-0.65473 -0.65473,0.65473 1.38221,0 0,0.72748 0.72748,-0.72748 1.38221,0.72748 0,0.72748 1.38222,1.38221 0,-0.72748 0.72748,-2.10969 1.38221,-1.38221 3.49191,0.72748 0.65473,-1.38222 0.72748,0 1.38222,0 -0.65473,-0.72748 -0.72749,0 -4.21938,0 0,-2.10969 -2.03695,0 0,-1.38222 -1.45496,0.72748 0.72748,-2.83717 -0.72748,-0.65473 -4.14664,-0.72748 -1.38222,0.72748 -2.83717,0 -0.65473,-0.72748 -0.72749,1.38221 0,-1.38221 -0.72748,0.72748 0,-1.45496 -1.38221,0 -0.65473,-0.65474 -0.72748,0.65474 0,-0.65474 -2.1097,0 -0.65473,-0.72748 0.65473,-0.65473 -1.38221,0 0.72748,-0.72748 -2.83718,-0.72748 0.72748,-1.38222 -0.72748,-0.65473 1.38222,0 -0.65474,-0.72748 0,-1.38221 2.1097,-2.83718 0.65473,0 0.72748,-0.65473 0.65474,1.38221 1.45496,-0.72748 -0.72748,-4.14664 1.38221,-4.87412 -1.38221,-2.1097 -2.1097,-0.72748 -1.38221,0.72748 -1.38222,2.1097 -2.10969,2.03694 -0.72748,1.45497 -3.49191,-2.83718 -1.38221,-2.10969 0.72748,-2.03695 -1.38222,-2.10969 -0.72748,-2.83718 1.38222,-6.98382 1.38221,-1.38221 -0.65473,-1.38221 0.65473,0 -0.65473,-1.38222 0.65473,-2.10969 -0.65473,-0.72748 -2.83718,0.72748 0.50924,0.58198 -2.54618,-1.30946 -0.72748,0 0,-2.76443 0.72748,1.38221 0,-0.65473 2.03694,0 -2.03694,-0.72748 -2.83718,-3.49191 0,0.72748 -0.65473,0 0.65473,0.65474 -3.49191,-0.65474 -0.65473,0.65474 -1.45496,3.4919 -2.03695,0 -6.98381,-2.76442 -2.1097,-2.83718 -6.98381,-2.03694 0,-0.72749 -0.72749,-2.10969 0,-0.65473 -1.38221,1.38221 -2.76443,0.65473 0.65474,0.72748 -0.43649,0.87298 0.87298,0.36374 -1.09123,0.87298 -1.45496,-0.72748 -2.03694,2.10969 0,1.38222 -1.45497,-0.65474 -1.38221,0 -0.65473,-0.72748 0,0.72748 -1.45496,-1.45496 -2.03695,0 -0.72748,-0.65473 -0.72748,-1.38221 -1.38222,0.65473 -1.38221,0 -0.72748,0.72748 2.10969,0.65473 0,2.1097 -2.10969,-0.65474 -2.03695,1.38222 -0.72748,-0.72748 0,0.72748 -0.72748,0 -0.65473,0.65473 0.65473,0 0,2.10969 -0.65473,0 -0.72748,1.38222 0.72748,-0.65473 0,0.65473 -0.72748,1.45496 -0.65473,0 1.38221,1.38221 -0.72748,0 0.72748,0.65474 -0.72748,0.72748 0.72748,0.72748 -0.72748,0 1.38221,1.38221 -1.38221,0.65473 2.10969,0 0.72748,0 0,0.72749 0.65474,0 0.72748,2.76442 0.65473,0 0,-0.65473 0.72748,1.38221 0.72748,-0.72748 1.38222,2.1097 -0.72749,0.72748 -2.76442,0.65473 0.65473,1.45496 -0.65473,2.03695 0.65473,0 1.45496,2.10969 -0.72748,2.83718 1.38221,1.38221 -3.4919,-0.72748 -2.76443,-3.49191 -3.49191,0 -2.10969,-2.76442 0.72748,-1.09123 0,0.36374 0,0.72749 2.03694,1.38221 1.45497,0 -0.72749,0.72748 1.38222,-0.72748 2.10969,0.72748 0.72748,-0.72748 -0.72748,0 -0.72748,-0.72748 -0.65473,0.72748 -1.38221,-0.72748 0,-2.03695 0.65473,0 0,-1.45496 -0.65473,1.45496 -0.72749,-0.72748 0,2.1097 -1.16396,-0.80023 0.43648,1.45496 -0.65473,0 -1.38221,-1.38222 0.94572,-0.43648 -0.29099,-0.21825 0.72748,-1.45496 -0.72748,0.72748 -1.38221,0 -0.72748,1.38221 0,-1.38221 -0.43649,-3.85565 1.16397,-1.74595 -1.38222,-0.65473 -0.72748,-2.1097 0.72748,-0.72748 0,0.72748 2.1097,-2.10969 -0.72748,-3.49191 0,-2.1097 -0.72748,-0.65473 2.10969,-0.72748 -1.38221,-0.72748 -0.72748,0 0,-1.38221 1.45496,0 -0.72748,-0.65474 0.72748,-1.45496 -0.72748,0 0,-0.65473 2.10969,-0.72748 1.38221,-2.76443 -1.38221,2.1097 -2.10969,0 -0.72748,0.65473 -1.38222,-1.38222 0,-1.38221 -1.38221,0.65473 0,-0.65473 0,-0.72748 -0.72748,0.72748 0.72748,0 -1.38222,2.1097 -3.4919,0 -0.72748,-0.72749 -0.65474,-2.10969 1.38222,-0.65473 -1.38222,0 -1.45496,2.03694 -2.76443,0 0,-0.65473 -0.72748,0 -1.38221,0.65473 -2.10969,-1.38221 -0.65474,-0.65473 -0.72748,-2.1097 2.1097,-0.72748 -0.72748,-1.38221 1.45496,-0.72748 -2.1097,0 -2.10969,-1.38222 0.72748,-0.65473 -2.1097,1.38221 1.38222,0 -0.72748,0.65474 0,1.45496 1.45496,-0.72748 0.65473,1.38221 -0.65473,0 -0.72748,1.38222 -0.72748,0 -0.65474,0.72748 -1.38221,-4.21939 -3.49191,-3.49191 -0.72748,0 0,-1.38221 3.49191,-1.38222 -1.38221,0 -2.1097,1.38222 -0.72748,0 0.72748,-1.38222 0.72748,-0.72748 -1.38221,0 -0.72748,0.72748 -2.1097,-0.72748 1.38222,-1.38221 1.38221,0.72748 1.45496,-1.38221 -1.45496,0.65473 -1.38221,-0.65473 -1.38222,1.38221 -6.25633,-2.1097 -4.94687,-0.72748 -1.38222,-4.87412 0,-0.65473 -0.65473,0 -2.03694,-1.45496 c -2.09256,0.1771 -4.24916,0.10775 -6.40184,-0.65474 l -0.65473,-1.38221 0,-0.72748 2.1097,-0.72748 -3.49191,0 -1.45496,-0.65473 -3.49191,2.76442 -1.38222,-0.65473 0,2.03695 0.72749,1.45496 -2.83718,0 -1.38221,1.38221 0,-3.49191 1.38221,-1.38221 -1.38221,-4.21939 0.72748,-1.38221 -2.83718,0.65473 0,0.72748 -0.65473,0 0,-1.38221 -0.72748,1.38221 -0.65473,-0.72748 0,0.72748 -0.72749,0 0,0.72748 -2.10969,-0.72748 -1.38221,3.49191 -0.72748,0 0,0.72748 -1.38222,-0.72748 -0.65473,0.72748 -0.72748,-1.45496 -1.38221,0.72748 0,-0.72748 -0.72749,1.45496 -3.4919,0.65473 0,-0.65473 -1.38222,0 -0.72748,-2.10969 1.45496,0 0.65474,0 1.38221,-1.38222 -2.03695,0.65474 0,0.72748 -0.72748,-0.72748 0,-0.65474 0.72748,0 0.65474,-0.72748 0,-0.72748 -2.76443,0.72748 1.38221,-1.38221 0,-1.38222 1.38222,-0.72748 0,1.38222 0.72748,-1.38222 0.65473,0.72748 0,-1.45496 0.72748,0.72748 1.38221,-1.38221 0,-0.72748 1.38222,0.72748 -0.65473,-0.72748 0.65473,-0.65473 0,-2.1097 0.72748,1.38222 0.72748,-0.72749 1.38221,0 0,-0.65473 0.65474,0 -0.65474,-0.72748 0.65474,0 0.72748,-0.65473 -1.38222,0 0.65474,-1.45496 0.72748,-0.65474 0.72748,0 -0.72748,-0.72748 1.38221,-1.38221 -1.38221,-1.38221 0.72748,-3.49191 3.49191,-3.49191 -0.72749,-0.72748 0.72749,0 0,-2.1097 -1.45497,-0.65473 -0.65473,-1.38221 2.1097,-2.83718 0,-0.65473 -1.45497,2.03695 -3.4919,-7.63855 1.45496,1.38221 0,-1.38221 -0.72748,0 -0.72748,-0.72748 -3.49191,-7.63855 -1.38222,-1.45496 -4.14664,-0.65474 -2.83717,2.1097 -0.65473,0 0,0.65473 -1.45497,0.72748 -0.65473,-1.38221 -1.38221,2.03694 -0.72748,0 -0.72748,-0.65473 0,0.65473 0.72748,0 -0.72748,1.45497 -2.03695,-0.72748 0,0.72748 -4.21939,0.65473 -4.87412,2.83717 -0.72748,0 0,0.65474 -1.38222,0.72748 -0.72748,1.38221 -2.03694,-0.72748 -0.72748,0.72748 -4.21939,2.1097 -1.38222,-0.72749 0.72748,0.72749 -1.38221,0.65473 -0.72748,1.45496 -1.38221,0 0,1.38221 -1.38222,-0.72748 0,0.72748 -3.49191,0 -0.72748,-1.38221 0.72748,0 0.65474,-0.72748 -0.65474,-0.72748 0,1.45496 -1.45496,-0.72748 0,0.72748 -2.03694,0 -0.72748,0.65473 -0.72749,0 0,-0.65473 -1.38221,0 -0.65473,-0.72748 -0.72748,0 -0.72748,-1.38221 0.72748,0.65473 0.72748,-0.65473 -0.72748,-2.1097 -0.72748,-1.38221 2.10969,0.65473 0.72748,-0.65473 -1.38221,-1.38222 -0.72748,0.65474 0,-1.38222 1.38221,0 -2.10969,-0.72748 2.10969,0 -2.76443,-1.38221 -2.10969,-6.25634 0,-2.10969 0.72748,-0.72748 -2.83718,-4.14664 -2.764422,-3.491911 -1.382214,-1.382214 -3.491908,-4.219388 -2.109694,0 0,-1.382214 -2.837176,-3.491908 0,-0.727481 2.109695,-0.654733 2.837175,2.036947 -0.727481,-1.382214 0,-0.654733 -1.382213,-0.727481 -0.727481,0 0,0.727481 -0.654733,0 0,-1.454961 -0.727481,-1.382214 2.109695,0 0.654732,-0.654733 0.727481,0.654733 0,-0.654733 0.727481,-0.727481 -1.454962,0.727481 0,-0.727481 -0.654732,1.382214 0,-2.109695 -2.109695,-2.764427 0,-2.109694 -4.219389,-5.601603 4.219389,-0.654733 3.491908,-2.837175 -0.727481,0.727481 2.109695,-0.727481 2.837175,0 2.764426,-0.654733 0.72748,-0.72748 2.03695,-2.764428 0.72748,-2.837175 -0.72748,0 0,-1.382214 1.45496,-0.654732 -0.72748,-0.727481 -0.72748,0.727481 0.72748,-4.219389 1.38221,0 1.38222,-2.764428 1.45496,0 0.65473,1.382214 0,-1.382214 2.83718,2.764428 4.14664,-0.727481 2.10969,1.454962 4.87412,-1.454962 2.83718,-1.382214 3.49191,-0.654733 1.38221,-1.454961 2.10969,1.454961 1.38222,-0.72748 1.38221,-1.382214 2.1097,1.382214 1.38221,2.109694 3.49191,2.109695 2.10969,0 0.65474,-0.727481 2.83717,0 -0.72748,1.382213 1.38221,0.727481 2.1097,2.764427 0.72748,0.727481 0,0.654733 4.87412,1.454962 2.1097,1.382213 -1.38222,1.382214 -1.45496,2.764427 0,2.837175 2.10969,2.764428 2.1097,2.109694 5.6016,4.219389 0,-0.727481 2.1097,1.382214 -1.45497,1.382213 2.83718,1.454962 8.36603,0.654733 1.38221,1.382214 4.87412,0.72748 2.1097,1.382214 0.72748,1.382214 -0.72748,2.109694 2.10969,0.727481 -1.38221,0 0,2.764427 0.65473,2.109695 -0.65473,-0.727481 0,1.454961 0.65473,-0.72748 0,2.109694 0.72748,0 2.1097,1.382214 0.65473,0 4.21939,1.382217 0.72748,-0.654736 2.76443,-0.727481 0,-0.727481 0,-0.654733 1.38221,0 0,1.382214 1.38221,-0.727481 0,-0.654733 2.1097,0 -0.65473,-1.382214 2.76442,-0.72748 0.72748,-1.382214 0.65474,0 0,0.654733 1.38221,-1.382214 0.72748,0.727481 0.72748,-0.727481 0.65474,0.727481 1.38221,0 0.72748,0.654733 -0.72748,0.727481 0.72748,0.72748 1.38221,0 0.72748,1.382214 0.65474,-0.727481 0.72748,1.382214 6.25633,1.454962 3.49191,3.491906 1.45496,0.65473 2.76443,-1.38221 0.72748,0 3.49191,-2.764426 0,0.654736 0.65473,-0.654736 1.38222,-0.727481 0.72748,-4.874122 1.38221,-2.109694 -0.65473,-2.764428 2.03694,-0.727481 -0.65473,-0.72748 2.76443,-2.764428 -0.65473,-1.382213 2.03694,0 1.45496,-0.727481 1.38222,-2.764427 2.10969,-1.382214 0.65473,-1.454962 2.83718,-3.491908 2.03695,0 0.72748,-2.036946 1.38221,0.654733 2.10969,-0.654733 1.38222,0 2.10969,-2.837175 0,-1.382214 2.1097,0.727481 0.65473,-0.727481 -0.65473,-2.109694 3.49191,0.72748 1.38221,-2.109694 -0.72748,-1.382214 1.45496,-0.727481 2.03695,-2.109694 0.72748,0 0.72748,1.454962 0.65473,-0.727481 0,-0.727481 4.21939,-10.475724 -0.72748,-1.382214 -2.1097,-0.654733 0.72749,-1.454961 -0.72749,-2.036947 -1.38221,-0.727481 0,-2.109694 0.72748,-0.654733 2.76443,0 0.72748,2.036947 2.76443,2.837175 0,3.491908 2.10969,1.382214 2.1097,0 0.65473,1.382213 -0.65473,0.727481 0,2.764427 -2.83718,2.109695 -1.38221,0 -0.65474,0.727481 0.65474,2.036946 0,0.727481 0,0.727481 2.10969,3.491908 1.38222,0.654733 0.72748,-0.654733 0,-0.727481 2.10969,-0.727481 2.76443,0 1.38221,-2.764427 0,-0.727481 2.1097,-0.654733 0.72748,2.109695 0.65473,0.654732 -0.65473,2.109695 -3.49191,2.109694 0,0.654733 -3.49191,1.454962 -3.49191,2.036946 -7.71129,3.491908 -0.72749,1.454962 2.1097,2.036946 0,0.727481 -2.76443,0 0,-0.727481 -1.38221,1.454962 -1.45496,-0.509237 -4.14664,1.16397 -0.72749,1.382213 -1.38221,0 -3.49191,4.94687 -2.10969,7.638549 -6.25634,4.219389 -2.10969,2.109695 -0.72748,4.874126 0.72748,1.38221 0.72748,-0.72748 0,1.45496 0.65473,0.65473 -1.38221,0.72748 0,1.38222 -0.72748,0 0,1.38221 0.72748,0.72748 1.38221,0.65473 0.72748,0 -1.38221,-1.38221 3.49191,2.1097 1.38221,0 0,1.38221 1.38221,-0.65473 0,-0.72748 1.38222,0.72748 0,0.65473 1.38221,-2.1097 -2.03694,-0.65473 0.65473,-1.38221 0,-2.1097 0,-0.72748 2.10969,-2.76442 0,0.65473 0.72748,0 0,1.45496 0.65474,0 1.38221,3.49191 1.45496,-0.72748 2.03695,-1.38222 0.72748,-4.87412 2.10969,-2.10969 0,-1.382216 -1.38221,0.654736 0,-0.654736 4.14664,-4.219389 1.38221,0 0,-2.109695 1.45497,-0.654733 1.6732,0.509237 3.20092,-1.236717 6.25633,-4.874122 0.72748,0 4.87413,-3.491908 0,0.654733 1.38221,0 0,-0.654733 -1.38221,0 2.10969,-1.382214 0.65473,0 2.1097,-2.837175 2.83717,-0.654733 0.65474,-2.109694 -1.38222,0 0.72748,-1.382214 -0.72748,-0.727481 0.72748,-1.382213 -0.72748,-2.109695 0.72748,-1.382214 -0.72748,0.654733 -0.72748,-2.764427 0.72748,-0.727481 0.72748,0 0,-0.654733 -0.72748,0 1.38222,-0.72748 0,-0.654733 -2.1097,0.654733 2.1097,-2.109695 2.83717,-1.382214 0.65473,-1.382213 0.72748,0 0,-2.109695 1.38222,0 -0.72748,-1.382213 1.45496,0 0,-1.382214 1.38221,-0.727481 2.1097,-2.764427 0.65473,0 0,1.382214 0.72748,-0.727481 1.38221,0.727481 0.72749,-1.382214 -2.83718,0 0,-2.109694 0.72748,0.72748 1.38221,-2.837175 0.72749,0.727481 0.65473,-1.382214 -0.65473,-0.72748 1.38221,0 0.65473,1.382213 1.45496,-1.382213 2.76443,1.382213 3.49191,0 0,0.727481 1.38221,-1.382214 0.72748,1.382214 1.38222,-1.382214 3.4919,0 -0.72748,-1.454961 -2.03694,-0.654733 0.65473,0 -0.65473,-0.727481 -6.98382,2.837175 -1.45496,0 -1.38221,-2.109694 -2.1097,0.654733 0,-2.036947 -1.38221,-0.727481 0,-1.382213 1.38221,0 0.72748,-1.382214 0.72748,0 2.03695,-2.109694 0,-0.727481 -0.65473,-2.109695 1.38221,-1.382213 0,-1.382214 1.38221,0 0,-0.727481 0.72748,0.727481 0,2.109695 1.38222,0 0,-0.727481 2.10969,-2.109695 0,-1.382213 1.38222,-1.382214 -0.72748,2.109695 1.45496,2.109694 0.65473,0 2.10969,-2.109694 2.1097,-0.727481 -2.1097,1.382213 0.72749,1.454962 -4.21939,7.638549 3.4919,-0.654733 -0.72748,-1.454962 1.45497,-0.654732 0.65473,1.382213 1.38221,0.727481 -0.65473,0.654733 0,1.382214 -1.38221,-0.654733 0.65473,-0.727481 -1.38222,0.727481 0,2.109694 -1.38221,0 3.49191,2.036947 4.14664,-2.764428 0.72748,1.382214 -1.38221,2.837175 0.65473,0.654733 -1.38221,1.382214 -2.1097,0 -1.38221,1.454961 -1.38222,-0.72748 0,1.382213 -1.38221,0.727481 -0.72748,-0.727481 -0.65473,0.727481 -3.49191,0.654733 2.03695,0.727481 1.45496,1.382213 -0.72748,0 0,0.727481 -1.38222,0.654733 0.65474,2.109694 1.45496,-0.654732 0.65473,-0.727481 -0.65473,-1.382214 2.03694,1.382214 -6.25633,6.983816 -0.72748,0 0,3.491908 -0.65474,0.727481 2.76443,2.036946 0,-0.654733 -0.65473,-0.72748 0.65473,-1.382214 3.49191,-1.382214 0,1.382214 2.10969,-0.727481 2.1097,-1.382213 0.65473,-0.654733 0,0.654733 0,0.72748 -2.03694,0.654733 -0.72749,1.454962 3.49191,0 1.38222,-1.454962 0.72748,0.727481 -3.49191,2.109694 0,-0.72748 -0.72748,0 -0.65473,0.72748 0.65473,0.654733 -2.1097,0.727481 0.72748,1.382214 2.1097,0 2.10969,0.727481 0,1.382213 1.38222,0.727481 0,-1.454962 1.38221,0.727481 2.1097,1.382214 3.4919,-0.654733 3.49191,0.654733 0.65473,-2.109695 4.94687,1.454962 0,-0.727481 -3.4919,-3.491908 0.65473,-0.727481 -0.21825,-0.654733 0.72749,0.654733 1.60045,2.837176 4.21939,2.764427 0.65473,3.491908 1.38222,0.727481 2.10969,-0.727481 1.38222,2.109694 2.10969,-0.727481 0,0.727481 0.72748,-0.727481 2.76443,0.727481 0,0.727481 0,2.036947 -6.25634,0.72748 -2.83717,2.764428 0,1.454961 -2.03695,2.036947 -0.72748,1.454961 -2.10969,0 1.38221,1.382214 0,1.382214 1.45496,0 -0.72748,4.874125 0.72748,1.38221 1.38222,0.72748 0.65473,0 0.72748,1.38221 -0.72748,2.83718 0,1.38221 -0.65473,2.76443 1.38221,3.49191 -0.72748,-1.38221 -0.65473,1.38221 -0.72749,0.72748 1.38222,0.65473 -0.65473,1.45496 1.38221,0.65474 0,-1.38222 0.72748,0 2.76443,1.38222 0,2.83717 -0.72748,0 0.72748,0.65473 0,2.1097 -1.38222,0 0.65474,0.72748 -0.65474,0 -0.72748,2.03695 1.38222,-2.03695 0.72748,1.38221 -0.72748,0 0.72748,0.65474 0,0.72748 0.72748,0 0,0.72748 0.65473,-0.72748 1.38221,2.76442 -2.76442,1.45497 0,0.65473 0.72748,0.72748 2.03694,-2.83718 0,2.83718 0.72749,0.65473 -0.72749,1.45496 1.45497,1.38222 1.38221,0 -2.10969,3.49191 1.38221,-2.1097 0.72748,-1.38221 1.38221,0 2.1097,0.65473 0.65473,0.72748 -0.65473,1.38222 0.65473,0.72748 0,-0.72748 0.72748,-1.38222 0.72748,-0.72748 1.38222,0.72748 0,-0.72748 -4.87413,-0.65473 1.38222,-1.38222 0,1.38222 2.10969,0 0,-0.72748 -1.45496,-0.65474 0,-0.72748 0.72748,0.72748 2.76443,-0.72748 0,-0.72748 2.10969,0 3.49191,2.1097 2.1097,0 0,0.72748 0.72748,-1.38222 1.38221,0 0,-0.72748 -0.72748,0 -2.1097,-2.10969 -0.65473,0.72748 0,-0.72748 -2.83717,-4.14664 1.45496,-0.72748 0.65473,0.72748 0.72748,0 1.38222,2.03694 -0.72749,-2.03694 2.1097,-0.72748 0.72748,0.72748 1.38221,-1.45496 0.72748,-3.49191 0.65474,0 -1.38222,-0.65473 2.76443,-0.72749 1.45496,0.72749 2.03695,2.10969 0.72748,2.03695 2.10969,1.45496 0.65474,0 0.72748,2.03694 0.72748,0 0,1.45497 1.38221,0.65473 1.38222,-0.65473 2.76442,2.03694 0.72748,0 -0.72748,2.1097 0.72748,0.72748 -2.10969,0.65473 -2.10969,-2.03695 -0.65474,0.65474 -0.72748,-1.38222 -1.38221,-0.72748 -2.61893,1.60046 2.61893,-2.25519 -2.76443,0 0,1.38221 -0.72748,0.72748 -1.38221,0.65474 -0.72748,-0.65474 0,1.38222 -0.65474,-1.38222 0.58199,1.74596 0.0727,-0.36374 0.72748,0.65473 0.87297,-0.72748 -2.25519,2.83718 0,-0.65474 0.50924,-1.60046 -1.23672,-1.23671 0,0.72748 -0.72748,0 0.21825,0.43649 0.50923,-0.43649 0,0.65473 -0.36374,0 0.36374,0.72748 -0.72748,1.38222 1.45496,0 1.38222,2.83717 -0.72748,1.38221 1.38221,-1.38221 -0.65473,-2.83717 0.65473,0.72748 0.72748,2.76442 2.10969,3.49191 1.89145,0.65473 0.21825,0.72748 1.38221,0.72749 1.38222,0 0,-0.72749 1.38221,4.21939 0.72748,-0.72748 0.65473,2.1097 2.83718,1.38221 0.65473,-0.65473 1.45496,2.76443 0.65474,-0.65474 2.10969,1.38222 0,0.65473 1.38221,0.72748 1.38222,-1.38221 -1.38222,-0.72748 -0.65473,-2.1097 -2.10969,-1.38221 0,-0.65474 0.65473,0.65474 0.72748,-0.65474 -1.38221,-0.72748 -0.72748,0.72748 -1.38222,-2.10969 -2.10969,0 2.83717,-2.10969 1.38222,0.72748 3.4919,-2.1097 -2.10969,0 -0.72748,1.38222 0.72748,-2.76443 -0.72748,0.65473 -0.65473,-0.65473 0,-2.83718 -0.72748,-1.38221 0.72748,-2.10969 -2.1097,-1.38222 0.72748,0 -1.45496,-1.38221 0,1.38221 -2.03694,0 -0.72749,-1.38221 0.72749,0.65473 0.65473,-0.65473 0.72748,0.65473 -1.38221,-2.03695 2.03694,0 0.72748,1.38222 0.72748,0 0,-0.72748 -1.45496,-0.65474 2.1097,0 2.10969,-2.10969 2.10969,0 0,1.38221 3.49191,-2.10969 4.14664,0.72748 5.67351,-2.04747 5.5297,-0.33419 3.36131,0.84819 1.01021,0.47618 2.3089,-0.61755 2.02043,0.70683 3.07858,0.59688 2.25105,0.14137 0.76054,1.91711 2.11546,-0.48031 1.41689,1.0474 7.95521,-0.15626 -0.23564,-0.5448 1.44006,-0.34308 4.436,1.99149 5.12793,0.80686 2.37752,0.0356 3.01501,-0.90436 1.44127,1.56855 3.39715,-0.39293 0.85852,0.87297 3.33863,-1.2095 1.91866,-1.636 3.28812,1.32112 6.9178,2.72004 6.2386,0.59976 -0.72748,0.65473 -2.76443,0.72748 -3.49191,2.10969 -3.4919,1.38222 -2.76443,0 -3.49191,2.10969 -3.49191,1.38222 -1.45496,1.38221 -2.76443,0.72748 0,2.10969 -0.72748,0 -0.65473,1.38222 -1.38221,3.49191 -0.72748,-0.72748 1.38221,-2.76443 -2.1097,2.76443 -2.76442,2.10969 0,-0.72748 -1.38222,0.72748 -2.10969,0 -1.38221,1.38221 0.65473,2.1097 -0.65473,0.72748 1.38221,-0.72748 -0.72748,1.38221 0.72748,2.83718 -0.72748,2.03694 -0.65473,1.45497 -1.38222,1.38221 2.03695,-0.72748 -1.38221,1.38221 2.10969,-0.65473 -0.72748,1.38221 2.10969,0.72748 0,1.38222 0.72748,0.65473 -0.72748,0 0.72748,1.45496 1.38222,-0.72748 0.72748,0.72748 -2.1097,0.65473 0,0.72748 0.65474,0 0,0.65474 0.72748,0 0,1.45496 0,1.38221 1.38221,0 -2.10969,0.65474 0.72748,0 0,0.72748 -0.72748,0.72748 1.45496,0 -0.72748,0.65473 1.38221,0 0,0.72748 0.72748,0 0.65473,1.38221 0.72749,3.49191 0.72748,0.72748 0.65473,-0.72748 -0.65473,1.38222 0.65473,0.72748 0,0.65473 1.38221,2.10969 0.80023,0 -0.21824,1.81871 -0.94573,1.45496 -1.23671,0.87298 -1.09123,0.94572 -1.30946,2.54618 -1.23672,2.54619 -0.94572,2.54618 -0.72748,2.18244 -2.69168,1.45496 -2.40069,1.45497 -3.05542,1.8187 -1.30947,1.8187 -2.90992,4.72863 0.43649,3.7829 3.7829,2.76442 4.21939,4.72863 1.9642,2.54618 2.54618,3.05542 2.32794,0.72748 5.52885,2.03695 2.47344,1.60046 1.45496,1.6732 3.12817,0.50924 -0.72748,1.6732 -0.21825,0.72749 1.45496,0.87297 0.21825,1.09122 2.18244,0.58199 0.21824,-1.45496 2.69168,0 2.90993,1.8187 0.94572,-0.94573 0.29099,0.72748 0.43649,1.30947 2.32794,1.45496 2.32794,3.41916 -1.60046,3.12817 -0.72748,1.45496 -2.03694,-1.30946 -2.47344,0.21824 -1.67321,-1.30947 -1.09122,0.94573 -2.03694,0.1455 0.72748,1.45496 -7.27481,0.94572 -2.90992,-0.21824 -0.87298,1.45496 -1.8187,1.45496 -1.67321,8.00229 -1.60046,1.8187 -1.45496,-0.36374 -0.72748,0.58199 -1.45496,-1.67321 -1.09122,-1.45496 -0.94573,-3.41916 -0.50923,-2.40069 -2.40069,-0.87297 -2.18244,0 -4.36489,1.09122 -2.18244,0.87297 -2.32794,1.45497 0.1455,2.18244 1.6732,1.8187 2.18244,3.6374 0.94573,0.94573 0,3.6374 -0.72748,2.90993 -3.12817,0.36374 -3.85565,0 -2.18244,1.45496 -1.45496,3.7829 0.58198,5.31061 -3.6374,6.69282 -5.81985,10.18474 -4.72862,6.18358 -2.69168,2.18245 0.50923,1.8187 -5.09236,5.09236 -9.23901,9.821 -1.45496,2.90992 0.72748,4.72862 -0.21824,14.76787 0.0727,0.65473 -0.29099,0.14549 -0.65473,0 0,0.72749 0.94572,-0.65474 0.291,2.54619 -0.65474,2.98267 -2.03694,-0.72748 1.45496,1.45496 0,0.65473 0.50924,-1.09122 -0.1455,0.72748 -0.21824,0.43649 -2.54619,5.23786 -4.21939,1.9642 -4.07389,3.05542 -2.61893,-0.50924 z m -3.71016,-229.8112 -0.50923,-2.03694 0.72748,2.10969 z m -4.51038,-10.47572 0.50924,-0.65473 0.87298,-0.50924 z m -33.68236,-19.49649 -0.72748,-0.72748 0,-0.65473 z m -0.72748,-1.38221 -0.72748,0 -0.65473,-0.72748 z m 8.36603,-32.809387 0.43649,-0.290992 0.29099,2.327939 z m -38.41099,-16.077327 0.72748,-1.382213 2.76443,-0.727481 -1.38222,0.727481 z m -2.10969,-12.585418 0,-0.727481 1.45496,0.727481 2.03694,-0.727481 2.83718,-2.036947 0.65473,-0.72748 2.83718,0 1.38221,-2.764428 1.38221,-0.72748 0.72749,0 0.65473,0 0,2.109694 -2.03695,0 -2.10969,4.146641 -4.21939,0 -2.1097,2.837175 z m 6.32908,-7.711297 -0.72748,-0.654733 0.72748,-0.727481 0.65473,0.727481 z m -46.12229,41.248164 -3.4919,1.382213 -1.38222,0 4.87412,-2.109694 -0.65473,0.727481 z m -4.87412,1.382213 -2.10969,0 -0.65474,-0.72748 4.14665,0 z m -16.73206,20.951452 -0.72748,-2.1097 1.38221,0 0.72749,-1.38221 0,0.72748 z m -99.22839,19.56923 0,1.38222 -0.65473,0.72748 z m -4.14664,17.45954 -1.38221,0.65473 0.65473,-0.65473 z m 46.77702,25.82557 -1.38221,0.72748 0.65473,0.65474 -1.38221,-0.65474 1.38221,-0.72748 z m 5.6016,10.47573 1.38222,0.72748 -0.72748,1.38221 -0.65474,-1.38221 z m 23.71588,27.93526 0,0.72748 -0.50924,0 z m 4.21939,-9.74824 1.38221,-2.83718 0.72748,-0.65473 -0.72748,0 3.49191,-0.72748 0,2.10969 0.72748,0 -0.72748,1.38222 0,1.38221 -0.72748,-0.65473 -0.65473,-0.72748 0,0.72748 0.65473,0 -1.38221,0.65473 -1.38222,0 z m -0.72748,-3.49191 0.72748,-0.80023 0,-0.65473 0.65473,-0.65473 0.72748,0 0,1.38221 z m 13.3129,-6.98382 2.76442,0.65474 -2.10969,0 z m 3.49191,-0.72748 1.38221,-0.72748 0.65473,0.72748 1.45496,0 -0.72748,1.38222 -1.38221,0.72748 -0.72748,0 0.72748,-0.72748 -0.72748,0 0,-0.65474 z m 2.76442,1.38222 0,0.72748 -0.72748,0.65473 0,0.72748 -0.65473,-0.72748 z m 1.81871,-3.63741 0.29099,-0.21824 0,0.36374 z m 0.29099,-0.21824 0,-0.29099 -0.72748,-0.72749 0,-0.72748 0.72748,0 1.38221,0 0,0.72748 z m 1.38221,-1.01848 0.72748,0 0.65473,-0.72748 0.72749,1.45497 z m 20.22397,8.36603 2.10969,-2.10969 0,0.72748 z m 10.98496,2.69168 0.21824,0.1455 0.21825,0.43649 z m 0.43649,0.58199 1.89145,2.32794 0,1.38221 z m 28.4445,50.48717 -1.45496,0.72748 0.72748,-1.38221 z m -23.78862,-6.25634 0,0.72748 -1.38222,-0.72748 -0.72748,-0.72748 1.45496,0 -1.45496,-0.65473 0,-0.72748 1.45496,0.72748 0.65474,0 z m -8.36603,24.44336 -0.72749,0.72748 -0.65473,-0.72748 0,0.72748 -0.72748,-0.72748 1.38221,-0.72748 z m 4.87412,4.87412 -0.65474,1.38222 0,-0.65474 z m -15.34985,-30.04496 0.36374,-0.29099 0.36374,0.29099 z m 0.36374,-0.29099 -0.0727,-0.1455 0.1455,-0.21824 0.29099,0 z m -0.36374,-8.07504 1.38222,-0.65473 0.72748,0.65473 -0.72748,0 -0.65474,0.72748 0,-0.72748 z m -29.60847,-7.78404 -0.0727,-0.21825 0.36374,0.36374 z m -0.0727,-0.21825 -0.36374,-0.36374 0,-0.72748 z m -22.6974,7.34756 -0.1455,0.29099 -0.58198,-0.29099 z m -2.10969,6.98382 -0.65474,1.38221 -0.72748,-0.72748 0.72748,-0.65473 0,-0.72748 z m 0,5.52885 -0.65474,0.72748 -0.72748,-2.10969 0.72748,0 z m 0.72748,2.54618 0,0.291 -1.38222,0.65473 z m 2.76442,10.76672 -0.65473,1.38221 -0.72748,0 0,-0.72748 z m 4.87413,3.49191 0,0.65473 -1.38222,0 0,-0.65473 z m 3.4919,2.76443 1.45497,0.72748 0,0.65473 -0.72749,-0.65473 -0.72748,0.65473 z m 4.94687,3.4919 2.03695,0.72749 0,0.65473 -0.65473,0 0,0.72748 -0.72748,0 -2.1097,-1.38221 z m -1.45496,0.72749 -1.38221,0 0.72748,-1.38222 0.65473,0.65473 z m 2.1097,1.38221 0.72748,0.72748 -0.72748,0.65473 -1.38222,-1.38221 z m 8.80251,6.11084 0.291,0.14549 -0.72748,0.72748 z m 5.8926,7.12931 -0.72748,1.45496 -0.65473,-1.45496 0.65473,0.72748 -1.38222,-2.10969 z m 1.38221,4.94687 -1.38221,0 -0.72748,-0.72748 z m -0.72748,0.65473 0,1.38222 -1.38221,-2.03695 z m 6.32909,11.20321 1.38221,0 0,0.65473 z m 2.10969,2.10969 0.58198,1.23672 -0.58198,-0.58199 0,0.72749 -0.72748,0 -0.72748,-0.72749 0,-0.65473 0,-0.72748 z m 3.49191,6.98382 0.65473,2.03694 -1.38221,0.72749 0.72748,-0.72749 -0.72748,0 0,-1.38221 -0.72748,0 -0.65474,-1.38221 0.65474,-0.72748 0.72748,1.45496 z m -2.1097,-0.72748 0.65474,2.10969 -0.65474,0 0.65474,1.38222 -0.65474,0 0,-0.72749 -0.72748,-0.65473 0.72748,-1.38221 -1.38221,0 0.65473,-0.72748 -0.65473,-1.38222 1.38221,0 z m -0.72748,0 -0.65473,0 -1.45496,-1.38222 0,0.65474 -1.38222,0 0.72749,-0.65474 -0.72749,0 0,-1.38221 1.38222,0.65473 0.72748,0.72748 z m 6.98382,9.09351 2.10969,0 0,0.65473 0.72748,0.72748 0,0.72748 -0.72748,0.65474 0,-0.65474 -0.72748,-0.72748 -0.65473,0 0,-0.72748 0.65473,0 z m 2.10969,2.76443 1.38222,-0.65474 1.38221,1.38222 -0.65473,0.65473 -0.72748,-0.65473 0,0.65473 -0.65474,-0.65473 z m 9.09351,2.83717 0,0.65473 -0.72748,0.72748 0,-1.38221 -0.65473,1.38221 -0.72748,-1.38221 0,0.65473 -0.72748,-0.65473 2.10969,-0.72748 z m 1.38222,0.65473 0.72748,0.72748 -0.72748,0.65474 -0.72748,-0.65474 z m 2.76442,2.83718 0.72749,0.65473 -0.72749,0.72748 -0.65473,0.65474 z m 4.21939,4.14664 0.72748,0.72748 0,1.38221 -0.72748,-0.72748 0,0.72748 -0.72748,-0.72748 -0.65473,0 z m 19.56924,-4.87412 0.65473,-0.72748 1.45496,0 0.65474,1.45496 -1.38222,0 -2.10969,0.65473 -0.65473,-0.65473 z m 55.87053,18.18702 0.14549,0.58198 -0.14549,0.0727 z m 4.14664,23.71587 0,-1.38221 1.45496,0 -1.45496,-0.72748 2.10969,-0.65473 1.38222,-0.72748 -0.65474,0.72748 2.1097,0.65473 0.65473,-0.65473 1.38221,0 -0.65473,0.65473 0.65473,0 0.72749,0.72748 -1.38222,1.38221 -0.72748,0 -1.38221,0 z m -17.45954,-4.87412 0.72748,-0.72748 -0.72748,0 -0.65473,-0.65473 0.65473,-0.72748 0.72748,0.72748 2.10969,-0.72748 -0.72748,2.10969 -0.65473,-0.72748 z m -80.96862,-5.6016 -0.72748,-0.72748 0,-0.65473 0.72748,0.65473 z m 137.56663,0 1.38221,-0.72748 -1.38221,-0.65473 z m -55.14305,-12.58542 -0.72748,-1.38221 0.72748,-2.76443 0.65473,-2.10969 0,0.65473 1.38222,-0.65473 0.72748,0.65473 1.38221,2.10969 0,1.38222 0,1.45496 0.72748,-1.45496 0,1.45496 -1.38221,0.65473 -0.72748,0 z m -150.87953,-2.76443 -1.38221,-0.72748 2.10969,-0.65473 0.65474,1.38221 z m 183.68892,-4.21938 0.65473,0 2.83717,-0.65474 1.38222,-2.10969 1.38221,-0.72748 -2.10969,0.72748 -0.65474,1.38221 -2.83717,1.38222 -1.38221,-1.38222 z m -15.34985,-1.38222 0.65473,-1.38221 1.38222,-0.72748 -2.03695,0.72748 z m 13.96763,-2.10969 0.65474,-1.38222 0.72748,-2.10969 -0.43649,-0.36374 0.43649,-2.40069 -2.1097,-2.54618 0,-0.29099 -0.43649,-0.291 -0.94572,-1.09122 -1.60046,-0.36374 -0.50924,-0.29099 -0.0727,0.1455 -0.65474,-0.1455 -1.38221,2.76443 0,1.38221 -3.49191,4.21939 -0.65473,0.65473 1.38221,-0.65473 3.49191,-3.49191 0,-2.83717 1.30947,-1.89145 0.58198,0.14549 2.54618,1.45496 0.43649,0.58199 0,1.16397 2.1097,1.38221 -0.72748,2.1097 0.29099,0.29099 -0.29099,1.74595 z m -239.55944,-2.76443 0,-0.72748 1.38221,-0.65473 0,-0.72748 -0.72748,-0.72748 -0.65473,1.45496 0.65473,-2.1097 -0.80023,-0.80023 -1.23671,-0.58198 1.38221,1.38221 -1.38221,-0.72748 0.65473,0.72748 -0.65473,0 0.65473,0.65474 -0.65473,0 0.65473,0.72748 -0.65473,0 0.65473,0.72748 -0.65473,0.65473 -0.72749,0 0,-0.65473 -0.72748,0.65473 -0.65473,-0.65473 0.65473,-2.1097 -1.38221,1.38222 0,-0.72748 1.38221,-1.38222 -1.38221,0.72748 0.72748,-0.72748 -1.38221,0 0.65473,0.72748 -0.65473,1.38222 -0.72748,-0.72748 0,-0.65474 -0.36374,0.36374 -0.36374,1.01848 -1.38222,-0.72748 1.38222,-2.03695 1.45496,0 0.65473,-0.72748 0.72748,0 0.36374,-0.36374 -0.36374,-0.36374 0.65473,-0.65474 0.72748,0.65474 0,-0.65474 1.38222,0 -1.38222,-0.72748 0.72749,0 0,-0.65473 0.65473,-0.72748 -3.49191,0 0.72748,-1.38221 1.38221,0 -0.72748,-1.38222 -2.03694,2.03695 -1.45496,0.72748 -0.65474,-0.72748 0,0.72748 -0.72748,0 -0.65473,0.72748 -1.45496,0.65473 0,-1.38221 1.45496,-0.72748 1.38221,-1.38221 0.65474,0 0,-0.65474 0.72748,0 -0.72748,-0.72748 -0.65474,-0.72748 0.65474,-0.65473 -0.65474,-0.72748 2.1097,0 -2.1097,-0.65474 0.65474,-0.72748 0.72748,0 0.72748,-0.72748 -2.1097,0 0,-0.65473 -0.72748,0.65473 0,-0.65473 -0.65473,0 -2.1097,0.65473 -1.38221,-1.38221 4.14664,-2.1097 0.72748,-0.65473 0.65474,-1.38221 0.72748,0.65473 0,-0.65473 -0.72748,0 0.72748,-0.72748 0,-2.1097 0.72748,-0.65473 3.49191,-3.49191 2.03694,-0.72748 -0.65473,0.72748 0,0.65473 0.65473,-0.65473 1.45496,0 0,0.65473 1.38222,0 2.10969,-1.38221 0.65473,0.72748 0,-0.72748 1.38222,0 2.83717,0.72748 2.76443,-0.72748 0.72748,-0.72748 0.65473,0.72748 -0.65473,0 1.38221,0.72748 0,-0.72748 0.72749,0 1.38221,0.72748 -1.38221,0.65473 1.38221,0 0,1.38222 0.65473,-1.38222 0.72748,0.72749 1.38222,0 -0.65474,2.10969 0.65474,0 0.72748,-1.45496 0.65473,0 0,0.72748 -0.65473,0 0.65473,0.72748 -1.38221,0.65473 2.10969,0 -1.38221,0.72748 1.38221,0 0.72748,0.65474 -0.72748,0.72748 0,0.72748 -1.38221,0.65473 0.65473,1.38221 -1.38221,0 1.38221,2.1097 -0.65473,1.38221 0.65473,0 0,0.72748 2.10969,0 -1.38221,0.72748 -1.38221,0 -0.72748,-0.72748 -0.65474,0.72748 0.65474,1.38222 -0.65474,2.10969 -1.45496,0 0,-1.45496 -1.38221,-0.65473 -0.65473,0 -0.72749,1.38221 -1.38221,-1.38221 -0.72748,0.65473 0,1.45496 -0.65473,0.65474 -2.1097,-3.49191 0.65474,1.38221 0,3.49191 -1.38222,0 0,-0.65473 -1.38221,0.65473 -1.38221,-2.03695 -0.72749,0.65474 0.72749,2.83717 0,0.65473 -0.72749,0 -2.10969,-2.76442 -0.65473,0 -0.72748,0 0.72748,0.65473 -1.38222,0 -0.72748,-1.38221 0,0.72748 -1.38221,-2.1097 0.65473,2.1097 0,0.65473 -0.65473,0 1.38221,0.72748 -0.72748,0 0.72748,0.72748 -0.72748,0.65473 1.45496,0 0.65474,0 0,0.72748 -0.65474,0.65474 1.38222,0 -0.72748,0.72748 0,0.72748 -0.65474,-0.72748 0.65474,1.38221 -0.65474,0.72748 0.65474,0 0,0.65474 -0.65474,0 0.65474,1.45496 -2.1097,1.38221 0,-0.72748 z m 137.56663,-2.83717 0.72748,-0.65474 0,-0.72748 -0.72748,0.72748 0,-0.72748 -1.38222,0.72748 0,-0.72748 -0.72748,0 0,-0.65473 0.72748,0 0,-0.72748 0.65474,0.72748 0.72748,-0.72748 0.72748,-0.72748 0.65473,-0.65474 0.72748,1.38222 0,0.72748 -0.72748,0 0,-0.72748 -0.65473,0.72748 0.65473,2.03695 z m 2.10969,-2.03695 0,0.65473 -0.72748,0 z m -10.47572,-3.49191 0.65473,-1.45496 0.72748,0 0,0.72748 z m 2.10969,0 0,-1.45496 1.38222,0 0,1.45496 z m 23.71588,-2.83717 0,-1.38222 0.72748,0 -0.72748,-0.72748 0.72748,-0.65473 -0.72748,0 -0.72748,-0.72748 1.45496,-0.65474 -1.45496,0 0,-0.72748 0.72748,0 -0.72748,-0.72748 -0.65474,0.72748 0,-0.72748 0,-0.65473 -0.72748,0.65473 -0.65473,0.72748 -0.72748,0 2.10969,2.76443 0.65474,0 -0.65474,0.72748 0.65474,0.72748 z m -2.1097,-5.60161 0.72748,0 -0.72748,0.72748 z m 31.42718,4.94687 0.21824,-0.21824 0.50924,0.21824 0,-0.72748 -0.50924,0.50924 -0.21824,-0.1455 0,-0.36374 -0.65474,0 0.65474,0.36374 z m -57.98023,-3.49191 1.45496,-0.72748 -0.72748,0 -0.72748,-0.72748 z m 37.75626,0 0,-1.45496 -0.72748,-1.38221 z m 6.25633,0 0.72748,-1.45496 -0.72748,0 z m -50.26892,-0.72748 -2.1097,-2.76442 1.38222,0 0.72748,1.38221 z m 57.25274,0 0,-2.76442 -0.65473,2.03694 z m -5.6016,-2.10969 0.72748,-2.76443 -0.72748,-0.72748 0.72748,0 0,-0.65473 -1.38222,0 0,-1.45496 -1.38221,0.72748 0.65473,-0.72748 -0.65473,0 -1.45496,0.72748 0.72748,0 -1.38221,0.72748 1.60045,0.50923 -0.21824,0.1455 0.72748,0 -0.50924,-0.1455 0.50924,-0.50923 -1.45496,0 0.72748,-0.72748 0.72748,0 1.38221,0.72748 0,0.65473 0.65474,0 -0.65474,0.72748 0.65474,0 -0.65474,0.65473 -0.72748,0 1.38222,0.72749 -1.38222,0.72748 0.72748,0 z m 2.83717,0 0.65474,0 1.45496,-2.1097 -0.72748,-0.65473 -1.38222,1.38222 z m -57.25274,-0.65473 -0.72748,-0.72748 0.72748,-0.72749 -0.72748,0 0,-0.65473 -1.38221,0.65473 0,-0.65473 -0.72749,-0.72748 0.72749,-0.65473 0.65473,0.65473 1.45496,0.72748 0,-0.72748 -1.45496,0 0.72748,-0.65473 1.38221,0.65473 z m 11.13046,-2.83718 2.10969,-0.65473 0.72748,-1.45496 -0.72748,-0.65474 1.38222,0 0.50923,-1.52771 0.36374,-0.58198 0.50924,0 0,-0.72748 0.72748,0 0,-0.65473 -0.72748,0.65473 -0.50924,0.72748 -0.14549,0 -0.21825,0.58198 -0.50923,0.80023 -3.49191,1.38222 -0.65474,0 -0.72748,0.72748 2.1097,-0.72748 2.10969,0 z m 24.44335,0 0.72748,-0.65473 0.65474,0 0,-0.72748 0.72748,0 0,0.72748 0.72748,-0.72748 0,0.72748 0.65473,-0.72748 -0.65473,0 0,-1.38222 -0.72748,0 -1.38222,0.65474 0.65474,0.72748 -0.65474,0.72748 -0.72748,0 -0.65473,-0.72748 0.65473,-0.72748 -0.65473,0 -1.45496,0.72748 -0.65473,0.72748 1.38221,0 0.72748,-0.72748 z m -40.52068,-2.76443 -0.65473,-2.10969 0.65473,0.72748 0,-0.72748 0.72748,1.38221 0.72748,0 0,0.72748 z m 60.8174,0 0.65473,0 1.38222,-1.38221 -1.38222,0.65473 z m -54.48832,-1.38221 -1.38221,-0.72748 0.65473,-0.72748 0,0.72748 0.72748,0 z m 10.47573,-2.10969 1.38221,0 1.38222,-0.72749 z m 41.90289,0 0,-1.38222 1.38222,0 -0.72748,-0.72748 1.45496,-1.38221 -2.1097,0 0.65474,0.65473 -1.38222,1.45496 -1.38221,0 1.38221,0.65473 -0.65473,0 z m -48.23198,-0.72749 1.45497,-0.65473 -0.43649,0 2.18244,-1.45496 2.40069,-0.65473 3.49191,-2.83718 -1.38222,0.72748 -2.10969,2.1097 -1.38222,0 -1.01847,0.65473 -2.47343,0.72748 0,0.72748 0.29099,0 z m 0,-2.10969 0.72749,0 -2.1097,-0.65473 0.72748,-0.72748 -0.72748,-0.65474 -0.65473,0.65474 0.65473,0 -0.65473,0.72748 z m 48.88672,-1.38221 0.72748,-1.38222 -2.1097,0 0,0.72748 1.38222,0 z m -15.34985,-0.65474 0.72748,-0.72748 0,-0.72748 0,-1.38221 -0.72748,0.72748 0,1.38221 0.72748,-0.72748 z m 2.1097,-0.72748 0,-0.72748 -0.72748,0 z m 10.47572,0 1.38221,-2.76442 -2.10969,0.65473 -0.65473,0.72748 z m 107.52167,0 2.10969,-0.72748 1.52771,-1.09122 0.58199,-0.29099 -0.0727,-0.0727 0.80023,-0.58198 -1.45496,-2.1097 0.72748,0 0,-1.38221 0.72748,0.65473 0.65473,-1.38221 0.72748,1.38221 0.65474,-0.65473 -0.65474,0 0.65474,-1.45496 -0.65474,0 0,-1.38222 1.38222,0 1.38221,0 0,-0.65473 0,-0.72748 -0.65473,0 1.38221,-0.72748 0.65473,0.72748 1.45497,0 0.65473,-0.72748 1.38221,-1.38222 -2.03694,0.72749 0,0.65473 -1.45497,0 0,-0.65473 -1.38221,0.65473 -0.65473,0.72748 0.65473,0.72748 -1.38221,0 0,0.65473 -0.72748,-1.38221 -1.38222,1.38221 -1.38221,-2.76442 1.38221,3.4919 -0.65473,0 0.65473,0.65474 -0.65473,0.72748 -0.72748,0.72748 -0.72748,1.38221 0,1.38222 -0.65473,0 1.30946,1.30946 -0.50924,0.36374 z m -101.26533,-0.72748 1.45496,0 0,-1.38221 -1.45496,-0.65473 0,0.65473 0.72748,0.72748 -0.72748,0 z m -28.59,-0.65473 0.65473,-0.72748 0.72748,0.72748 0,-1.38221 -0.72748,0.65473 0,-1.38221 z m 31.42717,0 1.38221,0 -2.10969,-1.38221 z m -52.37862,-0.72748 3.49191,-0.65473 2.10969,-0.72748 -0.72748,-0.72749 -2.76443,1.45497 -1.45496,0 z m 33.53687,0 0.65473,0 -0.65473,-0.65473 z m 2.03694,0 1.45497,0 -0.72749,-1.38221 -0.72748,-0.72749 -1.38221,-0.65473 -0.65473,0.65473 0.65473,0.72749 0,-0.72749 2.10969,1.45497 z m 43.35786,0 4.87412,0 0.65474,-0.65473 -0.43649,-0.50924 0.14549,-0.58199 0.291,-0.36374 0,-1.38221 -0.291,1.74595 -0.36374,0.36375 0.21825,0.21824 -0.21825,1.16397 -2.83717,-0.65473 z m -32.15465,-0.65473 0.72748,0 1.38221,-0.72748 0,-1.38222 1.38222,0 0.72748,-0.72748 -0.72748,0 -2.1097,0.72748 -0.65473,0.65473 -1.45496,0 -0.65474,0.72749 z m -7.7113,-0.72748 0.72748,0 -0.72748,-0.72749 1.45496,0 -1.45496,-0.43648 0,-0.21825 -0.29099,0.1455 -0.36374,-0.1455 -0.72748,0.65473 1.09122,-0.50923 0.29099,0.0728 0,0.43648 z m 22.40641,0 -0.72748,-1.38222 0.72748,-0.72748 0.65473,0.72748 z m -31.42717,-0.72749 1.38221,-0.65473 0,-0.72748 -0.72748,0.72748 -0.65473,-0.72748 z m -29.39023,-1.38221 2.1097,-0.65473 0,-0.72748 -0.65474,0.72748 -0.72748,-0.72748 z m -3.49191,-0.65473 4.21939,-2.83718 -0.72748,0 0,-1.38221 2.1097,-2.1097 -1.38222,0 0,0.72749 -0.72748,1.38221 -0.65473,-0.72748 0,1.45496 -0.72748,0.65473 0,-0.65473 -0.36374,0.29099 -0.29099,-0.29099 0,0.65473 0.29099,-0.36374 0.36374,0.36374 1.38221,0 -3.49191,2.1097 z m 87.29771,0 2.10969,-0.72748 2.69168,-3.27367 1.52771,0.50924 -1.38221,-0.72748 -0.1455,0.21824 -0.58198,-0.21824 -2.1097,3.49191 -1.38221,0 z m -96.31847,-0.72748 -1.45496,-1.38222 0,0.65474 -0.65473,-0.65474 0.65473,-0.72748 -0.65473,0 0,0.72748 0,0.58199 z m 1.38222,-2.1097 0.65473,0 0.72748,-0.65473 z m 55.14304,0 0.72748,0 1.38222,0 0.72748,0 2.03695,-1.38221 -2.76443,1.38221 -0.72748,-0.65473 -0.65474,-0.36374 0,-0.36374 0,-0.72748 -0.72748,-0.65473 0.72748,1.38221 -0.72748,0 -0.65473,0 -0.72748,0.72748 1.38221,-0.72748 0.72748,0.36374 0,0.36374 0.65474,0 z m 118.72488,0 0,-0.65473 -1.38221,0 z m -124.32648,-1.38221 0.72748,-0.72748 0.72748,0.72748 -0.72748,-1.38221 0,-1.38222 -0.72748,0 z m -52.37862,-0.72748 0.72748,-0.65473 0.72748,0.65473 -0.72748,-1.38222 z m 62.85435,-2.03695 1.45496,0 0,-0.72748 -2.83718,-0.72748 0,0.72748 2.1097,0 z m -54.41557,-1.45496 3.49191,-2.76443 -0.72748,0 z m 29.31748,0 0,-0.65473 0.65473,-0.72748 0,1.38221 z m 20.22396,0 0,-0.65473 0.72748,0 0,-0.72748 -0.72748,0 -0.65473,0.72748 z m 16.07733,-0.65473 0,-0.72748 0.72748,0.72748 0,-0.72748 0.65473,0 1.38222,-2.1097 1.45496,0.72748 0.65473,-0.72748 -1.38221,0 0,-0.65473 -1.38221,0.65473 1.38221,-2.03694 0.72748,-2.83718 -0.72748,2.10969 -1.38221,2.1097 -1.38222,0 0,0.65473 -0.72748,1.45496 -0.72748,-1.45496 0,2.1097 z m 97.77343,-0.72748 1.38221,-0.65474 0.72748,-0.72748 0.65473,0 2.1097,-2.10969 -1.38221,0 -0.72749,-0.65473 0.72749,-2.1097 -2.1097,-2.83717 0,-1.38222 -0.65473,0.72748 0.65473,1.38222 0,0.72748 1.38221,0.65473 0,0.72748 -0.65473,1.38221 1.38222,2.1097 -0.72749,0 0,1.38221 -1.38221,-0.72748 0,1.45496 -1.38221,0 z m -115.96045,-0.65474 0.72748,-0.72748 0.72748,0 -1.45496,-1.38221 1.45496,0 0,-0.72748 -1.45496,0.72748 0,0.65473 -0.65473,0.72748 z m 13.3129,0 0.65473,0 1.45496,-0.72748 0,-0.72748 z m -23.06114,-0.72748 0.72748,-0.72748 0.65473,0.72748 0,-0.72748 0.72748,-0.65473 0.65473,0.65473 0.72748,0 0.72749,-0.65473 0,-0.72748 1.38221,-0.65473 -2.1097,0 0.72749,0.65473 -0.50924,0.21824 -0.21825,-0.21824 0,0.36374 -0.72748,0.36374 -0.65473,-1.38221 0,-0.72749 -0.72748,0.72749 -0.65473,0 -0.72748,1.38221 z m 3.4919,-1.74595 0.21825,-0.1455 0.50924,0.50924 -0.72749,0 z m -50.9964,0.36374 0.72748,0 0.65473,-2.1097 2.10969,-2.10969 2.1097,-0.65473 0.72748,0 0.65473,-2.1097 0.65474,-1.38221 -0.65474,0 -0.65473,0 0,0.65473 0.65473,-0.65473 0,0.65473 -1.38221,2.1097 -2.1097,1.38221 -2.76442,2.10969 -1.38222,0 0.65474,1.38222 z m 0,-0.72748 0.72748,-1.38222 0.65473,0 -0.65473,0.72749 z m 9.09351,0.72748 2.10969,-2.1097 0.65473,-1.38221 -2.76442,2.76443 z m 46.77702,0 0.72748,-0.36374 0,0.36374 0.65473,-0.72748 -0.65473,0.36374 0,-0.36374 -0.72748,0 -2.1097,-0.65473 0,-0.72749 -0.65473,1.38222 2.10969,0 z m 6.32908,-0.72748 2.03695,-0.65473 -0.65474,-0.72749 0.65474,-0.72748 -1.38222,0.72748 0,0.72749 z m 11.13046,0 0.72748,-0.65473 0.65473,0.65473 0,-0.65473 1.45496,-1.45497 -2.83717,0 -0.65474,0.72748 -0.72748,0.72749 z m -11.85794,-2.1097 1.38221,-0.65473 0,-0.72748 -0.65473,0.72748 z m 16.73206,-1.38221 0.72748,0 2.76443,-0.65473 0.72748,-0.72748 0,0.72748 2.10969,-1.45496 0,-2.76443 1.38221,-0.72748 0,-0.65473 2.76443,-2.83718 0.72748,0 0,-1.38221 0.72748,0 -1.45496,-3.49191 -0.65473,0 -1.38221,0.72748 0.65473,0 0,0.65473 -1.38222,2.1097 -3.4919,0.72748 -2.1097,0.65473 0,0.72748 1.38222,-0.72748 -0.65474,1.45496 -1.38221,1.38222 -0.94573,1.30946 -0.72748,0.58199 -0.43648,-0.50924 -0.72749,1.38221 1.16397,-0.87297 0.21825,0.21824 0.50923,-0.80023 0.94573,-0.65473 0,-0.65473 1.38221,-0.72749 -2.10969,3.49191 2.10969,-1.38221 -2.10969,2.10969 2.10969,-1.38221 0,-0.72748 1.38222,-1.38221 0.72748,0.65473 -1.45496,1.45496 1.45496,-0.72748 0.65473,1.38221 -2.10969,2.1097 0,-0.72748 -1.38222,0.72748 0.72748,-1.38222 -1.38221,1.38222 0,-0.72748 z m 9.82099,0 1.38221,-1.38221 -0.72748,-1.38222 -0.65473,2.1097 z m -166.22937,-0.65473 -0.72749,-1.45496 1.45497,-2.03695 -0.291,1.60046 0.291,-0.94573 0.65473,0.72748 0,1.38222 -0.65473,-0.72748 0,1.45496 -0.58199,-0.58199 z m -0.72749,-1.45496 -0.65473,0 0,-0.65474 0.65473,-0.72748 z m 135.52969,1.45496 2.76442,-1.45496 1.38222,0 0.72748,-1.38222 1.38221,-1.38221 0.72748,-0.72748 -0.72748,0 -0.65473,-0.65473 0.65473,1.38221 -0.65473,0 -0.72748,0.72748 -0.72748,0.65473 0,0.72748 -0.65474,-0.72748 -0.72748,0.72748 -0.65473,-0.72748 -2.10969,2.1097 0.65473,0 z m 37.02877,0 0.65473,-0.72748 0.72749,0.72748 -0.72749,-1.45496 -0.65473,0.72748 z m -86.64297,-0.72748 0.72748,0 1.38222,-0.72748 -0.72748,-1.38222 0,1.38222 z m -5.6016,-0.72748 3.49191,-2.76443 -0.65473,0 -1.38222,1.38221 z m 44.01259,0 0.72748,-1.38222 -0.72748,0 z m 3.49191,0 1.38221,0 0.72748,-1.38222 0.72749,-2.10969 -0.72749,0 1.38222,-1.38222 0.72748,0 -0.72748,0.72749 1.38221,-0.72749 -0.65473,1.38222 0.65473,0 0,-0.65473 1.45496,0.65473 -1.45496,1.45496 -0.65473,1.38221 2.10969,-2.10969 0,-0.72748 -0.72748,-0.65473 1.38222,-2.83718 0.58198,-0.21824 0.1455,0.21824 0.50923,-0.50924 2.25519,-0.87297 -1.38221,0 1.38221,-1.38222 -0.65473,0 0,-0.72748 1.01847,0.36374 -1.01847,-1.01847 0.43649,-0.65473 -1.16397,0.43648 0,-0.50923 -0.72748,0.72748 -2.03695,0 0.65474,0.65473 -0.50924,0.72748 -0.1455,0 0.0727,0.1455 -0.80023,1.23672 0,-0.65474 -0.72748,0 -0.65473,0.65474 0,-0.65474 -0.72748,0 0,1.38222 0.72748,-0.72748 1.38221,-0.65474 -1.38221,1.38222 0.65473,0 -0.65473,2.76442 0,-0.65473 -2.1097,1.38222 -0.72748,3.4919 -0.65473,0 z m 4.87412,-7.63855 0.72748,-0.72748 0.72748,-0.65474 0.65474,0.65474 -0.65474,1.38221 -0.72748,0.72748 -0.72748,-0.72748 0.72748,0 z m 2.1097,-0.72748 -0.58199,-1.23672 0.0728,-0.1455 2.61893,0 0,1.38222 -0.72748,0 -0.65473,0.72748 0.65473,0 -0.1455,0.14549 -0.65473,0.291 z m 1.38221,-2.76443 0.72748,-0.21825 0,0.21825 z m -2.76443,6.98382 -0.72748,0 0,-0.72749 0,-0.65473 1.45496,-0.72748 -0.72748,0.72748 z m 10.47573,3.4919 0,-1.38221 -0.72748,-0.72748 0.72748,-0.72748 -0.72748,0 0,0.72748 -0.65474,0.72748 z m -67.72847,-0.72748 0.65473,0 0.72748,-1.38221 z m 50.99641,-0.65473 0.65473,-0.72748 0,-0.72748 0,-2.03695 1.38221,-1.45496 -0.65473,2.10969 0.65473,-0.65473 1.45497,-0.72748 -0.72749,0 0,-0.72748 0.72749,-0.65473 -0.72749,0 0.72749,-0.72748 -1.45497,0.72748 -1.38221,2.10969 -1.38221,2.03695 0.72748,-0.65473 0.65473,0.65473 -1.38221,0.72748 z m 11.13045,0 2.1097,-2.10969 -0.72748,-0.72749 -1.38222,1.38222 1.38222,-0.65473 z m -51.65114,-0.1455 0.65474,-1.30946 -0.65474,0.72748 z m 90.78961,-0.58198 0.65474,-2.1097 -0.65474,-0.65473 -0.72748,2.03695 z m -99.88312,-0.72748 0.21825,-0.21825 0.50923,0.21825 0,-0.65473 -0.50923,0.43648 -0.21825,-0.0727 0,-1.09123 0.72748,-1.38221 -1.45496,2.1097 0.72748,0.36374 z m 44.01259,0 1.38222,-1.38222 0,-1.38221 0.72748,0 -0.72748,-0.72748 z m -122.21678,-0.65473 0,-1.38222 0.65473,-0.72748 0,1.38221 z m 124.98121,0 0,-0.72749 1.38222,0 0.72748,-0.65473 -0.72748,0 2.10969,-2.10969 -1.38221,0.65473 0,-1.38221 -0.72748,0 0,-0.65474 1.45496,-1.45496 0.43649,0 -0.43649,1.45496 0.65473,-1.45496 -0.21824,0 0.21824,-0.65473 -0.65473,0 -0.72748,0.65473 0.72748,-2.76443 -0.72748,1.38222 0,-1.38222 0.72748,-0.72748 -0.72748,0 0,-0.65473 0,-1.38221 0,-0.72748 0.72748,-0.72748 -0.72748,0 0,-0.65474 0.72748,-0.72748 -0.72748,0 0,-0.65473 -0.72748,-0.72748 -0.65474,1.38221 0,0.72748 0.65474,0 0,0.65474 -1.38222,1.45496 0.72748,0 0.65474,0.65473 -1.38222,0 0.72748,0.72748 0.65474,0 0,0.65473 0.72748,0 -1.38222,1.45497 0.65474,0 0,0.65473 0.72748,0.72748 -0.72748,1.38221 -0.65474,0.72748 -0.72748,0 0,0.65474 -1.38221,-0.65474 0,0.65474 0.72748,0 0,0.72748 0.65473,0 0,-0.72748 0.72748,-0.65474 0.65474,0.65474 -0.65474,2.10969 0.65474,0 -1.38222,0.72748 -0.65473,0.65473 z m -7.63855,-0.72749 0.65474,-1.38221 -0.65474,-0.72748 z m 22.9884,-0.65473 2.10969,-1.45496 -0.65473,-0.65473 0.65473,0 -1.38221,-0.72748 2.10969,-0.65474 -2.10969,0 0,-0.72748 1.38221,-1.38221 0,-0.72748 -0.65473,-0.65473 -0.72748,-1.45497 -0.50924,-0.50923 0.50924,-0.1455 -0.72748,0 0.21824,0.1455 -1.60046,0.50923 0,-0.65473 0.72748,-1.38221 -0.72748,0.65473 0,-0.65473 -0.65473,-1.45496 0.65473,0 0.72748,0.72748 0.65474,-0.72748 -2.03695,-2.03695 -1.45496,0 0,0.65473 1.45496,0 -1.45496,0.72748 -0.65473,0 -0.36374,-0.36374 0.36374,-0.36374 -0.72748,0 -0.65474,0 0,0.72748 -0.72748,0 0,0.65474 0,0.72748 -0.72748,1.38221 0.72748,-0.65473 0,-0.72748 0.72748,0 -0.72748,1.38221 0.72748,-0.65473 0.65474,1.38221 -0.65474,0.65473 0.65474,0 1.38221,-2.03694 0,2.03694 1.45496,0 -0.72748,1.45497 0.72748,0 0.58199,0.58198 0.80022,-1.30947 1.38222,0 0,2.1097 0.72748,0 -1.45496,1.38221 0,-1.38221 -0.58199,1.16397 0.58199,0.21824 0,0.72748 -0.65474,2.76443 1.38222,-1.38221 z m -2.03695,-8.43878 -0.72748,-0.65473 0,-0.72748 0.72748,0.72748 z m -3.49191,-2.76442 0.65474,-0.72748 1.38221,0.72748 -1.38221,0.72748 0.72748,-0.72748 z m 4.14664,0.72748 -0.65473,0 -0.72748,-0.72748 z m -11.13045,9.74824 2.03694,-2.10969 -0.65473,-2.76443 -0.72748,1.38221 0.72748,0 0,0.72748 -0.72748,0.65474 0.72748,0 z m 26.4803,0 2.10969,-0.72748 -0.65473,-0.65473 -0.72748,0 z m -73.33007,-0.72748 0.72748,-0.50924 0,0.50924 0.72748,0 0.65473,-0.65473 0,0.65473 1.38222,-2.03695 -1.38222,0.65474 -1.38221,0.87297 0,-0.14549 z m 99.22839,-0.65473 0.65473,-0.72748 1.38221,0 0,-2.1097 -0.65473,0 0,0.72748 -0.72748,0.72748 0,-0.72748 -0.65473,1.38222 z m -60.8174,-0.72748 1.45496,-2.76443 -0.72748,0 z m 26.55305,0 0.72748,0 0.65473,-1.38222 -0.65473,0 z m -16.07733,-0.65474 0.50924,-0.21824 0.21824,0.21824 0.72749,-0.72748 -0.94573,0.50924 -0.50924,-0.50924 z m -46.04953,-0.72748 0,-2.76442 -0.72749,2.03694 z m 2.10969,0 0.65473,-2.10969 -1.38221,1.38221 z m 55.87053,0 0.65473,0 0.72748,-0.72748 0.65474,-0.65473 0.72748,-1.38221 -0.72748,0.65473 0,-0.65473 -0.65474,0.65473 0.65474,0.72748 -0.65474,0 z m 21.60618,-0.72748 2.10969,0 -0.72748,-0.65473 0.72748,-0.72748 -1.38221,0 0,-0.65473 z m -16.07733,-0.65473 1.45497,-0.72748 0.65473,0 1.38221,-1.38222 0,0.72749 4.21939,-2.1097 2.76443,-2.83717 0,-2.03695 -0.65473,0.65473 0.65473,-1.38221 0,-1.38222 -1.38222,-1.38221 -0.65473,0.65473 -1.45496,0 -0.65473,-1.38221 0.65473,-0.72748 0,-0.65473 -0.65473,-0.72748 -1.38222,0 0,0.72748 0,0.65473 -2.83717,3.49191 -1.38222,0 0,2.10969 -2.76442,1.38222 -0.72748,0.72748 0.72748,0 -0.72748,0.72748 0.72748,0 0.65473,0.65473 -0.65473,0 0.65473,0.72748 -0.65473,0.65473 1.38221,0 0,2.1097 z m -16.00457,-0.72748 1.38221,-1.38222 -0.72748,1.38222 1.38221,-2.1097 -1.38221,0.72748 z m -81.04137,-0.65473 0.72748,-1.45497 0.65473,-0.65473 -1.38221,0 0,0.65473 -0.72748,-0.65473 0.72748,1.38221 -0.72748,0 z m 71.94785,0 0.65474,0 0,-0.72749 0,-0.72748 0,-0.65473 0.72748,-0.72748 -1.38222,0.72748 0.65474,0 -1.38222,1.38221 1.38222,-0.72748 z m -2.10969,-0.72749 0,-0.72748 0.72748,0.72748 0,-1.38221 0.65473,0.65473 0,-0.65473 -0.65473,0 0,-0.72748 -0.72748,-1.09122 0,-0.29099 -0.1455,0.0727 -0.58198,-0.80022 0,-0.65474 0.72748,0 0,-0.72748 -0.21824,-0.43649 0.21824,-0.21824 -0.72748,-0.72748 0.72748,-0.72748 1.38221,-0.65474 -0.65473,2.1097 1.38221,0.65473 0,0.72748 0,0.65474 1.38222,0.72748 -0.72748,-1.38222 0.72748,-0.72748 -1.38222,0 -0.72748,-0.65473 0,-1.45496 0.72748,0 -0.72748,-0.65474 1.38222,0 0.72748,-1.38221 -0.72748,0.65473 0,-0.65473 -2.76443,1.38221 -1.38221,0.65474 0.65473,0.72748 0.50924,0.94572 -1.16397,1.16397 0.65473,0.65474 0,0.72748 -0.65473,0.72748 1.23671,-0.65474 0.1455,0.21825 0,0.43649 0.72748,0.65473 -0.72748,1.38221 -1.38221,-0.65473 0,0.65473 0.65473,0 z m 9.74824,0 1.45497,-0.72748 0.65473,-1.38221 -0.65473,0 0.65473,-0.65473 0,-0.72748 -1.38222,1.01847 0,-1.01847 -0.72748,0.72748 -0.65473,0.65473 0,-0.65473 0,-1.45496 -0.72748,0 -0.65473,0.72748 0,1.38221 1.09122,-0.50924 0.29099,0.50924 0,0.72748 0,0.65473 z m 0,0 0,-1.38221 0.72748,0.65473 z m -0.65473,-1.38221 0.65473,-1.38221 0.50924,0.50923 z m -0.29099,-1.23672 -0.43649,-0.87297 0.72748,0.72748 z m 49.1777,2.61893 1.38222,-1.38221 -1.38222,-0.72748 -2.10969,0 0,1.38221 z m -104.75724,-0.72748 0,-4.14664 -0.72748,1.38222 z m 11.85794,0 0.72748,-0.65473 0,0.65473 0.65473,0 -0.65473,-0.65473 0,-1.38221 z m 99.15564,-0.65473 2.83717,-1.38221 0.65474,0 0,-0.72748 -3.49191,1.38221 z m 64.96404,-0.72748 1.45496,-1.9642 0.65473,1.30947 0.65474,-1.45496 -0.65474,0 0,-0.65474 0,-0.72748 -1.38221,-0.65473 0.65473,0 -1.38221,-0.72748 -0.72748,-1.38222 -2.03695,-2.10969 -0.72748,0 0,-2.76443 -0.72748,0 0.72748,-1.45496 -2.10969,-0.65473 1.38221,-1.38222 0,-0.72748 1.45496,0 -1.45496,-0.72748 1.45496,-2.03694 -0.72748,0.65473 -0.72748,-2.10969 1.45496,-0.65474 0.65473,0 1.38222,-0.72748 0.72748,0 1.38221,4.21939 0.72748,0 -0.72748,-0.72748 0,-2.10969 -0.65473,-0.65474 2.03695,-1.38221 -2.03695,0 1.38221,-2.1097 4.14664,2.1097 -2.03694,-1.45496 -0.72748,-0.65474 0.72748,-1.38221 -2.1097,-1.45496 -0.72748,0.72748 1.38222,0 0.72748,0.72748 0,0.65473 -1.38222,0 -1.38221,0.72748 -1.45496,2.76443 -3.49191,0 -1.38221,2.83718 0,1.38221 1.38221,0.65473 -2.03695,2.1097 1.38222,2.83717 -2.1097,0.65474 -0.72748,0.72748 2.1097,-0.72748 0.72748,0 -0.72748,0.72748 -0.65474,0.65473 0,0.72748 0.65474,-1.38221 1.38221,1.38221 0.72748,0 0,0.72748 0.72748,0.65473 0.65473,0 0.72749,1.38222 0.65473,0 0,0.72748 2.83717,2.10969 -0.65473,0.80023 -0.0727,-0.14549 z m -199.76624,-0.80023 3.49191,-0.58198 -2.76443,0 -0.72748,-0.72748 z m 81.76885,-0.58198 0.65473,-1.38222 -0.65473,0 z m 168.26632,-1.38222 1.38221,0 0.72748,-0.72748 -0.72748,-0.65473 0,0.65473 z m -278.62517,-0.72748 -0.72748,-0.65473 0.72748,-0.72748 0.65473,1.38221 z m -0.72748,-0.65473 -0.65473,0 0,-1.45496 z m 111.74106,0.65473 0.72748,-0.72748 0.65473,-0.65473 -0.65473,0 0,0.65473 -0.72748,-1.38221 0,-0.65474 -0.65473,0 0.65473,-0.72748 -1.38222,0 0.72749,0.72748 -0.72749,0 0.72749,0.65474 0.65473,0 -0.65473,1.45496 z m -113.12327,-0.65473 -1.38222,-1.45496 0.65473,0 -0.65473,-0.65474 0,-0.72748 -0.72748,0 0.72748,-1.38221 0,0.72748 0.65473,0 0.72749,0 0,0.65473 0.72748,0.72748 -0.72748,0 0,0.65474 -0.72749,-0.65474 z m -0.72749,-3.49191 -0.65473,-2.10969 -0.72748,-0.72748 0.72748,0 0.65473,0.72748 z m 105.48473,3.49191 0.58198,-0.94573 0.1455,0.21825 0.65473,-1.38222 -0.80023,1.16397 -0.58198,-1.16397 0,-0.72748 -0.72748,1.38222 0.72748,0 z m 4.87412,0 1.38221,-0.72748 0.72748,-0.72748 -0.72748,-1.38222 0,1.38222 -0.65473,0.72748 -0.72748,-0.72748 -0.21824,0.21824 -0.43649,-0.87298 0.65473,-0.72748 -1.09122,0.58199 -0.29099,-0.58199 0,0.72748 0.29099,-0.14549 0.43649,0.80023 -0.72748,0.72748 z m 7.7113,0 0.65473,-0.72748 -0.65473,-1.38222 -1.38222,0.65474 0,0.72748 0.65474,-0.72748 0.72748,0 z m -80.31389,-0.72748 -1.38221,-1.38222 0,0.65474 z m 61.47213,0 1.38222,0 -2.83718,-2.1097 z m -72.67533,-0.72748 -0.65474,-1.38222 0.65474,0.72748 z m 13.96763,-0.65474 3.49191,-0.72748 -1.38222,0 z m 123.59899,0 1.45497,0 0,-0.72748 -2.1097,-0.65473 2.1097,-0.72748 3.4919,-1.38221 1.38222,0 0,-0.72748 0.65473,-0.65474 -0.65473,0 0,-0.72748 0.65473,-1.38221 -1.38221,0.65473 0.72748,-0.65473 -1.38222,-0.72748 0.65474,-0.65474 -0.65474,0 -0.72748,1.38222 -1.38221,-0.72748 -2.83718,2.10969 -1.38221,0.72748 0.72748,0.65474 0,-0.65474 0.65473,-0.72748 0.72749,0 -0.72749,0.72748 2.83718,0 -0.72748,0.65474 -0.65473,0 0,0.72748 -0.72748,0.65473 -1.38222,0 0,-0.65473 -0.72748,0 0,0.65473 0.72748,0.72748 -1.38221,1.38221 1.38221,0 z m 0,0 0,-0.72748 0.72749,0 z m -127.74563,-0.72748 1.38221,0 -1.38221,-0.65473 0,-0.72748 -0.72748,0.72748 0.72748,0 z m 179.46952,-0.65473 1.38222,-1.45496 1.38221,0.72748 0.72748,-0.72748 -1.38221,-0.65473 -2.1097,1.38221 -0.72748,-0.72748 0,-0.65473 -0.65473,0.65473 -2.1097,-1.38221 z m 6.25634,0 -0.65473,-0.72748 -0.72749,-2.10969 0,2.10969 z m -30.04496,-1.45496 0,-2.76443 2.10969,-1.38221 1.38222,-2.1097 -1.38222,-1.38221 0.72748,1.38221 -0.72748,0 0,0.72748 -0.65473,0.65474 -0.72748,0 0.72748,0.72748 -2.10969,0.65473 0,2.1097 -1.38222,-0.65474 -0.72748,0 0,1.38222 0.72748,-1.38222 1.38222,1.38222 z m 17.45954,-0.65473 -1.38221,-3.49191 -0.65474,0.65473 0.65474,0 z m -159.17281,-1.38222 0.65473,-0.72748 0,-1.38221 0.72748,-0.72748 0,-1.38222 -0.72748,1.38222 -1.38221,2.10969 0.72748,-0.72748 z m 14.62236,0 0.72749,0 1.38221,-0.72748 0.72748,0 -0.72748,-1.38221 0,0.65473 -1.38221,0 -0.72749,0.72748 z m 123.599,0 -2.03695,-0.72748 -0.72748,-1.38221 0,0.65473 0,0.72748 z m -141.05854,-0.72748 0.72749,-2.76443 0,-2.10969 z m -14.62236,-0.72748 0,-0.65473 -1.45496,0 -0.65474,-0.65473 0,0.65473 z m -44.01259,-1.38221 -0.72748,-1.38222 0.72748,-0.72748 0.65473,0 0,-1.38221 0.72748,0.72748 0.72748,0.65473 -1.45496,0.72748 0,0.72748 z m -0.72748,-1.38222 -0.65474,-0.72748 0.65474,-0.65473 0.72748,0 z m 115.23296,1.38222 1.38222,0 0,-0.65474 -1.38222,-0.72748 z m -128.47311,-0.65474 -2.83718,-0.72748 0,-1.38221 -0.65473,1.38221 0,-1.38221 -0.72748,1.38221 -0.65474,-0.72748 0,-0.65473 0.65474,0 -0.65474,-0.72748 0.65474,-0.65473 -1.38222,0 0,-1.45496 1.38222,0.72748 0.72748,0 0,1.38221 0.65473,0 2.83718,0.72748 -1.38222,0 1.38222,0.65473 z m -2.83718,-2.83717 -0.65473,-1.38221 0.65473,0 0,0.72748 0.72748,0 0.72748,0.65473 z m 104.75724,2.83717 -0.65473,-1.45496 -1.38221,-0.65473 z m 9.82099,0 0.65474,-0.72748 0,-0.72748 -0.65474,0 0.65474,-1.38221 0.72748,-0.65473 0,0.65473 0,1.38221 0.72748,-0.65473 0,0.65473 -0.72748,0.72748 z m 1.38222,-2.83717 0.72748,-0.65473 0.65473,1.38221 z m -107.52167,2.10969 -0.72748,-1.38221 0,-0.72748 -0.72748,0.72748 0,-0.72748 0.72748,-1.38221 -2.1097,0.72748 0.72748,-0.72748 -0.72748,-0.72748 -0.65473,0 0.65473,-2.03695 -2.10969,1.38221 -0.65473,0 0,-1.38221 -0.72749,-0.72748 -0.65473,-2.1097 0.65473,0 0,-0.65473 -0.65473,0 1.38222,-0.72748 -0.72749,0 -0.65473,-0.72748 0.65473,-0.65473 -1.38221,0.65473 0,-0.65473 0.72748,-0.72748 -1.45496,0.72748 -0.65473,-0.72748 1.38221,-0.65474 -1.38221,0 0.65473,-0.72748 -2.76443,0.72748 3.49191,-1.45496 -2.10969,0 0.72748,-1.38221 3.49191,1.38221 -0.72749,-0.65473 -0.65473,0 -0.72748,-0.72748 -0.72748,-0.65474 -0.65473,-0.72748 -0.72748,-0.72748 0.72748,0 -0.72748,-0.65473 0.72748,0 -0.72748,-0.72748 -1.38222,-0.65473 1.38222,0 3.4919,0.65473 -2.76442,-1.38221 -0.72748,-0.72749 0.72748,-0.65473 0.65473,1.38222 0.72748,-1.38222 0.72748,2.1097 0,-0.72748 1.38222,0.72748 -0.72749,-0.72748 0,-0.0727 0.72749,-2.03695 -1.38222,1.38221 -1.45496,-2.03694 1.45496,-1.45496 0,-0.65474 -2.83717,-2.10969 -0.65474,-2.1097 -0.72748,0.72749 -0.72748,-0.72749 0.72748,-2.76442 0,2.10969 0.72748,0 2.03695,-2.10969 0.72748,2.10969 1.38221,-2.10969 0.72749,0.65473 1.38221,-0.65473 0,1.38221 2.76443,-1.38221 -2.03695,0 -2.10969,-2.83718 0.65473,-2.76442 0.72748,0 0,-1.38222 0.72748,0.65473 0.65473,-0.65473 -0.65473,-0.72748 0,-0.65473 -0.72748,0 0,-0.72748 -0.72748,-0.72748 1.45496,-0.65474 -0.72748,0 -1.38221,-1.38221 0.65473,-2.10969 -0.65473,1.38221 -0.72749,0 0,-1.38221 -0.65473,1.38221 -1.45496,0 -1.38221,0.72748 0,-0.72748 -2.1097,0 -4.14664,-2.1097 1.38221,-0.65473 0.72749,0.65473 2.03694,-0.65473 -0.65473,-0.72748 0,-0.72748 0.65473,0 -1.38221,-0.65473 0.72748,-0.72748 -0.72748,0 -1.38222,-2.1097 -2.76442,0 -0.72748,-0.65473 -1.38222,0 -2.10969,-0.72748 1.38221,-0.65473 -0.65473,-0.72749 1.38221,-0.72748 -1.38221,0 0.65473,-0.65473 3.49191,0.65473 0,-1.38221 -0.65473,-0.65473 2.76442,-0.72748 0,-1.38222 1.38222,-1.38221 1.38221,0 1.45496,1.38221 0.65474,-0.72748 0.72748,0 2.10969,1.38222 0,-0.65474 -2.10969,-1.38221 -1.38222,-0.72748 -1.45496,-1.38222 -1.38221,0.65474 -2.1097,1.45496 -2.76442,0 0,-0.72748 0.72748,-0.72748 -1.45496,0 -0.65474,0.72748 -1.38221,-2.1097 -1.45496,-0.65473 -0.65473,0 0,-0.72748 -0.72749,0.72748 -1.38221,-1.45496 -2.10969,-1.38221 -1.38222,0.72748 -0.72748,-0.72748 0.72748,-0.65474 0.72748,0.65474 0.65474,-1.38222 0.72748,-0.72748 0,0.72748 0.65473,0 -0.65473,0.72748 1.38221,0 1.38221,0 0.72749,0.65474 2.10969,0 0.65473,-0.65474 0,0.65474 0.72748,-1.38222 0.65474,0 0.72748,-1.38221 0.72748,0 0.65473,0.65473 0.72748,2.1097 0.65473,0 0,0.72748 0.72748,-0.72748 2.76443,0 1.45496,-2.1097 0.65474,0.72748 2.10969,-1.38221 0,1.38221 2.76443,-0.72748 1.45496,0 -0.72748,1.45496 1.38221,-1.45496 0,0.72748 2.1097,-0.72748 -0.72748,-0.65473 0.72748,-0.72748 2.76442,0.72748 1.45497,-1.38221 1.38221,-0.72749 3.49191,1.38222 0.65473,-0.65473 0.72748,1.38221 2.1097,0 0.65473,2.10969 -2.76443,0 -0.72748,0.65474 0.72748,0 -0.72748,0.72748 -0.65473,-0.72748 -0.72748,0.72748 1.38221,0 -2.76443,0.65473 4.21939,0 -0.72748,0.72748 0.72748,0.72748 -1.45496,0.65473 2.10969,0 0,-0.65473 1.38222,0.65473 0.72748,0.72748 1.38221,0.65474 2.1097,3.49191 0,2.10969 -1.38222,2.10969 -4.21939,1.38222 -1.38221,-1.38222 -1.38221,1.38222 2.76442,2.10969 -0.65473,2.76443 -0.72748,0.72748 -0.72748,1.38221 -2.03695,0.72749 -0.72748,-0.72749 0,0.72749 0.72748,0 2.03695,0 0.72748,-1.38222 0.72748,-0.72748 0,2.1097 -0.72748,2.10969 0.72748,0.65473 -0.72748,1.38222 -0.72748,2.10969 -2.03695,2.1097 -0.72748,0 0.72748,0.72748 -0.72748,4.14664 0.72748,3.4919 -1.45496,2.1097 0,1.38221 -2.76442,2.1097 -1.38222,0 -1.38221,0.72748 -1.45496,0.65473 -0.65474,0.72748 2.1097,-1.38221 2.03694,0.65473 2.1097,0 -1.38221,1.38221 0.72748,0.72749 0.65473,0 2.83717,2.76442 2.76443,3.49191 1.38221,1.45496 -0.65473,1.38222 -4.94687,0.65473 -0.65473,1.45496 -3.49191,0 -1.38221,-0.72748 -0.72748,0 1.38221,0.72748 0.72748,0.65473 -2.10969,-0.65473 1.38221,0.65473 0.72748,0 0.65473,0 0.72749,0.72748 -0.72749,0 -1.38221,1.38222 1.38221,-0.72748 0,0.72748 4.94687,1.38221 1.38222,2.83718 -1.38222,0.65473 0,-0.65473 -1.45496,0.65473 -1.38221,0 -2.76443,-0.65473 0.65473,1.38221 -0.65473,0 -0.72748,0.65473 z m -3.49191,-70.56564 -2.10969,-0.65473 1.38221,-0.72748 2.10969,0.72748 z m -3.49191,48.88671 0.65473,0 0,0.65474 z m -2.83717,0 -2.1097,-1.38221 -1.38221,-2.76443 1.38221,0 0,0.65474 2.1097,2.83717 z m 0,0 0,1.45497 -1.38222,-1.45497 0,-0.65473 z m -1.38222,1.45497 -0.14549,0.14549 -0.1455,-0.14549 z m -0.29099,0 -1.09122,0 0,-1.45497 z m 0.1455,0.14549 0.87297,1.23672 -1.45496,-0.72748 z m 68.60144,17.96878 0.65473,-2.10969 -0.65473,0.72748 z m 9.09351,0 0,-0.65473 0.65473,0.65473 0,-0.65473 0,-1.45496 -0.65473,1.45496 -0.72748,-0.72748 0,0.72748 z m 27.93527,0 0,-0.65473 -1.45497,0 z m 48.88671,-0.65473 1.38221,0 -1.38221,-0.72748 0,-1.38222 -0.72748,1.38222 z m -157.13586,-1.45496 1.38221,-1.38222 0,0.72748 0.65473,0 -0.65473,0.65474 z m 4.14664,-1.38222 -0.65474,-1.38221 0,0.72748 -0.72748,-0.72748 0.72748,-0.72748 0.65474,0 0,-0.65474 -0.65474,0 0.65474,-1.38221 0.72748,0 0,-0.72748 0.65473,0.72748 0,-0.72748 0.72748,0 -1.38221,-0.72748 2.10969,0.72748 -1.45496,1.38221 -0.65473,0 1.38221,2.1097 -0.72748,1.38221 -0.65473,0 0,-2.10969 z m -3.49191,-0.65473 -1.38222,-0.72748 0,-1.38222 0.72749,-0.72748 0,1.38222 0.65473,0.72748 z m 154.37143,0 0.65474,-0.72748 1.45496,-3.49191 -1.23672,-1.8187 0.50924,-0.94573 1.38221,0.65474 1.38222,-1.38222 0,-1.38221 -0.65474,0 -1.38221,1.38221 0,-0.72748 -0.72748,1.45496 -0.72748,0.65474 0.21824,0.29099 -0.21824,0.43649 -1.38222,0.65473 0,1.45496 -1.38221,1.38221 0,1.38222 z m 16.73206,0 1.38222,-0.72748 0.72748,0 0.72748,-1.38222 -1.45496,0 0,-0.72748 -2.76443,0 1.38221,1.38222 z m -84.46052,-1.45496 0,-0.65474 0.65473,0 -0.58198,-1.16397 0.14549,-0.43648 0.43649,-0.43649 0,1.30946 0.72748,-1.38221 0.65473,0.72748 -0.65473,-1.45496 -0.72748,-0.65473 -0.43649,1.89145 -0.21824,0.21824 0,-2.83717 -0.72748,3.4919 z m 0,-2.03695 0.0728,0.21824 -0.0728,0.43649 z m 5.52885,0.65473 2.1097,0 0,-0.65473 1.38221,0 -0.65473,-2.10969 0.65473,0 -0.65473,-2.83718 -2.1097,-0.65473 -0.72748,-0.72748 -0.65473,0 0.65473,0.72748 -1.38221,0 -1.38222,-2.1097 0,0.72748 -1.38221,-0.72748 1.38221,2.1097 -0.72748,1.38221 0,1.38222 0.72748,-1.38222 0.72749,2.1097 0.65473,0.65473 1.38221,-2.03695 -0.65473,3.49191 z m 41.24817,0 -0.72748,-1.38221 -0.65474,-0.72748 0.65474,-1.38221 0.72748,0 0,0.72748 0.65473,0 0.72748,0.65473 -0.72748,1.45496 -0.65473,0 z m -31.42718,-0.65473 0.65474,0 3.4919,0 -3.4919,-1.45496 z m 34.1916,-2.83717 -0.65473,-0.65474 0.29099,-0.36374 -1.01847,0.36374 -1.38221,-0.72748 0,0.72748 -1.38222,-0.72748 -0.72748,-1.38221 -0.72748,0.65473 -0.65473,0 1.38221,-1.38221 -0.72748,-0.65474 1.45496,-0.72748 -0.72748,-2.10969 0.72748,0 0,0.72748 0.65474,2.10969 1.38221,0 0,0.65474 2.83717,2.10969 -0.50923,0.21825 0.50923,0.50923 z m 11.85794,0 0.72748,0 0.72748,-2.76443 -1.45496,2.10969 z m -48.88671,-0.65474 0.72748,-0.72748 -0.72748,-2.10969 0.72748,-0.65474 -1.38221,-0.72748 -2.1097,-4.87412 -0.72748,0.65473 0.72748,3.49191 1.38221,2.83718 z m 82.42358,0 1.38221,-1.45496 -0.65473,-0.65473 -0.72748,1.38221 -1.38222,-0.72748 z m -180.19701,-0.72748 0,-0.72748 1.45496,-0.65473 -1.45496,-0.72748 -0.65473,0 0,-0.65474 2.10969,0 0,-0.72748 0.65474,0.72748 0.72748,0 -1.38222,2.03695 0,0.72748 z m 266.1125,-0.72748 0,-4.87412 0.72748,-0.65473 0.65473,0 -0.65473,-0.72748 -0.72748,-1.38222 0,2.1097 -0.72748,3.4919 z m -164.84716,-1.38221 1.45496,-0.65474 -1.45496,0 z m -17.45954,-1.38222 0.72748,0 -0.1455,-0.58198 z m -85.84274,-2.10969 -1.45497,-1.38221 1.45497,0 -0.72749,-1.38222 1.38222,0 0.72748,2.76443 -1.38221,-0.65473 z m 100.53785,-0.65473 1.38221,-0.72748 -0.65473,-0.72749 -0.72748,0.72749 z m 16.73206,-0.72748 -2.76443,-3.49191 0.72748,-1.38222 -0.72748,-0.72748 0.72748,-2.10969 0,-1.38222 1.38222,1.38222 0,0.72748 0.65473,0.72748 0,1.38221 1.45496,0.65474 -0.72748,0.72748 0,2.10969 1.38221,0.65473 -0.65473,0.72749 -0.72748,0 0,-0.72749 z m -128.47312,-1.38222 0,-0.72748 -1.38221,0 0,-0.65473 0.65473,-0.72748 -1.38221,0 0,-0.72748 -0.65474,0.72748 -1.45496,0 0.72748,-1.38222 1.38222,0 -0.65474,-0.72748 2.03695,0 -1.38221,-0.65473 -2.76443,-0.72748 0.65473,0 0,-0.72748 -0.65473,0 -1.38221,1.45496 -1.45497,-1.45496 0,2.10969 -2.03694,0.72748 -0.72748,0 0.72748,-0.72748 -1.38222,0.72748 0.65474,0 0,0.65474 -0.72748,0 -0.65474,-0.65474 0,-0.72748 0.65474,0.65474 0,-1.30947 0.72748,0 -0.72748,-0.72748 0,-0.72748 -0.65474,0.72748 0,-0.72748 1.38222,-0.65473 0,-0.72749 -2.1097,0 0,-0.65473 0.72748,-0.72748 -1.38221,0.72748 -1.45496,0 0.72748,-1.45496 -0.72748,0 0.72748,-0.65473 0.72748,0 -0.72748,-0.72748 2.10969,0 -0.72748,-1.38222 2.83718,-0.72748 -0.72748,0 0.72748,-0.65473 0,-0.72748 -2.1097,0.72748 -1.38221,-0.72748 0.65473,-0.65473 -1.38221,-0.72748 -2.76443,-0.72749 1.38221,-0.65473 0.65474,0.65473 0.72748,-0.65473 0.72748,0 -0.72748,-0.72748 0.72748,0 2.03695,0.72748 -0.65474,-0.72748 1.38222,-0.65473 -4.21939,0.65473 -0.65474,0.72748 -0.72748,-0.72748 -1.38221,0 0.72748,-0.65473 -0.72748,-0.72748 -0.72748,0 0,0.72748 -1.38221,0 0.72748,0.65473 -1.38222,0 -0.72748,-1.38221 2.1097,-0.72748 -1.38222,-0.65474 -0.72748,-0.72748 0,-1.38221 0.72748,0 2.76443,0 -2.76443,-0.72748 -0.72748,0 3.49191,-0.65473 -2.76443,-0.72749 2.03695,0 -2.03695,-0.65473 2.03695,0 0,-0.72748 0.72748,0 -0.72748,-0.72748 1.45496,0.72748 1.38221,-0.72748 0,0.72748 0.65474,-0.72748 0,0.72748 1.45496,-1.38221 0,1.38221 1.38221,-0.72748 0.65474,0.72748 -0.65474,1.38221 1.38222,-1.38221 -0.72748,0 0,-0.72748 1.45496,0.72748 0.65473,0 0,0.72748 0.72748,-0.72748 0.65473,0 0.72748,0.72748 0,0.65473 2.76443,-1.38221 0.72748,0.72748 0,-0.72748 1.38222,0.72748 -0.65474,-0.72748 0.65474,-0.72748 2.10969,0 0,1.45496 -0.72748,-0.72748 0,0.72748 0.72748,0 3.49191,4.14664 0.72748,2.83718 -0.72748,0.65473 1.38221,0 -0.65473,0.72748 0.65473,0.65473 -0.65473,1.45497 0.65473,0.65473 0,2.10969 1.38222,-0.72748 -0.65474,1.45496 1.38222,-1.45496 0.72748,0.72748 0.65473,1.38222 0.72748,-0.65474 0.65473,0 0,0.65474 0.72748,2.10969 0,-2.76443 0.72749,1.38222 0,2.10969 -2.1097,0 2.1097,0.65473 -1.45497,2.1097 0,2.10969 -3.4919,1.38222 -0.65474,-0.72748 -1.38221,0 2.03695,1.45496 -1.38222,1.38221 0,-0.72748 -0.65473,0.72748 -0.72748,-2.10969 -1.38221,-0.72748 1.38221,1.45496 0,1.38221 -0.72748,0 -0.65473,-0.72748 -0.72749,0.72748 z m -20.95145,-21.67893 -0.72748,0 0,-0.65473 z m 37.02878,20.95145 -1.38222,-0.65473 0,-1.45496 0.65474,-0.65474 z m 105.41197,-2.76443 -0.65473,-0.72748 -0.72748,-2.76442 -2.1097,-3.49191 0.72749,-3.49191 z m 155.09892,-0.72748 -0.72748,-2.10969 -1.38221,0 0,-1.38222 -0.1455,-0.36374 0.1455,-0.29099 -0.50924,-2.32794 0.50924,-1.89145 1.38221,-0.72748 0.72748,-0.65473 -0.21824,-0.36374 0.21824,-0.36374 0.65473,-0.65473 -1.38221,-0.72748 0,-0.72749 2.10969,-1.38221 0.50924,-1.01847 0.1455,0.36374 0.50923,0.21824 0.21825,0.43649 0.72748,0 0.65473,0 0.72748,0 0,-0.65473 -1.38221,0.65473 -0.94573,-0.43649 -0.50923,-0.94572 -0.1455,0.36374 -1.09122,-2.1097 -0.0728,-0.43649 0.65473,-0.58198 0.65474,-2.10969 0,-4.21939 0.72748,-1.38222 0,-6.25633 0.72748,-0.72748 -1.45496,0.72748 0,5.52885 -0.65474,2.83718 -0.72748,0.65473 0.72748,0 0,2.83718 -0.72748,1.38221 0,0.72748 0.0727,0.58198 -0.0727,0.0727 0.1455,0.36374 0.58198,3.12817 -2.83717,1.38221 1.23672,2.47344 -0.50924,1.01847 -1.38221,0 -0.72749,1.45496 0.21825,1.16397 -0.21825,0.87298 0.58199,1.74595 -0.58199,1.09123 0.72749,0.65473 0,1.45496 0.65473,-0.72748 -0.65473,-0.72748 1.38221,0.72748 z m -289.82837,-0.65473 0.65473,-1.45496 0.72748,1.45496 z m 12.51267,-0.72748 1.45496,0 -0.72748,-2.1097 z m 7.7113,-0.72748 0.72748,-0.65473 -0.72748,-2.1097 -1.38222,0.72748 z m 98.5009,0 0.65474,-0.65473 -0.65474,-2.1097 z m 4.14664,-2.76443 0.72749,-0.72748 0,0.72748 0.65473,-0.72748 0,-1.38221 -1.38222,0.72748 z m -120.83456,-1.38221 0.72748,0 0.72748,-0.72748 0,-0.65474 z m 7.71129,-1.38222 0,-0.72748 -0.72748,-0.72748 0.72748,0 -0.72748,-0.65473 0,0.65473 0,0.72748 z m 19.56924,-0.72748 -1.38222,-0.72748 -2.10969,-1.38221 1.38221,-0.65473 1.38222,0.65473 z m 83.07831,-1.38221 -2.76443,-1.38221 0.65474,0 -0.65474,-2.83718 -0.72748,0.72748 0.72748,0 -0.72748,0.65473 0,0.72749 0.72748,0.72748 -0.72748,0 -2.10969,0.65473 1.45496,-0.65473 0,-0.72748 -0.72748,0 -0.72748,-1.38222 -2.03695,0.65473 1.38222,-0.65473 -0.72749,0 0.72749,-0.72748 0,-2.10969 0.65473,-1.38222 2.10969,0 0,-1.38221 -0.65473,0 1.38221,-0.72748 1.38222,0 0,0.72748 -0.72748,0.72748 2.10969,0.65473 -1.38221,1.38222 0.72748,1.45496 1.38221,0.65473 0,2.1097 0.65473,1.38221 z m 0.72748,-4.21939 0,-0.65473 0.65473,0 z m -2.10969,-5.6016 -0.72748,-0.65473 2.83717,0 -0.72748,0.65473 -0.65473,0.72748 0,-0.72748 z m -1.38222,0 -0.72748,-0.65473 0.43649,-1.67321 -1.09122,1.67321 0,-0.72749 -2.10969,1.38222 -0.72749,-0.65473 0,-0.72749 -0.65473,0 0,-0.65473 2.76443,-1.45496 0,0.72748 1.89145,0 0.21824,-0.72748 0,0.72748 1.38222,1.38221 -1.38222,0.72749 z m -6.32908,9.09351 0,-2.1097 0.72748,0 0,1.45497 z m -97.04595,-1.38221 0.72749,-0.72749 -1.45497,-0.65473 -1.38221,-0.72748 0.72748,0.72748 0.65473,0 z m 312.88952,0 0.65473,0 -0.65473,-0.72749 1.38221,0 -1.38221,-0.65473 -0.72748,0 0,0.65473 z m -208.27777,-1.52771 0.1455,-0.58199 -0.36374,0.36374 z m -85.76999,-3.34642 0,-0.72748 0.72748,-1.38221 2.10969,0.72748 -1.45496,0 0,1.38221 z m 283.57203,0 0.65474,0 0.72748,-0.72748 z m -216.4983,-0.72748 -0.72748,-2.76442 0.72748,1.38221 z m 31.42718,0 0,-1.38221 1.38221,-1.38221 0.72748,0.65473 0,0.72748 z m -18.84176,-0.65473 -1.45496,-2.10969 0,-1.38222 1.45496,2.03695 z m 196.20159,-2.83718 0.72748,0 -0.72748,-0.65473 -0.65474,0 z m -195.54686,-2.10969 -0.65473,-0.65473 1.38222,-0.72748 -0.72749,0.72748 z m 54.48832,-4.87412 0,-1.38222 -0.72748,0 0,0.72749 -0.65473,-0.72749 0,0.72749 z m 124.98121,-0.65473 1.45496,-0.72749 0.65473,0.72749 0.72749,0 0,-2.1097 0,-0.72748 -0.72749,-0.65473 -0.65473,-1.45496 1.38222,-0.65474 0.65473,0.65474 -0.65473,-1.38222 0,-0.65473 0.65473,0 -1.38222,-0.72748 0.72749,-1.38222 -0.72749,-0.72748 0,-1.38221 1.38222,-0.72748 -0.65473,-0.65473 1.38221,-2.1097 -1.38221,0.72748 -1.38222,-1.45496 0,-1.38221 -0.72748,0 -0.72748,-2.1097 -1.38221,1.45497 0.72748,0.65473 -0.72748,0 0.72748,0.72748 -0.72748,0 0.72748,0.65473 0,0.72748 0,0.72748 1.38221,-1.45496 0.72748,1.45496 -0.72748,2.03695 -0.72748,0 1.45496,1.45496 0,0.65473 -2.10969,1.38222 1.38221,0.72748 0.72748,-0.72748 0.65473,0.72748 0,2.10969 -0.65473,0.65474 0,1.45496 1.38222,1.38221 -0.72749,1.38221 -0.65473,0 -0.72748,0 z m -466.460721,-0.72749 -0.727481,-1.38221 1.382214,0.65473 0,0.72748 z m 294.702491,-3.4919 0.65473,-0.72748 -0.65473,-0.65474 -0.72748,0.65474 z m 201.80319,-2.1097 0.72748,0 0.65473,-0.65473 0.72748,0 2.1097,0 1.38221,-1.45496 0.72748,-1.38222 -2.83717,2.1097 -1.38222,0.72748 -0.72748,-0.72748 0,0.72748 z m -105.41198,-6.25633 2.03695,-5.60161 -1.38221,1.38222 -0.65474,2.10969 -0.72748,0 0.72748,0.72748 z m -144.47769,-2.90993 1.30946,-0.58198 0,-0.72748 z m -239.632195,-4.07389 0,-0.72748 0.654733,-0.65473 0,0.65473 z m 0.654733,-2.10969 0.727481,-2.76443 1.382213,-0.72748 -0.727481,2.76443 z m 392.475922,-1.38222 2.83717,-1.38221 0.65473,0 4.21939,-0.72748 -0.72748,0.72748 0,1.38221 0.72748,-0.72748 0.72748,0 2.76443,-2.76443 0.72748,-0.72748 -1.45496,-0.65473 0,1.38221 -1.38221,-0.72748 -1.38222,0.72748 -6.25633,2.1097 z m 60.08991,-2.10969 4.21939,0 -4.21939,-0.72748 z m -444.854535,-0.72748 0.654733,-2.03695 1.454961,0 0,0.65473 -1.454961,1.38222 z m 213.370135,0 1.01847,0 0.80023,-0.21825 c -0.60264,0.10482 -1.21294,0.15851 -1.8187,0.21825 z m 188.19929,0 0,-0.65474 4.43764,-1.89145 2.54618,0.50924 -2.10969,-0.72748 -0.43649,0.21824 -0.94573,-0.21824 -2.83717,1.38221 -0.65474,-0.65473 -4.21938,1.38221 3.4919,0 z m 39.79321,0 -1.38222,-1.38222 -2.83717,-2.10969 2.83717,2.83717 z m 15.34984,0 0.72748,0 2.1097,0 1.38221,-0.65474 0.65473,0 2.1097,0 -2.76443,-0.72748 -1.38221,0.72748 -1.45496,-0.72748 -0.65474,0.72748 z m -264.65753,-0.65474 0,-0.72748 1.38221,-0.65473 0,0.65473 z m 261.89311,0 0.65473,0 -2.03695,-0.72748 z m -44.74008,-4.21938 1.45496,-0.65474 0,-1.45496 2.03695,-2.03695 0,-1.45496 -2.03695,-0.65473 -2.10969,0 -1.38221,-1.38221 -1.45497,-0.72748 0,-0.72749 0.72749,0.72749 0.72748,-0.72749 -1.45497,0 -0.65473,-3.4919 0.65473,-0.65474 -0.65473,0 0,-0.72748 -5.6016,-3.4919 4.87412,3.4919 0,1.38222 1.38221,3.4919 -1.38221,2.1097 2.1097,0 0,0.72748 0.72748,0 1.38221,0.65473 2.10969,0.72748 0.65474,1.38222 z m -405.716067,-9.09352 0,-0.65473 0,-1.38221 0.654733,-1.45496 2.837175,-1.38222 0.654733,1.38222 -2.764427,1.45496 -0.727481,1.38221 z m 430.886907,-2.76442 1.38221,-0.72748 -0.65473,-0.65474 -0.72748,0 z m -179.46953,-9.74825 4.14665,-3.4919 -1.38222,0 z m 47.5045,-0.72748 -0.72748,-2.10969 0,1.38221 z m -61.47213,-5.6016 1.38222,0 -2.76443,-1.38221 z m 9.74825,0 0,-0.65473 0.72748,-0.72748 -1.38222,0.72748 z m 59.36243,-2.10969 0.72748,-0.65474 -4.21938,-2.83717 -1.38222,0 4.21939,2.10969 z m -71.94785,-1.38222 2.83717,-1.38221 -4.21939,0 -1.38221,-1.38221 0,0.65473 1.38221,1.45496 z m 139.02159,-1.38221 2.10969,-3.49191 -1.45496,0 z m -125.05396,-3.49191 -2.03695,-4.21939 0,2.1097 0.65474,0 z m 3.49191,-0.72748 -0.65474,-1.38221 -1.38221,-1.38222 z m 9.09351,-3.49191 -1.38222,-3.49191 -0.72748,0.72749 0,0.72748 z m 22.33366,-6.98381 -0.65473,-0.65474 1.38221,-1.38221 z m 0.72748,-2.03695 -1.38221,-0.72748 1.38221,-2.76443 z m 1.38221,-2.83718 1.38222,-2.10969 2.10969,-1.38221 0,0.72748 -2.10969,1.38221 1.45496,-0.72748 -0.72748,0.72748 z m 0.72749,-4.874117 1.38221,-1.382214 1.38221,-1.382214 -1.38221,2.036947 z m 11.13045,-6.983816 0,-0.727481 1.45496,-0.654733 1.38222,0.654733 z m -48.15923,-1.382214 -0.72748,-3.491908 -1.38221,0.654733 -0.65474,-0.654733 -2.10969,0 -0.72748,-1.382214 -0.65474,-0.727481 0.65474,-1.382213 -0.65474,0 0,-0.727481 1.38222,-0.654733 -1.38222,-0.727481 0,-0.727481 1.38222,-0.654732 -1.38222,-0.727481 2.03695,-0.654733 -1.38221,-1.454962 1.38221,-0.654732 1.45496,-1.382214 1.38222,2.036946 -0.72748,0 1.38221,0.727481 0,2.764427 1.45496,1.454962 0,8.36603 z m 47.5045,0 1.38221,-0.727481 0,0.509237 z m 1.38221,-0.218244 0.72748,-0.145496 -0.72748,0.36374 z m 0.72748,-0.145496 0.65474,-0.363741 1.38221,0 z m -42.63037,-1.745955 -2.1097,-0.72748 2.1097,-0.654733 z m -119.45236,-2.109694 1.30947,-0.872977 1.16397,-0.36374 1.74595,0.581984 0.72748,-1.454961 -2.47343,0.872977 -0.36374,-0.145497 -0.80023,0.509237 -0.58199,0.218244 z m 378.58104,-2.109694 1.38221,-1.382214 -2.1097,0.727481 z m -199.03877,-1.382214 1.38222,-0.654733 1.38221,-1.454962 -2.10969,0.727481 z m -174.5954,-2.764427 0.65473,0 -2.10969,-1.382214 z m 20.95145,-2.837176 0.65473,-2.764427 -1.38221,2.109695 z m 83.80579,-3.491908 -4.94687,-3.491908 -2.03694,0.727481 -0.72748,0.727481 -0.72748,-2.837175 1.45496,0 0,-2.764428 0.65473,-0.72748 -0.65473,-2.764428 0,-1.382213 0.65473,0.654732 0.72748,-0.654732 -0.72748,-0.727481 0,-0.727481 -0.65473,0.727481 0,-1.382214 -0.72748,-1.382213 0,-1.454962 -0.72748,-0.654733 0.72748,-1.382213 -0.72748,0 0,-1.454962 1.45496,1.454962 0.65473,-2.109695 0.72748,0.654733 0.65473,-0.654733 1.45496,0.654733 0.65474,2.109694 -0.65474,0.727481 4.14665,-2.109694 0.72748,2.109694 1.38221,6.256335 0,0.727481 -0.72748,1.382214 2.10969,2.764427 -1.38221,2.837175 0.72748,0 -1.45496,1.382214 0.72748,0.727481 -0.72748,0 0,1.382214 -0.65473,-0.727481 0,0.727481 -0.72748,0 z m 110.2861,0 -0.65473,-1.382213 0.65473,-0.654733 1.45496,0 -0.72748,1.382214 z m -28.59,-0.654732 0.65474,-1.382214 -0.65474,-0.727481 z m 1.38222,-1.382214 1.38221,0 0.72748,-1.454962 -1.38221,-0.654733 0,1.382214 z m 33.53686,0 0.65474,-0.727481 0.72748,0.727481 z m -161.35525,-2.837175 -3.49191,-0.654733 -3.49191,-1.454962 1.38222,-2.036946 0.72748,0.654733 0.72748,-1.382214 1.38221,-1.382214 0.65474,0 1.45496,0.654733 2.03694,2.837175 -0.65473,0.654733 -0.72748,-0.654733 -0.65473,0.654733 0.65473,1.454962 -0.65473,0 z m 4.87412,0 0,-0.654733 -0.65473,-0.727481 2.76443,-1.382214 0.72748,0 0,1.382214 -0.72748,0.727481 z m 155.09892,-2.109695 -0.72748,-0.654733 0,-1.382213 1.38221,0 0,0.654733 0.72748,-0.654733 0.65474,2.036946 -1.38222,-0.654733 0,0.654733 z m -175.32289,-3.491908 -1.38221,-1.382214 1.38221,-0.654732 1.38222,0.654732 0,1.382214 z m 185.07113,-0.654733 -3.49191,-2.109694 0,-0.727481 2.1097,-0.654733 0,1.382214 1.38221,0 -1.38221,-1.382214 1.38221,0 2.1097,0 0.65473,0.654733 z m -185.07113,-2.109694 -0.72748,-0.727481 0,-0.654733 1.45497,0 z m 135.45694,-0.727481 0,-1.382214 2.83717,-2.109694 -0.72748,0.727481 0,1.382213 -0.65473,0 0.65473,1.382214 z m 2.83717,-3.491908 0.65474,-0.654733 0,0.654733 z m 33.53687,0 0,-1.382214 0.65473,0 0.72749,-0.654732 0.65473,0 z m 11.85794,-1.382214 -0.72748,-0.654732 1.38221,-1.454962 -0.65473,-1.382214 0.65473,-0.654733 1.45496,1.382214 -0.72748,2.109695 z m -39.7932,-3.491908 -0.72748,-0.654733 0,-1.454961 0.72748,-0.654733 0.65473,0.654733 z m 47.43175,-2.764427 -1.38222,-1.382214 2.1097,-0.72748 0.72748,1.382213 0.65473,0.727481 z m -48.15923,-1.382214 0,-0.72748 -0.72748,0 -0.65474,-2.109695 0.65474,0 0,1.382214 0.72748,-2.036947 2.10969,0 0.65473,0.654733 -2.03694,1.382214 z m 32.80938,0 -0.65473,-0.72748 2.03695,-2.109695 0.72748,0.727481 -0.72748,1.382214 -0.65474,0 z m 12.58542,-0.72748 -2.10969,-0.727481 -0.65474,-1.382214 z m -85.18801,-2.764428 -1.38221,-1.454961 -1.45496,0.72748 -4.87412,-2.109694 -2.1097,0.727481 -2.03694,-0.727481 -1.45497,1.382214 -1.38221,0 0,0.72748 -2.10969,0 0,-1.382213 -1.38222,0 -1.38221,1.382213 0,-0.72748 -2.1097,-0.654733 0,-2.109695 1.38222,-2.764427 2.10969,0.654733 2.1097,-1.382214 4.21939,-3.491908 4.14664,-0.727481 1.38221,-2.764427 4.21939,-0.727481 1.38221,-0.654733 -0.65473,2.109695 2.03695,1.382214 -1.38222,2.109694 0.72748,0 -1.38221,0.654733 0,2.109694 4.14664,7.711297 -0.65473,0 -2.1097,-0.727481 z m 41.17542,-1.454961 0,-0.654733 1.38221,-2.109695 0.65474,1.309466 z m 2.03695,-1.454962 0.80023,-0.581985 -0.72749,0.654733 z m 49.68694,0.218244 0,-0.145496 0.14549,0.145496 z m -13.3129,-0.145496 -1.38222,-2.109695 0.72749,-0.654732 1.38221,0.654732 0,0.727481 z m 13.96763,0 -1.38221,-1.382214 -1.38222,-0.727481 0.65474,-1.382213 0,1.382213 2.83717,1.454962 z m -16.07733,-1.382214 -1.38221,-0.727481 0.72748,-0.654732 0.65473,0 z m 24.44336,-1.382213 -2.76443,-2.109695 -0.72748,-2.109694 0.72748,0 0,-2.764427 1.38222,2.109694 0.72748,0.654733 z m -14.62236,-1.382214 0,-0.727481 -1.38222,0 0.65473,-0.727481 1.38222,0.727481 z m -16.07733,-1.454962 0.72748,-1.382213 0.65473,0 0,1.382213 z m 0.72748,-1.382213 -0.72748,0.727481 0,-0.727481 z m 22.98839,-3.491908 -0.65473,-2.764428 1.38222,-2.109694 0.72748,1.382214 -1.45497,0.72748 z m -34.1916,-0.654733 0,-2.109695 0.72749,-0.72748 0.65473,1.382213 z m 11.20321,-6.329083 -1.45496,-1.382214 -2.03695,0 -0.72748,-0.727481 -0.72748,1.454962 0,-2.837176 0.72748,-0.654732 6.25634,0.654732 2.83717,-0.654732 0,-0.727481 0.65473,-1.382214 9.09351,3.491908 1.38222,-0.727481 1.45496,1.382214 0,2.109695 -1.45496,-1.382214 -0.65473,0 -2.1097,-1.382214 -0.72748,0.654733 0,1.454962 -2.03695,-0.727481 -3.4919,0 -0.72749,0.727481 -5.6016,-1.454962 0,0.727481 -0.65473,0 z m -79.65915,-2.109695 0.72748,-1.382214 1.38221,-0.654732 -0.72748,1.382213 z" style="fill:#fcf9ea;fill-opacity:1;fill-rule:evenodd;stroke:none" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"/><g transform="matrix(2.9099234,0,0,2.9099234,-360.38752,479.8661)" style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="g76427"><path d="M 0,0 L 216,0" style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path16298"/><path id="path16302" d="M 7.44,-55.92 C 76.938447,-37.20017 146.42829,-18.44606 216,-2e-06" style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 29.04,-108 C 91.243432,-71.798583 153.65072,-35.949323 216.00001,0" id="path16306"/><path id="path16310" d="M 63.36,-152.64 C 114.24,-101.76 165.12,-50.88 216,0" style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 108,-186.96 C 144.20142,-124.75657 180.05068,-62.34928 216,1e-05" id="path16314"/><path id="path16318" d="M 160.08,-208.56 C 178.79653,-139.06066 197.54415,-69.56909 216,0" style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 216,-216 C 216,-144 216,-72 216,0" id="path16322"/><path id="path16326" d="M 271.92,-208.56 C 253.20347,-139.06066 234.45585,-69.56909 216,0" style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 324,-186.96 C 287.79858,-124.75657 251.94932,-62.34928 216,1e-05" id="path16330"/><path id="path16334" d="M 368.64,-152.64 C 317.76,-101.76 266.88,-50.88 216,0" style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 402.96,-108 C 340.75657,-71.798583 278.34928,-35.949323 215.99999,0" id="path16338"/><path id="path16342" d="M 424.56,-55.92 C 355.06155,-37.20017 285.57171,-18.44606 216,-2e-06" style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 432,0 C 360,0 288,0 216,0" id="path16346"/><path id="path16350" d="M 0,0 C -0.22245792,-47.799793 16.411019,-95.392391 45.84,-133.2 C 74.595684,-169.74716 115.3736,-197.02715 160.8,-208.8 C 221.04791,-225.01201 286.34626,-213.4974 337.67999,-178.56 C 379.95084,-149.71908 411.8462,-105.29843 424.79999,-55.200001 C 429.5906,-37.270127 431.99273,-18.677866 432,0" style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 37.68,0 C 37.635873,-45.848742 55.790855,-91.085521 87.734405,-123.7344 C 107.77861,-144.84476 134.48915,-161.45029 162.24,-169.92 C 196.36588,-180.95903 234.25209,-181.06425 268.56863,-170.35725 C 300.43154,-160.71847 329.37335,-141.45366 351.01441,-116.50559 C 379.05974,-83.883163 394.22088,-42.735902 394.32001,0" id="path16354"/><path id="path16358" d="M 71.76,0 C 72.128954,-27.951888 79.489617,-53.473165 93.84,-76.559998 C 110.32971,-102.98924 136.69377,-124.55184 164.88,-134.64 C 190.6733,-144.95817 222.61942,-147.0662 250.32,-139.92 C 274.48621,-134.15158 296.99679,-122.00586 316.08001,-103.68 C 335.53227,-84.934213 348.83194,-61.633073 355.2,-37.200001 C 358.5684,-25.211094 359.92276,-12.839439 360.24001,0" style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 103.44,0 C 102.865,-44.486997 131.35188,-87.356588 172.8,-103.92 C 212.26633,-121.04993 261.51741,-112.24341 292.8,-82.32 C 315.34331,-61.566273 328.84641,-30.770451 328.56,0" id="path16362"/><path id="path16366" d="M 132.96,0 C 133.05742,-21.321328 141.37268,-41.945749 156.24,-57.599998 C 175.15322,-77.110874 203.27734,-86.731901 230.4,-81.599998 C 258.53941,-77.189956 284.07857,-56.035764 293.76,-28.799999 C 297.18297,-19.769618 298.8165,-10.081641 299.04,0" style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/><path style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 161.28,0 C 161.3745,-21.098816 173.83523,-40.597078 192.48,-49.200001 C 208.71989,-57.697891 231.46991,-55.813837 246.48,-45.360001 C 261.61173,-35.11673 270.5154,-18.083387 270.72,0" id="path16370"/><path id="path16374" d="M 188.88,0 C 189.26616,-10.624944 194.05838,-17.951834 201.36,-22.799999 C 210.52749,-29.429797 226.58404,-27.985046 234,-20.16 C 239.07799,-15.886754 243.01994,-8.6446903 243.12,0" style="fill:none;stroke:#ffffff;stroke-width:0.02749213000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/></g><g style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="g17372" transform="matrix(2.9099234,0,0,2.9099234,-569.84631,-358.48817)"><g id="g14408" transform="translate(213.36,126)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.2,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14410"/><g id="g14412" transform="translate(86.88,108.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0 L -0.48,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14414"/><g id="g14416" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14418"/><g id="g14420" transform="translate(-12.24,-12.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0 L -0.48,-2.16 L -0.96,-3.12" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14422"/><g id="g14424" transform="translate(5.04,7.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14426"/><g id="g14428" transform="translate(0,-0.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.96,0.24 L -1.92,0.24 L -1.68,-0.72 L -1.92,-1.2 L -2.64,-0.96 L -3.12,-1.44 L -3.36,-2.16 L -3.84,-2.88 L -3.6,-3.36 L -3.6,-3.84 L -4.56,-5.52 L -4.56,-6 L -5.04,-6.24 L -5.04,-6.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14430"/><g id="g14432" transform="translate(0.48,2.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,-0.24 L 0,-0.96 L -0.48,-1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14434"/><g id="g14436" transform="translate(-0.48,-1.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0 L 0,-0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14438"/><g id="g14440" transform="translate(5.04,0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.24 L -0.96,0.48 L -1.68,-0.24 L -1.92,0 L -2.64,-0.24 L -3.6,1.44 L -3.84,1.44 L -4.08,1.2 L -4.08,0.72 L -4.56,0.72 L -2.88,-0.72 L -1.92,-0.96 L -1.68,-1.68 L -1.44,-1.68 L -0.96,-2.16 L -1.2,-2.4 L -0.96,-3.36 L -0.72,-3.6 L -0.72,-4.32 L -0.24,-5.28 L -0.24,-6.48 L 0.48,-7.92 L 0.48,-8.64" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14442"/><g id="g14444" transform="translate(1.68,4.32)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.48 L -0.96,-0.48 L -1.2,-1.2 L -1.2,-2.4 L -0.96,-3.12 L -1.44,-3.6 L -1.68,-4.32" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14446"/><g id="g14448" transform="translate(2.16,-2.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,-0.48 L 0,-0.48 L -0.24,-1.44 L 0.24,-2.4 L 0.96,-2.4 L 1.92,-3.36 L 1.44,-5.76 L 2.88,-7.68 L 3.12,-7.92" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14450"/><g id="g14452" transform="translate(3.36,-8.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L 0,-0.24 L -0.24,-1.2 L 0.24,-1.2 L 0.24,-1.44 L 0,-1.68 L 0,-1.92" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14454"/><g id="g14456" transform="translate(-4.8,11.28)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24 L 0.96,-0.48 L 1.44,-0.96 L 1.2,-2.16 L 1.44,-2.4 L 1.68,-1.92 L 1.44,-1.44 L 1.92,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14458"/><g id="g14460" transform="translate(4.56,-10.32)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.72 L 0.48,-0.96 L 0.24,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14462"/><g id="g14464" transform="translate(-2.64,9.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.24 L 0,0.72 L 0.48,0.48 L 0.96,0.48 L 0.72,1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14466"/><g id="g14468" transform="translate(-15.36,-14.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,-1.2 L -0.24,-1.44 L 0,-2.4 L -0.24,-2.88 L -1.2,-2.64 L -1.92,-2.88 L -2.64,-3.84 L -2.64,-4.32 L -2.88,-4.8 L -2.64,-5.52 L -2.88,-6.72 L -2.64,-7.68 L -2.88,-9.12 L -1.92,-10.32 L -2.4,-11.28 L -2.88,-11.28 L -2.4,-12.96 L -2.64,-13.92 L -2.88,-14.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14470"/><g id="g14472" transform="translate(18.24,2.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.24 L 0.48,-0.48 L 0.72,-0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14474"/><g id="g14476" transform="translate(0.72,-0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14478"/><g id="g14480" transform="translate(2.16,-7.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,-1.44 L -2.16,-4.08 L -2.4,-4.8" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14482"/><g id="g14484" transform="translate(-2.16,8.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24 L 0,-0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14486"/><g id="g14488" transform="translate(0,-0.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24 L 0.96,-0.48 L 1.2,-0.96 L 0.96,-1.68 L 0.72,-2.16 L 2.64,-3.12 L 3.36,-3.84 L 2.88,-5.76 L 2.16,-7.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14490"/><g id="g14492" transform="translate(-29.28,-29.04)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14494"/><g id="g14496" transform="translate(7.44,13.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.24 L -0.72,-0.48 L -0.72,-0.96 L -0.96,-1.2 L -0.96,-2.16 L -1.2,-3.12 L -1.44,-3.12 L -1.68,-2.64 L -2.64,-3.12" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14498"/><g id="g14500" transform="translate(13.68,-11.04)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0 L 0.48,0.48 L 1.68,1.2 L 2.64,1.2 L 3.12,1.44 L 3.36,0.96 L 3.6,1.44 L 5.04,1.2 L 5.76,1.44 L 6.24,1.92 L 6.48,1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14502"/><g id="g14504" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0 L 0.48,0.48 L 1.68,1.2 L 2.64,1.2 L 3.12,1.44 L 3.36,0.96 L 3.6,1.44 L 5.04,1.2 L 5.76,1.44 L 6.24,1.92 L 6.48,1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14506"/><g id="g14508" transform="translate(5.52,6.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.96,-0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14510"/><g id="g14512" transform="translate(-2.4,-9.12)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.96,-0.24 L -2.16,0.24 L -2.4,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14514"/><g id="g14516" transform="translate(0,-0.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14518"/><g id="g14520" transform="translate(3.36,4.56)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.48 L 1.2,-0.48 L 2.4,-1.44 L 2.88,-1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14522"/><g id="g14524" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.48 L 1.2,-0.48 L 2.4,-1.44 L 2.88,-1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14526"/><g id="g14528" transform="translate(2.88,4.08)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,0.24 L -1.2,-0.24 L -2.16,0.48 L -2.88,0.72 L -3.36,0.96 L -3.36,0.72 L -3.6,0.96 L -3.84,0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14530"/><g id="g14532" transform="translate(5.52,-3.84)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L -0.72,-0.48 L -1.2,-0.24 L -1.2,0.24 L -1.68,0.24 L -2.16,0 L -2.4,0.24 L -2.88,0 L -3.36,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14534"/><g id="g14536" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L -0.72,-0.48 L -1.2,-0.24 L -1.2,0.24 L -1.68,0.24 L -2.16,0 L -2.4,0.24 L -2.88,0 L -3.36,0.24 L -3.6,1.44 L -4.08,1.92 L -4.08,2.16 L -4.56,1.92 L -4.56,3.36 L -5.04,3.6 L -5.04,4.08 L -5.52,3.84" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14538"/><g id="g14540" transform="translate(-5.52,-1.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.96 L 0.72,-1.2 L 0.48,-1.68 L -0.24,-1.68 L -0.24,-2.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14542"/><g id="g14544" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.96 L 0.72,-1.2 L 0.48,-1.68 L -0.24,-1.68 L -0.24,-2.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14546"/><g id="g14548" transform="translate(-0.24,10.32)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,-1.2 L 0,-2.88 L 0.48,-3.36" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14550"/><g id="g14552" transform="translate(0.24,-4.8)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.96 L 0.48,1.2 L 0.24,1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14554"/><g id="g14556" transform="translate(1.2,-4.8)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,-0.24 L -0.72,-0.48 L -1.2,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14558"/><g id="g14560" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,-0.24 L -0.72,-0.48 L -1.2,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14562"/><g id="g14564" transform="translate(0.96,1.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.24 L -0.48,-1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14566"/><g id="g14568" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.24 L -0.48,-1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14570"/><g id="g14572" transform="translate(-2.4,8.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.48 L 0.48,0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14574"/><g id="g14576" transform="translate(1.92,-9.6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14578"/><g id="g14580" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14582"/><g id="g14584" transform="translate(-1.92,10.56)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14586"/><g id="g14588" transform="translate(7.44,-9.84)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0 L -0.96,0.48 L -1.44,0.48 L -1.68,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14590"/><g id="g14592" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0 L -0.96,0.48 L -1.44,0.48 L -1.68,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14594"/><g id="g14596" transform="translate(0.48,-1.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.24 L -0.48,0.72 L -0.48,1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14598"/><g id="g14600" transform="translate(51.36,35.52)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.24 L -0.48,0.24 L -0.24,0.72 L -0.48,1.2 L 0,1.44 L -0.48,1.68 L 0.24,1.92 L 0,2.16 L 0.48,2.4 L 1.2,2.64" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14602"/><g id="g14604" transform="translate(1.44,3.6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.48 L 0.96,0.24 L 1.2,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14606"/><g id="g14608" transform="translate(-0.24,-0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.24 L 0.24,0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14610"/><g id="g14612" transform="translate(-116.4,-34.32)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14614"/><g id="g14616" transform="translate(17.04,-20.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.48 L -0.48,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14618"/><g id="g14620" transform="translate(-1.2,0.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.72 L 0,1.2 L -0.72,1.2 L -0.72,1.68 L -1.44,1.92 L -1.44,2.88 L -1.92,2.64 L -2.16,2.64 L -2.4,3.12 L -2.4,3.84" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14622"/><g id="g14624" transform="translate(2.4,4.08)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.24 L -0.48,0 L -0.48,0.24 L -0.72,0 L -0.96,0.24 L -1.2,0.24 L -1.2,0 L -1.44,0 L -2.16,-0.24 L -2.64,0 L -3.12,0 L -3.12,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14626"/><g id="g14628" transform="translate(1.44,-4.8)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.72 L 0.48,0.96 L 0.48,1.44 L 0.24,1.68 L 0.48,1.92 L 0,2.4 L 0.24,2.88 L 0,3.36 L 0.48,3.6 L 0.48,3.84 L 0.72,4.08 L 0.48,5.52 L 0.96,5.52 L 0.96,5.76 L 1.2,5.52 L 1.92,5.76 L 2.16,5.76 L 1.92,6.24 L 2.64,6.48 L 2.64,7.2 L 2.16,7.2 L 2.16,7.68 L 2.4,7.92 L 2.88,7.68 L 3.36,8.88 L 3.36,9.84 L 2.88,9.84 L 2.88,10.32 L 2.16,10.8" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14630"/><g id="g14632" transform="translate(0,2.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0 L -0.72,0.48 L 0,1.2 L -0.72,1.68 L -1.2,1.68 L -1.44,2.4" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14634"/><g id="g14636" transform="translate(0,-1.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.24 L -0.72,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14638"/><g id="g14640" transform="translate(6.24,13.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24 L 0.72,-0.24 L 1.2,-0.72 L 1.68,-0.48 L 2.4,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14642"/><g id="g14644" transform="translate(5.28,-14.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.72 L 0.96,0 L 1.92,0 L 2.64,0.72 L 2.88,0.72 L 2.88,0.96 L 3.6,0.96 L 3.6,1.2 L 4.56,1.44 L 4.32,1.68 L 4.32,1.92 L 4.8,1.92 L 5.04,1.44 L 5.28,1.2 L 5.76,1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14646"/><g id="g14648" transform="translate(0.48,-1.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.24 L -0.48,1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14650"/><g id="g14652" transform="translate(5.04,2.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14654"/><g id="g14656" transform="translate(0.24,1.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 1.5987212e-14,9.9642516e-15 L 1.5987212e-14,0.24 L -0.48,0.48 L -0.48,0.96 L -0.72,1.44 L -0.48,2.16 L -0.96,3.12 L -0.72,3.6 L -1.68,4.56 L -0.87951657,5.73504 L -0.76554564,6.8206602" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14658" sodipodi:nodetypes="ccccccccccc"/><g id="g14660" transform="translate(-8.64,10.56)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14662"/><g id="g14664" transform="translate(8.64,-12)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.48 L 0.24,0.48 L 0.72,-0.24 L 1.68,-0.48 L 1.92,-0.72 L 2.64,-0.72 L 2.88,-0.96 L 2.4,-1.44 L 3.12,-2.4 L 4.08,-1.92 L 3.6,-1.2 L 4.32,-1.44 L 4.8,-1.92 L 5.28,-1.68 L 5.28,-1.92 L 5.04,-2.16 L 5.28,-2.16 L 5.52,-2.64" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14666"/><g id="g14668" transform="translate(6,-2.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.24 L 0.24,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14670"/><g id="g14672" transform="translate(2.64,13.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14674"/><g id="g14676" transform="translate(-8.64,-10.08)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14678"/><g id="g14680" transform="translate(16.08,-2.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,1.2 L 1.44,1.44 L 1.44,1.92 L 0.96,2.64 L 1.44,2.88 L 0.24,3.84 L 0.24,4.32 L 0,4.8 L 0,6.24 L -0.96,6.72 L -0.72,7.44 L 0.24,8.16 L -0.24,9.6 L -0.72,10.56 L -1.44,12.48 L -2.16,12.96 L -5.04,12.48 L -7.44,12.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14682"/><g id="g14684" transform="translate(1.2,12.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L 0,-0.48 L -0.48,-0.48 L -0.72,-0.96 L -1.2,-0.72 L -2.16,-0.96 L -2.4,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14686"/><g id="g14688" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L 0,-0.48 L -0.48,-0.48 L -0.72,-0.96 L -1.2,-0.72 L -2.16,-0.96 L -2.4,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14690"/><g id="g14692" transform="translate(1.2,-6.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.96,-0.24 L -1.44,-1.2 L -2.16,-1.2 L -2.4,-1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14694"/><g id="g14696" transform="translate(-5.04,6.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.72 L 0,1.44 L -0.48,1.92" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14698"/><g id="g14700" transform="translate(5.52,2.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,-0.24 L -0.72,-0.72 L -0.48,-1.44 L -0.72,-2.16 L -0.24,-2.16 L -0.24,-2.64 L -0.72,-2.64 L -0.96,-2.16 L -1.2,-2.4 L -1.44,-2.88 L -1.68,-2.88" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14702"/><g id="g14704" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,-0.24 L -0.72,-0.72 L -0.48,-1.44 L -0.72,-2.16 L -0.24,-2.16 L -0.24,-2.64 L -0.72,-2.64 L -0.96,-2.16 L -1.2,-2.4 L -1.44,-2.88 L -1.68,-2.88" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14706"/><g id="g14708" transform="translate(4.32,-9.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0 L 0.48,-0.48 L 0.72,0.24 L 1.2,0 L 1.44,0.48 L 1.68,0 L 2.16,0.24 L 2.4,0 L 2.4,0.24 L 2.88,0.72 L 3.6,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14710"/><g id="g14712" transform="translate(-3.84,0.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0 L -0.96,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14714"/><g id="g14716" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 3.12,0 L 3.36,-0.48 L 3.84,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14718"/><g id="g14720" transform="translate(7.44,-0.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.48 L 0.96,0.48 L 1.2,0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14722"/><g id="g14724" transform="translate(3.84,3.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0 L 0.72,0.24 L 0.72,0.96 L 1.92,1.2 L 2.16,1.68 L 2.88,1.68 L 3.36,1.92 L 4.08,1.44 L 4.08,0.96 L 4.8,0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14726"/><g id="g14728" transform="translate(-3.12,6.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L 0,0.48 L -0.96,0.72 L -0.96,1.2 L -0.72,1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14730"/><g id="g14732" transform="translate(1.44,-3.6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.48 L 0.72,-0.96 L 0.72,-1.2 L 0.96,-1.68 L 1.2,-2.4 L 1.68,-2.88" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14734"/><g id="g14736" transform="translate(2.16,1.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.24 L -0.48,-0.48 L -0.48,-0.72 L -0.72,-1.2 L -1.2,-1.44 L -1.68,-1.2 L -2.16,-1.2 L -2.16,-1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14738"/><g id="g14740" transform="translate(4.56,-5.28)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,0.24 L 0.96,0 L 1.44,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14742"/><g id="g14744" transform="translate(-7.68,-1.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0 L 1.2,-0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14746"/><g id="g14748" transform="translate(3.12,6.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,0.24 L -0.72,0.72 L -1.92,0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14750"/><g id="g14752" transform="translate(-2.16,-5.28)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-1.2 L 0.24,-1.68 L 0.24,-2.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14754"/><g id="g14756" transform="translate(1.68,0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.44,-0.48 L -1.44,-0.72 L -1.68,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14758"/><g id="g14760" transform="translate(4.8,0.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24 L -0.24,-0.48 L 0.24,-1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14762"/><g id="g14764" transform="translate(-6.24,4.8)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.2,0.48 L -1.68,0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14766"/><g id="g14768" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14770"/><g id="g14772" transform="translate(6.48,-6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14774"/><g id="g14776" transform="translate(2.4,-0.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.48 L 0.48,-0.72 L 0.72,-1.2 L 1.2,-1.44 L 1.92,-0.96 L 2.4,-1.2 L 2.64,-0.96 L 3.12,-1.2 L 3.36,-0.48 L 4.32,0.24 L 5.28,-0.72 L 5.52,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14778"/><g id="g14780" transform="translate(6.24,-0.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L 0,0.24 L 0.48,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14782"/><g id="g14784" transform="translate(-7.2,1.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0 L 0.48,-0.48 L 0.96,-0.24 L 0.96,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14786"/><g id="g14788" transform="translate(25.2,12.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.48 L -0.72,-0.72 L -0.48,-1.2 L -0.24,-1.44 L -0.48,-1.92 L -0.72,-2.64 L -1.2,-2.88 L -0.96,-2.88 L 0,-4.08 L 0.48,-4.08 L 0.24,-4.32" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14790"/><g id="g14792" transform="translate(-0.72,-5.04)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.24 L -1.68,0.72 L -1.92,0.24 L -1.92,0 L -1.68,-0.72 L -1.68,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14794"/><g id="g14796" transform="translate(0.96,7.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.24 L 0.24,-0.48 L 0.24,-0.24 L 0,-0.48 L 0.24,-1.44 L -0.24,-2.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14798"/><g id="g14800" transform="translate(7.92,3.12)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,-0.24 L -0.72,-0.72 L -0.48,-0.72 L 0.24,-1.2 L 0,-1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14802"/><g id="g14804" transform="translate(-4.56,-1.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.96,0.48 L -1.2,0 L -1.44,-0.24 L -1.44,-0.96 L -1.68,-0.96 L -1.92,-1.44 L -2.16,-1.2 L -1.92,-1.2 L -2.16,-0.96 L -3.36,-1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14806"/><g id="g14808" transform="translate(4.56,0)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.24 L -0.48,0.72 L -1.2,0.72 L -2.16,0.96 L -2.64,0.72 L -2.88,0.96 L -3.6,0.96 L -4.56,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14810"/><g id="g14812" transform="translate(3.6,5.52)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.48 L 0,-0.96 L -0.72,-0.72 L -1.44,-1.44 L -1.2,-1.68 L -1.68,-1.68 L -1.68,-2.4 L -1.92,-2.4 L -1.68,-2.88 L -1.92,-4.08 L -2.64,-4.08 L -3.36,-3.84 L -3.6,-3.84" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14814"/><g id="g14816" transform="translate(3.84,2.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.72 L 0,-1.2 L -0.24,-1.2 L -0.24,-0.96 L -0.48,-0.96 L -1.44,-1.68 L -2.4,-1.68 L -2.4,-1.2 L -3.12,-1.44 L -3.12,-1.68 L -3.36,-1.92 L -3.84,-2.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14818"/><g id="g14820" transform="translate(-2.64,2.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.24 L 0.24,0.96 L 0.48,1.2 L 0.72,2.16 L 0.24,2.4 L 0,2.16 L -0.24,2.4 L -0.48,2.4 L -0.72,3.36 L -0.96,3.36 L -0.48,4.08 L 0,4.08 L 0.48,4.56 L 0.48,4.8 L 0.24,5.04 L -1.2,4.32 L -1.68,4.8 L -1.2,4.8 L -1.2,5.28 L -1.44,5.28 L -1.68,5.04 L -2.4,4.56 L -2.16,4.8 L -2.4,5.52 L -2.88,5.28 L -2.88,5.52 L -2.64,5.52 L -2.88,6 L -2.16,6.24 L -2.16,6.48 L -1.68,6.72 L -1.92,6.96 L -1.44,7.44 L -1.2,7.2 L -0.96,7.2 L -1.2,7.68 L -0.72,8.4 L -0.96,8.64 L -0.72,8.88" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14822"/><g id="g14824" transform="translate(3.84,0.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.24 L 0.72,-1.44 L 0,-2.64 L -0.72,-3.12 L -1.44,-3.12 L -1.2,-3.36" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14826"/><g id="g14828" transform="translate(-3.6,10.32)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0 L 0.48,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14830"/><g id="g14832" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0 L 0.48,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14834"/><g id="g14836" transform="translate(1.68,-10.56)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,-0.72 L -0.96,-0.24 L -1.68,-0.72 L -1.92,-0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14838"/><g id="g14840" transform="translate(-1.92,9.12)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.24 L -0.24,0.48 L 0.24,1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14842"/><g id="g14844" transform="translate(1.92,-9.12)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.24 L 1.2,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14846"/><g id="g14848" transform="translate(-2.64,8.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.72 L 0.72,0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14850"/><g id="g14852" transform="translate(4.56,-8.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14854"/><g id="g14856" transform="translate(-2.4,12.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,2.16 L 0.96,2.4 L 1.2,3.12 L 1.44,3.36 L 1.44,3.6" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14858"/><g id="g14860" transform="translate(-0.72,-1.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0 L 0,0.48 L 0.24,0.96 L 0,0.96 L 0.48,1.44 L 0.48,1.92 L 0.72,1.68 L 0.72,1.92" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14862"/><g id="g14864" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0 L 0,0.48 L 0.24,0.96 L 0,0.96 L 0.48,1.44 L 0.48,1.92 L 0.72,1.68 L 0.72,1.92" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14866"/><g id="g14868" transform="translate(6.96,7.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.24 L 0,0.48 L 0.72,0.72 L 0.48,1.2 L 0.48,1.44 L 1.2,1.68 L 0.48,1.92 L 0.48,2.16 L 1.2,1.92 L 1.44,2.16 L 1.44,1.92 L 1.92,1.68 L 1.92,1.92 L 2.16,2.16 L 1.68,2.16 L 1.68,1.92 L 1.44,2.4 L 1.92,2.88 L 2.4,2.64 L 2.64,3.12 L 2.88,3.36 L 2.64,3.6 L 2.88,3.84 L 3.12,3.6 L 2.88,3.12 L 3.36,2.4 L 4.08,2.4" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14870"/><g id="g14872" transform="translate(-2.16,1.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.48 L 0.96,-0.24 L 1.2,-0.48 L 1.92,-0.96 L 1.68,-1.2 L 2.16,-1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14874"/><g id="g14876" transform="translate(6.24,0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.72 L -0.24,0.96 L 0.24,1.2 L 0.24,1.44 L 0.72,1.68 L 0.24,1.92 L 0.48,2.16 L 0.24,2.64 L 0.48,2.88" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14878"/><g id="g14880" transform="translate(9.84,6.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 2.64,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14882"/><g id="g14884" transform="translate(-9.6,-2.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.96 L -0.24,1.2 L 0.24,1.44 L 0,2.4 L 0.24,1.92 L 0.48,1.92 L 0.72,1.44 L 0.48,0.96 L 0.96,0.96 L 3.84,2.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14886"/><g id="g14888" transform="translate(0.24,-1.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.96 L -0.48,0.96 L -0.24,1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14890"/><g id="g14892" transform="translate(3.6,3.84)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 5.76,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14894"/><g id="g14896" transform="translate(10.08,2.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.48 L 0.48,0.96 L 0.72,1.68 L 0.72,2.16 L 0.48,2.4 L 0.72,2.88 L 0.48,3.12 L 0.72,3.6 L 1.44,4.32 L 3.6,4.56 L 3.36,4.8 L 4.32,5.52" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14898"/><g id="g14900" transform="translate(-1.68,-2.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0 L 0.24,0.24 L 0.24,0.96 L -0.48,1.2 L -0.48,1.68 L -0.72,1.92 L -0.24,2.16 L 0,2.4 L 0,2.64 L 0.72,2.16 L 0.96,2.64 L 1.44,2.4 L 1.68,2.64" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14902"/><g id="g14904" transform="translate(6,8.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14906"/><g id="g14908" transform="translate(3.12,9.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L -0.48,0.96 L -0.24,1.44 L -0.72,2.16 L -0.72,2.88 L -1.2,3.84 L -0.96,4.56 L -1.44,5.04 L -0.72,5.52 L -0.96,5.76 L -0.96,6 L -0.48,6 L -0.24,6.24 L 0.24,8.4 L 1.2,8.4 L 1.92,8.88 L 1.92,9.36 L 2.16,9.6" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14910"/><g id="g14912" transform="translate(2.4,11.52)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14914"/><g id="g14916" transform="translate(0.72,3.84)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.24 L -0.96,0.72 L -1.68,0.72 L -1.92,0.24 L -2.64,0.24 L -3.12,0 L -4.56,0.72 L -4.32,0.96 L -5.28,1.2 L -5.52,1.92 L -6.24,2.4 L -5.76,3.12 L -5.52,3.84 L -5.04,4.32 L -4.8,5.28 L -3.84,6.96 L -3.84,7.2 L -3.36,8.4 L -2.64,8.4 L -1.44,8.64 L -1.2,8.4 L -0.24,9.6 L -0.24,10.32 L 0,10.32 L 0.24,12 L -0.24,12.48 L -0.48,13.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14918"/><g id="g14920" transform="translate(-149.04,-76.56)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,-0.48 L -1.2,-0.48 L -0.96,-0.96 L -1.92,-0.96 L -1.68,-1.92 L -0.72,-2.4 L -0.48,-2.16 L -0.48,-1.92 L 0,-1.92 L 0.24,-2.64 L 0.24,-3.12 L 0.72,-3.12" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14922"/><g id="g14924" transform="translate(17.52,-21.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.24 L -0.24,0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14926"/><g id="g14928" transform="translate(-0.72,0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.24 L -0.72,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14930"/><g id="g14932" transform="translate(4.8,-8.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.48 L 0.24,1.2 L 0.24,1.68 L 0.96,3.12 L 1.92,4.08 L 0.72,4.56 L 0.48,5.04 L 0.24,4.8 L -0.48,4.8 L -0.48,5.28 L -0.96,5.04 L -1.2,6 L -1.44,6 L -1.2,7.2 L -1.68,7.44 L -1.68,7.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14934"/><g id="g14936" transform="translate(-2.88,-7.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.24 L 0.96,0.48 L 1.2,1.2 L 0.48,2.16 L 0.72,2.64 L 1.2,2.88 L 1.44,2.64 L 2.16,2.88 L 2.88,2.4 L 3.6,3.12 L 3.6,3.6 L 4.32,4.08 L 4.32,3.36 L 4.56,2.88 L 5.04,2.88 L 5.04,2.4 L 5.28,1.92 L 5.52,2.16 L 5.52,2.64 L 6,3.12 L 6.24,3.84 L 6.48,3.84 L 6.72,3.36 L 7.68,3.36" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14938"/><g id="g14940" transform="translate(7.92,5.04)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.24 L -0.24,0.48 L -1.2,0.48 L -0.96,0.96 L -0.72,1.68 L -0.72,2.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14942"/><g id="g14944" transform="translate(-0.48,1.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.24 L 0.48,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14946"/><g id="g14948" transform="translate(-6.24,-4.08)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0.72 L -0.24,1.44 L -0.48,1.68 L -1.44,1.68 L -1.68,1.44 L -1.44,1.2 L -2.16,0.96 L -1.68,1.44 L -1.92,1.68 L -1.68,2.16 L -0.96,2.64 L -0.96,3.12 L -0.24,3.36 L 0.72,4.32 L 0.24,4.32 L 0.48,4.8 L 0.96,4.56 L 0.96,4.32 L 1.92,4.8 L 1.92,4.56 L 3.12,4.8 L 3.84,4.56 L 4.08,4.8 L 3.6,5.04 L 3.84,5.28 L 4.56,4.8 L 5.28,4.56 L 6.24,4.08" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14950"/><g id="g14952" transform="translate(0.24,10.8)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.24 L -0.96,0.24 L -1.2,0.48 L -1.92,0.48 L -2.16,1.2 L -2.64,1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14954"/><g id="g14956" transform="translate(-0.96,1.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.24 L 0,-0.96 L -0.24,-1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14958"/><g id="g14960" transform="translate(6.48,-10.08)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14962"/><g id="g14964" transform="translate(8.88,-2.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.68,-0.48 L 2.4,0.24 L 2.64,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14966"/><g id="g14968" transform="translate(-8.16,0)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.48 L 0.48,0.24 L 0.24,0.24 L 0.24,0.48 L 0.48,0.72 L 0.72,0.48 L 0.96,0.48 L 0.96,0.96 L 1.2,1.68 L 0.96,1.92 L 0.48,1.44 L 0.24,1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14970"/><g id="g14972" transform="translate(0.24,3.6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.48 L 0.48,-0.48 L 0.48,-0.72 L 0.96,-0.48 L 1.2,0.24 L 1.2,0 L 1.92,0 L 2.16,-0.48 L 2.64,-0.48 L 3.6,0 L 4.8,0 L 4.8,0.48 L 4.8,0.24 L 5.28,0.24 L 5.28,0 L 6,0 L 6,-0.24 L 6.48,-0.48 L 6.48,0 L 6.24,0.24 L 6.48,0.72 L 6,1.44 L 7.2,2.16 L 7.44,2.88 L 7.92,2.64 L 8.16,3.36 L 7.68,4.08 L 7.44,4.08 L 6.96,4.56 L 6.72,5.04 L 6,5.52 L 5.52,6.48 L 5.76,6.96 L 5.28,7.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14974"/><g id="g14976" transform="translate(7.68,-6.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.24 L -0.24,0.72 L 0,1.2 L -0.48,1.44 L 0,1.92 L -0.48,1.92 L -0.72,2.16 L 0.24,2.88 L -2.64,3.6 L -2.88,4.08 L -3.12,4.32 L -3.12,4.8 L -4.08,4.56 L -5.28,4.56 L -5.52,4.08 L -6.72,4.32" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14978"/><g id="g14980" transform="translate(0.48,9.84)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.48 L 0.96,-0.72 L 1.2,-0.24 L 1.68,-0.48 L 1.92,0 L 2.4,0 L 2.4,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14982"/><g id="g14984" transform="translate(2.4,-10.08)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,-0.24 L -0.96,0.48 L -0.96,0 L -1.44,-0.24 L -2.16,0 L -2.88,-0.24 L -3.12,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14986"/><g id="g14988" transform="translate(5.52,13.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14990"/><g id="g14992" transform="translate(0.72,0.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24 L 0.72,-0.24 L 0.96,-0.96 L 1.2,-0.96 L 1.68,-1.92 L 2.16,-1.68 L 2.64,-1.2 L 3.12,-1.68 L 3.36,-1.68 L 3.36,-2.4 L 3.84,-2.4" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14994"/><g id="g14996" transform="translate(-6.24,-10.8)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.96,0 L 1.92,0.48 L 2.16,0.24 L 2.16,0.72 L 2.64,0.96 L 3.36,-0.24 L 4.8,-1.2 L 5.04,-1.92 L 5.52,-1.92 L 6.24,-2.4 L 7.44,-2.4 L 7.92,-1.92 L 8.64,-1.68 L 8.88,-1.44 L 9.36,-1.44 L 9.84,-0.96 L 10.8,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path14998"/><g id="g15000" transform="translate(2.4,0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.48 L 0.72,0.48 L 0.72,1.68 L 0.96,1.68 L 1.2,2.16 L 0.72,2.64 L 0.96,2.64 L 1.2,2.4 L 1.92,2.64 L 1.68,3.12 L 2.16,3.6 L 3.36,2.88 L 5.28,2.88 L 5.52,3.12 L 5.28,3.6 L 5.52,3.84 L 6.72,4.08 L 7.2,4.56 L 7.68,4.32 L 7.92,4.32" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15002"/><g id="g15004" transform="translate(5.28,8.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,-0.24 L -0.96,-0.72 L -1.2,-0.72 L -1.44,-1.44 L -1.92,-1.92 L -2.64,-2.4 L -3.36,-2.4 L -3.84,-3.12" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15006"/><g id="g15008" transform="translate(-7.68,-2.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.24 L 0.24,0 L 0.48,0.24 L 1.44,-0.24 L 1.68,0 L 2.16,-0.48 L 2.88,-0.48 L 3.12,-0.24 L 3.84,-0.48 L 4.08,-0.96 L 3.84,-1.68 L 4.32,-2.4" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15010"/><g id="g15012" transform="translate(4.56,-2.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15014"/><g id="g15016" transform="translate(3.84,-9.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.48 L -0.48,0.24 L -1.2,0.48 L -1.44,0.24 L -1.68,0.48 L -2.16,0.24 L -4.08,0.72 L -5.04,0.48 L -5.52,-0.24 L -6.24,0.48 L -6.72,0.48 L -6.72,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15018"/><g id="g15020" transform="translate(0,2.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.48 L 0.24,-0.96 L 0.72,-1.2 L 0.48,-1.44 L 1.44,-1.92 L 0.72,-2.16 L 0.72,-2.64" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15022"/><g id="g15024" transform="translate(-5.04,1.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0 L -0.48,-0.24 L -0.96,-0.24 L -1.92,-0.96 L -1.68,-1.44 L -1.92,-1.92 L -2.64,-2.4 L -2.4,-2.64 L -2.64,-2.88 L -2.4,-3.12 L -2.64,-3.36 L -3.12,-3.36 L -3.36,-3.12" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15026"/><g id="g15028" transform="translate(6.72,8.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.48 L 0.48,0.72 L 1.2,0.96 L 1.68,0.48 L 2.16,0.72 L 1.92,0.96 L 3.12,1.2 L 3.84,0.96 L 4.08,0.48 L 5.04,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15030"/><g id="g15032" transform="translate(0.72,-9.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0 L 1.68,-0.96 L 1.92,-0.96 L 1.92,-1.92 L 3.6,-2.64 L 3.36,-3.12" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15034"/><g id="g15036" transform="translate(0.72,0)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.24 L 0.72,0.24 L 0.96,0.72 L 1.68,0.48 L 1.92,0.72 L 1.92,1.92 L 2.4,2.16 L 2.64,3.12 L 3.12,4.32 L 3.12,4.8 L 3.6,5.52 L 4.32,5.76 L 5.28,6.96 L 5.76,6.72 L 6.72,6.48 L 8.16,6.96 L 9.12,6.24 L 9.12,6.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15038"/><g id="g15040" transform="translate(3.12,7.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.72 L 0.24,0.96 L 0.48,2.16 L 1.2,2.16 L 1.2,2.4 L 0.72,2.64 L 0.48,3.84 L 1.44,5.28" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15042"/><g id="g15044" transform="translate(-4.32,-1.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,0.48 L 0.96,1.2 L 1.44,1.44 L 2.16,1.2 L 2.88,1.68 L 3.6,0.96 L 4.56,1.2 L 5.28,0.48 L 5.76,0.48 L 6,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15046"/><g id="g15048" transform="translate(10.32,0.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,0.48 L 2.4,0.96 L 2.64,1.68 L 3.36,2.16 L 4.08,1.92 L 4.8,0.48 L 5.52,0 L 6.24,-0.72 L 6.96,-1.2 L 7.68,-2.64 L 7.44,-3.36 L 8.16,-5.04 L 7.92,-5.28 L 8.64,-6 L 9.12,-6.24 L 9.6,-6 L 9.6,-5.76 L 10.08,-5.76 L 10.8,-5.28 L 11.28,-5.28 L 11.52,-5.76" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15050"/><g id="g15052" transform="translate(11.04,-1.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0 L 0,0.72 L -0.96,0.96 L -0.96,1.44 L -1.2,1.44 L -1.2,2.16 L -1.68,1.92 L -2.4,2.4 L -2.4,3.6 L -2.64,3.84 L -2.88,3.6 L -3.12,3.84" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15054"/><g id="g15056" transform="translate(-6.24,4.56)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0 L 1.2,-0.24 L 1.2,-0.48 L 1.92,-0.24 L 1.92,-0.72 L 1.92,-0.48 L 2.16,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15058"/><g id="g15060" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 3.13638e-15,4.4929338e-15 L -0.48,-0.48 L -1.2,-0.48 L -1.44,-0.96 L -1.4688791,-0.93112088 L -1.68,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15062" sodipodi:nodetypes="cccccc"/><g id="g15064" transform="translate(3.12,-0.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.24 L -0.72,0.24 L -0.96,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15066"/><g id="g15068" transform="translate(3.12,-3.84)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 1.8457458e-15,8.9858676e-16 L 0.24,-0.24 C 0.115705,-0.36273157 -0.092396349,-0.61069661 -0.37643483,-0.66623652 C -0.61019762,-0.71194569 -0.7338976,-0.5893572 -0.91717988,-0.71869091 C -1.1400837,-0.87598369 -1.0529024,-1.4997182 -1.2198305,-1.6901229 C -1.4021577,-1.8980923 -1.4312695,-2.2811718 -1.5999372,-2.3781778 C -1.9407098,-2.5741665 -1.832519,-2.649032 -2.0686542,-2.9617209 C -2.3261939,-3.3027536 -2.5097082,-3.3620591 -2.869055,-3.6480942" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15070" sodipodi:nodetypes="ccsssssc"/><g id="g15072" transform="translate(12,15.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.24 L 0.72,0 L 0.72,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15074"/><g id="g15076" transform="translate(1.2,0.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.24 L 0.48,0 L 0.96,-0.24 L 1.44,0.24 L 1.68,-0.24 L 2.4,0 L 2.88,-0.24 L 3.36,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15078"/><g id="g15080" transform="translate(3.6,-5.52)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.44,0.48 L 1.2,0.96 L 1.44,1.92 L 0.96,1.92 L 0.96,2.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15082"/><g id="g15084" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.24 L -0.24,-0.96 L -0.96,-1.44 L -0.96,-2.4 L -0.48,-2.4 L -0.48,-2.88" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15086"/><g id="g15088" transform="translate(0.24,2.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.72 L 0.48,0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15090"/><g id="g15092" transform="translate(0.24,1.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,-0.24 L -0.72,0.24 L -0.24,0.48 L -0.24,0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15094"/><g id="g15096" transform="translate(-0.24,-1.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.24 L 0.72,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15098"/><g id="g15100" transform="translate(-1.92,-11.52)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15102"/><g id="g15104" transform="translate(1.44,14.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15106"/><g id="g15108" transform="translate(0.96,-2.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.24 L -0.24,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15110"/><g id="g15112" transform="translate(-0.48,0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15114"/><g id="g15116" transform="translate(-0.48,1.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.48 L 0.48,-0.72 L 0.48,-1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15118"/><g id="g15120" transform="translate(14.4,9.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.72 L -0.72,-0.96 L -0.96,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15122"/><g id="g15124" transform="translate(0,-6.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.48 L 0.48,-0.48 L 0.48,-0.72 L 0.96,-1.2 L 1.44,-1.2 L 1.2,-0.72 L 1.92,-0.72 L 2.64,-0.24 L 4.08,-0.72 L 6,-1.68 L 5.52,-2.16 L 5.28,-2.16 L 5.04,-2.64 L 5.52,-2.88 L 5.76,-2.64 L 6.96,-2.64" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15126"/><g id="g15128" transform="translate(-2.64,4.56)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.72 L 0.48,-2.16 L 1.2,-2.4 L 0.96,-3.12 L 1.44,-4.8 L 2.64,-4.56" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15130"/><g id="g15132" transform="translate(24,-1.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 3.12,5.28 L 5.28,5.52" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15134"/><g id="g15136" transform="translate(32.16,42.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.24 L 0.48,2.16 L 0.48,3.84 L 1.2,4.08 L 1.2,4.8 L 1.92,5.28 L 0.96,5.76 L 0.72,5.28 L 0.48,5.28 L -3.12,8.4 L -3.84,8.64 L -2.4,10.08 L -1.92,11.76 L -1.44,11.76 L -1.2,12 L -1.44,12.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15138"/><g id="g15140" transform="translate(-10.32,15.6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15142"/><g id="g15144" transform="translate(8.88,-3.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.48 L 0,1.2 L -0.48,1.68 L -2.64,2.16 L -3.84,3.12 L -3.6,4.8 L -4.08,5.28 L -4.8,5.52 L -5.04,6 L -4.56,6.96 L -4.8,7.68 L -4.08,7.68 L -3.84,7.44 L -3.12,7.92 L -2.88,7.44 L -2.16,8.4 L -1.44,8.4 L -0.96,9.12 L -0.48,9.12 L -0.48,10.08 L 0.48,10.56 L 0.24,11.04" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15146"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><g id="g15148" transform="translate(397.92,253.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.72 L -0.48,1.2 L -0.48,1.92 L 0,2.4 L -0.48,2.4 L 0,2.64 L -0.24,3.12 L -0.48,3.12 L -0.24,3.36 L -0.48,4.08 L -1.2,4.32 L -1.2,5.04" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15150"/><g id="g15152" transform="translate(-3.84,-4.56)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.96,0.24 L 1.2,0.96 L 1.92,1.92 L 1.44,2.88 L 1.44,3.12 L 1.68,3.12 L 1.92,2.64 L 2.4,3.12 L 2.88,3.12 L 3.6,3.6 L 3.84,3.6" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15154"/><g id="g15156" transform="translate(8.88,7.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0 L 0.96,0.48 L 2.88,0.72 L 3.36,0.96 L 4.56,0.96 L 5.28,0.48 L 6.24,0.48 L 6.96,-0.24 L 7.68,-0.48 L 8.64,-0.24 L 8.64,0.24 L 9.6,1.2 L 9.6,2.16 L 10.08,2.88 L 10.08,3.84 L 10.56,4.56" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15158"/><g id="g15160" transform="translate(-4.08,11.28)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0 L 0.24,0.72 L 0.48,0.96 L 0.24,1.44 L 0.48,1.68 L 0.24,1.92" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15162"/><g id="g15164" transform="translate(0.48,1.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.96 L 0.24,1.2 L 0.48,1.68 L 0.96,2.4 L 0.72,2.88 L 0.48,2.88 L 0.48,3.84" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15166"/><g id="g15168" transform="translate(-239.52,14.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-4.8 L 0.96,-4.8 L 1.2,-5.04 L 1.2,-5.52 L 1.44,-5.76 L 1.2,-6 L 1.68,-6.24 L 1.68,-6.48 L 2.16,-6.48 L 2.64,-6.96 L 3.36,-7.2 L 4.08,-7.2 L 4.32,-7.2 L 5.76,-7.68 L 6,-7.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15170"/><g id="g15172" transform="translate(7.68,-9.84)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,-1.2 L -0.24,-2.4 L -4.32,-2.88 L -4.56,-3.6" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15174"/><g id="g15176" transform="translate(-1.68,2.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 2.4,-1.2 L 2.4,-1.68 L 1.92,-1.68 L 1.68,-2.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15178"/><g id="g15180" transform="translate(-2.88,-5.76)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.2,-0.24 L -1.44,-0.48 L -1.2,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15182"/><g id="g15184" transform="translate(93.36,-115.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.48 L -1.44,1.2 L -1.68,0.72 L -2.88,1.2 L -3.36,1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15186"/><g id="g15188" transform="translate(3.84,-1.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0.24 L -1.2,0.24 L -1.2,0 L -2.16,0.48 L -2.64,0.48 L -3.36,0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15190"/><g id="g15192" transform="translate(-3.36,0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0 L -0.72,0.48 L -0.24,0.72 L 0.24,0.48 L 0,0 z" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15194"/><g id="g15196" transform="translate(0.48,-0.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15198"/><g id="g15200" transform="translate(13.68,1.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.24 L 0.48,0.96 L 0.48,1.2 L -0.48,1.2 L -1.2,1.68 L -1.44,2.16 L -1.2,2.16 L -1.2,2.64 L -0.96,2.88 L -0.72,2.88 L -0.72,3.36 L -1.44,3.84 L -1.44,4.08" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15202"/><g id="g15204" transform="translate(4.56,-3.12)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15206"/><g id="g15208" transform="translate(0.24,-1.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15210"/><g id="g15212" transform="translate(-2.4,-3.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,-0.24 L 0.96,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15214"/><g id="g15216" transform="translate(-2.88,7.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15218"/><g id="g15220" transform="translate(11.52,-0.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0 L 0.24,-0.24 L 0,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15222"/><g id="g15224" transform="translate(17.76,-4.08)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.24 L -0.48,0.24 L -0.72,0.24 L -1.44,-1.2 L -1.2,-1.44 L -1.2,-2.4" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15226"/><g id="g15228" transform="translate(-3.6,-0.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.48 L 0,0.72 L 0,1.2 L 0.48,1.68 L 0.48,2.4 L 0.96,2.64 L 1.2,2.4 L 1.44,2.4 L 0.96,3.12 L 2.4,3.6 L 1.44,4.8 L 2.16,4.56 L 2.4,4.8 L 1.2,6 L 1.68,7.44 L 1.2,7.68 L 0.48,7.44 L 0.24,7.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15230"/><g id="g15232" transform="translate(-6.48,7.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.72 L 0.72,-1.44 L 1.2,-2.4 L 3.6,-4.56 L 3.6,-5.28 L 4.56,-6 L 4.32,-6.48 L 5.04,-6.48 L 5.76,-7.2 L 6.48,-7.2 L 6.48,-7.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15234"/><g id="g15236" transform="translate(8.16,-4.32)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M -0.070671378,0.14134276 L 1.2,-0.96 L 1.92,-1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15238" sodipodi:nodetypes="ccc"/><g id="g15240" transform="translate(-0.72,4.8)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.24 L -0.24,-0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15242"/><g id="g15244" transform="translate(5.04,0.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.48 L 0,-0.48 L 0.24,-0.72 L 0.72,-0.72 L 0.72,-1.2 L 1.68,-0.96 L 1.92,-1.44 L 2.64,-0.72 L 3.12,-0.96 L 3.36,-1.2 L 2.88,-1.2 L 2.64,-1.44 L 3.36,-2.16 L 4.08,-2.4 L 3.84,-3.12 L 4.08,-3.36 L 5.04,-3.12 L 6.96,-3.36 L 7.68,-2.88 L 8.88,-3.12" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15246"/><g id="g15248" transform="translate(0.48,-13.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.2,0.48 L 1.68,0.24 L 2.64,1.44 L 4.32,1.44 L 4.32,2.16 L 6.24,2.64 L 6.96,2.88 L 7.2,2.88 L 7.44,3.36 L 7.92,3.36 L 8.4,3.6 L 8.64,3.12 L 9.12,2.88 L 9.36,3.12 L 9.6,3.12" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15250"/><g id="g15252" transform="translate(-1.2,-2.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,0.48 L 0.96,1.44 L 1.44,1.68 L 1.44,2.4 L 1.2,3.12 L 0.72,3.12 L 0,4.08 L 0,4.56 L -0.24,5.04 L 0,5.28 L -0.24,5.76 L 0,6.48 L -0.24,7.2 L -0.96,7.44 L -1.2,7.92 L -1.44,8.16 L -1.68,8.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15254"/><g id="g15256" transform="translate(5.76,5.04)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,1.2 L -0.48,2.16 L -1.2,2.4 L -1.68,2.88 L -1.2,3.6 L -1.68,3.84 L -1.68,4.56 L -0.96,5.04 L -0.48,6 L -1.68,6.72 L -2.4,7.68 L -2.16,8.4 L -1.92,8.64 L -1.68,9.12" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15258"/><g id="g15260" transform="translate(-1.68,3.12)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -2.16,-0.48 L -2.64,-0.96 L -2.88,-0.72 L -4.08,-1.92" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15262"/><g id="g15264" transform="translate(-5.76,1.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,-0.48 L 0.48,-0.96 L 0,-0.96 L 0.24,-1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15266"/><g id="g15268" transform="translate(11.28,3.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.96,0 L 1.68,0.48 L 2.4,1.44 L 4.32,2.4 L 4.8,2.4 L 5.04,2.16 L 5.76,2.4 L 6,2.16 L 6.24,2.4 L 6.72,1.92 L 7.92,1.92" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15270"/><g id="g15272" transform="translate(1.2,-7.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,-0.24 L 1.44,0 L 2.4,0.24 L 2.88,0.72 L 2.4,1.44 L 2.64,1.68 L 3.6,1.44 L 3.84,0.72 L 3.36,0.24 L 3.6,-0.72 L 2.88,-1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15274"/><g id="g15276" transform="translate(6.72,3.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0 L -0.24,-0.24 L -0.72,-0.24 L -0.96,-0.48 L -1.68,0 L -2.16,-0.24 L -2.64,-0.72 L -3.12,-0.72 L -3.36,-1.2 L -3.6,-1.44 L -3.6,-1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15278"/><g id="g15280" transform="translate(-4.56,-7.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15282"/><g id="g15284" transform="translate(0.48,1.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15286"/><g id="g15288" transform="translate(35.28,15.6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,0 L 0.96,0.48 L 2.16,0.72 L 2.16,1.44 L 2.64,1.68 L 2.64,1.44 L 3.84,1.2 L 3.84,0.96 L 4.32,0.96 L 4.8,1.2 L 5.04,0.72 L 5.52,0.72 L 6,0.24 L 6,-0.72 L 6.96,-1.44 L 6.72,-1.68 L 7.44,-1.44 L 8.64,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15290"/><g id="g15292" transform="translate(5.52,7.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L -0.24,-0.72 L -0.72,-0.48 L -0.96,-0.48 L -1.92,-1.68 L -2.4,-1.68 L -2.4,-1.44 L -3.6,-1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15294"/><g id="g15296" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L -0.24,-0.72 L -0.72,-0.48 L -0.96,-0.48 L -1.92,-1.68 L -2.4,-1.68 L -2.4,-1.44 L -3.6,-1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15298"/><g id="g15300" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L -0.24,-0.72 L -0.72,-0.48 L -0.96,-0.48 L -1.92,-1.68 L -2.4,-1.68 L -2.4,-1.44 L -3.6,-1.44 L -4.32,-1.44 L -5.04,-1.2 L -5.52,-1.68 L -6.24,-1.44 L -6.72,-2.16 L -7.92,-2.4 L -8.4,-2.4 L -9.12,-2.64 L -10.08,-2.4 L -10.32,-2.64 L -11.28,-2.88 L -11.28,-3.6" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15302"/><g id="g15304" transform="translate(-3.6,-1.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,0 L -1.44,0.24 L -1.92,-0.24 L -2.64,0 L -3.12,-0.72 L -4.32,-0.96 L -4.8,-0.96 L -5.52,-1.2 L -6.48,-0.96 L -6.72,-1.2 L -7.68,-1.44 L -7.68,-2.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15306"/><g id="g15308" transform="translate(5.76,-2.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.24 L 0,-0.48 L -1.44,-1.2 L -2.16,-1.92 L -2.88,-2.4" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15310"/><g id="g15312" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.24 L 0,-0.48 L -1.44,-1.2 L -2.16,-1.92 L -2.88,-2.4" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15314"/><g id="g15316" transform="translate(3.84,-2.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.24 L 0.24,0.96 L -1.2,0.96 L -1.92,1.44 L -1.68,2.16 L -2.4,2.4 L -3.12,2.16 L -3.36,2.16 L -2.88,2.4 L -3.36,2.4 L -3.6,2.64" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15318"/><g id="g15320" transform="translate(-1.68,6.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,0 L -1.2,-0.48 L -2.16,-0.24 L -2.4,0.72 L -3.36,0.24 L -4.08,0.48 L -4.32,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15322"/><g id="g15324" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,0 L -1.2,-0.48 L -2.16,-0.24 L -2.4,0.72 L -3.36,0.24 L -4.08,0.48 L -4.32,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15326"/><g id="g15328" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,0 L -1.2,-0.48 L -2.16,-0.24 L -2.4,0.72 L -3.36,0.24 L -4.08,0.48 L -4.32,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15330"/><g id="g15332" transform="translate(-1.92,-3.6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.72 L 0.72,0.96 L 1.44,1.2 L 1.44,0.96 L 1.68,0.72 L 2.16,0.96 L 2.64,1.44 L 3.6,1.2 L 3.6,1.68 L 3.36,2.16 L 2.4,2.16 L 2.16,2.4 L 1.68,2.64 L 1.92,3.6 L 2.16,3.6 L 2.4,3.36 L 2.64,3.84 L 3.6,3.36 L 3.84,3.36 L 4.56,2.88 L 5.76,3.36 L 6,3.6 L 6,4.32 L 6.48,5.28 L 6.24,6" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15334"/><g id="g15336" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15338"/><g id="g15340" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15342"/><g id="g15344" transform="translate(2.16,-0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15346"/><g id="g15348" transform="translate(-1.92,0.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15350"/><g id="g15352" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15354"/><g id="g15356" transform="translate(18.72,15.6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L -0.48,0.24 L -2.88,0.24 L -4.08,-0.96 L -4.56,-1.92 L -4.8,-3.84" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15358"/><g id="g15360" transform="translate(8.4,8.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15362"/><g id="g15364" transform="translate(-0.72,0.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.96,-0.96 L -1.44,-0.96 L -2.16,-0.72 L -2.4,-1.2 L -3.6,-1.2 L -3.36,-1.44 L -4.08,-2.16 L -3.6,-2.16 L -2.64,-2.4 L -2.88,-2.64 L -3.36,-2.4 L -3.84,-2.64 L -3.84,-3.12 L -3.6,-3.6 L -4.32,-4.56 L -4.32,-6 L -3.36,-6.72 L -2.88,-6.72 L -2.88,-7.2 L -5.04,-8.88 L -6,-9.84 L -7.68,-9.36" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15366"/><g id="g15368" transform="translate(-5.04,-8.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -7.68,8.88" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15370"/><g id="g15372" transform="translate(9.84,8.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.24 L -0.72,-0.48 L -1.68,-1.44 L -2.64,-1.68 L -2.88,-1.68 L -2.88,-1.2 L -3.6,-0.96 L -3.36,-0.72 L -4.08,-0.72 L -4.08,-0.48 L -4.56,0 L -4.8,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15374"/><g id="g15376" transform="translate(4.8,-0.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15378"/><g id="g15380" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L -1.2,0.72 L -2.16,0.72 L -3.84,1.44 L -4.56,1.2 L -5.04,0.96 L -4.8,0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15382"/><g id="g15384" transform="translate(-9.12,6.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.44,2.16 L 3.6,4.32 L 3.84,5.52 L 4.08,5.52" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15386"/><g id="g15388" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.44,2.16 L 3.6,4.32 L 3.84,5.52 L 4.08,5.52" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15390"/><g id="g15392" transform="translate(-4.8,0)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.2,0.24 L 1.68,0 L 4.8,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15394"/><g id="g15396" transform="translate(25.2,8.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,-0.96 L -0.24,-1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15398"/><g id="g15400" transform="translate(-5.04,-2.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.72 L 1.68,-0.24 L 1.92,0.24 L 0.96,0.72 L 0.96,2.16 L 0.48,2.4 L 0.72,3.36 L 0.48,3.6 L 0.48,4.32 L 0.96,4.8 L 0.72,5.04" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15402"/><g id="g15404" transform="translate(3.6,0.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.24 L 0,0.24 L 0,0.48 L -0.72,0.72 L -0.72,1.2 L -1.2,1.68 L -0.24,1.92 L 0,2.64" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15406"/><g id="g15408" transform="translate(0.24,-0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L 0,0.48 L -0.24,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15410"/><g id="g15412" transform="translate(-15.12,0)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.96,0 L 1.68,0.24 L 3.12,-0.24 L 3.36,0.48 L 4.8,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15414"/><g id="g15416" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.96,0 L 1.68,0.24 L 3.12,-0.24 L 3.36,0.48 L 4.8,-0.72 L 5.76,-1.68 L 6.48,-0.72 L 8.88,-1.92 L 9.36,-1.44 L 10.56,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15418"/><g id="g15420" transform="translate(14.88,0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,-1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15422"/><g id="g15424" transform="translate(-3.6,-0.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.24 L -0.72,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15426"/><g id="g15428" transform="translate(3.6,0)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15430"/><g id="g15432" transform="translate(7.44,10.08)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.24 L 0.24,1.2 L 0,2.4 L 0.24,2.64 L -0.24,2.64 L -0.48,2.88 L -0.24,3.12" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15434"/><g id="g15436" transform="translate(-5.28,-1.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0.24 L -0.96,-0.24 L -1.2,0 L -1.68,0 L -1.68,-0.24 L -2.16,0 L -1.68,-0.72 L -1.92,-0.96 L -1.2,-1.44 L -2.4,-2.4 L -3.12,-2.16 L -3.36,-2.64 L -4.08,-3.12 L -4.32,-1.44 L -4.32,-1.2 L -4.56,-0.72 L -4.32,0.24 L -5.04,0 L -5.04,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15438"/><g id="g15440" transform="translate(-0.96,-4.8)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.24 L 0.96,0.24 L 1.68,1.44 L 1.68,1.68 L 2.4,2.16 L 2.4,2.4 L 2.64,2.16 L 2.64,2.88 L 2.88,3.12 L 2.64,3.12 L 2.4,3.84 L 3.12,4.08 L 2.4,4.56 L 2.88,4.8 L 2.64,5.52 L 2.88,6.48 L 1.92,5.52 L 0.96,5.28 L 0.96,4.8" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15442"/><g id="g15444" transform="translate(-4.08,4.56)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L -0.48,0.48 L -0.24,0.72 L -0.72,0.72 L -0.48,0.96 L -0.72,1.2 L -0.72,1.92 L -0.48,2.16 L -0.24,2.88 L 1.44,4.32 L 1.92,4.32 L 2.4,5.28 L 2.64,5.04 L 2.88,5.28 L 2.4,5.52 L 1.44,6.48 L 1.44,7.44 L 1.2,7.68 L 1.68,8.16 L 1.44,8.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15446"/><g id="g15448" transform="translate(5.52,-3.6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24 L 0,-0.96 L 0.24,-1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15450"/><g id="g15452" transform="translate(0,-1.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.24 L -1.2,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15454"/><g id="g15456" transform="translate(-5.52,2.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,1.44 L -0.24,1.68 L 0.24,1.68 L 0,2.4 L 0,2.88" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15458"/><g id="g15460" transform="translate(2.88,-1.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.96 L -0.24,1.44 L 0.72,1.68 L 0.72,1.44 L 1.2,1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15462"/><g id="g15464" transform="translate(-1.44,12.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.92,0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15466"/><g id="g15468" transform="translate(4.32,-11.76)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,0.24 L 0.72,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15470"/><g id="g15472" transform="translate(0.48,-0.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15474"/><g id="g15476" transform="translate(-2.16,0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15478"/><g id="g15480" transform="translate(-1.2,0)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.24 L 0,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15482"/><g id="g15484" transform="translate(7.2,8.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.48 L 0.24,1.44 L 1.44,1.2 L 1.68,1.68 L 1.68,2.64 L 2.16,2.64 L 1.68,3.84 L 1.44,4.08 L 0.96,4.8 L 2.16,7.44 L 1.68,8.64 L 1.44,8.64 L 1.44,9.6 L 1.2,11.28 L 1.44,12.48 L 1.2,12.96 L 1.2,13.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15486"/><g id="g15488" transform="translate(-6.72,16.8)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0 L -0.48,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15490"/><g id="g15492" transform="translate(1.2,-11.76)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.48 C 0.785,2.797 2.051,4.931 3.6,6.96 L 3.84,7.44 L 5.04,7.44 L 5.52,8.64 L 5.76,8.64" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15494"/><g id="g15496" transform="translate(-1.2,-1.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.2,1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15498"/><g id="g15500" transform="translate(7.92,9.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.48 L -1.44,1.2 L -1.92,1.68 L -1.92,2.4 L -2.4,2.16 L -2.4,3.12 L -3.12,3.12 L -3.36,3.36 L -5.52,3.6 L -7.2,4.32 L -7.2,4.56 L -7.68,4.32 L -7.92,3.6" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15502"/><g id="g15504" transform="translate(-8.4,3.84)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15506"/><g id="g15508" transform="translate(7.44,-3.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15510"/><g id="g15512" transform="translate(1.92,31.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.72 L 2.64,2.88 L 2.88,3.6 L 2.88,4.56 L 3.84,4.08 L 4.08,4.56 L 6.24,5.04 L 7.68,6 L 8.16,6 L 8.4,7.68 L 9.12,10.08 L 9.6,13.2 L 9.6,14.4 L 9.36,15.12 L 9.6,16.32 L 10.32,18.72 L 11.28,19.2 L 11.52,20.64 L 12.48,22.32 L 12.72,23.52 L 12.48,24.96 L 13.2,24.96 L 13.2,25.92 L 13.44,26.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15514"/><g id="g15516" transform="translate(-253.68,26.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-3.12" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15518"/><g id="g15520" transform="translate(72.72,-126)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.44,0 L 1.44,-0.48 L 0.96,-0.72 L 1.2,-1.2 L 1.68,-0.96 L 1.68,-1.2 L 2.16,-1.2 L 2.4,-1.44 L 2.16,-1.44 L 2.64,-1.44 L 2.64,-1.68 L 3.36,-1.68 L 3.36,-1.44 L 4.08,-1.92 L 4.32,-1.92 L 4.8,-2.16 L 4.56,-2.88 L 5.28,-3.6 L 4.8,-4.08 L 3.84,-4.08 L 3.12,-4.56 L 2.88,-4.56 L 2.88,-5.28 L 2.4,-6.48 L 2.4,-6.72 L 1.68,-6.96 L 1.68,-7.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15522"/><g id="g15524" transform="translate(20.4,-4.8)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0.72 L -1.2,0.72 L -1.44,1.44 L -1.92,1.44 L -2.4,1.92 L -2.4,2.16 L -2.88,2.16 L -2.64,2.64 L -3.36,3.12 L -3.36,3.36" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15526"/><g id="g15528" transform="translate(16.32,-29.04)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.96 L 0,1.2 L 0.24,1.92 L 0.24,2.88 L 0.72,5.04 L 0.24,5.28 L 0.96,5.76 L 0.96,6 L 1.68,6.24 L 1.68,6.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15530"/><g id="g15532" transform="translate(31.2,15.84)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.72 L 0.24,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15534"/><g id="g15536" transform="translate(-1.68,-0.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.96,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15538"/><g id="g15540" transform="translate(1.92,-0.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,0 L 0.72,0.48 L 0.96,0.72 L 0.72,1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15542"/><g id="g15544" transform="translate(25.92,-7.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.2,0 L 0.96,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15546"/><g id="g15548" transform="translate(-7.2,4.08)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.24 L 0,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15550"/><g id="g15552" transform="translate(3.84,-3.84)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,0.24 L 1.2,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15554"/><g id="g15556" transform="translate(-2.16,0.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.48 L 0.48,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15558"/><g id="g15560" transform="translate(-1.2,2.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15562"/><g id="g15564" transform="translate(-2.88,2.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.48 L 0.48,-0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15566"/><g id="g15568" transform="translate(-0.96,3.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.96,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15570"/><g id="g15572" transform="translate(4.32,-6.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24 L 0.72,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15574"/><g id="g15576" transform="translate(-5.76,8.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15578"/><g id="g15580" transform="translate(7.68,-9.84)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.24 L 0.48,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15582"/><g id="g15584" transform="translate(-5.04,6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15586"/><g id="g15588" transform="translate(0.48,1.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15590"/><g id="g15592" transform="translate(35.52,3.84)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.48 L -1.44,-1.44 L -2.88,-1.92 L -3.6,-1.44 L -4.32,-1.68 L -6,-3.36 L -6.96,-3.84 L -7.2,-3.36 L -8.16,-3.6 L -8.16,-4.8 L -7.44,-5.28 L -8.16,-5.76 L -7.92,-6.48 L -8.16,-6.72 L -8.16,-7.2 L -8.88,-7.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15594"/><g id="g15596" transform="translate(6.96,14.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,0 L -0.96,-0.24 L -0.48,-1.2 L -1.2,-1.68 L -0.96,-2.16 L -0.48,-2.16 L -0.24,-2.88 L 0.24,-3.12 L 0.96,-4.32 L 1.44,-4.32 L 1.44,-5.76 L 2.64,-5.76 L 3.12,-6.72 L 3.84,-6.72 L 4.08,-7.44 L 4.56,-7.44 L 4.8,-8.16 L 5.28,-8.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15598"/><g id="g15600" transform="translate(-2.4,-10.08)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.48 L -1.2,-1.44 L -3.12,-2.4 L -4.56,-4.08" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15602"/><g id="g15604" transform="translate(0.96,10.56)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.44,-0.48 L 2.16,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15606"/><g id="g15608" transform="translate(-0.24,-11.04)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.48 L 0.72,1.44 L 1.2,1.44 L 1.44,1.92 L 3.36,2.16 L 3.84,2.88 L 4.32,2.88 L 4.32,2.4 L 5.04,2.16 L 5.28,3.12 L 5.76,3.36" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15610"/><g id="g15612" transform="translate(0.48,-7.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.72 L -0.48,2.16 L -1.44,3.12 L -1.92,4.08 L -1.92,4.8 L -0.96,5.52 L -0.24,7.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15614"/><g id="g15616" transform="translate(0.96,18.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15618"/><g id="g15620" transform="translate(-2.16,-10.08)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0 L 0.96,-0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15622"/><g id="g15624" transform="translate(7.68,1.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0 L 0.24,-0.48 L 0.72,-0.72 L 1.2,-0.72 L 2.16,-1.68 L 2.4,-1.44 L 3.36,-1.68 L 4.08,-0.96 L 4.8,-0.96 L 4.08,-1.68 L 4.32,-2.16 L 5.28,-2.88 L 5.52,-3.12 L 5.04,-3.6 L 5.04,-3.84" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15626"/><g id="g15628" transform="translate(-4.56,7.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,-0.48 L 1.2,-0.24 L 1.68,-0.72 L 3.6,0 L 3.84,0.24 L 4.32,0.48 L 4.56,1.68 L 4.8,1.92 L 5.28,3.36 L 6,4.8 L 7.44,4.32 L 7.2,3.84 L 7.92,3.36 L 7.68,2.88 L 7.68,2.4 L 8.64,2.16 L 8.88,2.4 L 9.84,2.16 L 10.32,2.64" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15630"/><g id="g15632" transform="translate(4.32,0.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,0.72 L -0.48,1.2 L -1.2,1.44 L -1.2,1.92 L -1.92,1.68 L -3.36,1.92 L -3.84,1.92 L -3.6,2.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15634"/><g id="g15636" transform="translate(-4.8,0.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.24 L 0.72,-0.24 L 0.96,0 L 1.44,-0.24 L 2.16,0.48 L 2.4,0 L 3.12,0 L 3.12,-0.48 L 4.08,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15638"/><g id="g15640" transform="translate(24.72,9.6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.48 L 0.24,-1.2 L 0.24,-1.44 L -0.48,-2.64 L -1.2,-3.12" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15642"/><g id="g15644" transform="translate(11.52,7.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.2,-0.72 L -2.4,-0.24 L -2.4,-0.48 L -3.6,-0.72 L -4.32,-1.68 L -4.8,-1.92 L -5.04,-1.68 L -6.96,-2.64 L -8.16,-2.16 L -8.16,-2.64 L -9.6,-3.6 L -9.6,-4.08 L -9.36,-4.32 L -9.6,-4.56 L -10.56,-5.04 L -11.04,-5.76 L -11.52,-7.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15646"/><g id="g15648" transform="translate(7.2,-2.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,0.72 L -0.48,0.96 L -1.2,1.92 L -0.96,2.16 L -0.24,2.16 L 0.72,3.12 L 1.44,3.12 L 1.92,2.88 L 1.92,3.6 L 2.4,4.08 L 2.64,5.28 L 2.16,5.52 L 2.16,6 L 1.68,6.24 L 2.16,6.72 L 2.64,8.16 L 3.12,8.4 L 2.64,8.88 L 3.12,9.84 L 2.88,10.56 L 1.44,12.48 L 1.68,12.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15650"/><g id="g15652" transform="translate(-1.2,1.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,0.48 L -1.2,0.48 L -1.44,0.96 L -2.64,2.16 L -4.32,0.48 L -5.76,0.96 L -6,0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15654"/><g id="g15656" transform="translate(-0.72,13.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.2,-0.24 L -2.16,-0.24 L -2.4,-0.72 L -3.84,-0.96 L -4.56,-0.96 L -7.68,-1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15658"/><g id="g15660" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.2,-0.24 L -2.16,-0.24 L -2.4,-0.72 L -3.84,-0.96 L -4.56,-0.96 L -7.68,-1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15662"/><g id="g15664" transform="translate(3.6,-2.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.24 L 0.72,1.2 L 0.24,2.4 L 1.68,2.88 L 2.88,4.56 L 3.84,4.8 L 3.84,5.52 L 4.08,5.52 L 4.32,5.76 L 5.76,5.76 L 5.76,7.92 L 6,8.16 L 6,8.4 L 6.24,8.4 L 6,8.4 L 7.2,8.88 L 7.2,9.6 L 6.48,9.84 L 6.24,10.32 L 6.72,11.28 L 6.96,11.28" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15666"/><g id="g15668" transform="translate(2.16,3.6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.2,0.72 L -1.68,1.44 L -3.6,0.48 L -3.6,0 L -4.08,-0.24 L -5.76,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15670"/><g id="g15672" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.2,0.72 L -1.68,1.44 L -3.6,0.48 L -3.6,0 L -4.08,-0.24 L -5.76,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15674"/><g id="g15676" transform="translate(-2.4,11.52)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24 L 0.24,-0.48 L -0.24,-0.48 L 0,-0.96 L 0.96,-1.44 L 1.44,-0.48 L 1.92,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15678"/><g id="g15680" transform="translate(-1.44,-6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0 L 0.96,0.48 L 1.44,0.24 L 1.92,0.96 L 2.4,0.96 L 2.4,0.48 L 3.12,0 L 4.56,0 L 5.04,-0.72 L 4.8,-0.96 L 5.52,-2.64 L 6.24,-3.36" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15682"/><g id="g15684" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0.96 L -0.24,1.44 L 1.2,2.88 L 0.48,3.84 L 0.72,4.08 L 0.48,4.32 L 0.96,4.32 L 0.48,4.56" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15686"/><g id="g15688" transform="translate(17.76,12.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.48 L -0.48,-0.48 L -0.96,-0.96 L -1.44,-1.2 L -1.44,0 L -1.2,0 L -0.96,0.24 L -0.96,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15690"/><g id="g15692" transform="translate(-1.92,0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L -0.72,0.24 L -1.68,0.48 L -2.88,1.2 L -4.08,0.48 L -4.32,0 L -4.08,-0.48 L -4.56,-0.96 L -5.52,-0.72 L -5.52,-0.24 L -6.48,-0.24 L -7.2,0.24 L -6.96,0.72 L -7.2,0.96 L -7.92,1.2 L -8.16,1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15694"/><g id="g15696" transform="translate(-7.2,-11.28)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.48 L 0.24,0.96 L -0.72,1.2 L -0.72,2.16 L -1.2,3.12 L -0.96,3.84 L 0.24,4.32 L 0.96,3.6 L 1.44,4.08 L 3.6,2.4 L 4.56,1.92 L 5.04,2.16 L 5.28,2.64 L 5.28,4.08 L 5.52,5.04 L 5.28,5.76 L 5.28,7.2 L 6,8.16 L 6.24,8.16 L 6.24,7.68 L 6.48,7.68 L 6.72,9.6 L 7.2,10.32 L 8.16,10.56" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15698"/><g id="g15700" transform="translate(8.16,9.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24 L 0,-0.48 L 0,-1.68 L -0.96,-2.16 L -2.16,-5.04 L -2.4,-6 L -2.16,-6.24 L -2.4,-7.2 L -2.16,-7.44 L -2.64,-7.68 L -2.16,-8.16 L -2.16,-9.6 L -1.44,-9.36 L -0.48,-9.36 L -0.24,-9.6 L 0.48,-9.6 L 0.72,-10.08 L 1.2,-10.08 L 1.44,-10.8" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15702"/><g id="g15704" transform="translate(-13.68,-3.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.48 L -0.24,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15706"/><g id="g15708" transform="translate(0.24,-2.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.72 L 0.48,0.48 L 0.48,1.2 L 1.2,1.44 L 1.44,1.2 L 1.92,1.92 L 1.68,2.16 L 1.92,3.12 L 2.4,3.12 L 2.64,3.6 L 3.36,3.36 L 3.36,4.08 L 4.08,4.08 L 3.84,4.56 L 4.08,5.04 L 5.04,6.24 L 5.04,7.2 L 5.28,7.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15710"/><g id="g15712" transform="translate(0.48,3.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24 L 0,-0.48 L -0.24,-0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15714"/><g id="g15716" transform="translate(-0.72,-1.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.24 L 0.48,0 L 0,0 z" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15718"/><g id="g15720" transform="translate(1.68,2.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15722"/><g id="g15724" transform="translate(22.8,6.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.96,0.24 L -1.68,0.48 L -2.4,-0.96 L -3.36,-1.92 L -4.32,-2.64 L -4.8,-2.4 L -5.04,-3.6 L -5.52,-3.36 L -6.24,-3.6 L -6.48,-3.12 L -7.2,-2.88 L -7.92,-2.88 L -8.64,-3.12 L -8.64,-3.6 L -9.36,-3.6 L -9.84,-4.08 L -9.84,-4.32" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15726"/><g id="g15728" transform="translate(-10.8,-3.84)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.72 L -0.96,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15730"/><g id="g15732" transform="translate(8.88,3.84)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-2.64 L 0.48,-2.88" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15734"/><g id="g15736" transform="translate(-195.36,-60.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,-0.96 L -1.92,-0.48 L -1.68,-1.2 L -1.92,-2.16 L -1.44,-2.88 L -1.68,-3.36 L -2.4,-3.6 L -3.12,-4.32 L -2.88,-5.28 L -2.4,-5.52 L -2.64,-6 L -3.36,-6 L -4.56,-6.96 L -4.8,-8.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15738"/><g id="g15740" transform="translate(-1.2,-14.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15742"/><g id="g15744" transform="translate(7.68,-5.76)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15746"/><g id="g15748" transform="translate(-1.92,1.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15750"/><g id="g15752" transform="translate(31.68,-25.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.48 L 1.68,0.96 L 2.16,1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15754"/><g id="g15756" transform="translate(0.72,0.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.96,6.72 L -2.88,8.4 L -2.88,9.6 L -3.36,10.56 L -4.32,11.04 L -4.32,11.76 L -4.8,13.44 L -4.56,14.16 L -3.84,14.4 L -3.36,15.12 L -2.16,15.84 L -2.16,16.8 L -1.92,16.8" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15758"/><g id="g15760" transform="translate(1.44,0.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,0.96 L 0.96,1.44 L 0.72,3.36 L 1.2,4.32 L 1.92,4.32 L 2.4,5.04 L 2.88,5.28 L 3.12,5.52 L 5.28,6.48 L 5.04,7.2 L 5.28,9.12" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15762"/><g id="g15764" transform="translate(45.36,5.52)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.48 L -0.24,-1.2 L 0.48,-2.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15766"/><g id="g15768" transform="translate(0.48,-2.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,-2.16 L -0.24,-2.64" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15770"/><g id="g15772" transform="translate(0,3.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15774"/><g id="g15776" transform="translate(0,-2.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15778"/><g id="g15780" transform="translate(26.64,8.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 3.12,-3.84" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15782"/><g id="g15784" transform="translate(1.92,1.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.96 L 0.24,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15786"/><g id="g15788" transform="translate(-0.72,2.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.48 L 0.24,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15790"/><g id="g15792" transform="translate(0.48,-1.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15794"/><g id="g15796" transform="translate(0,-0.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15798"/><g id="g15800" transform="translate(-1.44,-2.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,1.2 L 0.24,1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15802"/><g id="g15804" transform="translate(10.8,-0.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,1.2 L 0.72,2.16 L -3.36,4.32 L 1.44,8.16 L 1.92,9.36 L -0.96,12.48 L -4.8,6.72 L -6.24,6.48 L -6.96,6.72 L -7.2,6.48 L -7.92,7.2 L -8.4,6.96 L -8.64,6.72 L -8.64,6.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15806"/><g id="g15808" transform="translate(-9.12,3.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.24 L 0,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15810"/><g id="g15812" transform="translate(0.24,-1.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,0.24 L 1.2,0.96 L 1.2,0 L 1.68,-0.24 L 1.68,-2.88 L 1.92,-4.08 L 2.16,-4.56" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15814"/><g id="g15816" transform="translate(0.24,5.28)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-1.44 L -0.96,-1.2 L -1.2,-1.68 L -1.2,-2.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15818"/><g id="g15820" transform="translate(-0.96,-3.12)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.48 L 0.48,-0.48 L 0.24,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15822"/><g id="g15824" transform="translate(8.64,8.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 2.4,3.12" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15826"/><g id="g15828" transform="translate(2.88,-3.12)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 2.16,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15830"/><g id="g15832" transform="translate(-12.48,-1.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.96,0.24 L 0.96,1.2 L 1.2,0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15834"/><g id="g15836" transform="translate(1.2,1.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15838"/><g id="g15840" transform="translate(10.8,6.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.68,2.64 L 1.92,4.08 L 1.44,4.8" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15842"/><g id="g15844" transform="translate(2.64,-6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 5.04,-0.24 L 10.08,-0.24 L 11.04,-0.96 L 12.72,-0.24 L 13.2,-1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15846"/><g id="g15848" transform="translate(10.32,17.04)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-0.24 L -0.24,-0.48 L -0.24,-0.96 L 0.48,-1.68 L -0.24,-1.68 L -0.24,-2.4 L 0.48,-2.4 L 0.72,-2.88 L 0.72,-3.84 L 0.96,-3.6 L 2.16,-4.32 L 2.4,-4.08 L 2.64,-4.08 L 2.64,-4.56 L 2.88,-4.32 L 3.84,-4.8 L 4.08,-5.04 L 3.84,-5.28 L 4.08,-5.28 L 4.08,-5.76 L 5.04,-5.28 L 7.68,-5.52 L 8.16,-5.28 L 8.4,-5.28 L 9.12,-6 L 10.8,-6.48 L 11.04,-7.92 L 11.76,-9.12 L 12.72,-8.4 L 13.68,-10.08 L 15.12,-10.32 L 15.6,-10.8" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15850"/><g id="g15852" transform="translate(14.4,-11.52)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,-0.24 L -2.16,-1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15854"/><g id="g15856" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15858"/><g id="g15860" transform="translate(31.2,25.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,3.84 L -0.72,4.32 L -1.92,5.04 L -4.08,3.36 L -5.52,4.56 L -6,5.28 L -8.64,6.72 L -8.64,6.96 L -8.88,8.4 L -10.08,7.92 L -11.28,9.12 L -11.52,9.84 L -11.04,10.32 L -11.76,10.32 L -11.76,11.76 L -12.24,12.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15862"/><g id="g15864" transform="translate(6.24,29.76)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.24 L 0.24,-0.48 L 0.72,-0.72 L 0.96,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15866"/><g id="g15868" transform="translate(2.64,-1.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,-1.2 L 0,-1.68 L 0,-2.16 L 0.48,-2.16 L 0.72,-3.12 L 2.16,-4.08 L 2.64,-5.28 L 2.4,-5.76 L 1.68,-5.76 L 0.96,-6.48 L 1.44,-6.24 L 0.48,-6.96 L 0.72,-7.92 L 0.24,-9.12 L 0.48,-9.12 L 0.96,-8.88 L 1.2,-8.88 L 0.48,-10.32 L -0.24,-11.04 L -0.48,-11.76 L 0,-12.72 L -0.24,-13.2 L 0.48,-14.16 L 0.96,-14.4 L 1.44,-14.88 L 1.68,-15.36 L 2.16,-15.36" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15870"/><g id="g15872" transform="translate(-2.88,7.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-1.44 L 0.48,-1.68 L 0.48,-1.92 L 1.2,-1.92 L 1.92,-2.64 L 1.92,-3.36 L 1.44,-4.32 L 0.24,-5.28" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15874"/><g id="g15876" transform="translate(1.2,-6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.48 L 0.72,0 L 1.68,0 L 1.68,-1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15878"/><g id="g15880" transform="translate(13.44,7.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.24 L 1.2,-0.96 L 1.92,-0.72 L 1.68,-0.96 L 2.64,-3.36 L 2.4,-3.84 L 2.64,-4.08 L 3.36,-4.08 L 3.36,-5.76" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15882"/><g id="g15884" transform="translate(-8.4,6.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.44,-1.2 L -1.68,-2.4 L -0.96,-3.36 L -0.24,-3.12 L 0,-3.6 L 0.96,-2.88 L 1.2,-3.84 L 1.44,-4.08 L 2.16,-3.84 L 2.88,-4.8 L 3.84,-4.32 L 4.56,-4.8 L 5.04,-4.08 L 4.8,-3.84 L 5.52,-4.32 L 6,-4.32 L 6.48,-3.6" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15886"/><g id="g15888" transform="translate(7.68,-4.32)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.72 L 0,-1.68 L 0.72,-1.92" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15890"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><path style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#9a9a8d;stroke-width:0.17182583;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" d="M 330.56537,205.85222 L 331.49293,205.54304 L 332.02297,205.18968 L 332.77385,204.88049 L 333.25972,205.67555 L 334.0106,206.24975 L 334.40813,207.0448 L 334.58481,207.79569" id="path83389" transform="matrix(0.8,0,0,-0.8,-239.53743,164.34462)"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><g id="g15892" transform="translate(436.32,215.76)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.24 L 0.48,-0.48 L 0.96,-0.72 L 0.48,-0.96 L -1.2,-0.48 L -1.44,0.48 L -1.68,0.72 L -2.64,0.24 L -3.6,-0.48 L -4.8,-0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15894"/><g id="g15896" transform="translate(1.2,-0.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,0 L 1.2,0.72 L 1.68,0.24 L 2.64,0.48 L 3.12,-0.48 L 3.12,-0.96 L 3.36,-1.2 L 3.12,-1.68 L 2.64,-1.92 L 2.16,-1.68 L 1.92,-2.88 L 2.88,-3.12 L 4.08,-2.64 L 4.56,-3.36 L 5.28,-3.12 L 5.52,-3.6 L 5.76,-3.6 L 6.24,-3.84 L 6.48,-3.12 L 6.24,-2.64 L 7.92,-2.4 L 8.64,-2.16 L 8.88,-1.2 L 9.12,-0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15898"/><g id="g15900" transform="translate(-7.44,-2.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,-0.72 L 0,-1.68 L 0,-2.64 L -0.24,-3.12 L -0.48,-4.08 L -1.68,-5.52" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15902"/><g id="g15904" transform="translate(4.8,-9.12)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.96,0.48 L 1.44,0.24 L 1.2,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15906"/><g id="g15908" transform="translate(11.76,10.8)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.96,0.48 L 1.44,0 L 2.16,0.96 L 3.6,1.92 L 3.36,1.44 L 3.84,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15910"/><g id="g15912" transform="translate(3.6,1.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,0 L 0.96,0.48 L 0,1.44 L 0.24,1.68 L 0,2.16 L 0.96,3.36 L 1.92,3.12 L 2.4,3.6" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15914"/><g id="g15916" transform="translate(-224.4,-94.8)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0 L 1.68,0.96 L 1.92,1.2 L 3.6,0.96 L 5.04,1.44 L 6.24,1.44 L 6.48,1.68 L 6.24,2.16 L 6,2.16 L 6.48,2.88 L 6.24,3.36 L 6.72,4.08 L 7.44,3.6 L 9.12,3.6 L 9.84,4.32 L 11.28,4.08 L 14.64,2.88 L 14.64,3.12 L 14.16,3.36 L 14.64,3.84 L 15.36,4.08 L 14.64,5.28 L 14.4,6 L 14.64,6.48 L 14.4,7.2 L 14.88,8.16 L 14.64,8.64 L 15.12,9.84 L 15.12,11.04 L 15.36,11.28 L 15.12,11.76 L 15.6,12.24 L 14.88,13.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15918"/><g id="g15920" transform="translate(45.12,-27.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.68,3.12 L -1.44,3.84 L 0,4.08 L 0.24,5.52 L 0,5.76 L -0.24,7.2 L 0.72,9.12 L 0.24,10.56 L 0.72,12.72 L 0.48,14.88 L -0.48,17.04" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15922"/><g id="g15924" transform="translate(0,-1.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,1.2 L 0,1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15926"/><g id="g15928" transform="translate(47.28,20.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.2,-2.64 L 3.84,-18" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15930"/><g id="g15932" transform="translate(30,7.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.2,-1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15934"/><g id="g15936" transform="translate(1.2,-0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15938"/><g id="g15940" transform="translate(0,-0.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15942"/><g id="g15944" transform="translate(0.24,-0.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 3.36,0.48 L 4.32,2.16 L 4.56,3.6 L 6.48,5.04" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15946"/><g id="g15948" transform="translate(-0.24,2.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,-1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15950"/><g id="g15952" transform="translate(29.04,11.04)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,-0.96 L -3.12,-1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15954"/><g id="g15956" transform="translate(-5.04,0)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-1.2 L 1.92,-1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15958"/><g id="g15960" transform="translate(5.52,-0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.2,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15962"/><g id="g15964" transform="translate(7.2,8.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.2,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15966"/><g id="g15968" transform="translate(2.88,-4.32)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.92,-1.44 L -3.36,-0.24 L -6,-1.68 L -9.6,-2.16 L -10.56,-3.36" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15970"/><g id="g15972" transform="translate(-6.24,2.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-1.68 L 0.24,-3.84" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15974"/><g id="g15976" transform="translate(11.76,-1.44)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15978"/><g id="g15980" transform="translate(-0.72,1.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.2,0 L -1.92,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15982"/><g id="g15984" transform="translate(0.72,-1.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15986"/><g id="g15988" transform="translate(-0.72,1.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.2,0 L -1.92,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15990"/><g id="g15992" transform="translate(-10.8,-3.6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -2.4,-2.64 L -4.08,-2.64" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15994"/><g id="g15996" transform="translate(2.4,5.52)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,0" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path15998"/><g id="g16000" transform="translate(13.2,-3.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.44,0.24 L -3.12,0.96 L -4.08,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16002"/><g id="g16004" transform="translate(-4.56,0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.24 L -0.24,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16006"/><g id="g16008" transform="translate(4.56,-0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.44,0.24 L -3.12,0.96 L -4.08,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16010"/><g id="g16012" transform="translate(-4.56,0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.24 L -0.24,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16014"/><g id="g16016" transform="translate(8.88,-7.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.68,1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16018"/><g id="g16020" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.68,1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16022"/><g id="g16024" transform="translate(7.44,8.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.96,0.72 L 1.44,1.92" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16026"/><g id="g16028" transform="translate(2.88,5.52)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,1.68 L 1.2,3.12 L 1.68,3.12 L 3.84,0.96" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16030"/><g id="g16032" transform="translate(1.2,0)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.24 L 0.48,0 L 1.2,-0.96 L 1.68,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16034"/><g id="g16036" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.24 L 0.48,0 L 1.2,-0.96 L 1.68,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16038"/><g id="g16040" transform="translate(15.84,10.56)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.44,1.68 L -1.2,2.16 L -2.16,3.36 L -1.92,4.32 L -1.68,4.56 L -1.92,5.04 L -1.92,5.52 L -1.2,6.72 L -0.24,7.68 L -0.96,8.16 L -0.72,8.4 L -1.44,8.88 L -1.2,9.12 L -1.92,9.12 L -2.4,8.4 L -2.88,8.16 L -3.36,8.88 L -5.76,10.56 L -6,10.08 L -6.96,10.08 L -8.4,9.36 L -9.84,9.36 L -11.76,10.08 L -13.92,10.08 L -14.16,10.8" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16042"/><g id="g16044" transform="translate(-4.56,18.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -1.2,-1.44 L -1.2,-2.4 L -2.64,-3.36 L -4.8,-6.24 L -9.36,-8.88" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16046"/><g id="g16048" transform="translate(1.44,4.32)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0 L 0.24,-0.48 L -1.2,-4.32 L -1.44,-4.32" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16050"/><g id="g16052" transform="translate(13.92,4.08)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.72 L 0.48,-1.92 L 1.68,-3.12 L 2.64,-2.64 L 3.12,-2.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16054"/><g id="g16056" transform="translate(-0.96,14.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,-0.48 L 0.72,-1.44 L 1.92,-3.36 L 1.68,-5.28 L 2.64,-6.48 L 2.88,-7.92 L 3.36,-8.16 L 2.16,-11.76 L 0.96,-11.76 L 0.48,-12.24 L 0.48,-13.2 L 0.96,-14.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16058"/><g id="g16060" transform="translate(4.08,-16.32)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.48 L 1.92,-0.96 L 3.12,-0.96 L 4.08,0 L 4.8,-0.48 L 6,-0.48 L 6.72,-0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16062"/><g id="g16064" transform="translate(6.24,36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-1.2 L 0.96,-1.44 L 1.2,-2.16 L 2.16,-2.4 L 2.16,-2.88 L 3.12,-3.6 L 4.56,-2.64 L 4.08,-2.16 L 5.52,-1.44 L 6,-0.96 L 6.96,-0.96 L 6.96,-0.48 L 8.64,0.48 L 8.64,0.96 L 9.84,1.68 L 10.08,2.64 L 11.04,2.64 L 11.52,3.84 L 12.24,4.08 L 11.76,4.32 L 12,5.04 L 12.72,5.76 L 12.48,5.76 L 12.72,6.24 L 12.48,6.72 L 13.2,6.96 L 13.68,7.92 L 14.16,7.92 L 14.64,7.68 L 15.6,8.64" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16066"/><g id="g16068" transform="translate(2.16,4.8)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.48 L 1.68,0.96 L 1.68,1.44 L 2.16,1.68 L 2.16,1.92 L 4.08,2.4 L 4.32,2.64 L 4.08,3.6 L 4.32,4.08 L 5.28,4.32 L 5.76,4.08 L 6.48,4.56 L 7.68,5.52 L 7.68,6" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16070"/><g id="g16072" transform="translate(23.76,12.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,0.24 L 0,1.92 L -0.48,2.4 L -0.96,1.92 L -1.44,1.92 L -1.68,0.96 L -2.88,0.48 L -3.12,0 L -3.36,0 L -4.32,0.48 L -4.8,1.92 L -5.04,1.92 L -5.28,1.44 L -5.76,1.68 L -4.56,2.4 L -4.32,2.16 L -3.84,3.36 L -4.32,3.12 L -4.56,3.36 L -4.08,3.84 L -3.36,3.6 L -2.64,4.08 L -2.4,4.8 L -2.64,5.04 L -3.12,5.04 L -3.12,5.52 L -1.92,5.76 L -1.68,5.52 L 0.24,5.04 L 0.72,5.52" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16074"/><g id="g16076" transform="translate(-10.32,-8.64)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0 L 0.24,0.48 L 0.72,0.48 L 0.96,0.72 L 0.96,1.92 L 2.16,2.16 L 1.92,2.88 L 2.4,3.36 L 2.4,3.84 L 3.6,4.8 L 3.36,5.76" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16078"/><g id="g16080" transform="translate(3.36,5.52)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0,0.48 L 0.72,0.48 L 1.2,1.2 L 0.96,1.68 L 1.2,1.92 L 1.2,3.12 L 1.68,3.36 L 0.48,4.32 L -0.96,4.08 L -2.4,4.8 L -3.12,5.52 L -3.6,5.28 L -3.6,6.72 L -3.84,7.2 L -3.36,7.68 L -2.64,7.68 L -1.68,6.96 L -0.72,7.2 L -0.24,6.48 L 0,6.72 L 0.48,6.72 L 0.48,6.96 L 1.2,7.44 L 1.2,8.16 L 1.68,8.88 L 1.92,8.88 L 2.16,9.6 L 2.16,10.08" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16082"/><g id="g16084" transform="translate(-3.36,11.52)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-1.68 L 1.2,-2.88 L 1.92,-3.36 L 2.16,-4.08 L 2.64,-4.32" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16086"/><g id="g16088" transform="translate(-5.76,-14.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.24 L 0.24,0.48 L 1.2,0 L 1.92,1.44 L 1.68,1.68 L 3.6,2.16 L 3.36,2.64 L 2.88,2.64 L 2.64,2.88 L 3.36,2.88 L 3.84,3.6 L 3.84,3.84 L 3.36,4.08 L 3.36,4.56 L 4.8,5.76 L 5.52,7.44 L 5.28,7.92 L 5.76,8.64" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16090"/><g id="g16092" transform="translate(16.8,12)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,1.44 L 1.2,4.08 L 1.68,5.28 L 1.92,6.72 L 2.4,7.68 L 2.88,7.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16094"/><g id="g16096" transform="translate(-11.28,18)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.48 L 0.72,1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16098"/><g id="g16100" transform="translate(13.2,-0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.96,-1.44 L 1.44,-1.92 L 1.92,-1.44 L 2.4,-1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16102"/><g id="g16104" transform="translate(-7.44,-15.6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.48 L -0.24,1.44 L 0.48,2.16 L 0.96,4.32 L 0.72,4.8 L 1.2,5.04 L 1.2,6 L 1.44,6.24 L 0.96,6.24 L 1.2,6.72 L 1.2,6.96 L 0.48,6.72 L -0.24,7.2 L -0.96,6.96 L -0.96,6.24 L -1.44,6 L -2.88,6.24 L -3.6,5.28 L -3.36,4.56 L -4.08,3.36 L -4.32,2.4 L -5.04,2.64 L -5.52,1.68 L -5.52,1.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16106"/><g id="g16108" transform="translate(-2.16,6.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.96 L 0.24,1.92 L 0,1.92 L 0.24,2.16 L 0.24,2.88 L 0,3.36 L -0.72,3.6 L -1.2,5.04 L -2.16,5.52 L -1.92,7.2 L -2.4,8.4 L -2.88,8.4 L -2.64,8.64 L -3.36,9.36 L -3.36,10.08 L -3.6,10.32" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16110"/><g id="g16112" transform="translate(-2.88,11.52)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0 L 0,0 L 0.72,1.2 L 0,1.92 L -0.48,3.36 L 0.24,3.84 L 0.24,4.32 L 0.72,4.08 L 0.96,3.36 L 1.44,3.36 L 1.2,4.56 L 1.44,4.56 L 2.16,4.8 L 2.4,4.32 L 3.36,3.6 L 3.6,3.84 L 3.36,4.8 L 3.84,5.76 L 3.84,6.24 L 4.56,6.96 L 5.76,6.72 L 5.52,6.48 L 6.48,5.04 L 7.2,5.04 L 8.4,5.76 L 8.4,5.28 L 8.16,4.8 L 7.44,4.32 L 7.44,2.64 L 9.12,-0.24 L 9.12,-1.2 L 10.32,-1.68 L 11.28,-1.44 L 11.76,-1.92 L 12.48,-2.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16114"/><g id="g16116" transform="translate(4.56,6.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.24 L -1.2,0.72 L -0.96,0.96 L -0.96,1.2 L -0.24,1.44 L -0.48,1.68 L 0,2.16 L 0.48,2.4 L 1.2,2.16 L 2.88,2.64 L 2.88,2.88 L 2.4,3.12 L 2.88,4.08 L 5.76,3.84 L 7.68,3.36 L 7.92,3.6 L 8.16,3.12 L 7.92,3.12 L 8.16,2.88 L 9.12,3.36 L 9.36,3.12 L 9.12,2.64 L 10.08,1.92 L 9.84,1.44 L 10.56,1.2 L 11.28,0.48 L 11.04,0 L 11.52,-0.48 L 12,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16118"/><g id="g16120" transform="translate(-272.4,-150.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.68,3.36 L 7.68,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16122"/><g id="g16124" transform="translate(1.2,10.56)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 9.12,-4.56" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16126"/><g id="g16128" transform="translate(6.48,-10.08)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 4.08,-1.92 L 8.16,7.2 L 12,8.16 L 12.72,7.92 L 13.92,8.4 L 15.36,7.44 L 16.08,8.16 L 16.8,7.92 L 18.96,7.44 L 19.44,7.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16130"/><g id="g16132" transform="translate(13.44,-9.84)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.96,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16134"/><g id="g16136" transform="translate(0.96,0.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -8.4,12" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16138"/><g id="g16140" transform="translate(-11.76,15.12)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 4.08,-1.92" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16142"/><g id="g16144" transform="translate(11.76,-15.6)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.24 L 0,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16146"/><g id="g16148" transform="translate(21.12,-26.16)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.96,0.48 L -1.44,1.44 L -2.64,1.44 L -3.36,2.4 L -3.36,3.12 L -4.32,3.84 L -4.8,4.08 L -4.56,5.52 L -7.92,9.12" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16150"/><g id="g16152" transform="translate(18.24,0.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 9.84,4.8" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16154"/><g id="g16156" transform="translate(-4.32,-2.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 4.32,2.88" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16158"/><g id="g16160" transform="translate(32.16,9.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -2.64,-1.44 L -5.28,0.72 L -10.56,2.16 L -12,5.28 L -14.88,6.48 L -15.84,6.24 L -16.32,6.72 L -16.56,7.44 L -17.04,7.68 L -17.04,8.4" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16162"/><g id="g16164" transform="translate(-18,-1.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 7.44,3.84" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16166"/><g id="g16168" transform="translate(36.24,-3.12)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,0.48 L -14.64,6.72 L -18.24,4.8" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16170"/><g id="g16172" transform="translate(-15.36,-6.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.96,1.44 L -0.72,3.12 L -0.48,3.84 L -2.16,6 L -2.16,7.92 L -2.88,11.76" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16174"/><g id="g16176" transform="translate(31.2,22.32)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,-1.44 L 1.68,-9.36" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16178"/><g id="g16180" transform="translate(2.4,-19.2)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -2.64,-0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16182"/><g id="g16184" transform="translate(-6.24,-0.96)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -12,4.8" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16186"/><g id="g16188" transform="translate(5.52,10.8)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.68,-9.6" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16190"/><g id="g16192" transform="translate(0.48,-1.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 11.04,2.4 L 17.52,3.84 L 22.08,5.28 L 22.56,6.24 L 22.8,6 L 22.8,5.28 L 28.8,7.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16194"/><g id="g16196" transform="translate(33.84,12.48)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L -0.24,-2.4 L -1.92,-3.36 L -1.92,-5.04 L -3.36,-5.76 L -5.04,-5.28" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16198"/><g id="g16200" transform="translate(1.68,1.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,-1.68 L -1.68,-1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16202"/><g id="g16204" transform="translate(60.72,32.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -9.6,-5.28 L -12.24,-3.12 L -14.88,-3.12 L -15.6,-2.4 L -16.08,-2.4 L -17.04,-2.16 L -17.52,-1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16206"/><g id="g16208" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -9.6,-5.28 L -12.24,-3.12 L -14.88,-3.12 L -15.6,-2.4 L -16.08,-2.4 L -17.04,-2.16 L -17.52,-1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16210"/><g id="g16212" transform="translate(-15.6,-2.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16214"/><g id="g16216" transform="translate(15.6,3.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,1.44 L -1.68,4.08 L -2.4,4.32 L -1.2,6 L -1.68,6.24 L -2.16,5.76 L -2.16,6.24 L -3.6,7.68 L -3.36,8.4 L -3.12,8.4 L -3.12,8.16 L -2.4,8.16 L -2.4,9.36" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16218"/><g id="g16220" transform="translate(6.48,-8.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -3.36,7.44 L -6.48,8.4 L -6.48,7.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16222"/><g id="g16224" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -3.36,7.44 L -6.48,8.4 L -6.48,7.44" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16226"/><g id="g16228" transform="translate(24.72,50.88)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.48,-0.96 L -1.2,-0.96 L -1.92,-2.16 L -2.4,-2.88 L -2.64,-2.88 L -2.64,-3.12 L -2.88,-3.12 L -3.12,-3.36 L -1.92,-4.08 L -2.88,-5.52 L -2.16,-6.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16230"/><g id="g16232" transform="translate(-0.72,4.32)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.2,-0.24 L 1.2,-0.72 L 1.68,-0.96 L 2.16,-0.72 L 1.92,-2.16 L 1.44,-2.4 L 0.96,-2.16 L 0.72,-2.64 L 0.48,-3.84 L 0.72,-4.32" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16234"/><g id="g16236" transform="translate(38.64,52.8)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.72,0 L -1.92,0.48 L -3.6,0.24 L -4.8,0.72 L -5.28,0.48 L -5.76,0.72 L -6,1.2 L -6.48,0.48 L -7.2,0.96 L -7.2,0.72 L -8.16,0.24 L -8.88,0.72 L -8.88,1.2 L -10.08,1.44 L -10.32,1.44 L -10.56,0.72 L -11.76,-0.24 L -12.24,-0.24 L -12.96,0.24 L -13.2,0.24 L -13.2,0.48 L -12.72,0.72 L -12.96,1.2 L -13.2,1.2" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16238"/><g id="g16240" transform="translate(-9.6,14.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.24 L 0.48,0 L 0.24,-0.48 L 1.92,-1.2 L 1.92,-2.16 L 2.64,-2.4 L 2.16,-2.64 L 2.4,-2.88 L 2.16,-3.12 L 2.64,-3.36 L 2.4,-4.08 L 3.6,-5.28 L 6,-5.28 L 6.24,-5.04 L 5.52,-4.8 L 6.96,-4.32 L 6.48,-3.6 L 5.76,-3.6 L 5.04,-2.64 L 4.32,-2.64 L 4.56,-2.4 L 4.32,-1.92 L 4.8,-1.68 L 4.56,-1.44 L 7.44,-1.68 L 8.4,-1.44 L 10.56,-1.68 L 13.92,-2.16 L 14.16,-2.4 L 13.68,-2.4 L 13.44,-2.88 L 13.2,-3.12 L 13.44,-3.84 L 14.16,-3.84" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16242"/><g id="g16244" transform="translate(1.44,7.92)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.68,-1.44 L 3.84,-2.88 L 3.12,-4.08 L 3.12,-5.04 L 2.64,-5.52 L 4.08,-5.28 L 6,-6 L 6.48,-6.48 L 6.24,-6.96 L 7.2,-7.2 L 9.36,-7.44 L 9.6,-7.44 L 9.36,-7.92 L 10.08,-8.16 L 10.08,-8.4 L 10.32,-8.64 L 9.36,-9.12 L 9.84,-9.6" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16246"/><g id="g16248" transform="translate(21.36,12.72)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0 L -0.24,0.96 L -0.48,1.92 L -1.44,1.68 L -0.96,2.4 L -1.44,3.6 L -1.2,3.6" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16250"/><g id="g16252" transform="translate(-19.68,-2.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0 L 0.72,-0.96 L 1.92,-1.2 L 1.92,-0.72 L 3.12,-0.48 L 3.84,-1.44 L 4.32,-0.96 L 3.6,0.48 L 3.36,1.92 L 3.84,2.4 L 3.6,3.36 L 3.84,3.36 L 4.08,2.64 L 4.8,2.64 L 5.04,3.12 L 5.52,3.12 L 5.76,2.88 L 6.72,3.36 L 7.2,3.12 L 7.68,3.84 L 7.92,5.28 L 8.4,5.28 L 8.4,5.04 L 9.12,4.32 L 10.08,4.56 L 11.28,3.6 L 12,6.48 L 13.2,6.48" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16254"/><g id="g16256" transform="translate(14.16,10.56)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.24 L 1.68,0.48 L 1.44,1.44 L 1.92,2.4 L 1.44,2.64 L 1.2,2.16 L 0.48,2.16 L 0,2.64 L -2.4,1.68 L -2.64,1.92 L -3.36,2.16 L -3.36,2.64 L -2.88,2.88 L -3.12,3.36 L -3.12,4.32 L -4.32,5.04 L -3.6,6.48 L -2.88,7.2 L -4.32,8.16 L -3.6,8.88 L -4.32,9.36 L -3.12,10.32 L -4.32,11.04 L -4.32,11.52 L -4.08,11.52 L -3.84,12 L -4.56,12.72 L -4.32,13.2 L -4.8,13.68 L -5.52,13.44 L -5.76,14.16" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16258"/><g id="g16260" transform="translate(4.32,-4.56)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.24,0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16262"/><g id="g16264" transform="translate(-7.2,8.4)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.92,1.68 L 2.88,1.92 L 2.64,2.4 L 2.16,2.4 L 2.64,2.64 L 2.64,2.88 L 3.12,3.12 L 4.56,2.4 L 4.56,2.64 L 6.24,3.6 L 6.48,4.32 L 6.24,4.56 L 6.96,5.52 L 6.24,6 L 5.76,6.96 L 6.96,8.88 L 7.44,8.64 L 7.44,8.4 L 7.92,7.92 L 7.92,8.88 L 8.16,9.12 L 8.64,9.12 L 8.88,10.08 L 9.6,10.32" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16266"/><g id="g16268" transform="translate(8.4,-6.24)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,-0.24" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16270"/><g id="g16272" transform="translate(-6,1.68)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L -0.24,0.72 L 0.72,0.72 L 1.44,-0.48 L 1.44,-0.96 L 2.88,-1.68 L 3.12,-1.68 L 3.12,-1.2 L 3.6,-2.64 L 5.04,-3.6 L 5.52,-3.36 L 5.04,-2.88 L 5.04,-2.64 L 5.76,-2.16 L 6,-1.68" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16274"/><g id="g16276" transform="translate(-0.48,-3.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.48,0.72 L 0.96,0.48 L 1.2,0.72" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16278"/><g id="g16280" transform="translate(0.48,3.12)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.72,-0.72 L 0.72,-1.44 L 0.48,-1.68 L 0.72,-2.4" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16282"/><g id="g16284" transform="translate(-321.84,-165.36)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 1.44,1.68 L 7.68,-1.92 L 14.16,-5.52 L 16.32,-0.48 L 16.56,0 L 18.96,0.48 L 21.12,0 L 23.76,5.28" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16286"/><g id="g16288" transform="translate(35.52,-21.12)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 0.96,2.88 L 5.28,18.72 L 9.36,17.04" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16290"/><g id="g16292" transform="translate(10.8,16.56)" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657"><path d="M 0,0 L 12.72,-16.56" style="fill:none;stroke:#9a9a8d;stroke-width:0.13746066;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.6268657" id="path16294"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g> |
<rect style="opacity:0.69999999999999996;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.40000000000000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:110.99999176000000000;stroke-opacity:1" id="rect67781" width="559.73169" height="435.39526" x="-42.00436" y="-440.7294" transform="scale(1,-1)"/><g style="stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="g23592" transform="matrix(2.9099234,0,0,2.9099234,-570.25761,-358.19184)"><path d="M 481.52687,272.16 L 481.76687,271.92 L 480.56687,271.68 L 481.52687,272.16 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14174"/><g id="g14176" transform="translate(484.40687,279.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,0.48 L 1.44,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14178"/><g id="g14180" transform="translate(1.68,0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0.96,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14182"/></g></g><path d="M 314.72687,282.72 L 314.48687,283.2 L 314.24687,284.4 L 313.52687,284.4 L 313.28687,284.88 L 312.32687,284.4 L 312.08687,284.4 L 312.08687,284.16 L 311.84687,284.4 L 311.60687,284.16 L 311.60687,284.4 L 311.36687,284.16 L 311.36687,283.92 L 311.60687,284.16 L 311.60687,283.92 L 312.08687,283.2 L 312.08687,283.44 L 312.08687,282.96 L 312.56687,282.48 L 312.56687,282.96 L 313.04687,282.72 L 313.28687,282.72 L 313.28687,282.24 L 313.52687,282.48 L 313.52687,282 L 313.76687,281.76 L 313.76687,282.24 L 314.24687,282.48 L 314.00687,282.24 L 314.00687,282 L 314.72687,282.72 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2804"/><g id="g2806" transform="translate(314.96687,284.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L -0.48,0 L -0.24,-0.96 L -0.48,-0.96 L -0.24,-1.2 L -0.48,-1.2 L -0.24,-1.44" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2808"/><g id="g2810" transform="translate(-3.84,-2.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.24,-0.48 L 0.48,0 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2812"/><g id="g2814" transform="translate(3.84,3.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0,0 L -0.24,-0.24 L 0,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2816"/><g id="g2818" transform="translate(-0.24,-2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.48,-0.96 L -0.24,-0.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2820"/></g></g></g></g><path d="M 323.12687,288 L 323.12687,287.52 L 322.88687,288" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3816"/><g id="g3818" transform="translate(321.68687,288)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L 0,-0.24 L -0.24,-0.48 L 0,-0.72 L 0,-1.2 L 1.44,-2.16 L 1.92,-2.64 L 2.4,-2.4 L 2.88,-2.64 L 3.12,-2.4 L 2.88,-2.64 L 3.12,-3.12" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3820"/><g id="g3822" transform="translate(-0.96,-2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.72,0.96 L -0.48,1.2 L -0.72,1.68 L -0.48,1.68 L -0.72,1.92 L -0.96,2.88" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3824"/><g id="g3826" transform="translate(-2.4,2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L -0.96,-0.48 L -0.48,-0.96 L 0,-1.2 L 0,-1.44 L -1.2,-0.96 L -1.68,-1.2 L -0.96,-1.44 L -1.44,-1.68 L -0.96,-1.92 L -0.72,-1.92 L -0.48,-2.16 L -0.24,-1.68 L -0.48,-2.16 L 0,-2.16 L 0.24,-1.92 L 0,-2.4 L 0.48,-2.4 L 1.44,-2.88" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3828"/><g id="g3830" transform="translate(-2.16,-2.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3832"/><g id="g3834" transform="translate(14.16,-1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.48 L -0.96,0.24 L -1.2,0 L -1.68,0.48 L -1.92,0 L -1.68,0.48 L -1.2,0.24 L -0.48,0.96 L -0.48,2.16 L -0.96,2.88 L -0.96,3.12 L -1.2,3.12 L -0.96,2.88 L -1.2,2.64 L -1.92,3.12 L -1.68,3.36 L -1.2,3.36 L -1.2,3.6" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3836"/><g id="g3838" transform="translate(-0.96,3.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.72 L 0.48,-0.72 L 0.72,-1.68 L 0.96,-1.68 L 0.72,-2.16 L 1.68,-2.16 L 1.2,-2.64 L 0.72,-2.64 L 0.96,-3.36 L 0.96,-2.88 L 2.16,-2.64 L 2.64,-2.64 L 2.64,-3.12 L 2.16,-2.88 L 1.2,-3.12 L 1.2,-3.84" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3840"/><g id="g3842" transform="translate(8.4,-4.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,1.2 L -0.72,2.16 L -1.68,2.64 L -1.92,3.6 L -2.4,3.6 L -2.88,4.32" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3844"/><g id="g3846" transform="translate(-2.64,4.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.72 L 0.72,-0.72 L 0.96,-1.44 L 1.92,-2.16 L 2.16,-2.4 L 2.4,-2.4 L 3.36,-1.68 L 3.12,-2.16 L 2.16,-2.64 L 2.64,-3.12 L 2.64,-4.32 L 2.88,-4.32" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3848"/><g id="g3850" transform="translate(-0.96,-3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L 0,0.24 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3852"/></g></g></g></g></g></g></g></g></g><path d="M 383.36687,264 L 382.64687,264.48 L 382.64687,266.16 L 381.92687,267.12 L 382.16687,266.88 L 382.64687,267.36 L 382.40687,266.88 L 382.64687,266.4 L 382.88687,265.44 L 382.64687,264.72 L 382.88687,264.24 L 383.84687,264 L 384.32687,264.48 L 384.80687,264.48 L 384.80687,265.2 L 384.80687,264.48 L 385.28687,264.72 L 386.00687,264.48 L 386.00687,264.96 L 386.24687,264.96 L 386.00687,264.48 L 386.72687,264.24 L 386.24687,264.24 L 385.52687,264.72 L 384.80687,264.24 L 384.32687,264.48 L 383.60687,264 L 383.36687,264 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8826"/><g id="g8828" transform="translate(398.00687,263.76)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.24 L -1.44,-0.48 L -1.92,1.2 L -1.2,1.2 L -0.48,1.68 L -0.48,1.2 L 0,0.72 L 0,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8830"/><g id="g8832" transform="translate(-6.48,9.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.48 L 0,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8834"/><g id="g8836" transform="translate(4.08,4.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,-0.48 L 0.24,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8838"/><g id="g8840" transform="translate(0.96,-16.8)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0.48,0.24 L 0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8842"/></g></g></g></g><path d="M 381.92687,283.44 L 381.68687,283.44 L 381.92687,283.92 L 381.44687,283.92 L 381.68687,284.16 L 381.92687,284.16 L 381.92687,284.4 L 381.68687,284.4 L 382.16687,284.64 L 381.92687,284.88 L 382.88687,284.64 L 383.60687,285.12 L 385.28687,285.12 L 386.24687,284.64 L 386.72687,285.12 L 387.20687,285.12 L 388.16687,285.36 L 387.44687,284.88 L 388.16687,284.4 L 389.60687,285.36 L 389.84687,285.6 L 389.60687,285.84 L 390.32687,285.84 L 389.84687,285.36 L 390.08687,285.12 L 391.28687,285.12 L 389.60687,285.12 L 389.12687,284.16 L 389.36687,284.88 L 388.16687,284.4 L 387.44687,284.88 L 387.20687,284.64 L 387.20687,284.88 L 386.72687,284.88 L 386.24687,284.64 L 385.28687,285.12 L 384.80687,285.12 L 382.40687,284.64 L 382.16687,283.92 L 382.40687,283.92 L 382.40687,283.68 L 382.16687,283.68 L 382.40687,283.2 L 382.40687,283.44 L 382.40687,282.96 L 382.88687,282.96 L 383.36687,282.72 L 383.36687,283.2 L 383.60687,283.2 L 383.60687,282.96 L 383.84687,283.2 L 383.84687,283.68 L 384.80687,283.44 L 384.80687,283.68 L 385.52687,282.96 L 385.04687,283.44 L 384.80687,283.44 L 384.80687,283.68 L 384.80687,283.44 L 383.84687,283.44 L 384.32687,282.72 L 384.08687,282.48 L 384.08687,282.72 L 383.84687,283.2 L 383.84687,282.72 L 383.12687,282.48 L 382.88687,282.24 L 382.64687,282.24 L 382.88687,282 L 382.40687,281.76 L 382.64687,282.24 L 382.88687,282.48 L 382.64687,282.48 L 382.88687,282.48 L 382.40687,282.48 L 382.40687,282.72 L 382.16687,282.48 L 382.16687,282.72 L 381.68687,282.48 L 381.68687,282.72 L 381.92687,282.72 L 381.92687,283.2 L 382.16687,282.72 L 382.40687,282.72 L 381.92687,283.44 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8882"/><g id="g8884" transform="translate(396.08687,288)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.48 L 0,-1.44 L -0.48,-2.4 L -0.72,-2.4 L -0.72,-0.72 L -0.96,-0.48 L -1.2,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8886"/><g id="g8888" transform="translate(-0.24,-8.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L 0.24,0.72 L 1.2,0.48 L 2.16,-0.24 L 2.88,0 L 2.88,-0.72 L 3.12,-0.72 L 0.96,-0.24 L 0.48,-0.24 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8890"/><g id="g8892" transform="translate(-1.92,7.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.96,0.72 L 0.48,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8894"/></g></g></g><path d="M 399.92687,245.52 L 398.72687,244.8 L 398.24687,244.08 L 397.52687,243.84 L 397.76687,244.8 L 397.52687,245.04 L 397.04687,244.8 L 396.08687,245.28 L 395.84687,246.96 L 395.12687,246.96 L 394.64687,246.72 L 394.64687,246.48 L 393.68687,246 L 394.16687,246.72 L 393.92687,247.44 L 394.40687,246.48 L 394.64687,246.96 L 395.60687,247.44 L 395.84687,247.68 L 396.08687,245.76 L 396.56687,245.28 L 397.52687,245.28 L 397.76687,245.76 L 397.52687,245.28 L 397.76687,244.8 L 399.44687,246.48 L 399.92687,246 L 399.68687,245.52 L 399.92687,245.76 L 399.92687,245.52 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11330"/><g id="g11332" transform="translate(402.32687,238.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.96,0.48 L -0.96,0.72 L -0.48,1.2 L 0.24,1.44 L 1.68,0.96 L 1.2,0.96 L 1.2,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11334"/><g id="g11336" transform="translate(-2.16,-0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L 0.24,0.96 L 0.72,0.96 L 0.72,0.72 L 0.96,0.72 L 0.48,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11338"/><g id="g11340" transform="translate(18.96,8.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0.72,0.24 L 0.24,-0.24 L 0,-1.44 L -0.24,-0.96 L -0.72,-0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11342"/><g id="g11344" transform="translate(-16.08,5.28)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.72 L 0.48,0.24 L 0.48,0.48 L 0.48,0 L 0.96,-0.24 L 0,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11346"/><g id="g11348" transform="translate(-4.8,-1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.48,0 L -0.24,0.72 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11350"/><g id="g11352" transform="translate(8.64,-9.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.48 L 0.72,0.24 L 0,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11354"/><g id="g11356" transform="translate(-2.4,11.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.24,-0.24 L -0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11358"/><g id="g11360" transform="translate(1.68,-15.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.48,-0.24 L 0,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11362"/><g id="g11364" transform="translate(0.48,11.28)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.48 L 0.24,0.24 L 0.24,-0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11366"/></g></g></g></g></g></g></g></g></g><path d="M 402.80687,262.32 L 403.04687,262.56 L 403.04687,262.32 L 403.52687,262.08 L 403.76687,262.32 L 403.28687,262.8 L 403.52687,262.8 L 403.04687,262.8 L 403.28687,263.04 L 403.52687,263.04 L 404.00687,262.08 L 404.48687,261.6 L 404.48687,261.36 L 403.76687,261.12 L 403.52687,261.84 L 403.28687,262.08 L 402.80687,261.84 L 402.80687,262.32 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11450"/><g id="g11452" transform="translate(403.76687,264)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0.48,-0.24 L 0.96,-0.24 L 1.68,0.24 L 1.92,0 L 1.68,-0.24 L 0.72,-0.24 L 0.24,-0.72 L 0,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11454"/><g id="g11456" transform="translate(-3.6,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.48 L 0.96,1.44 L 0.72,1.44 L 0.96,1.68 L 1.44,0.72 L 0.72,0.48 L 0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11458"/><g id="g11460" transform="translate(24.72,-12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 2.16,0 L 2.16,-0.24 L 0.72,-0.24 L 0.24,-0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11462"/><g id="g11464" transform="translate(-22.8,23.76)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.72 L 0.24,0.48 L 0.72,0.48 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11466"/><g id="g11468" transform="translate(-3.36,-16.56)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.48 L -0.24,0.72 L 0,0.48 L 0.24,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11470"/><g id="g11472" transform="translate(4.32,13.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.48 L 0.24,-0.24 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11474"/><g id="g11476" transform="translate(10.32,2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.48 L 0.24,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11478"/><g id="g11480" transform="translate(4.32,-14.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.48,-0.24 L -0.48,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11482"/><g id="g11484" transform="translate(-19.68,3.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11486"/></g></g></g></g></g></g></g></g></g><path d="M 440.96687,205.44 L 440.24687,205.2 L 439.52687,205.2 L 440.96687,205.44 L 440.96687,205.68 L 440.48687,205.44 L 440.96687,205.68 L 440.72687,205.92 L 441.44687,205.68 L 440.96687,205.68 L 440.96687,205.44 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13002"/><g id="g13004" transform="translate(436.64687,215.76)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,1.2 L 1.44,1.68 L 1.68,1.92 L 1.92,1.44 L 1.2,1.44 L 0.72,1.2 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13006"/><g id="g13008" transform="translate(-23.04,-4.56)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0,-0.48 L 0.24,-0.96 L -0.48,-0.48 L -0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13010"/><g id="g13012" transform="translate(21.6,3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.96,0.48 L 1.44,0.96 L 1.2,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13014"/><g id="g13016" transform="translate(-2.16,5.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L -0.24,-0.24 L -0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13018"/><g id="g13020" transform="translate(-18.24,-12.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0.48,0.24 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13022"/></g></g></g></g></g><path d="M 453.44687,239.52 L 452.72687,239.52 L 452.72687,240 L 453.20687,240 L 452.96687,240.24 L 452.96687,241.2 L 453.68687,241.68 L 453.44687,241.44 L 454.16687,240.72 L 453.92687,240.24 L 453.44687,240.48 L 453.20687,239.52 L 453.44687,239.52 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13228"/><g id="g13230" transform="translate(452.96687,229.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.48,0.24 L 0.48,1.44 L 0.48,1.2 L 0.48,1.44 L 0.96,0.96 L 0.48,0.96 L 0.48,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13232"/><g id="g13234" transform="translate(1.44,2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.72,0.72 L -1.68,1.44 L -1.44,1.68 L -0.72,1.44 L -0.72,0.96 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13236"/><g id="g13238" transform="translate(-5.52,12.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L -0.72,-0.24 L -0.48,0.24 L -0.72,0.48 L -0.24,0.48 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13240"/><g id="g13242" transform="translate(-5.04,-1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.72 L 0.48,0.72 L 0.24,0.48 L 0.48,0.24 L 0.48,-0.24 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13244"/><g id="g13246" transform="translate(4.56,-20.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.24 L -0.24,0.72 L 0.72,1.2 L 0.48,0.48 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13248"/><g id="g13250" transform="translate(-12.96,21.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.48 L 0,-0.96 L -0.24,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13252"/><g id="g13254" transform="translate(18.96,-5.28)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,0 L -0.48,0.24 L -0.72,0 L -0.96,0.24 L -0.72,0.72 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13256"/><g id="g13258" transform="translate(-16.08,-16.56)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,0.48 L 0.48,0.48 L 0.96,0 L 0.48,0 L 0.48,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13260"/><g id="g13262" transform="translate(12,2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L -0.24,0.48 L -0.48,0.24 L -0.72,0.48 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13264"/><g id="g13266" transform="translate(-1.2,-8.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,0.24 L -0.72,0.72 L 0.24,0.48 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13268"/><g id="g13270" transform="translate(5.28,17.04)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.48,0.72 L 0,1.2 L 0.24,0.96 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13272"/><g id="g13274" transform="translate(-19.2,-10.56)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.96 L -0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13276"/><g id="g13278" transform="translate(-0.48,24.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.24,-0.48 L -0.24,-1.2 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13280"/><g id="g13282" transform="translate(17.76,-10.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,1.2 L 0.24,0.72 L 0.48,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13284"/><g id="g13286" transform="translate(-1.68,-12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L 0.24,1.2 L 0.48,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13288"/><g id="g13290" transform="translate(0.96,10.8)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,0.48 L 0.24,0.24 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13292"/><g id="g13294" transform="translate(-9.84,8.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L -0.24,-0.72 L -0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13296"/><g id="g13298" transform="translate(7.92,-20.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.48,0.24 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13300"/><g id="g13302" transform="translate(6.24,7.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,0.48 L 0.48,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13304"/><g id="g13306" transform="translate(-6.48,-13.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,0.24 L -0.24,0.72 L 0,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13308"/><g id="g13310" transform="translate(2.4,26.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L -0.24,-0.24 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13312"/><g id="g13314" transform="translate(2.64,-6.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.24 L 0.96,0.96 L 0.96,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13316"/><g id="g13318" transform="translate(-6.96,-2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L -0.24,0.72 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13320"/><g id="g13322" transform="translate(6.48,-8.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,0.24 L 0.96,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13324"/><g id="g13326" transform="translate(-5.52,18.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13328"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 448.64687,245.04 L 448.88687,245.52 L 448.88687,245.76 L 447.92687,246 L 449.12687,246 L 449.36687,245.76 L 449.12687,245.52 L 448.88687,245.04 L 448.64687,245.04" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13482"/><g id="g13484" transform="translate(442.88687,247.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.72 L 0.24,-0.72 L 0,-0.96 L -0.24,-0.72 L 0.24,-0.48 L -0.24,-0.24 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13486"/><g id="g13488" transform="translate(15.84,-4.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -1.2,0.24 L -0.72,0.96 L -0.96,1.44 L -0.72,2.4 L -0.24,2.16 L -0.48,1.68 L 0,1.68 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13490"/><g id="g13492" transform="translate(-16.08,31.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.72 L -0.48,-0.72 L -0.72,-0.96 L -0.96,-0.96 L -0.96,-0.48 L -1.68,-0.48 L -1.92,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13494"/><g id="g13496" transform="translate(1.44,-27.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.72 L 0.24,0 L 0.24,-0.24 L 0.48,0 L 0.72,-0.24 L 0,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13498"/><g id="g13500" transform="translate(-7.68,21.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0.72,0 L 0.24,-0.96 L -0.24,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13502"/><g id="g13504" transform="translate(6.24,-17.28)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0.48,0.72 L 0.48,0.24 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13506"/><g id="g13508" transform="translate(4.8,15.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0.96,0.48 L 0.72,-0.48 L 0.48,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13510"/><g id="g13512" transform="translate(6.96,-19.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.48 L -0.24,0.24 L 0.72,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13514"/><g id="g13516" transform="translate(-20.64,3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.48,0 L 0,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13518"/><g id="g13520" transform="translate(20.16,-5.04)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.48 L -0.24,0 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13522"/><g id="g13524" transform="translate(-13.68,20.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.48 L -0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13526"/><g id="g13528" transform="translate(6.72,3.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L -0.24,-0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13530"/><g id="g13532" transform="translate(-2.64,-17.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L -0.24,-0.96 L -0.24,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13534"/><g id="g13536" transform="translate(-2.88,-5.04)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.48 L -0.48,0.24 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13538"/><g id="g13540" transform="translate(0.96,2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L -0.48,-0.96 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13542"/><g id="g13544" transform="translate(-2.4,11.76)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L -0.24,-0.96 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13546"/><g id="g13548" transform="translate(3.12,-6.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L -0.72,-0.96 L -0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13550"/><g id="g13552" transform="translate(12,-8.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L 0.24,0.24 L 0.48,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13554"/><g id="g13556" transform="translate(-3.36,-2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0.24,0.24 L 0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13558"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 440.72687,274.56 L 440.96687,275.52 L 441.20687,275.52 L 442.16687,276 L 442.40687,276.48 L 443.36687,276.24 L 442.88687,275.52 L 442.88687,274.8 L 442.64687,274.56" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13570"/><path d="M 426.32687,149.76 L 426.80687,150.24 L 426.80687,150.72 L 427.04687,150.72 L 427.52687,150.96 L 427.04687,150.96 L 427.28687,151.44 L 427.52687,151.44 L 427.76687,151.2 L 430.40687,152.64 L 430.16687,153.12 L 430.16687,153.36 L 430.40687,153.36 L 430.88687,153.84 L 431.36687,153.36 L 431.36687,153.84 L 431.84687,154.32 L 431.60687,154.32 L 431.60687,154.8 L 432.08687,155.04 L 432.32687,155.04 L 432.32687,154.8 L 432.56687,155.04 L 432.32687,155.28 L 432.32687,156 L 433.52687,156.96 L 434.00687,157.68 L 434.72687,158.16 L 434.24687,158.4 L 434.48687,158.88 L 435.68687,159.84 L 435.44687,160.08 L 435.20687,159.84 L 435.44687,160.56 L 435.68687,160.56 L 435.44687,160.08 L 435.68687,160.08 L 436.64687,160.56 L 436.88687,161.04 L 437.36687,160.8 L 437.60687,161.28 L 437.12687,161.28 L 437.12687,161.76 L 438.32687,162.96 L 438.32687,163.44 L 439.04687,164.16 L 440.24687,166.08 L 440.72687,166.56 L 440.48687,166.56 L 440.48687,166.8 L 440.00687,166.56 L 439.76687,165.6 L 439.52687,166.32 L 440.00687,167.04 L 440.96687,166.8 L 440.96687,166.56 L 441.92687,166.8 L 442.88687,165.6 L 443.36687,166.32 L 443.84687,166.56 L 443.84687,166.8 L 444.32687,167.28 L 444.56687,166.56 L 444.80687,167.04 L 445.04687,166.8 L 444.80687,166.56 L 445.04687,166.56 L 445.28687,166.32 L 445.28687,166.56 L 445.52687,166.32 L 445.52687,166.56 L 446.00687,166.56 L 445.76687,166.08 L 446.24687,166.32 L 446.00687,166.08 L 446.48687,165.84 L 446.48687,166.08 L 446.96687,166.08 L 446.72687,165.84 L 446.96687,165.84 L 446.96687,166.08 L 446.96687,165.6 L 447.20687,166.08 L 447.20687,165.84 L 447.20687,166.08 L 447.44687,165.84 L 447.92687,166.08 L 447.68687,166.08 L 447.92687,165.84 L 448.16687,166.08 L 447.92687,166.32 L 448.40687,166.56 L 447.92687,167.04 L 448.16687,166.8 L 448.88687,166.8 L 448.40687,167.28 L 448.88687,167.28 L 448.88687,168.24 L 449.12687,167.52 L 449.60687,167.28 L 449.60687,167.76 L 449.60687,167.04 L 450.08687,167.04 L 449.84687,167.28 L 450.08687,167.04 L 450.08687,167.52 L 449.60687,168.24 L 449.84687,168 L 450.08687,168.24 L 450.08687,169.44 L 450.08687,168.24 L 450.56687,167.52 L 450.56687,167.76 L 450.56687,167.52 L 450.80687,167.76 L 451.28687,167.52 L 451.76687,167.76 L 451.76687,167.28 L 452.24687,167.52 L 452.00687,167.28 L 454.16687,168.24 L 454.64687,168.48 L 454.40687,168.72 L 454.64687,168.48 L 455.60687,169.44 L 455.36687,170.4 L 455.60687,170.64" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13914"/><g id="g13916" transform="translate(456.80687,169.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.96 L -0.24,-0.96 L 0,-1.44 L -0.24,-1.92 L -0.72,-1.68 L -0.48,-2.16 L -0.72,-2.88 L -0.96,-3.12 L -1.2,-2.64 L -1.44,-3.36 L -1.68,-2.88 L -1.44,-3.84 L 4.32,-3.12" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13918"/><g id="g13920" transform="translate(-7.92,-2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.48 L 0.48,-0.24 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13922"/><g id="g13924" transform="translate(-10.32,13.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-2.4 L 0,-2.64 L 0,-2.88 L 0.24,-3.12 L 0.24,-3.6 L -0.24,-3.6 L -0.24,-3.84 L -0.48,-4.32 L -0.48,-5.04 L 0.24,-5.28 L 0,-6 L 0.48,-6 L 0.24,-6.48 L 0.48,-6.48 L 0.48,-7.44 L 1.44,-7.92 L 2.64,-8.88 L 4.8,-8.64 L 5.04,-9.12 L 5.52,-8.88 L 5.76,-9.6 L 6.48,-10.32 L 6.96,-10.32 L 6.72,-10.32 L 7.2,-10.8 L 6.96,-11.04 L 7.2,-11.28 L 7.2,-11.76 L 8.16,-12.96 L 7.92,-13.2 L 8.16,-13.44 L 8.16,-13.68 L 8.4,-13.68 L 8.4,-14.4 L 8.88,-14.4 L 9.12,-13.92 L 9.84,-13.92 L 9.6,-13.92 L 8.88,-14.4 L 9.12,-14.64 L 9.12,-14.88 L 8.88,-14.4 L 8.4,-14.88 L 8.64,-14.64 L 8.4,-14.4 L 8.4,-13.68 L 8.16,-13.68 L 8.16,-13.44 L 7.92,-13.2 L 8.16,-12.96 L 6.96,-11.76 L 7.2,-11.52 L 6.96,-11.28 L 7.2,-10.8 L 6.72,-10.56 L 6.96,-10.32 L 6.48,-10.32 L 5.76,-9.6 L 5.52,-8.88 L 5.04,-9.12 L 4.8,-8.64 L 4.32,-8.88 L 2.64,-8.88 L 0.48,-7.44 L 0.48,-6.48 L 0.24,-6.48 L 0.24,-6 L 0,-5.76 L 0.24,-5.28 L -0.48,-5.04 L -0.48,-4.32 L -0.24,-3.84 L -0.48,-3.6 L 0.24,-3.36 L 0.24,-3.12 L -0.24,-3.12 L -0.24,-2.64 L -0.48,-2.4 L -0.48,-2.16 L -0.24,-1.68 L -0.24,-0.72 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13926"/><g id="g13928" transform="translate(6.72,-11.04)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.72 L -0.24,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13930"/></g></g></g></g><path d="M 461.12687,166.8 L 461.84687,167.04 L 464.48687,168.24 L 465.20687,170.4 L 464.96687,170.88 L 465.44687,173.28 L 464.96687,173.52 L 464.48687,174.72 L 463.52687,174.72 L 463.52687,174.96 L 463.76687,174.96 L 463.52687,175.2 L 463.04687,174.96 L 463.28687,175.2 L 462.80687,175.2 L 462.80687,175.68 L 462.32687,176.4 L 462.32687,176.64 L 462.80687,176.4 L 462.56687,176.88 L 463.28687,177.36 L 463.52687,178.08 L 463.52687,177.36 L 463.04687,176.88 L 463.76687,176.16 L 464.00687,176.16 L 464.24687,176.88 L 464.24687,176.4 L 464.72687,175.68 L 465.44687,176.88 L 465.44687,176.4 L 465.68687,175.68 L 465.68687,175.44 L 465.92687,175.92 L 466.16687,174.96 L 466.64687,175.2 L 466.40687,174.96 L 466.88687,174.72 L 466.88687,175.44 L 467.12687,174.96 L 467.36687,175.2 L 467.60687,175.2 L 467.12687,174.96 L 467.36687,174.72 L 467.60687,174.72 L 467.60687,175.2 L 467.84687,174.72 L 468.32687,174.72 L 468.56687,174.96 L 468.56687,174.72 L 469.28687,174.24 L 469.76687,173.28 L 470.72687,172.8" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13946"/><g id="g13948" transform="translate(455.60687,170.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0,0.48 L 0.48,0.72 L 0,0.96 L 0.48,0.96 L 0.72,1.44 L 1.68,-0.24 L 1.2,-0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13950"/><g id="g13952" transform="translate(5.52,19.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.72 L -0.48,0.72 L -0.48,1.2 L 0,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13954"/></g></g><path d="M 492.80687,219.12 L 492.32687,219.84 L 492.08687,221.04 L 492.08687,220.56 L 491.84687,221.04 L 491.60687,220.8 L 491.12687,221.04 L 491.36687,221.04 L 490.88687,222.48 L 490.88687,222 L 490.64687,222.24 L 490.40687,221.76 L 490.40687,222.24 L 488.96687,222 L 488.48687,222.48 L 487.76687,223.44 L 488.00687,224.4 L 488.00687,226.08 L 486.80687,228 L 486.32687,227.52 L 486.80687,228 L 487.52687,227.76 L 488.96687,227.52 L 488.96687,227.76 L 488.48687,227.76 L 488.48687,228.24 L 488.96687,228 L 488.72687,228.24 L 488.96687,228.24 L 488.00687,228.72 L 487.76687,228.96 L 488.48687,228.96 L 487.52687,229.44 L 487.76687,229.68 L 487.52687,229.68 L 487.52687,229.92 L 487.76687,229.92 L 488.96687,229.2 L 489.20687,229.68 L 489.44687,229.68 L 488.72687,229.92 L 489.20687,229.92 L 489.68687,230.4 L 489.44687,230.4 L 489.68687,230.64 L 488.48687,230.4 L 488.24687,230.64 L 488.48687,230.88 L 488.96687,230.88 L 488.96687,231.12 L 489.20687,231.12 L 489.44687,231.36 L 488.72687,231.84 L 489.44687,231.6 L 489.44687,232.08 L 488.72687,232.08 L 488.96687,232.32 L 488.24687,232.56 L 488.72687,232.56 L 488.48687,232.8 L 488.96687,232.56 L 488.96687,232.8 L 489.44687,232.8 L 489.44687,233.52 L 488.72687,233.52 L 488.48687,233.76 L 488.00687,233.76 L 487.52687,234.24 L 489.20687,233.76 L 488.96687,234.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14014"/><g id="g14016" transform="translate(489.20687,232.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.48,0.48 L -0.24,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14018"/><g id="g14020" transform="translate(-0.72,-5.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.48 L -0.72,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14022"/><g id="g14024" transform="translate(-14.16,11.28)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,-0.24 L 0.96,-1.2 L 1.68,-1.2 L 1.68,-1.44 L 2.64,-1.68 L 2.88,-1.92 L 3.6,-1.92 L 3.6,-2.16 L 3.84,-2.16 L 4.32,-1.92 L 6.48,-2.16 L 6.24,-2.4 L 5.76,-2.16 L 6.48,-2.4 L 6.96,-3.12 L 6.48,-2.64 L 5.04,-2.4 L 3.36,-2.4 L 1.44,-1.44 L 1.44,-1.2 L 0.72,-1.2 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14026"/><g id="g14028" transform="translate(3.12,-7.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.48 L 1.2,0.72 L 1.68,1.92 L 2.4,1.92 L 2.64,2.64 L 3.84,3.12 L 3.36,2.64 L 2.88,2.64 L 2.88,1.68 L 1.68,1.92 L 1.68,1.2 L 0.96,0.48 L 0.72,0.48 L 0.48,0 L -0.48,-0.24 L -1.68,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14030"/><g id="g14032" transform="translate(5.28,-19.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.48 L -0.24,0.72 L 0,1.2 L 0.72,1.44 L 0.72,1.92 L 0.96,1.92 L 0.48,2.16 L 1.2,2.16 L 1.44,1.44 L 0.24,0.96 L 0.48,0.24 L -0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14034"/><g id="g14036" transform="translate(-22.32,16.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L -0.96,0.24 L -0.96,0.48 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14038"/><g id="g14040" transform="translate(13.2,-15.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.48,0 L -0.48,1.68 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14042"/></g></g></g></g></g></g></g><path d="M 488.96687,234.24 L 489.20687,234.24 L 488.72687,234.96 L 489.44687,234 L 489.68687,234.24 L 489.44687,234.72 L 489.68687,234.24 L 489.92687,234.72 L 488.72687,235.68 L 489.20687,235.68 L 488.48687,236.64 L 487.28687,236.64 L 488.00687,236.88 L 489.68687,236.4 L 489.20687,237.12 L 488.00687,237.6 L 487.28687,237.12 L 486.80687,237.36 L 487.04687,237.6 L 487.76687,238.08 L 487.28687,238.8 L 487.52687,239.28 L 487.52687,240 L 488.72687,240.48 L 489.68687,240.72 L 489.68687,240.96 L 491.36687,240.72 L 491.60687,240.48 L 491.60687,240.96 L 492.56687,240.48 L 492.80687,240.72 L 492.08687,240.72 L 492.08687,240.96 L 492.80687,240.96 L 493.04687,240.48 L 493.52687,240.72 L 494.00687,240.72 L 495.92687,241.44 L 494.96687,241.2 L 494.96687,241.68 L 496.16687,241.44 L 498.08687,242.4 L 496.88687,242.64 L 496.16687,242.16 L 495.68687,242.16 L 496.16687,242.16 L 496.16687,242.4 L 496.88687,242.64 L 498.08687,242.4 L 498.08687,242.88 L 498.32687,242.4 L 498.80687,242.88 L 498.32687,242.88 L 498.56687,242.88 L 498.32687,243.36 L 497.12687,243.84 L 497.84687,243.6 L 498.08687,243.84 L 498.08687,243.6 L 498.80687,243.12 L 498.56687,243.84 L 498.80687,243.84 L 498.80687,243.36 L 499.28687,243.6 L 499.04687,244.08 L 499.52687,244.08 L 498.80687,244.32 L 499.76687,244.56" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14106"/><g id="g14108" transform="translate(488.48687,239.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.48,0.48 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14110"/><g id="g14112" transform="translate(-0.96,-0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 0.48,0.48 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14114"/><g id="g14116" transform="translate(1.44,-4.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L -0.48,0.48 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14118"/><g id="g14120" transform="translate(0.72,3.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.72 L -1.44,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14122"/><g id="g14124" transform="translate(9.84,5.76)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.72,-0.48 L -0.24,-0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14126"/><g id="g14128" transform="translate(-34.56,-1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L 0,0 L -0.48,0.24 L -0.48,0.72 L -1.2,0.72 L -1.44,0.48 L -1.2,-0.24 L -1.44,0.24 L -0.96,0.96 L -0.48,0.96 L -0.48,1.44 L -0.24,1.68 L -0.24,1.44 L 0.24,1.44 L -0.48,0.72 L 0,0.72 L -0.24,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14130"/><g id="g14132" transform="translate(22.08,0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 1.2,0 L 1.68,0.24 L 1.44,-0.24 L 2.16,-0.48 L 0.48,-0.72 L 1.44,-0.24 L 1.2,-0.48 L 1.2,-0.24 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14134"/><g id="g14136" transform="translate(-12.72,-4.8)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.24,2.16 L 0.24,2.64 L -0.24,2.16 L -0.24,1.2 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14138"/><g id="g14140" transform="translate(-8.64,3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,0.48 L 0.24,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14142"/></g></g></g></g></g></g></g></g></g><path d="M 72.086873,287.52 L 72.326873,287.28 L 72.326873,285.36 L 73.046873,284.88 L 73.286873,285.12 L 73.286873,285.6 L 74.486873,287.04 L 74.726873,287.76 L 74.726873,288" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14266"/><g id="g14268" transform="translate(83.846873,287.76)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.24 L 0,-0.24 L 0.48,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14270"/><g id="g14272" transform="translate(0.24,0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14274"/><g id="g14276" transform="translate(-7.92,-6.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path76487" style="fill:#f0dbb7;fill-opacity:1;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,-0.24 L 1.44,-0.24 L 0.72,0.24 L 0.48,0.72 L 0.96,0.96 L 0.48,2.16 L 0,2.16 L -0.48,1.92 L 0,0 z"/><path d="M 0,0 L 0.72,-0.24 L 1.44,-0.24 L 0.72,0.24 L 0.48,0.72 L 0.96,0.96 L 0.48,2.16 L 0,2.16 L -0.48,1.92 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14278"/><g id="g14280" transform="translate(5.52,3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.96,0.96 L -0.48,0 L 0.24,-0.48 L 1.2,-0.48 L 0.96,0.24 L 0.72,0.24 L 0.48,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14282"/><g id="g14284" transform="translate(0,-3.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path76489" style="fill:#f0dbb7;fill-opacity:1;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.48 L -0.24,0.72 L -0.24,-0.48 L -0.48,-0.72 L -0.24,-0.96 L 0,0 z"/><path d="M 0,0 L 0.24,0.48 L -0.24,0.72 L -0.24,-0.48 L -0.48,-0.72 L -0.24,-0.96 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14286"/><g id="g14288" transform="translate(-1.92,-4.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.48,0.24 L -0.48,-0.72 L 0,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14290"/><g id="g14292" transform="translate(3.36,9.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.24 L 0,-0.24 L -0.48,-0.48 L -0.24,-1.2 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14294"/><g id="g14296" transform="translate(-4.8,-5.04)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path76485" style="fill:#f0dbb7;fill-opacity:1;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.48 L -0.48,0.24 L -0.24,-0.24 L 0,0 z"/><path d="M 0,0 L -0.24,0.48 L -0.48,0.24 L -0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14298"/><g id="g14300" transform="translate(1.68,-3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.48,-0.72 L 0,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14302"/><g id="g14304" transform="translate(-0.48,-1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L -0.72,-0.72 L -0.24,-0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14306"/><g id="g14308" transform="translate(-7.2,3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.72 L 0.24,1.2 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path14310"/></g></g></g></g></g></g></g></g></g></g></g><path d="M 230.48687,288 L 230.48687,287.76 L 230.48687,288 L 230.48687,287.76 L 230.24687,287.76 L 230.24687,288 L 230.00687,287.76 L 230.24687,287.76 L 230.24687,287.52 L 230.00687,287.76 L 229.28687,287.28 L 229.52687,286.8 L 230.00687,287.28 L 229.76687,286.56 L 229.04687,287.04 L 228.80687,286.56 L 228.56687,286.56 L 228.56687,285.84 L 227.84687,285.84 L 227.84687,285.6 L 227.84687,285.84 L 227.36687,285.36 L 226.16687,285.12 L 225.92687,284.88 L 225.44687,285.12 L 225.20687,285.6 L 224.48687,285.84 L 224.24687,284.64 L 224.24687,285.84 L 222.80687,287.28 L 221.84687,286.8 L 221.36687,286.32 L 220.64687,286.32 L 220.88687,287.04 L 220.40687,287.52 L 220.64687,287.76 L 220.40687,287.76 L 220.40687,288" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6872"/><g id="g6874" transform="translate(217.76687,288)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.72 L 0.24,-0.48 L 0.48,-0.72 L 0.96,0 L 0.96,-0.48 L 1.44,-0.48 L 0.96,-0.48 L 0.48,-0.72 L 0.72,-0.72 L 0.48,-0.96 L 0.96,-0.96 L 0.96,-1.2 L 0.48,-1.2 L 0.48,-0.96 L 0.24,-1.2 L 0.48,-0.96 L 0,-1.2 L -0.24,-1.2 L 0.24,-1.44 L 0,-1.44 L 0.24,-1.68 L 0.48,-1.2 L 0.48,-1.44 L 0.72,-1.68 L 0.48,-1.68 L 0.48,-1.92 L 0.48,-1.68 L -0.24,-1.68 L 0.24,-1.92 L 0.48,-2.16 L 0.72,-2.16 L 0.48,-2.16 L 0,-1.92 L 0,-2.16 L -0.48,-1.92 L -0.24,-2.16 L -0.72,-2.4 L -0.72,-2.64 L -0.96,-2.64 L -1.2,-2.88 L -0.96,-3.12 L -1.44,-2.88 L -1.44,-3.12 L -1.68,-3.36 L -1.2,-3.36 L -2.16,-3.36 L -1.68,-3.6 L -1.92,-3.84 L -2.16,-3.84 L -1.44,-3.84 L -2.16,-4.32 L -1.92,-4.32 L -2.16,-4.32 L -2.16,-4.56 L -2.4,-4.56 L -2.16,-4.8 L -2.4,-4.8 L -2.4,-4.56 L -2.64,-4.32 L -2.64,-3.6 L -2.88,-4.08 L -2.64,-4.08 L -2.88,-4.32 L -2.88,-4.08 L -3.12,-4.08 L -3.12,-4.32 L -3.12,-4.08 L -3.6,-4.32 L -3.6,-4.56 L -3.36,-4.8 L -3.84,-4.56 L -3.84,-5.04 L -3.6,-5.04 L -3.6,-5.28 L -3.36,-5.28 L -3.84,-5.04 L -3.6,-5.52 L -4.08,-5.28 L -3.84,-5.52 L -4.08,-5.52 L -4.08,-5.76 L -4.56,-6.24 L -4.32,-6.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6876"/><g id="g6878" transform="translate(-9.84,-6.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0.72,0.24 L 0.72,0.48 L 0.48,0.48 L 0.48,0.96 L 0.24,0.96 L 0.72,1.44 L 0.48,1.92 L 0.96,1.92 L 0.72,2.16 L 0.96,2.16 L 0.96,2.64 L 1.2,2.4 L 1.44,2.64 L 1.44,2.16 L 1.44,2.64 L 1.68,2.4 L 1.68,2.64 L 1.92,2.16 L 2.16,2.88 L 1.92,2.88 L 1.92,3.12 L 2.16,2.88 L 2.4,3.36 L 2.4,3.12 L 2.64,3.12 L 2.88,3.6 L 2.4,3.6 L 2.64,3.84 L 2.4,4.08 L 2.88,3.6 L 3.36,3.84 L 3.36,4.08 L 3.84,4.56 L 4.08,5.04 L 4.32,5.28 L 3.6,6 L 3.6,6.48 L 3.36,6.24 L 3.6,6.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6880"/><g id="g6882" transform="translate(19.92,5.76)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.48 L 0.48,0.48 L 0.24,0.72 L 0.24,0.96 L 0,0.96 L -0.48,0.48 L -0.72,-0.48 L 0,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6884"/><g id="g6886" transform="translate(1.2,1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L 0,-0.24 L 0,0 L 0.24,-0.24 L 0.72,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6888"/><g id="g6890" transform="translate(-15.6,-5.28)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.24,0 L -0.72,-0.48 L -0.72,-0.96 L 0,-0.48 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6892"/><g id="g6894" transform="translate(-0.72,4.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.72 L 0,0 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6896"/><g id="g6898" transform="translate(16.08,0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6900"/><g id="g6902" transform="translate(4.56,-3.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.48 L 0.24,0.24 L 0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6904"/><g id="g6906" transform="translate(-28.08,-1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0.24,-0.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6908"/><g id="g6910" transform="translate(13.2,0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.48 L 0.24,0.24 L 0.48,0.48 L 0,0.96 L 0,1.2 L 0.24,1.68 L 0.96,1.92 L 0.96,1.68 L 0.72,1.92 L 0.48,1.68 L 0.48,1.44 L 0.72,1.68 L 0.72,1.2 L 0.96,1.44 L 1.2,1.44 L 2.16,1.68 L 1.2,0.48 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6912"/><g id="g6914" transform="translate(-11.04,3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,0.24 L -0.72,0 L -0.96,0 L -0.96,-0.24 L -1.2,0 L -0.72,0.24 L -0.72,1.44 L -0.48,2.16 L -0.24,1.92 L -0.72,1.2 L -0.48,0.72 L -0.72,0.48 L 0,0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6916"/><g id="g6918" transform="translate(0.72,1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.48 L 0,-0.72 L -0.24,-1.44 L -0.24,-0.96 L -0.48,-0.96 L -0.24,-0.72 L -0.48,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6920"/><g id="g6922" transform="translate(-3.12,-0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.24,0 L 0.48,-0.48 L 0.24,-0.48 L 0.24,-0.72 L 0.24,-0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6924"/><g id="g6926" transform="translate(13.2,-1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L 0.24,0.48 L 0.48,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6928"/><g id="g6930" transform="translate(-13.2,1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6932"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 201.92687,280.56 L 201.68687,280.56 L 201.92687,280.8 L 201.92687,280.56" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9154"/><g id="g9156" transform="translate(205.28687,280.8)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9158"/><g id="g9160" transform="translate(-25.68,2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.72 L -0.48,0.48 L -0.24,0 L -0.24,-0.24 L -0.72,0.48 L -1.2,0.72 L -0.96,0.72 L -1.92,1.44 L -0.72,0.72 L -0.48,0.96 L -1.68,1.68 L -1.44,1.68 L -2.4,1.92 L -3.12,1.92 L -2.88,2.16 L -3.36,1.92 L -4.08,2.4 L -4.08,2.88 L -3.36,1.92 L -2.88,2.16 L -3.12,2.16 L -1.92,1.92 L -2.88,2.16 L -2.64,2.4 L -3.36,2.88 L -1.44,2.16 L -1.2,2.16 L -1.2,2.4 L 0.24,0.72 L 0,0.48 L -0.24,0.96 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9162"/><g id="g9164" transform="translate(-0.96,-3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.24 L -0.72,-0.48 L -0.72,-0.72 L -0.24,-0.72 L -0.72,-0.96 L -0.48,-0.96 L -0.72,-0.96 L -0.72,-1.2 L -0.96,-0.96 L -0.72,-0.96 L -0.96,-0.96 L -0.96,-0.72 L -1.2,-0.72 L -1.2,-0.48 L -0.72,-0.48 L -0.96,-0.24 L -0.48,-0.24 L -0.72,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9166"/><g id="g9168" transform="translate(-1.68,7.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L -0.24,0 L 0,-0.24 L 0,-0.48 L -0.72,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9170"/><g id="g9172" transform="translate(-0.48,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9174"/><g id="g9176" transform="translate(8.4,-7.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L 0,-0.48 L -0.24,-0.24 L 0,-0.72 L -0.24,-0.48 L -1.2,-0.72 L -0.48,-0.48 L -0.96,-0.24 L -0.72,-0.24 L -0.72,0 L -0.24,0 L -0.72,0.48 L -0.24,0.24 L -0.24,0 L 0,0 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9178"/><g id="g9180" transform="translate(12.96,6.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,0.72 L -0.48,0.48 L -0.72,0.96 L -0.96,0.24 L -0.96,1.2" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9182"/><g id="g9184" transform="translate(-0.72,1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.24,-0.48 L 0.48,-0.24 L 0.48,-0.72 L 0.72,-1.2" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9186"/><g id="g9188" transform="translate(-2.4,-1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-1.2 L 0.72,-0.72 L 0.48,-1.2 L 0.72,-1.2 L 0.72,-1.68 L 0.48,-1.2 L 0.48,-1.44 L 0.24,-1.44 L 0.48,-1.68 L 0.24,-1.44 L 0.24,-0.72 L 0,-0.96 L 0,-0.72 L -0.24,-0.48 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9190"/><g id="g9192" transform="translate(-0.96,-3.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0,-0.48 L 0,0 L -0.24,0 L -0.24,-0.48 L -0.24,-0.24 L -0.48,-0.24 L -0.48,-0.48 L -0.72,-0.24 L -0.48,0.24 L -0.24,0 L -0.24,-0.24 L -0.24,0.24 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9194"/><g id="g9196" transform="translate(10.08,3.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.72,-1.44 L -0.72,-0.96 L -0.48,-0.72 L -0.48,-0.48 L -0.24,-0.48 L -0.48,0.24 L -0.24,0.24 L -0.48,0.24 L -0.24,0.48 L 0,0.48 L -0.24,-0.24 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9198"/><g id="g9200" transform="translate(-23.04,-8.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L -0.24,0 L 0.24,0.24 L -0.24,0.24 L 0.72,0.48 L 0.48,0.72 L 0.72,0.72 L 0.72,0.96 L 0.72,0.48 L 0.24,0.24 L 0.72,0 L 0.48,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9202"/><g id="g9204" transform="translate(0,7.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.96,0 L -0.96,0.24 L -0.24,0 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9206"/><g id="g9208" transform="translate(-0.96,2.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L 0,-0.24 L -0.48,-0.24 L -0.48,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9210"/><g id="g9212" transform="translate(10.8,-2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.48,-0.96 L 0.48,-1.68 L 0.72,-1.68 L 0.48,-1.92 L 0,-1.2 L -0.24,-0.24 L -0.24,0 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9214"/><g id="g9216" transform="translate(3.84,1.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.24 L -0.72,-0.72 L -1.2,-0.72 L -1.2,-0.24 L -0.96,-0.48 L -0.72,0.72 L 0,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9218"/><g id="g9220" transform="translate(-9.12,-6.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.48 L -0.24,-0.24 L 0,-0.24 L -0.48,-0.24 L -0.24,0 L -0.48,0.24 L -0.48,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9222"/><g id="g9224" transform="translate(-6.96,6.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.24,0 L -0.48,0.24 L -0.48,0 L -0.72,0 L -0.72,0.48 L -0.96,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9226"/><g id="g9228" transform="translate(8.16,-6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L -0.48,-0.24 L -0.48,-0.48 L -0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9230"/><g id="g9232" transform="translate(16.56,2.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,-0.24 L -0.96,-0.48 L -0.96,-0.24 L -0.72,0.24 L -0.48,0 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9234"/><g id="g9236" transform="translate(-3.36,3.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.48 L 0.24,-0.72 L -0.24,-0.96 L 0,0 L -0.24,0 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9238"/><g id="g9240" transform="translate(-13.2,-4.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,0.24 L -0.48,0 L -0.72,0.24 L 0,0.48 L -0.24,0.24 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9242"/><g id="g9244" transform="translate(7.44,2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.72,0 L -0.96,0.48 L -0.48,0.48 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9246"/><g id="g9248" transform="translate(8.64,1.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.48 L -0.48,-0.24 L -0.24,0.24 L -0.24,0 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9250"/><g id="g9252" transform="translate(-13.44,-7.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.48 L -0.24,0.72 L 0,0.96 L -0.24,0.72 L 0,0.48 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9254"/><g id="g9256" transform="translate(12.72,4.8)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.24,-0.48 L -0.48,-0.24 L 0,0.24 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9258"/><g id="g9260" transform="translate(-26.16,-3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,0 L 0.24,-0.48 L 0,-0.24 L 0.24,-0.24 L 0,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9262"/><g id="g9264" transform="translate(26.16,1.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,0.48 L -0.48,0.72 L 0,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9266"/><g id="g9268" transform="translate(2.88,3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,0 L -0.24,0.24 L -0.48,0.48 L -0.24,0.24 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9270"/><g id="g9272" transform="translate(-17.04,-6.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,-0.24 L -0.72,0.24 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9274"/><g id="g9276" transform="translate(10.08,5.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.48 L -0.24,0.48 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9278"/><g id="g9280" transform="translate(6.48,-1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.48 L -0.96,0.48 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9282"/><g id="g9284" transform="translate(-17.76,-4.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.24,0.48 L 0.72,0.48 L 0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9286"/><g id="g9288" transform="translate(13.44,2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.72 L -0.24,-0.48 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9290"/><g id="g9292" transform="translate(5.04,4.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L 0,0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9294"/><g id="g9296" transform="translate(-15.12,-6.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9298"/><g id="g9300" transform="translate(15.36,6.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9302"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 194.48687,262.8 L 193.52687,263.28 L 194.48687,263.04 L 194.00687,263.28 L 194.48687,263.28 L 193.52687,264 L 194.24687,263.52 L 194.00687,264 L 194.48687,263.52 L 194.96687,263.52 L 194.96687,263.28 L 195.20687,263.76 L 194.48687,263.76 L 195.44687,263.76 L 194.96687,263.76 L 195.44687,263.76 L 195.20687,264 L 195.92687,263.76 L 195.92687,264.24 L 195.20687,264.24 L 195.92687,264.24 L 195.44687,264.72 L 195.92687,264.48 L 195.92687,265.44 L 195.92687,265.2 L 196.16687,265.44 L 195.92687,265.68 L 195.92687,266.4 L 196.16687,265.68 L 196.40687,265.68 L 196.16687,265.92 L 196.40687,265.68 L 196.64687,265.92 L 196.88687,265.68 L 196.64687,266.4 L 196.40687,266.4 L 196.64687,266.4 L 196.64687,267.12 L 196.88687,266.16 L 196.88687,266.88 L 197.12687,266.64 L 197.12687,267.36 L 197.12687,266.88 L 197.12687,267.12 L 197.60687,266.64 L 197.60687,267.6 L 197.60687,266.88 L 197.84687,268.08 L 197.84687,266.64 L 198.08687,266.88 L 198.08687,266.64 L 198.08687,266.88 L 197.84687,267.12 L 198.32687,267.12 L 198.32687,266.88 L 198.80687,266.64 L 198.80687,266.4 L 199.28687,266.4 L 199.52687,266.64 L 199.28687,267.12 L 199.52687,266.88 L 199.28687,267.12 L 199.28687,267.6 L 199.52687,267.6 L 199.52687,267.36 L 199.76687,267.6 L 200.00687,267.36 L 200.00687,267.6 L 199.76687,268.32 L 200.00687,268.56 L 200.00687,268.32 L 200.24687,268.08 L 200.48687,267.6 L 200.96687,268.08 L 201.20687,268.08 L 200.96687,268.08 L 200.96687,267.84 L 201.44687,267.84 L 201.20687,268.08 L 201.44687,268.32 L 201.20687,268.56 L 201.44687,268.56 L 200.96687,268.56 L 201.44687,268.8 L 201.20687,269.04 L 201.44687,268.56 L 201.68687,268.56 L 201.68687,268.8 L 201.92687,268.8 L 201.68687,269.04 L 201.92687,269.04 L 201.68687,269.52 L 201.20687,269.76 L 200.96687,270 L 201.20687,269.76 L 201.44687,270 L 201.68687,269.76 L 201.92687,269.04 L 202.16687,269.28 L 201.92687,269.52 L 202.16687,269.04 L 202.40687,269.28 L 202.88687,269.28 L 202.16687,270 L 202.64687,270 L 201.92687,270.72 L 202.40687,270.24 L 202.40687,270.72 L 202.64687,270.48 L 202.64687,270 L 203.36687,269.76 L 203.12687,270 L 203.60687,269.76 L 203.84687,270.24 L 203.36687,270.24 L 203.60687,270.24 L 203.60687,270.48 L 203.84687,270.24 L 204.08687,270.48 L 203.84687,270.48 L 204.08687,270.48 L 204.08687,270.72 L 204.32687,270.48 L 204.08687,271.44 L 203.60687,271.44 L 204.08687,271.44 L 203.84687,271.68 L 204.08687,271.44 L 204.08687,270.96 L 204.56687,270.72 L 204.56687,270.96 L 204.80687,270.96 L 204.56687,271.2 L 205.04687,271.2 L 204.56687,271.44 L 205.04687,271.44 L 204.80687,271.92 L 205.28687,271.44 L 205.52687,271.92 L 205.28687,272.16 L 205.76687,271.92 L 205.76687,272.4 L 205.76687,272.16 L 206.00687,271.92 L 206.00687,272.16 L 206.24687,272.16 L 206.00687,272.4 L 206.24687,272.4 L 206.48687,272.64 L 206.48687,272.4" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9698"/><g id="g9700" transform="translate(206.48687,273.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.24 L -0.24,0 L -0.48,0 L -0.48,-0.24 L -0.48,0 L -0.72,-0.24 L -0.48,0.24 L -0.96,0.48 L -1.68,0 L -1.92,-0.48 L -1.68,0 L -1.92,-0.24 L -1.68,0.24 L -2.4,-0.24 L -1.92,0.24 L -2.64,0 L -2.4,0.24 L -2.64,0.24 L -2.4,0.48 L -2.88,0.24 L -2.64,0 L -2.88,-0.24 L -2.88,0.24 L -3.36,-0.24 L -3.12,0.48 L -3.36,0.24 L -3.12,0.48 L -3.36,0.72 L -3.6,0.24 L -3.6,0.48 L -3.84,0.48 L -3.6,0.72 L -3.84,0.72 L -4.32,0.24 L -4.32,0.48 L -5.04,0.48 L -5.28,0.24 L -5.04,0.48 L -4.32,0.48 L -3.6,1.2 L -4.8,1.44 L -4.8,1.68 L -5.04,1.68 L -4.8,1.92 L -5.28,2.16 L -5.52,2.64 L -6.48,2.88 L -5.04,3.12 L -5.76,3.12 L -6.24,3.6 L -5.52,3.12 L -4.8,3.6 L -5.04,3.84 L -6.24,3.84 L -6.72,4.32 L -6.24,3.84 L -5.52,3.84 L -4.32,4.08 L -4.08,4.56 L -4.08,5.52 L -4.56,6 L -5.04,6.24 L -4.8,6.24 L -4.8,6.48 L -4.56,6.48 L -4.56,6.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9702"/><g id="g9704" transform="translate(-30,-1.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0.72,-0.48 L 0.72,-0.72 L 0.96,-0.72 L 0.72,-0.96 L 0.96,-1.44 L 1.2,-1.68 L 1.44,-3.84 L 1.92,-4.56 L 1.68,-5.28 L 2.16,-5.76 L 1.92,-6.72 L 2.4,-7.92 L 2.64,-9.6 L 2.4,-9.84 L 2.64,-10.08 L 2.4,-9.84 L 2.16,-9.84 L 2.64,-10.56 L 2.88,-11.04 L 3.12,-11.28 L 2.88,-11.28 L 3.12,-11.52 L 2.88,-11.52 L 3.12,-12 L 3.6,-12.72 L 3.36,-12.72 L 3.6,-13.2" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9706"/><g id="g9708" transform="translate(25.44,8.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0.24,-0.48 L 0.72,-0.24 L 0.48,-0.48 L 0.24,-0.48 L 0.24,-0.72 L 0.48,-0.96 L 0.96,-0.72 L 0.72,-0.96 L 0.96,-0.96 L 1.2,-0.72 L 1.44,-0.72 L 1.44,-1.2 L 1.68,-1.2 L 1.68,-0.24 L 1.92,-0.48 L 2.16,-0.24 L 2.64,-0.72 L 2.64,-0.24 L 3.12,-0.48 L 3.36,-0.24 L 3.36,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9710"/><g id="g9712" transform="translate(-12.72,-18.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L -0.72,1.2 L -0.48,0.24 L -0.24,0.24 L -0.24,0.72 L 0.24,0.24 L 0.24,0 L 0.24,0.24 L 0.96,0.24 L 0.96,0.48 L 1.2,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9714"/><g id="g9716" transform="translate(8.64,5.04)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0,-0.48 L 0.48,-0.48 L 0.48,-0.24 L 0.96,-0.24 L 0.96,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9718"/><g id="g9720" transform="translate(-1.44,-1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.24,0.24 L 0.48,0.24 L 0,0.48 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9722"/><g id="g9724" transform="translate(0.96,1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.72 L 0.24,0 L 0,0 L 0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9726"/><g id="g9728" transform="translate(5.28,13.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L 0.24,-0.48 L 0.48,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9730"/><g id="g9732" transform="translate(-2.4,-11.76)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L 0.24,-0.48 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9734"/><g id="g9736" transform="translate(6.24,4.56)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.48 L 0,0.24 L 0,0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9738"/><g id="g9740" transform="translate(-0.96,8.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9742"/><g id="g9744" transform="translate(-13.92,-10.8)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.48 L -0.96,-0.24 L -1.44,-1.2 L -1.92,-1.44 L -1.92,-1.92 L -1.68,-1.44 L -1.68,-2.4 L -1.68,-2.16 L -1.44,-2.64 L -1.68,-2.4 L -1.92,-2.88 L -2.16,-2.4 L -2.16,-1.92 L -1.92,-2.64 L -1.92,-1.68 L -2.16,-2.4 L -2.64,-1.2 L -2.16,-0.96 L -2.16,0 L -2.4,-0.24 L -2.64,0 L -2.88,0.72 L -3.12,0.48 L -3.12,0.96 L -3.12,0.72 L -3.36,0.96 L -3.6,0.72 L -3.84,0.72 L -4.08,0.48 L -3.84,0.72 L -4.08,0.72 L -4.32,0.24 L -4.32,0.96 L -4.08,1.44 L -4.08,0.96 L -3.84,1.2 L -3.84,0.96 L -3.36,1.2 L -3.6,0.96 L -3.36,1.2 L -3.36,0.96 L -2.88,0.96 L -2.88,1.44 L -2.64,1.44 L -2.88,1.44 L -2.64,1.2 L -2.4,1.68 L -2.4,1.92 L -1.2,3.36 L -1.92,2.64 L -1.92,3.36 L -2.16,2.88 L -2.16,3.12 L -2.64,2.88 L -2.4,3.12 L -1.68,3.6 L -1.68,3.36 L -1.44,3.6 L -1.44,3.36 L -1.2,3.84 L -1.44,3.36 L -1.2,3.6 L -1.2,3.36 L -0.48,3.6 L -0.72,3.12 L -0.24,3.84 L -0.24,3.6 L 0,3.84 L 0,3.36 L 0.24,3.6 L 0,3.12 L -0.24,3.36 L -0.48,3.36 L -0.24,3.6 L -0.72,3.12 L -0.72,3.36 L -1.44,2.64 L -0.96,3.36 L -1.2,3.12 L -2.64,1.2 L -2.64,0.72 L -2.4,0.72 L -2.16,0.96 L -2.4,0 L -2.16,0.72 L -1.2,0.96 L -1.2,1.2 L -0.72,1.44 L -0.72,1.2 L -0.96,1.2 L -1.2,0.96 L -2.16,0.48 L -2.16,0 L -1.92,0 L -1.92,-0.24 L -1.68,-0.24 L -1.92,-0.48 L -1.68,-0.72 L -1.44,-0.48 L -1.68,-0.24 L -0.48,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9746"/><g id="g9748" transform="translate(-10.08,5.28)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L -1.44,-0.24 L -1.92,0 L -1.92,0.24 L -2.16,0.48 L -3.36,0.72 L -2.64,0.72 L -1.68,1.68 L -0.72,1.68 L 0,2.16 L -0.24,2.16 L 0,1.92 L -0.48,1.68 L 0.48,1.68 L -0.48,1.44 L 0,1.2 L -0.24,0.96 L -0.24,0.72 L 0.72,0.72 L 0.24,0.48 L 0.48,0.48 L -0.24,0.72 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9750"/><g id="g9752" transform="translate(4.8,2.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 0.48,-0.24 L 0.72,-0.24 L 0.72,-0.48 L 0.96,-0.24 L 1.2,-0.24 L 0.96,-0.48 L 1.2,-0.48 L 1.44,-0.24 L 1.44,0 L 1.68,0.24 L 1.44,0.48 L 1.68,0.48 L 1.68,0.24 L 1.92,0.24 L 1.68,-0.24 L 1.44,-0.24 L 1.2,-0.72 L 1.2,-0.48 L 0.96,-0.48 L 0.48,-0.72 L 0.72,-0.24 L 0.24,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9754"/><g id="g9756" transform="translate(-0.48,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0,0 L 0.48,-0.24 L 0.72,-0.48 L 0.72,-0.24 L 0.96,-0.48 L 0.72,-0.48 L 0.96,-0.72 L 1.44,-0.72 L 1.2,-0.48 L 1.44,-0.48 L 1.68,-0.72 L 1.44,-1.2 L 1.44,-0.96 L 1.2,-1.2 L 1.2,-0.72 L 0.96,-0.96 L 0.48,-0.72 L 0,-0.96 L 0.48,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9758"/><g id="g9760" transform="translate(11.76,0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.96,-0.48 L -0.72,-0.48 L -1.2,-0.48 L -1.44,-0.72 L -1.2,-0.96 L -1.44,-0.72 L -1.68,-0.72 L -1.68,-0.24 L -1.44,-0.24 L -1.68,-0.48 L -1.44,-0.72 L -0.24,0.24 L -0.48,0.24 L -0.24,0.48 L -0.48,0.48 L 0,0.72 L -0.48,0.24 L -0.24,0.24 L 0,0.48 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9762"/><g id="g9764" transform="translate(-21.6,-0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.48,0.72 L 0.96,0.48 L 1.44,0.48 L 1.2,0.48 L 1.92,0.48 L 2.16,0.24 L 1.44,0.24 L 1.68,0.24 L 0.72,0.24 L 0.48,0 L 0.72,0 L 0.48,-0.24 L 0,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9766"/><g id="g9768" transform="translate(8.88,-6.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.72 L 0.48,0.72 L 0.24,0.48 L 0.48,0.72 L 0.48,0.48 L 0.96,0.48 L 0.72,0 L 0.24,-0.24 L 0.24,0.24 L 0.48,0.24 L 0.24,0.24 L 0.24,0 L -0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9770"/><g id="g9772" transform="translate(10.32,7.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,0 L -0.48,-0.24 L -0.24,-0.24 L -0.72,-0.48 L -0.72,-0.24 L -0.96,-0.48 L -0.72,0 L -0.24,0.24 L -0.24,0.48 L 0,0.48 L 0.24,0.24 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9774"/><g id="g9776" transform="translate(0.24,-6.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L -0.24,-0.72 L -0.48,-0.48 L -0.48,0.24 L -0.72,0 L -0.72,-0.24 L -0.96,-0.24 L -0.72,0.24 L -0.48,0.24 L -0.24,0.72 L -0.48,0.24 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9778"/><g id="g9780" transform="translate(-0.72,2.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,-0.24 L -0.24,0 L -0.24,0.48 L -0.48,0.48 L -0.48,0.72 L -0.24,0.72 L 0,0 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9782"/><g id="g9784" transform="translate(0.48,3.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.96,-0.24 L -0.96,-0.48 L -0.72,-0.72 L -0.96,-0.72 L -1.2,-0.48 L -0.96,0 L -0.96,-0.24 L -0.72,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9786"/><g id="g9788" transform="translate(-10.32,-6.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.24,-0.24 L 0.72,0.24 L 0.72,0 L 0.96,0 L 0,-0.96 L 0.24,-0.72 L 0,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9790"/><g id="g9792" transform="translate(0.72,6.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 0.24,-0.24 L 0.72,-0.48 L 0.48,-0.72 L 0.24,-0.48 L 0.24,-0.24 L 0,-0.48 L -0.24,0 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9794"/><g id="g9796" transform="translate(4.56,2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.48 L 0,0.24 L 0.24,-0.24 L 0,-0.48 L 0.24,-0.96 L 0,-0.72 L 0,-0.48 L -0.24,-0.24 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9798"/><g id="g9800" transform="translate(-5.76,-6.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 0.24,0.24 L 1.44,0.24 L 0.48,-0.24 L 0.24,0 L 0.24,-0.48 L -0.48,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9802"/><g id="g9804" transform="translate(6,-4.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L 0,-0.24 L -0.24,-0.24 L -0.24,0.24 L -0.48,0.48 L -0.24,0.24 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9806"/><g id="g9808" transform="translate(-3.84,1.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.72,0.72 L 0.72,0.48 L 0.96,0.48 L 0.72,0 L 0.72,0.24 L 0.24,-0.24 L 0.48,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9810"/><g id="g9812" transform="translate(7.2,0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,0.24 L -0.48,0.24 L -0.48,0.48 L 0.24,0.72 L -0.24,0.24 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9814"/><g id="g9816" transform="translate(5.28,5.04)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L 0,0.24 L -0.24,0.24 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9818"/><g id="g9820" transform="translate(-16.8,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.48 L -0.24,-0.48 L -0.72,-0.48 L -0.48,-0.48 L -0.48,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9822"/><g id="g9824" transform="translate(1.68,-7.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.72,0.48 L 0.72,0 L -0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9826"/><g id="g9828" transform="translate(4.56,2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.96 L -0.24,-1.2 L 0,-0.48 L -0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9830"/><g id="g9832" transform="translate(7.2,8.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,0 L -1.44,-0.72 L -0.96,0 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9834"/><g id="g9836" transform="translate(-9.84,-16.56)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.72 L 0.48,1.44 L 0.48,0.48 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9838"/><g id="g9840" transform="translate(3.12,5.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.48 L 0.48,-1.68 L 0,-0.72 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9842"/><g id="g9844" transform="translate(7.2,6.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,-0.48 L -1.44,-0.48 L -0.72,-0.24 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9846"/><g id="g9848" transform="translate(-2.88,-3.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.48,-0.24 L -0.48,0 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9850"/><g id="g9852" transform="translate(-3.12,-0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L -0.48,0 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9854"/><g id="g9856" transform="translate(10.08,10.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,-0.48 L -0.24,0 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9858"/><g id="g9860" transform="translate(-4.08,-9.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,0 L -0.24,0 L -0.24,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9862"/><g id="g9864" transform="translate(-4.8,-5.76)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.72 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9866"/><g id="g9868" transform="translate(5.76,13.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,0 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9870"/><g id="g9872" transform="translate(-12.72,-6.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.24 L 0.24,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9874"/><g id="g9876" transform="translate(4.56,0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,-0.72 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9878"/><g id="g9880" transform="translate(12.48,6.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.96,-0.24 L -0.72,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9882"/><g id="g9884" transform="translate(-16.32,-6.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.96,-0.24 L -0.96,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9886"/><g id="g9888" transform="translate(16.32,5.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -1.2,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9890"/><g id="g9892" transform="translate(-20.4,-9.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -1.2,-0.72 L -1.68,-0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9894"/><g id="g9896" transform="translate(9.12,5.04)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.96,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9898"/><g id="g9900" transform="translate(1.2,-10.56)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,0 L -0.24,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9902"/><g id="g9904" transform="translate(-1.2,16.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.96,-0.48 L -0.96,0 L -0.48,-0.24 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9906"/><g id="g9908" transform="translate(-3.36,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.48 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9910"/><g id="g9912" transform="translate(-5.52,-0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.24 L -0.48,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9914"/><g id="g9916" transform="translate(-0.24,-2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.48 L -0.72,0.96 L -1.2,0.72 L -1.44,0.24 L -1.2,-0.48 L -0.96,-0.48 L -0.48,0 L -0.48,-0.24 L -0.72,-0.48 L -0.24,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9918"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 180.08687,258.96 L 180.32687,258.72 L 180.56687,258.96 L 181.28687,258.24 L 181.52687,258.24 L 181.76687,258 L 182.00687,258 L 182.00687,257.52 L 182.72687,257.76 L 182.96687,257.76 L 182.72687,257.52 L 183.20687,257.52 L 182.96687,257.52 L 183.44687,257.04 L 183.44687,257.28 L 183.68687,257.52 L 183.68687,257.28 L 183.92687,257.04 L 183.92687,256.8 L 183.92687,257.04 L 183.68687,257.28 L 183.68687,256.8 L 184.16687,256.8 L 183.92687,256.56 L 184.16687,256.56 L 183.92687,256.56 L 184.40687,256.32 L 184.16687,256.32 L 184.64687,255.84 L 184.88687,255.84 L 184.64687,255.84 L 185.12687,255.12 L 184.88687,254.88 L 185.12687,254.4 L 185.36687,254.64 L 185.36687,254.4 L 185.60687,254.16 L 186.08687,254.16 L 185.84687,254.16 L 186.56687,253.44 L 187.28687,253.2 L 187.52687,253.44 L 187.52687,252.96 L 187.76687,252.96 L 188.00687,253.2 L 188.24687,252.96 L 188.00687,253.2 L 188.24687,253.2 L 188.48687,254.16 L 188.48687,252.96 L 188.72687,253.2 L 188.72687,254.88 L 188.96687,253.92 L 189.20687,253.92 L 189.20687,254.16 L 189.20687,253.44 L 189.44687,253.44 L 189.20687,253.92 L 189.44687,253.68 L 189.20687,253.92 L 189.68687,254.4 L 189.44687,253.92 L 189.68687,254.16 L 189.92687,253.92 L 190.40687,254.16 L 190.16687,254.64 L 190.40687,254.16 L 190.64687,254.16 L 190.64687,253.92 L 190.88687,254.16 L 191.12687,254.16 L 191.12687,254.4 L 191.36687,254.4 L 191.12687,254.64 L 191.60687,254.88 L 191.60687,255.12 L 191.60687,254.88 L 191.60687,255.36 L 191.60687,254.88 L 191.84687,254.88 L 191.60687,256.08 L 192.08687,255.6 L 192.08687,255.84 L 191.84687,256.08 L 191.84687,256.32 L 191.60687,256.8 L 190.64687,256.8 L 190.64687,257.04 L 191.12687,257.04 L 190.88687,257.52 L 191.60687,256.8 L 191.84687,256.8 L 191.84687,257.28 L 191.84687,256.8 L 192.08687,257.28 L 192.32687,257.04 L 192.80687,257.76 L 192.56687,259.2 L 192.08687,259.44 L 192.08687,258.96 L 191.36687,259.92 L 190.40687,260.16 L 190.40687,260.64 L 189.92687,260.88 L 189.68687,261.36 L 189.68687,261.12 L 189.20687,261.6" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9954"/><g id="g9956" transform="translate(190.40687,261.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.24,-0.24 L 0.24,-0.96 L 0.96,-1.68 L 1.2,-1.68 L 0.96,-1.44 L 1.2,-1.44 L 1.44,-2.16 L 1.92,-2.4 L 0.96,-0.96 L 0.96,-0.48 L 2.16,-2.64 L 2.64,-2.64 L 2.88,-3.6 L 3.12,-3.84 L 3.12,-3.36 L 3.36,-3.84 L 3.6,-3.84 L 3.6,-2.16 L 3.84,-2.88 L 3.84,-2.64 L 4.08,-2.64 L 3.84,-2.16 L 3.6,-2.16 L 3.6,-1.92 L 3.36,-1.92 L 3.6,-1.44 L 3.36,-1.2 L 3.6,-1.2 L 3.36,-0.96 L 3.6,-0.96 L 3.6,-0.72 L 3.84,-0.96 L 4.08,-0.72 L 3.84,-0.72 L 4.32,-0.72 L 4.32,-0.48 L 3.6,0 L 4.32,-0.48 L 4.56,-0.24 L 3.84,0 L 2.64,0.72 L 4.08,0 L 4.08,0.24 L 4.32,0.24 L 3.84,0.48 L 3.84,0.96 L 4.08,0.72 L 4.56,0.72 L 4.08,0.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9958"/><g id="g9960" transform="translate(-9.36,-9.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 0.48,0.24 L 0.48,0 L 1.2,-0.24 L 1.44,0 L 1.44,-0.24 L 1.92,-0.48 L 1.92,-0.24 L 2.4,-0.48 L 2.88,-0.24 L 2.64,-0.48 L 3.84,-0.72 L 4.32,-0.48 L 3.84,-0.24 L 4.32,0.24 L 4.56,-0.72 L 4.8,-0.72 L 4.8,-0.96 L 5.28,-0.72 L 5.52,-0.72 L 5.28,-0.24 L 5.04,-0.48 L 5.04,0 L 5.28,0 L 3.84,1.2 L 3.36,1.2 L 2.88,1.44 L 2.88,1.2 L 2.88,1.68 L 2.64,1.2 L 1.68,1.92 L 1.68,1.44 L 1.44,1.68 L -0.48,1.68 L -0.48,1.92" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9962"/><g id="g9964" transform="translate(2.88,-1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.24,-0.48 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9966"/><g id="g9968" transform="translate(-2.4,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.48,0.24 L 0,0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9970"/><g id="g9972" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9974"/><g id="g9976" transform="translate(0.24,-0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L -0.24,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path9978"/></g></g></g></g></g></g><path d="M 216.80687,245.28 L 216.32687,245.04 L 216.80687,245.04 L 216.56687,244.8 L 216.80687,244.8 L 216.56687,244.8 L 216.80687,244.56 L 216.80687,245.28 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path10006"/><g id="g10008" transform="translate(217.04687,245.04)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0,-0.24 L 0.24,-0.24 L 0,-0.48 L 0.24,-0.48 L 0.24,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path10010"/><g id="g10012" transform="translate(-0.72,1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path10014"/><g id="g10016" transform="translate(0.48,-0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L 0,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path10018"/><g id="g10020" transform="translate(-0.24,0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path10022"/></g></g></g></g><path d="M 143.84687,285.84 L 144.08687,285.6 L 145.04687,285.6 L 145.28687,285.36 L 145.04687,285.6 L 145.28687,285.36 L 145.52687,286.32 L 146.24687,285.84 L 146.00687,285.84 L 146.48687,285.6 L 146.24687,285.6 L 146.48687,285.36 L 146.48687,285.12 L 146.72687,285.12 L 147.44687,284.64 L 147.92687,283.68 L 147.68687,283.44 L 148.16687,282.96 L 148.16687,282 L 148.40687,281.04 L 148.64687,280.8 L 148.40687,280.8 L 148.64687,280.32 L 148.40687,280.32 L 148.88687,279.6 L 148.64687,279.36 L 149.84687,279.36 L 149.84687,279.12 L 150.08687,279.36 L 149.60687,279.12 L 149.84687,278.88 L 149.84687,278.64 L 148.88687,278.64 L 149.36687,278.64 L 149.12687,278.4 L 149.12687,278.16 L 149.60687,278.16 L 149.36687,277.92 L 150.08687,277.68 L 149.84687,277.44 L 150.08687,277.44 L 149.36687,277.44 L 149.60687,276.96 L 149.84687,276" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11650"/><g id="g11652" transform="translate(150.56687,276)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.48,0.72 L 0.48,0.24 L -0.24,0 L -0.72,0.72 L -0.24,1.2 L 0,1.2 L 0.24,1.68 L 0.48,1.68 L 0.24,1.44 L 0.96,1.92 L 1.2,2.16 L 0.96,2.4 L 1.44,2.64 L 1.2,2.4 L 1.44,2.4 L 1.92,2.16 L 2.4,1.68 L 2.4,1.92 L 2.88,2.16 L 4.56,1.68 L 5.04,1.2 L 5.28,1.2 L 5.28,0.96 L 5.76,0.96 L 6.24,0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11654"/><g id="g11656" transform="translate(-4.32,9.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L -0.24,-0.72 L -0.48,-0.24 L 0.48,-3.36 L 0.72,-3.84 L 0.96,-3.36 L 1.68,-4.32 L 0.96,-3.36 L 0.96,-2.16 L 0.72,-2.16 L 0.96,-1.44 L 0.48,-1.44 L 0.72,-0.96 L 0.48,-0.96 L 0.48,-0.72 L 0.24,-0.72 L 0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11658"/><g id="g11660" transform="translate(21.84,-8.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -1.44,0.96 L -2.16,2.4 L -1.2,1.44 L 0,1.2 L 0,0.48 L 0.72,0.48 L 0.96,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11662"/><g id="g11664" transform="translate(-19.2,0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.24,0 L 0,-0.72 L 0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11666"/><g id="g11668" transform="translate(-3.36,8.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.48 L 0.48,-0.48 L 0.48,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11670"/><g id="g11672" transform="translate(3.6,-6.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L 0,-0.24 L 0.48,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11674"/><g id="g11676" transform="translate(-1.68,2.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,0.24 L 0.24,-1.2 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11678"/><g id="g11680" transform="translate(18.24,-1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.72 L -0.24,1.2 L -2.16,3.36 L -2.4,3.84 L -3.36,4.56 L -4.32,4.56 L -4.32,5.04 L -5.52,6.72 L -6,7.92" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11682"/><g id="g11684" transform="translate(-5.76,7.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.96 L 0.96,-1.92 L 1.2,-2.4 L 1.44,-2.16 L 2.16,-0.72 L 1.92,-0.24 L 1.92,0 L 2.16,-0.72 L 1.68,-2.16 L 2.4,-2.88 L 2.4,-3.36 L 3.84,-4.08 L 4.32,-5.04 L 5.52,-6.72 L 5.76,-7.92" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11686"/><g id="g11688" transform="translate(12,-0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.96,0.24 L -0.72,0 L -0.96,0 L -0.72,-0.24 L -0.96,-0.24 L -1.2,-0.48 L -1.2,-0.72 L -1.44,-0.48 L -1.2,-0.96 L -1.44,-0.96 L -1.44,-0.72 L -1.68,-0.48 L -0.96,0 L -1.68,0 L -1.2,0 L -1.44,0.24 L -1.2,0.48 L -1.44,0.48 L -0.72,0.72 L -1.2,0.72 L -1.2,0.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11690"/><g id="g11692" transform="translate(-1.44,0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11694"/><g id="g11696" transform="translate(0.96,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.24,-0.24 L 0.48,-0.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11698"/><g id="g11700" transform="translate(2.88,-9.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L 0.48,0.48 L 0.24,0.72 L 0,0.48 L 0.24,0.72 L -0.24,0.96 L 0,0.96 L -0.24,1.2 L 0.24,1.68 L -0.48,1.92 L 0.48,1.44 L 0,1.2 L 0.24,1.2 L -0.24,1.2 L 0.48,0.96 L 0.48,0.48 L 1.2,0.96 L 1.2,0.72 L 0.48,0.48 L 0.72,0.24 L 0.48,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11702"/><g id="g11704" transform="translate(-14.16,5.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,0.24 L -1.44,0.24 L -1.44,0.48 L -1.92,0.24 L -3.12,0.72 L -4.08,0.48 L -3.12,0.72 L -2.4,0.48 L -0.96,0.72 L 0,0.48 L -0.48,0.48 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11706"/><g id="g11708" transform="translate(7.44,2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L 0,0.24 L -0.72,0.24 L -0.72,0.48 L 0,0.24 L -0.48,0.72 L -0.24,0.72 L 0,0.24 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11710"/><g id="g11712" transform="translate(-7.2,-7.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.24 L -0.48,0 L -0.72,0 L -0.72,0.24 L -0.48,0.24 L -0.48,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11714"/><g id="g11716" transform="translate(5.28,6.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L -0.24,0.24 L -0.24,0.48 L 0.24,0.48 L 0,0.48 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11718"/><g id="g11720" transform="translate(-9.36,-5.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.48 L -0.96,-0.24 L -0.48,0.24 L -0.24,0.24 L -0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11722"/><g id="g11724" transform="translate(15.6,2.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.48 L -0.96,-0.48 L -0.96,0.24 L -0.48,0.72 L -0.24,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11726"/><g id="g11728" transform="translate(3.36,4.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.72,0.48 L -0.24,0.24 L -0.48,0.48 L -0.24,0.48 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11730"/><g id="g11732" transform="translate(-1.68,0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.48 L -0.24,0.48 L -0.24,0.72 L 0,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11734"/><g id="g11736" transform="translate(1.92,0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.24 L -0.24,0 L -0.48,0.24 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11738"/><g id="g11740" transform="translate(-23.28,-6.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.72,0.24 L -0.24,0.24 L -0.48,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11742"/><g id="g11744" transform="translate(23.52,-0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L 0,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11746"/><g id="g11748" transform="translate(-13.44,4.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.48 L -0.96,1.2 L -0.96,0.24 L -0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11750"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 156.56687,276.48 L 157.04687,276.24 L 156.32687,276.24 L 156.56687,276 L 157.28687,276.24 L 157.04687,276.24 L 157.76687,276 L 157.04687,276 L 157.28687,275.76 L 157.04687,275.76 L 157.28687,275.76 L 156.80687,275.52 L 157.52687,275.52 L 156.80687,275.28 L 157.76687,275.28 L 157.28687,275.04 L 157.76687,274.8 L 157.28687,274.8 L 157.76687,274.32 L 157.76687,274.56 L 158.72687,274.32 L 158.96687,274.32 L 158.96687,274.08 L 159.68687,274.08 L 159.44687,273.84 L 158.48687,274.08 L 158.72687,273.84 L 158.48687,273.36 L 159.20687,273.36 L 158.96687,273.12 L 159.20687,273.36 L 159.20687,273.12 L 158.96687,273.12 L 159.20687,272.88 L 159.44687,272.88 L 159.20687,272.64 L 159.68687,272.88 L 158.72687,272.16 L 159.44687,272.16 L 159.20687,271.92 L 159.44687,271.92 L 158.96687,271.92 L 159.68687,271.92 L 159.68687,271.68 L 159.44687,271.68 L 159.68687,271.44 L 159.68687,271.2 L 159.92687,271.2 L 159.92687,270.96 L 160.16687,270.96 L 159.92687,270.48 L 160.64687,270 L 160.88687,270.24 L 160.64687,270.48 L 161.12687,270.48 L 160.88687,270 L 161.84687,270.72 L 161.36687,270.48 L 161.84687,270.24 L 161.60687,270 L 161.36687,270 L 161.84687,269.04 L 161.60687,269.04 L 162.32687,268.32 L 162.32687,267.84 L 164.00687,265.92 L 163.76687,265.68 L 164.72687,265.2 L 164.96687,265.68 L 164.72687,265.2 L 164.24687,265.2 L 164.96687,264.72 L 164.48687,264.48 L 164.48687,264.72 L 164.72687,264.72 L 164.72687,264.96 L 164.00687,265.2 L 163.28687,265.92 L 163.04687,265.92 L 163.04687,265.44 L 163.28687,264.96 L 163.76687,262.32 L 162.80687,264 L 162.32687,263.76 L 162.56687,264.24 L 162.56687,264.48 L 163.04687,264.48 L 163.28687,264.96 L 163.04687,264.72 L 162.80687,264.72 L 162.32687,265.68 L 160.88687,267.36 L 160.64687,267.12 L 160.88687,266.88 L 160.40687,267.12 L 160.40687,267.36 L 160.64687,267.36 L 159.92687,268.08 L 159.44687,268.08 L 160.16687,267.6 L 160.40687,267.36 L 159.44687,267.84 L 158.72687,268.08 L 157.76687,267.84 L 158.00687,267.6 L 157.52687,267.6 L 157.76687,267.6 L 157.52687,267.36 L 158.00687,267.36 L 157.28687,266.88 L 157.52687,266.88 L 157.04687,266.64 L 157.28687,266.4 L 156.80687,265.92 L 157.28687,266.16 L 157.28687,265.68 L 157.76687,265.92 L 157.76687,265.68 L 158.00687,265.68 L 157.76687,265.2 L 158.00687,265.2 L 157.76687,265.2 L 158.24687,265.2 L 158.00687,264.96 L 158.48687,264.96 L 158.24687,264.96 L 158.48687,264.96 L 158.24687,264.72 L 158.72687,264.72 L 158.96687,264.48 L 159.20687,264.48 L 159.20687,264.24 L 159.44687,264.48 L 159.44687,264.24 L 159.92687,264 L 160.16687,264.24 L 159.92687,263.76 L 160.16687,264 L 160.40687,263.76 L 160.40687,264 L 160.88687,264 L 160.88687,263.76 L 160.64687,263.52 L 160.88687,263.28 L 161.12687,263.52 L 161.36687,263.04 L 160.88687,263.04 L 160.88687,262.8 L 160.64687,262.32 L 161.12687,262.08 L 161.60687,262.56 L 161.36687,262.08 L 161.60687,262.08 L 161.60687,261.84 L 161.84687,261.84 L 161.60687,261.6 L 161.84687,261.6 L 161.84687,261.36 L 162.08687,261.6 L 161.84687,261.36 L 162.08687,261.36 L 161.84687,261.12 L 162.08687,260.64 L 162.32687,260.88 L 162.32687,260.4 L 162.56687,260.4 L 162.32687,260.16 L 162.80687,260.4 L 162.56687,260.16 L 163.04687,259.68 L 163.04687,259.2 L 163.28687,259.2 L 163.28687,259.44 L 163.28687,258.96 L 163.52687,259.2 L 163.52687,258.96 L 163.52687,259.2 L 163.52687,258.96 L 163.76687,258.96 L 163.76687,258.48 L 164.24687,258.96 L 164.00687,258.48 L 164.24687,257.76 L 164.24687,258 L 164.48687,258 L 164.24687,257.52 L 164.72687,257.52 L 164.24687,257.52 L 164.72687,257.28 L 164.72687,258.24 L 164.96687,258.48 L 164.72687,258.24 L 165.20687,257.76 L 165.68687,258.48 L 165.44687,258.72 L 165.44687,259.44 L 165.20687,259.44 L 165.92687,259.68 L 164.96687,260.64 L 165.20687,262.08 L 164.96687,262.08 L 164.72687,262.32 L 164.96687,262.8 L 165.20687,262.32 L 164.96687,263.04 L 165.20687,262.8 L 165.20687,263.04 L 164.96687,263.52 L 165.44687,263.76 L 165.44687,264.48 L 165.92687,263.76 L 165.92687,264.48 L 166.16687,264.96 L 165.92687,265.44 L 166.40687,265.68 L 166.16687,265.92 L 166.16687,265.68 L 166.88687,265.92 L 166.64687,265.68 L 167.36687,266.16 L 167.12687,266.4 L 167.36687,266.4 L 167.60687,266.64 L 168.32687,266.4 L 168.08687,267.36 L 168.32687,267.36 L 168.08687,267.84 L 169.04687,266.88 L 169.04687,267.12 L 169.28687,266.88 L 169.76687,266.88 L 169.52687,266.88 L 169.76687,266.88 L 170.24687,266.64 L 170.24687,266.88 L 170.48687,266.64 L 170.24687,266.88 L 170.72687,266.88 L 170.48687,267.36 L 170.72687,267.36 L 170.48687,267.6 L 169.76687,268.56 L 170.00687,268.56 L 170.48687,269.04 L 170.48687,269.52 L 170.72687,270.24 L 170.96687,270.24 L 170.48687,270.96 L 170.96687,270.48 L 170.96687,269.76 L 171.44687,269.28 L 170.96687,268.32 L 171.20687,267.84 L 171.92687,267.12 L 172.40687,266.88 L 172.64687,266.16 L 173.36687,266.16 L 174.08687,266.88 L 173.84687,266.16 L 174.08687,266.16 L 174.56687,267.12 L 174.80687,268.8 L 174.32687,270.24 L 172.16687,274.08 L 171.20687,275.28 L 169.76687,276.72 L 169.04687,276.72 L 168.08687,277.44" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11882"/><g id="g11884" transform="translate(165.92687,261.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.96 L 0.24,-0.96 L 0.24,-0.72 L 0.24,-0.96 L 0.72,-0.96 L 0.72,-0.48 L 0.72,-0.72 L 0.96,-0.48 L 0.96,-0.96 L 0.96,-0.72 L 0.96,-0.96 L 1.2,-0.96 L 1.92,-1.68 L 1.44,-0.24 L 1.44,0 L 1.44,-0.48 L 1.2,0.48 L 0.96,0.48 L 1.2,1.2 L 1.2,1.68 L 1.44,1.44 L 1.44,1.92 L 0.96,1.92 L 0.96,2.16 L 1.2,2.16 L 0.96,2.4 L 1.44,2.4 L 1.68,2.64 L 1.68,2.88 L 1.92,3.12 L 2.16,2.88 L 2.64,2.88 L 1.68,3.6 L 1.2,3.6 L 1.2,2.88 L 1.44,2.88 L 0.72,2.88 L 0.72,1.92 L 0.48,2.16 L 0.24,1.68 L 0.24,0.72 L 0.48,0.72 L 0.48,0.96 L 0.96,0.48 L 0.48,0.48 L 0.48,0 L 0,0.24 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11886"/><g id="g11888" transform="translate(2.16,-6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L -0.48,0.48 L -0.24,0.48 L -0.48,0.48 L 0,0.48 L 0.24,0.72 L -0.96,1.2 L 0,0.72 L -0.24,0.72 L -1.2,1.44 L -1.44,1.2 L -0.72,0.72 L -1.68,1.2 L -2.16,1.2 L -2.16,1.44 L -1.92,1.44 L -1.92,1.68 L -2.16,2.16 L -1.68,1.68 L -1.68,1.92 L -1.68,1.68 L -1.44,1.92 L -1.2,1.44 L -0.96,1.44 L -1.2,1.92 L -0.96,1.68 L -0.72,1.2 L 0,0.96 L -0.48,1.2 L 0.96,0.96 L 1.68,1.2 L 1.68,1.68 L 2.16,1.44 L 2.16,1.92 L -1.44,3.12 L -2.4,2.64 L -2.88,2.16 L -2.4,2.16 L -2.64,1.92 L -2.16,1.44 L -2.4,0.96 L -1.92,0.48 L -1.44,-0.24 L -1.2,0 L -0.96,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11890"/><g id="g11892" transform="translate(0.96,21.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 1.2,-0.72 L 1.44,0 L 1.2,-0.72 L 1.68,-1.2 L 2.64,-1.44 L 2.64,-1.68 L 3.36,-1.68 L 3.84,-2.64 L 3.84,-2.4 L 4.32,-2.64 L 4.56,-2.88 L 4.32,-2.88 L 4.56,-3.36 L 4.8,-3.12 L 4.8,-3.36 L 5.04,-3.36 L 5.28,-4.8 L 6.96,-5.04 L 7.44,-5.52" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11894"/><g id="g11896" transform="translate(1.2,-16.8)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L 0,-0.48 L 0,-0.24 L 0.48,-0.24 L 1.2,-0.72 L 1.2,-0.96 L 0.96,-0.96 L 1.44,-1.2 L 1.2,-0.72 L 0.48,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11898"/><g id="g11900" transform="translate(5.28,1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.72 L 0.96,-0.24 L 0.96,0.72 L 1.44,1.68 L 1.92,4.8 L 1.44,5.28 L 0.96,3.84 L 0.24,3.36 L 0,1.92 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11902"/><g id="g11904" transform="translate(-17.04,10.8)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.48,0 L 0.24,0 L 0.24,-0.48 L 0.72,-0.24 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11906"/><g id="g11908" transform="translate(12.48,-6.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.48,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11910"/><g id="g11912" transform="translate(-5.76,-9.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 0.24,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11914"/><g id="g11916" transform="translate(-5.04,12.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0.48,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11918"/><g id="g11920" transform="translate(-10.32,6.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.48,-0.24 L 0.72,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11922"/><g id="g11924" transform="translate(6.96,0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11926"/><g id="g11928" transform="translate(19.2,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,-0.24 L -0.48,0 L -0.24,0 L -0.72,0.24 L -0.48,0.48 L -0.24,0.48 L -0.48,0.24 L 0,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11930"/><g id="g11932" transform="translate(-11.76,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L 0,-0.24 L -0.72,-0.48 L -0.72,-0.72 L -0.72,-0.48 L -0.96,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11934"/><g id="g11936" transform="translate(-4.56,-10.56)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L 0,-0.24 L -0.24,-0.24 L -0.48,0.24 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11938"/><g id="g11940" transform="translate(3.6,6.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.48 L 0,-0.72 L -0.24,-0.72 L -0.24,-0.24 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11942"/><g id="g11944" transform="translate(0,4.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L -0.48,-0.24 L -1.2,-0.24 L -0.48,0.48 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11946"/><g id="g11948" transform="translate(12.24,-1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -1.2,0 L -0.24,0.48 L -0.48,0.24 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11950"/><g id="g11952" transform="translate(-10.56,-6.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,0.24 L -0.72,0.48 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11954"/><g id="g11956" transform="translate(9.84,9.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.96,-0.72 L -0.96,-0.48 L -0.24,-0.24 L -0.48,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11958"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 180.56687,254.64 L 180.32687,254.64 L 180.08687,254.4 L 180.08687,254.64 L 179.60687,254.64 L 179.12687,254.4 L 178.88687,253.92 L 179.12687,254.4 L 178.88687,254.4 L 179.12687,254.64 L 178.40687,254.88 L 177.92687,254.88 L 178.16687,254.16 L 177.92687,254.64 L 178.16687,254.16 L 177.68687,254.64 L 177.44687,254.4 L 177.44687,253.92 L 177.44687,254.4 L 177.68687,254.64 L 177.44687,254.88 L 177.68687,255.12 L 175.76687,255.12 L 176.00687,255.6 L 175.76687,255.6 L 175.76687,255.84 L 176.48687,255.6 L 175.28687,256.32 L 175.76687,255.12 L 176.00687,254.4 L 175.52687,254.88 L 173.36687,256.08 L 173.36687,255.6 L 172.64687,255.6 L 172.64687,255.12 L 172.88687,254.4 L 173.12687,254.16 L 173.36687,254.16 L 173.12687,253.92 L 173.84687,253.68 L 173.36687,253.68 L 173.60687,253.2 L 173.84687,253.2 L 173.60687,252.96 L 173.84687,252.72 L 173.60687,252.72 L 173.60687,252.24 L 173.84687,251.76 L 174.32687,251.76 L 173.84687,251.52 L 173.84687,251.28 L 174.08687,251.28 L 173.84687,251.28 L 173.84687,250.56 L 174.08687,250.8 L 173.84687,250.56 L 174.08687,250.56 L 173.84687,250.56 L 174.08687,250.32 L 174.32687,250.56 L 174.08687,250.32 L 174.32687,250.32 L 174.32687,250.08 L 174.56687,250.08 L 174.32687,250.08 L 174.56687,249.6 L 175.04687,249.84 L 174.56687,249.6 L 174.56687,249.36 L 175.28687,249.6 L 175.04687,249.36 L 175.28687,249.12 L 175.04687,249.36 L 174.80687,249.12 L 175.28687,248.88 L 175.76687,248.88 L 175.52687,248.88 L 175.76687,248.64 L 175.28687,248.88 L 175.52687,248.64 L 174.80687,248.88 L 174.80687,248.64 L 175.04687,248.4 L 174.32687,249.12 L 174.08687,249.12 L 174.80687,248.4 L 174.32687,248.64 L 174.32687,248.4 L 174.80687,248.4 L 174.32687,248.4 L 174.80687,248.16 L 174.32687,248.16 L 174.32687,247.92 L 174.80687,247.68 L 175.04687,247.68 L 175.04687,247.92 L 175.52687,247.92 L 175.28687,247.68 L 175.52687,247.2 L 175.28687,247.2 L 175.28687,246.96 L 175.76687,246.48 L 174.56687,247.2 L 173.60687,247.44 L 173.36687,247.92 L 172.64687,248.16 L 172.64687,247.68 L 173.12687,247.44 L 172.88687,246.96 L 173.36687,246.72 L 173.60687,246.96 L 173.60687,246.72 L 173.84687,246.48 L 174.08687,246.72 L 174.08687,246.48 L 175.04687,246.48 L 174.80687,246.48 L 175.04687,246 L 175.76687,245.76 L 175.04687,246 L 175.28687,245.76 L 176.72687,245.76 L 176.72687,245.52 L 176.24687,244.8 L 175.52687,244.56 L 175.76687,244.32 L 175.52687,244.56 L 175.28687,244.56 L 175.28687,244.8 L 175.28687,244.56 L 173.60687,244.56 L 173.60687,244.32 L 173.84687,244.08 L 175.28687,243.6 L 175.04687,243.6 L 175.28687,243.36 L 174.56687,243.6 L 174.56687,243.36 L 174.08687,243.36 L 173.60687,243.12 L 173.60687,242.88 L 174.08687,242.88 L 173.84687,242.88 L 174.08687,242.64 L 173.84687,242.16 L 174.56687,241.92 L 175.04687,242.16 L 175.28687,242.4 L 175.52687,242.16 L 175.52687,242.4 L 175.52687,242.16 L 176.96687,242.16 L 177.68687,242.88 L 176.72687,242.88 L 176.24687,243.12 L 176.48687,243.36 L 176.24687,243.36 L 176.72687,243.36 L 176.48687,243.6 L 176.72687,243.36 L 176.72687,243.6 L 177.68687,243.6 L 178.40687,243.36 L 178.64687,243.6 L 178.16687,243.6 L 177.68687,244.08 L 176.24687,244.08 L 176.24687,244.32 L 176.00687,244.32 L 176.48687,244.56 L 176.24687,244.56 L 176.96687,245.28 L 176.72687,244.8 L 177.68687,244.8 L 177.44687,245.28 L 177.68687,244.8 L 177.44687,245.52 L 177.92687,245.52 L 177.92687,245.04 L 178.40687,244.56 L 178.88687,244.8 L 178.88687,244.32 L 179.60687,244.08 L 179.84687,244.56 L 179.36687,244.56 L 179.36687,245.04 L 178.64687,245.28 L 179.12687,245.28 L 178.64687,245.52 L 179.12687,245.28 L 178.40687,245.52 L 178.64687,245.76 L 178.16687,246 L 178.16687,246.24 L 179.12687,245.52 L 178.88687,246 L 179.36687,245.52 L 179.36687,246 L 179.60687,246 L 179.12687,246 L 179.36687,246.24 L 179.12687,246.24 L 179.84687,246 L 179.12687,246.72 L 180.08687,246.24 L 180.08687,246.48 L 180.32687,246 L 180.32687,246.24 L 180.56687,245.76 L 180.80687,246 L 180.80687,245.76 L 181.28687,246 L 181.52687,247.2 L 181.04687,247.44 L 181.04687,247.68 L 180.56687,247.68 L 181.28687,247.92 L 181.04687,248.16 L 181.28687,248.16 L 180.32687,248.4 L 180.80687,248.64 L 180.32687,248.64 L 180.08687,248.88 L 180.32687,249.12 L 180.08687,248.88 L 179.84687,249.12 L 179.36687,249.12 L 179.60687,248.88 L 179.36687,249.12 L 180.80687,249.36 L 180.56687,249.36 L 180.80687,249.6 L 180.32687,249.36 L 180.08687,249.36 L 180.32687,249.36 L 180.08687,249.6 L 180.32687,249.6 L 180.08687,249.6 L 180.56687,249.6 L 180.32687,249.84 L 180.56687,249.84 L 180.08687,249.84 L 180.56687,250.08 L 180.08687,250.08 L 180.32687,250.08 L 180.08687,250.32 L 180.32687,250.32 L 180.32687,250.56 L 179.84687,251.04 L 180.56687,250.56 L 180.32687,250.8 L 180.80687,250.8 L 180.32687,251.28 L 180.80687,251.04 L 180.56687,251.28 L 181.76687,250.32 L 182.00687,250.56" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12034"/><g id="g12036" transform="translate(181.04687,248.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L -0.24,-0.24 L 0.24,-0.72 L 0.48,-0.48 L 0,-0.24 L 0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12038"/><g id="g12040" transform="translate(0.48,3.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L -0.72,0.24 L -1.68,0.48 L -1.2,0.48 L -1.2,0.72 L -0.48,0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12042"/><g id="g12044" transform="translate(-8.88,-3.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.48 L -0.72,0 L -0.24,-0.24 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12046"/><g id="g12048" transform="translate(9.36,-1.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.48 L 0,0.48 L 0,0.72 L -0.48,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12050"/><g id="g12052" transform="translate(-14.88,8.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.48 L 0.24,-0.24 L 0.48,0 L 0.96,-0.24 L 0.96,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12054"/><g id="g12056" transform="translate(10.56,-10.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.72 L 0.24,-0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12058"/><g id="g12060" transform="translate(3.84,6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12062"/><g id="g12064" transform="translate(0,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12066"/><g id="g12068" transform="translate(0.48,-0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L -0.24,0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12070"/><g id="g12072" transform="translate(-2.88,1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.48,0.24 L -2.4,0.96 L -2.64,1.2 L -1.44,0.48 L -0.72,0.48 L -0.72,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12074"/><g id="g12076" transform="translate(-0.24,-4.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.24 L 0.48,-1.44 L 0.48,-0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12078"/><g id="g12080" transform="translate(-2.4,2.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,0.48 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12082"/><g id="g12084" transform="translate(1.44,0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -1.2,0.96 L -0.48,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12086"/></g></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 389.84687,142.56 L 390.32687,142.56 L 390.80687,142.08" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12922"/><g id="g12924" transform="translate(377.60687,175.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 0.48,-0.72 L 0.72,-0.96 L 0.96,-0.72 L 1.68,-0.96 L 1.44,-1.2 L 0.96,-1.44 L 0.72,-1.68 L 0.48,-1.2 L 0.72,-2.16 L 1.2,-2.64 L 0.96,-2.16 L 1.44,-1.92 L 1.68,-1.44 L 1.92,-1.92 L 1.92,-1.68 L 2.4,-2.16 L 2.16,-1.68 L 2.64,-2.16 L 3.36,-1.92 L 3.84,-3.12 L 5.04,-4.8 L 7.92,-7.44 L 7.68,-7.68 L 6.96,-7.92 L 7.44,-7.2 L 3.84,-11.52 L 1.44,-12.48 L -0.72,-12.48 L -1.44,-12 L -1.92,-12.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12926"/><g id="g12928" transform="translate(9.12,-24.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.24 L -0.72,-0.72 L -0.72,-0.48 L -0.48,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12930"/><g id="g12932" transform="translate(-10.32,23.04)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.96,-0.24 L 0.24,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12934"/><g id="g12936" transform="translate(0.24,0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.96,0.24 L 0.96,0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12938"/><g id="g12940" transform="translate(2.16,-2.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.48 L 0.72,-0.96 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path12942"/></g></g></g></g></g><path d="M 434.72687,129.36 L 434.24687,130.32 L 434.24687,132.24 L 434.48687,132.48 L 434.96687,131.76 L 435.68687,132.24 L 435.68687,132.48 L 435.20687,133.44 L 435.44687,134.16 L 435.20687,133.92 L 434.96687,134.88 L 434.72687,136.32 L 435.20687,137.52 L 434.24687,140.88 L 433.28687,141.84 L 432.56687,141.12 L 428.00687,141.84 L 427.28687,141.84 L 426.56687,141.12 L 422.72687,139.2 L 420.08687,139.44 L 418.40687,140.16 L 416.72687,141.84 L 416.24687,142.08 L 416.00687,143.28 L 415.52687,143.28 L 415.52687,143.76 L 415.28687,143.52 L 415.04687,143.52 L 415.04687,143.76 L 415.52687,144 L 415.28687,144 L 415.28687,144.24 L 415.04687,144 L 415.04687,144.24 L 414.56687,144.24 L 414.80687,144 L 415.04687,144 L 414.80687,144 L 414.80687,143.76 L 415.04687,143.76 L 414.80687,143.52 L 414.56687,143.52 L 415.04687,141.6 L 414.80687,141.12 L 414.80687,140.16 L 414.56687,140.16 L 414.80687,139.44 L 414.56687,137.52 L 414.32687,136.32 L 414.32687,136.08 L 414.08687,136.08 L 414.56687,135.12 L 414.32687,134.88 L 414.56687,134.88 L 414.32687,134.64 L 414.56687,134.64 L 414.08687,134.64 L 414.08687,134.16 L 414.56687,134.4 L 414.80687,134.16 L 414.32687,133.44 L 414.32687,133.68 L 413.84687,133.68 L 414.32687,133.44 L 413.84687,133.44 L 413.84687,133.2 L 414.32687,133.2 L 414.08687,132.72 L 413.12687,131.52 L 412.40687,131.28 L 412.16687,131.04 L 411.44687,130.8 L 410.24687,129.84 L 410.00687,129.84 L 409.52687,128.64 L 409.04687,128.16 L 409.28687,127.92 L 408.80687,127.92 L 408.56687,127.68 L 408.08687,127.44 L 407.60687,128.4 L 407.36687,127.92 L 407.12687,128.16 L 407.12687,127.68 L 406.64687,128.16 L 406.88687,127.92 L 406.40687,127.68 L 406.16687,127.44 L 405.92687,127.92 L 405.92687,128.64 L 405.68687,128.64 L 405.68687,127.92 L 405.44687,128.4 L 404.96687,128.4 L 405.44687,128.64 L 405.68687,128.4 L 405.44687,130.32 L 404.72687,131.04 L 404.48687,130.8 L 403.76687,131.52 L 403.76687,132 L 403.52687,132 L 403.76687,132.24 L 403.52687,132.24 L 403.28687,132.72 L 403.52687,132.48 L 403.28687,132.96 L 402.56687,132.72 L 402.32687,132.96 L 401.84687,132.96 L 401.36687,132 L 401.84687,131.28 L 401.60687,131.28 L 401.84687,130.8 L 402.32687,130.8 L 402.32687,130.08 L 401.84687,130.56 L 401.84687,130.32 L 402.32687,130.08 L 401.84687,130.08 L 403.76687,128.16 L 403.76687,127.68 L 402.32687,128.16 L 401.36687,129.12 L 400.88687,129.36 L 401.12687,128.88 L 399.68687,129.36 L 400.16687,129.36 L 398.96687,130.08 L 398.72687,130.08 L 398.48687,130.56 L 398.96687,130.32 L 398.48687,131.52 L 398.24687,132 L 398.24687,131.52 L 397.76687,131.52 L 397.28687,132.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13854"/><g id="g13856" transform="translate(390.80687,142.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 2.4,-0.48 L 3.12,-1.44 L 3.84,-1.2 L 4.08,-1.68 L 3.84,-1.44 L 3.84,-1.92 L 4.56,-1.92 L 4.32,-1.68 L 4.56,-1.68 L 5.52,-2.64 L 7.44,-3.6 L 8.64,-3.36 L 9.36,-2.64 L 10.08,-2.64 L 10.8,-2.4 L 12,-2.4 L 11.76,-2.88 L 12.24,-2.88 L 15.12,-2.16 L 15.36,-2.64 L 16.32,-2.64 L 17.76,-1.2 L 18.24,-1.44 L 19.44,-0.96 L 20.16,0.96 L 20.64,1.44 L 20.64,2.4 L 21.12,3.12 L 21.36,3.84 L 21.84,4.56 L 22.56,5.28 L 22.8,5.04 L 23.28,5.28 L 23.76,5.04 L 23.76,5.28 L 23.76,5.04 L 24.48,4.8 L 25.68,3.84 L 26.4,3.6 L 26.64,3.12 L 27.6,2.64 L 28.8,3.6 L 29.28,3.6 L 29.28,3.36 L 29.52,3.84 L 30.24,3.84 L 30.48,4.56 L 30.96,4.8 L 31.2,5.28 L 33.12,5.76 L 33.36,6.24 L 33.12,6 L 32.88,6.24 L 33.12,6.48 L 33.36,6.24 L 33.6,6.72 L 33.36,6.72 L 35.04,7.44 L 35.04,7.68 L 35.52,7.68" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13858"/><g id="g13860" transform="translate(22.08,2.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,1.2 L -0.24,0.96 L -0.72,0.24 L -1.2,0 L -0.72,-0.24 L -1.68,-1.68 L -1.44,-2.16 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13862"/><g id="g13864" transform="translate(-12.48,-13.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.72,0.24 L -0.48,0.48 L -0.96,0.24 L -0.24,-0.48 L 0.24,-0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13866"/><g id="g13868" transform="translate(12.48,0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 0.72,0.72 L 0.24,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13870"/><g id="g13872" transform="translate(23.52,0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0.24,1.44 L -0.48,1.92 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13874"/><g id="g13876" transform="translate(-39.36,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,0 L 0,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13878"/></g></g></g></g></g></g><path d="M 369.68687,88.08 L 368.96687,89.76 L 368.96687,90 L 367.76687,91.68 L 367.52687,92.4 L 368.00687,92.16 L 368.48687,91.68 L 368.48687,92.16 L 366.80687,92.88 L 365.84687,94.08 L 365.60687,95.04 L 363.68687,95.52 L 362.72687,96.24 L 361.52687,96.24 L 360.32687,96.72 L 358.88687,98.4 L 358.16687,100.08 L 358.40687,100.32 L 358.40687,100.08 L 359.36687,100.32 L 358.16687,100.56 L 356.48687,101.76 L 352.88687,105.36 L 349.76687,108 L 349.76687,108.72 L 349.04687,109.44 L 348.80687,109.92 L 348.32687,109.92 L 347.36687,110.88 L 347.60687,110.88 L 347.12687,111.36 L 347.60687,111.36 L 347.36687,111.6 L 344.48687,113.52 L 344.00687,114 L 343.28687,114.48 L 343.28687,114.96 L 342.80687,115.68 L 341.60687,116.4 L 341.84687,117.6 L 341.60687,117.84 L 341.84687,117.84 L 342.32687,117.6 L 343.04687,116.4 L 344.72687,115.2 L 345.44687,113.76 L 347.84687,112.32 L 349.52687,111.84 L 349.28687,112.08 L 349.76687,113.04 L 349.28687,114.24 L 349.52687,115.68 L 349.04687,117.84 L 349.28687,118.56 L 349.76687,118.8 L 350.00687,115.68 L 350.24687,115.2 L 350.24687,113.52 L 350.48687,113.28 L 350.48687,113.76 L 350.72687,113.52 L 351.44687,114 L 352.16687,114 L 351.92687,113.76 L 353.12687,113.28 L 354.08687,112.32 L 355.04687,111.84 L 355.04687,111.6 L 356.96687,110.4 L 358.64687,108.96 L 359.36687,108.96 L 359.36687,108.24 L 359.84687,108 L 360.08687,108 L 360.56687,107.76 L 362.24687,106.56 L 362.72687,105.6 L 362.48687,105.36 L 363.92687,104.4 L 363.92687,104.16 L 364.64687,103.92 L 364.88687,104.16 L 365.84687,103.92 L 365.84687,104.16 L 366.08687,103.92 L 368.24687,103.44 L 370.40687,101.52 L 370.64687,101.04 L 370.88687,101.28 L 371.36687,100.8 L 370.64687,101.04 L 371.36687,100.56 L 371.60687,100.56 L 372.32687,99.12 L 372.56687,99.6 L 372.56687,98.16 L 372.56687,98.4 L 372.80687,98.16 L 372.80687,97.92 L 372.56687,98.16 L 372.56687,97.68 L 373.52687,96.96 L 373.52687,97.2 L 373.52687,96.96 L 374.24687,96 L 374.24687,95.52 L 374.96687,94.8 L 377.84687,93.12 L 378.80687,93.12 L 378.56687,93.12 L 378.80687,93.36" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13750"/><g id="g13752" transform="translate(359.84687,107.28)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.96,-0.48 L 1.2,-0.24 L 0.96,-0.48 L 0.24,0 L 0.96,-0.24 L 0.48,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13754"/><g id="g13756" transform="translate(-10.32,-10.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,-0.96 L 0.72,-1.44 L 1.2,-1.44 L 0.72,-1.68 L 1.44,-2.64 L 1.2,-2.64 L 1.44,-2.88 L 0.96,-3.12 L 1.44,-3.6 L 1.92,-3.6 L 1.44,-3.84 L 0.72,-3.6 L 0.72,-4.08 L 0.48,-4.32 L 0.48,-4.8 L -0.24,-5.76 L 0,-6 L -0.24,-6 L -0.24,-5.52 L -0.72,-5.28 L -1.2,-5.76 L -1.44,-6.24 L -1.2,-6.48 L -1.68,-6.96 L -1.44,-7.2 L -2.16,-7.44 L -1.92,-7.68 L -2.64,-8.4 L -2.64,-9.6 L -3.36,-11.04 L -3.12,-10.32 L -3.12,-9.84 L -2.88,-9.36 L -2.88,-8.4 L -2.16,-6.96 L -1.68,-6.72 L -2.4,-6.24 L -1.68,-6.24 L -1.68,-6 L -0.96,-5.04 L 0,-5.52 L 0.48,-4.8 L 0.24,-4.32 L 0.48,-3.84 L 0.48,-2.88 L 0.96,-2.4 L 0.72,-2.16 L 0.72,-1.92 L 0.48,-1.92 L 0.48,-1.68 L -0.24,-2.16 L 0.24,-1.68 L 0,-1.44 L 0.48,-1.68 L 0.24,-0.72 L 0,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13758"/><g id="g13760" transform="translate(-12.24,17.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,-0.48 L -1.44,-0.48 L -0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13762"/></g></g></g><path d="M 397.04687,132.48 L 395.84687,132.24 L 395.12687,132.72 L 394.88687,132.48 L 395.12687,132.48 L 394.64687,132.24 L 394.64687,132.48 L 394.40687,132.24 L 394.16687,132.72 L 393.92687,132.48 L 393.92687,132.72 L 393.44687,132.72 L 393.92687,132.96 L 393.44687,133.2 L 392.24687,132.72 L 392.24687,132.96 L 391.76687,132.96 L 391.76687,133.44 L 391.76687,133.2 L 391.76687,133.44 L 392.00687,132.96 L 392.00687,133.2 L 391.76687,133.44 L 391.28687,133.68 L 391.28687,133.92 L 390.56687,133.68 L 389.84687,134.64 L 388.88687,134.88 L 388.64687,135.36 L 388.40687,135.36 L 387.68687,135.6 L 386.72687,136.8 L 386.24687,136.56 L 386.00687,136.08 L 386.00687,136.32 L 385.52687,136.08 L 386.00687,137.04 L 386.48687,137.52 L 385.04687,138.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13786"/><g id="g13788" transform="translate(386.48687,137.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.96 L -0.72,1.2 L -0.96,0.96 L -0.72,0.96 L -0.72,0.72 L -0.48,0.72 L -0.72,0.72 L -0.72,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13790"/><g id="g13792" transform="translate(-0.48,1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 0.72,0.24 L 0.48,0.24 L 0.96,0.48 L 0.96,0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13794"/><g id="g13796" transform="translate(11.28,-6.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13798"/><g id="g13800" transform="translate(-18.48,-38.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 2.16,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13802"/><g id="g13804" transform="translate(7.44,45.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path13806"/></g></g></g></g></g><path d="M 306.80687,271.2 L 307.04687,271.2 L 307.28687,271.44 L 307.04687,272.16 L 306.80687,272.4 L 306.32687,272.64 L 306.32687,272.4 L 306.56687,271.92 L 306.32687,271.68 L 306.32687,271.2 L 306.80687,271.2 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2748"/><g id="g2750" transform="translate(306.56687,269.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0.24,0.24 L 0.24,0.72 L -0.24,1.68 L -0.96,0.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2752"/><g id="g2754" transform="translate(-1.2,1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.24,0.72 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2756"/><g id="g2758" transform="translate(-0.24,1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L -0.24,0.48 L -0.72,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2760"/></g></g></g><path d="M 310.40687,277.68 L 310.16687,277.44 L 310.40687,277.2 L 310.64687,277.44" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2768"/><path d="M 310.64687,277.44 L 310.40687,277.68" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2776"/><path d="M 332.00687,267.6 L 331.52687,267.36 L 331.04687,266.64 L 331.28687,266.64 L 331.04687,266.16 L 331.28687,265.68 L 331.04687,265.68 L 331.52687,265.44 L 331.52687,265.92 L 331.76687,265.92 L 332.24687,265.44 L 332.24687,265.2 L 331.28687,264.96 L 331.28687,264 L 332.00687,263.76 L 333.44687,264.48 L 333.44687,264.96 L 333.68687,264.72 L 333.68687,264.96 L 334.64687,264.72 L 334.40687,264.48 L 333.68687,264.48 L 332.96687,263.28 L 332.48687,262.8 L 332.00687,262.8 L 332.00687,263.28 L 331.04687,263.52 L 330.32687,264.24 L 329.60687,264.48 L 329.60687,264.72 L 329.12687,264.72 L 328.88687,264.96 L 328.40687,264.72 L 328.40687,264.48 L 330.08687,263.76 L 330.32687,263.28 L 330.32687,262.08 L 330.80687,261.84 L 331.04687,261.12 L 331.76687,261.36 L 333.68687,260.88 L 334.40687,259.68 L 334.88687,259.68" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3556"/><g id="g3558" transform="translate(334.16687,258.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L -0.72,0.24 L -0.72,0.72 L -1.92,1.44 L -2.64,1.68 L -3.84,1.68 L -4.08,2.4 L -5.28,3.6 L -5.76,3.84 L -6.24,4.32 L -7.2,3.6 L -7.92,2.64" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3560"/><g id="g3562" transform="translate(-8.16,2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L -0.24,0.24 L 0.24,0.48 L 0.24,0.96 L 0.48,1.44 L -0.24,1.44 L 0,1.44 L -0.48,1.68 L -0.72,1.44 L -0.96,0.72 L -0.48,0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3564"/><g id="g3566" transform="translate(4.56,4.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0.48,0.48 L 0.24,1.2 L -0.48,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3568"/><g id="g3570" transform="translate(-17.52,9.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.48 L 0.24,-0.24 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3572"/><g id="g3574" transform="translate(14.88,-10.56)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0,0.48 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3576"/><g id="g3578" transform="translate(1.68,3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.48 L 0.96,0.24 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3580"/><g id="g3582" transform="translate(4.32,-1.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 0.48,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3584"/><g id="g3586" transform="translate(-0.72,-8.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L 0.24,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3588"/><g id="g3590" transform="translate(-0.24,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.48,0 L 0,0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3592"/></g></g></g></g></g></g></g></g></g><path d="M 326.00687,277.92 L 326.24687,277.68 L 326.24687,277.44 L 326.00687,277.44 L 326.24687,276.96 L 326.24687,277.2 L 326.48687,276.72 L 326.48687,276.48 L 326.72687,276.48 L 326.96687,276.24 L 326.48687,275.52 L 326.72687,275.52 L 326.96687,276 L 327.20687,275.76 L 326.96687,275.76 L 326.96687,275.52 L 327.20687,275.52 L 327.20687,275.28 L 327.68687,275.28 L 327.44687,275.04 L 327.92687,275.04 L 326.96687,274.56 L 327.20687,274.56 L 327.44687,274.32 L 327.68687,274.32 L 327.68687,274.56 L 327.92687,275.04 L 328.16687,274.8 L 328.40687,274.8 L 328.40687,275.04 L 328.88687,274.8 L 328.64687,274.8 L 328.64687,274.56 L 328.40687,274.8 L 328.40687,274.56 L 328.16687,274.56 L 328.16687,274.32 L 328.40687,274.32 L 328.16687,274.32 L 328.40687,274.08 L 328.88687,274.56 L 329.36687,274.56 L 329.36687,275.04 L 329.36687,274.56 L 330.08687,274.56 L 329.60687,274.32 L 329.60687,273.36 L 329.84687,273.12 L 329.60687,272.64 L 329.36687,271.68 L 328.88687,269.52 L 329.12687,269.52 L 329.36687,269.04 L 329.84687,269.28 L 329.60687,268.8 L 329.84687,269.04 L 330.08687,268.8 L 330.56687,269.04 L 331.04687,268.56 L 331.76687,268.32 L 332.24687,269.04 L 332.72687,269.28 L 332.48687,269.28 L 332.96687,269.04 L 333.68687,269.28 L 334.16687,269.76 L 334.64687,269.76 L 335.60687,269.04 L 337.76687,268.8 L 338.00687,268.32 L 338.00687,267.84 L 338.48687,267.84 L 338.72687,268.08 L 338.96687,268.08" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3648"/><g id="g3650" transform="translate(338.96687,267.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.96,-0.72 L -0.72,-0.48 L -1.2,0 L -1.44,0 L -1.2,0 L -1.44,0.24 L -2.4,0.72 L -2.88,0.48 L -2.16,0 L -1.68,0 L -1.92,-0.24 L -1.68,-0.48 L -1.92,-0.48 L -2.4,0 L -3.84,0.48 L -3.84,1.2 L -4.32,1.2 L -4.56,1.68 L -4.8,1.44 L -5.28,0.24 L -6.24,0.24 L -6.96,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3652"/><g id="g3654" transform="translate(-13.68,4.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L -0.48,0.48 L -0.96,0.48 L -0.48,0.24 L -0.72,0.24 L -0.48,0 L 0,0 L -0.48,0 L -0.48,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3656"/><g id="g3658" transform="translate(1.92,3.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L 0,0 L -0.24,0.24 L -0.24,0 L -0.48,-0.24 L -0.24,-0.24 L -0.24,-0.48 L 0,-0.48 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3660"/><g id="g3662" transform="translate(0.48,-1.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3664"/><g id="g3666" transform="translate(-4.32,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.24,0.24 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3668"/><g id="g3670" transform="translate(-1.92,5.04)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3672"/><g id="g3674" transform="translate(18.72,-6.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L 0,0.48 L 0,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3676"/></g></g></g></g></g></g></g><path d="M 324.80687,284.88 L 324.80687,284.64 L 324.56687,284.16 L 325.04687,284.16 L 325.28687,284.4 L 325.76687,284.64 L 325.76687,284.4 L 325.52687,284.4 L 325.52687,284.16 L 325.28687,284.4 L 325.28687,283.92 L 325.52687,283.44 L 325.76687,283.44 L 325.76687,282.96 L 326.00687,283.2 L 325.76687,282.96 L 326.00687,282.72 L 325.76687,282.96 L 326.24687,282.24 L 325.76687,282.48 L 325.76687,282.24 L 326.00687,281.76 L 325.28687,282.24 L 325.04687,281.76 L 325.28687,281.52 L 325.04687,281.28 L 325.28687,281.28 L 325.28687,281.04 L 325.04687,281.04 L 325.04687,280.56 L 325.28687,280.8 L 325.28687,280.32 L 325.04687,280.32 L 325.28687,280.32 L 325.28687,280.08 L 325.52687,279.84 L 325.28687,280.32 L 325.76687,280.32 L 325.52687,280.32 L 325.76687,280.56 L 325.52687,280.8 L 325.76687,280.8 L 326.00687,279.36 L 325.76687,279.12 L 326.00687,278.88 L 326.00687,278.64 L 325.76687,278.64 L 326.00687,277.92" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3736"/><g id="g3738" transform="translate(314.72687,283.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.48,-0.24 L 1.2,-0.96 L 0.96,-1.2 L 1.44,-0.96 L 0.96,-0.72 L 1.44,-0.72 L 1.44,-0.48 L 2.4,-0.48 L 2.64,-0.24 L 2.64,0 L 2.88,0 L 2.88,0.48 L 3.6,1.2 L 3.6,1.92 L 3.36,2.16" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3740"/><g id="g3742" transform="translate(10.08,-0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.48 L 0,-0.48 L 0.24,-0.48 L 0.72,0 L 0.24,0.24 L 0.48,0.24 L 0.24,0.48 L 0,0.24 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3744"/><g id="g3746" transform="translate(-10.32,-0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.72,0.48 L 0.96,0.24 L 0.72,-0.24 L 0.96,0 L 0.96,0.72 L 0.48,1.2 L 0.24,0.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3748"/><g id="g3750" transform="translate(8.4,0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0,0.24 L -0.48,0.48 L 0,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3752"/><g id="g3754" transform="translate(-4.8,2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L -0.96,-0.24 L -0.96,0 L -1.92,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3756"/><g id="g3758" transform="translate(1.68,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,-0.24 L 0.96,-0.24 L 0.96,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3760"/><g id="g3762" transform="translate(-4.8,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.24 L 0.48,-0.72 L 0,-0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3764"/><g id="g3766" transform="translate(0.48,0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3768"/><g id="g3770" transform="translate(20.4,-2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.72 L 0.48,0.72 L 0.72,0.24 L 0.48,0.24 L 0.48,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3772"/><g id="g3774" transform="translate(-5.28,1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,-0.48 L -0.24,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3776"/><g id="g3778" transform="translate(7.44,-0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.48 L 0.48,-0.48 L 0.24,-0.48 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3780"/><g id="g3782" transform="translate(-6.72,0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3784"/></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 338.96687,268.08 L 339.68687,268.32 L 339.68687,267.84 L 338.96687,267.6 L 339.20687,267.84 L 338.96687,267.84" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6656"/><g id="g6658" transform="translate(354.08687,270.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -1.44,0.48 L -2.64,-0.48 L -2.64,-0.72 L -2.4,-1.68 L 0,-2.64 L 0.96,-3.36 L 2.16,-3.6 L 3.84,-4.56 L 4.8,-3.84 L 7.2,-3.12 L 4.8,-3.84 L 3.84,-4.56 L 2.88,-4.08 L 2.4,-3.6 L 0.72,-3.36 L 0,-2.64 L -2.16,-1.68 L -2.64,-1.92 L -2.88,-1.92 L -3.36,-1.44 L -3.84,-2.16 L -4.08,-2.16 L -4.32,-1.68 L -5.04,-2.16 L -5.04,-2.88 L -5.28,-2.88 L -5.76,-2.16 L -7.2,-1.92 L -7.92,-1.92 L -8.64,-1.44 L -9.12,-1.44 L -9.6,-0.96 L -10.08,-1.2 L -10.8,-0.96 L -11.52,-1.2 L -12,-0.72 L -12.48,-0.96 L -12.96,-0.48 L -13.92,-0.96 L -14.16,-1.2 L -13.68,-1.92 L -14.4,-2.16 L -13.92,-1.68 L -14.16,-1.2 L -14.16,-0.72 L -12.96,-0.24 L -12.48,-0.72 L -12,-0.72 L -11.28,-0.96 L -9.6,-0.96 L -9.12,-1.44 L -8.64,-1.44 L -7.92,-1.92 L -7.68,-1.92 L -7.44,-1.68 L -5.52,-2.16 L -5.28,-2.88 L -5.04,-2.16 L -4.32,-1.68 L -3.84,-1.68 L -3.84,-2.16 L -3.36,-1.44 L -2.64,-1.68 L -2.64,-0.48 L -1.44,0.48 L -0.96,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6660"/><g id="g6662" transform="translate(-13.92,1.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 1.68,-0.24 L 1.44,-0.48 L 0.72,-0.48 L 0.24,-0.72 L 0,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6664"/><g id="g6666" transform="translate(1.92,1.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.96 L 0.24,-1.44 L 0,-0.48 L -0.24,-0.24 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6668"/><g id="g6670" transform="translate(3.6,-0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.48,-0.24 L -0.24,-0.48 L -0.72,-0.72 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6672"/><g id="g6674" transform="translate(7.2,-13.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.48 L -0.48,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6676"/><g id="g6678" transform="translate(-10.08,14.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.48 L -0.24,-0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6680"/><g id="g6682" transform="translate(1.44,-0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.48 L -0.24,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6684"/></g></g></g></g></g></g></g><path d="M 345.44687,272.64 L 345.44687,273.84 L 345.68687,274.56 L 345.20687,274.8 L 345.68687,274.8 L 345.68687,275.04 L 345.44687,274.08 L 345.68687,273.6 L 345.68687,272.64" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6744"/><g id="g6746" transform="translate(353.12687,270.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.96,-0.24 L 1.92,0.24 L 2.16,0.48 L 3.12,0.96 L 3.6,1.68 L 3.12,0.96 L 2.16,0.48 L 1.92,0 L 0.96,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6748"/><g id="g6750" transform="translate(-11.28,3.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0.72,0.48 L 0.72,1.2 L 0.96,1.2 L 0.72,1.2 L 0.72,0.48 L 0.48,0.48 L 0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6752"/><g id="g6754" transform="translate(5.52,0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.72,0.96 L -1.68,1.68 L -1.44,2.4 L -1.68,1.68 L -0.72,1.2 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6756"/><g id="g6758" transform="translate(1.68,0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.48 L -0.24,0.48 L 0,0 L 0.24,0 L 0.48,-0.24 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6760"/><g id="g6762" transform="translate(-5.04,-1.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.48,1.68 L 0.48,0 L 0.24,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6764"/><g id="g6766" transform="translate(7.68,2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -1.2,-0.48 L -2.16,0 L -1.2,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6768"/><g id="g6770" transform="translate(-7.2,1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.96,-0.48 L 0,0 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6772"/><g id="g6774" transform="translate(-1.68,-3.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.48 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6776"/></g></g></g></g></g></g></g></g><g transform="translate(182.72687,187.2)" id="g13588" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path13590" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.48 L 0.24,-0.24 L 0.24,0 L 0,0 z"/></g><g transform="translate(189.20687,173.52)" id="g13624" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path13626" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.48 L 0.24,-0.96 L 1.2,-1.44 L 1.44,-0.96 L 0.48,-0.48 L 0.24,0 L 0,0.24 L 0,0 z"/><g transform="translate(-1.2,5.04)" id="g13628" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path13630" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.72 L 0.72,-0.72 L 0.72,-0.48 L 0.24,0 L 0,0 z"/><g transform="translate(-2.64,1.44)" id="g13632" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path13634" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.96 L 0.72,-1.2 L 0.48,-0.24 L 0,0 z"/><g transform="translate(-0.24,0.72)" id="g13636" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path13638" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0.24,-0.48 L 0.24,-0.24 L 0,0 z"/></g></g></g></g><g transform="translate(198.80687,145.2)" id="g13648" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path13650" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.48 L -0.72,0.48 L -0.24,-0.72 L 0.72,-0.72 L 0,0 z"/></g><g transform="translate(212.24687,125.04)" id="g14372" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path14374" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -1.2,-0.48 L -2.64,-1.2 L -4.56,-1.2 L -6.48,-2.16 L -9.12,-1.92 L -11.04,-1.2 L -12.48,-1.68 L -15.36,-4.08 L -17.52,-4.08 L -18.72,-4.32 L -21.36,-6.72 L -22.8,-8.4 L -27.6,-9.6 L -28.08,-10.08 L -26.64,-9.36 L -27.12,-10.08 L -30,-11.52 L -29.76,-11.52 L -30,-12 L -30.48,-11.76 L -32.4,-13.44 L -32.88,-13.2 L -33.36,-13.2 L -34.8,-14.16 L -37.2,-17.28 L -37.2,-17.52 L -36.48,-16.56 L -36,-16.56 L -36.24,-18.48 L -36,-19.2 L -35.52,-18.72 L -35.52,-18.96 L -35.28,-19.2 L -35.52,-19.2 L -35.76,-20.16 L -35.52,-21.12 L -36,-21.36 L -36.24,-21.84"/><g transform="translate(-21.6,5.04)" id="g14376" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path14378" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.96,0 L 1.68,0.72 L 2.64,0.96 L 2.16,1.2 L 1.2,0.96 L 0,1.44 L 0,0 z"/><g transform="translate(7.92,-3.6)" id="g14380" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path14382" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,0.24 L 1.2,1.44 L 0.72,1.44 L -0.72,0.24 L -1.68,0.24 L -1.2,0 L 0,0 z"/><g transform="translate(2.88,1.68)" id="g14384" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path14386" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.48 L 0.24,0.72 L 0,0.48 L -0.96,0.48 L -1.44,0 L 0,0 z"/><g transform="translate(-7.2,-0.24)" id="g14388" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path14390" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.72 L 0,0.48 L -0.48,0.96 L -1.44,0.48 L -0.96,-0.48 L -0.24,-0.48 L 0,0 z"/><g transform="translate(-5.76,6.96)" id="g14392" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path14394" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-1.44 L 0.72,-0.72 L 0.72,-0.24 L 0.48,0 L 0,0 z"/><g transform="translate(0.48,-3.36)" id="g14396" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path14398" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.48 L 0.72,-0.48 L 0.48,0.24 L 0,0 z"/><g transform="translate(-2.64,-0.24)" id="g14400" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path14402" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,0.24 L 0.72,0.48 L -0.24,0.72 L 0,0 z"/></g></g></g></g></g></g></g></g><path d="M 290.24687,262.08 L 290.24687,262.32 L 290.24687,261.6 L 290.00687,261.84 L 290.24687,261.36 L 290.00687,261.12 L 289.76687,261.6 L 289.28687,261.36 L 289.52687,260.88 L 290.00687,261.12 L 290.00687,260.88" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2484"/><g id="g2486" transform="translate(288.80687,260.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2488"/></g><path d="M 293.60687,261.6 L 293.60687,261.84 L 293.12687,261.84 L 292.88687,262.08 L 292.64687,261.84 L 292.64687,262.32 L 292.40687,261.84 L 292.40687,262.08 L 292.16687,262.08 L 292.40687,262.08 L 292.16687,261.84 L 292.16687,261.6 L 291.92687,261.6 L 291.92687,261.36 L 291.92687,262.32 L 291.68687,262.56 L 291.68687,262.08 L 291.44687,262.32 L 291.44687,261.12 L 291.44687,261.36 L 291.20687,261.36 L 291.20687,261.84 L 290.72687,261.6 L 290.48687,262.08 L 290.24687,262.08" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2500"/><path d="M 296.00687,262.32 L 296.48687,262.8 L 295.76687,262.32 L 296.00687,262.32 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2512"/><path d="M 302.24687,267.84 L 302.00687,267.36 L 302.48687,267.12 L 302.48687,266.64 L 302.24687,266.64 L 302.00687,266.16 L 302.24687,266.4 L 302.00687,266.16 L 302.48687,265.92 L 302.00687,265.92 L 302.00687,265.68 L 302.24687,265.44 L 302.48687,265.92 L 302.72687,265.68 L 302.72687,265.2 L 302.72687,265.68 L 302.96687,265.44 L 302.72687,265.92 L 302.96687,265.92 L 302.48687,266.4 L 302.96687,266.4 L 302.72687,266.88 L 302.96687,266.88" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2532"/><g id="g2534" transform="translate(300.80687,265.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 0.48,0.24 L 0.72,0 L 0.72,0.24 L 0.96,0.48 L 0.72,0.96 L 1.44,0.96 L 0.96,1.2 L 0.48,1.2 L 0.48,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2536"/><g id="g2538" transform="translate(2.4,0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.48 L 0.24,-0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2540"/></g></g><path d="M 302.96687,266.88 L 303.20687,267.36 L 303.20687,267.84 L 302.72687,267.84 L 302.48687,267.6 L 302.72687,267.84 L 302.48687,268.08 L 302.24687,267.6 L 302.24687,268.08 L 302.24687,267.84" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2660"/><g id="g2662" transform="translate(305.36687,268.8)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,-0.48 L 0.96,-0.48 L 0.96,-0.24 L 1.2,-0.24 L 0.72,0 L 0.96,0.48 L 0.48,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2664"/><g id="g2666" transform="translate(-1.44,0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 1.2,0 L 1.2,0.24 L 0.24,0.48 L 0,0.24 L -0.48,0.24 L -0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2668"/><g id="g2670" transform="translate(-0.24,1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L 0.24,-0.48 L -0.24,-0.72 L 0,-0.72 L 0,-0.48 L 0.24,-0.72 L 0.48,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2672"/><g id="g2674" transform="translate(1.92,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.48,-0.96 L 0.96,-0.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2676"/><g id="g2678" transform="translate(-0.72,-1.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0,0.48 L -0.24,0.48 L -0.48,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2680"/><g id="g2682" transform="translate(-1.2,2.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,-0.48 L 0.48,-0.24 L 0.48,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2684"/><g id="g2686" transform="translate(0.48,-2.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L -0.24,0.24 L -0.48,0 L -0.48,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2688"/><g id="g2690" transform="translate(0.24,-1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0.24,0.48 L -0.24,0.72 L -0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2692"/><g id="g2694" transform="translate(0,2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 0.48,0.24 L 0.24,0.24 L -0.48,0 L 0,0 z M 0.72,0 L 0.96002,0 L 0.96002,0.23999 L 0.72,0.23999 L 0.72,0 z M 0.24,0.48 L 0.47999,0.48 L 0.47999,0.72002 L 0.24,0.72002 L 0.24,0.48 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2696"/><g id="g2698" transform="translate(1.44,-2.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.48 L -0.24,0.96 L -0.48,0.48 L -0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2700"/><g id="g2702" transform="translate(-2.16,4.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.48,-0.24 L -0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2704"/><g id="g2706" transform="translate(0.72,-4.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0,0.24 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2708"/><g id="g2710" transform="translate(2.64,0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2712"/><g id="g2714" transform="translate(-3.6,-2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L -0.24,0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2716"/><g id="g2718" transform="translate(0.72,0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.24,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2720"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 274.88687,274.8 L 274.64687,275.28 L 273.92687,275.28 L 273.92687,275.52 L 273.44687,275.76 L 272.96687,275.28 L 273.20687,275.76 L 273.20687,276 L 272.48687,275.76 L 272.96687,276.24 L 273.92687,275.52 L 273.92687,276 L 273.92687,275.52 L 274.64687,275.28 L 274.88687,274.8" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3012"/><g id="g3014" transform="translate(275.60687,275.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.72 L -0.72,1.44 L -0.96,1.44 L -1.2,1.2 L -0.96,1.44 L -0.96,1.68 L -1.2,1.68 L -1.44,1.92 L -1.68,1.92 L -1.68,1.68 L -1.68,2.16 L -2.16,1.92 L -2.16,2.4" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3016"/><g id="g3018" transform="translate(-2.88,-2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L -0.48,0.24 L -0.96,0.48 L -1.68,0.48 L -1.44,0.96 L -0.24,0.48 L -0.24,1.2 L 0.24,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3020"/><g id="g3022" transform="translate(0.48,4.8)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.48 L -0.48,-0.24 L -0.24,-0.72 L -0.72,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3024"/><g id="g3026" transform="translate(-0.48,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3028"/><g id="g3030" transform="translate(-0.24,-0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.24 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3032"/></g></g></g></g></g><path d="M 274.88687,269.04 L 274.64687,269.04 L 275.12687,269.52 L 274.64687,269.52 L 271.76687,268.32 L 273.44687,269.52 L 273.20687,269.52 L 273.68687,269.52 L 274.16687,269.76 L 274.88687,270.96 L 274.16687,271.44 L 273.68687,270.72 L 273.44687,270.96 L 272.24687,270.96 L 272.24687,271.2 L 273.44687,271.2 L 273.68687,271.68 L 272.96687,272.64 L 272.72687,272.64" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3068"/><g id="g3070" transform="translate(272.96687,272.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 1.2,-0.96 L 1.92,-0.96 L 2.16,-1.2 L 3.12,-0.72 L 2.88,0.24 L 2.64,0 L 2.88,0.48 L 2.16,0.48 L 2.88,0.72 L 2.88,1.2 L 1.92,1.68 L 1.92,1.92 L 2.88,1.44 L 3.12,1.68 L 2.88,2.4 L 2.64,2.4 L 2.64,2.64" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3072"/><g id="g3074" transform="translate(0.48,-5.76)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L -0.24,0 L -0.48,0.24 L 0.24,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3076"/><g id="g3078" transform="translate(2.16,3.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.72 L -0.24,0.48 L -0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3080"/><g id="g3082" transform="translate(-3.36,-4.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0.72,0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3084"/><g id="g3086" transform="translate(0.48,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3088"/><g id="g3090" transform="translate(-0.24,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3092"/><g id="g3094" transform="translate(1.68,2.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3096"/></g></g></g></g></g></g></g><path d="M 273.68687,267.36 L 273.92687,266.88 L 274.64687,267.12 L 274.64687,266.88 L 275.12687,266.4 L 275.36687,266.64 L 275.84687,266.64 L 276.08687,267.12 L 276.32687,267.12 L 277.76687,267.84 L 277.52687,268.32 L 277.28687,269.04 L 276.56687,269.52 L 276.32687,269.28 L 276.08687,269.52 L 276.08687,269.04 L 275.84687,269.28 L 275.60687,269.04 L 275.84687,268.8 L 275.60687,269.04 L 275.36687,268.56 L 275.12687,269.28 L 274.88687,269.04" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3120"/><g id="g3122" transform="translate(272.96687,266.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.48 L 0.96,-0.72 L 1.92,-0.48 L 1.44,0.24 L 0.96,0.24 L 0.72,0.96 L 0.48,0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3124"/><g id="g3126" transform="translate(0.48,-1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L -0.48,0.72 L -0.96,0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3128"/><g id="g3130" transform="translate(-0.72,0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 0.24,0.48 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3132"/><g id="g3134" transform="translate(1.44,2.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0.96,0.24 L 0.48,0.24 L 0.24,0 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3136"/></g></g></g></g><path d="M 288.56687,260.88 L 288.56687,260.4 L 288.32687,260.64 L 288.32687,260.4 L 288.80687,258 L 288.56687,258.72 L 288.32687,258.48 L 288.32687,259.92 L 287.84687,260.4 L 287.60687,259.68 L 287.60687,258.96 L 287.36687,259.44 L 287.12687,259.44 L 287.36687,259.68 L 286.88687,259.68 L 287.12687,260.16 L 287.36687,260.16 L 287.60687,260.64 L 286.88687,260.16 L 286.64687,260.4 L 286.64687,259.92 L 286.40687,260.4 L 286.40687,260.16 L 286.16687,260.4 L 286.40687,259.92 L 285.92687,259.92 L 286.16687,259.68 L 285.92687,259.68 L 286.16687,258.48 L 286.40687,258.72 L 286.40687,259.2 L 286.40687,258.72 L 286.64687,258.96 L 286.64687,258.72 L 286.40687,258.48 L 286.64687,258 L 286.64687,258.24 L 286.88687,258 L 286.16687,258.24 L 286.40687,257.76 L 286.16687,257.52 L 286.64687,257.04 L 287.12687,257.04 L 286.64687,256.8 L 286.88687,256.56 L 286.88687,256.08 L 287.36687,256.08 L 287.60687,256.32 L 287.60687,256.08 L 287.60687,256.56 L 288.08687,256.56 L 287.60687,256.8 L 287.84687,257.04 L 287.84687,257.52 L 288.08687,257.04 L 288.32687,257.76 L 288.32687,257.28 L 288.08687,257.04 L 288.32687,256.8 L 288.80687,257.04 L 288.80687,257.52 L 289.04687,257.28 L 288.80687,256.8 L 289.04687,256.56 L 289.28687,256.56 L 289.04687,256.32 L 288.56687,256.32 L 288.56687,256.08 L 288.32687,256.08 L 288.08687,255.6 L 287.60687,255.84 L 287.60687,255.36 L 287.60687,255.84 L 287.36687,255.6 L 287.36687,254.64 L 288.32687,255.12 L 288.56687,254.88 L 289.28687,255.36 L 289.04687,255.12 L 289.28687,254.88 L 288.80687,254.88 L 287.84687,254.4 L 288.56687,254.16 L 288.80687,253.92 L 288.08687,254.16 L 287.84687,253.92 L 287.84687,254.16 L 287.36687,254.16 L 287.84687,253.2 L 288.32687,252.72 L 288.80687,252.96 L 289.04687,252.72 L 288.32687,252.24 L 288.80687,252 L 288.80687,251.52 L 289.28687,251.52 L 289.52687,252 L 289.28687,252.24 L 289.52687,252.48 L 289.52687,253.92 L 290.00687,254.16 L 290.00687,255.6 L 290.24687,255.84 L 290.24687,256.56 L 290.72687,256.8 L 290.48687,257.28 L 290.72687,257.28" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3180"/><g id="g3182" transform="translate(290.72687,258.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.48 L -0.72,0.48 L -0.72,1.2 L -0.96,1.68 L -1.2,0.96 L -1.44,1.44 L -1.2,1.92 L -1.44,2.4 L -1.68,2.64 L -1.92,2.4 L -1.92,2.64" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3184"/><g id="g3186" transform="translate(-4.8,-1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.96 L 0.48,-0.24 L 0.24,0 L 0,0.72 L -0.24,0.96 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3188"/><g id="g3190" transform="translate(5.04,-11.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0.24,0.48 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3192"/><g id="g3194" transform="translate(1.92,-11.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L -0.24,-0.24 L 0,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3196"/><g id="g3198" transform="translate(-3.12,26.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L 0.24,-0.72 L 0.72,-0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3200"/><g id="g3202" transform="translate(0.72,-0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3204"/><g id="g3206" transform="translate(-0.48,0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3208"/><g id="g3210" transform="translate(2.16,-27.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3212"/><g id="g3214" transform="translate(0.48,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.48,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3216"/></g></g></g></g></g></g></g></g></g><path d="M 302.24687,235.44 L 302.48687,235.92 L 302.96687,236.4 L 302.96687,236.64 L 302.48687,236.64 L 302.48687,236.88 L 301.76687,236.64 L 302.00687,236.88 L 301.76687,237.12" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3396"/><path d="M 321.20687,247.2 L 321.44687,247.44 L 321.44687,247.68 L 322.40687,247.44 L 322.16687,247.68 L 322.40687,247.92 L 322.16687,247.92 L 322.88687,247.92 L 322.64687,248.16 L 323.36687,248.4 L 322.88687,248.4 L 322.88687,248.16 L 322.64687,248.4 L 322.88687,248.64 L 323.12687,248.4 L 323.84687,248.64 L 323.12687,248.64 L 323.84687,248.88 L 323.60687,249.12 L 323.60687,249.36 L 321.92687,249.36 L 320.96687,249.84 L 320.24687,250.56 L 320.00687,250.32 L 320.00687,250.56 L 319.76687,250.8 L 319.76687,251.04 L 319.28687,251.28 L 319.04687,251.52 L 318.80687,251.52 L 319.04687,251.76 L 318.56687,251.76 L 319.04687,251.76 L 318.80687,252.24 L 319.04687,252.24 L 318.56687,252.48 L 318.80687,252.72 L 318.80687,253.2 L 318.32687,252.72 L 318.56687,253.2 L 318.56687,253.44 L 318.08687,253.2 L 318.56687,253.68 L 318.32687,253.68 L 318.08687,253.44 L 317.84687,253.68 L 317.12687,253.44 L 316.88687,252.96 L 317.12687,252.96 L 316.64687,252.48 L 316.40687,252 L 316.88687,251.76 L 316.64687,251.52 L 317.12687,251.52 L 316.64687,251.28 L 316.64687,250.56 L 317.12687,250.56 L 317.60687,251.04 L 317.12687,250.56 L 317.12687,250.32 L 317.36687,250.56 L 317.36687,250.08 L 317.60687,249.84 L 317.36687,249.84 L 317.60687,249.6 L 317.36687,249.6 L 317.84687,249.12 L 317.12687,249.12 L 317.36687,248.16 L 318.08687,247.68 L 318.80687,247.68 L 318.56687,247.92 L 318.80687,247.92 L 318.56687,248.4 L 319.28687,247.92 L 319.04687,248.16 L 319.28687,248.16 L 319.52687,248.64 L 319.52687,248.16 L 320.00687,247.92 L 320.24687,247.92 L 320.48687,248.16 L 320.72687,248.16 L 320.48687,248.16 L 320.72687,247.92 L 320.48687,247.92 L 320.72687,247.68 L 320.24687,247.68 L 320.72687,247.2 L 320.48687,247.2 L 320.72687,247.2 L 320.48687,246.96 L 321.20687,247.2 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3432"/><g id="g3434" transform="translate(315.20687,260.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.48 L -0.24,-0.96 L -0.48,-1.44 L -0.24,-1.44 L -0.48,-1.92 L 0,-2.16 L -0.48,-2.4 L -0.48,-2.64 L -0.24,-2.64 L -0.24,-3.36 L -0.48,-3.12 L -0.72,-3.36 L -0.48,-3.84 L -0.24,-3.36 L 0,-3.6 L 0.24,-3.36 L 0,-4.08 L 0.24,-3.84 L 0.48,-4.08 L 0.72,-3.84 L 0.24,-4.56 L 0.24,-4.8 L 0.72,-4.56 L 0.24,-5.28 L 0.96,-5.28 L 0.48,-5.52 L 0.48,-5.76 L 1.68,-5.52 L 0.72,-6 L 0.72,-6.48 L 0.96,-6.48 L 0.72,-6.48 L 0.72,-7.2 L 0.48,-7.2 L 1.2,-7.44 L 1.44,-6.48 L 1.44,-6.72 L 1.92,-6.48 L 1.92,-6.72 L 1.68,-6.72 L 1.44,-7.2 L 1.44,-8.16 L 1.68,-7.92 L 1.92,-7.44 L 2.64,-7.2 L 2.4,-6.96 L 2.88,-7.2 L 3.12,-6.96 L 2.88,-6.72 L 3.12,-6.72 L 3.12,-6.24 L 2.16,-6 L 2.88,-6 L 3.12,-5.76 L 2.64,-5.52 L 1.92,-5.76 L 2.64,-5.28 L 2.88,-5.52 L 2.88,-5.28 L 2.16,-4.8 L 1.92,-5.04 L 2.16,-4.8 L 1.92,-4.56 L 2.4,-4.8 L 2.64,-4.56 L 2.4,-4.32 L 2.64,-4.32 L 2.64,-4.08 L 2.4,-4.08 L 2.64,-4.08 L 2.4,-4.08 L 2.64,-3.84 L 2.16,-3.6 L 1.68,-3.6 L 2.4,-3.36 L 2.16,-2.88 L 1.68,-2.64 L 2.4,-2.64 L 2.4,-2.4 L 2.16,-2.4 L 2.16,-2.16" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3436"/><g id="g3438" transform="translate(4.8,-13.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0,0 L -0.24,0.72 L -0.48,0.48 L -0.96,0.72 L -0.72,0.48 L -0.96,0.48 L -1.2,0.24 L -0.96,0 L -0.72,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3440"/><g id="g3442" transform="translate(6.48,2.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -1.44,0 L -1.44,-0.48 L -0.96,-0.48 L -1.44,-0.72 L -0.72,-0.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3444"/><g id="g3446" transform="translate(-22.8,16.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.72,0.24 L 0.48,0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3448"/><g id="g3450" transform="translate(3.12,2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0.48,0 L 0.24,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3452"/><g id="g3454" transform="translate(-2.88,-2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3456"/></g></g></g></g></g></g><path d="M 317.36687,258.72 L 317.60687,258.72 L 317.36687,258.96 L 317.60687,259.2 L 317.36687,259.44 L 316.88687,259.2 L 317.12687,259.44 L 317.12687,259.68 L 317.36687,259.68 L 316.88687,260.4 L 317.12687,260.4 L 317.12687,260.88 L 317.36687,261.6 L 317.12687,261.84 L 317.36687,261.84 L 317.36687,262.32 L 317.84687,265.44 L 318.08687,265.68 L 317.36687,266.88 L 316.64687,266.88 L 316.16687,266.64 L 315.92687,266.16 L 316.16687,265.2 L 316.64687,264.96 L 316.40687,264.72 L 316.40687,264.48 L 316.16687,264.24 L 316.40687,264 L 315.92687,263.52 L 315.92687,262.8 L 315.68687,262.8 L 315.68687,262.56 L 315.44687,262.8 L 314.96687,262.08 L 315.20687,261.84 L 315.44687,261.84 L 315.44687,261.36 L 315.20687,261.36 L 315.20687,261.6 L 314.96687,261.36 L 314.96687,261.12" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3476"/><g id="g3478" transform="translate(326.24687,261.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L -0.24,0 L -0.48,-0.48 L 1.92,-3.36 L 2.16,-3.36 L 1.92,-3.36 L 2.16,-4.08 L 2.16,-4.8 L 2.64,-5.76 L 3.12,-6 L 3.12,-5.52 L 3.6,-5.52 L 3.84,-6 L 4.32,-6 L 4.08,-6.24 L 4.56,-6.48 L 4.8,-6.48 L 5.04,-6.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3480"/><g id="g3482" transform="translate(-11.28,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.24,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3484"/><g id="g3486" transform="translate(10.56,0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3488"/><g id="g3490" transform="translate(1.44,-12.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3492"/></g></g></g></g><path d="M 265.28687,254.16 L 266.00687,253.92 L 266.00687,253.44 L 266.48687,253.92 L 266.24687,253.92 L 266.24687,254.4 L 266.00687,254.4 L 266.48687,254.4 L 266.48687,254.88 L 266.00687,254.64 L 266.24687,254.88 L 265.76687,254.88 L 265.28687,254.16 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4392"/><g id="g4394" transform="translate(271.04687,263.76)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.72,0.24 L 0.48,0 L 0.72,0.24 L 0.72,0.48 L 0.24,0 L 1.2,1.2 L 1.44,1.44 L 1.92,0.96 L 2.4,1.44" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4396"/><g id="g4398" transform="translate(-3.36,-4.8)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.96 L 0.72,-0.96 L 1.44,0.24 L 1.2,0.72 L 0.96,0.24 L 0.72,0.48 L 0.96,0.96 L 0.72,0.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4400"/><g id="g4402" transform="translate(3.12,4.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.24,-0.24 L 0,0 L 0.24,-0.24 L 0,0 L 0.48,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4404"/><g id="g4406" transform="translate(-3.6,-6.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,1.44 L 0.72,1.92 L 0.48,1.44 L 0.24,1.2 L -0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4408"/><g id="g4410" transform="translate(-2.16,-1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.48 L 0.72,0.24 L 0.96,0.96 L 1.2,0.96 L 1.2,1.68" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4412"/><g id="g4414" transform="translate(-1.44,-2.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.96,0 L 0.72,0.48 L 0.96,0.72 L 0.48,0.48 L 0.48,0.72 M 0.96,0.24 L 1.19999,0.24 L 1.19999,0.47999 L 0.96,0.47999 L 0.96,0.24 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4416"/><g id="g4418" transform="translate(6.24,6.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.48,0.48 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4420"/><g id="g4422" transform="translate(-3.6,-3.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.48,0.24 L 0.48,0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4424"/><g id="g4426" transform="translate(2.64,3.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.48 L 0.48,-0.48 L 0.48,-0.24 L 0.24,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4428"/><g id="g4430" transform="translate(0.24,0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.48 L 0.48,-0.24 L 0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4432"/><g id="g4434" transform="translate(-4.8,-7.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0.24,0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4436"/></g></g></g></g></g></g></g></g></g></g></g><path d="M 266.72687,240.24 L 267.20687,240.48 L 267.92687,240.24 L 268.16687,240.72 L 267.68687,240.72 L 266.72687,240.24 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4448"/><path d="M 322.40687,238.8 L 321.92687,237.6 L 321.44687,237.6 L 321.92687,237.6 L 321.92687,237.12 L 322.40687,237.12 L 321.92687,237.12 L 321.44687,236.4 L 321.68687,236.16 L 322.16687,234.72 L 320.72687,233.52 L 320.48687,233.52 L 320.00687,234.24 L 319.04687,234.24 L 318.80687,234.48 L 319.04687,235.44 L 320.00687,236.4 L 319.28687,236.88 L 318.56687,237.12 L 318.56687,237.36 L 318.08687,237.36 L 316.64687,236.64 L 315.68687,236.64 L 317.12687,236.16 L 317.84687,234.72 L 318.08687,233.28 L 318.80687,233.28 L 319.28687,233.04 L 319.28687,232.56 L 319.76687,232.32 L 319.76687,231.36 L 320.24687,230.4 L 319.52687,230.88 L 319.04687,230.16 L 319.28687,230.88 L 318.80687,231.12 L 318.08687,230.64 L 318.08687,230.88 L 317.60687,230.88 L 317.36687,229.44 L 316.64687,228.72 L 316.64687,228 L 316.40687,227.52" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6352"/><g id="g6354" transform="translate(320.48687,241.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.96,0 L -1.2,-0.48 L -0.96,-1.44 L -0.72,-2.16 L -0.72,-1.92 L -0.24,-2.16 L 0,-1.92 L 0.48,-1.2 L 0.48,-0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6356"/><g id="g6358" transform="translate(-4.8,-12.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.72 L 0.48,2.16 L 0.24,2.88 L -0.24,3.12 L -0.96,4.08 L -1.2,4.32 L -1.44,4.08 L -1.68,4.32 L -2.16,4.56" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6360"/><g id="g6362" transform="translate(1.2,-2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,-0.72 L 0.72,-0.48 L 0.72,-0.72 L 1.44,-0.96 L 1.2,-1.44 L 0.72,-1.44 L 1.2,-1.44 L 0.72,-1.2 L 0.48,-1.44" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6364"/><g id="g6366" transform="translate(5.76,12.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6368"/><g id="g6370" transform="translate(3.84,-17.04)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,0 L -1.68,-0.24 L -2.16,0 L -3.84,0.24 L -4.08,0.48 L -4.8,0.24 L -5.52,1.44 L -6,1.44 L -6.24,1.68 L -6.24,1.92 L -6.48,3.12 L -7.44,2.88 L -8.16,3.12 L -6.48,3.12 L -6.24,2.88 L -6.48,2.64 L -6.24,2.4 L -6.24,1.68 L -5.52,1.44 L -4.56,0.24 L -4.08,0.48 L -3.84,0.24 L -2.16,0 L -1.68,-0.24 L -0.72,0 L 0,0 L 0.24,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6372"/></g></g></g></g></g><path d="M 329.12687,246.96 L 329.12687,246.72 L 329.84687,246 L 329.12687,245.52 L 328.64687,246 L 328.88687,246.48 L 328.16687,246.48 L 328.16687,246.96 L 327.92687,246.72 L 327.44687,245.76 L 327.68687,245.52 L 327.44687,245.52 L 327.20687,244.8 L 327.44687,245.28 L 327.68687,244.56 L 326.48687,244.08 L 326.00687,243.36 L 326.00687,242.4 L 326.48687,242.16 L 325.76687,242.16 L 325.76687,241.68 L 325.52687,241.92 L 325.52687,241.68 L 325.04687,241.44 L 325.04687,241.2 L 324.80687,241.44 L 324.80687,241.68 L 325.04687,241.68 L 325.28687,241.92 L 325.28687,242.16 L 324.80687,242.4 L 324.56687,243.12 L 324.08687,242.88 L 324.80687,243.6 L 324.08687,243.12 L 323.60687,241.44 L 323.60687,241.68 L 324.08687,241.44 L 324.08687,240.72 L 323.84687,240.72 L 323.84687,241.2 L 323.60687,240.96 L 323.60687,241.44 L 322.88687,240 L 322.64687,240 L 322.64687,238.8" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6408"/><g id="g6410" transform="translate(325.76687,248.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.24 L 0.24,0 L 0.96,0.24 L 1.2,0 L 1.68,0 L 1.44,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6412"/><g id="g6414" transform="translate(-4.8,-7.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.48 L 0.24,0 L 0.24,0.48 L -0.24,0.72 L -0.48,0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6416"/><g id="g6418" transform="translate(1.68,-2.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6420"/><g id="g6422" transform="translate(10.56,-0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.96,0.48 L -1.2,0.96 L -2.16,1.44 L -2.64,0.96 L -2.88,0.24 L -2.64,-0.48 L -2.4,-1.92 L -3.6,-3.36 L -4.56,-3.6 L -5.04,-2.64 L -5.04,-2.16 L -6.24,-0.72 L -6.48,-0.48 L -6.96,0.24 L -7.68,0.48 L -7.68,0.96 L -8.16,1.2 L -7.92,1.68 L -7.44,2.16 L -7.44,3.84 L -7.2,3.36 L -7.44,2.64 L -7.44,2.16 L -7.92,1.68 L -8.16,1.2 L -7.68,0.96 L -7.44,0.48 L -6.96,0.24 L -6.48,-0.48 L -6,-0.72 L -4.8,-1.92 L -4.8,-2.88 L -4.32,-3.6 L -3.12,-2.88 L -3.12,-2.4 L -2.4,-1.92 L -2.64,-1.2 L -2.4,-0.96 L -2.64,-0.24 L -2.88,0.24 L -2.64,0.96 L -2.4,1.44 L -2.16,1.44 L -1.2,1.2 L -0.72,0.48 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6424"/><g id="g6426" transform="translate(-9.36,4.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.48 L 0.24,0.24 L 0,0.24 L 0.48,0.24 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6428"/></g></g></g></g></g><path d="M 331.04687,254.4 L 332.00687,253.44 L 332.24687,253.44 L 331.76687,253.68 L 331.76687,253.92 L 332.96687,254.16 L 332.72687,254.4 L 333.20687,253.92 L 334.16687,253.68 L 334.64687,253.92 L 334.88687,254.4 L 334.88687,254.16 L 335.84687,252.72 L 336.08687,252.72 L 336.08687,252.24 L 335.36687,252.48 L 334.16687,252.24 L 333.92687,252.48 L 332.00687,251.76 L 332.72687,252 L 332.72687,252.24 L 331.52687,251.52 L 331.52687,251.04 L 331.28687,251.28 L 331.28687,251.52 L 330.32687,251.52 L 329.36687,250.8 L 327.44687,249.6 L 327.92687,249.12 L 327.68687,248.88 L 327.68687,248.64 L 329.84687,247.92 L 329.60687,247.92 L 329.60687,247.2 L 329.12687,246.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6484"/><g id="g6486" transform="translate(341.12687,250.8)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -1.2,-0.24 L -1.44,0 L -1.2,0 L -1.2,0.24 L -1.44,0.24 L -1.2,0.72 L -0.96,0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6488"/><g id="g6490" transform="translate(-0.48,0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,-0.24 L -0.24,-0.48 L 0.24,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6492"/><g id="g6494" transform="translate(-13.44,-2.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.48,0.24 L 0,0.72 L -0.24,0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6496"/><g id="g6498" transform="translate(4.08,5.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6500"/><g id="g6502" transform="translate(24.72,-14.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L -0.72,0.48 L -1.2,0.48 L -1.68,0.96 L -1.92,0.96 L -2.64,1.2 L -4.08,0.24 L -4.56,0.72 L -6,0.24 L -7.2,0.72 L -8.16,0.24 L -8.64,0.24 L -9.12,0 L -11.04,0 L -11.28,0.72 L -11.28,1.2 L -11.76,1.2 L -11.52,1.68 L -12,1.92 L -12,2.16 L -12.72,2.64 L -12.72,3.12 L -13.92,3.36 L -13.92,3.6 L -14.4,3.6 L -14.88,4.32 L -15.12,3.84 L -15.36,4.08 L -16.56,6 L -17.04,6.24 L -17.28,6.24 L -17.28,7.2 L -17.76,7.92 L -17.28,8.4 L -17.28,8.64 L -16.56,9.12 L -16.56,9.84 L -16.56,9.6 L -16.8,9.84 L -16.56,10.32 L -16.32,9.12 L -17.28,8.64 L -17.04,8.16 L -17.76,7.92 L -17.28,7.2 L -17.28,6.48 L -16.56,6 L -15.36,4.08 L -14.88,4.32 L -14.4,3.6 L -13.92,3.6 L -13.92,3.36 L -13.68,3.6 L -12.72,3.12 L -12.72,2.64 L -12,2.4 L -12,1.92 L -11.52,1.68 L -11.52,1.2 L -11.28,1.2 L -11.28,0.72 L -10.8,0 L -9.12,0 L -8.64,0.24 L -8.16,0.24 L -7.44,0.72 L -5.76,0.24 L -5.28,0.72 C -3.861,0.527 -3.634,-0.021 -3.36,1.68 L -2.88,2.16 L -3.36,1.68 L -3.36,1.44 L -3.6,0.96 L -3.12,0.72 L -2.64,1.2 L -1.92,0.96 L -1.68,1.2 L -1.2,0.72 L -0.48,0.48 L -0.48,0 L 0,0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6504"/><g id="g6506" transform="translate(-8.4,-0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,-0.24 L -0.24,0 L -0.24,-0.24 L -0.48,-0.24 L -0.48,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6508"/><g id="g6510" transform="translate(6.48,0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,0.24 L -0.48,-0.24 L -0.72,0 L -0.24,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6512"/><g id="g6514" transform="translate(0.24,-0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.96 L 0.24,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6516"/><g id="g6518" transform="translate(-15.84,5.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.48 L 0.48,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6520"/></g></g></g></g></g></g></g></g></g><path d="M 334.88687,259.68 L 335.36687,259.2 L 336.32687,258.96 L 336.80687,258.48 L 337.04687,258.48 L 337.04687,258.96 L 337.52687,259.2 L 337.52687,260.4 L 339.44687,261.6 L 340.40687,261.12 L 340.40687,261.36 L 341.12687,261.12 L 341.12687,260.4 L 342.08687,259.92 L 342.56687,260.4 L 342.56687,260.16 L 342.80687,260.4 L 342.80687,260.64 L 343.04687,260.88 L 343.52687,260.64 L 343.04687,260.4 L 342.80687,259.92 L 341.84687,259.44 L 341.84687,259.92 L 341.36687,259.92 L 340.88687,260.4 L 340.64687,260.16 L 340.16687,260.64 L 339.20687,260.4 L 338.96687,260.64 L 338.72687,260.64 L 338.48687,260.4 L 338.24687,258.72 L 338.24687,258.48 L 338.96687,257.76 L 340.16687,257.76 L 340.88687,257.28 L 341.36687,255.84 L 342.08687,255.36 L 342.08687,254.16 L 342.32687,253.92 L 342.08687,253.44 L 342.32687,253.2 L 342.80687,252.96 L 342.80687,252.48 L 342.08687,252.24 L 341.36687,251.04 L 341.12687,250.8" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6580"/><g id="g6582" transform="translate(340.16687,251.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.48,0.48 L 0.72,1.44 L 0.48,1.68 L 0.72,1.68 L 0.72,2.4 L 0.48,2.4 L 0.48,2.64 L 0,2.64 L 0.24,3.12 L -0.24,3.6 L -0.48,4.32 L -0.24,4.08 L -1.44,5.04 L -1.92,5.76 L -1.68,5.76 L -2.16,5.76 L -3.6,5.52 L -4.32,6.24 L -4.8,6.24 L -4.56,6.24 L -5.52,6.96 L -6,7.2" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6584"/><g id="g6586" transform="translate(0.96,0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.48,0.48 L -0.24,0.72 L -0.48,0 L -0.24,-0.24 L -0.24,0 L -0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6588"/><g id="g6590" transform="translate(0.24,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L -0.48,-0.48 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6592"/><g id="g6594" transform="translate(-0.48,-0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6596"/><g id="g6598" transform="translate(12.24,-8.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0.48,1.2 L 0.96,1.44 L 1.68,2.88 L 1.92,3.12 L 2.64,4.08 L 2.88,4.32 L 2.88,4.56 L 3.12,4.8 L 3.12,5.04 L 3.6,5.04 L 3.36,5.28 L 4.32,6.24 L 4.8,6.48 L 4.8,6.72 L 5.52,7.2 L 5.52,7.44 L 6.24,7.68 L 6.72,7.92 L 6.72,8.4 L 7.44,8.4 L 7.92,8.64 L 8.16,8.88 L 8.4,8.64 L 8.4,8.88 L 8.64,8.88 L 9.12,9.36 L 9.12,9.12 L 9.36,9.36 L 9.6,9.12" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6600"/><g id="g6602" transform="translate(9.36,9.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L -0.72,-0.24 L -0.96,-0.24 L -0.96,-0.48 L -1.2,-0.24 L -1.68,-0.72 L -2.4,-0.96 L -2.4,-1.2 L -2.88,-1.44 L -3.84,-1.68 L -3.84,-2.16 L -4.32,-2.16 L -4.56,-2.4 L -4.56,-2.88 L -5.28,-3.12 L -6,-3.84 L -5.76,-4.08 L -6,-4.08 L -6,-4.32 L -6.48,-4.56 L -6.48,-4.8 L -6.72,-5.04 L -7.2,-6 L -7.68,-6.24 L -8.16,-7.68 L -8.88,-7.92 L -9.12,-8.88 L -9.36,-9.12" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6604"/><g id="g6606" transform="translate(-24.24,3.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0.24,0.48 L 0.48,0 L 0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6608"/><g id="g6610" transform="translate(-0.48,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0.48,0.24 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6612"/><g id="g6614" transform="translate(-4.32,3.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L -0.24,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path6616"/></g></g></g></g></g></g></g></g></g><path d="M 344.24687,223.92 L 344.24687,224.4 L 344.00687,224.4 L 344.48687,224.88 L 343.04687,225.6 L 343.76687,225.36 L 344.72687,224.64 L 344.24687,223.92 L 344.48687,223.92 L 344.48687,223.44 L 344.72687,223.68 L 344.96687,223.2 L 345.20687,223.68 L 345.44687,223.44 L 345.20687,223.44 L 345.44687,222.96 L 345.20687,222.96 L 345.20687,222.48 L 346.16687,222.48 L 346.16687,222 L 345.92687,222 L 346.40687,221.76 L 346.64687,222 L 346.64687,222.48 L 346.88687,222.24 L 347.36687,222.48 L 347.36687,222.24 L 346.88687,222.24 L 346.64687,222.48 L 346.64687,222 L 347.12687,222 L 347.36687,221.76 L 347.12687,221.52 L 347.36687,221.76 L 347.84687,221.28 L 347.12687,221.52 L 347.12687,221.76 L 346.64687,221.76 L 346.64687,221.52 L 346.16687,221.76 L 345.92687,222 L 346.16687,222.24 L 345.68687,222.24 L 345.68687,222.48 L 345.44687,222 L 344.96687,222.48 L 344.48687,221.52 L 344.96687,222.72 L 344.72687,222.72 L 344.96687,222.96 L 344.72687,223.2 L 344.00687,222.72 L 344.72687,223.2 L 344.48687,223.44 L 344.24687,223.92 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8474"/><g id="g8476" transform="translate(346.16687,216.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L 0,0.72 L 0,0.96 L 0.48,1.2 L 0.48,1.44 L 0.24,1.92 L 0.72,2.64 L 0.48,2.64 L 0.48,3.12 L 0,2.88 L 0,3.36 L -0.48,3.36 L -0.48,3.6 L 0,3.36 L 0.24,3.12 L 0.48,3.12 L 1.2,2.4 L 0.72,2.4 L 0.48,2.16 L 0.72,1.44 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8478"/><g id="g8480" transform="translate(-2.88,-7.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0.48,0.24 L 0.72,0.72 L 0.96,0.72 L 0.96,0.96 L 1.92,1.68 L 1.2,2.64 L 1.68,1.92 L 1.92,2.4 L 2.16,2.64 L 1.92,2.4 L 2.16,1.92 L 1.92,1.92 L 1.92,1.44 L 1.44,1.2 L 1.68,1.2 L 1.92,0.96 L 1.68,1.2 L 1.2,0.96 L 0.96,0.48 L 0.24,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8482"/><g id="g8484" transform="translate(18.24,2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,-0.96 L 1.2,-0.48 L 0.72,-0.96 L 0.96,-1.2 L 0.72,-1.44 L 0.72,-1.2 L 0.24,-0.96 L 0.72,-0.96 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8486"/><g id="g8488" transform="translate(-7.2,-12.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L 0,0.48 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8490"/></g></g></g></g><path d="M 356.00687,240.24 L 356.48687,240 L 356.24687,240 L 356.48687,239.76 L 356.24687,239.52 L 356.48687,238.8 L 356.24687,238.56 L 356.48687,238.32 L 356.48687,238.08 L 357.44687,237.36 L 357.20687,237.36 L 357.68687,237.36 L 357.68687,236.88 L 357.92687,236.88 L 357.68687,236.64 L 358.40687,236.16 L 358.16687,235.92 L 358.40687,235.68 L 358.40687,235.44 L 358.88687,235.2 L 358.40687,235.44 L 358.40687,235.68 L 358.16687,235.92 L 358.40687,236.16 L 357.68687,236.64 L 357.68687,236.88 L 357.44687,236.88 L 357.44687,237.36 L 357.20687,237.12 L 357.44687,237.36 L 356.72687,237.84 L 356.48687,238.08 L 356.48687,238.32 L 356.24687,238.56 L 356.48687,238.8 L 356.24687,239.52 L 356.48687,239.76 L 356.00687,240.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8554"/><g id="g8556" transform="translate(378.08687,222)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.48 L 0,0.96 L -0.24,1.44 L 0.24,1.92 L 0.24,1.68 L 0,1.2 L 0,1.68 L -0.24,1.44 L 0,0.72 L 0.48,0.48 L 0.48,0.96 L 0.72,0.72 L 0.48,0.48 L 0.72,0 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8558"/><g id="g8560" transform="translate(-5.52,-7.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.24,0.48 L -0.24,0.24 L -0.24,0.48 L 0,0.48 L 0.24,0 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8562"/><g id="g8564" transform="translate(-9.36,15.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 0.72,0.48 L 0.48,-0.24 L 0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8566"/><g id="g8568" transform="translate(6.96,0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.48 L -0.24,-0.24 L -0.24,0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8570"/><g id="g8572" transform="translate(0.24,-12.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,0.48 L 0.24,0.24 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8574"/><g id="g8576" transform="translate(-2.88,3.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.48 L 0.48,-1.44 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8578"/><g id="g8580" transform="translate(-14.4,13.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.96,-0.48 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8582"/></g></g></g></g></g></g></g><path d="M 374.48687,242.64 L 374.48687,243.12 L 375.20687,243.84 L 375.44687,242.64 L 375.20687,242.88 L 375.92687,242.88 L 375.68687,242.64 L 375.44687,242.16 L 375.20687,242.4 L 374.72687,241.44 L 374.48687,241.68 L 374.48687,242.4 L 374.48687,242.16 L 374.96687,242.4 L 374.48687,242.64 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8686"/><g id="g8688" transform="translate(375.92687,233.76)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.96,0 L -0.72,-0.24 L -0.96,0 L -0.48,0.48 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8690"/><g id="g8692" transform="translate(-8.88,3.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.48 L 0,-0.48 L 0,-0.72 L -0.48,-0.72 L -0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8694"/><g id="g8696" transform="translate(8.4,7.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L 0.24,0.48 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8698"/><g id="g8700" transform="translate(-10.56,7.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.48 L -0.72,-0.48 L -0.72,-0.72 L -2.4,-0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8702"/><g id="g8704" transform="translate(9.12,-18)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L -0.48,0.24 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8706"/><g id="g8708" transform="translate(-11.28,17.28)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 1.44,0 L 1.44,0.24 L 1.92,0.24 L 1.92,0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8710"/><g id="g8712" transform="translate(-0.48,-14.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0,-0.48 L -0.24,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8714"/><g id="g8716" transform="translate(19.44,6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.48 L -0.24,0.96 L 0.48,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8718"/><g id="g8720" transform="translate(0.96,0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,0.24 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8722"/><g id="g8724" transform="translate(-6.96,-8.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.24,0.24 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8726"/><g id="g8728" transform="translate(-0.24,12.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L -0.48,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8730"/><g id="g8732" transform="translate(0.48,-4.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.48 L 0.48,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8734"/><g id="g8736" transform="translate(-5.76,-12.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8738"/></g></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 364.64687,252.24 L 364.64687,252.48 L 365.36687,252.48 L 365.36687,252.72 L 365.84687,252.72 L 366.32687,252.96 L 366.32687,253.68 L 367.28687,253.68 L 367.52687,253.44 L 367.76687,253.68 L 367.52687,253.92 L 368.24687,253.92 L 368.24687,254.16 L 369.20687,254.4 L 369.44687,255.12 L 369.92687,254.88 L 370.16687,255.12 L 371.36687,255.12 L 371.60687,255.84 L 371.84687,255.6 L 372.80687,255.36 L 373.28687,255.84 L 373.52687,255.84 L 373.52687,256.08 L 374.48687,255.6 L 375.20687,254.64 L 375.68687,254.4 L 374.96687,254.64 L 374.48687,255.6 L 373.52687,255.84 L 373.28687,255.84 L 372.80687,255.36 L 371.84687,255.36 L 371.60687,255.6 L 371.36687,255.12 L 370.16687,255.12 L 369.68687,254.88 L 369.44687,254.88 L 369.20687,254.4 L 368.96687,254.4 L 368.24687,254.16 L 368.24687,253.92 L 367.76687,253.68 L 367.52687,253.44 L 367.28687,253.68 L 366.32687,253.44 L 366.32687,252.96 L 365.84687,252.72 L 365.36687,252.72 L 365.36687,252.24 L 364.88687,252.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8770"/><g id="g8772" transform="translate(380.24687,247.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,1.2 L -0.72,1.92 L -1.2,3.36 L -1.2,3.84 L -0.96,4.08 L -0.72,4.08 L -1.2,3.84 L -0.96,3.6 L -0.48,1.2 L -0.24,0.72 L -0.24,0.24 L 0.24,0 L 0,0 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8774"/><g id="g8776" transform="translate(11.28,8.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.96,0 L -1.2,-0.24 L -1.2,0.24 L -0.48,0 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8778"/><g id="g8780" transform="translate(-16.56,-8.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.48 L 0.48,0 L 0.48,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path8782"/></g></g></g><path d="M 358.64687,187.2 L 358.88687,188.4 L 358.88687,188.16 L 358.88687,188.4 L 359.12687,188.64 L 359.36687,188.4 L 359.12687,188.88 L 359.36687,189.12 L 359.36687,188.88 L 359.36687,189.36 L 359.84687,190.08 L 360.80687,190.08 L 360.80687,190.32 L 361.28687,190.08 L 361.28687,190.32 L 361.52687,190.32 L 361.52687,190.56 L 361.76687,190.32 L 362.24687,190.8 L 362.24687,191.28 L 362.96687,191.76 L 363.44687,191.76 L 364.16687,191.52 L 364.16687,190.8 L 364.64687,190.56 L 365.12687,189.6 L 365.36687,188.16 L 366.80687,188.16 L 366.08687,187.68 L 365.36687,187.44 L 364.40687,186.48 L 363.92687,186.48 L 363.92687,186 L 363.44687,186 L 363.44687,185.04 L 363.92687,184.8 L 363.68687,184.8 L 363.44687,184.32 L 363.44687,183.84 L 364.40687,184.08 L 364.64687,183.84 L 365.36687,183.84 L 364.64687,183.6 L 364.64687,183.12 L 363.92687,183.36 L 362.72687,182.64 L 362.72687,182.16 L 363.20687,181.68 L 364.64687,182.16 L 364.88687,181.68 L 366.80687,180.72 L 367.28687,180 L 368.00687,180.72 L 369.20687,180 L 369.44687,180.48 L 369.92687,180.48 L 370.16687,180.72 L 370.88687,180.96 L 371.12687,180.48 L 370.64687,180.72 L 371.12687,180.48 L 371.60687,178.8 L 372.08687,178.56 L 372.32687,178.08 L 372.80687,178.08 L 373.04687,177.6 L 373.52687,177.6 L 374.48687,176.88 L 373.76687,177.6 L 373.28687,178.56 L 373.04687,178.32 L 372.80687,179.28 L 372.80687,180 L 373.76687,180.96 L 374.48687,180.96 L 375.92687,179.76 L 378.08687,179.76 L 377.84687,179.76 L 378.32687,179.52 L 378.32687,179.04 L 378.08687,178.8 L 377.60687,178.8 L 377.36687,178.56 L 378.08687,178.32 L 377.60687,178.08 L 377.12687,177.12 L 376.16687,177.6 L 376.16687,177.12 L 375.92687,177.12 L 375.92687,176.88 L 375.68687,176.88 L 375.44687,176.64 L 375.44687,176.88 L 374.48687,177.12 L 375.20687,175.92 L 375.68687,174.72 L 376.40687,174" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11046"/><g id="g11048" transform="translate(381.92687,194.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.72 L -0.72,-0.48 L -0.48,0 L -1.2,-0.48 L -1.44,-0.24 L -1.44,-0.48 L -1.92,-0.72 L -1.68,-0.96 L -2.88,-0.96 L -2.4,-0.96 L -2.64,-0.96 L -2.64,-1.2 L -2.16,-0.96 L -1.92,-1.44 L -2.16,-1.2 L -2.4,-1.44 L -2.88,-2.4 L -4.08,-1.2 L -5.04,-0.72 L -5.04,-0.24 L -5.76,0 L -7.2,3.12 L -7.2,3.84 L -6.72,4.08 L -6.48,4.56 L -6.24,4.56 L -6,3.84 L -5.76,4.32 L -6.48,5.04 L -6.96,5.28 L -6.72,5.76 L -5.76,5.52 L -6,6" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11050"/><g id="g11052" transform="translate(-2.16,-2.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.48 L 0,-0.72 L -0.48,-0.72 L -0.48,-0.24 L -0.24,-0.48 L 0,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11054"/><g id="g11056" transform="translate(-9.6,-21.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.96,0.24 L 0.72,0.48 L -0.48,0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11058"/><g id="g11060" transform="translate(-15.6,22.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0.48,0.24 L 0.24,0 L 0.72,0 L 0.24,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11062"/><g id="g11064" transform="translate(21.12,7.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L -0.48,0.24 L -0.72,0 L -0.72,0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11066"/><g id="g11068" transform="translate(-21.12,-7.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11070"/><g id="g11072" transform="translate(23.04,-18)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11074"/><g id="g11076" transform="translate(-0.96,-0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11078"/><g id="g11080" transform="translate(0.96,22.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L -0.24,0 L -0.48,0.24 L -0.48,0 L -0.72,0 L -0.48,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11082"/><g id="g11084" transform="translate(-0.48,2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.48 L 0,-0.48 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11086"/></g></g></g></g></g></g></g></g></g></g><path d="M 374.96687,201.12 L 375.20687,201.6 L 375.20687,201.84 L 375.44687,201.6 L 375.44687,201.84 L 375.68687,201.6 L 375.68687,201.84 L 376.16687,201.84 L 376.16687,202.08 L 375.44687,201.84 L 375.44687,202.08 L 376.16687,202.56 L 376.40687,202.08 L 376.64687,202.08 L 377.12687,202.32 L 377.12687,202.56 L 376.64687,202.8 L 376.88687,203.04 L 376.88687,204 L 377.12687,203.76 L 377.36687,204 L 377.60687,203.04 L 377.36687,202.8 L 378.08687,201.84 L 377.60687,201.36 L 378.08687,201.36 L 378.32687,201.12 L 378.32687,200.88 L 378.56687,200.88 L 378.56687,200.4 L 378.80687,200.88 L 379.28687,200.88 L 379.52687,200.4 L 380.24687,200.4 L 380.72687,200.16 L 380.96687,200.4 L 380.72687,200.64 L 381.20687,200.64 L 381.20687,200.4 L 381.44687,200.16 L 381.20687,200.64 L 381.44687,200.4 L 381.68687,200.64 L 381.68687,200.4 L 381.44687,200.4 L 381.68687,199.92 L 381.44687,199.92 L 381.44687,198.72 L 381.20687,198.48 L 381.44687,198.48 L 381.44687,198.24 L 381.68687,198 L 381.92687,198.24 L 382.40687,197.52 L 381.68687,197.76 L 382.40687,197.28 L 381.68687,197.52 L 382.16687,196.8 L 381.92687,196.32 L 382.40687,196.08 L 382.40687,196.32 L 382.88687,196.32 L 383.12687,196.56 L 383.36687,196.08 L 383.12687,195.84 L 383.12687,195.6 L 382.88687,195.84 L 383.12687,195.6 L 382.88687,195.12 L 382.40687,195.12 L 382.16687,194.64 L 382.40687,194.16 L 381.92687,194.16" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11134"/><g id="g11136" transform="translate(374.96687,211.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L -0.24,-0.72 L -0.48,-0.48 L 0,-0.48 L -0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11138"/><g id="g11140" transform="translate(25.44,-7.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.48,-0.24 L 0.24,-0.72 L -0.48,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11142"/><g id="g11144" transform="translate(5.04,1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.48 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11146"/><g id="g11148" transform="translate(-29.52,-5.76)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L -0.24,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11150"/><g id="g11152" transform="translate(0.72,0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 0.48,0.48 L 0.24,0.48 L 0.24,0.24 L -0.48,-0.48 L -0.24,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11154"/><g id="g11156" transform="translate(0.48,-1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11158"/></g></g></g></g></g></g><path d="M 394.16687,224.64 L 394.16687,225.6 L 393.68687,226.08 L 393.92687,226.8 L 394.16687,226.8 L 394.16687,227.04 L 394.64687,227.28 L 395.12687,228.48 L 395.36687,228.96 L 395.84687,229.2 L 396.08687,229.2 L 396.32687,229.92 L 396.80687,229.92 L 396.32687,229.92 L 397.04687,230.4 L 397.28687,231.36 L 397.52687,232.08 L 397.76687,232.32 L 398.48687,232.56 L 398.00687,232.8 L 398.24687,232.8 L 398.00687,233.04 L 398.24687,233.04 L 398.00687,233.52 L 398.24687,233.76 L 398.48687,233.76 L 398.48687,234 L 398.00687,234 L 398.24687,234.24 L 398.00687,234.48 L 398.24687,234.48 L 398.72687,234.72 L 398.72687,234.24 L 399.20687,233.52 L 398.72687,232.8 L 398.96687,232.56 L 398.72687,232.32 L 398.48687,231.84 L 398.00687,231.6 L 398.00687,231.12 L 397.52687,230.88 L 397.04687,229.92 L 396.80687,229.68 L 396.08687,228.72 L 395.60687,227.28 L 395.12687,227.28 L 395.12687,227.52 L 394.88687,227.52 L 395.12687,227.28 L 395.36687,227.28 L 395.36687,226.8 L 395.12687,227.04 L 395.36687,226.56 L 395.12687,226.32 L 395.12687,226.56 L 395.36687,226.08 L 395.12687,226.08 L 395.84687,225.36 L 395.84687,224.64 L 395.60687,224.64 L 395.60687,224.16 L 396.08687,223.92 L 396.08687,223.68 L 396.32687,223.68 L 396.56687,223.44 L 396.56687,222.96 L 397.04687,222.72 L 397.28687,222.96 L 397.76687,222.48 L 397.76687,222.24 L 398.24687,222.24 L 397.76687,222 L 397.28687,222.48 L 397.04687,222.24 L 396.08687,222.24 L 395.60687,222 L 395.36687,222 L 395.36687,222.48 L 395.12687,222.24 L 395.12687,222.48 L 394.88687,222.96 L 394.88687,223.2 L 394.64687,223.2 L 394.40687,223.44 L 394.64687,223.68 L 394.64687,224.16 L 394.40687,223.92 L 394.16687,224.64 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11218"/><g id="g11220" transform="translate(408.80687,226.56)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.72 L 0.24,0 L 0.72,0.48 L 0.48,-0.72 L 0.72,-0.72 L 0.96,-1.92 L 0.24,-3.12 L -0.72,-3.84 L -0.96,-4.32 L -1.2,-4.32 L -1.44,-4.08 L -1.2,-3.6 L -1.2,-2.88 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11222"/><g id="g11224" transform="translate(-3.12,1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.72 L -0.96,-2.16 L -1.2,-2.16 L -1.2,-1.44 L -0.48,-0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11226"/><g id="g11228" transform="translate(-19.44,3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.48 L 0.24,0.72 L 0.48,0.48 L 0,0.48 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11230"/><g id="g11232" transform="translate(12.48,-9.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L -0.24,-0.72 L -0.48,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11234"/><g id="g11236" transform="translate(6.72,-16.8)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.96 L 0.24,0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11238"/><g id="g11240" transform="translate(2.64,13.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L -0.48,-0.24 L -0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path11242"/></g></g></g></g></g></g><path d="M 264.32687,285.84 L 265.28687,284.64 L 265.52687,284.88 L 265.28687,285.6 L 265.28687,285.36 L 265.76687,285.84 L 265.28687,285.36 L 265.76687,284.4 L 266.00687,284.16 L 265.76687,284.4 L 266.00687,284.16 L 266.00687,283.92 L 266.24687,283.92 L 266.24687,283.68 L 266.96687,283.2 L 267.68687,282.96 L 267.92687,282.96 L 268.40687,283.44 L 267.92687,283.92 L 268.40687,283.92 L 268.64687,284.16 L 269.12687,284.16 L 268.88687,284.4 L 269.12687,284.64 L 268.64687,284.64 L 268.88687,284.88 L 268.64687,285.12 L 268.16687,285.84 L 269.12687,285.12 L 269.36687,286.08 L 269.12687,286.32 L 269.60687,286.32" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2876"/><g id="g2878" transform="translate(266.72687,282.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L -0.24,0.72 L -0.96,0.24 L -1.44,0.48 L -1.92,0 L -2.4,0.24 L -1.92,0.72 L -1.92,0.96 L -2.16,1.2 L -3.12,0.48 L -2.16,1.2 L -2.64,1.44 L -3.36,1.44 L -3.6,1.68 L -3.6,1.92 L -4.56,2.4 L -5.28,1.92 L -5.28,1.44 L -5.04,1.2 L -5.04,0.96 L -4.56,0.96 L -4.8,0.48 L -5.28,1.2 L -5.28,0.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2880"/><g id="g2882" transform="translate(-4.8,3.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 1.92,-0.96 L 3.36,-2.16 L 3.6,-1.92 L 2.4,-0.24 L 2.16,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2884"/><g id="g2886" transform="translate(-0.24,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2888"/><g id="g2890" transform="translate(2.4,0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2892"/><g id="g2894" transform="translate(2.16,0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2896"/></g></g></g></g></g><path d="M 269.60687,279.36 L 269.36687,280.08 L 268.64687,279.6 L 268.16687,278.88 L 267.92687,278.88 L 268.16687,279.36 L 267.44687,278.4 L 267.92687,279.36 L 267.92687,280.08 L 266.72687,280.08 L 267.92687,280.56 L 268.64687,281.04 L 268.16687,281.28 L 268.16687,281.04 L 268.16687,281.52 L 267.92687,281.52 L 267.20687,282.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2912"/><g id="g2914" transform="translate(268.16687,279.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0.48,0.96 L -0.24,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2916"/><g id="g2918" transform="translate(-0.96,2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -1.44,-1.68 L -0.96,-0.48 L -0.48,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2920"/></g></g><path d="M 272.24687,276.96 L 272.48687,277.2 L 272.24687,277.44 L 272.48687,278.16 L 272.24687,278.16 L 272.48687,278.16 L 272.48687,278.64 L 272.24687,278.4 L 272.24687,278.88 L 272.00687,278.4 L 272.00687,278.88 L 271.76687,278.88 L 272.00687,279.12 L 271.76687,279.12 L 271.52687,278.16 L 271.28687,278.64 L 271.28687,278.4 L 271.76687,277.68 L 271.76687,276.96 L 271.04687,276.48 L 271.28687,276.72 L 271.52687,277.44 L 271.28687,277.44 L 270.80687,277.2 L 271.52687,277.68 L 270.80687,278.64 L 270.08687,277.44 L 270.08687,276.96 L 270.08687,277.68 L 269.84687,277.68 L 268.64687,276.96 L 268.88687,277.68 L 269.12687,278.16 L 269.12687,278.4 L 269.60687,279.36" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2972"/><g id="g2974" transform="translate(270.32687,279.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.48 L -0.96,-1.68 L -0.72,-1.44 L -0.24,-1.44 L 0.24,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2976"/><g id="g2978" transform="translate(0.96,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0,0.24 L -0.24,-0.24 L 0,-0.48 L 0.24,0 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2980"/><g id="g2982" transform="translate(1.44,-1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L -0.24,-0.48 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2984"/><g id="g2986" transform="translate(0.24,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.72 L 0,0.48 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2988"/><g id="g2990" transform="translate(0.48,0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2992"/><g id="g2994" transform="translate(-0.96,-0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path2996"/><g id="g2998" transform="translate(-3.6,0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.72 L -0.48,-0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3000"/></g></g></g></g></g></g></g><path d="M 301.76687,237.12 L 301.52687,236.88 L 301.52687,237.12 L 301.04687,236.88 L 301.04687,237.12 L 300.56687,237.36 L 300.32687,236.88 L 300.56687,236.16 L 300.32687,236.16 L 300.32687,235.92 L 300.32687,236.16 L 300.08687,235.92 L 300.08687,236.16 L 300.08687,235.92 L 300.32687,236.64 L 299.60687,236.4 L 300.08687,236.88 L 299.60687,236.88 L 300.08687,236.88 L 300.32687,237.6 L 299.84687,237.36 L 299.84687,237.84 L 299.60687,237.6 L 299.36687,237.84 L 299.36687,237.36 L 299.12687,237.36 L 299.12687,237.12 L 298.88687,237.12 L 299.36687,237.12 L 299.60687,236.88 L 299.12687,236.88 L 299.36687,236.64 L 299.12687,236.64 L 299.36687,236.16 L 299.12687,236.16 L 299.36687,235.92 L 298.88687,235.92 L 298.64687,235.44 L 298.64687,236.16 L 298.40687,236.16 L 298.64687,236.64 L 298.64687,237.12 L 297.92687,235.2 L 297.68687,234.48 L 297.68687,234.72 L 297.44687,234.48 L 297.68687,235.44 L 297.44687,235.68 L 297.92687,236.88 L 297.68687,236.88 L 297.44687,236.64 L 297.68687,236.88 L 297.44687,236.88 L 297.44687,236.4 L 297.20687,236.88 L 296.96687,236.64 L 297.20687,236.88 L 296.96687,236.64 L 296.72687,236.88 L 296.96687,236.4 L 296.48687,236.64 L 296.48687,236.16 L 296.72687,236.16 L 296.96687,235.92 L 296.72687,235.92 L 296.48687,235.44 L 296.72687,235.44 L 296.24687,235.44 L 296.00687,234.96 L 296.00687,234.72 L 295.76687,234.72 L 296.00687,234.72 L 295.76687,234.48 L 296.00687,234.24 L 295.76687,234.24 L 296.00687,234" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3320"/><g id="g3322" transform="translate(294.56687,235.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.24,-0.24 L 0.48,0 L 0.72,-0.24 L 0.96,0 L 1.2,0.72 L 0.96,0.96 L 1.2,0.72 L 0.72,0.72 L 0.96,0.48 L 0.96,0.24 L 0.72,0.48 L 0.72,0.24 L 0.24,0.48 L 0.24,0.24 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3324"/><g id="g3326" transform="translate(1.2,-1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.24,0.48 L -0.72,0.48 L -0.72,0.24 L -0.48,0.24 L -0.96,0.24 L -0.96,0.72 L -0.96,0.48 L -1.2,0.72 L -1.2,0.24 L -1.44,0.72 L -1.68,0.24 L -1.68,0.48 L -1.92,0.24 L -1.2,0 L -0.96,0.24 L -1.2,-0.24 L -0.96,0 L -0.96,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3328"/><g id="g3330" transform="translate(-5.28,25.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0.72,-0.48 L 1.44,-0.24 L 1.68,-0.72 L 1.92,-0.72 L 2.16,-0.48 L 2.4,0 L 2.64,-0.24 L 2.88,0.24 L 2.88,0.72 L 3.36,1.44 L 3.36,1.68 L 3.12,1.92" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3332"/><g id="g3334" transform="translate(2.88,-4.8)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.48 L -0.24,0.48 L -0.96,1.44 L -1.92,0.96 L -1.44,0.48 L -1.68,-0.72 L -0.96,-0.24 L -0.72,-0.48 L -0.72,-1.2 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3336"/><g id="g3338" transform="translate(2.16,-19.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0.48,0.24 L 0.48,0.72 L 0.24,0.72 L 0.48,0.48 L 0.24,0.48 L 0.24,0.24 L 0,0.48 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3340"/><g id="g3342" transform="translate(-4.08,21.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.48,0.96 L 0.24,1.2 L 0,1.2 L 0,0.96 L -0.48,0.72 L -0.24,0.72 L -0.24,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3344"/><g id="g3346" transform="translate(6.48,-18.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0,0 L 0,0.48 L -0.24,0.24 L -0.24,0.48 L -0.48,0.24 L -0.24,0.24 L -0.72,0.24 L -0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3348"/><g id="g3350" transform="translate(-3.12,21.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.48,0.24 L 0.72,0.24 L 0.96,0.48 L 0.24,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3352"/><g id="g3354" transform="translate(-4.08,-1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.48,0.24 L 0.72,0.24 L 0.72,0.72 L 0,0.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3356"/><g id="g3358" transform="translate(-0.24,3.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,0.24 L 0.72,-0.24 L 0.24,-0.24 L 0.72,-0.72 L 0,-0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3360"/><g id="g3362" transform="translate(5.76,-24.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L 0,-0.48 L 0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3364"/><g id="g3366" transform="translate(-0.72,-1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.48,0 L -0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3368"/><g id="g3370" transform="translate(-4.8,23.76)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0.48,0 L 0,0.24 L 0,0 z M 2.4,-24.72 L 2.88001,-24.72 L 2.88001,-24.24 L 2.4,-24.24 L 2.4,-24.72 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3372"/><g id="g3374" transform="translate(2.88,-24.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3376"/><g id="g3378" transform="translate(-0.72,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3380"/><g id="g3382" transform="translate(1.44,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3384"/><g id="g3386" transform="translate(7.44,1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.96,0 L -0.72,0.24 L 0.48,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3388"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 236.00687,283.44 L 235.28687,284.4 L 233.60687,284.64 L 235.04687,284.4 L 235.28687,284.88 L 234.32687,285.12 L 234.80687,284.88 L 234.80687,285.12 L 234.80687,284.88 L 235.28687,284.88 L 235.28687,284.4 L 236.24687,283.92 L 236.48687,283.92 L 236.72687,284.16 L 236.48687,284.64 L 236.00687,284.64 L 236.00687,284.88 L 235.76687,285.36 L 235.28687,285.84 L 235.76687,285.36 L 235.76687,286.08 L 236.00687,285.6 L 236.48687,285.36 L 236.48687,284.88 L 237.20687,284.64 L 237.68687,284.88 L 238.16687,285.84 L 236.24687,286.56 L 236.96687,286.32 L 237.20687,286.56 L 236.48687,287.04 L 237.44687,286.56 L 237.68687,286.8 L 237.20687,286.8 L 237.92687,286.8 L 237.68687,287.04 L 236.72687,287.28 L 237.44687,287.04 L 237.44687,287.28 L 237.44687,287.04 L 237.68687,287.28 L 238.16687,286.8 L 238.40687,286.8 L 238.40687,287.04 L 237.92687,287.28 L 238.40687,287.28 L 238.16687,287.52 L 237.68687,287.76 L 237.20687,287.76 L 236.72687,288 L 237.44687,287.76 L 237.44687,288 L 237.68687,287.76 L 237.68687,288 L 238.16687,287.76 L 237.92687,288 L 238.16687,288 L 238.64687,287.28 L 239.12687,287.28 L 239.36687,288" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3912"/><g id="g3914" transform="translate(257.12687,288)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.72,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3916"/><g id="g3918" transform="translate(1.2,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.48,0 L 0.48,-0.24 L 0.48,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3920"/><g id="g3922" transform="translate(0.96,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.24,-0.48 L 0.48,-0.48 L 0.48,-0.96 L 0.96,-0.72 L 1.2,0 L 1.44,-0.48 L 1.2,-0.48 L 1.2,-0.96 L 0.72,-1.2 L 0.96,-1.68 L 1.44,-1.92 L 1.44,-1.68 L 1.68,-2.16" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3924"/><g id="g3926" transform="translate(-1.44,-2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.48 L -0.48,0.48 L -0.48,0.72 L -0.96,1.2 L -1.44,1.44 L -1.92,1.44 L -2.16,1.2 L -2.64,0.96 L -2.64,0.48 L -2.88,0.48 L -2.64,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3928"/><g id="g3930" transform="translate(-4.32,-0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L -0.24,0.72 L -0.24,0.48 L -0.48,0.96 L -0.72,0.72 L -0.72,0.48 L -0.96,0.72 L -1.2,0.48 L -0.72,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3932"/><g id="g3934" transform="translate(-16.32,1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0.48,0 L 0.24,0 L 0.72,0 L 0.48,0.24 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3936"/><g id="g3938" transform="translate(-1.92,-2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0,0.24 L -0.24,0.24 L -0.48,0.48 L -0.24,0.24 L 0,0.48 L 0.48,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3940"/><g id="g3942" transform="translate(0.48,1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.72 L 0.72,-0.72 L 0.72,0 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3944"/><g id="g3946" transform="translate(18.24,0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L -0.24,0 L -0.24,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3948"/><g id="g3950" transform="translate(1.2,-1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L -0.48,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3952"/><g id="g3954" transform="translate(-1.2,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.72 L -0.24,0.48 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3956"/><g id="g3958" transform="translate(0.72,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3960"/><g id="g3962" transform="translate(-20.88,-1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3964"/><g id="g3966" transform="translate(18.72,1.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3968"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 252.32687,284.88 L 252.08687,284.16 L 252.08687,283.44 L 251.84687,283.44 L 251.84687,283.92 L 251.36687,284.64 L 250.64687,283.92 L 250.64687,283.68 L 250.16687,282.24 L 250.88687,282.96 L 251.12687,282.96 L 251.12687,282.72 L 250.64687,282.24 L 251.36687,282.24 L 251.36687,282 L 251.12687,281.76 L 250.88687,282 L 250.64687,281.76 L 251.12687,281.76 L 251.12687,281.28 L 251.36687,281.28 L 251.36687,281.04 L 251.60687,281.28 L 251.60687,281.04 L 251.12687,280.8 L 251.12687,280.56 L 251.84687,280.56 L 251.84687,280.08 L 251.36687,280.08 L 251.60687,280.08 L 251.84687,279.84 L 251.60687,279.36 L 251.60687,278.88 L 251.12687,278.64 L 251.36687,278.4 L 251.12687,278.16" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path3996"/><g id="g3998" transform="translate(254.48687,285.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.48 L 0,-0.96 L 0.24,-0.72 L 0,-0.96 L 0,-1.44 L 0.48,-1.92 L 0.24,-2.4 L 0,-2.4 L -0.24,-2.16 L -0.48,-2.4 L -0.24,-1.68 L -0.72,-0.72 L -0.96,-2.16 L -0.72,-2.4 L -0.96,-2.4 L -0.96,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4000"/><g id="g4002" transform="translate(6.96,-1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.48 L -0.48,0 L -1.2,-0.24 L -2.4,0.24 L -2.64,0.72 L -2.4,0.72 L -2.64,0.72 L -2.4,0.96 L -2.88,1.2 L -2.64,1.44 L -3.12,1.92 L -3.36,1.68 L -3.36,1.92 L -3.6,1.92 L -3.6,2.16" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4004"/><g id="g4006" transform="translate(-27.6,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,-0.48 L 0.96,-1.2 L 1.2,-1.2 L 0.96,-1.44 L 1.44,-1.44 L 2.16,-0.24 L 1.44,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4008"/><g id="g4010" transform="translate(0,-2.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,0.48 L 0.96,0.72 L 0.48,0.96 L 0.24,0.72 L 0.24,1.2 L 0,1.2" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4012"/><g id="g4014" transform="translate(0,1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.24 L 0.24,0.72 L -0.24,0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4016"/><g id="g4018" transform="translate(18.96,2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4020"/><g id="g4022" transform="translate(-17.04,-1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0.48,0 L 0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4024"/><g id="g4026" transform="translate(-2.16,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4028"/><g id="g4030" transform="translate(21.12,1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4032"/></g></g></g></g></g></g></g></g></g><path d="M 251.12687,278.16 L 251.36687,277.92 L 250.88687,277.92 L 251.12687,277.44 L 250.64687,277.44 L 250.88687,276.96 L 250.64687,276.96 L 250.64687,276.72 L 250.40687,276.72 L 250.40687,276.48 L 249.92687,276.72 L 250.16687,276.48 L 249.68687,276.48 L 249.68687,276.24 L 249.20687,276.24 L 248.96687,275.52 L 249.20687,275.28 L 248.96687,275.04 L 248.72687,275.28 L 248.48687,275.04 L 248.24687,274.56 L 248.24687,274.32 L 248.00687,274.32 L 248.00687,274.8 L 248.00687,274.32 L 247.76687,274.32 L 247.76687,274.56 L 247.52687,274.32 L 246.80687,274.8 L 247.52687,274.08 L 247.04687,274.08 L 247.04687,273.84 L 246.80687,273.84 L 246.56687,273.36 L 246.56687,273.6 L 246.32687,273.6 L 246.32687,273.12 L 246.32687,273.6 L 246.08687,273.6 L 246.08687,273.36 L 246.08687,273.6 L 245.60687,272.64 L 245.12687,272.64 L 245.12687,272.4 L 244.88687,272.64 L 244.64687,272.64 L 244.64687,271.92 L 244.16687,271.68 L 243.92687,271.92 L 244.16687,271.44 L 243.92687,271.68 L 243.92687,271.44 L 243.68687,271.68 L 243.68687,271.44 L 243.68687,271.68 L 243.44687,271.44 L 243.44687,271.2 L 243.20687,272.16 L 242.96687,272.16 L 242.96687,271.92 L 243.20687,271.92 L 242.96687,271.68 L 243.20687,271.68 L 242.96687,271.44 L 242.72687,271.44 L 242.00687,271.68 L 242.00687,271.44 L 242.00687,271.68 L 241.76687,271.44 L 242.24687,270.96 L 242.72687,270.96 L 242.00687,270.96 L 241.52687,271.44 L 241.28687,271.2 L 241.28687,271.44 L 240.80687,271.68 L 240.80687,271.44 L 240.32687,270.96 L 240.32687,270.72 L 240.56687,270.96 L 240.32687,270.48 L 240.80687,269.76 L 241.28687,270 L 241.28687,270.24 L 241.52687,270 L 241.28687,270 L 241.76687,270 L 242.00687,269.76 L 243.20687,270.72 L 243.44687,270.48 L 243.20687,270.72 L 242.48687,270 L 242.00687,269.76 L 242.72687,269.28 L 241.76687,269.52 L 242.00687,268.56 L 242.48687,268.32 L 242.00687,268.32 L 241.52687,268.8 L 241.04687,269.04 L 241.28687,268.56 L 241.76687,268.08 L 241.76687,267.84 L 241.28687,268.32 L 240.56687,268.32 L 241.52687,267.84 L 241.28687,267.6 L 240.56687,268.08 L 241.04687,267.36 L 240.80687,267.36 L 240.80687,266.88 L 240.56687,267.12 L 240.56687,267.84 L 240.32687,266.88 L 240.56687,266.64 L 240.08687,266.4 L 240.08687,266.88 L 239.84687,267.12 L 239.84687,266.64 L 240.08687,266.64 L 239.84687,266.64 L 239.84687,266.16 L 239.84687,266.4 L 239.60687,266.16 L 239.60687,266.64 L 239.36687,266.16 L 239.60687,265.92 L 239.36687,265.92 L 239.12687,265.68 L 239.12687,266.64 L 239.36687,268.32 L 239.12687,269.28 L 238.64687,269.52 L 238.16687,268.8 L 238.16687,267.6 L 237.92687,267.12 L 238.16687,266.4 L 237.92687,266.16" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4108"/><g id="g4110" transform="translate(246.56687,273.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.48 L -0.24,0.72 L -0.24,0.48 L 0,0.24 L -0.24,0.24 L -0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4112"/><g id="g4114" transform="translate(-5.52,-4.56)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.48,-0.24 L -0.48,-0.48 L 0,-0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4116"/><g id="g4118" transform="translate(3.12,2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.48 L -0.72,0.48 L -0.96,0.24 L -0.72,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4120"/><g id="g4122" transform="translate(-2.4,-2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.48 L -0.48,0.24 L -0.48,0 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4124"/><g id="g4126" transform="translate(-4.32,-1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.72 L 0.48,1.68 L 0,1.92 L -0.48,1.68" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4128"/><g id="g4130" transform="translate(2.64,2.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L 0,-0.48 L 0.48,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4132"/><g id="g4134" transform="translate(7.92,5.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.48 L 0.24,-0.24 L -0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4136"/><g id="g4138" transform="translate(-5.04,-3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.48,0 L -0.72,0.24 L -0.72,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4140"/><g id="g4142" transform="translate(-4.8,-5.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0.24,-0.48 L 0,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4144"/><g id="g4146" transform="translate(2.16,1.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L 0,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4148"/><g id="g4150" transform="translate(-1.92,-2.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.48 L 0,-0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4152"/></g></g></g></g></g></g></g></g></g></g></g><path d="M 251.12687,247.68 L 251.36687,247.92 L 250.88687,248.16 L 250.88687,248.4 L 250.64687,248.4 L 250.64687,248.64 L 251.12687,248.16 L 252.08687,248.16 L 252.56687,247.68 L 252.80687,247.92 L 252.80687,248.16 L 251.36687,248.88 L 251.60687,249.36 L 250.88687,249.6 L 250.88687,249.84 L 251.60687,249.36 L 251.84687,249.36 L 252.56687,249.84 L 252.56687,250.32 L 252.80687,249.84 L 253.04687,250.32 L 253.04687,249.6 L 253.52687,249.12 L 254.48687,248.88 L 254.72687,249.36 L 254.72687,249.12 L 254.96687,249.12 L 254.96687,249.84 L 254.24687,250.56 L 254.24687,251.04 L 253.52687,251.52 L 254.24687,251.04 L 254.48687,251.04 L 254.24687,251.76 L 254.48687,251.76 L 254.24687,252.24 L 254.48687,252.24 L 254.72687,252 L 254.48687,250.56 L 254.72687,250.32 L 254.96687,250.56 L 254.96687,250.32 L 255.20687,249.84 L 255.20687,248.88 L 255.68687,248.88 L 255.44687,248.64 L 255.44687,247.92 L 254.72687,246.96 L 254.96687,246.24 L 255.44687,245.76 L 256.40687,246.48 L 255.68687,245.76 L 255.92687,245.52 L 255.92687,245.28 L 256.40687,245.28 L 256.40687,245.52 L 256.64687,245.76 L 256.64687,246 L 256.88687,246 L 256.64687,246.24 L 256.88687,246 L 257.12687,246.24 L 256.88687,246.48 L 257.12687,246.48 L 257.36687,246.72 L 256.64687,246.96 L 257.36687,246.72 L 257.36687,246.96 L 257.36687,246.72 L 257.60687,246.96 L 257.36687,247.2 L 257.60687,247.2 L 257.84687,247.68 L 257.60687,247.68 L 257.12687,247.44 L 257.36687,247.92 L 258.08687,248.16 L 258.08687,248.4 L 257.36687,248.16 L 257.84687,248.64 L 257.12687,248.64 L 258.08687,248.88 L 257.84687,250.08 L 257.60687,250.08 L 257.84687,250.32 L 257.60687,251.04 L 257.12687,251.28 L 256.40687,251.04 L 257.12687,251.28 L 256.40687,252 L 257.60687,251.28 L 257.60687,251.52 L 257.84687,251.76 L 257.84687,252.24 L 257.60687,252.48 L 257.12687,252.72 L 256.40687,252.48 L 257.12687,252.72 L 256.64687,252.96 L 257.12687,252.72 L 256.88687,253.2 L 256.64687,253.44 L 257.12687,253.2 L 257.12687,252.72 L 257.60687,252.72 L 258.08687,252.48 L 258.32687,252.72 L 257.84687,253.68 L 257.36687,253.68 L 257.12687,253.92 L 256.64687,253.68 L 257.12687,254.16 L 256.88687,254.16 L 257.36687,254.16 L 257.60687,253.68 L 257.84687,253.68 L 257.60687,254.4 L 257.84687,254.88 L 257.84687,254.16 L 258.08687,253.92 L 258.08687,253.44 L 258.56687,253.44 L 258.80687,253.68 L 259.52687,253.44 L 259.28687,254.64 L 259.52687,254.88 L 259.52687,253.44 L 259.76687,253.68 L 260.24687,253.92 L 260.72687,252.72 L 261.20687,252.48 L 260.72687,252.48 L 260.48687,253.44 L 260.00687,253.44 L 260.00687,252.72 L 260.48687,251.76 L 261.20687,251.76 L 261.92687,251.28 L 262.40687,252 L 262.64687,252.24 L 262.16687,253.2 L 261.92687,253.2 L 261.44687,252.48 L 261.68687,252.96 L 261.68687,253.68 L 261.92687,253.44 L 261.92687,253.68 L 262.40687,253.92 L 262.16687,254.16 L 262.40687,253.92 L 262.64687,253.92 L 262.88687,254.64 L 262.88687,254.16 L 263.60687,253.44 L 263.36687,253.2 L 263.60687,252.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4248"/><g id="g4250" transform="translate(266.72687,257.28)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L -0.48,0.72 L -0.72,0.72 L -0.48,0.24 L -0.72,0.72 L -1.2,0.72 L -0.72,1.2 L -0.96,1.68 L -0.96,1.44 L -0.72,1.2 L -0.48,1.2 L -0.72,1.44 L -0.48,1.44 L -0.72,1.68 L -0.48,1.68 L -0.72,2.16 L -0.48,2.16 L -0.24,2.4 L -0.24,1.68 L 0.48,1.68 L 0,2.16 L 0.72,1.68 L 0.24,2.16 L 0.48,2.16 L 0.96,1.68" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4252"/><g id="g4254" transform="translate(-2.64,-3.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L -0.48,0.48 L -0.24,0.48 L 0.24,1.2 L 0,1.68 L -0.48,1.44 L -0.48,2.4 L -0.48,1.68 L 0.24,1.68 L 0.48,1.44 L 0.48,2.4 L 0,3.12 L 0.48,2.4 L 0.48,3.36 L 0.72,1.92 L 0.96,1.68 L 0.96,1.44" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4256"/><g id="g4258" transform="translate(5.04,7.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.48 L 0,0.72 L -0.96,0.24 L -1.2,0.48 L -0.24,1.2 L -0.24,1.44 L 0,1.2 L 0.96,2.16 L 0.72,2.16 L 0.72,2.4 L 0.96,2.16 L 0.96,2.64 L 1.44,2.64 L 1.68,2.4 L 1.92,2.88" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4260"/><g id="g4262" transform="translate(-11.04,-10.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.48 L 0.24,-1.2 L 0.48,-1.2 L 0.24,-1.44 L 0.72,-1.68 L 0.96,-1.44 L 0.72,-1.2 L 0.72,-0.72 L 1.2,-1.2 L 1.44,-0.96 L 1.2,-0.72 L 1.2,0.48 L 0.24,1.2 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4264"/><g id="g4266" transform="translate(-6.48,-1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 1.44,-0.72 L 1.68,-0.96 L 2.4,-1.2 L 2.4,-0.72 L 2.64,-0.48 L 2.64,-0.24 L 2.88,0 L 1.92,0 L 1.44,0.48 L 0.72,0.24 L 0.48,0.48 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4268"/><g id="g4270" transform="translate(16.8,11.04)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.48 L 0.24,0.24 L -0.24,0.72 L 0,0.48 L 0,0.72 L 0.24,0.48 L 0,0.96 L 0.24,1.2 L 0.24,0.96 L 0.48,0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4272"/><g id="g4274" transform="translate(-9.6,-8.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.48 L 0.48,-1.2 L 0.96,-1.44 L 0.96,-0.96 L 1.44,-0.96 L 1.2,-0.48 L 0.72,0 L -0.24,0.48 L -0.48,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4276"/><g id="g4278" transform="translate(-3.84,-7.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.48,0.24 L -0.24,0.48 L -0.96,1.2 L -1.44,2.4 L -1.68,2.4 L -1.44,2.64 L -2.64,2.88 L -2.88,3.36 L -3.6,3.12" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4280"/><g id="g4282" transform="translate(4.8,7.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L -0.72,1.2 L 0,0.48 L -0.48,1.44 L -0.96,1.68 L -1.44,1.68 L -0.96,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4284"/><g id="g4286" transform="translate(4.8,2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0.24 L 0,0.48 L -0.48,0 L -0.48,-0.48 L -0.24,-0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4288"/><g id="g4290" transform="translate(-2.16,-0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.48 L 0.96,-0.96 L 0.96,-0.24 L 0.72,0.24 L 0.48,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4292"/><g id="g4294" transform="translate(3.84,3.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.96,0.72 L -0.96,0.96 L -0.96,0.72 L -0.24,0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4296"/><g id="g4298" transform="translate(6,8.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L 0,0.24 L -0.24,0.24 L 0,0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4300"/><g id="g4302" transform="translate(-19.68,-15.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L 0.48,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4304"/><g id="g4306" transform="translate(5.28,2.4)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4308"/><g id="g4310" transform="translate(11.52,9.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4312"/><g id="g4314" transform="translate(3.12,4.56)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4316"/><g id="g4318" transform="translate(-4.56,-6.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.48,0.48 L -0.96,0.72 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path4320"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 213.44687,281.52 L 213.68687,281.28 L 213.44687,281.28 L 213.20687,281.04 L 213.68687,281.28 L 213.20687,281.04 L 213.44687,281.04 L 213.44687,280.56 L 213.20687,280.8 L 212.72687,280.56 L 212.96687,280.8 L 212.72687,280.56 L 213.20687,280.32 L 212.48687,280.32 L 212.24687,279.84 L 212.72687,279.84 L 212.24687,279.84 L 212.24687,279.6 L 212.48687,279.6 L 212.00687,279.36 L 212.00687,278.88 L 212.24687,279.12 L 212.00687,278.88 L 212.24687,278.4 L 212.00687,278.4 L 212.00687,277.68 L 211.76687,277.68 L 212.00687,277.68 L 211.76687,277.2 L 211.76687,276.96 L 211.28687,276.24 L 211.52687,275.76 L 211.76687,276 L 212.24687,276.24 L 212.00687,276 L 212.24687,276 L 212.48687,275.76 L 212.48687,276.24 L 212.72687,276.24 L 212.72687,276.48 L 212.48687,276.48 L 212.72687,276.72 L 212.96687,276.48 L 212.96687,276.72 L 213.20687,276.72 L 213.68687,277.2 L 213.44687,277.44 L 213.68687,277.44 L 213.44687,277.68 L 213.92687,277.68 L 213.92687,277.92 L 214.16687,277.92 L 213.92687,278.16 L 214.16687,277.92 L 214.40687,278.16 L 214.16687,278.4 L 214.40687,278.4 L 214.16687,278.64 L 214.64687,278.4 L 214.64687,278.88 L 214.40687,278.88 L 214.64687,278.88 L 214.88687,279.36 L 215.60687,279.6 L 215.84687,280.32 L 216.32687,280.32 L 216.32687,279.6 L 216.08687,279.6 L 216.32687,279.36 L 215.84687,279.36 L 216.08687,279.36 L 215.36687,278.64 L 216.56687,279.12 L 216.08687,278.88 L 216.32687,278.64 L 215.84687,278.64 L 215.12687,277.92 L 215.36687,277.92 L 215.36687,277.68 L 215.12687,277.68 L 214.88687,277.44 L 215.36687,277.44 L 214.64687,277.2 L 214.64687,276.96 L 215.36687,277.44 L 215.60687,277.2 L 215.36687,277.44 L 214.64687,276.96 L 214.40687,276.48 L 215.36687,276.72 L 214.88687,276.48 L 214.64687,276.24 L 214.88687,276.24 L 214.40687,276.24 L 214.40687,276 L 214.88687,276 L 214.64687,276 L 214.64687,275.76 L 214.16687,275.76 L 214.64687,275.52 L 214.16687,275.52 L 214.16687,275.28 L 213.92687,275.28 L 213.68687,275.04 L 213.92687,274.8 L 214.88687,275.52 L 214.40687,274.8 L 214.64687,274.56 L 214.88687,274.8 L 215.12687,274.8 L 215.12687,275.04 L 215.36687,274.8 L 215.36687,275.28 L 215.60687,275.04 L 215.84687,275.28 L 215.60687,275.04 L 216.08687,275.28 L 216.08687,275.52 L 216.08687,275.28 L 216.08687,275.52 L 216.08687,275.28 L 216.56687,275.52 L 217.04687,276 L 217.04687,275.52 L 215.84687,275.04 L 215.60687,274.56 L 215.84687,274.8 L 215.84687,274.56 L 216.08687,274.56 L 216.08687,275.04 L 216.32687,274.56 L 216.80687,275.04 L 216.56687,274.8 L 216.80687,274.8 L 217.04687,275.52 L 217.52687,275.28 L 217.76687,275.04 L 217.76687,275.28 L 217.52687,275.52 L 217.76687,275.52 L 217.76687,275.76 L 217.76687,275.52 L 217.76687,275.76 L 218.00687,275.76 L 218.00687,276.24 L 218.24687,276 L 218.48687,276.48 L 218.48687,276 L 218.72687,276 L 218.96687,275.76 L 219.20687,276 L 218.96687,276 L 219.20687,276 L 218.72687,276.24 L 219.20687,276.24 L 218.96687,276.72 L 219.20687,276.72 L 219.68687,276.48 L 219.68687,276.72 L 219.44687,276.72 L 219.92687,276.72 L 219.68687,276.96 L 219.92687,276.96 L 219.92687,277.2 L 219.20687,276.96 L 219.68687,277.2 L 219.44687,277.2 L 219.92687,277.2 L 219.68687,277.2 L 219.44687,277.68 L 219.20687,277.44 L 219.44687,277.68 L 219.68687,277.44 L 219.92687,277.44 L 219.92687,277.68 L 220.16687,277.92 L 219.92687,277.92 L 220.16687,277.92 L 220.16687,278.16 L 219.44687,277.92 L 220.40687,278.16 L 220.16687,278.4 L 220.64687,278.16 L 220.16687,278.64 L 220.88687,278.4 L 220.64687,278.88 L 220.88687,278.64 L 220.88687,279.12 L 221.12687,278.64 L 221.36687,278.64 L 221.36687,279.12 L 221.60687,279.12 L 221.60687,279.36 L 221.60687,278.88 L 221.84687,279.12 L 221.84687,279.6 L 221.60687,279.6 L 221.60687,279.36 L 221.60687,279.6 L 221.36687,279.84 L 221.60687,279.84 L 221.84687,279.6 L 221.84687,279.84 L 222.08687,279.6 L 222.32687,279.84 L 222.08687,280.08 L 222.56687,280.08 L 222.56687,280.32 L 222.56687,280.08 L 222.80687,280.32 L 222.32687,279.6 L 222.80687,279.6 L 222.56687,279.36 L 222.80687,279.36 L 222.56687,279.12 L 223.04687,278.88 L 223.52687,279.84 L 224.24687,280.08 L 224.00687,279.84 L 224.24687,279.84 L 223.52687,279.36 L 223.76687,279.12 L 224.00687,279.6 L 224.00687,279.12 L 224.48687,279.36 L 224.48687,279.6 L 224.72687,279.6 L 224.24687,279.12 L 224.48687,279.12 L 224.48687,278.88 L 224.72687,279.36 L 224.72687,278.88 L 224.48687,278.88 L 224.24687,278.64 L 224.00687,278.64 L 224.24687,278.4 L 223.76687,278.4 L 223.52687,278.16 L 223.76687,278.16 L 223.28687,277.68 L 224.24687,277.2 L 223.76687,277.2 L 223.28687,277.68 L 223.04687,277.44 L 223.52687,276.48 L 224.00687,276.48 L 224.48687,276 L 224.00687,276.48 L 223.28687,276.24 L 223.28687,276.48 L 223.04687,276.96 L 222.32687,276.96 L 222.56687,276.96 L 222.32687,276.72 L 222.56687,276.24 L 222.08687,276.72 L 222.08687,276.48 L 221.84687,276.48 L 222.32687,276 L 222.08687,276 L 221.84687,276.48 L 221.60687,276.48 L 221.84687,275.52 L 221.36687,276.24 L 221.60687,276 L 221.36687,276.24 L 221.36687,275.76 L 221.12687,276 L 220.88687,275.76 L 221.84687,275.28 L 221.36687,275.52 L 221.12687,275.52 L 221.36687,275.28 L 220.88687,275.28 L 220.88687,275.04 L 221.12687,275.04 L 220.88687,274.8 L 221.36687,274.8 L 220.88687,274.8 L 220.88687,274.56 L 220.64687,274.8 L 220.88687,274.56 L 220.40687,274.56 L 220.40687,274.32 L 220.88687,274.32 L 220.88687,274.08 L 221.12687,274.32 L 221.12687,274.08 L 221.36687,274.56 L 221.36687,274.32 L 221.60687,274.32 L 221.84687,274.56 L 221.84687,274.32 L 222.08687,274.8 L 222.08687,274.32 L 222.32687,274.8 L 222.32687,274.56 L 222.56687,274.56 L 222.56687,275.04 L 222.56687,274.56 L 223.28687,274.8 L 222.56687,274.32 L 222.56687,274.08 L 223.04687,274.08 L 222.80687,273.84 L 222.56687,273.84 L 222.80687,273.84 L 222.56687,273.6 L 222.80687,273.6 L 223.04687,274.08 L 223.04687,273.6 L 223.52687,274.08 L 223.28687,273.84 L 223.28687,273.36 L 223.52687,273.6 L 223.76687,273.6 L 223.76687,274.08 L 224.00687,274.32 L 223.76687,274.08 L 223.76687,273.6 L 224.00687,273.12 L 224.48687,273.84 L 224.24687,274.08 L 224.72687,274.32 L 224.24687,274.08 L 224.72687,273.84 L 224.96687,273.84 L 224.96687,274.32 L 224.96687,273.6 L 224.72687,273.6 L 224.72687,273.36 L 224.96687,272.88 L 225.20687,272.88 L 224.96687,273.36 L 225.20687,272.88 L 225.68687,273.36 L 225.68687,273.84 L 225.92687,273.6 L 225.44687,272.88 L 225.92687,272.88 L 226.16687,273.12 L 226.16687,273.6 L 226.40687,273.36 L 226.40687,273.84 L 226.64687,273.36 L 226.64687,273.6 L 226.40687,273.84 L 226.88687,273.84 L 226.64687,274.08 L 226.40687,274.08 L 226.40687,274.32 L 225.92687,274.08 L 226.40687,274.32 L 226.40687,274.56 L 225.68687,274.32 L 225.44687,274.56 L 226.40687,274.8 L 226.16687,275.28 L 225.44687,275.28 L 225.92687,275.28 L 225.92687,275.52 L 225.68687,275.76 L 226.40687,275.04 L 226.64687,275.28 L 227.12687,275.04 L 227.36687,275.28 L 225.92687,275.76 L 226.16687,275.76 L 226.64687,275.52 L 226.88687,275.52 L 226.40687,276.72 L 226.16687,276.72 L 226.40687,276.72 L 226.88687,276 L 226.64687,276.96 L 227.12687,276.48 L 227.12687,276.96 L 227.12687,276 L 227.60687,276.24 L 227.36687,276.48 L 227.84687,276.24 L 227.84687,276.72 L 228.08687,276.72 L 227.84687,276.96 L 228.08687,276.72 L 228.08687,276.96 L 228.32687,276.96 L 228.32687,277.2 L 227.84687,277.2 L 228.32687,277.44 L 227.84687,277.68 L 228.32687,277.44 L 228.08687,277.68 L 228.56687,277.44 L 228.56687,277.68 L 228.80687,277.2 L 228.80687,277.68 L 228.56687,277.92 L 228.08687,277.92 L 227.60687,277.68 L 228.08687,278.16 L 228.80687,277.92 L 228.56687,278.4 L 227.60687,278.4 L 228.32687,278.4 L 228.56687,278.64 L 228.32687,278.64 L 228.80687,278.64 L 228.56687,278.88 L 227.84687,278.88 L 228.08687,279.36 L 228.08687,278.88 L 228.80687,278.88 L 228.80687,279.12 L 228.80687,278.88 L 228.80687,279.36 L 228.32687,279.36 L 228.80687,279.36 L 228.32687,279.6 L 229.28687,279.36 L 229.28687,279.84 L 229.04687,280.08 L 229.28687,280.08 L 229.28687,279.84 L 229.52687,280.08 L 229.04687,280.32 L 229.04687,280.56 L 229.28687,280.32 L 229.04687,280.56 L 229.52687,280.32 L 229.52687,279.84 L 229.76687,279.36 L 229.76687,279.84 L 229.52687,279.84 L 229.52687,280.08 L 229.76687,280.08 L 229.76687,280.32 L 230.00687,280.32 L 230.00687,280.56 L 229.76687,280.8 L 229.52687,280.8 L 230.00687,280.8 L 229.76687,281.52 L 230.00687,281.28 L 230.00687,281.52 L 230.24687,281.04 L 230.48687,282.24 L 230.48687,282.48 L 230.72687,282 L 230.48687,281.52 L 230.72687,281.52 L 230.48687,280.8 L 230.72687,281.52 L 230.72687,281.04 L 230.96687,281.04 L 230.96687,281.52 L 231.20687,280.8 L 231.44687,281.28 L 231.68687,281.52 L 231.20687,281.76 L 230.96687,282 L 231.20687,282 L 231.68687,281.52 L 231.68687,282 L 231.68687,281.28 L 231.92687,282 L 231.68687,282.24 L 231.92687,282.24 L 231.92687,281.28 L 231.68687,280.8 L 231.68687,279.84 L 232.16687,279.84 L 232.40687,280.32 L 232.40687,281.04 L 232.64687,282 L 232.40687,282.48 L 232.40687,283.2" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7076"/><g id="g7078" transform="translate(206.48687,272.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.48,0 L 0,0.24 L 0.48,0 L 0.72,0 L 0.48,0.24 L 0.72,0 L 0.72,0.48 L 0.72,0 L 0.96,0.72 L 0.72,0.48 L 0.72,0.72 L 0,0.72 L 0,0.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7080"/><g id="g7082" transform="translate(-0.96,7.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.24,-0.24 L 0.72,-0.24 L 0.72,0 L 0.96,-0.24 L 1.44,0 L 1.68,-0.24 L 1.92,0 L 2.4,-0.48 L 3.12,-0.24 L 2.88,0 L 2.4,0 L 2.64,0 L 2.16,0.24 L 2.4,0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7084"/><g id="g7086" transform="translate(13.68,-4.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0.24,0 L 0.48,0 L 0,0.24 L 0.48,0.24 L -0.24,0.48 L -0.24,0.24 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7088"/><g id="g7090" transform="translate(-8.88,-1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L 0.48,-0.48 L 0.24,-0.24 L 0.72,-0.48 L 0.72,0.72 L 0.48,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7092"/><g id="g7094" transform="translate(22.08,8.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.72 L 0.48,-1.2 L 0.48,-1.68 L 0.96,-1.92 L 0.72,-2.64 L 1.44,-2.64 L 1.44,-2.4" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7096"/><g id="g7098" transform="translate(-15.36,-7.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.72 L 0.24,-0.48 L 0,-0.48 L 0.24,-0.24 L 0.48,-0.24 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7100"/><g id="g7102" transform="translate(-3.6,-0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.48 L 0.24,-0.96 L 0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7104"/><g id="g7106" transform="translate(9.6,-1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L 0,-0.24 L -0.24,-0.48 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7108"/><g id="g7110" transform="translate(9.84,7.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.24,-0.24 L 0,-0.24 L 0.24,0 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7112"/><g id="g7114" transform="translate(-25.2,-7.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.72 L 0,-0.72 L 0,-0.48 L 0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7116"/><g id="g7118" transform="translate(-0.96,4.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0 L 0.72,0.24 L 0.72,0.48 L -0.48,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7120"/><g id="g7122" transform="translate(27.12,4.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,0.24 L -0.72,0.72 L -0.72,0.96 L -1.2,1.2" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7124"/><g id="g7126" transform="translate(-17.04,-7.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.72,-0.48 L -0.96,-0.72 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7128"/><g id="g7130" transform="translate(-5.52,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.48 L 0.48,0.24 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7132"/><g id="g7134" transform="translate(15.12,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.72,-0.24 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7136"/><g id="g7138" transform="translate(-19.92,-2.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.24,0.24 L 0.24,0 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7140"/><g id="g7142" transform="translate(21.12,3.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.48,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7144"/><g id="g7146" transform="translate(1.44,2.64)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0,0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7148"/><g id="g7150" transform="translate(3.6,4.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.24 L 1.2,-0.96" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7152"/><g id="g7154" transform="translate(0.96,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7156"/><g id="g7158" transform="translate(0,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7160"/><g id="g7162" transform="translate(-10.32,-3.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.48 L 0.48,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7164"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 236.48687,264 L 236.00687,264.24 L 236.00687,264.48 L 236.00687,264.24 L 236.24687,264 L 236.00687,264 L 236.00687,263.76 L 235.76687,264 L 236.00687,264 L 235.76687,264 L 236.00687,264.24 L 235.52687,264 L 236.00687,264.48 L 235.76687,264.72 L 236.00687,264.48 L 236.00687,264.96 L 235.28687,264.72 L 235.52687,264.48 L 234.80687,264.72 L 235.28687,264.24 L 234.80687,264.24 L 234.80687,263.76 L 234.56687,263.76 L 234.80687,264.48 L 234.56687,264.24 L 234.08687,264.96 L 234.08687,265.2 L 234.32687,264.96 L 234.32687,265.44 L 233.84687,265.44 L 234.08687,265.2 L 233.84687,265.68 L 233.84687,265.44 L 233.36687,265.68 L 232.88687,266.16 L 233.36687,265.44 L 232.88687,265.68 L 233.36687,265.2 L 232.88687,265.2 L 233.60687,264.24 L 233.84687,264.48 L 234.08687,264.24 L 234.56687,264 L 233.60687,264.24 L 233.60687,263.76 L 233.36687,264.24 L 233.36687,263.52 L 233.36687,263.76 L 233.12687,262.8 L 232.88687,263.04 L 233.12687,263.76 L 232.88687,264.48 L 232.88687,265.44 L 232.64687,264.72 L 232.64687,265.92 L 232.40687,266.16 L 232.64687,265.68 L 232.40687,265.68 L 232.40687,265.2 L 232.64687,264.48 L 232.16687,264.96 L 232.16687,265.68 L 232.16687,265.44 L 231.92687,265.68 L 231.92687,265.44 L 231.68687,265.68 L 231.68687,265.92 L 231.68687,265.44 L 231.44687,265.68 L 231.68687,265.68 L 231.44687,265.92 L 231.20687,265.68 L 230.72687,265.68 L 231.68687,265.2 L 232.88687,264 L 232.64687,264 L 231.92687,264.72 L 231.92687,263.76 L 232.40687,263.52 L 232.64687,264 L 233.12687,263.52 L 232.88687,263.28 L 232.64687,263.76 L 232.40687,263.52 L 232.88687,263.04 L 232.64687,263.28 L 232.88687,263.28 L 233.12687,262.56 L 232.16687,263.52 L 232.40687,263.04 L 232.16687,263.04 L 232.16687,262.8 L 232.16687,263.52 L 231.68687,263.76 L 231.92687,264.72 L 231.68687,264.96 L 231.68687,264.72 L 231.68687,265.2 L 231.20687,265.2 L 231.44687,264.96 L 230.96687,265.2 L 231.20687,265.2 L 230.48687,265.68 L 229.76687,265.44 L 230.48687,264.96 L 230.24687,264.96 L 230.96687,264 L 231.20687,263.28 L 230.96687,264 L 229.76687,265.44 L 229.52687,265.44 L 229.76687,264.96 L 229.52687,265.2 L 229.28687,265.2 L 229.52687,264.72 L 229.28687,265.2 L 229.28687,264.96 L 229.52687,264 L 230.00687,263.76 L 229.52687,263.76 L 229.76687,263.52 L 229.52687,263.76 L 229.52687,263.52 L 229.28687,264.24 L 229.04687,264.24 L 229.28687,263.76 L 228.80687,264.24 L 229.04687,263.76 L 228.56687,264.48 L 228.32687,264.24 L 228.56687,263.76 L 228.56687,263.28 L 228.08687,264.48 L 227.36687,264.24 L 227.84687,263.76 L 227.36687,264.24 L 227.12687,264.24 L 227.36687,264 L 227.12687,264.24 L 227.12687,263.76 L 227.60687,263.52 L 228.80687,263.04 L 229.28687,263.04 L 230.48687,262.32 L 230.72687,262.08 L 230.24687,262.32 L 230.48687,261.6 L 230.00687,262.56 L 229.52687,262.56 L 229.04687,262.8 L 228.80687,262.8 L 228.32687,263.04 L 226.88687,264 L 226.88687,263.76 L 226.64687,263.76 L 227.12687,263.28 L 226.64687,263.52 L 226.64687,263.28 L 227.36687,262.8 L 227.12687,262.8 L 227.12687,262.56 L 227.36687,262.56 L 227.84687,262.08 L 227.60687,262.08 L 227.36687,261.84 L 227.60687,262.32 L 227.36687,262.56 L 226.88687,262.32 L 227.12687,263.04 L 226.40687,263.28 L 226.64687,263.04 L 226.16687,263.28 L 226.16687,262.8 L 226.64687,262.8 L 226.16687,262.8 L 226.40687,262.56 L 225.92687,262.56 L 226.40687,262.32 L 225.68687,262.32 L 226.16687,262.32 L 225.68687,262.08 L 226.40687,261.6 L 226.64687,261.84 L 227.36687,261.36 L 227.36687,260.4 L 227.36687,260.88 L 226.88687,261.6 L 226.40687,261.6 L 225.44687,262.08 L 225.44687,261.84 L 225.20687,261.84 L 225.68687,261.84 L 225.44687,261.84 L 225.44687,261.6 L 225.20687,261.6 L 225.68687,261.6 L 225.20687,261.6 L 225.44687,261.36 L 224.96687,261.6 L 224.96687,261.12 L 224.48687,261.36 L 224.48687,261.12 L 224.24687,261.12 L 224.72687,261.12 L 224.72687,260.88 L 224.24687,261.12 L 224.72687,260.64 L 224.72687,260.88 L 224.96687,260.88 L 224.96687,260.64 L 224.72687,260.64 L 224.96687,260.4 L 225.20687,260.64 L 224.96687,260.4 L 225.20687,260.4 L 224.96687,260.4 L 224.48687,260.88 L 224.00687,261.12 L 222.80687,260.16 L 223.28687,259.92 L 224.72687,259.92 L 224.24687,259.68 L 224.96687,259.44 L 225.92687,260.4 L 225.92687,260.16 L 226.16687,259.92 L 225.68687,260.16 L 224.96687,259.2 L 224.96687,258.96 L 225.44687,258.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7248"/><g id="g7250" transform="translate(224.48687,258.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0.24,0.72 L 0.24,1.2 L 0.24,0.96 L 0,0.96 L 0,1.2 L -0.24,1.2 L 0,0.96 L -0.24,0.96 L 0,0.72 L -0.48,0.72 L 0,0.48 L -0.24,0.24 L -0.48,0.48 L -0.48,0.96 L -0.48,0.72 L -0.72,0.96 L -0.96,0.96 L -0.96,0.72 L -1.2,0.96 L -1.68,1.68 L -1.44,1.44 L -1.68,1.44 L -1.68,1.2 L -1.44,0.96 L -0.48,0.48 L -0.96,0.48 L -0.72,0 L -0.96,-0.24 L -0.72,0 L -1.68,1.2 L -1.92,0.96 L -1.92,1.44 L -1.92,0.96 L -2.4,0.96 L -1.92,0.48 L -2.4,0.96 L -2.4,0.72 L -2.64,0.96 L -2.88,0.96 L -2.64,0.72 L -2.88,0.96 L -2.88,0.72 L -2.64,0.48 L -3.12,0.72 L -3.12,0.24 L -2.64,0.48 L -2.4,-0.24 L -2.64,-0.24 L -2.4,-0.24 L -2.88,0.24 L -3.12,0.24 L -2.88,-0.24 L -3.36,0.24 L -3.36,0 L -3.12,0 L -3.36,0 L -3.12,-0.24 L -2.88,-0.96 L -3.6,0 L -3.84,0 L -3.6,-0.24 L -3.84,-0.24 L -3.6,-0.48 L -3.84,-0.48 L -3.6,-0.48 L -3.12,-1.44 L -3.84,-0.72 L -4.08,-0.96 L -4.32,-0.96 L -3.84,-1.44 L -4.56,-1.44 L -4.08,-1.44 L -3.84,-1.68" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7252"/><g id="g7254" transform="translate(12.48,10.8)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.48 L -0.24,0 L -0.72,0 L -0.96,-0.72 L -0.72,0 L -1.2,-0.24 L -0.96,-0.96 L -1.2,-1.2 L -0.96,-1.2 L -1.2,-1.44 L -0.72,-1.68 L -1.2,-1.44 L -1.2,-1.68 L -1.44,-0.96 L -1.68,-1.44 L -1.68,-1.68 L -0.24,-2.88 L 0,-2.88 L 0.24,-2.64 L 0.48,-1.92 L 0.48,-1.68" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7256"/><g id="g7258" transform="translate(1.44,-3.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.48,-0.48 L -0.72,0 L -0.96,0 L -0.96,-0.48 L -0.96,0 L -1.44,0 L -1.2,-0.72 L -1.44,-0.48 L -1.44,0 L -1.92,-0.24 L -2.4,-0.24 L -2.16,-0.48 L -1.68,-0.72 L -2.16,-0.72 L -1.68,-0.96 L -1.92,-1.2" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7260"/><g id="g7262" transform="translate(-1.44,0)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,0.24 L 0.96,0.24 L 0.96,0.72 L 0.72,0.72 L 0.96,0.48 L 0.24,0.72 L 0,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7264"/><g id="g7266" transform="translate(-3.84,-0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L 0,0 L -0.24,0.24 L 0,-0.24 L 0.48,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7268"/><g id="g7270" transform="translate(0.72,1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.72 L 0.48,-0.72 L 0.24,-0.24 L -0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7272"/><g id="g7274" transform="translate(-8.4,-7.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0.24 L -0.48,0 L -0.72,0 L -0.96,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7276"/><g id="g7278" transform="translate(-4.8,-2.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.96,0 L -0.48,0 L -0.72,0 L -0.48,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7280"/><g id="g7282" transform="translate(2.88,3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.72,-0.24 L 0.48,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7284"/><g id="g7286" transform="translate(0.24,-0.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.24 L 0.48,0.24 L -0.48,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7288"/><g id="g7290" transform="translate(-3.6,-3.12)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.96,0 L -1.2,-0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7292"/><g id="g7294" transform="translate(18,9.6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L 0.24,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7296"/><g id="g7298" transform="translate(-0.24,0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7300"/><g id="g7302" transform="translate(-12,-7.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0.24,0.48 L 0.24,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7304"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 216.56687,246 L 217.04687,246 L 217.04687,245.76 L 217.52687,246 L 217.28687,245.76 L 217.76687,246 L 217.76687,245.76 L 217.28687,245.76 L 217.76687,245.04 L 217.52687,245.04 L 217.76687,244.32 L 218.00687,244.8 L 218.24687,244.56 L 218.24687,244.8 L 218.48687,244.56 L 218.24687,245.04 L 218.00687,245.28 L 218.48687,245.04 L 218.48687,245.76 L 218.24687,245.76 L 218.48687,245.76 L 218.24687,246.48 L 218.48687,245.52 L 218.96687,246 L 218.48687,245.52 L 218.72687,245.04 L 218.72687,245.28 L 218.72687,244.8 L 218.96687,245.04 L 219.20687,244.8 L 218.96687,245.28 L 219.20687,244.8 L 219.44687,244.8 L 219.20687,244.8 L 219.20687,245.52 L 219.20687,245.04 L 219.68687,245.04 L 219.44687,246 L 219.68687,245.04 L 219.68687,246 L 219.92687,245.28 L 220.16687,245.04 L 220.40687,245.28 L 220.64687,245.28 L 220.16687,245.76 L 220.40687,245.76 L 219.92687,246.48 L 220.64687,245.28 L 220.64687,246 L 220.88687,245.28 L 221.12687,245.52 L 220.88687,245.76 L 221.12687,245.76 L 220.88687,246.48 L 221.12687,245.52 L 221.84687,245.52 L 221.60687,245.52 L 221.84687,245.76 L 221.36687,246.24 L 221.60687,246.48 L 221.84687,245.76 L 222.08687,246 L 222.32687,245.76 L 222.32687,246 L 222.56687,245.76 L 222.08687,246.48 L 222.32687,246.48 L 222.32687,246.24 L 222.56687,246 L 222.80687,246 L 222.80687,246.24 L 223.04687,246 L 223.28687,246 L 222.80687,246.48 L 223.28687,246.48 L 223.76687,246.72 L 223.76687,247.92 L 224.00687,246.96 L 224.24687,246.72 L 224.00687,247.2 L 224.24687,247.44 L 224.24687,246.96 L 224.48687,247.2 L 224.24687,248.16 L 224.24687,248.4 L 224.48687,247.68 L 224.72687,247.92 L 224.48687,247.68 L 224.72687,247.92 L 224.72687,247.68 L 224.96687,247.92 L 224.72687,247.68 L 224.96687,247.68 L 224.96687,247.92 L 225.44687,247.68 L 224.96687,247.68 L 225.20687,247.2 L 225.44687,247.2 L 225.44687,246.96 L 225.68687,247.2 L 225.68687,246.96 L 225.92687,246.96 L 225.68687,247.68 L 225.68687,247.92 L 226.16687,248.16 L 225.92687,247.68 L 226.16687,246.96 L 226.16687,247.92 L 226.40687,246.96 L 226.16687,246.96 L 226.40687,246.96 L 226.64687,247.44 L 226.64687,247.68 L 226.88687,248.16 L 227.36687,248.16 L 227.12687,247.92 L 227.12687,247.68 L 227.36687,247.92 L 227.12687,247.44 L 227.36687,247.68 L 227.12687,247.2 L 227.36687,247.2 L 227.60687,247.68 L 227.60687,247.2 L 227.84687,247.44 L 227.84687,246.96 L 228.08687,247.2 L 227.84687,248.4 L 228.08687,248.4 L 228.08687,247.44 L 228.32687,246.96 L 228.80687,247.44 L 228.80687,247.68 L 229.04687,247.44 L 229.28687,247.68 L 229.28687,248.16 L 229.04687,248.16 L 229.04687,249.12 L 230.00687,248.16 L 229.76687,248.16 L 230.00687,247.92 L 230.24687,248.4 L 230.72687,248.64 L 230.96687,249.6 L 231.20687,249.6 L 231.44687,249.84 L 231.44687,249.6 L 231.68687,249.6 L 231.44687,249.36 L 231.92687,249.36 L 231.68687,248.88 L 231.92687,248.64" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7380"/><g id="g7382" transform="translate(218.96687,255.84)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.24 L 0.48,-0.48 L 0.24,-0.24 L 0,-0.24 L 0.24,-0.72 L 0,-0.72 L 0.24,-0.96 L -0.24,-0.72 L 0,-1.2 L -0.24,-0.96 L -0.24,-1.2 L -0.48,-0.72 L -0.24,-0.96 L -0.72,-0.96 L -0.24,-1.2 L -0.72,-1.2 L -0.24,-1.44 L 0.24,-1.44 L -0.24,-1.44 L 0,-1.44 L 0,-1.68 L -0.72,-1.2 L -0.72,-1.44 L -0.96,-1.2 L -0.72,-1.44 L -1.2,-1.44 L -1.2,-1.68 L -0.72,-1.68 L -0.24,-1.92 L -1.2,-1.92 L -0.72,-2.16 L -1.44,-2.16 L -0.96,-2.64 L -1.44,-1.92 L -1.44,-2.16 L -1.68,-1.92 L -1.44,-2.4 L -1.68,-2.16 L -1.68,-2.4 L -0.96,-2.88 L -1.2,-2.88 L -0.96,-3.12 L -1.92,-2.4 L -1.68,-2.64 L -1.92,-2.64 L -1.68,-2.64 L -1.44,-2.88 L -1.68,-2.88 L -1.44,-3.36 L -1.68,-3.12 L -1.68,-3.36 L -1.92,-3.12 L -2.16,-3.12 L -1.92,-3.36 L -1.92,-3.12 L -2.16,-3.36 L -1.92,-3.6 L -1.44,-3.6 L -1.44,-3.84 L -1.92,-3.6 L -1.92,-3.84 L -1.68,-3.84 L -2.16,-4.08 L -1.68,-4.32 L -2.16,-4.32 L -1.92,-4.56 L -2.4,-4.32 L -2.64,-4.56 L -2.4,-4.8 L -2.16,-5.28 L -2.16,-4.8 L -1.92,-4.8 L -2.16,-5.04 L -1.92,-5.28 L -2.16,-5.28 L -1.68,-5.52 L -1.92,-5.52 L -1.68,-6 L -1.44,-5.76 L -1.68,-6 L -1.2,-6 L -1.2,-6.24 L -0.96,-6 L -1.2,-6.48 L -0.96,-6.48 L -0.96,-6.24 L -0.96,-6.48 L -0.48,-6.72 L -0.24,-6.24 L -0.24,-6.48 L 0,-6.48 L -0.24,-6.48 L -0.24,-6.96 L -0.96,-6.48 L -1.2,-6.72 L -0.24,-7.2 L 0,-6.96 L -0.24,-7.2 L 0.24,-7.44 L -0.48,-7.2 L -1.2,-6.72 L -1.44,-6.72 L -0.96,-6.96 L -1.68,-6.72 L -1.68,-6.96 L -1.2,-6.96 L -1.2,-7.2 L -1.44,-7.2 L -1.2,-7.44 L -0.48,-7.44 L -0.72,-7.44 L -0.48,-7.68 L -0.72,-7.44 L -1.2,-7.44 L -0.96,-7.68 L -1.2,-7.68 L -1.68,-7.2 L -1.44,-7.68 L -1.92,-7.2 L -2.16,-7.68 L -1.68,-7.44 L -1.44,-7.68 L -1.92,-7.68 L -1.92,-7.92 L -0.96,-7.92 L -1.2,-7.92 L -1.2,-8.16 L -1.92,-7.92 L -1.2,-8.4 L -1.92,-8.4 L -0.72,-8.64 L -2.4,-8.88 L -2.16,-9.12 L -0.96,-9.12 L -1.92,-9.12 L -1.68,-9.6 L -1.92,-9.36 L -2.16,-9.36 L -2.4,-9.12 L -2.64,-9.12 L -2.4,-9.36 L -2.64,-9.6" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7384"/><g id="g7386" transform="translate(12,-6.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,-0.96 L -0.72,-0.96 L -0.48,-1.44 L -0.48,-0.96 L -0.24,-0.96 L -0.24,-0.72 L 0,-0.72 L 0.24,-0.48 L 0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7388"/><g id="g7390" transform="translate(-13.92,0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L -0.24,0 L 0,0 L -0.24,0 L 0,-0.24 L 0.24,-0.24 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7392"/><g id="g7394" transform="translate(7.92,-2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0,0.24 L -0.24,0.48 L -0.24,0.24 L 0,0.24 L 0,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7396"/><g id="g7398" transform="translate(-8.64,4.32)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0.24 L -0.48,0 L -0.24,-0.24 L 0,-0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7400"/><g id="g7402" transform="translate(10.56,-3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.96 L 0,-0.96 L -0.24,-1.2 L 0,-0.96 L 0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7404"/><g id="g7406" transform="translate(-10.56,-0.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.24 L 0.72,0 L 0.48,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7408"/><g id="g7410" transform="translate(1.2,-2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L -0.24,1.2 L -0.48,0.96 L -0.24,0.72 L -0.48,0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7412"/><g id="g7414" transform="translate(11.76,4.08)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.48 L 0.48,-0.24 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7416"/><g id="g7418" transform="translate(-12.48,-2.88)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.24,0.48 L -0.24,0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7420"/><g id="g7422" transform="translate(3.36,10.8)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7424"/><g id="g7426" transform="translate(12.72,-6.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7428"/><g id="g7430" transform="translate(-16.32,-3.36)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7432"/><g id="g7434" transform="translate(0.96,-1.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7436"/><g id="g7438" transform="translate(6.96,14.16)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.72 L 0,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7440"/><g id="g7442" transform="translate(-3.84,-1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.48,-0.24 L 0,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7444"/><g id="g7446" transform="translate(-3.36,-11.76)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,0.24 L 0.24,-0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7448"/><g id="g7450" transform="translate(-0.72,1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7452"/><g id="g7454" transform="translate(9.6,12.96)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L -0.24,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7456"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><path d="M 232.88687,249.36 L 233.12687,249.36 L 233.12687,249.12 L 233.60687,249.36 L 233.84687,249.12 L 233.60687,248.88 L 233.84687,248.88 L 233.60687,248.64 L 233.84687,248.88 L 233.84687,248.64 L 234.08687,249.12 L 233.84687,248.4 L 234.08687,248.4 L 234.08687,248.16 L 234.32687,248.4 L 234.32687,248.16 L 234.56687,248.4 L 234.56687,248.16 L 234.32687,248.16 L 234.56687,248.16 L 234.56687,247.92 L 235.04687,248.16 L 234.80687,248.4 L 235.04687,248.64 L 235.04687,248.4 L 235.28687,248.4 L 235.28687,248.16 L 235.76687,248.4 L 235.52687,248.64 L 235.76687,248.4 L 236.00687,248.4 L 236.00687,248.64 L 236.24687,248.64 L 236.00687,248.4 L 236.24687,248.64 L 236.24687,249.12 L 236.48687,248.88 L 236.48687,248.64 L 236.72687,248.16 L 235.52687,248.16 L 235.76687,247.92 L 235.28687,247.92 L 235.52687,247.92 L 235.52687,247.2 L 235.52687,247.44 L 235.52687,247.2 L 235.76687,247.2 L 235.76687,247.92 L 235.76687,247.44 L 236.24687,247.92 L 236.00687,247.44 L 236.24687,247.68 L 236.00687,247.2 L 236.48687,246.96 L 236.72687,247.2 L 236.96687,246.96 L 236.72687,246.96 L 236.72687,246.72 L 236.48687,246.72 L 236.72687,246.72 L 236.72687,246.48 L 237.20687,246.72 L 237.20687,246.48 L 237.20687,246.72 L 237.44687,246.48 L 237.44687,246.72 L 237.44687,246.48 L 237.68687,246.72 L 237.92687,246.72 L 237.68687,246.96 L 237.92687,246.96 L 237.92687,247.2 L 237.92687,246.24 L 238.16687,246.24 L 238.16687,246.48 L 238.40687,246.48 L 238.16687,246.24 L 238.40687,246.24 L 238.40687,246 L 239.12687,246.24 L 239.12687,246.48 L 239.60687,246.48 L 239.36687,246.24 L 239.60687,246.24 L 239.36687,246.24 L 239.84687,246.24 L 240.08687,246.48 L 240.08687,246.24 L 240.08687,246.48 L 240.56687,246.48 L 240.56687,246.72 L 240.56687,246.48 L 240.56687,246.72 L 241.28687,246.48 L 241.28687,246.96 L 241.52687,246.72 L 241.52687,246.96 L 242.00687,246.72 L 242.00687,247.2 L 243.44687,247.2 L 243.68687,246.72 L 243.68687,246.96 L 243.92687,246.96 L 243.92687,247.2 L 244.40687,247.2 L 244.16687,247.68 L 244.40687,247.44 L 244.64687,248.64 L 244.88687,248.64 L 244.64687,248.16 L 244.88687,248.16 L 244.64687,247.44 L 244.88687,247.2 L 244.64687,247.2 L 244.40687,246.72 L 244.88687,246.72 L 244.64687,246.72 L 244.88687,246.24 L 245.12687,246.72 L 245.12687,246.24 L 245.36687,246 L 245.60687,246.48 L 245.60687,246.24 L 245.36687,246 L 245.84687,245.76 L 245.84687,246.24 L 246.08687,246 L 246.32687,246.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7480"/><g id="g7482" transform="translate(234.80687,247.68)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.24,-0.24 L 0,-0.48 L 0.48,-0.48 L 0.48,-0.24 L 0.72,0 L 0.72,-0.48 L 0.72,0.24 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7484"/><g id="g7486" transform="translate(-2.64,1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.48,0 L 0.48,-0.24 L 0.48,0.24 L 0.72,0.24 L 0.72,0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7488"/><g id="g7490" transform="translate(-0.24,-0.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,0 L 0.24,0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7492"/></g></g></g><path d="M 250.40687,234.24 L 250.40687,234.48 L 250.16687,234.48 L 249.44687,233.52 L 249.20687,233.52 L 248.96687,233.28 L 249.20687,233.52 L 248.96687,233.52 L 249.20687,233.76 L 248.72687,233.76 L 248.48687,233.28 L 248.48687,233.52 L 248.00687,232.8 L 248.24687,233.52 L 248.24687,233.76 L 248.00687,233.76 L 248.48687,234 L 248.24687,234 L 248.48687,234.24 L 248.24687,234.48 L 248.24687,234.72 L 248.24687,234.48 L 248.72687,234.48 L 248.48687,234.48 L 248.96687,234.48 L 248.96687,234.72 L 248.72687,234.96 L 249.20687,234.96 L 248.96687,235.2 L 248.96687,235.44 L 248.72687,235.2 L 248.96687,235.68 L 248.72687,235.92 L 248.96687,235.92 L 248.96687,236.16 L 248.72687,236.16 L 248.96687,236.64 L 248.24687,237.12 L 248.24687,236.88 L 248.00687,237.12 L 248.00687,236.88 L 248.48687,236.64 L 248.24687,236.64 L 248.48687,236.64 L 248.48687,236.4 L 248.24687,236.16 L 248.00687,236.64 L 248.24687,235.92 L 247.76687,235.44 L 247.52687,235.44 L 248.00687,235.44 L 248.00687,235.68 L 247.52687,235.44 L 248.00687,235.92 L 247.52687,235.68 L 247.76687,235.92 L 247.52687,235.92 L 247.76687,236.16 L 247.52687,236.16 L 247.76687,236.4 L 247.52687,236.4 L 247.76687,236.64 L 247.52687,236.88 L 247.28687,236.88 L 247.28687,236.64 L 247.04687,236.88 L 247.28687,236.4 L 247.04687,236.88 L 246.80687,236.64 L 247.04687,235.92 L 246.56687,236.4 L 246.56687,236.16 L 247.04687,235.68 L 246.56687,235.92 L 246.80687,235.68 L 246.32687,235.68 L 246.56687,235.92 L 246.32687,236.4 L 246.08687,236.16 L 246.08687,235.92 L 245.84687,236.16 L 246.08687,235.68 L 245.84687,236.4 L 245.36687,236.16 L 245.84687,235.44 L 246.32687,235.44 L 246.56687,235.2 L 246.80687,235.2 L 247.04687,234.96 L 247.04687,235.2 L 246.80687,234.96 L 247.04687,234.72 L 247.04687,235.2 L 247.04687,234.72 L 247.28687,234.96 L 247.28687,234.72 L 247.76687,234.72 L 247.28687,234.48 L 247.52687,234.48 L 247.52687,234.24 L 247.76687,234 L 246.56687,234 L 246.80687,233.52 L 247.28687,233.52 L 247.04687,233.04 L 246.32687,233.76 L 246.08687,233.52 L 246.32687,233.76 L 245.84687,234 L 245.60687,233.76 L 245.60687,234 L 245.36687,234 L 245.12687,234.24 L 244.64687,234.48 L 244.64687,234 L 245.12687,233.76 L 245.60687,233.28 L 245.84687,233.28 L 245.84687,233.04 L 246.08687,233.04 L 245.84687,232.8 L 245.84687,232.56 L 245.84687,232.8 L 245.60687,232.56 L 245.84687,232.32 L 245.60687,232.08 L 246.32687,232.08 L 245.60687,231.84 L 245.84687,231.6 L 245.60687,231.6 L 246.08687,231.6 L 246.32687,231.36 L 245.60687,231.36 L 245.60687,231.12 L 245.36687,231.36 L 245.36687,231.12 L 245.12687,231.12 L 244.40687,231.36 L 244.64687,231.6 L 243.92687,230.88 L 245.36687,230.16 L 245.60687,229.92 L 245.84687,230.16 L 245.60687,229.92 L 245.84687,229.44 L 246.08687,229.68 L 246.08687,229.44 L 245.84687,229.44 L 246.08687,229.2 L 246.08687,228.48 L 246.32687,228.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7504"/><g id="g7506" transform="translate(246.32687,246.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.72 L 0.48,-0.72 L 0.48,-0.96 L 0.48,-0.48 L 0.72,-0.96 L 1.2,-0.96 L 1.44,-1.2 L 1.44,-0.96 L 1.68,-1.2 L 1.92,-0.96 L 1.92,-1.44 L 2.16,-1.44 L 2.4,-1.68 L 2.4,-1.44 L 2.64,-1.68 L 3.12,-1.68 L 2.88,-1.92 L 4.08,-1.92 L 4.08,-2.16 L 4.32,-1.92 L 4.56,-1.92 L 4.32,-1.68 L 4.56,-1.68 L 4.56,-1.92 L 4.8,-1.68 L 5.04,-1.92 L 5.28,-1.68 L 5.04,-1.44 L 5.28,-1.44 L 5.52,-1.92 L 5.76,-1.44 L 6,-1.68 L 6.24,-1.68 L 6.24,-1.92 L 6.48,-1.68 L 6.48,-1.44 L 6.72,-1.92 L 6.96,-1.92 L 7.2,-1.44 L 6.96,-1.2 L 7.44,-1.68 L 7.68,-1.44 L 7.68,-1.68 L 7.92,-1.68 L 7.68,-1.44 L 7.92,-1.44 L 8.16,-1.68 L 8.16,-1.44 L 8.4,-1.68 L 8.64,-1.68" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7508"/><g id="g7510" transform="translate(5.04,1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7512"/></g></g><path d="M 246.32687,228.24 L 247.52687,227.04 L 248.24687,226.8 L 248.00687,227.04 L 248.00687,227.28 L 248.24687,227.04 L 248.72687,227.04 L 248.72687,227.28 L 248.96687,227.04 L 248.72687,227.28 L 249.20687,227.28 L 249.92687,226.8 L 250.16687,227.04 L 250.16687,226.8 L 250.64687,226.8 L 251.60687,227.04 L 252.56687,226.8 L 252.32687,227.04 L 252.80687,226.56 L 253.04687,226.8 L 252.80687,226.8 L 253.28687,227.04 L 253.28687,226.8 L 253.52687,226.8 L 254.00687,227.04 L 253.52687,227.28 L 254.00687,227.28 L 254.00687,227.76 L 254.24687,227.28 L 254.48687,227.52 L 254.96687,227.52 L 254.72687,227.76 L 254.96687,227.52 L 254.72687,228.24 L 254.96687,228.24 L 255.20687,227.76 L 255.44687,227.76 L 255.44687,228 L 255.20687,228 L 255.44687,228.24 L 254.96687,228.48 L 255.68687,228.48 L 255.20687,228.72 L 255.68687,228.72 L 255.92687,228.96 L 255.68687,229.2 L 255.68687,229.44 L 255.20687,229.68 L 255.44687,230.16 L 254.96687,230.16 L 255.44687,230.88 L 255.20687,231.36 L 255.44687,231.36 L 255.44687,231.6 L 256.16687,231.6 L 255.68687,231.84 L 255.20687,231.84 L 254.96687,231.6 L 254.72687,231.84 L 254.96687,232.32 L 254.72687,233.04 L 254.24687,233.04 L 254.24687,232.56 L 253.76687,232.32 L 253.76687,232.08 L 253.76687,232.32 L 253.52687,232.32 L 253.28687,232.8 L 252.80687,232.32 L 252.56687,232.56 L 252.56687,233.04 L 252.32687,233.28 L 251.60687,232.08 L 251.84687,232.56 L 251.84687,233.76 L 251.36687,233.76 L 251.36687,233.52 L 250.88687,233.76 L 250.40687,233.04 L 250.16687,233.28 L 250.40687,234.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7520"/><path d="M 265.04687,208.32 L 265.04687,209.04 L 265.28687,209.04 L 265.28687,209.28 L 265.52687,209.52 L 265.28687,209.52 L 265.28687,209.76 L 265.04687,209.52 L 265.28687,210.24 L 264.80687,209.76 L 265.04687,209.76 L 264.80687,209.52 L 265.04687,209.28 L 264.80687,209.52 L 264.80687,209.28 L 264.56687,209.28 L 264.80687,208.8 L 264.80687,209.04 L 265.04687,209.04 L 264.80687,208.32" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7576"/><g id="g7578" transform="translate(259.52687,217.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,-0.24 L 0,-0.96 L 0.24,-0.72 L 0.24,-0.96 L 0.24,-0.24 L 0,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7580"/><g id="g7582" transform="translate(6.24,-7.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.24,-0.48 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7584"/><g id="g7586" transform="translate(-6.96,6.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.24 L 0.24,-0.48 L 0.24,0 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7588"/><g id="g7590" transform="translate(0,-1.44)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0,-0.48 L 0.24,-0.72 L 0.24,-0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7592"/><g id="g7594" transform="translate(0.72,0.72)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,1.2 L -0.48,0.72 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7596"/><g id="g7598" transform="translate(6.24,-6)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L 0.24,-0.24 L 0.48,0.24 L 0.24,0.24 L 0,0 z" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path7600"/></g></g></g></g></g></g><path d="M 243.20687,191.76 L 242.72687,191.52 L 242.48687,191.28 L 242.24687,191.28 L 242.24687,191.04 L 242.48687,191.28 L 242.48687,190.8 L 242.72687,190.8" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path10050"/><g id="g10052" transform="translate(243.44687,192.24)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L -0.24,0.24 L -0.72,0.24 L -0.96,-0.24 L -0.24,-0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path10054"/><g id="g10056" transform="translate(2.64,5.52)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.24,0 L -0.48,-0.24 L -0.48,-0.48 L -0.24,-0.24" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path10058"/><g id="g10060" transform="translate(-0.96,-1.92)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L -0.24,-0.48 L -0.48,-0.48 L -0.24,-0.72" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path10062"/><g id="g10064" transform="translate(0.48,1.2)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L -0.24,-0.48" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path10066"/><g id="g10068" transform="translate(-2.88,-6.48)" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path d="M 0,0 L -0.48,0 L -0.24,0" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path10070"/></g></g></g></g></g><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(281.60687,214.8)" id="g4558"><path id="path4560" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L 0,0.48 L -0.24,0.96 L -0.48,0.96 L -0.48,0.72 L -0.96,0.72 L -0.48,0.48 L -0.96,0.48 L -0.96,0.24 L -0.48,0.24 L -0.96,0 L -0.96,0.24 L -1.2,0.48 L -1.68,0.48 L -1.44,0.24 L -1.68,0.24 L -1.68,0.48 L -1.68,-0.24 L -1.2,-0.24 L -1.92,-0.24 L -1.68,-0.48 L -2.4,-0.24 L -2.16,-0.48 L -1.92,-0.48 L -2.16,-0.72 L -1.68,-0.72 L -2.16,-0.72 L -1.68,-1.2 L -2.16,-0.96 L -1.92,-1.2 L -2.16,-0.96 L -2.16,-0.72 L -2.4,-0.24 L -2.64,-0.48 L -1.92,-1.68 L -2.4,-1.2 L -2.64,-0.72 L -3.12,-0.72 L -2.88,-0.72 L -3.36,-0.72 L -3.6,-0.48 L -3.84,-0.48 L -3.84,-0.96 L -3.6,-0.96 L -3.84,-0.96 L -4.08,-1.2 L -3.12,-1.2 L -3.6,-1.44 L -2.64,-1.2 L -2.4,-1.44 L -2.64,-1.2 L -3.36,-1.44 L -3.36,-1.68 L -3.6,-1.44 L -3.36,-1.68 L -3.12,-1.68 L -3.36,-1.92 L -3.84,-1.44 L -3.84,-1.68 L -3.84,-1.44 L -4.08,-1.44 L -4.08,-1.68 L -4.32,-1.44 L -4.56,-1.68 L -4.56,-1.44 L -5.04,-1.44 L -5.04,-1.68 L -4.32,-1.68 L -5.04,-1.92 L -4.32,-1.92 L -4.08,-2.4 L -3.6,-2.64 L -4.08,-2.4 L -4.32,-2.88 L -4.08,-2.88 L -4.32,-2.88 L -4.08,-2.4 L -4.32,-1.92 L -4.8,-1.92 L -4.56,-2.16 L -4.8,-1.92 L -4.56,-2.64 L -4.8,-2.88 L -5.04,-2.16 L -5.52,-2.16 L -5.28,-2.64 L -5.52,-2.4 L -5.04,-2.88 L -5.52,-2.88 L -5.52,-2.64 L -5.76,-2.88 L -5.52,-2.4 L -6,-2.4 L -6,-2.64 L -6.24,-2.4 L -6.24,-2.64 L -6,-2.88 L -6.24,-2.88 L -6.48,-2.4 L -6.72,-2.4 L -6.72,-2.64 L -6.24,-2.88 L -6.72,-3.12 L -6.72,-2.88 L -6.72,-3.12 L -6.24,-3.12 L -5.76,-3.36 L -6,-3.36 L -4.56,-3.6 L -5.52,-3.6 L -5.52,-3.84 L -5.52,-3.6 L -5.76,-3.84 L -5.76,-3.36 L -6.24,-3.6 L -6,-3.36 L -6.72,-3.12 L -6.48,-3.36 L -6.96,-3.36 L -6.72,-3.6 L -6.96,-3.6 L -7.2,-3.84 L -6.48,-3.84 L -7.2,-4.08 L -6.48,-4.08 L -6.72,-4.08 L -6.96,-4.32 L -6,-4.56 L -6.96,-4.32 L -7.2,-4.56 L -6.96,-4.56 L -7.2,-4.56 L -7.2,-4.8 L -6.24,-4.8 L -7.2,-4.8 L -7.2,-5.04 L -6.96,-5.28 L -7.2,-5.04 L -6.96,-5.52 L -6.72,-5.52 L -5.76,-5.28 L -6,-5.52 L -5.76,-5.28 L -5.28,-5.76 L -5.28,-5.28 L -5.04,-5.28 L -5.04,-5.52 L -4.56,-5.52 L -4.32,-5.28 L -4.8,-5.76 L -4.08,-5.76 L -4.08,-5.04 L -3.6,-4.8 L -4.08,-5.28 L -4.08,-5.52 L -3.6,-5.52 L -4.08,-5.76 L -4.08,-6 L -4.32,-5.76 L -4.56,-5.76 L -4.32,-6.24 L -4.56,-6.48 L -4.56,-6.24 L -4.8,-6.24 L -4.56,-6 L -5.04,-5.52 L -5.52,-6 L -5.52,-5.76 L -5.76,-5.76 L -5.52,-5.76 L -6,-5.52 L -6.72,-5.52 L -6.72,-5.76 L -7.2,-5.52 L -7.44,-5.52 L -7.2,-5.76 L -7.2,-6 L -7.44,-5.76 L -7.44,-6.24 L -7.2,-6.24 L -6.72,-6 L -6.72,-6.24 L -6.96,-6.24 L -7.2,-6.48 L -6.96,-6.72 L -7.68,-6.24 L -7.2,-6.48 L -7.2,-6.72 L -7.44,-6.72 L -7.2,-6.96 L -6.48,-6.48 L -6.72,-6.72 L -6.48,-6.48 L -6.72,-7.44 L -6.96,-7.44 L -7.2,-6.96 L -7.2,-7.44 L -7.44,-7.44 L -7.2,-7.68 L -7.44,-7.68 L -7.2,-8.16 L -6.72,-7.44 L -6.96,-7.92 L -6.72,-7.92 L -6.96,-8.16 L -6.72,-8.16 L -6.72,-8.4 L -7.2,-8.4 L -7.44,-8.64"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-6.72,-8.64)" id="g4562"><path id="path4564" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.72 L 0.72,0.72 L 0.72,0.96 L 1.44,1.2 L 1.44,0.96 L 1.92,1.44 L 1.68,1.2 L 2.16,1.2 L 1.68,1.2 L 1.44,0.96 L 0.96,0 L 1.44,0.96 L 0.96,0.96 L 0.48,0.48 L 0.48,0.24 L 0.72,0.24 L 0.24,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.52,9.84)" id="g4566"><path id="path4568" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0,0 L -0.24,0 L -0.96,-0.48 L -0.48,-0.72 L 0.24,-0.48 L 0.24,-0.24 L 0,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-4.32,-3.36)" id="g4570"><path id="path4572" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0,0.24 L -0.24,0 L -0.48,0 L -0.48,-0.24 L -0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.68,-4.8)" id="g4574"><path id="path4576" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.48 L 0.48,-0.48 L 0.72,0.24 L 0.48,0.24 L 0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.24,3.6)" id="g4578"><path id="path4580" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L 0.24,0 L 0,0.24 L -0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(3.6,2.64)" id="g4582"><path id="path4584" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.24 L 0.48,0.48 L 0.24,0.24 L 0,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.96,0.96)" id="g4586"><path id="path4588" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.24 L 0.24,0.48 L -0.24,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(2.64,1.44)" id="g4590"><path id="path4592" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0 L -0.48,-0.24 L -0.24,-0.24 L -0.72,-0.72 L 0,-0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-7.68,-6.96)" id="g4594"><path id="path4596" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L -0.24,-0.24 L 0,0 L 0,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.28,5.52)" id="g4598"><path id="path4600" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.48 L 0.48,-0.48 L 0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.76,-8.16)" id="g4602"><path id="path4604" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.48,0.48 L 0.24,0.72 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6.48,9.12)" id="g4606"><path id="path4608" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.24 L 0,0.48 L -0.48,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.68,0)" id="g4610"><path id="path4612" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L -0.24,-0.48 L 0,-0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0,0.96)" id="g4614"><path id="path4616" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-7.2,-10.8)" id="g4618"><path id="path4620" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L 0,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(7.2,9.36)" id="g4622"><path id="path4624" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24 L 0,-0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.88,-6)" id="g4626"><path id="path4628" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 1.2,-0.24 L 0.72,-0.24 L 0,0 z"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(292.88687,232.56)" id="g4966"><path id="path4968" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L -0.24,-0.72 L -0.48,-0.72 L -0.24,-0.48 L -0.24,0.48 L -0.72,0.24 L -0.96,0 L -0.96,-0.24 L -0.72,-0.24 L -0.72,-0.48 L -0.72,-0.24 L -0.96,-0.48 L -0.72,-0.72 L -0.48,-0.72 L -0.24,-1.2 L -0.48,-1.2 L -0.48,-0.96 L -0.96,-0.72 L -0.96,-0.24 L -1.44,-0.48 L -1.44,-0.72 L -0.96,-0.96 L -1.2,-0.96 L -1.2,-1.2 L -1.2,-0.96 L -1.44,-1.2 L -1.44,-0.48 L -1.68,-0.48 L -1.92,-1.2 L -1.68,-1.44 L -2.16,-1.68 L -2.4,-1.92 L -2.4,-2.16 L -1.92,-2.16 L -2.16,-2.16 L -2.4,-2.4 L -1.92,-2.64 L -2.4,-2.4 L -2.4,-2.64 L -2.16,-2.88 L -2.4,-2.64 L -2.64,-2.88 L -2.88,-2.64 L -3.12,-2.88 L -3.12,-3.12 L -3.36,-3.36 L -3.36,-3.6 L -2.64,-3.36 L -2.16,-3.12 L -2.16,-3.36 L -1.92,-3.6 L -2.4,-3.6 L -2.4,-4.08 L -2.64,-3.6 L -2.88,-3.84 L -2.88,-3.6 L -3.36,-3.6 L -2.88,-4.32 L -3.6,-3.84 L -3.36,-4.08 L -3.6,-4.08 L -3.36,-4.08 L -3.12,-4.32 L -3.36,-4.08 L -3.36,-4.56 L -3.36,-4.32 L -3.36,-4.56 L -3.12,-4.8 L -3.36,-4.56 L -3.36,-5.04 L -3.6,-4.56 L -3.6,-5.04 L -3.12,-5.28 L -3.6,-5.04 L -3.84,-4.08 L -3.84,-4.56 L -4.08,-4.56 L -4.08,-4.32 L -4.56,-4.56 L -4.32,-4.8 L -4.32,-4.56 L -3.84,-4.56 L -3.84,-5.04 L -4.08,-4.8 L -4.56,-5.28 L -4.56,-5.04 L -5.04,-5.04 L -4.8,-5.04 L -5.04,-5.28 L -5.04,-5.52 L -4.56,-5.52 L -5.04,-5.52 L -5.04,-5.76 L -4.56,-5.52 L -4.32,-5.04 L -3.84,-5.52 L -4.56,-5.52 L -4.56,-5.76 L -4.32,-6 L -4.56,-5.76 L -4.56,-6 L -4.32,-6.24 L -3.84,-6 L -4.32,-6.24 L -4.08,-6.48 L -4.08,-6.24 L -4.08,-6.48 L -4.32,-6.24 L -4.8,-6.24 L -4.8,-6 L -5.28,-6.24 L -4.8,-6.24 L -5.04,-6.48 L -5.28,-6.24 L -5.52,-6.72 L -5.04,-6.72 L -5.04,-6.96 L -4.56,-6.72 L -4.8,-6.72 L -4.32,-6.96 L -4.8,-6.96 L -4.8,-7.2 L -4.8,-6.96 L -5.52,-6.96 L -5.52,-7.44 L -5.76,-7.68 L -5.76,-7.44 L -6,-7.68 L -6,-7.44 L -6.24,-7.68 L -6.48,-7.68 L -6,-8.16 L -6.48,-8.16 L -6.24,-8.16 L -6.48,-8.16 L -6.48,-8.4 L -6,-8.4 L -6.72,-8.4 L -6.48,-8.64 L -6.72,-8.4 L -6.48,-8.64 L -6.72,-8.88 L -6.24,-8.64 L -6.48,-8.88 L -6.24,-8.88 L -6.72,-8.88 L -6.72,-9.12 L -6.96,-8.88 L -6.96,-9.36 L -6.48,-9.6 L -6.96,-9.6 L -6.96,-9.84 L -5.76,-9.36 L -6.24,-9.84 L -6.24,-9.6 L -6.48,-9.84 L -6.24,-10.08 L -6.48,-10.08 L -6.48,-9.6 L -7.44,-10.08 L -6.96,-10.08 L -7.2,-10.32 L -6.96,-10.56 L -6.96,-10.8 L -7.2,-10.32 L -7.44,-10.56 L -7.44,-11.04 L -7.68,-11.04 L -7.44,-11.28 L -7.68,-11.04 L -7.92,-11.28 L -7.92,-11.52 L -7.68,-11.52 L -7.68,-11.76 L -7.68,-11.52 L -7.68,-11.76 L -7.44,-11.76 L -7.68,-12 L -7.44,-12 L -7.68,-11.76 L -7.68,-12 L -7.92,-11.52 L -8.16,-12 L -7.92,-11.76 L -8.4,-12.48 L -7.68,-12 L -8.16,-12.48 L -7.68,-12.48 L -7.92,-12.72 L -7.68,-12.72 L -7.2,-12.24 L -7.92,-12.96 L -8.16,-12.48 L -8.4,-12.96 L -9.12,-13.2 L -8.88,-13.44 L -9.12,-13.2 L -9.36,-13.44 L -8.64,-13.44 L -9.36,-13.44 L -9.36,-13.68 L -9.12,-13.68 L -9.36,-13.92 L -8.16,-13.2 L -8.64,-13.44 L -8.88,-13.68 L -8.64,-13.68 L -9.12,-13.92 L -9.12,-14.4 L -8.64,-14.16 L -9.12,-14.4 L -9.12,-14.64 L -8.64,-14.64 L -9.12,-14.64 L -9.36,-15.12 L -9.36,-14.64 L -9.6,-14.64 L -9.84,-14.16 L -9.6,-14.4 L -10.08,-14.64 L -9.84,-14.88 L -10.32,-14.64 L -10.08,-14.88 L -10.32,-14.88 L -10.56,-15.12 L -10.56,-15.36 L -10.8,-15.12 L -10.8,-15.6 L -11.04,-15.6"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.72,-27.36)" id="g4970"><path id="path4972" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L -0.24,0.48 L -0.24,0.24 L -0.72,0.96 L -0.48,0.72 L -0.24,0.72 L -0.72,0.72 L -0.48,0.96 L -0.96,0.96 L -1.2,1.68 L -1.68,1.44 L -1.92,1.92 L -2.4,1.92 L -2.16,2.16 L -2.4,2.16 L -2.16,2.4 L -2.64,2.64 L -2.4,2.88 L -2.64,2.88 L -2.4,3.6 L -2.64,3.6 L -2.4,3.6 L -2.64,3.6 L -2.4,3.6 L -2.64,4.08 L -2.4,4.08 L -2.64,4.32 L -2.4,4.32 L -2.64,4.56 L -2.4,4.56 L -2.64,4.56 L -2.4,4.8 L -2.64,4.8 L -2.16,4.56 L -2.4,5.52 L -2.16,6.24 L -1.92,6.24 L -2.4,6.48 L -2.4,6.96 L -2.16,7.2 L -1.92,6.72 L -1.92,6.96 L -1.68,7.2 L -1.68,7.68 L -1.92,8.64 L -1.68,8.16 L -1.44,8.16 L -1.44,7.92 L -1.2,8.16 L -1.44,8.16 L -1.2,8.16 L -0.96,8.4 L -1.2,8.64 L -0.96,8.4 L -1.44,8.64 L -0.96,8.64 L -1.2,8.88 L -0.96,8.64 L -0.96,9.12 L -0.72,9.12 L -0.72,9.36 L -0.72,9.12 L -0.48,9.12 L -0.72,9.36 L -0.48,9.36 L -0.24,9.12 L 0,10.08 L 0.24,9.84 L 0.24,10.32 L 0.48,9.84 L 0.72,10.56"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.52,23.52)" id="g4974"><path id="path4976" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.48 L 0.24,0 L 0.72,0 L 0.72,0.48 L 0.96,0.24 L 1.2,0.72 L 1.44,0.72 L 1.68,1.44 L 1.2,1.68 L 1.44,1.44 L 1.2,1.44 L 1.2,0.96 L 0.96,0.96 L 0.72,0.48 L 0.96,1.2 L 0.72,1.2 L 0.96,1.68 L 0.72,1.68 L 0.72,1.44 L 0.48,1.2 L 0.72,0.96 L 0.48,1.2 L 0.72,0.72 L 0.24,0.72 L 0.48,0.48 L 0.24,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(2.88,3.36)" id="g4978"><path id="path4980" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24 L 0,0.24 L -0.24,0 L -0.24,0.24 L -0.24,0 L -0.48,0.24 L -0.24,0 L -0.72,0 L -0.48,-0.24 L -0.72,-0.24 L -0.48,-0.48 L -0.72,-0.24 L -0.96,-0.48 L -0.72,-0.48 L -0.96,-0.48 L -0.72,-0.72 L -0.96,-0.96 L -0.72,-0.96 L -1.2,-1.2 L -0.72,-1.2 L -0.72,-1.44 L -0.48,-0.96 L 0,-0.96 L 0,-0.72 L 0.24,-0.48 L 0,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.88,-2.64)" id="g4982"><path id="path4984" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.24 L 0.24,1.2 L 0,0.96 L 0.24,0.72 L 0,0.72 L 0,0.48 L -0.48,0.72 L -0.48,0.48 L -0.48,0.72 L -0.48,0.48 L -0.72,0.24 L -0.48,0 L -0.24,0.24 L 0.24,0.48 L 0.24,0.24 L -0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-6.24,-14.16)" id="g4986"><path id="path4988" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.24 L 1.2,0.72 L 1.2,0.96 L 0.72,0.96 L 1.68,1.68 L 1.44,1.44 L 1.92,1.44 L 1.2,0.96 L 1.68,0.96 L 1.92,0.72 L 1.2,0.48 L 0.72,0.24 L 0.96,0.24 L 0.96,0 L 1.2,-0.24 L 0,0 L 0,-0.24 L 0.24,-0.48 L -0.24,-0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(10.08,17.52)" id="g4990"><path id="path4992" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L -0.24,0.48 L -0.24,-0.24 L -0.24,0.24 L -0.48,0 L -0.72,0 L -0.72,-0.24 L -0.24,-0.24 L -0.72,-0.24 L -0.48,-0.24 L -0.96,-0.48 L -0.24,-0.48 L -0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-3.84,-4.08)" id="g4994"><path id="path4996" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.48 L -0.24,0 L -0.24,0.24 L -0.72,0.24 L -0.48,0 L -0.72,0 L -0.72,-0.48 L -0.24,-0.24 L -0.24,0 L -0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(7.2,-22.32)" id="g4998"><path id="path5000" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0.24 L -0.24,0 L -0.24,-0.48 L -0.24,-0.24 L -0.48,-0.24 L -0.24,-0.72 L 0,-0.96 L 0,-0.72 L 0,-0.96 L 0,-0.72"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-8.16,22.08)" id="g5002"><path id="path5004" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L -0.48,0.24 L -0.72,-0.48 L -0.48,-0.24 L -0.48,-0.48 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.44,2.16)" id="g5006"><path id="path5008" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.48 L 0,0 L 0.48,0 L 0.72,0.48 L 0.72,0.96 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(3.36,2.88)" id="g5010"><path id="path5012" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24 L 0.24,-0.48 L 0.72,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-6.72,-11.28)" id="g5014"><path id="path5016" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24 L 0.48,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.24,0)" id="g5018"><path id="path5020" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.24 L 0.48,0.72 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(4.32,6.72)" id="g5022"><path id="path5024" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.24,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-7.44,-12.48)" id="g5026"><path id="path5028" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.24 L 0.24,0 L 0,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(13.44,-10.8)" id="g5030"><path id="path5032" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.16,25.92)" id="g5034"><path id="path5036" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L -0.24,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.24,1.44)" id="g5038"><path id="path5040" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24 L 0,-0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-11.04,-16.32)" id="g5042"><path id="path5044" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0,-0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0,-0.72)" id="g5046"><path id="path5048" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L 0,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0,-0.24)" id="g5050"><path id="path5052" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(9.84,5.76)" id="g5054"><path id="path5056" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.48 L -0.48,0.24 L -0.48,0.72 L -0.72,0.96 L -0.96,0.72 L -0.96,0.96 L -0.72,0.72 L -0.72,0.96 L -0.24,0.96 L -1.44,1.68 L -1.44,1.92 L 0,0.96 L -0.24,0.96 L -0.24,0.48 L 0.48,-0.24 L 0,-0.24 L 0,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.04,-3.12)" id="g5058"><path id="path5060" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,-0.72 L 1.44,-0.96 L 1.68,-1.44 L 1.44,-0.96 L 1.68,-0.96 L 1.92,-1.68 L 2.4,-2.64 L 2.16,-2.4 L 2.16,-2.64 L 2.16,-2.16 L 1.68,-2.16 L 1.68,-1.92 L 1.92,-2.16 L 1.92,-1.92 L 1.44,-1.2 L 0.72,-0.72 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.48,-3.84)" id="g5062"><path id="path5064" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.24,0 L 0.72,-0.72 L 0.24,-0.48 L 0.24,-1.44 L 0.24,-0.48 L -0.48,0 L -0.24,-0.24 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(2.64,11.28)" id="g5066"><path id="path5068" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.24 L 0,0.24 L -0.24,0.48 L 0.48,0.72 L 0,0.72 L 0.72,0.72 L 0,0.48 L 0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-7.92,-17.52)" id="g5070"><path id="path5072" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.72 L 0.48,-0.96 L 0.48,-0.48 L 0.72,-0.72 L 0.72,-1.2 L 0.96,-1.44 L 0.96,-1.92 L 0.72,-1.44 L 0.24,-0.72 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.76,-0.48)" id="g5074"><path id="path5076" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0.72,-0.24 L 0.48,-0.72 L 0.48,-0.48 L 0,-0.48 L -0.24,-0.24 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.76,17.52)" id="g5078"><path id="path5080" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0.24 L -1.2,0.96 L -2.88,1.44 L -2.88,1.68 L -2.64,1.68 L -3.12,1.92 L -1.68,0.96 L -1.2,0.96 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.04,-13.2)" id="g5082"><path id="path5084" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0,-0.24 L 0,-0.72 L -0.24,0 L 0,-0.24 L 0,0 L 0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(3.12,-5.52)" id="g5086"><path id="path5088" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.48 L -0.72,-0.72 L -0.72,-1.2 L -1.2,-1.2 L -0.72,-0.96 L -0.72,-0.72 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.92,21.84)" id="g5090"><path id="path5092" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -1.2,0.48 L -1.44,0.48 L -1.68,0.72 L -0.96,0.48 L -0.24,0.48 L -0.48,0.24 L 0,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-6.48,-7.2)" id="g5094"><path id="path5096" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L 0,0 L -0.24,0.48 L 0,0.24 L 0.48,0.72 L 0.24,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.96,-5.52)" id="g5098"><path id="path5100" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L -0.24,0 L -0.24,-0.48 L 0,-0.96 L -0.48,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6.96,8.4)" id="g5102"><path id="path5104" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.96,0.48 L -1.44,0.48 L -1.68,0.72 L -0.48,0.48 L 0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.28,-8.16)" id="g5106"><path id="path5108" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0.48 L -0.72,0.48 L -0.48,0.48 L -0.96,0.96 L 0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(4.56,7.2)" id="g5110"><path id="path5112" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.24 L -0.48,0 L -0.72,0.48 L 0,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-3.36,-6)" id="g5114"><path id="path5116" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0.24,-0.72 L 0.24,-0.24 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.72,5.04)" id="g5118"><path id="path5120" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0.24 L -0.24,0.24 L 0,0 L 0,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.2,-3.12)" id="g5122"><path id="path5124" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,-0.72 L 0.96,-1.2 L 0,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-8.4,-13.68)" id="g5126"><path id="path5128" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.24 L 0.24,0 L 0.48,0.24 L 0.48,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.52,13.2)" id="g5130"><path id="path5132" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.24 L -0.24,0.48 L 0,0.48 L 0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6.72,10.32)" id="g5134"><path id="path5136" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.96,0.72 L -0.24,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.24,-1.68)" id="g5138"><path id="path5140" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.96,0.24 L -0.48,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-9.36,-15.12)" id="g5142"><path id="path5144" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-1.44 L -0.24,-0.96 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6,6.96)" id="g5146"><path id="path5148" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.72,0.72 L 0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.4,-5.52)" id="g5150"><path id="path5152" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.96 L -0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-6.24,-6)" id="g5154"><path id="path5156" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.96 L 0.24,-1.68 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(4.56,10.8)" id="g5158"><path id="path5160" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.48 L 0.48,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(2.4,-4.8)" id="g5162"><path id="path5164" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.72 L -0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.88,2.88)" id="g5166"><path id="path5168" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.48 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.68,0.24)" id="g5170"><path id="path5172" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L 0.96,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6.72,2.88)" id="g5174"><path id="path5176" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.96,0.96 L 0.24,0 L 0,0 z"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(294.32687,215.76)" id="g5586"><path id="path5588" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0 L 0.48,0.24 L 0.48,0 L 0.48,0.48 L 0.48,0.24 L 0.72,0.72 L 0.72,0.24 L 0.96,0.48 L 1.2,1.68 L 1.92,2.4 L 1.68,2.64 L 1.68,2.88 L 1.2,3.12 L 1.44,3.12 L 1.44,3.36 L 0.96,3.6 L 1.2,3.36 L 1.68,4.32 L 1.44,4.8 L 1.2,5.04 L 1.68,4.56 L 1.68,5.04 L 1.44,5.04 L 1.68,5.04 L 1.44,5.28 L 1.92,5.28 L 1.92,5.52 L 1.68,5.52 L 2.16,5.76 L 1.92,5.76 L 2.4,5.76 L 2.16,6 L 2.16,6.24 L 2.4,6 L 2.16,6.48 L 2.64,6.24 L 2.64,6.72 L 3.12,6.24 L 3.36,6.48 L 3.12,6.72 L 3.36,6.48 L 3.36,6.72 L 3.36,6.48 L 3.6,6.72 L 3.6,6.48 L 3.84,6.72 L 3.84,6.48 L 4.32,6.96 L 4.32,6.48 L 4.32,6.72 L 4.56,6.72 L 4.8,6.96 L 5.04,6.24 L 5.52,6.48 L 5.76,6 L 5.76,5.76 L 6,5.52 L 5.76,5.52 L 6,5.28 L 6,5.04 L 6.24,4.8 L 6.24,4.56 L 6,4.8 L 6.24,4.32 L 5.76,4.32 L 5.28,4.08 L 5.28,3.84 L 5.04,3.12 L 5.04,2.88 L 4.8,2.88 L 4.8,2.4 L 4.56,2.16 L 4.56,1.68 L 4.08,1.68 L 4.32,1.44 L 3.84,1.2 L 3.84,0.72 L 3.6,1.2 L 3.6,0.96 L 3.36,0.96 L 3.6,0.96 L 3.84,0.72 L 3.6,0.48 L 3.36,0.72 L 3.12,0.24 L 3.12,-0.24 L 3.12,0.24 L 3.12,-0.24 L 2.88,-0.24 L 3.12,-0.72 L 2.88,-0.96 L 2.88,-1.2 L 2.64,-0.72 L 2.4,-0.96 L 2.16,-0.72 L 2.16,-1.2 L 2.4,-1.44 L 2.16,-1.44 L 2.16,-1.92 L 1.92,-1.92 L 1.68,-2.16 L 1.68,-2.88 L 1.92,-2.88 L 1.92,-3.6 L 2.16,-3.36 L 2.16,-3.84 L 2.16,-3.6 L 2.4,-3.84 L 2.16,-4.56 L 3.12,-5.76 L 2.64,-5.52 L 2.88,-5.76 L 2.64,-5.76 L 2.88,-6 L 2.64,-6 L 2.88,-6.72 L 2.64,-6.72 L 2.88,-7.2 L 2.4,-7.2 L 2.88,-7.68 L 2.64,-7.44 L 2.64,-7.68 L 2.4,-7.68 L 2.88,-7.68 L 2.64,-7.68 L 2.88,-7.92 L 2.64,-8.16 L 3.12,-8.64 L 3.36,-8.4 L 3.36,-8.88 L 3.6,-8.4 L 4.08,-8.88 L 4.56,-8.88 L 4.32,-9.36 L 4.56,-9.12 L 4.56,-9.36 L 5.28,-8.88 L 5.04,-9.36 L 5.28,-9.6 L 5.28,-9.84"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(7.44,-9.6)" id="g5590"><path id="path5592" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.48 L 0,0.48 L 0.24,0.48 L 0.48,0.72 L 0.48,0.48 L 0.48,0.72 L 0.72,0.72 L 0.96,0.96 L 1.2,0.96 L 1.44,1.44 L 1.44,1.2 L 1.92,1.2 L 1.68,1.44 L 1.92,1.44 L 1.92,1.2 L 2.16,1.44 L 1.68,1.92 L 2.16,1.44 L 2.16,1.68 L 2.64,1.44 L 2.4,1.68 L 2.4,1.92 L 3.12,1.92 L 3.36,2.4 L 3.6,2.16 L 3.36,2.4 L 4.08,2.16 L 3.84,2.4 L 4.32,2.4 L 4.32,2.64 L 4.56,2.4 L 5.04,2.64 L 5.04,2.88 L 5.52,3.36 L 5.52,3.12 L 5.76,2.4 L 5.28,2.64 L 5.52,2.16 L 5.76,2.4 L 6.24,1.92 L 7.44,2.16 L 7.68,1.68"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-7.68,27.6)" id="g5594"><path id="path5596" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.72 L 0,-0.48 L -0.24,-0.48 L -0.24,-0.72 L -0.48,-0.48 L -0.24,-0.24 L -0.72,-0.72 L -0.72,-1.2 L -0.24,-1.44 L -0.72,-1.2 L -0.72,-1.92 L -0.96,-2.16"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(4.56,-27.84)" id="g5598"><path id="path5600" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0.48,0 L 0.72,0 L 0.72,0.72 L 0.24,0.48 L 0,0.24 L 0.48,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.88,8.88)" id="g5602"><path id="path5604" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0.72,0 L 0.48,0.24 L 0.24,0 L 0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(3.84,5.52)" id="g5606"><path id="path5608" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.24,0.24 L 0.48,0.24 L 0,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-4.8,13.44)" id="g5610"><path id="path5612" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0,0 L -0.24,-0.24 L 0.24,-0.72 L -0.48,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(7.68,0.96)" id="g5614"><path id="path5616" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,-0.48 L -0.48,0.24 L -0.72,0 L -0.48,0.48 L -0.72,0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-6.48,-0.72)" id="g5618"><path id="path5620" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L -0.24,-0.24 L -0.24,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.04,-27.84)" id="g5622"><path id="path5624" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.24 L 0.48,0 L 0.72,0.24 L 0.72,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.76,-0.24)" id="g5626"><path id="path5628" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L 0.24,0 L 0.24,0.24 L 0,0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6.96,29.04)" id="g5630"><path id="path5632" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L -0.24,-0.48 L 0.24,-0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-6.72,-29.52)" id="g5634"><path id="path5636" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.48 L -0.24,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.64,26.4)" id="g5638"><path id="path5640" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.72 L 0.24,1.68 L 0,1.2"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(2.4,-26.16)" id="g5642"><path id="path5644" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.04,0.24)" id="g5646"><path id="path5648" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L 0,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-7.44,26.64)" id="g5650"><path id="path5652" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(9.6,1.92)" id="g5654"><path id="path5656" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(3.36,-24.24)" id="g5658"><path id="path5660" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L 0.48,0.24 L 0,0.48 L -0.48,0.48 L -0.24,0.24 L -0.72,0.24 L -0.72,0.48 L -0.96,0.48 L -0.96,0.96 L -0.72,0.96 L -0.96,0.96 L -1.2,1.44 L -0.96,1.2 L -0.96,0.96 L -0.72,0.96 L -0.96,1.44 L -0.72,1.2 L -0.48,1.68 L -0.72,1.92 L -0.48,1.92 L 0,1.2 L 0,1.92 L 0.48,1.92 L 0.24,2.4 L 0.96,2.4 L 0.48,2.4 L 0.72,2.64 L 0,2.88 L 0.24,2.64 L 0.24,2.88 L -0.72,2.88 L -0.48,3.12 L -0.96,3.84 L -0.96,3.6 L -1.2,3.6 L -1.44,3.84 L -1.44,3.6 L -1.68,3.6 L -1.92,4.08 L -1.68,3.6 L -1.68,4.08 L -1.44,3.84 L -0.96,3.6 L -1.44,4.08 L -1.2,4.08 L -1.44,5.04 L -1.44,4.8 L -2.16,5.28 L -2.4,6.48 L -2.64,6.48 L -2.88,6.72 L -2.4,6.72 L -2.16,6.24 L -1.92,5.52 L -2.16,5.52 L -1.68,5.04 L -1.44,5.04 L -1.68,5.28 L -1.2,5.04 L -1.44,5.52 L -1.2,5.52 L -1.2,5.28 L -0.72,5.52 L -0.96,5.28 L -0.48,4.32 L 0.72,3.84 L 0,3.84 L -0.24,4.08 L 0,4.08 L -0.24,4.32 L -0.48,3.84 L -0.72,4.32 L -0.96,4.56 L -1.2,4.32 L -0.96,4.32 L -1.2,4.08 L -0.72,3.6 L -0.48,3.84 L -0.72,3.36 L 0.24,3.36 L 0.24,3.84 L 0.72,3.36 L 0.48,3.36 L 0.72,3.36 L 0.48,3.36 L 0.48,3.12 L 1.2,3.36 L 0.96,3.36 L 1.2,3.36 L 1.2,3.6 L 0.96,4.56 L 1.44,4.08 L 1.2,4.8 L 1.92,4.32 L 1.68,4.08 L 1.92,4.08 L 1.44,3.84 L 2.16,3.6 L 1.44,3.6 L 1.44,3.36 L 1.92,2.88 L 1.92,2.64 L 1.68,2.4 L 1.44,1.92 L 1.2,1.68 L 1.44,1.68 L 0.72,1.92 L 0.72,1.68 L 0.96,1.68 L 0.72,1.68 L 0.96,1.2 L 0.72,1.44 L 0.72,1.2 L 0.48,0.72 L 0.72,0.72 L 0.96,0.96 L 1.2,0.72 L 0.48,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-3.6,5.04)" id="g5662"><path id="path5664" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0,-0.24 L 0.72,-0.96 L 0.24,-0.72 L 0.24,-1.2 L 0.48,-1.2 L 0,-1.2 L 0,-1.44 L 0.48,-1.92 L 0.48,-1.44 L 0.48,-1.92 L 0.72,-1.92 L 0.48,-1.44 L 0.72,-1.2 L 0.96,-1.2 L 0.48,-0.48 L 1.2,-1.2 L 1.2,-0.96 L 0.72,-0.24 L 1.2,-0.72 L 0.96,0 L 1.2,-0.24 L 0.96,0 L 1.2,-0.24 L 1.2,0 L 1.44,-0.24 L 1.2,0 L 1.2,-0.24 L 1.68,-0.48 L 1.44,-0.48 L 1.44,-0.72 L 1.2,-0.48 L 1.68,-0.96 L 1.44,-0.96 L 1.68,-1.2 L 1.2,-0.96 L 1.2,-1.44 L 1.68,-1.68 L 1.44,-1.44 L 1.2,-1.68 L 1.2,-1.2 L 0.96,-2.16 L 0.72,-1.68 L 0.96,-1.68 L 0.96,-1.44 L 0.72,-1.2 L 0.48,-1.44 L 0.72,-2.16 L 0.48,-1.92 L 0.72,-2.16 L 0.48,-2.16 L 0.24,-1.92 L 0.48,-2.88 L 0.24,-2.4 L 0.24,-2.88 L 0.48,-3.12 L 0.24,-3.12 L 0.24,-3.36 L 0,-3.12 L 0.24,-3.36 L 0.24,-3.84 L 0.24,-3.6 L 0.24,-4.08 L 0.48,-4.32 L 0.24,-4.32 L 0.24,-4.56 L 0.48,-4.8 L 0.24,-4.8 L 0.24,-5.28 L 0.72,-5.04 L 1.2,-5.28 L 1.2,-5.04 L 1.44,-5.28 L 1.2,-5.04 L 1.2,-5.28 L 1.44,-5.52 L 1.2,-6 L 1.2,-5.52 L 0.96,-5.28 L 0.72,-5.52 L 0.48,-5.28 L 0.72,-5.28 L 0.48,-5.76 L 0.72,-6 L 0.24,-5.76 L 0.24,-6 L 0.48,-5.52 L 0.24,-5.28 L 0.24,-5.04 L 0,-5.28 L -0.24,-4.8 L -0.24,-4.56 L 0,-4.56 L 0,-4.32 L -0.48,-3.84 L -0.24,-3.84 L 0,-3.6 L -0.48,-3.6 L -0.24,-3.36 L 0,-3.36 L 0,-3.12 L 0.24,-3.12 L -0.24,-2.64 L 0,-2.64 L 0,-2.4 L 0.24,-2.16 L 0,-1.68 L -0.24,-1.44 L 0,-1.2 L 0,-0.96 L 0,-1.2 L -0.24,-0.48 L 0,-0.48 L -0.48,-0.24 L -0.72,0 L -0.72,-0.48 L -0.72,0 L -0.48,0.24 L -0.48,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.64,-2.88)" id="g5666"><path id="path5668" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0.24,-0.24 L 0.48,0 L 0.48,-0.24 L 0.72,0 L 0.72,-0.48 L 0.96,-0.24 L 0.96,-0.48 L 1.44,-0.48 L 0.96,0 L 1.44,-0.24 L 1.2,0.24 L 1.44,0.24 L 1.44,0 L 1.44,0.24 L 1.44,-0.48 L 1.68,-0.72 L 1.2,-0.48 L 0.72,-0.48 L 0.72,-0.72 L 0.24,-1.44 L 0.24,-1.68 L 0.72,-1.68 L 0.48,-1.68 L 0.48,-1.92 L 0.24,-2.4 L 0.48,-2.64 L 0.48,-2.88 L 0,-2.64 L 0.48,-2.16 L 0,-1.68 L 0.24,-1.44 L 0.24,-1.2 L 0,-0.96 L 0.48,-1.2 L 0.48,-0.96 L 0.72,-0.72 L 0.48,-0.24 L 0,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.48,19.2)" id="g5670"><path id="path5672" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,0.96 L 0.96,0.96 L 0.72,1.2 L 0.96,1.44 L 0.96,0.96 L 0.96,1.44 L 1.2,1.68 L 1.2,1.2 L 1.44,1.92 L 1.2,1.2 L 1.44,1.2 L 1.2,0.96 L 1.44,0.72 L 1.2,0.72 L 0.96,0.48 L 1.44,0.24 L 0.96,0.24 L 0.96,0 L 1.2,0 L 0.96,-0.24 L 0.72,0 L 0.72,-0.48 L 0.48,-0.24 L 0.48,-0.48 L 0.48,-0.24 L 0.72,-0.24 L 0.48,0 L 0.48,-0.24 L 0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.2,-2.88)" id="g5674"><path id="path5676" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0.24 L -0.24,0.48 L -0.48,0.72 L -0.72,0.72 L -0.96,0.48 L -0.72,0.24 L -0.96,0.24 L -1.44,0.48 L -1.68,0.48 L -1.44,0.48 L -1.68,0.72 L -1.2,0.72 L -0.96,0.48 L -0.72,0.96 L -0.48,0.72 L -0.24,0.72 L -0.24,0.48 L 0,0.48 L 0,0.72 L 0.24,0.48 L 0.24,0.72 L 0.48,0.48 L 0.24,0.48 L 0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.44,-10.08)" id="g5678"><path id="path5680" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.48 L -0.24,0.96 L 0,0.72 L 0.24,0.96 L 0.24,0.72 L 0.48,0.48 L 0.72,0.72 L 1.2,0.72 L 0.96,0.72 L 1.2,0.48 L 0.96,0.48 L 0.96,0.24 L 1.2,0.48 L 1.2,0.24 L 1.68,0 L 0.96,0 L 1.2,0.24 L 0.72,0.48 L 0.48,0 L 0.48,-0.24 L 0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.44,-7.44)" id="g5682"><path id="path5684" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.48 L 0,-0.72 L -0.48,-0.72 L -0.72,-0.96 L -0.72,-1.44 L -0.48,-1.44 L -0.72,-1.68 L -0.24,-1.68 L 0,-2.16 L -0.24,-1.92 L -0.24,-2.16 L -1.2,-1.68 L -1.2,-1.44 L -0.72,-1.68 L -0.96,-0.96 L -0.48,-0.72 L -0.48,-0.24 L -0.48,-0.48 L -0.48,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.04,7.92)" id="g5686"><path id="path5688" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0 L -0.48,0.24 L -0.72,0.24 L -0.48,0.24 L -0.72,0.48 L -0.48,0.72 L -0.24,0.48 L -0.48,0.48 L 0,0.48 L -0.48,0 L 0,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-3.36,-8.16)" id="g5690"><path id="path5692" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.24 L -0.24,0.72 L 0.24,0.48 L 0.24,0.96 L 0.48,0.48 L 0.72,0.72 L 0.72,0.24 L 0.24,0.72 L 0,0.24 L 0.24,0.48 L 0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.68,7.44)" id="g5694"><path id="path5696" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.48 L 0.48,0.48 L 0.72,0.72 L 1.2,0.48 L 0.96,0.72 L 0.96,0.48 L 0.72,0.48 L 0,0.24 L 0,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.2,-6)" id="g5698"><path id="path5700" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.48 L 0.24,-0.24 L 0.48,-0.48 L 0,0 L 0.48,-0.24 L 0.72,-0.72 L 0.96,-0.72 L 0.48,-0.72 L 0.72,-0.96 L 0.72,-1.2 L -0.24,-0.48 L -0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(3.84,3.84)" id="g5702"><path id="path5704" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.24 L -0.24,0.48 L -0.48,0.24 L -0.72,0.48 L -0.96,0.24 L -1.68,0.96 L -1.44,0.96 L -1.68,1.2 L -0.72,0.72 L -0.24,0.72"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.44,-0.48)" id="g5706"><path id="path5708" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24 L 0,-0.24 L 0.24,-0.48 L 0,-0.72 L 0.72,-1.2 L 0.24,-1.2 L -0.48,-0.72 L 0,-0.72 L -0.48,-0.24 L -0.24,-0.24 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-3.12,8.4)" id="g5710"><path id="path5712" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.24 L 0.24,0 L 0.96,0.48 L 0.72,0.72 L 1.2,0.72 L 0.96,0.24 L 0.48,0 L 0.96,0.24 L 0.72,0 L 0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.44,-14.4)" id="g5714"><path id="path5716" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.48 L 0,0.72 L -0.24,0.96 L -0.24,1.44 L 0,0.96 L 0.24,0.96 L -0.24,0.96 L 0.48,0.24 L 0.24,0.24 L 0.24,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.4,15.84)" id="g5718"><path id="path5720" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0,0.24 L 0.24,0 L 0.24,-0.24 L 0.48,-0.24 L 0.72,0 L 0.72,-0.24 L 0.24,-0.24 L 0.24,-0.72 L 0,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0,-11.52)" id="g5722"><path id="path5724" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L -0.24,-0.24 L 0,-0.24 L 0,0 L -0.48,-0.24 L -0.48,0 L -0.24,0 L -0.24,0.24 L 0,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.48,-3.84)" id="g5726"><path id="path5728" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.72 L 0.24,-0.24 L 0,-0.72 L 0.24,-0.72 L 0,-0.72 L 0,-0.96 L -0.24,-0.48 L 0,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-7.92,18.48)" id="g5730"><path id="path5732" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.72 L 0.48,-0.72 L 0.48,-0.96 L 0.72,-0.96 L 0.72,-1.2 L 0.48,-0.96 L 0,-0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(9.6,-13.68)" id="g5734"><path id="path5736" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0.72 L -0.24,0.48 L 0,0.72 L -0.48,0.96 L -0.24,1.2 L 0,0.96 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.48,9.6)" id="g5738"><path id="path5740" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0,0.24 L 0.24,0 L 0.24,0.24 L 0.48,0.24 L 0.24,0 L 0.48,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.68,-14.88)" id="g5742"><path id="path5744" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L -0.24,-0.24 L 0,-0.48 L -0.48,-0.48 L -0.24,-0.24 L -0.48,-0.24 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.52,14.64)" id="g5746"><path id="path5748" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.72 L 0,0.48 L 0.24,0.72 L 0.24,0.24 L 0,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6.48,-14.64)" id="g5750"><path id="path5752" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L 0.24,0 L 0.48,0 L 0.48,0.48 L 0.72,0.24 L 0.48,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.48,11.28)" id="g5754"><path id="path5756" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.96 L 0.24,0.72 L 0.48,0.96 L 0.24,0.48 L 0.24,0 L 0.48,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.48,3.12)" id="g5758"><path id="path5760" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0.48,0.24 L 0.72,0.24 L 0.48,0 L 0.96,0 L 0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.4,-13.68)" id="g5762"><path id="path5764" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L -0.24,0 L 0.24,-0.24 L 0,-0.24 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(2.4,2.4)" id="g5766"><path id="path5768" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.72 L 0,-0.48 L -0.24,0 L 0.24,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.48,3.36)" id="g5770"><path id="path5772" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.48 L 0.48,-0.24 L 0.48,0 L 0.48,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.88,0.24)" id="g5774"><path id="path5776" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.48 L 0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.24,7.2)" id="g5778"><path id="path5780" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.24 L -0.48,0 L -0.48,0.48 L 0,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.04,-8.4)" id="g5782"><path id="path5784" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0.48 L 0,0.24 L -0.48,0.96 L 0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.76,-0.72)" id="g5786"><path id="path5788" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,1.2 L 0,0.72 L 0,0.24 L 0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.44,-0.48)" id="g5790"><path id="path5792" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.96 L 0,-0.96 L 0,-1.2 L 0,-0.96 L 0.24,-0.96 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6.72,1.2)" id="g5794"><path id="path5796" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.24,0 L 0.48,-0.24 L 0,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-7.44,0)" id="g5798"><path id="path5800" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.48 L 0,-0.72 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.92,-8.4)" id="g5802"><path id="path5804" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L -0.48,-0.48 L -0.48,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.44,3.12)" id="g5806"><path id="path5808" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.96,-0.72 L -0.48,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(8.4,3.12)" id="g5810"><path id="path5812" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0.48 L -0.24,0.48 L 0,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.24,-0.24)" id="g5814"><path id="path5816" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L -0.24,0 L 0,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.48,-1.68)" id="g5818"><path id="path5820" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.24 L 0,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0,-0.24)" id="g5822"><path id="path5824" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.24 L 0,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.68,6)" id="g5826"><path id="path5828" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0,-3.36)" id="g5830"><path id="path5832" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.48 L -0.24,0 L -0.72,-0.48 L -0.24,-1.2 L 0.24,-1.2 L 0.24,-0.48 L 0.48,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.92,1.2)" id="g5834"><path id="path5836" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.24 L -0.24,0.72 L -0.48,0.72 L -0.48,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.24,-3.84)" id="g5838"><path id="path5840" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0 L 0,-0.24 L -0.24,-0.24 L 0,-0.48 L 0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.96,1.2)" id="g5842"><path id="path5844" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24 L -0.24,0 L -0.24,-0.48 L 0,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.2,-0.96)" id="g5846"><path id="path5848" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.72,0 L 0.24,0.24 L 0.48,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.2,0.24)" id="g5850"><path id="path5852" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24 L 0.24,0 L 0,0 z"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(317.60687,224.88)" id="g6150"><path id="path6152" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L -0.48,-0.48 L -1.92,-0.48 L -2.16,-0.72 L -2.16,-0.96 L -2.4,-0.72 L -1.92,-0.48 L -2.16,-0.24 L -2.64,-0.48 L -3.12,-0.24 L -3.84,0 L -4.08,-0.24 L -4.08,-0.72 L -4.32,-0.96 L -4.08,-1.44 L -3.84,-1.44 L -2.88,-2.16 L -2.4,-1.92 L -2.4,-1.68 L -1.92,-1.92 L -1.92,-2.16 L -1.44,-2.88 L -1.92,-3.12 L -1.92,-3.6 L -2.4,-3.36 L -3.6,-3.6 L -3.84,-3.12 L -4.08,-3.12 L -4.56,-2.88 L -4.8,-2.88 L -4.56,-2.88 L -5.04,-3.12 L -5.52,-2.88 L -5.52,-2.64 L -5.76,-2.88 L -5.76,-2.4 L -6,-2.16 L -5.76,-2.16 L -6,-2.16 L -6,-1.92 L -6.48,-1.68 L -6.24,-1.44 L -6.24,-1.2 L -6.96,-0.72 L -7.2,-0.72 L -6.72,-0.24 L -6.72,0 L -7.2,0.48 L -6.72,0.48 L -6.96,0.72 L -6.96,0.96 L -7.2,0.72 L -7.2,1.2 L -8.16,1.44 L -8.88,1.44 L -9.36,1.2 L -8.64,1.68 L -9.12,1.68 L -8.88,1.92 L -9.6,1.92 L -9.36,1.92 L -9.84,2.16 L -9.36,2.4 L -10.08,2.4 L -9.84,2.4 L -10.56,2.64 L -10.56,3.12 L -11.28,3.12 L -11.04,3.12 L -10.8,3.36 L -10.08,3.36 L -10.32,3.36 L -10.08,3.12 L -9.36,2.64 L -9.36,3.12 L -8.64,2.64 L -8.64,3.12 L -8.64,2.64 L -8.4,2.88 L -8.16,2.4 L -7.68,2.88 L -6.72,2.4 L -5.04,2.88 L -4.08,2.64 L -2.64,3.36 L -1.92,4.08"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-4.08,8.64)" id="g6154"><path id="path6156" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0.24 L -0.24,0 L -0.48,0 L -0.24,-0.24 L -1.68,0.24 L -1.92,0.24 L -1.44,0 L -1.92,0.24 L -1.92,0 L -3.12,0.72 L -5.28,1.2 L -5.04,0.96 L -5.28,1.2 L -6,1.2 L -5.76,1.2 L -5.76,0.96 L -6,1.2 L -6,0.96 L -6,1.2 L -6.72,1.2 L -7.44,0.96 L -7.2,0.48 L -7.68,0 L -7.68,-0.48 L -7.68,0 L -7.44,0.48 L -7.68,0.48 L -7.44,0.72 L -7.68,0.72 L -7.68,1.2 L -7.92,0.96 L -8.16,0.48 L -8.16,1.2 L -8.16,0.72 L -8.16,1.2 L -8.4,1.2 L -8.88,0.72 L -8.64,0.96 L -8.88,1.2 L -9.12,0.96 L -9.12,1.68 L -8.88,1.44 L -8.4,1.44 L -8.16,1.92 L -8.64,1.92 L -9.36,2.16 L -9.6,1.92 L -9.12,1.68 L -9.6,1.68 L -9.36,1.2 L -9.6,1.2 L -9.84,0.96 L -9.84,1.2 L -10.8,1.44 L -10.8,0.96 L -11.04,1.44 L -11.04,0.96"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.2,-9.84)" id="g6158"><path id="path6160" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.24 L 0,0.72 L -0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(4.08,3.84)" id="g6162"><path id="path6164" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24 L -0.24,-0.72 L 0,-0.96 L 0.48,-1.2"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.96,-2.64)" id="g6166"><path id="path6168" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-14.88,9.84)" id="g6170"><path id="path6172" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6.96,-26.88)" id="g6174"><path id="path6176" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(3.84,9.84)" id="g6178"><path id="path6180" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.96,-0.24 L 1.2,-0.48 L 1.2,-0.24 L 1.92,-0.72 L 1.92,-1.68 L 2.4,-1.92 L 2.4,-2.16 L 3.36,-3.12 L 3.6,-3.12 L 3.6,-3.6 L 3.84,-3.6 L 3.36,-4.8 L 3.6,-4.56 L 3.36,-4.8 L 3.12,-4.8 L 2.64,-4.56 L 2.4,-4.8 L 1.92,-4.8 L 1.92,-5.04 L 1.68,-4.32 L 2.4,-4.32 L 2.16,-4.56 L 2.4,-4.8 L 2.64,-4.56 L 2.88,-4.56 L 2.88,-4.32 L 2.4,-3.6 L 1.2,-3.36 L 0.48,-3.12 L 0.48,-2.88 L 0.96,-3.12 L 0.72,-2.64 L 0.24,-2.16 L -0.24,-1.44 L -0.48,-1.68 L -0.72,-1.2 L 0.24,-1.92 L 0.24,-2.16 L 0.72,-2.4 L 0,-1.2 L 0.72,-1.68 L 0.72,-1.44 L 0,-0.96 L 1.2,-2.16 L 1.44,-1.92 L 0.96,-1.44 L 1.44,-1.68 L 1.68,-1.2 L 0.96,-0.48 L 0.96,-0.72 L 0.48,-0.48 L 0.72,-0.96 L 0.24,-0.48 L 0.24,-0.72 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-4.56,-6.24)" id="g6182"><path id="path6184" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0,0 L 0.24,0.24 L 0,0.24 L 0.24,0.48 L 0,0.72 L 0.48,0.72 L 0.48,1.44 L 0.72,1.68 L 1.2,1.44 L 1.44,1.44 L 1.92,0.96 L 1.92,1.2 L 3.36,0.48 L 4.32,-0.48 L 4.32,-1.2 L 4.08,-0.96 L 4.32,-1.44 L 4.32,-1.92 L 3.84,-2.4 L 3.6,-2.16 L 3.12,-2.16 L 2.88,-2.64 L 3.12,-2.88"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.16,20.4)" id="g6186"><path id="path6188" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.96 L 0.72,-1.92 L 0.48,-2.16 L 0.96,-2.16 L 0.72,-2.16 L 0.72,-2.4 L 0.24,-2.4 L 0.24,-2.88 L -0.24,-2.64 L 0.24,-2.4 L 0.24,-2.16 L 0.48,-2.16 L 0.24,-1.92 L 0.48,-1.92 L 0.24,-1.68 L 0,-1.68 L 0.48,-1.44 L 0,-1.2 L 0.24,-1.2 L 0.48,-0.96 L 0.24,-0.48 L 0,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.52,-11.76)" id="g6190"><path id="path6192" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.24 L 0.24,0 L 0.48,0 L 0.96,-0.72 L 1.44,-0.48 L 1.68,-0.72 L 1.2,-0.72 L 1.2,-0.96 L 0.72,-0.72 L 1.2,-1.44 L 1.44,-2.4 L 1.2,-1.68 L 0.72,-0.96 L 0.24,-0.96 L 0.24,-0.72 L 0,-0.24 L -0.24,-0.72 L -0.24,0 L 0,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-4.8,4.56)" id="g6194"><path id="path6196" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.24 L 0,0 L 0.48,0 L 0.24,0 L 0.72,-0.24 L 0.72,-0.72 L 1.2,-0.72 L 1.44,-0.96 L 1.2,-0.96 L 0.48,-0.72 L 0.24,-0.48 L -0.24,-0.48 L -0.48,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.48,-2.16)" id="g6198"><path id="path6200" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,0 L 1.44,-0.48 L 0.48,0 L 0.24,-0.24 L 0.48,-0.24 L 0,-0.24 L 0,-0.72 L -0.24,-0.96 L 0,-0.48 L -0.48,-0.48 L -0.72,-0.24 L -0.24,-0.48 L 0.24,-0.24 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.48,4.8)" id="g6202"><path id="path6204" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.24 L 0.48,-0.24 L 0.96,-0.24 L 0.72,-0.48 L 1.2,-0.96 L 0.48,-0.96 L 0.72,-0.72 L 0.24,-0.24 L -0.24,-0.24 L 0.24,0 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.04,-8.4)" id="g6206"><path id="path6208" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.48,0 L 0.48,-0.24 L 0.96,-0.72 L 0,-0.72 L -0.24,-0.48 L 0,-0.72 L -0.48,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-3.84,0)" id="g6210"><path id="path6212" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,-0.24 L 0.48,-0.24 L 0.72,-0.24 L 0.48,-0.48 L 0.72,-0.72 L 0.24,-0.48 L 0.24,-0.24 L 0,-0.24 L 0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.72,-3.12)" id="g6214"><path id="path6216" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L -0.24,0.48 L 0.24,0.96 L 0.24,0.48 L 0,0.24 L 0.24,0 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(12.72,-1.68)" id="g6218"><path id="path6220" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0 L 0.48,-0.72 L 0.24,-0.72 L 0.24,-0.48 L 0,-0.24 L 0,-0.48 L -0.24,0 L -0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-14.4,15.6)" id="g6222"><path id="path6224" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0 L -0.24,-0.24 L -0.72,-0.24 L -0.48,-0.48 L -0.96,-0.24 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.68,-4.08)" id="g6226"><path id="path6228" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0.48,-0.24 L 0.48,-0.72 L 0,-0.96 L 0,-0.72 L 0.24,-0.48 L 0,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0,-4.56)" id="g6230"><path id="path6232" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0 L 0.48,-0.24 L -0.48,-0.48 L -0.48,-0.24 L 0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.16,4.56)" id="g6234"><path id="path6236" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.96 L -0.24,-0.72 L -0.48,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.2,-9.12)" id="g6238"><path id="path6240" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,-0.72 L 0.48,-0.72 L 0.24,-0.96 L 0.48,-0.48 L 0.24,-0.48 L 0,-0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(4.32,16.56)" id="g6242"><path id="path6244" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L -0.24,0 L -0.24,-0.24 L -0.48,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-3.36,-2.16)" id="g6246"><path id="path6248" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.72 L 0.24,-0.96 L -0.24,-0.48 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(10.32,-13.68)" id="g6250"><path id="path6252" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.24 L 0,-0.24 L -0.24,0 L -0.24,0.24 L -0.24,0 L -0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-12,3.12)" id="g6254"><path id="path6256" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.24,-0.24 L 0,-0.24 L -0.24,0 L 0,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.2,8.4)" id="g6258"><path id="path6260" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.48 L 0,-0.24 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(12.24,-12.72)" id="g6262"><path id="path6264" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.72 L 0,-0.96 L -0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-12.96,10.08)" id="g6266"><path id="path6268" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.48 L -0.48,-0.48 L -0.48,-0.24 L 0,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.16,6)" id="g6270"><path id="path6272" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,-0.24 L -0.48,-0.72 L -0.72,-1.2 L -0.48,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6.96,-17.28)" id="g6274"><path id="path6276" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,-0.24 L 0.48,-0.48 L 0.24,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(4.56,2.88)" id="g6278"><path id="path6280" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.48 L 0.24,-0.96 L 0,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(4.08,-5.76)" id="g6282"><path id="path6284" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,-0.24 L -1.2,-0.24 L -1.2,0.24 L -0.48,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-13.92,17.04)" id="g6286"><path id="path6288" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L -0.72,0.24 L -0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(2.4,-14.88)" id="g6290"><path id="path6292" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.48,-0.48 L 0.24,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.68,5.76)" id="g6294"><path id="path6296" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0.48,-0.48 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-3.12,-1.92)" id="g6298"><path id="path6300" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.24 L 0.24,0 L 0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(3.6,-9.6)" id="g6302"><path id="path6304" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L -0.96,1.44 L -1.44,1.44 L -1.44,2.16 L -2.4,2.64"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-3.12,5.04)" id="g6306"><path id="path6308" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.48,-0.72 L 0.24,-0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.96,18.24)" id="g6310"><path id="path6312" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.96 L -0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.24,-6.48)" id="g6314"><path id="path6316" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0 L -0.24,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.16,-8.16)" id="g6318"><path id="path6320" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.2,-3.84)" id="g6322"><path id="path6324" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(275.12687,206.16)" id="g7702"><path id="path7704" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L -0.48,-0.48 L -0.24,-0.72 L 0,-0.48 L 0,-0.72 L 0.48,-0.48 L 0,-0.96 L -0.24,-0.72 L -0.48,-1.2 L -0.72,-0.96 L -0.96,-1.44 L -0.72,-0.72 L -0.96,-1.2 L -0.96,-0.96 L -1.44,-1.2 L -1.2,-1.92 L -1.2,-1.68 L -1.2,-1.92 L -0.96,-1.68 L -0.96,-2.16 L -0.72,-1.68 L -0.96,-1.44 L -0.72,-1.44 L -0.96,-2.16 L -0.48,-1.92 L -0.48,-1.68 L -0.72,-1.68 L -0.48,-1.44 L -0.48,-1.68 L 0,-1.68 L -0.48,-1.68 L -0.24,-1.92 L 0.24,-1.2 L 0.24,-1.44 L 0.72,-1.44 L -0.24,-1.92 L 0,-2.16 L 0,-1.92 L 0,-2.16 L -0.24,-2.16 L 0.48,-2.16 L 0,-2.16 L -0.48,-2.64 L 0,-2.64 L -0.48,-2.64 L -0.24,-3.12 L -0.48,-3.12 L 0,-2.88 L 0.48,-2.88 L -0.24,-3.12 L 0,-3.36 L -0.72,-3.12 L -0.96,-3.36 L -0.72,-2.88 L -1.2,-2.64 L -0.96,-3.12 L -1.2,-2.88 L -1.44,-3.6 L -1.2,-4.08 L -0.24,-5.04 L 0.24,-5.28 L 0.24,-5.04 L 0.24,-5.28 L 0.72,-5.28 L 0,-5.52 L 0.24,-5.76 L 0.48,-5.52 L 0.48,-5.76 L 0.72,-5.76 L 0.48,-5.76 L 0.48,-6 L 0.72,-5.76 L 0.48,-6 L 0.96,-5.76 L 0.72,-6 L 0.96,-6 L 1.44,-6.24 L 2.16,-6 L 2.16,-5.52 L 2.16,-6 L 2.4,-6 L 2.64,-5.76 L 2.88,-5.76 L 3.36,-5.04 L 3.6,-5.04 L 3.84,-4.56 L 3.84,-4.8 L 4.32,-4.32 L 4.08,-4.32 L 4.56,-4.08 L 4.32,-3.84 L 4.8,-4.08 L 4.56,-3.84 L 5.04,-3.6 L 4.8,-3.12 L 5.04,-3.36 L 5.28,-3.36 L 5.28,-3.84 L 5.52,-3.84 L 5.52,-3.6"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.04,-7.68)" id="g7706"><path id="path7708" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.96,-1.2 L -2.16,-1.2 L -2.88,-2.16 L -2.4,-2.88 L -2.88,-2.88 L -3.12,-2.4 L -3.12,-2.88 L -3.36,-5.04 L -3.6,-5.76 L -3.36,-6 L -3.36,-5.76 L -2.64,-6.48 L -2.88,-7.68 L -3.36,-7.68 L -3.36,-7.2 L -3.6,-8.16 L -3.36,-7.68 L -2.88,-7.68 L -2.88,-8.4 L -3.12,-8.64 L -2.4,-8.88 L -2.88,-9.12 L -2.4,-9.12 L -3.12,-9.12 L -3.12,-9.6 L -2.64,-9.6 L -2.88,-9.84 L -2.64,-10.32 L -2.88,-10.32 L -2.88,-10.56 L -2.16,-10.8 L -1.68,-11.76 L -1.2,-12 L -1.68,-11.76 L -2.16,-11.04 L -2.88,-11.04 L -3.12,-10.8 L -3.6,-11.28 L -3.6,-12.24 L -3.6,-11.76 L -4.08,-11.52 L -4.08,-12 L -4.32,-11.76 L -4.08,-11.76 L -4.56,-11.04 L -5.76,-11.04 L -6,-11.28 L -6.24,-12 L -5.76,-12.24 L -5.52,-12.48 L -5.76,-12.24 L -6.24,-12.24 L -6.72,-11.52 L -7.68,-11.52 L -7.68,-11.76 L -7.92,-11.76 L -8.4,-11.52 L -9.12,-12 L -9.36,-12.24 L -9.6,-12.96 L -8.88,-13.2 L -9.12,-13.68 L -8.64,-13.92 L -9.36,-13.92 L -10.08,-14.4 L -9.84,-14.64 L -10.56,-14.16 L -10.08,-14.16 L -10.32,-13.92 L -10.32,-13.44 L -9.84,-13.68 L -9.6,-13.2 L -9.84,-13.2 L -10.08,-12.72 L -10.32,-12.72 L -10.56,-12.48 L -11.04,-13.92 L -12.24,-15.12 L -12.48,-15.12 L -12.48,-15.6 L -11.28,-16.08 L -12.48,-16.08 L -12.24,-16.32 L -12.72,-16.32 L -12.24,-16.56 L -12.24,-16.8 L -12.96,-16.08 L -13.68,-16.32 L -13.2,-16.8 L -12.72,-16.56 L -12.24,-17.04 L -12.72,-16.8 L -13.2,-17.04 L -13.68,-16.56 L -15.84,-17.28 L -17.52,-17.52 L -18,-19.2 L -18,-19.44 L -18.24,-19.44 L -18.96,-19.92"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-20.64,-17.04)" id="g7710"><path id="path7712" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 1.68,0.24 L 1.92,0 L 2.16,0.48 L 2.88,0.48 L 3.12,1.2 L 2.16,1.2 L 1.92,1.44 L 2.16,1.44 L 1.92,1.68 L 1.68,1.44 L 1.44,1.68 L 1.92,1.68 L 0.96,1.92 L 2.4,1.92 L 2.16,2.16 L 2.4,2.4 L 1.92,2.64 L 2.64,2.64 L 2.64,2.4 L 3.12,2.64 L 3.36,2.88 L 2.88,3.12 L 3.36,2.88 L 3.12,3.12 L 3.36,2.88 L 3.84,3.12 L 4.56,4.32 L 4.56,5.04 L 4.08,5.76 L 2.64,6.24 L 2.16,5.76 L 1.68,6.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(19.92,8.4)" id="g7714"><path id="path7716" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L -0.24,0.24 L -0.48,0.72 L -0.96,0.48 L -0.48,0.72 L -0.24,0.48 L -0.24,0.72 L -0.48,1.2 L -0.72,1.2 L -0.24,1.68 L -0.48,1.68 L -0.24,1.92 L -0.48,2.16 L -0.24,2.4 L -0.48,2.4 L 0,2.88 L -0.48,3.12 L 0.24,3.12"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-12,-7.44)" id="g7718"><path id="path7720" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L -0.24,0.24 L 0,0.48 L 0.24,0 L 0.96,0 L 0.24,0.48 L 0,0.48 L -0.48,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6.24,23.28)" id="g7722"><path id="path7724" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.24,-0.48 L 0.48,-0.24 L 0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6,-14.88)" id="g7726"><path id="path7728" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.72,0.24 L -0.24,-0.24 L -0.48,0 L -0.48,-0.24 L -0.24,-0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-10.08,-4.8)" id="g7730"><path id="path7732" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.24 L 0.24,0.72 L 0,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(4.56,19.68)" id="g7734"><path id="path7736" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0.24,0.24 L 0,0.48 L -0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.52,-13.2)" id="g7738"><path id="path7740" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,-0.24 L -0.24,-0.24 L -0.48,-0.24 L 0,-1.2"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-18.48,-4.8)" id="g7742"><path id="path7744" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.96,0.72 L 0.72,1.68 L 0.48,1.92"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(12.96,18.48)" id="g7746"><path id="path7748" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.48,-0.24 L 0.48,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-12.48,-16.32)" id="g7750"><path id="path7752" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.24,0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(17.76,-0.72)" id="g7754"><path id="path7756" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.24 L 0,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-4.8,17.04)" id="g7758"><path id="path7760" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.04,-12.96)" id="g7762"><path id="path7764" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L 0,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.92,2.4)" id="g7766"><path id="path7768" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L -0.24,0.24 L -0.24,0.72 L 0.48,1.2 L 0.96,1.2 L 0.72,1.44 L 1.2,1.2 L 1.92,1.44 L 2.16,1.2 L 1.92,1.2 L 1.68,0.96 L 1.44,1.2 L 0.96,0.96 L 0.96,0.24 L 1.2,0.24 L 1.2,-0.24 L 0.96,0.24 L 0.72,0 L 0.72,0.72 L 0,0.24 L 0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.24,10.08)" id="g7770"><path id="path7772" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.72 L 0,-0.48 L 0.24,-0.72 L 0,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.2,-11.28)" id="g7774"><path id="path7776" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.72 L 0,-0.96 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.44,2.16)" id="g7778"><path id="path7780" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L -0.72,-0.48 L -0.24,-0.72 L 0,0 z"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(280.64687,202.56)" id="g8016"><path id="path8018" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.24,0.24 L 0.48,0 L 0.72,0.72 L 0.72,0 L 0.72,1.2 L 0.48,1.44 L 0.72,1.44 L 0.72,1.68 L 0.72,1.44 L 0.96,1.44 L 0.96,2.16 L 1.2,2.4 L 1.2,2.16 L 1.2,2.4 L 0.96,2.16 L 1.2,1.44 L 0.96,0.96 L 0.96,0.72 L 1.2,0.72 L 1.2,0.24 L 1.44,0.48 L 1.92,0 L 1.68,-0.24 L 1.92,-1.44 L 1.68,-1.68 L 1.92,-1.68 L 1.68,-2.16 L 2.16,-1.92 L 1.92,-2.16 L 1.92,-1.92 L 1.92,-2.4 L 2.16,-1.68 L 2.4,-1.92 L 1.92,-2.64 L 1.92,-2.88 L 2.4,-2.88 L 1.92,-3.12 L 2.16,-3.36 L 2.4,-3.12 L 2.4,-2.88 L 2.64,-2.4 L 2.4,-2.16 L 2.16,-2.64 L 2.4,-2.16 L 2.64,-2.16 L 2.16,-3.6 L 2.64,-3.84 L 2.4,-4.08 L 2.64,-4.08 L 2.4,-4.08 L 2.64,-4.56 L 2.64,-5.04 L 2.88,-4.8 L 2.88,-5.52 L 3.12,-5.52 L 3.12,-6.24 L 3.6,-6.72 L 3.84,-7.2 L 4.08,-7.2 L 4.08,-7.92 L 3.6,-7.92 L 3.84,-8.4 L 3.36,-8.16 L 4.32,-10.08 L 3.84,-10.32 L 4.08,-10.8 L 3.84,-11.04 L 4.8,-11.04 L 5.52,-10.8 L 6,-11.04 L 6.48,-10.56 L 6.24,-10.08 L 6.24,-9.6 L 6.72,-8.88 L 6.96,-9.12 L 6.96,-8.64 L 7.92,-8.64 L 7.92,-8.88 L 8.4,-8.64 L 8.88,-8.64 L 8.88,-8.88 L 9.36,-7.2 L 9.6,-7.2 L 9.6,-6.96 L 9.84,-6.96 L 9.6,-6.96 L 9.84,-6.24 L 9.84,-6 L 10.08,-6 L 9.84,-5.52 L 10.08,-4.8 L 10.08,-4.56 L 9.84,-4.56 L 9.84,-4.32 L 10.08,-4.56 L 9.84,-4.08 L 10.08,-4.32 L 10.08,-4.08 L 9.6,-3.6 L 10.08,-4.08 L 9.84,-3.6 L 10.32,-3.6 L 10.32,-3.36 L 10.08,-3.36 L 10.32,-3.12 L 10.08,-2.88 L 10.32,-2.88 L 10.08,-2.4 L 10.32,-2.4 L 10.08,-2.4 L 9.84,-2.16 L 10.08,-2.16 L 9.6,-1.92 L 10.08,-2.16 L 10.32,-1.92 L 10.08,-1.44 L 9.36,-1.44 L 10.56,-1.44 L 10.32,-1.2 L 10.8,-1.2 L 10.56,-1.2 L 10.56,-0.96 L 10.8,-1.2 L 11.28,-0.96 L 11.04,-0.72 L 11.28,-0.72 L 11.28,0.24 L 11.52,-0.24 L 11.52,0 L 11.52,-0.48 L 11.76,-0.96 L 12,-0.24 L 12.72,0.24 L 12.24,0.48 L 12.48,0.48 L 12.24,0.72 L 12.72,0.48 L 12.48,0.72 L 12.72,0.48 L 12.96,0.72 L 12.72,0.72 L 12.48,0.96 L 12.48,0.72 L 12,0.72 L 12,0.96 L 12.48,0.96 L 12.24,0.96 L 13.44,1.92 L 12.96,1.92 L 13.2,2.16 L 12.96,2.4 L 13.44,2.16 L 13.44,2.4 L 13.2,2.4 L 12.96,2.64"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(16.08,-12.96)" id="g8020"><path id="path8022" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.96,-1.2 L -0.96,-0.96 L -1.2,-0.96 L -0.24,0 L -0.96,-0.72 L -2.16,-0.96 L -2.4,-0.72 L -2.88,0.48 L -2.16,-0.24 L -2.16,0 L -2.88,0.48 L -3.6,0.48 L -6,-0.48 L -6.72,-1.44 L -9.12,-2.16 L -9.12,-2.4 L -9.36,-3.12 L -9.36,-3.36 L -9.84,-2.88 L -10.08,-3.12 L -9.84,-2.88 L -10.8,-2.64 L -10.56,-2.4 L -10.8,-1.92 L -10.8,-1.68 L -11.28,-1.92 L -12,-1.2 L -12,-0.72 L -12.48,-0.96 L -12.96,-0.96 L -13.2,-1.2 L -13.2,-0.96 L -12.24,-0.72 L -12.96,-0.72 L -13.68,-1.44 L -13.68,-1.68 L -13.68,-1.44 L -14.4,-1.44 L -14.64,-1.68 L -14.88,-2.16 L -15.36,-1.92 L -15.84,-1.92 L -16.08,-1.68 L -15.36,-1.44 L -15.36,-0.72 L -16.08,-0.96 L -16.8,-0.48 L -17.04,-0.72 L -17.04,-0.48 L -17.28,-0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-13.92,0.96)" id="g8024"><path id="path8026" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0 L 0.48,0.24 L 0.24,0.48 L 0.96,0.72 L 0.48,1.2 L 0.72,1.68 L 1.2,1.92 L 1.2,1.68 L 1.44,1.68 L 1.2,1.92 L 1.2,2.64 L 1.44,3.12 L 0.96,3.36 L 0,2.88 L 0.24,2.88 L 0.48,1.92 L 0.24,2.16 L 0.24,1.92 L 0.48,2.16 L 0.24,2.88 L 0,1.92 L -0.24,2.16 L 0,2.16 L -0.24,2.4 L -0.24,2.64 L 0,2.88 L -0.24,2.88 L -0.96,3.12 L -0.48,2.88 L -0.48,2.64 L -0.72,2.64 L -0.96,2.16 L -1.68,2.4 L -1.2,2.16 L -1.44,2.16 L -1.2,1.92 L -1.2,1.2 L -0.96,0.72 L -0.24,0.72 L -0.24,0.24 L -0.48,0.24 L 0,0 L -0.24,-0.24 L 0,-1.2 L 0,-0.96 L 0.48,-0.48 L 0,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.92,-2.16)" id="g8028"><path id="path8030" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0.72,0 L 1.2,0 L 0.96,0.48 L 0.96,0.72 L 0.72,0.96 L 0.72,1.2 L 0.24,0.72 L 0.48,0.96 L 0.24,0.72 L 0.48,0.96 L 0.96,0.48 L 0.48,0.72 L 0.24,0.72 L 0.48,0.48 L 0.24,0.48 L 0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(8.4,8.16)" id="g8032"><path id="path8034" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.48 L 0.48,0 L 0.48,0.24 L 0.72,0.48 L 0.72,0.96 L 1.2,1.2 L 0.96,1.44 L 0.96,2.16 L 1.44,2.4 L 1.2,2.64 L 0.96,2.64 L 0.96,2.4 L 0.72,2.64 L -0.24,1.44 L 0,0.96 L -0.24,0.72 L 0,0 L 0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-13.44,-3.36)" id="g8036"><path id="path8038" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0 L 0.72,0.96 L 0.96,1.44 L 0.72,0.96 L 0.96,0.96 L 0.96,0.72 L 1.2,1.2 L 1.44,0.96 L 1.92,1.68 L 1.68,1.92 L 0.72,2.16 L 0.96,2.64 L 0.48,2.64 L 0.96,2.64 L 0.72,3.36 L 0.96,3.36 L 1.44,4.08 L 1.2,5.04 L 1.68,5.52 L 0.48,5.28"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0,-1.92)" id="g8040"><path id="path8042" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0,-0.24 L 1.2,-0.48 L 1.2,0.24 L 1.44,0.24 L 1.2,0.72 L 0.96,0.72 L 1.2,0.72 L 1.2,1.2 L 0.72,0.72 L 0.72,0.96 L 0.96,0.96 L 0.48,1.2 L 0,1.2"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6.72,-4.32)" id="g8044"><path id="path8046" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0 L 0.48,0.24 L -0.48,0.96 L -0.48,0.48 L 0,0.72 L 0,0.48 L -0.24,0.24 L -0.24,0.48 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.28,3.12)" id="g8048"><path id="path8050" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0.96,-0.72 L 0.96,-0.48 L 1.68,-0.48 L 1.2,0.24 L 1.2,0 L 0.48,0.48 L 0.24,0.24 L 0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(2.64,0.48)" id="g8052"><path id="path8054" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.24 L -0.24,0 L -0.48,0 L -0.72,-0.24 L 0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(7.2,5.76)" id="g8056"><path id="path8058" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.72,-1.2 L -0.48,-2.4 L 0.48,1.2 L 0.24,0.96 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.88,-6)" id="g8060"><path id="path8062" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.24 L 0.24,0.48 L -0.48,0.96 L -0.48,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-6.96,0.24)" id="g8064"><path id="path8066" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.48 L -0.48,-0.24 L -0.48,-0.72 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.48,3.12)" id="g8068"><path id="path8070" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.72 L 0.24,-0.72 L 0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.48,-4.56)" id="g8072"><path id="path8074" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0.24,0 L 0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.76,-1.92)" id="g8076"><path id="path8078" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.48,-0.24 L 0.72,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(9.84,3.36)" id="g8080"><path id="path8082" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L -0.24,-0.96 L 0,-0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-17.28,-0.24)" id="g8084"><path id="path8086" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.24,0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.24,2.64)" id="g8088"><path id="path8090" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.24,0.24 L 0,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.24,-3.6)" id="g8092"><path id="path8094" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(7.2,13.68)" id="g8096"><path id="path8098" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.72 L 0,-0.72 L 0,-0.48 L 0,-0.72 L -0.24,-1.68 L -0.96,-1.92 L -1.2,-2.16 L -1.44,-2.16 L -1.2,-1.92 L -1.68,-1.92 L -2.16,-2.64 L -2.16,-2.4 L -2.64,-2.64 L -2.16,-1.92 L -2.4,-1.44 L -2.4,-0.96 L -2.16,-1.44 L -1.92,-0.72 L -1.68,-0.48 L -1.2,-1.2 L -1.44,0 L -1.2,0.24 L -1.2,0 L -1.2,0.24 L -0.48,0.24 L -0.48,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-3.12,0.72)" id="g8100"><path id="path8102" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0.24,-0.24 L 0,-0.72 L 0.48,-1.2 L 0.24,-1.44 L 0,-0.48 L 0,-1.68 L -0.24,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(4.56,-2.16)" id="g8104"><path id="path8106" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.72 L 0,-0.96 L -0.48,-1.2 L -1.2,-2.88 L -1.44,-2.64 L -1.2,-1.44 L -0.72,-0.48 L -0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.96,1.44)" id="g8108"><path id="path8110" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 1.2,0 L 0,-0.48 L -0.24,0 L -0.72,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.96,-3.36)" id="g8112"><path id="path8114" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0.48,-0.48 L 0.48,-0.72 L 0.48,-0.48 L 0.24,-0.72 L 0,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.72,-4.08)" id="g8116"><path id="path8118" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.24,0 L 0.48,-0.24 L 0.48,-0.72 L 0,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-3.6,7.68)" id="g8120"><path id="path8122" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.48 L 0.48,-0.24 L 0.24,-0.72 L 0,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.2,0.72)" id="g8124"><path id="path8126" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.72 L 0,0 L 0,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.96,-18)" id="g8128"><path id="path8130" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0,-0.48 L -0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(2.16,10.32)" id="g8132"><path id="path8134" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.72 L -0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.68,7.92)" id="g8136"><path id="path8138" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.96 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(4.56,-3.36)" id="g8140"><path id="path8142" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-7.68,4.56)" id="g8144"><path id="path8146" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.48 L -0.24,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.48,-0.24)" id="g8148"><path id="path8150" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.24,0.24)" id="g8152"><path id="path8154" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(309.68687,207.6)" id="g8232"><path id="path8234" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -1.44,0 L -1.44,-0.72 L -2.16,-0.72 L -2.16,-1.2 L -2.64,-0.96 L -2.4,-1.92 L -2.64,-2.16 L -4.08,-2.4 L -4.56,-2.16 L -5.52,-2.16 L -5.76,-2.4 L -6,-1.92 L -6,-2.4 L -6.24,-2.16 L -6.24,-2.64 L -6.72,-2.64 L -6.96,-2.88 L -7.2,-2.64 L -7.2,-2.88 L -7.92,-2.88 L -8.16,-3.12 L -7.92,-3.36 L -8.4,-3.36 L -8.16,-3.6 L -9.12,-3.84 L -8.88,-4.32 L -9.12,-4.56 L -8.64,-4.56 L -8.88,-4.8 L -8.88,-5.28 L -8.4,-5.04 L -8.88,-5.28 L -8.16,-6.24 L -7.92,-6.24 L -7.68,-6.48 L -7.44,-6 L -6.96,-6.24 L -7.2,-7.68 L -6.72,-9.36 L -7.2,-10.08 L -7.92,-10.32 L -8.4,-10.08 L -8.88,-9.36 L -9.6,-8.64 L -9.84,-8.16 L -11.04,-9.12 L -11.52,-9.84 L -11.28,-10.56 L -11.76,-11.28 L -12,-12.24 L -11.52,-14.64 L -11.04,-15.12 L -11.28,-15.6 L -11.04,-15.6 L -11.28,-16.08 L -11.04,-16.8 L -11.28,-17.04 L -12.24,-16.8 L -11.28,-15.6 L -11.28,-15.12 L -12,-16.56 L -12.96,-17.04"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-10.8,-7.92)" id="g8236"><path id="path8238" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.24,0.24 L 0.48,0.96 L 0.96,0.96 L 0.96,1.2 L 1.92,1.92 L 1.2,2.16 L 0.72,1.92 L 0.72,2.16 L 0.24,1.92 L 0.24,1.68 L 0.24,1.92 L 0,1.44 L -0.24,1.68 L -0.48,1.68 L 0,1.2 L -0.24,0.96 L 0.24,0.72 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.48,3.12)" id="g8240"><path id="path8242" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24 L -0.72,-0.24 L -0.24,-0.24 L 0,-0.72 L 0.24,-0.72 L 0.24,-0.48 L 0.48,-0.48 L 0.72,-0.24 L 0.48,0.24 L 0.24,0.24 L 0.24,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.48,3.12)" id="g8244"><path id="path8246" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0,0 L 0,-0.24 L -0.24,-0.72 L 0.24,-0.48 L 0.48,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.48,-4.08)" id="g8248"><path id="path8250" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.48,0 L 0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.96,4.08)" id="g8252"><path id="path8254" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.24,0 L 0.48,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.96,0)" id="g8256"><path id="path8258" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0 L 0.72,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-3.6,-15.84)" id="g8260"><path id="path8262" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0.72,-0.24 L 0,-0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.04,16.08)" id="g8264"><path id="path8266" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L 0,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.16,-0.24)" id="g8268"><path id="path8270" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L -0.24,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(7.44,-1.92)" id="g8272"><path id="path8274" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-1.2 L 0,-1.92 L 0.24,-2.16 L 0.72,-1.92 L 1.2,-2.4 L 1.2,-2.88 L 0.96,-2.88 L 0.48,-2.4 L 0.48,-2.64 L 0,-1.68 L -0.48,-1.44 L -0.48,-0.96 L -0.96,-0.48 L -0.96,0 L -0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.48,1.44)" id="g8276"><path id="path8278" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0 L 0,-0.24 L 0,-0.72 L -0.24,-0.24 L -0.48,-0.24 L -0.48,-0.72 L -0.48,-0.24 L -0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-7.92,-18.24)" id="g8280"><path id="path8282" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L 0.48,0.48 L 0.48,0 L 0.24,0 L 0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.28,14.88)" id="g8284"><path id="path8286" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.96 L -0.24,-0.24 L -0.24,0 L 0,0 z"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(309.68687,207.84)" id="g8336"><path id="path8338" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0 L 0.24,-0.24 L 0,-0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(12.24,0.96)" id="g8340"><path id="path8342" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 1.2,-0.48 L 1.68,-0.48 L 1.68,-0.72 L 1.92,-0.96 L 1.68,-0.96 L 1.68,-1.2 L 1.92,-1.68 L 1.44,-1.44 L 1.68,-1.68 L 1.2,-1.92 L 1.44,-2.16 L 1.2,-2.16 L 0.96,-1.68 L 0.48,-1.92 L -0.48,-1.2 L -0.96,-0.96 L -1.2,-1.2 L -0.96,-0.96 L -1.44,-0.72 L -0.96,-0.96 L -0.72,-0.72 L -0.72,-0.96 L -0.48,-1.2 L -0.24,-1.2 L -0.48,-0.96 L 0.48,-0.96 L 0.24,-0.72 L 0,-0.72 L 0,-0.48 L -0.24,-0.24 L -0.72,-0.24 L -0.72,-0.48 L -0.96,-0.48 L -0.96,-0.24 L -0.72,0 L -1.2,0.48 L -0.72,0.48 L -0.48,0.72 L -0.48,0.48 L -0.24,0.48 L -0.48,0.72 L 0,0.72 L 0,0.96 L 0,0.48 L -0.72,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-9.36,-4.56)" id="g8344"><path id="path8346" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0.72,-0.24 L 0.96,-0.72 L 0.48,-0.72 L 0.48,-0.96 L -0.48,-0.96 L 0,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(9.6,7.68)" id="g8348"><path id="path8350" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.96,-0.48 L 1.2,-0.24 L 0.96,-0.48 L 1.2,-0.48 L 1.2,-0.72 L 0,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.04,-28.8)" id="g8352"><path id="path8354" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,-1.92 L 0.24,-1.44 L 0,-0.72 L -0.24,-0.72 L 0,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.96,18.72)" id="g8356"><path id="path8358" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.48 L 0.24,-0.72 L 0,-0.24 L -0.48,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-4.32,6.72)" id="g8360"><path id="path8362" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L -0.24,-0.48 L -0.72,-0.48 L -0.72,-0.24"/></g></g></g></g></g></g></g><g transform="translate(343.52687,208.8)" id="g8408" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path8410" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L -0.24,-0.96 L -0.48,-0.96 L -0.24,-1.44 L -0.96,-1.68 L -0.48,-2.16 L -0.24,-2.16 L -0.48,-2.16 L -0.48,-2.4 L 0,-2.4 L -0.48,-2.64 L 0,-3.36 L -0.24,-3.12 L -0.48,-3.84 L 0,-4.08 L 0.24,-4.08 L 0.72,-4.32 L 0.96,-4.32 L 1.44,-2.88 L 1.68,-2.88 L 1.44,-3.12 L 1.44,-3.84 L 1.2,-4.08 L 1.92,-4.56 L 1.2,-4.56 L 1.68,-5.28 L 3.12,-4.56 L 2.4,-5.04 L 2.16,-5.28 L 2.4,-5.76 L 1.68,-6.24 L 1.44,-6 L 1.92,-6 L 2.16,-5.76 L 2.16,-5.52 L 1.68,-5.52 L 1.2,-5.28 L 0.72,-4.32 L -0.48,-4.32 L -0.96,-3.36 L -0.96,-2.88 L -0.48,-2.64 L -1.2,-1.92 L -0.72,-0.96 L -1.44,-0.72 L -1.68,-0.48 L -0.96,-0.72 L -0.72,-0.72 L -1.2,-0.24 L -1.2,0 L -0.96,-0.48 L -0.48,0 L -0.24,0 L -0.24,0.24"/><g transform="translate(1.44,-18)" id="g8412" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path8414" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L 0.24,1.68 L -0.72,2.16 L -0.24,3.12 L -0.48,3.36 L -0.96,3.36 L -1.2,3.84 L -0.96,5.04 L -1.2,5.52 L -0.96,5.76 L -0.96,6.24 L -0.72,6 L -0.96,5.76 L -0.48,6 L -0.24,6.48 L -0.48,5.76 L -0.96,5.76 L -0.96,5.28 L -1.2,4.56 L -0.96,3.6 L -0.48,3.36 L -0.24,2.88 L 0,2.64 L -0.48,2.4 L -0.48,2.16 L 0.24,1.68 L 0.48,1.2 L 0.72,1.68 L 1.2,1.68 L 1.2,2.16 L 1.2,1.68 L 1.44,1.68 L 1.44,1.44 L 0.96,1.68 L 0.48,1.44 L 0,0.48 L 0.24,0.24"/><g transform="translate(-12,15.36)" id="g8416" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path8418" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,0 L 0.96,-0.24 L 1.92,-0.24 L 2.64,0.48 L 2.88,0.48 L 3.36,1.2 L 3.6,1.2 L 4.08,2.16 L 5.04,1.92 L 6.24,2.88 L 6.72,2.4 L 7.2,2.64 L 7.44,2.4 L 8.4,2.88 L 8.88,2.16 L 8.4,2.88 L 8.16,2.64 L 7.92,1.92 L 7.92,2.64 L 6.96,2.16 L 6.24,2.64 L 6,2.4 L 6,2.16 L 5.76,2.4 L 5.04,1.92 L 4.08,2.16 L 3.6,0.96 L 3.36,1.2 L 2.88,0.48 L 2.64,0.48 L 1.92,-0.24 L 0.96,-0.24 L 0.72,0 L 0,0 L -0.72,0.24 L 0,0 z"/><g transform="translate(-2.88,2.16)" id="g8420" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path8422" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.48 L 0.72,0 L 0.48,0.48 L 0.72,0 L 0.96,0.24 L 0.96,-0.72 L 1.68,-1.2 L 2.16,-1.92 L 1.68,-2.4 L 1.92,-1.92 L 1.44,-1.92 L 1.68,-1.92 L 1.68,-1.68 L 1.44,-1.44 L 1.2,-1.44 L 1.44,-1.2 L 0.72,-0.96 L 0.72,-0.24 L 0.24,-0.48 L 0.24,-0.72 L 0.24,-0.48 L 0,-0.48 L 0,0 z"/><g transform="translate(15.6,-9.6)" id="g8424" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path8426" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.72 L -0.24,1.92 L 0,2.64 L 0,0.96 L 0.24,0.72 L 0.48,0.72 L 0.24,0.48 L 0,0 z"/><g transform="translate(-17.52,8.4)" id="g8428" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path8430" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,0.24 L 0.72,0.48 L 1.68,0.72 L 0.96,0.48 L 0.72,0 L 0.72,0.24 L 0,0 z"/></g></g></g></g></g></g><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(261.92687,190.32)" id="g10232"><path id="path10234" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.72 L 0,0.96 L -0.24,1.44 L -0.48,2.16 L -1.2,2.88 L -1.44,2.88 L -1.2,3.12 L -1.44,4.56 L -1.2,5.76 L -1.68,6.48 L -1.68,6.96 L -2.64,7.68 L -3.12,7.68 L -4.08,8.16 L -4.32,8.4 L -3.6,7.92 L -2.88,8.16 L -2.16,8.16 L -2.64,8.64 L -2.4,8.88 L -3.36,8.88 L -2.16,8.88 L -1.2,9.84 L -0.24,11.04 L 0.24,11.52 L 0,12 L -1.68,12.24 L -1.92,12.72 L -3.12,12.72 L -3.6,12.48 L -3.84,12.48 L -3.36,12.72 L -3.12,12.96 L -3.84,12.72 L -3.36,12.96 L -2.88,12.96 L -2.64,13.2 L -2.88,13.2 L -3.36,13.68 L -2.88,13.44 L -2.88,13.68 L -1.2,14.16 L -0.72,15.12 L -1.2,15.36 L -1.2,15.12 L -1.68,15.36 L -2.16,15.36 L -3.12,15.12 L -2.88,15.6 L -3.12,15.6 L -3.36,15.36 L -3.12,15.6 L -3.36,15.84 L -3.36,15.6 L -3.36,15.84 L -3.6,16.08 L -3.84,15.6 L -3.84,15.36 L -3.84,15.6 L -3.84,15.36 L -4.08,15.6 L -4.08,15.36 L -3.84,14.88 L -4.56,15.12 L -4.32,14.88 L -4.56,14.64 L -4.8,14.64 L -4.56,13.92 L -4.8,14.4 L -4.56,13.92 L -5.28,14.4 L -5.28,13.92 L -5.28,14.4 L -5.52,14.4 L -5.52,13.92 L -5.76,13.68 L -5.52,13.2 L -5.76,13.68 L -6,12.96 L -5.76,12.96 L -5.76,12.72 L -6,12.72 L -5.52,12.48 L -5.76,12.48 L -6,12.24 L -5.76,12 L -6.24,12.24 L -6.24,12 L -6,11.76 L -6.48,12 L -6.72,11.76 L -6.24,11.52 L -6.72,11.52 L -6.48,11.28 L -7.44,11.52 L -6.24,11.04 L -6.96,11.04 L -6.72,10.56 L -5.52,11.04 L -5.76,11.28 L -5.52,11.04 L -5.76,10.8 L -5.52,10.8 L -6,10.8 L -6.24,10.56 L -6,10.32 L -6.24,10.56 L -6.48,10.32 L -6,10.08 L -5.76,10.32 L -6,10.08 L -6.48,10.32 L -6.72,10.08 L -6.48,10.08 L -6.72,10.08 L -6.96,9.84 L -6.72,9.84 L -6.96,9.6 L -6.72,9.6 L -6.96,9.36 L -7.44,9.12 L -6.96,9.12 L -7.44,8.64 L -7.44,8.4 L -6.96,8.64 L -7.68,8.16 L -8.16,7.2 L -7.68,7.2 L -7.68,7.44 L -6.96,8.4 L -6.96,9.12 L -5.76,9.36 L -6.72,8.88 L -6.96,8.64 L -6.72,8.4 L -6.48,8.88 L -6.48,8.64 L -6.48,8.88 L -6.24,8.4 L -6,9.12 L -6,8.88 L -5.52,9.12 L -6,8.64 L -5.76,8.64 L -5.76,8.88 L -5.52,8.16 L -6,8.64 L -6.48,7.92 L -6,7.44 L -6,7.2 L -6.96,6.48 L -7.2,5.76 L -7.44,6 L -7.68,5.76 L -7.44,4.8 L -7.44,5.52 L -7.2,5.52 L -6.48,4.8 L -6.24,5.52 L -5.76,4.8 L -5.52,5.04 L -5.04,4.8 L -5.04,5.28 L -4.08,4.8 L -4.8,4.8 L -5.52,3.84 L -5.28,2.88 L -5.04,2.88 L -5.04,2.4 L -4.8,2.64 L -4.56,2.4 L -4.32,2.64 L -4.8,2.16 L -4.8,1.92 L -4.56,2.16 L -4.8,1.92 L -5.04,1.92 L -5.04,1.68 L -5.04,1.92 L -5.04,1.68 L -5.28,1.44 L -4.8,1.2 L -5.04,1.2 L -5.52,0.72 L -5.28,0 L -5.04,0 L -5.28,0 L -5.52,0.48 L -5.76,0.48 L -5.76,0 L -6,0.48 L -6.48,0.48 L -6.96,0.72 L -6.96,0.48 L -7.68,0.48 L -9.12,-0.24 L -8.64,-0.48 L -8.4,-0.24 L -7.68,-0.48 L -7.92,-0.72 L -7.92,-0.96 L -7.68,-0.96 L -8.16,-1.2 L -7.92,-1.44 L -8.16,-1.44 L -8.64,-2.16 L -9.6,-2.16 L -9.84,-2.4 L -10.32,-2.4 L -11.04,-2.64 L -10.56,-2.88 L -10.8,-3.12 L -11.04,-3.12 L -10.8,-3.12 L -10.32,-3.36 L -10.8,-3.36 L -10.56,-3.6 L -9.36,-3.36 L -9.36,-3.84 L -9.12,-4.08 L -9.36,-3.84 L -9.6,-4.08 L -8.64,-4.32 L -8.64,-4.8 L -8.16,-5.28 L -7.68,-5.28 L -7.2,-4.8 L -6.96,-5.04 L -6.72,-5.04 L -6,-4.56 L -6,-4.8 L -6.72,-5.28 L -7.2,-5.52 L -7.68,-6 L -8.16,-5.76 L -8.88,-5.28 L -9.84,-5.28 L -9.84,-5.52 L -9.6,-5.76 L -10.08,-5.76 L -10.32,-5.52 L -10.8,-6.24 L -11.28,-6.48 L -11.52,-6.48 L -11.52,-6.72 L -11.76,-6.48 L -12.24,-6.96 L -12.96,-7.44 L -13.44,-7.2 L -13.68,-7.44 L -13.44,-7.68 L -13.2,-7.44 L -12.96,-7.92"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-19.44,0.24)" id="g10236"><path id="path10238" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 1.2,-0.24 L 0.24,-0.48 L 0.96,-0.48 L 0.24,-0.72 L 0.96,-0.72 L 0.96,-0.96 L 1.2,-0.96 L 0.96,-1.2 L 1.44,-0.96 L 1.92,-1.2 L 1.92,-0.96 L 2.16,-1.2 L 2.16,-0.96 L 2.64,-1.44 L 2.64,-0.96 L 3.12,-1.2 L 3.36,-0.96 L 3.12,-0.48 L 3.6,-0.96 L 3.36,-0.96 L 3.36,-1.2 L 3.84,-0.96 L 4.08,-0.96 L 4.08,-0.72 L 4.32,-0.96 L 4.56,-0.96 L 4.8,-0.72 L 4.8,-0.48 L 5.76,-0.96 L 6,-0.72 L 6,-0.96 L 6.48,-0.72 L 6.24,-0.96 L 6.48,-1.2 L 7.2,-1.2 L 7.2,-0.72 L 6.96,-0.96 L 6.96,-0.72 L 7.2,-0.72 L 8.4,0.72 L 8.64,1.68 L 8.4,1.92 L 8.88,1.92 L 8.64,2.16 L 8.88,2.4 L 8.64,2.88 L 8.88,3.12 L 8.88,3.84 L 9.36,3.6 L 9.12,4.08 L 9.6,3.6 L 9.84,3.84 L 10.08,4.32 L 10.32,4.08 L 10.56,4.08 L 10.56,4.32 L 10.8,5.04 L 10.8,4.08 L 11.04,4.56 L 11.04,5.28 L 10.32,5.28 L 11.04,5.52 L 10.56,6.24 L 10.56,6.96 L 9.36,7.44 L 9.12,7.2 L 8.64,7.2 L 9.36,7.68 L 8.88,8.16 L 8.88,7.92 L 8.64,8.16 L 8.4,7.44 L 7.92,7.2 L 8.4,7.68 L 8.4,8.16 L 8.16,8.16 L 8.16,7.68 L 8.16,8.16 L 7.92,7.92 L 7.68,8.16 L 7.2,8.16 L 7.2,7.92 L 6.72,7.92 L 6.72,7.68 L 6.96,7.44 L 6.48,7.44 L 6.48,7.2 L 6.24,7.44 L 5.76,7.44 L 6,6.96 L 6.48,6.96 L 6.24,6.72 L 6.96,6.72 L 6.48,6.48 L 5.52,6.24 L 5.76,6.24 L 5.76,6 L 5.52,6 L 5.76,5.76 L 5.04,6.48 L 4.56,6 L 4.56,6.72 L 3.84,6.96 L 3.6,6.96 L 3.84,6.72 L 3.36,6.96 L 3.6,6.96 L 3.6,7.2"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6.72,-8.16)" id="g10240"><path id="path10242" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0,0.24 L 0.48,0.24 L 0.48,0.48 L 0.48,0.24 L 0.96,0.24 L 1.2,0.48 L 1.92,0.48 L 2.16,0.24 L 2.16,0.48 L 2.4,0 L 2.64,0 L 2.88,-0.48 L 2.88,-0.24 L 2.88,-0.48 L 3.12,-0.48 L 3.36,-0.24 L 3.12,0.24 L 3.36,-0.24 L 3.6,0.48 L 3.84,0.48 L 3.84,0.72 L 4.08,0.48 L 5.04,0.48 L 5.52,-0.24 L 5.76,0 L 6.48,-0.48 L 6.48,0 L 7.44,-0.24 L 7.92,-0.24 L 7.68,0.24 L 8.16,-0.24 L 8.16,0 L 8.88,-0.24 L 8.64,-0.48 L 8.88,-0.72 L 9.84,-0.48 L 10.32,-0.96"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-4.32,12.72)" id="g10244"><path id="path10246" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0,-0.24 L 0.72,-0.24 L 0.48,-0.72 L 0.48,-0.48 L 0.48,-0.72 L 1.44,-0.96 L 1.2,-0.96 L 1.44,-1.2 L 1.44,-1.44 L 0.72,-1.2 L 0.24,-1.44 L 0.48,-1.68 L 0,-1.92 L -0.96,-2.16 L -0.48,-2.4 L -0.24,-2.16 L 0,-2.4 L 0.24,-2.4 L 0,-2.64 L 0.24,-2.64 L 0.96,-2.4 L 0.72,-2.64 L 1.2,-2.88 L -0.24,-2.64 L -0.48,-2.4 L -0.72,-2.64 L -1.2,-2.64 L -0.96,-2.88 L -1.2,-3.12 L -0.96,-3.12 L -1.44,-3.12 L -1.44,-2.88"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(9.84,10.56)" id="g10248"><path id="path10250" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L -0.24,-0.24 L -0.24,-0.72 L 0.24,-0.48 L 0.48,-0.48 L 0.48,0 L 0.72,0 L 0.48,-0.48 L 0.72,-0.48 L 0.72,-0.24 L 0.96,-0.24 L 1.2,0 L 0.72,0 L 1.68,0.24 L 1.2,0.24 L 1.68,0.48 L 1.68,0.96 L 0.72,0.72 L 0.72,0.24 L 0.48,0.72 L 0.48,0.24 L 0.24,0.72 L 0,0.48 L 0,0.24 L 0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.72,-2.4)" id="g10252"><path id="path10254" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L 0.24,0.72 L 0,1.2 L -0.24,1.2 L -0.24,0.48 L -0.48,1.2 L -0.72,0.72 L -0.72,0.96 L -0.96,0.72 L -0.72,0.48 L -0.48,0.48 L -0.48,0.24 L -0.24,0.24 L -0.72,0.24 L -0.48,-0.24 L -0.24,-0.24 L -0.24,-0.48 L 0,-0.24 L 0,-0.48 L 0.24,-0.48 L -0.24,-0.72 L 0.48,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.72,-1.92)" id="g10256"><path id="path10258" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L -0.48,0.24 L -0.48,0 L 0,-0.24 L -0.48,-0.48 L -0.72,-0.48 L -0.72,-0.72 L 0,-0.72 L 0,-0.96 L 0.24,-0.72 L 0.48,-0.72 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6.72,5.04)" id="g10260"><path id="path10262" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L -0.24,0.48 L -0.48,0 L -0.24,-0.24 L 0,-0.24 L 0,-0.72 L 0.48,-0.24 L 0.24,-0.48 L 0.48,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-15.6,-8.88)" id="g10264"><path id="path10266" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.48 L -0.24,-0.48 L 0.24,-0.48 L 0,-0.72 L 0,-0.96 L -0.24,-0.72 L -0.24,-0.96 L 0.24,-1.2 L 0.24,-1.44 L -0.48,-1.44 L -0.48,-1.68 L -0.24,-1.92 L -0.72,-1.68"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(7.2,1.68)" id="g10268"><path id="path10270" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0 L 0.24,-0.48 L 0.72,-0.48 L 0.96,0.48 L 0.48,0.24 L 0.48,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(8.64,-9.6)" id="g10272"><path id="path10274" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.48 L -0.96,0.72 L -1.2,0.48 L -1.2,0.72 L -0.24,0.72 L 0,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-7.92,1.68)" id="g10276"><path id="path10278" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.48 L 0.96,-0.24 L 0.48,-0.24 L 0.48,0.24 L 0,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.24,13.68)" id="g10280"><path id="path10282" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.48 L 0.48,-0.24 L 0.72,-0.24 L 0.72,0 L 0.72,-0.24 L 0.48,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(7.2,1.2)" id="g10284"><path id="path10286" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.48,-0.24 L 0.24,-0.24 L 0.48,-0.24 L 0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-7.44,-2.16)" id="g10288"><path id="path10290" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.48 L 0.24,-0.72 L 0.24,-0.24 L 0.48,0 L 0.48,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.72,-10.32)" id="g10292"><path id="path10294" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0.96,0 L 1.2,0.72 L 0.72,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.24,6)" id="g10296"><path id="path10298" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L -0.24,-0.24 L -0.24,-0.72 L 0.48,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.48,-1.44)" id="g10300"><path id="path10302" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.48 L 0.24,-0.72 L 0.48,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.68,-16.32)" id="g10304"><path id="path10306" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 1.2,0 L 0.72,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(8.4,26.4)" id="g10308"><path id="path10310" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24 L 0,-0.24 L 0.24,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-19.44,-11.76)" id="g10312"><path id="path10314" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.16,-4.8)" id="g10316"><path id="path10318" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0 L 0,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.48,-0.96)" id="g10320"><path id="path10322" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.96,0 L 0,-0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(3.6,4.08)" id="g10324"><path id="path10326" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L -0.24,-0.48 L 0,-0.24 L -0.48,0.24 L -0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(2.16,-0.48)" id="g10328"><path id="path10330" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24 L 0,-0.24 L -0.24,-0.48 L -0.24,0 L 0,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.96,-1.44)" id="g10332"><path id="path10334" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.96,-0.48 L -0.72,-0.24 L -0.48,-0.24 L -0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(4.8,3.36)" id="g10336"><path id="path10338" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.72 L -0.72,-0.48 L -0.24,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.4,0.48)" id="g10340"><path id="path10342" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.72 L -0.48,0 L 0,0 z"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(250.88687,148.8)" id="g10412"><path id="path10414" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 1.92,1.44 L 2.16,1.44 L 1.92,1.44 L 1.92,1.2 L 2.64,1.68 L 2.16,2.16 L 3.12,2.64 L 6,2.88 L 6.48,3.36 L 8.16,3.6 L 8.88,4.08 L 9.12,4.56 L 8.88,5.28 L 9.6,5.52 L 9.12,5.52 L 9.12,6.48 L 9.36,7.2 L 9.12,6.96 L 9.12,7.44 L 9.36,7.2 L 9.36,7.92 L 9.6,7.92 L 10.32,8.4 L 10.56,8.4 L 12,8.88 L 12.24,8.64 L 13.2,8.4 L 13.2,8.16 L 13.2,8.4 L 13.2,7.92 L 13.68,7.92 L 13.68,8.16 L 13.68,7.92 L 13.68,8.4 L 14.16,8.16 L 14.16,7.92 L 14.88,7.92 L 14.64,7.44 L 15.6,7.2 L 15.84,6.72 L 16.08,6.72 L 16.08,6.96 L 16.56,6.48 L 16.8,6.72 L 17.04,6.48 L 17.28,6.72 L 17.76,6.72 L 18,6.96 L 17.76,7.2 L 18,7.44 L 18.48,7.44 L 18.72,7.92 L 18.96,7.68 L 19.2,8.16 L 21.36,8.64 L 22.56,9.84 L 23.04,10.08 L 24,9.6 L 24.24,9.6 L 25.44,8.64 L 25.44,8.88 L 25.68,8.64"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(22.56,0.72)" id="g10416"><path id="path10418" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.48 L 0.96,0.24 L 0.72,0.24 L 1.2,0.48 L 1.2,1.44 L 1.68,1.92 L 1.68,4.8 L 1.44,4.8 L 1.2,3.6 L 0.72,3.84 L 0.48,3.6 L -0.24,3.6 L -0.48,3.12 L -0.72,2.88 L -0.48,2.4 L -0.72,2.4 L -0.72,2.16 L -0.24,1.92 L -0.72,1.68 L -0.72,1.44 L -0.24,1.2 L -0.72,0.96 L 0,0.72 L -0.48,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.44,-5.04)" id="g10420"><path id="path10422" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L -0.24,0.72 L 0.48,1.68 L 0,2.64 L 0.24,2.64 L -0.24,3.12 L 0,3.36 L -0.24,3.36 L -0.24,3.84 L -0.48,3.6 L -0.48,3.84 L -0.72,3.84 L -0.96,4.08 L -2.64,2.88 L -3.36,3.12 L -3.6,3.36 L -3.84,2.4 L -3.36,2.4 L -3.36,1.44 L -3.12,1.2 L -3.36,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-13.68,34.08)" id="g10424"><path id="path10426" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -1.2,0 L -2.16,-0.24 L -2.4,-0.72 L -2.4,-0.96 L -1.68,-1.2 L -2.88,-1.2"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0,-32.16)" id="g10428"><path id="path10430" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.24 L -0.96,0.48 L -0.96,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(13.2,20.16)" id="g10432"><path id="path10434" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L -0.48,0.48 L -0.24,0.72 L -0.24,0.48 L 0,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.48,-3.6)" id="g10436"><path id="path10438" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.72 L 0.24,0.72 L 0.72,1.44 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.04,2.4)" id="g10440"><path id="path10442" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.48 L 0.96,0.72 L 1.92,0.24 L 0.48,0.24 L 0,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6.24,-2.16)" id="g10444"><path id="path10446" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,0.96 L 0.48,0.48 L 0.72,0 L 0.48,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-3.84,4.08)" id="g10448"><path id="path10450" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.96,-0.48 L -0.48,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(5.28,0.96)" id="g10452"><path id="path10454" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.96,1.2 L 0.48,0 L 0,0 z"/></g></g></g></g></g></g></g></g></g></g></g><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(296.72687,144.24)" id="g10556"><path id="path10558" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.24 L 0,0.96 L -1.2,1.68 L -1.2,1.92 L -2.4,2.4 L -3.6,3.12 L -6.24,4.32 L -6.48,4.8 L -5.76,5.52 L -5.76,5.76 L -6.72,5.76 L -6.72,5.52 L -7.2,6 L -7.92,5.76 L -7.44,5.76 L -9.12,6.24 L -9.36,6.72 L -9.84,6.72 L -11.04,8.4 L -11.76,11.04 L -13.92,12.48 L -14.64,13.2 L -14.88,14.88 L -14.64,15.36 L -14.4,15.12 L -14.4,15.36 L -14.4,15.12 L -14.4,15.6 L -14.16,15.84 L -14.64,16.08 L -14.64,16.56 L -14.88,16.56 L -14.88,17.04 L -14.64,17.28 L -14.4,17.04 L -14.64,17.28 L -14.16,17.52 L -13.92,17.52 L -14.4,17.04 L -13.2,17.76 L -12.72,17.76 L -12.72,18.24 L -12.24,18 L -12.24,17.76 L -11.76,18 L -11.76,18.24 L -11.28,17.52 L -12,17.28 L -11.76,16.8 L -11.76,16.08 L -11.52,16.08 L -11.76,16.08 L -11.76,15.84 L -11.04,14.88 L -11.04,15.12 L -10.8,15.12 L -10.8,15.84 L -10.8,15.6 L -10.56,15.6 L -10.08,16.8 L -9.6,16.56 L -8.88,16.08 L -8.64,14.4 L -7.2,12.96 L -7.92,13.68 L -7.92,13.2 L -8.4,13.44 L -8.4,13.2 L -6.96,11.76 L -6.48,11.76 L -6.48,11.04 L -6,10.8 L -5.28,11.04 L -5.52,11.04 L -4.32,10.56 L -2.16,8.88 L -3.36,9.36 L -3.84,9.36 L -2.16,8.64 L -2.4,8.88 L -1.92,8.88 L -0.24,7.68 L -0.24,7.92 L 0.24,7.92 L 0.24,7.68 L 0,7.92 L 0.24,7.68 L -0.24,7.68 L 0.48,7.2 L 0.72,7.2 L 1.44,6.24 L 2.4,6 L 2.64,5.28 L 2.16,5.28 L 2.4,4.8 L 2.16,4.56 L 2.4,4.08 L 2.16,3.36 L 2.4,2.88 L 2.4,3.36 L 2.4,2.88 L 2.16,3.12 L 1.92,2.16 L 2.16,1.92 L 2.4,1.92 L 2.4,1.68 L 2.16,1.68 L 2.64,1.44 L 2.64,1.2 L 1.92,1.44 L 2.64,0.72 L 3.6,0.24"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-20.16,13.2)" id="g10560"><path id="path10562" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0.72,-1.92 L 1.2,-2.64 L 0.96,-3.6 L 1.68,-3.84 L 1.44,-4.08 L 2.4,-5.04 L 2.16,-5.52 L 2.88,-5.52 L 3.36,-5.76 L 3.84,-6.72 L 4.56,-7.2 L 4.8,-7.68 L 5.76,-8.88 L 6.48,-8.88 L 6.72,-9.6 L 7.2,-9.36 L 7.92,-9.6 L 8.4,-9.6 L 9.12,-10.56 L 9.12,-11.04 L 9.84,-10.8 L 10.08,-11.04 L 9.84,-11.76 L 11.04,-11.52 L 11.52,-12.24 L 11.28,-12.72 L 11.76,-12.96 L 12.48,-13.68"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(11.52,0.96)" id="g10564"><path id="path10566" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.72,0.48 L -0.24,-0.24 L 0.48,-0.72 L 0.48,-0.48 L -0.24,0 L 0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(4.08,-14.4)" id="g10568"><path id="path10570" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L 0.72,1.44 L 1.2,1.68 L 1.44,1.44 L 1.44,1.2 L 2.16,0.96 L 3.12,0.96 L 3.6,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.48,10.08)" id="g10572"><path id="path10574" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0 L -0.48,0 L -0.96,0.24 L -0.96,0 L -1.44,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.76,5.76)" id="g10576"><path id="path10578" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.72 L -0.48,0.48 L 0,0 L -0.48,-0.24 L 0,-1.2 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(6,-6.24)" id="g10580"><path id="path10582" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.96,0 L -0.72,0 L -0.96,-0.24 L 0.48,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.76,7.2)" id="g10584"><path id="path10586" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.72 L 0.24,-0.72 L 0.48,-1.2 L 0.48,-0.96 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(0.96,-4.08)" id="g10588"><path id="path10590" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.48 L 0,0.24 L -0.48,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(3.36,-2.16)" id="g10592"><path id="path10594" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0.96,0 L 0,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.16,-10.8)" id="g10596"><path id="path10598" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.48 L 0.48,0.24 L 0.48,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-12,9.36)" id="g10600"><path id="path10602" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.48 L -0.72,0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(20.64,-1.44)" id="g10604"><path id="path10606" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0.72,0.24 L 0.48,-0.24 L 0.96,-0.72 L 0.24,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.04,13.68)" id="g10608"><path id="path10610" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 1.44,0.72 L 1.68,1.2 L 1.92,0.96 L 0.48,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.2,3.12)" id="g10612"><path id="path10614" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.48 L 0.24,0.72 L 0,0 L 0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-13.44,-6.48)" id="g10616"><path id="path10618" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L 0.72,0.96 L 0.24,-0.24 L 0,0 z"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(310.64687,145.68)" id="g10708"><path id="path10710" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L -0.72,0.48 L -0.96,0.96 L 0.24,0.96 L 0.72,0.48 L 0.96,0.72 L -0.24,1.44 L -0.24,1.2 L -0.48,1.2 L -0.72,1.44 L -0.48,1.68 L -1.2,1.92 L -0.96,2.4 L -0.24,2.4 L 0.48,2.64 L 0.48,3.12 L 0.96,3.36 L 0.96,2.88 L 1.44,3.12 L 2.16,3.6 L 3.36,3.36 L 4.56,3.6 L 4.8,2.88 L 6.48,3.36 L 6.48,3.12 L 5.28,1.92 L 5.52,1.68 L 5.28,0.96 L 6.24,2.64 L 7.68,3.6 L 7.92,4.8 L 8.4,5.04 L 9.12,4.8 L 9.6,5.52 L 10.32,5.28 L 10.32,5.52 L 10.56,5.28 L 11.52,5.52 L 11.52,6.48 L 9.36,6.72 L 8.4,7.68 L 8.4,8.16 L 7.68,8.88 L 7.44,9.36 L 6.72,9.36 L 7.2,9.84 L 7.2,10.32 L 7.68,10.32 L 7.44,12 L 7.68,12.48 L 8.16,12.72 L 8.4,12.72 L 8.64,13.2 L 8.4,14.16 L 8.4,14.64 L 8.16,15.6 L 8.64,16.8 L 8.4,16.32 L 8.16,16.8 L 8.64,17.04 L 8.4,17.04 L 8.16,16.8 L 7.92,17.04 L 8.4,17.28 L 8.16,17.76 L 8.64,18 L 8.64,17.52 L 8.88,17.52 L 8.64,17.28 L 8.64,17.04 L 8.88,17.52 L 9.84,18 L 9.84,18.96 L 9.6,18.96 L 9.84,19.2 L 9.6,19.2 L 9.84,19.2 L 9.84,19.92 L 9.36,19.92 L 9.6,20.16 L 9.36,20.16 L 9.12,20.88 L 9.6,20.16 L 9.84,20.64 L 9.6,20.64 L 9.84,20.88 L 9.84,21.12"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(13.68,6.72)" id="g10712"><path id="path10714" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -1.92,-0.24 L -2.16,-0.96 L -1.44,-1.44 L -1.44,-1.68 L 0.24,-1.44 L -0.48,-1.68 L -0.72,-1.68 L -1.92,-2.16 L -2.4,-2.64 L -1.44,-2.88 L -1.68,-3.12 L -3.36,-3.36 L -4.08,-3.84 L -4.32,-3.6 L -4.08,-3.36 L -4.8,-3.36 L -5.04,-3.6 L -4.32,-3.6 L -4.56,-4.08 L -5.52,-4.08 L -6,-3.84 L -6.48,-4.08 L -7.2,-4.32 L -7.92,-5.04 L -7.92,-5.52 L -8.4,-5.76"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-17.04,-7.2)" id="g10716"><path id="path10718" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L -0.24,1.2 L -0.48,1.44 L 0.48,2.16 L 0.48,1.92 L 0.24,1.68 L 0.48,1.2 L 1.68,0.72 L 1.68,1.2 L 2.4,0.96 L 3.12,0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(4.32,2.88)" id="g10720"><path id="path10722" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.72,-0.24 L 0.48,0.24 L 0.24,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(2.4,-0.24)" id="g10724"><path id="path10726" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.48,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.44,-0.96)" id="g10728"><path id="path10730" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.48 L -0.72,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.76,-1.44)" id="g10732"><path id="path10734" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.72,0.48 L -0.48,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(4.08,0.72)" id="g10736"><path id="path10738" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-10.8,1.68)" id="g10740"><path id="path10742" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.48 L -0.24,-0.72 L -0.24,-0.24 L -0.48,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-0.96,0.48)" id="g10744"><path id="path10746" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.48 L 0,-0.72 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(22.32,1.68)" id="g10748"><path id="path10750" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24 L -0.96,-0.24 L -0.72,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-3.84,-1.68)" id="g10752"><path id="path10754" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L -0.48,-0.24 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-2.88,17.28)" id="g10756"><path id="path10758" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,-1.2 L 0.24,-1.2 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(4.56,-17.04)" id="g10760"><path id="path10762" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,-0.24 L -0.72,0 L 0,0 z"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(320.48687,166.8)" id="g10808"><path id="path10810" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.24,0.24 L 0.48,0 L 0.96,0.96 L 0,1.44 L 0,1.68 L 0.24,1.92 L 0.24,1.68 L 0.24,1.92 L 0.96,0.96 L 0.96,1.92 L 1.2,2.16 L 0.96,2.64 L 1.44,3.12 L 2.4,3.12 L 2.4,3.6 L 2.16,3.84 L 2.4,3.6 L 2.4,4.08 L 2.4,3.12 L 3.12,3.36 L 3.36,3.6 L 3.12,4.08 L 3.36,4.32 L 3.36,4.08 L 3.6,3.6 L 3.84,3.36 L 4.32,3.6 L 4.32,3.36 L 2.64,3.12 L 3.12,2.64 L 3.12,3.12 L 3.84,3.12 L 3.84,2.88 L 3.36,2.64 L 3.36,2.4 L 3.6,2.64 L 4.56,2.4 L 4.56,2.16 L 5.28,2.16 L 6.48,2.88 L 6.48,3.12 L 6.48,2.88 L 7.2,2.88 L 7.2,3.12 L 7.44,2.64 L 7.92,2.64 L 7.92,2.4 L 7.68,2.4 L 6.96,1.68 L 6.72,1.92 L 6.72,1.68 L 5.76,0.24 L 6.24,0 L 6.48,0.24 L 6.72,0.24 L 7.2,0.96 L 6.96,0.24 L 7.68,0 L 7.92,0.24 L 8.4,-0.24 L 8.64,-1.44 L 8.88,-1.44 L 8.4,-1.68 L 9.36,-1.92 L 9.84,-1.68 L 10.56,-0.96 L 10.8,-0.24 L 11.52,0.24 L 11.76,0.24 L 12,0.96 L 12.24,0.96 L 12.24,1.44 L 12.72,1.68 L 13.2,1.44 L 14.16,2.16 L 14.4,2.16 L 14.16,2.88 L 14.4,3.12 L 13.68,3.36 L 12.96,2.64 L 12.72,2.88 L 12.48,2.4 L 12,2.16 L 10.8,2.88 L 9.84,4.08 L 9.84,3.84 L 9.6,3.84 L 9.84,3.84 L 10.08,3.12 L 10.32,3.36 L 12,1.92 L 11.04,1.92 L 11.04,2.4 L 10.8,2.64 L 10.32,2.88 L 10.32,2.64 L 10.32,2.88 L 10.08,2.64 L 10.08,3.12 L 9.84,2.64 L 10.08,3.36 L 9.6,2.88 L 9.6,3.36 L 9.36,3.36 L 9.6,3.12 L 9.36,3.12 L 9.6,3.6 L 9.36,4.08 L 9.84,4.08 L 10.32,5.04 L 10.08,5.52 L 10.56,5.04 L 10.32,4.08 L 10.56,4.32 L 10.8,5.28 L 11.52,6.48 L 12.24,6.72 L 12,6 L 12.24,6.96 L 12.72,7.2 L 13.2,7.2 L 13.2,6.96 L 13.68,8.4 L 13.92,8.16 L 14.16,8.88 L 15.12,9.36 L 15.36,9.12 L 15.84,10.08 L 16.08,9.84 L 16.8,10.32 L 16.8,10.56 L 17.28,10.8 L 17.76,10.32 L 17.28,10.08 L 17.04,9.36 L 16.32,8.88 L 16.32,8.64 L 16.56,8.88 L 16.8,8.64 L 16.32,8.4 L 16.08,8.64 L 15.6,7.92 L 14.88,7.92 L 15.84,7.2 L 16.32,7.44 L 17.52,6.72 L 16.8,6.72 L 16.56,7.2 L 16.8,6.24 L 16.56,6.48 L 16.32,6.24 L 16.32,5.28 L 16.08,4.8 L 16.32,4.08 L 15.6,3.6 L 15.84,3.6 L 15.36,3.12 L 15.36,3.6 L 14.64,3.6 L 14.4,3.12 L 14.64,3.36 L 14.88,3.36 L 14.64,3.36 L 14.88,3.12 L 15.12,3.36 L 14.64,2.64 L 16.08,2.64 L 16.8,1.92 L 17.52,1.92 L 17.52,2.4 L 18.72,1.68 L 20.16,1.92 L 23.76,0.48 L 24,0.48"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(27.12,-6.72)" id="g10812"><path id="path10814" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.96,-0.24 L -1.44,0 L -1.68,-0.48 L -1.92,-0.48 L -3.6,-1.68 L -4.8,-1.92 L -5.04,-1.68 L -5.28,-1.68 L -5.52,-2.16 L -6.24,-1.92 L -6.96,-2.16 L -7.68,-1.92 L -8.16,-1.92 L -8.4,-2.4 L -9.36,-2.16 L -9.84,-1.44 L -10.08,-1.44 L -10.8,-2.16 L -11.52,-2.16 L -12.24,-1.68 L -12.24,-1.2 L -12,-1.2 L -12.48,-1.2 L -12.96,-1.92 L -16.32,-2.64 L -18.48,-4.56 L -20.16,-6.24 L -19.92,-6.48 L -20.4,-6.96 L -21.36,-7.44 L -22.56,-7.44 L -23.28,-7.68"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-26.4,18.96)" id="g10816"><path id="path10818" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 1.68,-0.24 L 1.44,0 L 1.44,0.48 L 1.68,0.24 L 1.92,0.24 L 2.88,-0.72 L 4.56,-0.72 L 4.8,-0.48 L 4.8,-0.72 L 6.48,-1.44 L 7.2,-1.2 L 7.44,-0.48 L 7.2,-1.2 L 7.68,-2.16 L 7.44,-2.16 L 7.92,-2.4 L 7.92,-2.88 L 8.64,-3.6 L 8.64,-4.08 L 7.92,-4.32 L 7.2,-4.32 L 6.72,-4.8 L 6.24,-5.04 L 6.24,-5.28 L 6.48,-5.04 L 6.72,-5.28 L 6.24,-5.28 L 6,-6.48 L 6.24,-6.72 L 6,-6.72 L 6,-6.96 L 4.08,-8.16 L 5.76,-6.96 L 5.76,-6.48 L 6.24,-5.28 L 5.76,-4.56 L 6.48,-4.56 L 6.48,-4.32 L 6.72,-4.32 L 7.2,-4.08 L 7.92,-3.84 L 8.16,-3.36 L 7.44,-2.16 L 7.68,-2.16 L 7.2,-1.2 L 6,-1.44 L 5.04,-0.96 L 4.8,-1.2 L 3.36,-0.72 L 2.88,-0.72 L 3.12,-0.96 L 2.64,-1.2 L 2.64,-0.72 L 2.16,-0.96 L 1.68,-0.72 L -0.48,0 L -0.96,0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(16.08,-6.24)" id="g10820"><path id="path10822" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0.24,-0.48 L 0,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.2,-2.88)" id="g10824"><path id="path10826" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.24,-0.24 L -0.24,-0.48 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-14.4,1.2)" id="g10828"><path id="path10830" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.72 L 0.72,-1.2 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(17.52,6.96)" id="g10832"><path id="path10834" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.96,-0.72 L 0,0.24"/></g></g></g></g></g></g></g><g transform="translate(344.48687,167.28)" id="g10928" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path10930" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0 L 0.72,-0.24 L 2.16,0 L 2.64,0 L 3.12,-0.48 L 3.84,-0.48 L 5.76,-2.64 L 5.76,-4.32 L 3.6,-6.96 L 3.12,-7.2"/><g transform="translate(25.2,4.32)" id="g10932" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path10934" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,-0.48 L -1.2,-0.48 L -1.44,-0.24 L -2.4,0 L -3.6,0.72 L -4.8,1.2 L -5.76,1.2 L -6.96,1.92 L -8.16,2.4 L -8.64,2.88 L -9.6,3.12 L -9.6,3.84 L -9.84,3.84 L -10.08,4.32 L -10.56,5.52 L -10.8,5.28 L -10.32,4.32 L -11.04,5.28 L -12,6 L -12,5.76 L -12.48,6 L -13.2,6 L -13.68,6.48 L -13.44,7.2 L -13.68,7.44 L -13.2,7.2 L -13.44,7.68 L -13.2,8.64 L -13.44,9.36 L -13.68,9.36 L -13.44,9.36 L -13.68,9.84 L -14.16,10.32 L -13.44,10.08 L -13.92,10.56 L -13.2,10.32 L -13.44,10.8 L -12.72,11.04 L -12.72,11.52 L -12.48,11.76 L -12.72,11.76 L -12.48,12.24 L -12,12 L -11.76,12.24 L -12.48,12.48 L -12.48,12.72 L -12.24,12.72 L -12.24,12.96 L -12,12.96 L -12.24,12.96 L -12,12.96 L -12,13.44 L -11.76,13.44 L -12,13.44 L -12,13.92 L -11.52,13.92 L -12.24,14.16 L -12,14.16 L -12,14.4 L -11.76,14.16 L -12.24,14.64 L -11.76,14.64 L -12,14.88 L -11.52,14.88 L -11.52,15.12 L -11.28,15.12 L -11.04,15.6"/><g transform="translate(-26.16,15.6)" id="g10936" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path10938" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.24 L 0.48,0.24 L 0.48,-0.72 L 0.24,-0.96 L 0,-1.44 L 0.48,-1.68 L 0.72,-1.44 L 0.48,-1.92 L 0.48,-2.16 L 0.72,-2.16 L 0.24,-2.4 L 0.48,-2.88 L 0.24,-3.12 L 0.24,-3.6 L 0.72,-3.84 L 0.48,-4.08 L 0.96,-4.8 L 0.48,-4.56 L 0,-5.04 L 0,-5.52 L -0.24,-5.52 L -0.48,-6.24 L -0.96,-5.76 L -0.72,-5.52 L -0.96,-5.52 L -0.72,-5.28 L -0.96,-5.28 L -0.72,-5.04 L -0.72,-4.8 L -1.2,-4.8 L -0.72,-4.8 L -0.72,-4.56 L -0.24,-5.04 L 0,-4.56 L -0.24,-3.84 L -0.48,-3.84 L 0,-3.36 L 0,-3.12 L -0.72,-2.64 L -0.24,-2.4 L 0,-2.64 L 0.24,-2.4 L 0.24,-1.68 L 0,-1.44 L 0,-0.96 L 0.48,-0.48 L 0.24,0 L -0.24,0 L -0.48,0.24 L -0.96,0.48 L 0,0 z"/><g transform="translate(0.72,-8.88)" id="g10940" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path10942" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,0.24 L 0.96,0.24 L 0.72,0.24 L 1.68,0.24 L 2.16,0 L 2.4,0 L 2.16,0 L 3.12,0 L 2.16,-0.24 L 1.68,0 L 1.2,-0.24 L 0.96,0 L 0.72,-0.24 L 0.96,0 L 0.72,0.24 L -0.72,-0.24 L -0.24,0 L 0,0 z"/><g transform="translate(0.96,12.72)" id="g10944" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path10946" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.72 L 0.24,-2.16 L 0.48,-2.64 L 0.48,-4.8 L 0.72,-5.04 L 0.24,-4.8 L 0.24,-2.88 L 0,-1.92 L -0.24,-1.68 L 0,-1.68 L 0,-0.72 L -0.24,-0.24"/><g transform="translate(8.16,-5.76)" id="g10948" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path10950" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.48,-0.24 L 1.44,-0.24 L 1.92,-0.72 L 2.16,-1.2 L 1.2,-0.48 L 0.72,-0.24 L 0.48,-0.48 L 0.48,-0.24 L 0,0 z"/><g transform="translate(5.76,-20.4)" id="g10952" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path10954" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 1.92,0 L 2.16,-0.24 L 1.44,-0.96 L 0.96,-0.24 L 0,-0.24 L 0,0 z"/><g transform="translate(2.88,3.36)" id="g10956" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path10958" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 1.44,-0.24 L 0.24,-0.48 L -0.48,-0.96 L -0.24,-0.48 L -0.48,-0.24 L 0,0 z"/><g transform="translate(-18.96,10.08)" id="g10960" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path10962" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.72,0.48 L -2.16,0.24 L -2.16,0.48 L -0.72,0.48 L 0,0 z"/><g transform="translate(8.64,12.96)" id="g10964" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path10966" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0.24 L -0.24,0.24 L 0,0 L 0.24,0.24 L 0,0 z"/><g transform="translate(-3.12,-1.44)" id="g10968" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path10970" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L 0,0.24 L 0.24,0.24 L 0,0 z"/><g transform="translate(6.24,2.88)" id="g10972" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path10974" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L -0.24,0.24"/><g transform="translate(-15.6,-14.4)" id="g10976" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path10978" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.24 L 0,-0.24"/><g transform="translate(30.48,-9.12)" id="g10980" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path10982" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.48 L 0.24,1.44 L 0.48,1.68"/><g transform="translate(-15.12,23.76)" id="g10984" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path10986" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L 0,0"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(258.32687,177.36)" id="g12112"><path id="path12114" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,-0.24 L -1.68,0.72 L -2.16,0.48 L -2.16,1.2 L -1.92,1.68 L -2.88,1.68 L -3.36,2.16 L -3.36,0.96 L -2.88,0.48 L -3.36,-0.96 L -3.12,-1.44 L -4.08,-1.2 L -4.08,-0.96 L -4.32,-0.96 L -4.32,-1.44 L -4.56,-0.96 L -4.8,-1.2 L -4.8,-0.96 L -5.04,-0.96 L -5.04,-0.72 L -5.76,-0.96 L -6.24,0.24 L -6.48,0 L -6.24,0.24 L -6.48,0.24 L -6.48,0.48 L -6.96,0.24 L -7.2,0.48 L -7.44,0 L -7.92,0.24 L -7.92,0 L -8.16,0.48 L -9.36,0.72 L -9.36,0.48 L -9.84,0.48 L -10.08,-0.24 L -9.12,-0.24 L -9.36,-0.24 L -8.88,-0.72 L -9.6,-0.48 L -9.6,-0.24 L -9.84,-0.48 L -9.84,-0.72 L -9.6,-0.72 L -9.36,-0.96 L -9.36,-1.2 L -10.32,-0.96 L -9.84,-1.44 L -9.84,-1.92 L -9.36,-2.16 L -9.36,-1.68 L -9.12,-2.16 L -8.88,-1.92 L -8.88,-2.4 L -8.64,-2.16 L -8.16,-2.64 L -8.16,-2.88 L -7.68,-2.64 L -7.92,-2.88 L -7.68,-3.12 L -7.92,-2.88 L -7.68,-3.12 L -7.44,-2.88 L -7.68,-3.12 L -7.68,-3.84 L -7.44,-3.36 L -7.2,-3.6 L -7.2,-3.36 L -7.2,-3.6 L -6.72,-3.6 L -6.72,-3.84 L -7.2,-3.6 L -6.96,-3.84 L -6.48,-3.84 L -6.72,-4.08 L -6.24,-4.08 L -6.48,-4.08 L -6.24,-4.32 L -6.72,-4.32 L -6.48,-4.8 L -6.72,-4.56 L -6.24,-5.04 L -6,-5.04 L -6.24,-5.28 L -5.76,-5.76 L -6.24,-6.24 L -6,-7.44 L -4.8,-8.64 L -4.56,-8.4 L -5.04,-8.88 L -4.8,-8.88 L -4.8,-9.6 L -5.28,-9.84 L -5.04,-10.08 L -5.28,-9.84 L -5.52,-10.32 L -4.8,-11.28 L -4.8,-12.48 L -4.56,-12.72 L -4.8,-12.48 L -4.8,-11.52 L -5.28,-10.8 L -6.48,-13.44 L -6,-12.96 L -6,-13.44 L -6.24,-13.44 L -6.48,-13.68 L -7.68,-16.32 L -8.16,-16.8 L -9.6,-17.04 L -10.56,-16.32 L -10.8,-16.32 L -10.8,-16.08 L -11.28,-15.84 L -11.52,-16.32 L -12,-15.6 L -12.24,-15.6 L -12.48,-15.84 L -12.48,-15.6 L -12.24,-15.6 L -12.48,-15.12 L -13.2,-15.36 L -13.2,-15.12 L -14.64,-14.88 L -16.32,-13.92 L -16.56,-13.92 L -16.56,-13.68 L -17.04,-13.44 L -17.28,-12.96 L -18,-13.2 L -18.24,-12.96 L -19.68,-12.24 L -20.16,-12.48 L -19.92,-12.24 L -20.4,-12 L -20.64,-11.52 L -21.12,-11.52 L -21.12,-11.04 L -21.6,-11.28 L -21.6,-11.04 L -22.8,-11.04 L -23.04,-11.52 L -22.56,-11.52 L -22.8,-11.52 L -22.56,-11.76 L -22.8,-12 L -22.8,-11.52 L -23.28,-11.76 L -23.28,-11.52 L -24,-11.52 L -24.24,-11.28 L -24.48,-11.28 L -24.48,-11.52 L -24.96,-11.52 L -25.2,-11.76 L -25.44,-11.76 L -25.68,-12.24 L -25.44,-12 L -25.2,-12.24 L -25.44,-12.96 L -24.96,-12.72 L -25.44,-12.96 L -25.68,-13.44 L -24.96,-13.2 L -24.72,-13.44 L -25.2,-13.92 L -25.44,-13.68 L -25.44,-14.16 L -24.96,-14.16 L -25.68,-14.4 L -24.96,-14.4 L -25.92,-14.88 L -26.64,-17.04 L -26.64,-17.76 L -26.4,-18 L -27.36,-19.44 L -28.32,-20.64 L -28.32,-20.88 L -28.32,-20.64 L -28.8,-21.12"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.52,-9.12)" id="g12116"><path id="path12118" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.72 L 0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(1.2,10.08)" id="g12120"><path id="path12122" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0.48,-0.48 L 0.48,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-5.04,4.08)" id="g12124"><path id="path12126" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.24,0"/></g></g></g></g><g transform="translate(274.64687,135.36)" id="g12172" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12174" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0 L 0,-0.24 L -0.48,-0.24 L -0.48,0 L -0.24,0 L -0.24,0.24 L -0.48,0.48 L -1.92,0.24 L -3.36,-0.72 L -4.32,-0.72 L -4.8,-0.48 L -5.76,-0.72 L -6,-0.72 L -6,-0.24 L -6.48,-0.24 L -6.96,0.24 L -7.44,0.24 L -7.44,-0.24 L -8.16,-0.24 L -9.6,0.48 L -9.84,0.48 L -10.08,0 L -11.52,0 L -12.72,-0.48 L -13.2,-0.24 L -13.2,0.24 L -13.92,0.72 L -16.32,1.2 L -17.52,0.96 L -18,1.2 L -18.48,0.96 L -18.96,1.44 L -20.16,0.96 L -20.64,1.2 L -24,1.44 L -26.16,0.96 L -27.36,0"/><g transform="translate(-3.12,9.36)" id="g12176" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12178" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.48 L 0.24,-0.24 L 0.48,-0.48 L 0.24,-0.72 L 0.24,-0.96 L 0,-0.72 L 0,-1.2 L -0.24,-1.68 L -0.24,-2.16 L -0.48,-2.4 L -0.24,-2.88 L -0.48,-2.88 L -0.48,-3.36 L 0,-2.88 L 0.24,-3.6 L 0.48,-3.36 L 0.72,-3.6 L 1.2,-3.36 L 1.44,-2.64 L 1.2,-2.4 L 2.64,-3.12 L 2.88,-2.4 L 3.36,-0.24"/><g transform="translate(-13.92,0)" id="g12180" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12182" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.72,0.24 L 1.44,1.2 L 1.2,1.44 L 0.96,1.2 L 0.72,1.44 L 0.96,1.92 L 0.72,1.92 L 0.96,2.16 L -0.24,1.92 L -1.44,1.44 L -0.96,0.72 L -0.72,0.96 L -0.48,0.48 L 0,0 z"/><g transform="translate(2.64,1.92)" id="g12184" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12186" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24 L 0.72,-0.72 L 0.96,-0.72 L 0.96,-0.48 L 0.96,-0.72 L 0.96,-0.24"/><g transform="translate(-6.48,-2.16)" id="g12188" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12190" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.48 L -0.48,0.48 L -0.96,0 L -0.48,-0.24 L 0,0 z"/><g transform="translate(-0.72,-0.72)" id="g12192" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12194" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0.48,-0.24 L 0.24,0.24 L 0,0 z"/><g transform="translate(-3.36,0.48)" id="g12196" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12198" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,0.48 L 0.24,0.96"/><g transform="translate(0.96,4.32)" id="g12200" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12202" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.24"/></g></g></g></g></g></g></g></g><g transform="translate(303.44687,113.28)" id="g12268" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12270" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -1.2,-1.44 L -2.16,-2.16 L -3.12,-2.16 L -6.72,0 L -10.08,0.72 L -12,0.96 L -13.2,1.44 L -13.92,2.4 L -14.4,4.08 L -14.64,4.8 L -16.8,5.28 L -17.76,6 L -19.44,6.24 L -20.16,6.72 L -22.08,6.48 L -23.28,6.72 L -25.92,8.16 L -25.68,7.92 L -26.4,8.16 L -26.64,8.4 L -26.16,8.4 L -26.64,8.64 L -26.64,9.6 L -27.12,9.6 L -27.12,9.36 L -27.6,9.12 L -27.84,9.36 L -27.6,9.84 L -28.32,9.6 L -29.04,10.32 L -29.52,11.04 L -29.52,11.76 L -29.04,12.24 L -27.36,13.2 L -26.16,14.88 L -26.4,15.36 L -26.4,16.32 L -26.88,16.56 L -26.88,17.04 L -27.36,17.04 L -27.84,18.24 L -27.6,18.96 L -26.64,19.2 L -25.92,20.4 L -25.92,21.36 L -27.12,20.64 L -27.6,20.16 L -28.08,20.4 L -27.84,20.64 L -28.32,21.36 L -28.08,21.6 L -28.32,21.6 L -28.08,21.84 L -28.8,22.08"/><g transform="translate(-15.36,19.68)" id="g12272" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12274" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0.24,0.48 L 0.96,0.96 L 0.48,1.68 L 0.72,1.68 L 0.24,1.92 L 0.24,2.64 L 1.68,5.28 L 1.44,5.28 L 0.72,5.04 L 0.72,5.28 L 0.24,4.8 L -0.24,5.04 L -1.92,4.32 L -2.64,4.56 L -3.36,4.32 L -3.84,4.8 L -4.32,4.8 L -4.32,5.04 L -5.04,5.04 L -5.04,4.56 L -5.52,4.56 L -6,5.04 L -6,4.8 L -6.72,4.56 L -6.72,3.84 L -6.24,2.88 L -5.52,3.12 L -4.8,2.64 L -3.36,1.44 L -1.92,1.2 L -1.44,0.24 L 0,0 z"/><g transform="translate(1.68,10.8)" id="g12276" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12278" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 1.44,-3.6 L 1.2,-4.08 L 0.48,-4.32 L 0.72,-4.8 L 0.48,-5.52 L 0,-5.76 L 0,-6.48 L 0.24,-6.72 L 1.2,-6.72 L 1.44,-6 L 2.4,-5.04 L 2.4,-3.84 L 3.12,-3.36 L 3.84,-3.36 L 4.08,-2.88 L 3.84,-2.64 L 3.84,-1.68 L 2.88,-0.96 L 2.4,-0.96 L 2.16,-0.72 L 2.4,0 L 2.4,0.24"/><g transform="translate(11.04,-1.2)" id="g12280" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12282" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.24 L -0.24,0.72 L -0.48,0.72 L -0.24,1.2 L -0.96,1.2 L -0.96,0.72 L 0,0"/><g transform="translate(-24.24,-18.96)" id="g12284" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12286" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.72,0.24 L -0.72,-0.48 L -0.48,-0.24 L -0.24,-0.72 L 0.24,-0.24 L 0,0 z"/><g transform="translate(9.6,6.96)" id="g12288" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12290" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.48 L 0.72,-0.72 L 0.48,-0.24 L 0,0 z"/><g transform="translate(-9.12,-4.08)" id="g12292" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12294" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,0 L 0.72,0.24 L 0.48,0.48 L 0,0 z"/><g transform="translate(25.92,-8.88)" id="g12296" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12298" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L -0.24,-0.96 L 0.24,-1.68"/><g transform="translate(-7.2,26.4)" id="g12300" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12302" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0.72,-0.48 L 0.96,0.24"/><g transform="translate(5.04,-0.24)" id="g12304" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12306" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.48"/><g transform="translate(-11.76,0)" id="g12308" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12310" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0"/><g transform="translate(11.28,0.72)" id="g12312" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12314" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.48"/></g></g></g></g></g></g></g></g></g></g></g></g><g transform="translate(300.80687,143.28)" id="g12504" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12506" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0 L 0.24,-0.48 L 0.72,-0.48 L 0.72,-0.96 L 1.2,-1.2 L 1.92,-2.16 L 2.16,-2.16 L 2.16,-1.68 L 2.4,-1.92 L 2.88,-1.68 L 3.12,-2.16 L 2.16,-2.16 L 2.16,-2.88 L 2.4,-2.64 L 2.88,-3.6 L 3.12,-3.36 L 3.36,-3.84 L 3.12,-4.08 L 3.6,-4.08 L 3.84,-3.6 L 4.32,-4.08 L 5.28,-3.6 L 6.48,-3.6 L 6.48,-3.36 L 6.96,-3.84 L 7.2,-3.36 L 7.68,-3.84 L 8.88,-3.84 L 8.64,-4.32 L 7.92,-4.56 L 8.16,-4.56 L 7.92,-4.8 L 5.52,-3.84 L 5.04,-3.84 L 4.56,-4.56 L 3.84,-4.32 L 3.84,-5.04 L 3.36,-5.28 L 3.36,-5.76 L 3.84,-5.76 L 4.08,-6.24 L 4.32,-6.24 L 5.04,-6.96 L 5.04,-7.2 L 4.8,-7.92 L 5.28,-8.4 L 5.28,-8.88 L 5.76,-8.88 L 5.76,-9.12 L 6,-8.88 L 6,-8.16 L 6.48,-8.16 L 6.48,-8.4 L 7.2,-9.12 L 7.2,-9.6 L 7.68,-10.08 L 7.44,-9.36 L 7.92,-8.64 L 8.16,-8.64 L 8.88,-9.36 L 9.6,-9.6 L 8.88,-9.12 L 9.12,-8.64 L 7.68,-6 L 8.88,-6.24 L 8.64,-6.72 L 9.12,-6.96 L 9.36,-6.48 L 9.84,-6.24 L 9.6,-6 L 9.6,-5.52 L 9.12,-5.76 L 9.36,-6 L 8.88,-5.76 L 8.88,-5.04 L 8.4,-5.04 L 9.6,-4.32 L 11.04,-5.28 L 11.28,-4.8 L 10.8,-3.84 L 11.04,-3.6 L 10.56,-3.12 L 9.84,-3.12 L 9.36,-2.64 L 8.88,-2.88 L 8.88,-2.4 L 8.4,-2.16 L 8.16,-2.4 L 7.92,-2.16 L 6.72,-1.92 L 7.44,-1.68 L 7.92,-1.2 L 7.68,-1.2 L 7.68,-0.96 L 7.2,-0.72 L 7.44,0 L 7.92,-0.24 L 8.16,-0.48 L 7.92,-0.96 L 8.64,-0.48 L 6.48,1.92"/><g transform="translate(15.12,3.36)" id="g12508" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12510" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0.24,-1.68 L 2.4,-0.96 L 1.68,-2.16 L 2.4,-2.64 L 2.4,-3.12 L 3.12,-3.12 L 2.64,-3.36 L 2.64,-3.84 L 2.4,-3.84 L 2.4,-4.08 L 3.12,-4.8 L 3.6,-4.56 L 2.64,-5.04 L 2.4,-4.8 L 2.4,-5.28 L 2.16,-5.04 L 2.16,-4.56 L 1.44,-4.08 L 1.44,-4.32 L 1.68,-5.04 L 1.92,-5.04 L 1.68,-5.52 L 1.44,-5.28 L 1.44,-5.52 L 1.68,-5.52 L 2.4,-6 L 2.4,-5.52 L 2.64,-5.52 L 3.12,-6 L 3.36,-5.76 L 4.08,-6 L 4.32,-6.72 L 3.84,-7.2 L 4.32,-7.2 L 4.56,-8.16 L 5.04,-7.68 L 5.28,-8.16 L 5.76,-8.16 L 5.28,-8.88 L 5.04,-8.64 L 4.8,-8.88 L 4.8,-9.36 L 5.28,-8.88 L 5.76,-9.12 L 7.68,-8.4 L 7.44,-8.88 L 6.96,-8.88 L 6.96,-9.36 L 6,-9.6 L 5.28,-10.08 L 5.52,-10.32 L 6.24,-10.08 L 6.24,-9.6 L 7.2,-9.36 L 7.44,-9.6 L 6.96,-9.84 L 7.44,-9.84 L 6.96,-10.08 L 7.2,-10.08 L 7.92,-9.36 L 7.68,-9.12 L 7.92,-9.12 L 8.16,-8.88 L 8.16,-9.12 L 8.64,-8.88 L 8.64,-9.36 L 9.12,-9.36 L 9.36,-9.6 L 9.36,-8.88 L 9.84,-9.12 L 9.84,-9.6 L 10.08,-9.6 L 10.32,-10.08 L 12,-10.56 L 12.72,-9.84"/><g transform="translate(-0.72,-17.04)" id="g12512" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12514" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.48 L 3.36,0.72 L 3.84,0.48 L 4.32,0.96 L 4.32,1.68 L 3.84,1.2 L 3.6,1.2 L 2.88,0.72 L 2.64,0.96 L 2.64,1.44 L 1.92,1.2 L 0.72,1.2 L 0.48,1.44 L -1.44,0.96 L -1.44,1.2 L -2.16,1.2 L -1.68,1.2 L -1.68,1.68 L -2.16,1.2 L -2.88,1.2 L -3.12,1.68 L -2.88,1.2 L -3.12,0.96 L -3.36,1.44 L -3.36,0.48 L -3.12,0.24 L -0.96,0.48 L 0,0.24 L 0,0 z"/><g transform="translate(17.76,-9.36)" id="g12516" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12518" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -1.2,-1.68 L -2.16,-2.4 L -4.32,-1.92 L -5.76,-2.16 L -6.24,-1.68 L -6.72,-2.16 L -7.44,-2.16 L -7.92,-1.68 L -12.24,-1.68 L -13.68,-2.4 L -14.16,-2.4 L -15.12,-0.96 L -17.76,-1.2 L -18.96,-0.96 L -20.16,-0.96 L -20.16,-1.2 L -20.88,-0.72 L -20.88,-0.24 L -21.12,0.48 L -24,1.2 L -24.72,0.96 L -25.2,0.96 L -26.16,0.24 L -27.12,0.24 L -28.32,-0.48 L -29.76,-2.16 L -30,-2.64"/><g transform="translate(-20.16,18.96)" id="g12520" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12522" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.24,0.72 L -0.48,0.72 L -1.2,2.16 L -2.64,2.16 L -3.36,3.12 L -4.56,2.4 L -4.56,2.16 L -4.08,2.4 L -3.36,2.16 L -2.4,1.44 L -2.16,1.2 L -1.2,1.2 L -0.72,0.24 L -0.24,0 L 0,0 z"/><g transform="translate(4.08,4.32)" id="g12524" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12526" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,0 L 0.48,0.48 L 0.72,0 L 0.96,0.24 L 0,1.2 L -1.2,0.48 L -1.2,0.24 L -0.48,0 L -0.48,0.48 L 0,0.48 L -0.48,0 L 0,0 z"/><g transform="translate(-3.36,2.64)" id="g12528" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12530" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24 L -0.24,-0.72 L 0.24,-0.72 L 0.24,-0.24 L 0.24,-0.48 L 0.48,-0.72 L 0.72,0 L 0.24,-0.24 L 0.24,0"/><g transform="translate(-11.52,-7.68)" id="g12532" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12534" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.24,0.48 L 0.48,-0.24 L 1.2,-0.24 L 1.44,0 L 0.72,0.48 L 0.48,0.96 L 0.48,0.72 L 0.24,0.72 L 0,0 z"/><g transform="translate(21.36,-3.84)" id="g12536" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12538" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.24 L 0.48,1.68 L -0.48,0.96 L -0.72,0.24 L -0.48,0.24 L -0.48,-0.72 L 0,0 z"/><g transform="translate(-6.72,6)" id="g12540" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12542" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.48 L 0.24,1.2 L -0.24,1.44 L -0.48,1.2 L 0,0.72 L -0.24,0.24 L 0,0 z"/><g transform="translate(3.6,-4.08)" id="g12544" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12546" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.96,0.48 L 0.72,0.72 L 0.24,0.24 L -0.24,0 L 0,-0.48 L 0,0 z"/><g transform="translate(-6.96,-1.68)" id="g12548" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12550" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0 L 0.48,0.48 L 0,0.48 L 0.24,0 L 0,0.24 L 0,0 z"/><g transform="translate(-10.8,5.04)" id="g12552" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12554" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L 0.24,0 L 0.48,0.24 L 0.24,0.96 L 0,0.72 L 0,0 z"/><g transform="translate(12,-1.2)" id="g12556" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12558" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0.48 L -0.48,0.48 L -0.72,0.72 L -0.96,0.48 L -0.24,-0.24 L 0,0 z"/><g transform="translate(5.04,0.96)" id="g12560" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12562" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.24 L -0.48,0.24 L -0.96,-0.24 L -0.24,-0.48 L 0,0 z"/><g transform="translate(1.68,-6.96)" id="g12564" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12566" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.72 L 0.72,-0.24 L 0.24,0 L 0.24,0.96 L 0,0 z"/><g transform="translate(-2.88,2.88)" id="g12568" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12570" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.72,0 L 0.48,0.24 L 0.48,0 L 0,0 z"/><g transform="translate(-1.92,0.96)" id="g12572" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12574" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.24 L -0.24,0.72 L -0.72,0 L -0.48,-0.24 L 0,0 z"/><g transform="translate(-4.08,5.52)" id="g12576" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12578" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.48,-0.24 L 0.72,-0.24 L 0,0.48 L 0,0 z"/><g transform="translate(-9.36,-4.56)" id="g12580" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12582" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.72 L 0.72,-0.24 L 0.96,-0.48 L 0,0.24 L 0,0 z"/><g transform="translate(12.48,-1.2)" id="g12584" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12586" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.48 L -0.48,0.24 L -0.24,0 L 0,0 z"/><g transform="translate(-5.52,-3.84)" id="g12588" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12590" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.48 L -0.24,0.96 L -0.24,0.24 L 0,0 z"/><g transform="translate(0.48,6.48)" id="g12592" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12594" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.24 L 0,-0.48 L 0.24,-0.24 L 0,0 z"/><g transform="translate(-9.6,3.6)" id="g12596" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12598" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.24,0 L 0,0"/><g transform="translate(16.32,-4.08)" id="g12600" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12602" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.96,0.72 L 0.24,0.48 L 0,0 z"/><g transform="translate(-7.92,6.96)" id="g12604" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12606" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.96,-0.24 L 0.48,0"/><g transform="translate(-6,-29.52)" id="g12608" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12610" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-1.44 L 0.24,-2.4 L 0.24,-2.64"/><g transform="translate(7.2,29.76)" id="g12612" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12614" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.24 L 0.24,0"/><g transform="translate(-9.84,-1.68)" id="g12616" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12618" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0 L 0.24,-0.24"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g></g><g transform="translate(328.64687,136.8)" id="g12700" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12702" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.24 L 0.96,0.24 L 1.2,0 L 1.2,2.4 L 2.4,2.64 L 5.04,2.4 L 6.24,1.44 L 7.44,1.44 L 9.36,2.4 L 9.6,2.64 L 9.84,2.4 L 10.08,3.12 L 10.32,3.12 L 10.56,3.36 L 10.56,3.6 L 11.52,5.52 L 12,5.52 L 13.68,5.28 L 14.16,5.76 L 14.4,6.24 L 13.92,6.24 L 14.4,6.48 L 14.64,7.2 L 15.12,6.96 L 15.6,6.24 L 14.88,5.04 L 15.84,4.32 L 15.6,3.6 L 15.84,3.36 L 15.6,2.64 L 16.32,2.4 L 16.8,1.68 L 16.8,0.72 L 17.52,-0.48 L 17.04,-1.68 L 17.28,-2.4 L 17.04,-3.12 L 17.04,-6.72 L 16.8,-6.96 L 17.28,-10.08 L 16.56,-12.72 L 15.84,-13.68 L 14.64,-14.16 L 14.16,-14.4 L 14.4,-14.4 L 13.68,-14.64 L 13.68,-14.16 L 13.2,-14.64 L 13.44,-14.4 L 13.44,-14.88 L 13.2,-14.64 L 12.48,-15.12 L 12.96,-14.64 L 12,-15.12 L 11.28,-14.88 L 11.28,-15.36 L 11.28,-14.64 L 11.28,-15.12 L 10.8,-15.36 L 10.8,-15.6 L 10.32,-15.36 L 10.32,-15.12 L 10.08,-15.36 L 10.08,-15.12 L 9.6,-15.12 L 9.6,-14.16 L 8.88,-14.88 L 7.2,-14.64 L 6.96,-14.88 L 7.44,-15.12 L 7.2,-14.88 L 7.2,-15.36 L 6.48,-15.36 L 6.48,-15.6 L 6,-15.84 L 6.96,-14.88 L 5.76,-15.6 L 5.28,-15.6 L 5.28,-15.84 L 5.28,-15.6 L 5.04,-16.32 L 4.8,-16.56 L 4.56,-16.32 L 4.32,-16.56"/><g transform="translate(9.6,-3.12)" id="g12704" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12706" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,0.48 L 1.44,1.2 L 1.44,1.92 L 2.4,2.16 L 1.68,2.88 L 2.88,5.04 L 0.96,3.12 L -1.2,2.64 L -0.96,1.68 L -1.68,1.68 L -2.16,0.96 L -2.4,1.2 L -1.92,0 L -0.96,0 L -0.48,0.24 L 0,0 z"/><g transform="translate(-2.88,12.96)" id="g12708" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12710" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -1.2,0.48 L -1.2,0.96 L -0.96,1.2 L -0.96,1.92 L -0.48,1.44 L -0.48,0.96 L 0,0.72 L -0.24,1.2 L 0.48,0.72 L 0.24,0.48 L 0.24,0 L 0,0 z"/><g transform="translate(-6.24,-2.88)" id="g12712" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12714" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0.24,-0.24 L 0.48,-0.72 L 0.24,-1.2 L 0,-0.96 L 0,-0.48 L -0.24,-0.48 L -0.24,0 L 0,0 z"/><g transform="translate(19.44,-16.8)" id="g12716" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12718" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-1.44 L 0.24,-1.92 L 0.72,-2.16 L 0.48,-2.4 L 0,-2.16 L -0.24,-0.72 L -0.24,-0.24 L 0,0 z"/><g transform="translate(-12.72,21.6)" id="g12720" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12722" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.96,0.24 L -1.2,0.24 L -1.2,0.48 L 0,0 z"/><g transform="translate(-5.28,-3.12)" id="g12724" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12726" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.48 L -0.48,-0.72 L -0.72,-0.24 L 0,0 z"/><g transform="translate(0.24,-2.16)" id="g12728" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12730" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.96,-0.72 L 0.48,-1.2 L -0.24,-0.24 L 0,0 z"/><g transform="translate(10.08,-24)" id="g12732" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12734" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,-0.72 L -0.24,-0.24 L 0,0 z"/><g transform="translate(-12.72,22.8)" id="g12736" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12738" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.72,-0.72 L -0.48,-0.24 L 0,0.24 L 0,0 z"/><g transform="translate(23.52,9.36)" id="g12740" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12742" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L -0.48,0.24 L 0,0.24"/></g></g></g></g></g></g></g></g></g></g></g><g transform="translate(386.96687,139.68)" id="g12832" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12834" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,0 L 0.48,0.24 L 0.24,0.96 L -0.48,1.2 L 0,1.92 L -0.48,1.92 L 0,2.16 L 0.24,1.92 L 0.24,2.4 L 0.72,2.4 L 0.72,1.92 L 0,1.44 L 0.96,1.44 L 0.96,1.68 L 1.2,1.44 L 1.92,1.68 L 2.16,1.44 L 2.88,2.88"/><g transform="translate(-1.92,-1.2)" id="g12836" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12838" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,0.48 L 0.96,0.48"/><g transform="translate(-17.28,6.24)" id="g12840" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12842" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,0.24 L 1.2,0 L 1.68,-1.44 L 2.88,-2.4 L 3.36,-2.16 L 3.6,-2.4 L 3.84,-2.16 L 4.32,-2.4 L 4.56,-2.16 L 4.8,-2.4 L 5.28,-2.16 L 5.28,-2.4 L 6,-2.64 L 6.24,-2.4 L 7.2,-2.16 L 7.68,-1.2 L 8.4,-1.44 L 9.36,-0.96 L 9.84,-1.2 L 10.08,-1.92 L 10.56,-1.92 L 10.8,-2.16 L 10.08,-1.92 L 9.84,-1.2 L 9.36,-0.96 L 8.16,-1.44 L 7.68,-1.44 L 7.2,-2.16 L 7.2,-2.4 L 6.96,-2.16 L 6,-2.64 L 5.28,-2.64 L 5.28,-2.4 L 4.8,-2.4 L 4.56,-2.16 L 4.32,-2.4 L 2.88,-2.4 L 1.68,-1.44 L 1.2,0 L 0,0 z"/><g transform="translate(-3.84,13.92)" id="g12844" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12846" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0.72,-1.2 L 1.2,-1.2 L 1.68,-0.96 L 1.92,-1.2 L 1.68,-1.44 L 2.64,-1.68 L 2.4,-2.16 L 2.16,-2.4 L 2.4,-2.88 L 2.16,-3.12 L 1.44,-2.88 L 0.48,-1.44 L 0,-1.44 L -0.24,-1.2 L -0.24,-0.48 L -0.72,-0.72 L -0.72,-0.24 L 0,0 z"/><g transform="translate(-7.44,-3.12)" id="g12848" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12850" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,0.72 L 0,0.96 L 1.2,1.68 L 1.44,2.16 L 1.2,1.92 L 0.96,2.16 L 1.68,2.88 L 2.4,2.88 L 1.68,2.16 L 1.68,1.2 L 2.16,1.44 L 2.4,1.2 L 2.16,0.48 L 1.68,0.24 L 1.2,0.72 L 0.96,0.24 L 0.48,0.24 L 0,0 z"/><g transform="translate(19.2,7.44)" id="g12852" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12854" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -2.16,-0.72 L -3.36,-0.24 L -5.28,2.16 L -5.28,2.64 L -5.52,3.36 L -5.04,3.36 L -5.04,2.88 L -4.8,2.88 L -5.28,4.08 L -5.04,4.32 L -4.8,4.08 L -5.04,4.56 L -5.52,4.56 L -5.52,5.28 L -6,6.24"/><g transform="translate(10.56,-23.76)" id="g12856" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12858" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.96,0.72 L -1.2,0.48 L -1.68,0.72 L -2.16,0.48 L -2.88,0.72 L -2.4,0.48 L -1.68,0.72 L -1.2,0.48 L -0.96,0.72 L -0.48,0.48 L 0,0"/><g transform="translate(-18.24,1.68)" id="g12860" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12862" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 1.2,-0.72 L 1.68,-0.72 L 1.68,-1.44 L 0.72,-1.44 L 0,-0.72 L 0.24,-0.72 L 0,0.24 L 0,0 z"/><g transform="translate(-3.12,3.36)" id="g12864" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12866" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.48 L 1.68,-0.96 L 1.92,-1.68 L 1.44,-1.68 L 0.72,-1.44 L 0,-0.48 L 0,0 z"/><g transform="translate(2.16,-2.4)" id="g12868" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12870" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.24 L 0.72,-0.24 L 0.96,-0.48 L 0.72,-0.72 L 0,-0.48 L 0,0 z"/><g transform="translate(3.12,8.88)" id="g12872" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12874" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24 L 0.48,-0.48 L -0.24,-0.72 L 0,0 L -0.24,0 L 0,0 z"/><g transform="translate(11.28,-3.12)" id="g12876" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12878" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.24,-0.72 L -0.48,-0.72 L 0,-0.24 L -0.24,0 L 0,0 z"/><g transform="translate(-15.12,4.56)" id="g12880" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12882" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.48,-0.48 L 0.48,-0.72 L 0.48,-0.48 L -0.24,-0.24 L 0,0 z"/><g transform="translate(-14.64,-0.48)" id="g12884" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"><path id="path12886" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0,-0.24"/></g></g></g></g></g></g></g></g></g></g></g></g></g></g><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(229.52687,156.24)" id="g13684"><path id="path13686" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -1.2,-1.44 L -1.92,-1.44 L -1.92,-1.92 L -2.88,-3.12 L -2.88,-3.36 L -2.16,-3.6 L -1.2,-2.88 L -1.44,-3.36 L -1.44,-3.6 L -1.92,-3.84 L -1.68,-3.84 L -2.16,-3.84 L -2.16,-4.08 L -2.16,-3.6 L -2.4,-3.6 L -2.4,-4.08 L -2.64,-4.56 L -1.92,-4.56 L -1.68,-4.8 L -1.44,-4.56 L -1.44,-4.8 L -1.2,-5.04 L -1.68,-4.8 L -1.68,-5.04 L -1.92,-4.56 L -1.92,-5.28 L -2.64,-6.24 L -2.64,-6.96 L -4.08,-8.88 L -2.64,-9.12 L -1.44,-10.08 L -1.68,-9.84 L -0.96,-10.08 L 0,-10.08 L 0,-9.84 L 0,-10.08 L 0.96,-10.32 L 1.2,-10.56 L 1.2,-10.32 L 1.2,-10.56 L 1.44,-10.32 L 1.2,-10.56 L 1.92,-11.52 L 2.16,-12.48 L 1.92,-12.48 L 1.92,-12.96 L 2.4,-13.2 L 2.16,-13.44 L 1.92,-13.2 L 2.16,-14.64 L 2.64,-14.64 L 3.12,-15.6 L 3.6,-15.6 L 3.84,-15.12 L 3.84,-15.6 L 4.8,-14.64 L 6.24,-14.88 L 6.96,-14.4 L 8.64,-14.88 L 9.6,-15.36 L 10.8,-15.6 L 11.28,-16.08 L 12,-15.6 L 12.48,-15.84 L 12.96,-16.32 L 13.68,-15.84 L 14.16,-15.12 L 15.36,-14.4 L 16.08,-14.4 L 16.32,-14.64 L 17.28,-14.64 L 17.04,-14.16 L 17.52,-13.92 L 18.24,-12.96 L 18.48,-12.72 L 18.48,-12.48 L 20.16,-12"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(17.76,-20.88)" id="g13688"><path id="path13690" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0 L -0.96,0.48 L -1.92,0 L -2.16,0.48 L -2.64,0.48 L -3.6,0 L -4.08,-0.48 L -6,-0.96 L -7.2,-0.24 L -7.92,-0.24 L -8.4,0.24 L -8.16,-0.24 L -8.4,0 L -8.4,0.48 L -8.4,0.24 L -8.4,1.2 L -8.88,0.72 L -9.6,0.48 L -10.56,1.2 L -10.8,0.96 L -11.04,1.44 L -12.24,1.44 L -13.2,1.92 L -14.16,3.6 L -14.16,4.32 L -13.92,4.56 L -14.4,4.8 L -15.36,4.8 L -15.6,5.04 L -16.8,3.36 L -20.16,0.24 L -22.56,-0.24 L -25.68,-0.24 L -26.88,-0.96 L -28.8,-1.68 L -29.28,-2.88 L -31.92,-4.56 L -32.88,-6.48 L -33.36,-6.96 L -32.88,-8.16 L -33.6,-9.12 L -33.84,-9.36"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(2.64,9.84)" id="g13692"><path id="path13694" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L -0.48,0.96 L -0.48,1.92 L 0.24,2.88 L 0.72,3.36"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-11.76,5.52)" id="g13696"><path id="path13698" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.72 L 0,0 L -0.72,-0.48 L -0.24,0 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(-1.92,2.16)" id="g13700"><path id="path13702" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.72,-0.48 L 1.44,-0.24 L 1.68,-0.72 L 0.24,-0.24 L 0,0 z"/><g style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" transform="translate(8.88,-3.12)" id="g13704"><path id="path13706" style="fill:none;stroke:#b2b2b2;stroke-width:0.0824764;stroke-linecap:butt;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 0,0 L 0.24,-0.96 L -0.24,-0.24 L 0,0 z"/></g></g></g></g></g></g></g></g></svg> |
/tags/v5.12-baouque/services/presentations/images/cartes/france_02.svg |
---|
New file |
0,0 → 1,376 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
<svg xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/" |
xmlns:dc="http://purl.org/dc/elements/1.1/" |
xmlns:cc="http://creativecommons.org/ns#" |
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
xmlns:svg="http://www.w3.org/2000/svg" |
xmlns="http://www.w3.org/2000/svg" |
xmlns:xlink="http://www.w3.org/1999/xlink" |
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" |
width="550" |
viewBox="0 0 587.5 550" |
preserveAspectRatio="xMinYMin" |
id="svg1" |
version="1.0"> |
<title>Carte de France</title> |
<metadata id="metadata7"> |
<rdf:RDF> |
<cc:Work rdf:about=""> |
<dc:format>image/svg+xml</dc:format> |
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> |
<cc:license rdf:resource="http://web.resource.org/cc/PublicDomain"/> |
</cc:Work> |
<cc:License rdf:about="http://web.resource.org/cc/PublicDomain"> |
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/> |
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/> |
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/> |
</cc:License> |
<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> |
<pattern id="fond" x="0" y="0" width="100%" height="100%" patternUnits="objectBoundingBox" > |
<rect x="0" y="0" width="50" height="50" style="fill:#FFFFFF"/> |
</pattern> |
</defs> |
<style id="cssCarte" type="text/css"> |
@CHARSET "UTF-8"; |
/* Pour cacher, une zone de la carte passer son opacity à zéro. |
* |
* Pour modifier le style d'un département utiliser les classe : .departement |
* Par exemple : .departement61, .departement05, .departement972 |
* |
* Pour modifier le style d'une région utiliser les classe : |
* .alsace, .aquitaine, .auvergne, .bretagne, .bourgogne, .centre, .champagne, .corse, .franche-comte, .idf, |
* .languedoc, .limousin, .lorraine, .midi (Midi-Pyrénées), .basse-normandie, .haute-normandie, |
* .npdc (Nord-Pas-de-Calais), .paca (Provence-Alpes-Cote d'Azur), .pdll (Pays de la Loire), .poitou, |
* .rhone-alpes |
*/ |
.bordure { |
fill-opacity: 1; |
fill:white; |
stroke:black; |
stroke-opacity: 1; |
stroke-width:1; |
stroke-miterlimit: 3.97446823; |
stroke-dasharray: none; |
} |
.cadre { |
fill: none; |
fill-rule: evenodd; |
stroke: rgb(51, 51, 51); |
stroke-width: 0.918924px; |
stroke-linecap: butt; |
stroke-linejoin: miter; |
stroke-opacity: 1; |
} |
.txt { |
font-size:9px; |
font-style:normal; |
font-variant:normal; |
font-weight:normal; |
font-stretch:normal; |
fill:#000000; |
fill-opacity:1; |
stroke:none; |
stroke-width:1px; |
stroke-linecap:butt; |
stroke-linejoin:miter; |
stroke-opacity:1; |
font-family:Sans; |
} |
.land { |
fill: #E0E3E5; |
fill-opacity: 1; |
stroke: white; |
stroke-opacity: 1; |
stroke-width:0.5; |
stroke-miterlimit: 3.97446823; |
stroke-dasharray: none; |
} |
.titre{ |
width:50px; |
} |
#couche-num-dep text{ |
font-size:9px; |
font-style:italic; |
font-variant:normal; |
font-weight:bold; |
font-stretch:normal; |
text-align:start; |
line-height:100%; |
text-anchor:start; |
fill:#000000; |
fill-opacity:1; |
stroke:none; |
stroke-width:1px; |
stroke-linecap:butt; |
stroke-linejoin:miter; |
stroke-opacity:1; |
display:inline; |
font-family:Serif; |
} |
.mayotte { |
opacity:1; |
} |
.dom { |
opacity:1; |
} |
.idfbig { |
opacity:1; |
} |
.idfsmall { |
opacity:0; |
} |
</style> |
<rect x="0" y="0" width="587.5" height="550" class="bordure" /> |
<g |
style="font-size:12;fill:none;stroke:#000000;stroke-width:600.4;stroke-linecap:round;stroke-linejoin:round;" |
viewBox="-130372.3 -5686867.2 1200851.3 1118189.4" |
id="fra"> |
<path |
d="M 505115.8 -5440680 L 505491.8 -5441181 L 506226.1 -5441310 L 506660.4 -5441953 L 506726.2 -5443411 L 507554.9 -5442682 L 508149.1 -5442763 L 508402.6 -5443031 L 508157.1 -5443302 L 507689.1 -5443859 L 509145.1 -5443744 L 509124.8 -5444127 L 510256.9 -5445118 L 509897.8 -5445601 L 509132.8 -5445648 L 508159.8 -5446242 L 508235.8 -5448822 L 507352.1 -5449548 L 506201.8 -5446843 L 506754.5 -5445085 L 505985.6 -5445711 L 505820.2 -5446056 L 506115.6 -5448310 L 505857.9 -5449027 L 505188.5 -5449365 L 504493.8 -5449040 L 504264.3 -5449315 L 504344.2 -5450297 L 503686.7 -5450578 L 503051.2 -5450848 L 502425.4 -5450484 L 502133.8 -5451196 L 501093.6 -5451654 L 500336.3 -5451511 L 499998.9 -5451322 L 499786.3 -5450999 L 499919.3 -5449477 L 500334.2 -5448405 L 501737 -5448753 L 502053.7 -5448051 L 502438.7 -5448020 L 502488.1 -5447695 L 502642.7 -5446420 L 501855.8 -5446510 L 501463.9 -5446570 L 501046.9 -5447618 L 499277.3 -5448949 L 498779.2 -5448391 L 498523.6 -5448114 L 498169.9 -5448274 L 497827.2 -5448454 L 497656.8 -5448790 L 497664 -5450946 L 497279.7 -5451819 L 496884.6 -5452799 L 497294.8 -5453388 L 499616.7 -5453765 L 500010.8 -5453804 L 500814.4 -5453065 L 500560.1 -5452388 L 501564.4 -5451985 L 502736.3 -5452887 L 502320.7 -5454659 L 502320.6 -5454709 L 502291.4 -5455099 L 501846.3 -5456575 L 502143.7 -5457270 L 501908.7 -5457791 L 501905.4 -5458167 L 502464.4 -5458668 L 502421.8 -5459389 L 502099.2 -5459579 L 501304.8 -5458892 L 500936.9 -5458935 L 501235.3 -5459635 L 500568.9 -5459972 L 499480.2 -5459652 L 499098 -5460586 L 497729.2 -5461247 L 497977.7 -5461465 L 498349.8 -5462002 L 497526.9 -5463063 L 497312.4 -5463334 L 499789.1 -5465122 L 500045.7 -5465420 L 500559.2 -5465164 L 500838.1 -5465093 L 502445.4 -5464179 L 502554.7 -5463819 L 503409.2 -5465048 L 504906.6 -5466216 L 505203.7 -5466282 L 505506.4 -5467126 L 505814.6 -5469223 L 506778.6 -5469691 L 506524 -5471882 L 506873 -5471853 L 506900.4 -5474068 L 506851.1 -5474438 L 506834.5 -5474637 L 506811.9 -5474838 L 506789 -5475886 L 507214.1 -5476443 L 507955.9 -5476356 L 508759.4 -5475608 L 511584.1 -5476460 L 511918.4 -5476627 L 511683.8 -5476819 L 511995.8 -5477301 L 511756.4 -5477599 L 511199.4 -5478107 L 510877.6 -5478227 L 509352.1 -5478978 L 509003.3 -5479059 L 507709.5 -5479663 L 507649.9 -5480360 L 508886.3 -5481061 L 508740.2 -5482492 L 508393.5 -5482663 L 507721.4 -5483601 L 507377.7 -5483765 L 506933.6 -5485183 L 508827.4 -5485606 L 509221.6 -5486685 L 509079 -5487843 L 509481.3 -5488018 L 509500.1 -5489890 L 509106.4 -5490540 L 509156 -5491300 L 510025.6 -5491628 L 509958.2 -5491933 L 509743.8 -5492242 L 508955.2 -5493897 L 508836.5 -5494537 L 508591.1 -5494811 L 507352.8 -5496066 L 507153.3 -5496318 L 506744.4 -5496816 L 506961.6 -5496919 L 507875.8 -5497522 L 508132.3 -5497794 L 507967 -5498116 L 508126.4 -5498780 L 507640.5 -5499748 L 506955 -5499938 L 507167.3 -5500597 L 507760.7 -5500826 L 507812.1 -5501499 L 508139.3 -5501615 L 508920.2 -5501112 L 509169.1 -5502042 L 509018.9 -5502398 L 508389.9 -5503327 L 509086.4 -5505039 L 508562.6 -5506076 L 508688.6 -5506066 L 508203.3 -5508260 L 507267.7 -5509342 L 507173.5 -5509695 L 506987.8 -5510770 L 506837 -5511791 L 507255 -5512756 L 506870.1 -5512779 L 505334.4 -5512807 L 504724.5 -5513259 L 504872.2 -5513581 L 504437.2 -5514472 L 505883.1 -5515489 L 506211.3 -5515625 L 506090.1 -5515974 L 506227.3 -5517041 L 505807.7 -5517643 L 505953.9 -5518237 L 506147.4 -5518505 L 505974.8 -5518681 L 505719.3 -5518901 L 504399.3 -5518776 L 504312.9 -5519506 L 504159.3 -5520160 L 505040.2 -5520674 L 505333.6 -5520866 L 505618.7 -5520953 L 505915.1 -5521143 L 506107.2 -5521684 L 506011 -5522032 L 505754.9 -5523815 L 505140 -5524703 L 505358.6 -5524990 L 505982.1 -5525269 L 506151.4 -5524965 L 506023.2 -5523943 L 506356.9 -5523846 L 508609.5 -5525775 L 508608.9 -5526058 L 508517 -5526580 L 508859.1 -5527598 L 508681 -5528910 L 508501.7 -5529215 L 508936.6 -5529666 L 509107.2 -5530411 L 509958.6 -5531650 L 511572.7 -5532842 L 511899.9 -5532952 L 512018.5 -5533251 L 511663.8 -5533349 L 511701.6 -5533710 L 511809.7 -5534711 L 512295.7 -5535228 L 513895.5 -5536291 L 514614.2 -5537175 L 514313.2 -5537122 L 513882.2 -5537551 L 513534.1 -5537439 L 512819 -5537298 L 511910.4 -5537855 L 511238.6 -5537867 L 511489.1 -5538109 L 512366.7 -5539896 L 512460.2 -5540119 L 514672 -5540777 L 516520.4 -5542149 L 516852.9 -5541951 L 517577.3 -5542231 L 517632.2 -5542201 L 517767.5 -5541876 L 518421.8 -5541627 L 518632.2 -5542292 L 518972.9 -5542207 L 519232.7 -5542150 L 519487.5 -5542078 L 520006.5 -5541190 L 519690.3 -5541057 L 520556.9 -5540491 L 521624.2 -5540763 L 521940.3 -5540862 L 522256.4 -5540963 L 523574.2 -5540579 L 524250.4 -5540753 L 524715.3 -5541741 L 525292 -5542127 L 525186.7 -5542474 L 525393.3 -5542794 L 526906 -5542876 L 527836.5 -5542286 L 528217.4 -5542297 L 528646.1 -5542682 L 529861 -5541817 L 530544.9 -5541878 L 530800.3 -5541602 L 530752.7 -5541303 L 534849.2 -5541050 L 535223 -5540980 L 536302.3 -5542274 L 536431.9 -5542588 L 536509.4 -5542827 L 538065.8 -5543213 L 538909.5 -5544673 L 539590.7 -5544878 L 539960.6 -5544895 L 540775.2 -5544796 L 541336.2 -5544387 L 541598.7 -5544149 L 542674.8 -5543802 L 543650.3 -5542649 L 543724.5 -5542275 L 543875.9 -5541967 L 544113.4 -5541717 L 544639.1 -5542140 L 544896.5 -5542358 L 545256.7 -5542501 L 546191.6 -5543061 L 547239.5 -5542590 L 547543.8 -5543264 L 547216.1 -5543405 L 547255.9 -5544335 L 547792.2 -5545041 L 548090.2 -5545087 L 550640 -5546281 L 550982.1 -5546379 L 551325.6 -5546691 L 551761.4 -5546123 L 553303.4 -5545245 L 553528.8 -5544966 L 555338 -5544701 L 555645.5 -5544487 L 555841.8 -5544144 L 556962.1 -5544412 L 558217.3 -5543573 L 558564.9 -5543400 L 559733.3 -5544273 L 560078.5 -5544389 L 560878.9 -5543590 L 562362.1 -5543281 L 563338.9 -5542708 L 563414.2 -5542337 L 563057 -5542208 L 563662 -5541729 L 563722.9 -5540580 L 563719.2 -5540193 L 566034.8 -5541766 L 566253.3 -5542063 L 567693.9 -5542458 L 568073.8 -5542450 L 568186.2 -5542155 L 570494.5 -5544117 L 571016.9 -5543798 L 571147.3 -5543448 L 571440.3 -5542368 L 570387.4 -5539591 L 570446.4 -5538482 L 570786.6 -5538617 L 572233.6 -5538685 L 572651.8 -5537673 L 573380.8 -5537689 L 573803.2 -5537347 L 574072 -5537249 L 575048.7 -5537681 L 577220.7 -5537173 L 577578.5 -5537061 L 577914.7 -5536032 L 579016 -5536233 L 579384.8 -5536155 L 581634 -5536847 L 581956.7 -5536991 L 582182 -5537298 L 582348.8 -5536875 L 582795.2 -5536611 L 583929.3 -5536960 L 584439.9 -5536843 L 584606.6 -5536420 L 585257.1 -5536382 L 585779.2 -5536050 L 585693.2 -5534965 L 585999.8 -5534621 L 586634.8 -5534872 L 587568.7 -5534922 L 588355 -5535036 L 588774 -5535225 L 588613.5 -5534765 L 588541.1 -5534556 L 588367.2 -5533411 L 587771.5 -5532443 L 587570.6 -5530128 L 587893.5 -5529487 L 588722.3 -5529354 L 588967.3 -5528765 L 589645.1 -5528607 L 590318.5 -5528809 L 590266.8 -5528428 L 589976.8 -5524276 L 589943.2 -5523927 L 589908.6 -5523577 L 589699.1 -5523273 L 588823.9 -5522634 L 588585.5 -5521237 L 588113.6 -5520761 L 587522.7 -5517889 L 587866.5 -5517770 L 588426.3 -5516467 L 588277.7 -5516134 L 587211 -5515209 L 586954.5 -5514936 L 587371.6 -5514343 L 587539.1 -5514007 L 588274.5 -5514215 L 589550.3 -5513405 L 589914.5 -5512330 L 588749.7 -5511344 L 588451.3 -5509918 L 588563.7 -5509568 L 588410 -5509143 L 588053.7 -5508990 L 586956.9 -5508613 L 586752.4 -5508365 L 585972.3 -5507812 L 586054.7 -5507469 L 585488.5 -5506203 L 585556.1 -5505943 L 585170.9 -5505846 L 584087.9 -5505367 L 583748.7 -5505268 L 583098.1 -5504991 L 582793.8 -5504833 L 582801.6 -5503566 L 581340.4 -5503583 L 581330.7 -5503195 L 581263.1 -5500516 L 580724.2 -5499499 L 580623.6 -5498579 L 580243.4 -5498504 L 579204.5 -5498104 L 577423.5 -5498832 L 575912 -5498698 L 575689.5 -5499015 L 575315.4 -5499021 L 575061.9 -5497612 L 574179.7 -5497005 L 574563.7 -5496366 L 575740.3 -5494887 L 576688.7 -5494424 L 576970.3 -5494181 L 576685 -5493491 L 576867.5 -5492007 L 577893 -5491591 L 576677.6 -5489770 L 576011.9 -5489439 L 576126.7 -5488716 L 577261.6 -5488516 L 577853.9 -5488060 L 577836.6 -5486159 L 577771 -5485795 L 576761.2 -5486078 L 576477.7 -5484693 L 575373.4 -5484628 L 575345.7 -5484271 L 575382.9 -5483199 L 575398.4 -5482880 L 575452.8 -5481925 L 575448.2 -5481560 L 575450.5 -5481186 L 575512.2 -5480446 L 577288.9 -5477662 L 576943 -5477799 L 576610.7 -5477684 L 575912.4 -5477612 L 575224.8 -5476815 L 575360.3 -5476523 L 575654.3 -5475322 L 576100.4 -5473597 L 576020.8 -5473221 L 575468 -5472275 L 575258.4 -5470820 L 575305.7 -5470438 L 575172.7 -5468127 L 574151.4 -5468145 L 573519.8 -5467927 L 573454.4 -5468277 L 573180.5 -5468935 L 571599.3 -5470193 L 571226.3 -5470224 L 569760.5 -5469995 L 569514 -5470286 L 567805.1 -5472311 L 567689.6 -5472611 L 567075.7 -5473336 L 566824.2 -5473071 L 566037 -5471940 L 564980.2 -5471652 L 564639.9 -5471511 L 563450.1 -5470657 L 562383.4 -5470371 L 562184.9 -5470115 L 562364.8 -5469494 L 562122.7 -5468904 L 561944.3 -5468686 L 561502.8 -5468479 L 561606.2 -5468125 L 562134.4 -5467617 L 562198.2 -5466912 L 561801 -5466300 L 560448.7 -5466875 L 560127.9 -5467053 L 559786.8 -5467615 L 559404.7 -5467614 L 558282.8 -5467804 L 557565.3 -5467581 L 557288.8 -5467336 L 556595.3 -5467123 L 556427.9 -5467450 L 556138.5 -5467266 L 555001.9 -5466524 L 554176.8 -5466577 L 553785.6 -5466510 L 553800 -5466189 L 553860.9 -5465550 L 553440.1 -5465169 L 553092.9 -5465097 L 551707.4 -5464987 L 551322.2 -5464903 L 550309 -5464368 L 549892.5 -5464166 L 548573.8 -5463924 L 548380.2 -5463585 L 547011.8 -5462932 L 546819.2 -5462614 L 546653.2 -5461516 L 546348.8 -5461304 L 546499.2 -5460984 L 547636.9 -5460174 L 547862.1 -5459697 L 547335.3 -5458787 L 547989.9 -5457923 L 548320.7 -5457774 L 547981.4 -5457653 L 547607.2 -5457036 L 548716 -5454588 L 549065 -5454520 L 549211.4 -5454187 L 548419.4 -5452627 L 547361.8 -5452446 L 547608.4 -5452189 L 547611.2 -5451488 L 548176.5 -5451055 L 549208.4 -5450873 L 549598.8 -5449931 L 550725.7 -5450817 L 550955.7 -5450244 L 551253.6 -5450158 L 551203.9 -5449782 L 550741.7 -5449182 L 551403.6 -5447898 L 552817.9 -5447324 L 553894.9 -5447737 L 554662.9 -5447640 L 554509.8 -5445870 L 554499.2 -5445507 L 554190.8 -5445332 L 553835.7 -5445319 L 553492.3 -5445120 L 552198.3 -5444209 L 551847 -5444111 L 551200.2 -5443773 L 550809.2 -5444381 L 550632.6 -5444650 L 549771 -5445014 L 549437.6 -5444846 L 547654.3 -5444362 L 545440.2 -5444628 L 545196.8 -5444450 L 545104.3 -5444201 L 545105 -5443479 L 544544 -5443026 L 544433.1 -5441970 L 543675.6 -5441206 L 543790 -5440867 L 544657.9 -5440682 L 545150.4 -5439733 L 545332.9 -5439418 L 546053.5 -5437379 L 546554.7 -5436853 L 546522 -5436469 L 546053.8 -5435860 L 544247.2 -5435784 L 544001.6 -5435480 L 543755.2 -5434747 L 543037.5 -5434470 L 542816.3 -5434383 L 542801.6 -5434002 L 542646.2 -5432105 L 542755.6 -5431769 L 544805.8 -5431532 L 544883.4 -5431852 L 547381.1 -5432429 L 547999.6 -5432027 L 548376.6 -5431981 L 549426.8 -5429624 L 548786 -5428725 L 548518.5 -5428462 L 548172.1 -5428311 L 546665.6 -5428264 L 546522.9 -5427912 L 545545 -5425864 L 545328.8 -5424034 L 544997.5 -5423934 L 543990.2 -5423958 L 543154.9 -5423372 L 543348.5 -5423082 L 543879.6 -5421872 L 543304 -5421641 L 542936.7 -5421535 L 541920.5 -5421004 L 541929.8 -5420621 L 541785.5 -5418736 L 541367.4 -5418164 L 539954.2 -5418323 L 538574.2 -5417993 L 538015.8 -5417261 L 537141.7 -5415647 L 536719.8 -5413463 L 536065.1 -5413193 L 535741.8 -5413044 L 535131.3 -5412893 L 535369.2 -5412203 L 535537.7 -5411878 L 535457.2 -5411582 L 535422.7 -5411277 L 535053.5 -5411240 L 534323.1 -5411119 L 533723.6 -5409772 L 533524 -5410059 L 532503.1 -5410293 L 532532.7 -5410613 L 533001.8 -5411749 L 532725.2 -5412017 L 531599.1 -5412154 L 530856.3 -5412989 L 529790.2 -5412553 L 529083.5 -5412851 L 529239 -5413108 L 529590.5 -5413905 L 529207.4 -5413919 L 528279.1 -5413351 L 527935.3 -5413519 L 527871.9 -5415012 L 526939.6 -5416142 L 527361.3 -5417597 L 526754 -5419771 L 526339.1 -5418742 L 524031.2 -5417441 L 523061.1 -5418646 L 522772.5 -5418908 L 522751.2 -5419303 L 522706.3 -5420486 L 522155.8 -5421967 L 521879.3 -5421731 L 520620.7 -5421004 L 519573.9 -5420700 L 519257.2 -5420877 L 518865.3 -5421554 L 518967.7 -5421769 L 519090.1 -5421973 L 518808.5 -5422231 L 518547.5 -5423347 L 518503.1 -5423716 L 517846.3 -5424984 L 516765.2 -5425056 L 516663.8 -5425382 L 516614.6 -5426352 L 516297.3 -5426230 L 516183.9 -5426577 L 515160.4 -5426944 L 515133 -5427269 L 514403.7 -5428275 L 512397.7 -5429016 L 511770.1 -5429842 L 511800.4 -5430543 L 512759.6 -5431118 L 513093.3 -5432550 L 513787.9 -5432823 L 513791.6 -5433185 L 513073.7 -5433868 L 513136 -5434538 L 513015.7 -5434907 L 512124.9 -5436173 L 511452.5 -5436562 L 511930.6 -5438701 L 511565.5 -5438660 L 510506.9 -5438933 L 509985.8 -5439446 L 508928.8 -5439537 L 508745.2 -5439742 L 508282.7 -5439497 L 505692.6 -5440163 L 505114.5 -5440679 L 505115.8 -5440680 z M 499175.1 -5451027 L 499285.2 -5451056 L 499331.5 -5451186 L 499487.6 -5451214 L 499546.4 -5451099 L 499577.7 -5451239 L 499665 -5451398 L 499734 -5451392 L 499866.3 -5451551 L 499727.6 -5451708 L 499755.1 -5451948 L 499765.1 -5451962 L 500090.1 -5451934 L 500076.3 -5452029 L 499919.9 -5452360 L 499725.1 -5452462 L 499434.8 -5452344 L 499339.9 -5452420 L 499047.6 -5452298 L 499120 -5452007 L 498773.7 -5451860 L 498612.4 -5451717 L 498606.3 -5451652 L 498801.3 -5451646 L 498890.1 -5451520 L 498827.7 -5451295 L 498946.5 -5451204 L 499002.6 -5451234 L 499056.6 -5451218 L 498970.3 -5451054 L 499050.4 -5451103 L 499175.3 -5451027 L 499175.1 -5451027 z " |
id="path604" /> |
</g> |
<path id="INSEE-D2A" title="Corse-du-Sud (2A)" class="land departement corse departement2a" d="M 530.5446,479.52925 L 530.5446,481.61726 L 532.45105,482.94875 L 535.65872,484.82493 L 535.87055,486.33798 L 533.9641,486.91294 L 530.938,487.4879 L 530.938,488.78912 L 532.05766,489.93904 L 532.26948,493.72167 L 536.41524,495.05316 L 537.9283,495.41629 L 539.25978,497.5043 L 538.32169,498.83579 L 536.80864,499.38048 L 535.65872,501.46849 L 534.53906,502.79998 L 535.08376,506.18922 L 537.9283,506.00765 L 538.68482,506.58261 L 541.34779,505.25112 L 542.10432,506.00765 L 540.77283,508.85219 L 542.10432,510.18367 L 539.83474,511.87829 L 538.32169,515.26752 L 542.46745,516.23588 L 548.33809,516.78058 L 545.88695,519.62511 C 545.88695,519.62511 544.73525,519.18082 544.22259,519.41328 C 544.20743,519.42075 544.176,519.43477 544.16207,519.44355 C 544.15771,519.44677 544.13601,519.47043 544.13181,519.47381 C 544.12775,519.47735 544.10544,519.50037 544.10154,519.50407 C 544.09797,519.5081 544.07468,519.53014 544.07128,519.53433 C 544.06482,519.54305 544.04678,519.55517 544.04102,519.56459 C 544.03833,519.56947 544.04353,519.58979 544.04102,519.59485 C 544.03638,519.60534 544.01463,519.64415 544.01076,519.65537 C 544.00903,519.66117 544.01229,519.67964 544.01076,519.68563 C 544.00812,519.698 543.98229,519.73301 543.9805,519.74616 C 543.97915,519.7597 543.98096,519.79232 543.9805,519.80668 C 543.98051,520.75233 542.67928,523.04461 542.67928,523.04461 L 544.55546,525.10236 L 547.97496,527.19037 L 554.39029,528.88499 L 556.26648,529.64151 L 557.99136,530.39804 L 556.84144,532.48605 L 559.86754,532.30448 L 560.4425,533.63597 L 563.4686,533.63597 L 564.22513,530.03491 L 562.31868,529.64151 L 564.98165,526.82724 L 564.04356,525.85888 L 564.22513,524.16427 L 567.64463,522.28808 L 567.82619,520.20007 L 565.55661,520.01851 L 564.04356,521.31973 L 564.04356,519.44355 L 567.06967,519.26198 L 568.00776,516.9924 L 568.76428,510.36524 L 568.18932,507.5207 L 568.1288,504.79721 L 564.83035,506.976 L 560.89642,507.12731 L 560.56354,504.40381 L 561.07798,503.70781 L 559.86754,502.8605 L 559.53467,498.23056 L 559.02023,497.38326 L 556.96248,497.38326 L 555.93361,496.53595 L 555.93361,493.26776 L 554.57186,492.42045 L 553.54299,491.90601 L 551.48524,489.33382 L 551.63654,487.79051 L 549.09461,487.79051 L 548.21704,485.21832 L 544.61598,485.21832 L 542.7398,482.64613 L 543.25424,481.79883 L 542.07406,481.10282 L 539.3203,481.61726 L 538.29143,480.95152 L 534.53906,480.95152 L 534.17593,479.92264 L 532.05766,479.52925 L 530.5446,479.52925 z "/> |
<path id="INSEE-D2B" title="Haute-Corse (2B)" class="land departement corse departement2b" d="M 562.13712,441.70296 L 559.29258,443.60941 L 559.68597,445.48559 L 561.19903,447.39204 L 559.50441,448.69326 L 560.26093,450.20631 L 559.11102,451.5378 L 559.11102,453.23242 L 561.01746,454.95729 L 561.01746,457.59 L 559.86754,460.04115 L 558.56632,460.61611 L 557.05327,458.5281 L 554.39029,458.73992 L 553.81534,458.34653 L 551.54576,458.34653 L 549.48801,460.25297 L 548.70122,463.46064 L 543.79893,464.39873 L 540.01631,467.6064 L 539.25978,469.69441 L 537.3836,469.51285 L 536.41524,468.36293 L 535.87055,471.60086 L 534.53906,472.14556 L 534.14567,475.17166 L 534.72063,476.50315 L 532.63262,478.0162 L 532.05766,479.52925 L 534.17593,479.92264 L 534.53906,480.95152 L 538.29143,480.95152 L 539.3203,481.61726 L 542.07406,481.10282 L 543.25424,481.79883 L 542.7398,482.64613 L 544.61598,485.21832 L 548.21704,485.21832 L 549.09461,487.79051 L 551.63654,487.79051 L 551.48524,489.33382 L 553.54299,491.90601 L 554.57186,492.42045 L 555.93361,493.26776 L 555.93361,496.53595 L 556.96248,497.38326 L 559.02023,497.38326 L 559.53467,498.23056 L 559.86754,502.8605 L 561.07798,503.70781 L 560.56354,504.40381 L 560.89642,507.12731 L 564.83035,506.976 L 568.1288,504.79721 L 568.00776,499.19892 L 572.54691,492.78358 L 572.54691,482.19222 L 570.67073,478.59116 L 570.09577,467.24327 L 568.76428,465.15526 L 566.31314,463.27908 L 565.91975,456.25852 L 567.06967,453.05085 L 565.55661,447.93674 L 564.61852,443.79097 L 563.83174,442.64106 L 562.13712,441.70296 z "/> |
<path id="INSEE-D20" title="Corse (20 [2A+2B])" class="land departement corse departement20" d="M 530.5446,479.52925 L 530.5446,481.61726 L 532.45105,482.94875 L 535.65872,484.82493 L 535.87055,486.33798 L 533.9641,486.91294 L 530.938,487.4879 L 530.938,488.78912 L 532.05766,489.93904 L 532.26948,493.72167 L 536.41524,495.05316 L 537.9283,495.41629 L 539.25978,497.5043 L 538.32169,498.83579 L 536.80864,499.38048 L 535.65872,501.46849 L 534.53906,502.79998 L 535.08376,506.18922 L 537.9283,506.00765 L 538.68482,506.58261 L 541.34779,505.25112 L 542.10432,506.00765 L 540.77283,508.85219 L 542.10432,510.18367 L 539.83474,511.87829 L 538.32169,515.26752 L 542.46745,516.23588 L 548.33809,516.78058 L 545.88695,519.62511 C 545.88695,519.62511 544.73525,519.18082 544.22259,519.41328 C 544.20743,519.42075 544.176,519.43477 544.16207,519.44355 C 544.15771,519.44677 544.13601,519.47043 544.13181,519.47381 C 544.12775,519.47735 544.10544,519.50037 544.10154,519.50407 C 544.09797,519.5081 544.07468,519.53014 544.07128,519.53433 C 544.06482,519.54305 544.04678,519.55517 544.04102,519.56459 C 544.03833,519.56947 544.04353,519.58979 544.04102,519.59485 C 544.03638,519.60534 544.01463,519.64415 544.01076,519.65537 C 544.00903,519.66117 544.01229,519.67964 544.01076,519.68563 C 544.00812,519.698 543.98229,519.73301 543.9805,519.74616 C 543.97915,519.7597 543.98096,519.79232 543.9805,519.80668 C 543.98051,520.75233 542.67928,523.04461 542.67928,523.04461 L 544.55546,525.10236 L 547.97496,527.19037 L 554.39029,528.88499 L 556.26648,529.64151 L 557.99136,530.39804 L 556.84144,532.48605 L 559.86754,532.30448 L 560.4425,533.63597 L 563.4686,533.63597 L 564.22513,530.03491 L 562.31868,529.64151 L 564.98165,526.82724 L 564.04356,525.85888 L 564.22513,524.16427 L 567.64463,522.28808 L 567.82619,520.20007 L 565.55661,520.01851 L 564.04356,521.31973 L 564.04356,519.44355 L 567.06967,519.26198 L 568.00776,516.9924 L 568.76428,510.36524 L 568.18932,507.5207 L 568.1288,504.79721 L 564.83035,506.976 L 560.89642,507.12731 L 560.56354,504.40381 L 561.07798,503.70781 L 559.86754,502.8605 L 559.53467,498.23056 L 559.02023,497.38326 L 556.96248,497.38326 L 555.93361,496.53595 L 555.93361,493.26776 L 554.57186,492.42045 L 553.54299,491.90601 L 551.48524,489.33382 L 551.63654,487.79051 L 549.09461,487.79051 L 548.21704,485.21832 L 544.61598,485.21832 L 542.7398,482.64613 L 543.25424,481.79883 L 542.07406,481.10282 L 539.3203,481.61726 L 538.29143,480.95152 L 534.53906,480.95152 L 534.17593,479.92264 L 532.05766,479.52925 L 530.5446,479.52925 z M 562.13712,441.70296 L 559.29258,443.60941 L 559.68597,445.48559 L 561.19903,447.39204 L 559.50441,448.69326 L 560.26093,450.20631 L 559.11102,451.5378 L 559.11102,453.23242 L 561.01746,454.95729 L 561.01746,457.59 L 559.86754,460.04115 L 558.56632,460.61611 L 557.05327,458.5281 L 554.39029,458.73992 L 553.81534,458.34653 L 551.54576,458.34653 L 549.48801,460.25297 L 548.70122,463.46064 L 543.79893,464.39873 L 540.01631,467.6064 L 539.25978,469.69441 L 537.3836,469.51285 L 536.41524,468.36293 L 535.87055,471.60086 L 534.53906,472.14556 L 534.14567,475.17166 L 534.72063,476.50315 L 532.63262,478.0162 L 532.05766,479.52925 L 534.17593,479.92264 L 534.53906,480.95152 L 538.29143,480.95152 L 539.3203,481.61726 L 542.07406,481.10282 L 543.25424,481.79883 L 542.7398,482.64613 L 544.61598,485.21832 L 548.21704,485.21832 L 549.09461,487.79051 L 551.63654,487.79051 L 551.48524,489.33382 L 553.54299,491.90601 L 554.57186,492.42045 L 555.93361,493.26776 L 555.93361,496.53595 L 556.96248,497.38326 L 559.02023,497.38326 L 559.53467,498.23056 L 559.86754,502.8605 L 561.07798,503.70781 L 560.56354,504.40381 L 560.89642,507.12731 L 564.83035,506.976 L 568.1288,504.79721 L 568.00776,499.19892 L 572.54691,492.78358 L 572.54691,482.19222 L 570.67073,478.59116 L 570.09577,467.24327 L 568.76428,465.15526 L 566.31314,463.27908 L 565.91975,456.25852 L 567.06967,453.05085 L 565.55661,447.93674 L 564.61852,443.79097 L 563.83174,442.64106 L 562.13712,441.70296 z "/> |
<path id="INSEE-D82" class="land departement midi departement82" title="Tarn-et-Garonne (82)" d="M 266.55906,372.63392 L 265.22758,376.96124 L 267.31559,379.23082 L 266.3775,382.83188 L 265.22758,384.16337 L 266.01436,386.43295 L 262.4133,387.18947 L 259.56877,387.946 L 260.32529,390.57871 L 258.90302,391.00236 L 259.75033,391.78915 L 262.50409,391.78915 L 263.86583,391.12341 L 265.07627,391.78915 L 262.83696,392.81802 L 262.83696,394.5429 L 260.77921,396.08621 L 260.77921,398.29527 L 264.56184,398.47684 L 265.74202,399.68728 L 265.74202,402.0779 L 267.13402,403.43964 L 265.92358,405.31583 L 266.43802,406.3447 L 268.82864,405.31583 L 273.79145,405.31583 L 275.18346,404.46852 L 276.87807,404.46852 L 278.75426,406.70784 L 283.05132,405.49739 L 284.2315,403.62121 L 282.53689,402.74364 L 283.71707,402.25946 L 284.0802,400.53459 L 285.95638,400.71615 L 286.98526,401.89633 L 287.83257,400.53459 L 290.58632,399.50571 L 291.82702,400.08067 L 292.79538,398.47684 L 291.10076,396.60065 L 294.33869,396.60065 L 295.36756,394.72447 L 297.60688,392.66672 L 295.36756,392.66672 L 296.06357,389.76166 L 301.87368,389.06566 L 304.113,387.70391 L 306.83649,386.67503 L 307.71406,385.79746 L 306.65493,383.07397 L 308.19824,379.98735 L 305.47475,379.80578 L 305.14187,375.53898 L 301.02638,377.41516 L 298.27262,376.74942 L 296.578,378.80717 L 293.67295,378.44403 L 293.15851,381.86353 L 291.7665,381.86353 L 290.91919,379.98735 L 290.40475,379.14004 L 288.86144,379.29134 L 285.95638,382.37797 L 282.35532,382.22666 L 281.84088,379.98735 L 281.84088,378.29273 L 281.50801,377.9296 L 280.29757,379.29134 L 278.75426,379.29134 L 277.05964,377.41516 L 275.51633,377.41516 L 274.48745,375.35741 L 275.8492,373.8141 L 275.69789,372.81548 L 273.27701,372.90627 L 273.57962,373.57201 L 269.4036,374.32853 L 266.55906,372.63392 z "/> |
<path id="INSEE-D85" title="Vendee (85)" class="land departement pdll departement85" d="M 187.487,222.41817 L 186.3976,224.44566 L 183.28071,224.44566 L 184.52141,225.71662 L 183.58332,228.83351 L 180.76905,229.7716 L 179.67965,228.98481 L 180.16383,225.86793 L 179.37704,224.14305 L 177.65216,224.14305 L 176.41146,225.53506 L 177.01668,229.92291 L 178.43895,231.95039 L 177.01668,233.52397 L 174.38397,233.03979 L 170.4803,232.1017 L 169.3909,229.13612 L 166.87924,228.83351 L 163.61104,227.41124 L 162.82426,225.53506 L 159.25346,223.20496 L 153.6249,230.4676 L 153.44334,235.00676 L 159.28372,240.66557 L 159.10215,242.36019 L 160.79677,242.36019 L 164.39783,253.16338 L 168.18046,255.03956 L 171.96309,258.82219 L 176.32068,258.82219 L 178.01529,262.60482 L 182.19132,262.60482 L 184.0675,265.44935 L 188.24352,267.53736 L 188.42509,264.87439 L 189.48422,265.87301 L 195.26408,262.36273 L 197.92705,262.18116 L 199.04671,265.20727 L 202.64777,263.69421 L 205.67387,265.96379 L 208.12502,264.81387 L 210.21303,264.23891 L 211.15112,263.11925 L 213.78383,261.42464 L 211.90765,259.51819 L 210.39459,260.66811 L 210.21303,259.15506 L 211.54451,256.67366 L 210.21303,254.40408 L 211.33269,252.89103 L 210.75773,247.59535 L 208.88154,244.78107 L 210.21303,243.05619 L 207.18693,239.66696 L 208.30658,237.21581 L 203.76743,233.43319 L 203.76743,231.16361 L 201.89125,228.50064 L 202.25438,228.34933 L 199.68219,226.17054 L 194.84043,226.17054 L 193.26685,225.23245 L 191.08806,224.92984 L 188.57639,222.56948 L 187.487,222.41817 z "/> |
<path id="INSEE-D56" title="Morbihan (56)" class="land departement bretagne departement56" d="M 107.56762,155.63208 L 104.42047,157.14513 L 102.21142,157.14513 L 99.881318,159.02132 L 100.03262,160.41332 L 101.42463,164.01439 L 102.21142,166.82866 L 107.05318,167.61545 L 109.41354,169.49163 L 110.35163,168.37197 L 111.89495,170.42972 L 111.10816,171.36782 L 110.95685,174.15183 L 109.56485,174.15183 L 108.47545,175.87671 L 106.26639,175.87671 L 105.35856,179.59882 L 107.47684,182.98805 L 110.50294,183.74458 L 111.6226,182.04996 L 111.0779,184.10771 L 113.71061,185.25763 L 117.1301,188.64686 L 118.24976,190.73487 L 117.88663,193.18602 L 117.49324,195.66742 L 119.76281,197.36204 L 120.91273,196.03055 L 119.76281,194.5175 L 119.76281,191.12827 L 122.03239,191.67297 L 122.78892,189.40339 L 123.36388,190.73487 L 125.81502,192.82288 L 126.96494,190.91644 L 125.81502,188.28373 L 127.90303,191.12827 L 130.53574,190.73487 L 129.99104,189.40339 L 132.44218,189.97835 L 134.31837,192.24793 L 133.38028,193.76098 L 130.92913,193.00445 L 128.0846,191.67297 L 126.57155,193.57941 L 128.84112,194.33594 L 130.53574,196.96865 L 140.76397,196.03055 L 143.39668,196.60551 L 142.09545,197.72517 L 142.27702,199.45005 L 142.64015,199.7224 L 143.4572,199.57109 L 145.15182,197.87648 L 146.27147,199.1777 L 149.29758,199.1777 L 152.89864,197.30152 L 158.19432,195.21351 L 158.37589,189.91783 L 159.49554,189.31261 L 157.49832,185.56024 L 159.22319,184.16823 L 158.92058,183.23014 L 157.83119,182.59466 L 159.52581,181.80787 L 161.09938,179.93169 L 160.94807,178.0555 L 158.92058,178.0555 L 158.43641,176.20958 L 159.85868,174.3334 L 158.2851,171.51912 L 155.955,170.09685 L 153.29203,170.09685 L 152.35394,169.79424 L 152.35394,168.55354 L 153.74595,167.28258 L 154.53274,164.16569 L 154.07882,162.1382 L 153.44334,162.92499 L 149.69097,162.62238 L 147.96609,159.47523 L 146.57409,159.47523 L 144.39529,160.26202 L 144.39529,162.28951 L 141.42971,164.16569 L 139.06935,163.2276 L 138.13126,161.20011 L 137.37473,162.28951 L 135.16568,162.28951 L 134.07628,160.8975 L 132.98688,160.8975 L 130.65678,158.53714 L 127.99381,159.17262 L 125.17954,156.66096 L 122.66787,156.84252 L 121.91135,158.38583 L 118.94577,159.95941 L 115.3447,158.38583 L 114.40661,157.44774 L 112.83304,158.53714 L 110.95685,158.38583 L 110.65424,156.84252 L 107.68866,156.05573 L 107.56762,155.63208 z "/> |
<path id="INSEE-D53" title="Mayenne (53)" class="land departement pdll departement53" d="M 230.06426,141.89357 L 228.18808,142.07514 L 227.40129,143.95132 L 224.58702,145.10124 L 219.4729,144.34472 L 214.35879,147.37082 L 212.48261,146.03933 L 209.63807,147.94578 L 207.55006,146.43273 L 206.21857,144.16315 L 203.4043,143.01323 L 201.49785,144.52628 L 198.29018,144.13289 L 198.10862,149.06544 L 199.04671,149.82196 L 199.04671,153.60459 L 197.14026,155.51104 L 197.14026,158.53714 L 197.71522,160.41332 L 197.71522,165.89057 L 199.04671,167.22205 L 199.04671,172.33617 L 195.83904,171.94277 L 194.50755,172.6993 L 192.05641,178.75151 L 191.08806,182.171 L 190.78545,182.83675 L 194.20494,183.53275 L 197.01922,183.53275 L 200.13611,185.56024 L 201.40707,184.01693 L 207.00536,185.71154 L 209.21441,186.98251 L 214.20748,186.80094 L 216.38628,184.62215 L 219.83604,185.71154 L 221.68196,185.71154 L 221.71222,185.7418 L 222.31744,184.31954 L 222.31744,178.69098 L 221.68196,177.75289 L 222.01483,176.8148 L 224.6778,176.6635 L 225.9185,175.5741 L 226.06981,174.63601 L 224.6778,171.18625 L 225.13172,169.79424 L 228.2486,169.49163 L 227.94599,168.70484 L 228.73278,166.82866 L 228.0973,165.40639 L 228.88408,163.86308 L 231.69836,161.50272 L 231.36549,159.02132 L 231.84966,154.96634 L 232.93906,153.09015 L 236.4796,151.94024 L 235.9349,151.90997 L 234.96655,148.49048 L 232.51541,147.55239 L 231.75888,143.40663 L 230.06426,141.89357 z "/> |
<path id="INSEE-D41" title="Loir-et-Cher (41)" class="land departement centre departement41" d="M 268.79838,166.91944 L 267.52742,168.55354 L 266.01436,171.18625 L 267.89055,172.91113 L 267.70898,176.87532 L 266.95246,179.50803 L 265.04601,179.50803 L 265.04601,183.10909 L 262.4133,186.52859 L 259.56877,187.64825 L 258.23728,189.34287 L 258.81224,190.76513 L 267.98133,191.06775 L 268.76812,191.76375 L 268.64707,192.42949 L 267.28533,193.1255 L 267.55768,195.00168 L 268.76812,195.81873 L 270.67456,194.45698 L 271.21926,194.45698 L 273.39806,196.09108 L 275.3045,196.24238 L 275.57685,201.11441 L 277.05964,205.04834 L 277.05964,211.85707 L 278.14904,213.49117 L 281.81062,213.49117 L 284.65516,217.69745 L 285.71429,218.60528 L 285.74456,218.5145 L 287.651,218.24215 L 289.2851,216.8804 L 292.55329,216.7291 L 292.82564,217.2738 L 293.49138,215.79101 L 296.33592,214.82265 L 298.78706,214.97396 L 299.9975,214.5503 L 301.6316,216.06335 L 304.50639,217.69745 L 306.92728,217.54615 L 306.80623,215.095 L 307.89563,213.88456 L 308.98503,213.76352 L 309.92312,214.82265 L 313.73601,214.42926 L 316.15689,213.06751 L 315.88454,212.12942 L 315.2188,211.31237 L 315.33984,209.52697 L 317.12524,206.28904 L 319.42508,205.32069 L 319.42508,203.2932 L 319.96978,202.08276 L 318.48699,201.53806 L 317.51864,199.48031 L 315.06749,198.81457 L 314.94645,197.99752 L 317.39759,195.97003 L 320.15135,194.60829 L 318.60803,192.30845 L 311.67826,192.0361 L 310.74017,193.1255 L 308.83372,193.1255 L 308.16798,192.42949 L 305.17214,192.0361 L 304.35509,193.79124 L 302.44864,194.33594 L 300.6935,192.30845 L 300.26985,189.97835 L 298.66601,188.6166 L 296.21487,188.34425 L 294.42947,187.13381 L 294.42947,185.92337 L 293.37033,183.32092 L 295.51887,181.17239 L 295.24652,180.08299 L 294.30843,178.99359 L 293.21903,178.99359 L 293.21903,178.02524 L 294.30843,176.14906 L 294.42947,175.05966 L 292.82564,175.05966 L 290.37449,174.36366 L 288.07465,176.54245 L 285.47221,176.8148 L 281.26592,175.7254 L 280.05548,173.00191 L 278.42139,172.06382 L 277.48329,169.88503 L 274.7598,169.88503 L 273.67041,169.06798 L 275.3045,168.12989 L 275.42554,167.31284 L 273.67041,167.31284 L 270.67456,167.85754 L 268.79838,166.91944 z "/> |
<path id="INSEE-D21" title="Cote-d'Or (21)" class="land departement bourgogne departement21" d="M 405.2151,171.76121 L 404.8217,174.21235 L 402.37056,175.54384 L 396.13679,175.7254 L 396.40914,177.08715 L 396.56044,178.4489 L 394.654,179.81064 L 394.654,182.11048 L 395.04739,182.53414 L 396.56044,182.53414 L 397.49853,184.13797 L 396.95384,186.86146 L 394.77504,188.49556 L 394.77504,190.12965 L 395.47105,190.67435 L 395.31974,191.06775 L 393.95799,191.61244 L 393.5646,193.63993 L 391.38581,198.26987 L 389.90302,200.44866 L 389.90302,202.62746 L 390.44771,203.56555 L 389.63067,204.65495 L 387.72422,205.59304 L 387.84527,207.49948 L 389.63067,208.58888 L 390.29641,210.07167 L 390.02406,212.12942 L 389.63067,213.61221 L 390.56876,215.24631 L 393.29225,215.79101 L 394.50269,217.69745 L 394.50269,218.5145 L 393.68564,218.78685 L 393.68564,220.75381 L 393.83695,220.81434 L 397.49853,224.59696 L 401.31142,224.47592 L 404.70066,227.04811 L 407.1518,228.83351 L 407.27285,231.13335 L 409.84503,231.67805 L 412.02383,233.43319 L 417.74316,231.4057 L 421.6771,230.16499 L 423.43224,229.89264 L 423.97693,229.10586 L 425.88338,229.2269 L 427.36617,230.16499 L 429.54496,229.6203 L 431.72376,228.13751 L 433.35785,228.31907 L 433.38811,228.13751 L 434.68934,227.38098 L 434.50777,226.41263 L 434.14464,225.29297 L 435.08273,223.77992 L 438.2904,222.26687 L 438.2904,220.75381 L 439.44032,219.24076 L 440.55998,217.72771 L 440.19685,216.39623 L 440.74154,214.30822 L 441.13494,211.28211 L 441.89146,211.28211 L 441.7099,210.16245 L 440.95337,209.40593 L 440.74154,205.6233 L 439.04693,205.44173 L 438.68379,202.41563 L 436.59578,201.44728 L 437.35231,200.50919 L 438.50223,200.14605 L 440.95337,197.30152 L 440.74154,195.78847 L 439.22849,192.76236 L 436.98918,192.36897 L 436.20239,194.27541 L 432.05663,195.21351 L 431.66324,194.27541 L 428.63713,190.49279 L 426.94252,191.43088 L 424.67294,191.24931 L 423.91641,189.73626 L 420.89031,189.91783 L 420.70874,186.71016 L 419.01413,185.56024 L 421.46527,182.92753 L 417.10768,177.05689 L 413.71845,173.45583 L 410.69234,171.76121 L 405.2151,171.76121 z "/> |
<path id="INSEE-D43" title="Haute-Loire (43)" class="land departement auvergne departement43" d="M 361.09452,316.13658 L 359.73277,316.83258 L 359.73277,318.01276 L 357.67502,318.19433 L 355.79884,319.73764 L 352.37934,320.25208 L 351.59255,321.37173 L 352.19777,321.43226 L 353.04508,323.85314 L 357.34215,323.85314 L 358.18946,326.9095 L 359.3999,328.11994 L 359.73277,331.72101 L 360.76165,333.08275 L 362.8194,333.26432 L 361.60895,334.29319 L 360.58008,334.62606 L 361.45765,335.47337 L 360.42877,337.01669 L 362.48652,338.22713 L 363.5154,339.77044 L 363.5154,341.37427 L 363.96931,341.22297 L 367.38881,349.93815 L 372.2911,348.42509 L 372.65423,346.15552 L 374.56067,346.15552 L 375.3172,348.78823 L 378.82748,347.94092 L 383.18507,353.50895 L 385.90856,349.18162 L 390.81085,345.58056 L 395.35,345.58056 L 396.86305,340.85984 L 399.88916,340.64801 L 400.10098,337.07721 L 402.91526,337.07721 L 402.37056,335.74572 L 401.61403,333.29458 L 402.73369,331.38813 L 405.39666,330.26848 L 406.51632,325.72932 L 404.06518,322.88479 L 401.03907,323.06635 L 401.40221,319.46529 L 395.35,316.83258 L 393.29225,317.01415 L 389.11623,320.43364 L 385.30334,319.19294 L 384.54681,319.9192 L 382.15619,319.2232 L 380.46158,317.49832 L 379.4327,319.55607 L 376.49738,319.40477 L 375.13563,318.19433 L 374.10676,320.58495 L 372.23058,319.73764 L 371.02013,317.49832 L 369.47682,317.49832 L 368.11508,316.31814 L 366.05733,317.16545 L 363.6667,317.34702 L 362.30496,316.46945 L 361.45765,316.98389 L 361.09452,316.13658 z "/> |
<path id="INSEE-D69" title="Rhone (69)" class="land departement rhone-alpes departement69" d="M 413.32505,266.72032 L 411.2673,266.90188 L 409.54242,268.5965 L 408.42277,267.08345 L 406.72815,268.5965 L 404.42831,267.08345 L 402.55213,267.08345 L 401.7956,267.65841 L 401.40221,269.8372 L 402.43108,270.65425 L 402.43108,272.50017 L 403.67178,274.55792 L 402.64291,275.79863 L 398.73924,275.79863 L 398.52741,279.49047 L 397.28671,280.73117 L 398.10375,283.8178 L 398.10375,285.66372 L 399.76811,287.29782 L 399.76811,289.56739 L 402.21925,291.83697 L 402.21925,294.49994 L 401.00881,296.34586 L 402.43108,297.19317 L 402.43108,298.61544 L 401.19038,299.64432 L 401.19038,301.30867 L 406.54658,306.24122 L 412.93166,307.27009 L 413.53688,309.11602 L 411.47913,311.56716 L 413.14349,312.59604 L 415.20124,311.77899 L 417.41029,312.11186 L 421.37449,310.14489 L 420.739,308.90419 L 418.07603,306.24122 L 422.19153,304.78869 L 427.54774,303.54799 L 431.66324,298.22205 L 428.97,295.95247 L 429.12131,293.9855 L 425.27816,292.86585 L 422.79675,293.68289 L 422.40336,290.38444 L 420.13378,288.32669 L 418.68125,288.11486 L 414.98941,285.87555 L 415.59463,284.42302 L 415.59463,278.03794 L 416.6235,276.61567 L 416.98664,272.19756 L 416.35116,273.71061 L 415.01967,273.52905 L 414.29341,269.74642 L 413.32505,266.72032 z "/> |
<path id="INSEE-D14" title="Calvados (14)" class="land departement basse-normandie departement14" d="M 249.58263,94.807413 L 245.16452,95.5942 L 237.96239,99.770222 L 229.85244,102.97789 L 223.40684,99.376828 L 207.91319,97.107251 L 204.31213,95.231067 L 198.71384,96.653336 L 199.04671,98.741347 L 197.95731,99.830744 L 198.10862,101.37406 L 201.70968,104.97512 L 203.88847,106.21582 L 205.46205,104.18833 L 206.70275,105.76191 L 205.12918,107.78939 L 206.55144,110.11949 L 205.91596,110.90628 L 207.00536,113.11534 L 206.40014,115.59674 L 204.82657,118.10841 L 202.3149,119.65172 L 200.92289,118.56232 L 199.53089,119.80302 L 201.0742,121.22529 L 199.8335,123.55539 L 196.86791,124.64479 L 200.46898,129.18394 L 204.03978,129.48655 L 206.79353,131.27195 L 210.60642,130.12203 L 213.4207,126.85384 L 217.32437,127.94324 L 220.74387,125.58288 L 222.80162,124.82635 L 224.98041,127.00515 L 228.58147,126.36967 L 231.69836,128.09454 L 235.60203,126.85384 L 239.17283,124.19087 L 241.53319,121.5279 L 243.10677,121.22529 L 243.56068,123.25278 L 244.80138,122.95017 L 244.95269,121.5279 L 248.55375,120.92268 L 249.79445,121.67921 L 253.6376,120.8319 L 254.27309,118.98597 L 254.09152,117.29136 L 252.18507,116.53483 L 252.00351,115.20335 L 253.69813,114.08369 L 253.90995,112.17724 L 252.76003,107.63809 L 250.49046,104.43042 L 252.3969,103.31076 L 252.3969,102.55424 L 250.49046,101.97928 L 249.58263,94.807413 z "/> |
<path id="INSEE-D39" title="Jura (39)" class="land departement franche-comte departement39" d="M 441.80068,210.76767 L 441.89146,211.28211 L 441.13494,211.28211 L 440.74154,214.30822 L 440.19685,216.39623 L 440.55998,217.72771 L 439.44032,219.24076 L 438.2904,220.75381 L 438.2904,222.26687 L 435.08273,223.77992 L 434.14464,225.29297 L 434.50777,226.41263 L 434.68934,227.38098 L 433.38811,228.13751 L 433.17629,230.58865 L 434.68934,230.77021 L 436.41422,233.61475 L 438.50223,233.61475 L 439.62189,234.94624 L 440.95337,234.94624 L 440.55998,236.45929 L 436.20239,237.00399 L 436.59578,238.51704 L 438.10883,239.48539 L 438.10883,241.36157 L 437.53388,241.93653 L 438.68379,243.44959 L 440.37841,246.47569 L 439.62189,249.68336 L 437.71544,251.01484 L 437.92727,253.64755 L 440.19685,254.40408 L 440.95337,255.554 L 439.04693,257.06705 L 434.08412,257.67227 L 436.41422,258.5801 L 440.19685,263.87578 L 442.64799,264.99544 L 442.64799,267.65841 L 445.49253,267.26502 L 449.09359,263.30082 L 452.11969,264.81387 L 452.11969,267.08345 L 457.59694,267.08345 L 465.4648,258.42879 L 465.13193,258.24723 L 465.49507,254.28303 L 468.3396,250.8938 L 466.43316,250.13727 L 466.61472,248.98735 L 464.31489,248.77553 L 464.16358,247.41378 L 465.64637,245.93099 L 465.25298,244.4482 L 464.43593,242.54175 L 467.82516,241.45236 L 469.06587,239.69722 L 469.33822,237.51842 L 466.61472,234.91598 L 464.70828,234.40154 L 460.502,233.03979 L 460.502,229.2269 L 460.22965,226.38237 L 456.84041,226.65471 L 451.54473,224.86931 L 452.36178,222.99313 L 453.57222,220.11833 L 453.99587,218.24215 L 452.63413,216.45675 L 450.18299,214.82265 L 449.91064,212.79516 L 449.9409,211.64524 L 448.27654,211.58472 L 447.33845,212.52281 L 444.88731,212.52281 L 443.25321,211.16107 L 441.80068,210.76767 z "/> |
<path id="INSEE-D10" title="Aube (10)" class="land departement champagne departement10" d="M 391.59763,134.4191 L 387.75448,136.53737 L 384.48629,138.83721 L 381.24836,138.83721 L 375.8619,142.49879 L 371.26222,143.25532 L 367.99403,139.80556 L 367.17698,139.98713 L 367.17698,140.56209 L 364.54427,141.68175 L 364.36271,143.95132 L 363.03122,145.6762 L 362.2747,149.45883 L 361.85104,152.63624 L 363.03122,153.60459 L 365.3008,153.60459 L 370.20309,158.71871 L 369.62813,163.83282 L 373.04762,166.46553 L 374.95407,165.13404 L 377.98017,168.73511 L 378.3433,172.1546 L 380.43131,174.96888 L 381.36941,177.05689 L 388.93466,177.45028 L 392.71729,175.54384 L 393.83695,177.63185 L 395.16844,177.81341 L 396.13679,175.7254 L 402.37056,175.54384 L 404.8217,174.21235 L 405.2151,171.76121 L 410.69234,171.76121 L 411.44887,172.18486 L 410.81339,169.76398 L 409.27007,168.79563 L 411.38835,166.88918 L 414.65654,166.67736 L 415.80646,164.95248 L 415.59463,158.05296 L 414.8381,154.02825 L 411.56991,152.87833 L 408.12016,148.06682 L 408.30172,145.19203 L 409.30034,143.10401 L 407.5452,142.49879 L 402.15873,143.64871 L 398.31558,143.64871 L 394.86582,138.47408 L 394.47243,134.63093 L 391.59763,134.4191 z "/> |
<path id="INSEE-D55" title="Meuse (55)" class="land departement lorraine departement55" d="M 431.11854,83.913443 L 429.78705,86.092237 L 428.09243,87.211895 L 426.76095,85.910671 L 423.91641,85.910671 L 423.37171,85.154145 L 421.46527,88.724946 L 420.70874,90.056432 L 422.97832,92.900968 L 422.22179,96.683597 L 420.13378,98.378214 L 420.34561,99.7097 L 421.07188,101.58588 L 419.95222,102.7358 L 417.68264,103.85546 L 418.04577,105.94347 L 419.01413,106.12504 L 417.31951,107.63809 L 418.62073,110.48263 L 419.95222,114.65865 L 418.2576,116.53483 L 421.2837,116.35327 L 419.77065,121.07399 L 417.68264,122.01208 L 416.53272,124.85661 L 417.68264,125.79471 L 416.35116,128.06428 L 416.74455,129.57733 L 420.34561,132.42187 L 420.52718,139.04904 L 424.49137,139.624 L 426.94252,142.25671 L 431.48167,144.52628 L 433.17629,145.10124 L 437.17074,149.45883 L 436.74709,149.88249 L 440.0758,149.45883 L 440.0758,147.79447 L 443.79791,147.03795 L 443.79791,145.76699 L 444.70574,145.76699 L 444.70574,146.85638 L 447.67132,145.94855 L 448.82124,144.40524 L 448.60941,144.46576 L 448.60941,141.86331 L 446.76349,140.19896 L 446.76349,139.0793 L 448.24628,138.35303 L 449.91064,138.35303 L 449.33568,137.41494 L 448.24628,137.41494 L 447.48975,135.75058 L 447.48975,132.42187 L 446.76349,130.36412 L 448.24628,127.03541 L 449.51724,123.52513 L 448.03445,122.04234 L 447.85289,121.10425 L 448.79098,119.80302 L 451.00003,119.80302 L 451.00003,118.86493 L 449.15411,117.9571 L 448.79098,116.65588 L 450.6369,114.62839 L 448.60941,112.7522 L 449.33568,111.26941 L 447.67132,110.54315 L 446.55166,109.60506 L 446.3701,107.21443 L 446.18853,105.73164 L 445.46226,104.61199 L 445.64383,102.1911 L 446.55166,101.07145 L 446.55166,99.800483 L 445.64383,99.043957 L 445.64383,97.3796 L 445.06887,95.715244 L 444.34261,94.232454 L 442.67825,92.931229 L 439.5311,93.869321 L 437.65492,94.050887 L 436.74709,95.715244 L 435.809,96.441509 L 435.62743,95.715244 L 435.99056,94.41402 L 436.38396,93.294362 L 435.2643,91.448439 L 435.38534,89.178862 L 434.47751,89.178862 L 433.72099,85.577799 L 432.20793,84.064748 L 431.11854,83.913443 z "/> |
<path id="INSEE-D03" title="Allier (03)" class="land departement auvergne departement03" d="M 345.4193,240.24192 L 342.78659,243.63115 L 341.27354,243.81272 L 339.57893,245.5376 L 337.67248,243.44959 L 332.58863,248.5637 L 332.58863,251.5898 L 333.52672,252.34633 L 333.70829,253.85938 L 331.07558,255.91713 L 328.59417,255.1606 L 323.87345,256.12896 L 321.42231,258.94323 L 320.51448,260.87994 L 320.66578,260.84968 L 322.93536,264.05735 L 322.93536,266.32692 L 324.23658,268.02154 L 325.56807,266.32692 L 327.08112,268.98989 L 329.16913,269.74642 L 331.25714,274.64871 L 331.34793,276.07097 L 334.22272,278.31029 L 335.76604,277.61429 L 336.97648,274.70923 L 338.15666,274.37636 L 338.15666,272.83304 L 340.21441,272.65148 L 340.39597,273.68035 L 342.96816,270.77529 L 345.87322,270.77529 L 346.38766,271.80417 L 345.02591,273.68035 L 347.0534,275.91967 L 347.41653,277.28142 L 352.19777,280.03517 L 358.00789,280.88248 L 359.73277,280.70091 L 362.30496,281.21535 L 364.51401,279.8536 L 366.23889,280.70091 L 366.57176,283.09153 L 368.81108,283.60597 L 371.71614,283.45467 L 372.56345,285.51242 L 375.22642,286.57155 L 375.3172,285.63346 L 379.85635,285.42163 L 379.49322,274.64871 L 378.16174,272.016 L 378.70644,269.92799 L 381.85358,269.38329 L 381.94437,269.17146 L 385.90856,266.14536 L 386.09013,258.76167 L 384.75864,256.88548 L 381.73254,256.88548 L 380.61288,255.37243 L 377.40521,255.37243 L 376.46712,254.22251 L 376.46712,251.37798 L 372.65423,244.20611 L 370.77805,242.87463 L 367.17698,247.80717 L 365.66393,248.17031 L 365.08897,245.71916 L 363.39436,244.96264 L 362.63783,246.47569 L 359.82355,246.47569 L 359.43016,244.78107 L 357.52372,245.90073 L 355.46597,247.05065 L 353.19639,244.56924 L 349.95846,243.05619 L 349.77689,240.60505 L 345.4193,240.24192 z "/> |
<path id="INSEE-D94" title="Val-de-Marne (94)" class="land departement idf idfbig departement94" d="M 50.990297,35.820069 L 48.401399,37.911102 L 45.812502,38.309394 L 45.613356,39.703416 L 45.115491,40.997864 L 46.409939,40.997864 L 47.10695,40.400427 L 46.808231,39.404697 L 50.791151,39.205551 L 51.786881,39.603843 L 51.786881,41.694875 L 50.791151,43.785908 L 45.015918,42.989324 L 44.119761,42.19274 L 41.43129,44.084627 L 38.842393,44.781638 L 35.158192,44.582492 L 34.06289,48.465838 L 35.058619,50.158579 L 33.465452,54.838509 L 35.058619,57.825698 L 37.846663,56.431677 L 44.518053,60.115877 L 56.068519,60.115877 L 62.939055,63.302213 L 62.839482,62.605202 L 67.718558,50.357725 L 67.718558,44.781638 L 64.631795,43.985054 L 63.835211,42.491459 L 62.540763,41.894021 L 59.752719,38.807259 L 54.873643,36.019215 L 50.990297,35.820069 z "/> |
<path id="INSEE-D83" title="Var (83)" class="land departement paca departement83" d="M 496.63366,400.23197 L 493.75887,400.35302 L 492.39712,401.74503 L 487.25275,401.56346 L 482.80437,404.80139 L 479.74801,402.74364 L 474.93651,404.28695 L 474.0892,406.01183 L 470.6697,408.58402 L 464.49645,404.46852 L 459.50338,406.10261 L 459.26129,407.4341 L 459.35208,407.37358 L 462.4387,409.43133 L 458.3232,412.18508 L 456.62858,415.60458 L 458.68633,417.2992 L 458.50477,420.90026 L 461.77296,423.98688 L 460.89539,424.68289 L 457.14302,424.50132 L 457.14302,425.86307 L 458.83764,426.71037 L 458.83764,427.22481 L 457.29433,428.61682 L 458.1719,429.64569 L 459.53364,429.64569 L 460.89539,431.00744 L 461.07696,432.03632 L 459.35208,433.06519 L 457.99033,434.6085 L 457.80876,438.36087 L 458.3232,439.05687 L 461.71244,440.56993 L 462.65053,444.35255 L 464.73854,444.74595 L 466.64498,443.41446 L 470.03422,441.32645 L 475.90486,441.90141 L 475.72329,443.41446 L 473.81685,444.35255 L 478.356,444.56438 L 477.23634,443.41446 L 476.84295,440.96332 L 479.29409,439.2687 L 482.13863,440.20679 L 483.28855,440.56993 L 484.22664,441.71985 L 485.55813,440.78175 L 485.92126,438.30035 L 487.43431,436.99912 L 491.39851,436.99912 L 492.54843,435.27425 L 495.18113,436.03077 L 498.20724,434.72955 L 498.20724,429.797 L 494.24304,429.97857 L 497.26915,428.10238 L 498.7822,426.01437 L 499.17559,422.98827 L 504.65284,422.23174 L 507.7092,418.81225 L 505.59093,416.63345 L 505.59093,415.42301 L 504.56205,414.39414 L 505.9238,413.21396 L 505.59093,411.30751 L 503.35161,410.4602 L 502.17143,410.4602 L 500.11368,408.40245 L 499.75055,404.80139 L 497.54149,403.77252 L 495.30218,403.62121 L 494.45487,401.56346 L 496.63366,400.23197 z "/> |
<path id="INSEE-D06" title="Alpes-Maritimes (06)" class="land departement paca departement06" d="M 502.56483,369.91042 L 502.17143,370.06173 L 499.59924,371.42348 L 499.41768,373.8141 L 497.54149,375.35741 L 496.51262,377.77829 L 495.81662,382.22666 L 497.87437,385.28303 L 498.05593,387.85521 L 499.23611,388.21835 L 502.68587,391.45628 L 505.9238,394.36134 L 504.56205,395.23891 L 502.5043,393.8469 L 499.93212,395.23891 L 499.23611,396.08621 L 496.51262,396.08621 L 496.84549,397.44796 L 495.99818,398.47684 L 496.69419,400.20171 L 494.45487,401.56346 L 495.30218,403.62121 L 497.54149,403.77252 L 499.75055,404.80139 L 500.11368,408.40245 L 502.17143,410.4602 L 503.35161,410.4602 L 505.59093,411.30751 L 505.9238,413.21396 L 504.56205,414.39414 L 505.59093,415.42301 L 505.59093,416.63345 L 507.7092,418.81225 L 507.86051,418.63068 L 508.04207,414.30335 L 511.8247,415.05988 L 513.15619,413.335 L 515.06263,413.72839 L 515.2442,407.85775 L 519.60178,407.49462 L 523.38441,404.07513 L 526.77365,404.07513 L 526.95521,401.98711 L 530.37471,399.92936 L 528.46827,395.57178 L 531.3128,393.12063 L 530.73784,390.2761 L 534.91387,388.94461 L 536.03352,384.79885 L 535.48882,381.95431 L 534.52047,380.2597 L 533.76395,377.77829 L 530.94967,377.99012 L 522.05293,381.19779 L 519.20839,381.19779 L 514.3061,377.23359 L 509.37356,375.90211 L 506.52902,375.90211 L 506.52902,372.48261 L 502.56483,370.03147 L 502.56483,369.91042 z "/> |
<path id="INSEE-D05" title="Hautes-Alpes (05)" class="land departement paca departement05" d="M 486.52648,328.5436 L 484.83186,329.30012 L 484.43847,332.14466 L 481.04923,332.53805 L 480.47427,329.87508 L 479.35462,328.75543 L 475.93512,329.11856 L 474.60364,330.26848 L 473.84711,334.23267 L 474.42207,335.17076 L 478.38626,335.56416 L 479.14279,338.0153 L 480.65584,338.77183 L 480.65584,342.91759 L 477.05478,342.73602 L 475.54173,344.43064 L 471.2144,343.67411 L 468.76326,345.76212 L 467.03838,345.0056 L 464.58723,346.91204 L 465.52533,348.60666 L 464.01228,350.11971 L 459.29155,350.11971 L 459.29155,352.38929 L 460.80461,353.14581 L 460.22965,354.4773 L 457.02198,355.77852 L 453.05778,356.17192 L 451.90786,359.77298 L 451.7263,362.04256 L 453.81431,363.73717 L 451.7263,366.18832 L 449.09359,364.85683 L 446.06749,364.67527 L 445.67409,366.36988 L 447.58054,367.70137 L 445.2807,369.21442 L 446.06749,372.42209 L 452.48282,374.14697 L 453.63274,376.59811 L 455.50893,376.96124 L 454.87344,382.86214 L 454.90371,382.89241 L 457.80876,380.16891 L 461.25852,380.16891 L 462.62027,381.01622 L 464.49645,380.32022 L 461.59139,377.08229 L 461.07696,375.53898 L 462.10583,375.35741 L 463.98201,377.08229 L 465.19246,377.08229 L 465.01089,374.32853 L 463.80045,373.99566 L 464.31489,372.30105 L 466.37264,368.85129 L 469.64083,366.9751 L 471.18414,366.64223 L 471.18414,364.91735 L 472.21301,364.91735 L 474.0892,366.46067 L 474.0892,367.67111 L 477.32713,369.72886 L 478.2047,369.36573 L 477.69026,366.1278 L 476.81269,366.1278 L 477.69026,364.91735 L 481.26106,365.09892 L 483.16751,363.73717 L 486.07257,365.28049 L 492.21555,365.43179 L 493.24443,362.8596 L 493.94043,361.83073 L 493.94043,359.95455 L 496.51262,359.80324 L 497.54149,357.74549 L 500.44655,356.02061 L 502.5043,352.93399 L 504.95545,353.05503 L 506.74085,351.11833 L 508.7986,351.29989 L 508.7986,349.60527 L 506.16589,348.27379 L 505.59093,342.79654 L 503.50292,342.04002 L 500.87021,342.43341 L 495.93766,339.95201 L 495.18113,334.29319 L 492.36686,333.3551 L 491.39851,331.44866 L 490.1578,328.72516 L 486.52648,328.5436 z "/> |
<path id="INSEE-D48" title="Lozere (48)" class="land departement languedoc departement48" d="M 363.96931,341.22297 L 358.67363,343.12941 L 357.16058,346.51865 L 353.77135,344.24907 L 351.10838,352.57085 L 348.38488,358.83489 L 352.34908,363.70691 L 352.07673,367.45928 L 354.7397,369.33546 L 354.7397,373.87462 L 355.55675,380.28996 L 358.76442,381.6517 L 358.49207,383.76998 L 363.03122,382.98319 L 364.63506,383.76998 L 363.63644,384.64755 L 369.47682,388.55122 L 374.46989,387.52234 L 375.3172,386.3119 L 374.6212,384.61728 L 376.67895,384.10285 L 379.58401,386.82634 L 384.54681,387.34078 L 386.78613,383.92128 L 386.78613,381.01622 L 388.14788,379.47291 L 386.93744,379.14004 L 386.93744,375.2061 L 384.21394,372.30105 L 386.45326,371.93791 L 387.63344,370.90904 L 388.57153,369.09338 L 387.63344,368.51842 L 388.17814,364.52396 L 384.97047,361.04394 L 383.63898,354.08391 L 378.82748,347.94092 L 375.3172,348.78823 L 374.56067,346.15552 L 372.65423,346.15552 L 372.2911,348.42509 L 367.38881,349.93815 L 363.96931,341.22297 z "/> |
<path id="INSEE-D15" title="Cantal (15)" class="land departement auvergne departement15" d="M 330.13748,313.59465 L 329.56253,315.68266 L 330.50062,317.95224 L 329.3507,319.28372 L 327.47451,319.28372 L 325.56807,317.19571 L 323.87345,316.25762 L 323.69189,321.5533 L 320.27239,323.64131 L 317.82125,327.03055 L 318.39621,330.45004 L 317.63968,331.96309 L 316.67133,334.9892 L 315.15828,334.9892 L 313.64522,336.86538 L 314.79514,338.0153 L 315.55167,339.89148 L 313.10053,341.61636 L 314.09914,347.94092 L 317.30681,350.33154 L 314.88593,355.96009 L 317.30681,357.01923 L 316.24767,360.2269 L 318.36594,360.49924 L 319.96978,357.83627 L 322.66301,357.83627 L 323.17745,358.62306 L 329.07835,358.62306 L 330.13748,356.23244 L 331.46897,355.68774 L 332.01367,351.42094 L 333.34515,351.42094 L 333.34515,346.88178 L 338.70136,342.31237 L 339.24605,343.12941 L 339.76049,346.60943 L 343.51286,346.06473 L 344.32991,351.42094 L 346.17583,351.42094 L 346.72053,356.77714 L 348.38488,358.83489 L 351.10838,352.57085 L 353.77135,344.24907 L 357.16058,346.51865 L 358.67363,343.12941 L 363.5154,341.37427 L 363.5154,339.77044 L 362.48652,338.22713 L 360.42877,337.01669 L 361.45765,335.47337 L 360.58008,334.62606 L 361.60895,334.29319 L 362.8194,333.26432 L 360.76165,333.08275 L 359.73277,331.72101 L 359.3999,328.11994 L 358.18946,326.9095 L 357.34215,323.85314 L 353.04508,323.85314 L 352.19777,321.43226 L 350.83603,321.28095 L 350.14002,322.6427 L 347.41653,322.46113 L 344.84434,318.5272 L 343.81547,318.37589 L 341.75772,317.34702 L 340.54728,318.5272 L 337.49091,318.5272 L 335.9476,315.28927 L 330.13748,313.59465 z "/> |
<path id="INSEE-D64" title="Pyrenees-Atlantiques (64)" class="land departement aquitaine departement64" d="M 220.04786,415.42301 L 217.32437,416.96632 L 211.84712,416.78476 L 211.33269,415.93745 L 207.73162,417.14789 L 204.97787,417.9952 L 202.92012,416.45189 L 200.71107,417.14789 L 200.01506,416.27032 L 197.29157,416.27032 L 195.56669,417.14789 L 191.11832,416.96632 L 188.7277,418.84251 L 184.43063,418.50964 L 183.58332,419.72008 L 182.55445,419.35694 L 183.91619,417.9952 L 181.52557,416.11901 L 178.62051,418.6912 L 173.65771,419.02407 L 168.21072,416.30058 L 167.42393,417.69259 L 163.06635,422.98827 L 159.67711,424.31975 L 157.22597,424.68289 L 157.22597,426.7709 L 159.49554,428.85891 L 162.88478,429.04047 L 163.06635,431.49162 L 165.72932,431.70344 L 166.48584,429.97857 L 170.0869,431.49162 L 172.35648,432.06658 L 172.90118,434.33615 L 171.59996,435.48607 L 171.59996,439.05687 L 168.93699,440.38836 L 168.75542,442.08298 L 170.45004,443.98942 L 173.47614,444.92751 L 174.0511,442.08298 L 175.74572,440.20679 L 175.56415,442.65794 L 176.89564,444.56438 L 180.28487,444.56438 L 181.79792,446.62213 L 186.33708,447.37866 L 190.69466,450.04163 L 197.86653,450.04163 L 198.25992,454.00582 L 203.16221,457.78845 L 205.06865,460.05803 L 207.15666,458.93837 L 209.03285,458.54498 L 209.97094,459.48307 L 211.69582,458.54498 L 214.99427,456.72932 L 215.29688,452.82564 L 216.80993,451.67572 L 217.59672,445.44195 L 220.41099,446.01691 L 221.56091,445.26039 L 220.22943,442.59741 L 225.34354,438.23983 L 228.36965,431.4311 L 230.24583,428.97995 L 227.97625,425.59072 L 226.4632,423.32114 L 228.55121,421.41469 L 225.34354,416.11901 L 220.22943,415.75588 L 220.04786,415.42301 z "/> |
<path id="INSEE-D12" title="Aveyron (12)" class="land departement midi departement12" d="M 338.70136,342.31237 L 333.34515,346.88178 L 333.34515,351.42094 L 332.01367,351.42094 L 331.46897,355.68774 L 330.13748,356.23244 L 329.07835,358.62306 L 323.17745,358.62306 L 322.66301,357.83627 L 319.96978,357.83627 L 318.36594,360.49924 L 317.79098,360.43872 L 317.45811,361.49786 L 316.24767,362.8596 L 312.82818,362.8596 L 312.13217,363.73717 L 310.43755,363.55561 L 307.35093,366.9751 L 306.32206,366.64223 L 304.113,368.51842 L 304.77874,371.93791 L 306.50362,374.5101 L 305.17214,375.90211 L 305.47475,379.80578 L 308.19824,379.98735 L 306.65493,383.07397 L 307.86537,386.1606 L 309.40868,385.28303 L 310.10468,386.82634 L 312.31374,384.61728 L 315.58193,384.43572 L 318.81986,386.82634 L 324.47867,387.85521 L 326.53642,391.45628 L 329.44148,392.81802 L 330.98479,396.75196 L 330.80323,398.29527 L 332.67941,401.74503 L 332.67941,403.62121 L 336.09891,408.06958 L 339.3671,409.7642 L 341.42485,409.24976 L 342.45372,407.88802 L 343.99704,408.25115 L 347.53758,410.52072 L 347.56784,410.52072 L 349.14141,410.52072 L 352.34908,410.52072 L 352.07673,404.92243 L 352.07673,403.04625 L 353.68056,403.04625 L 356.61588,404.65009 L 359.5512,404.65009 L 359.03677,401.44242 L 360.6406,400.08067 L 363.84827,399.56623 L 363.84827,396.873 L 367.32829,395.26917 L 366.51124,391.54706 L 363.57592,391.54706 L 360.91295,391.00236 L 360.36825,388.85383 L 362.51679,388.33939 L 362.51679,385.64616 L 364.63506,383.76998 L 363.03122,382.98319 L 358.49207,383.76998 L 358.76442,381.6517 L 355.55675,380.28996 L 354.7397,373.87462 L 354.7397,369.33546 L 352.07673,367.45928 L 352.34908,363.70691 L 346.72053,356.77714 L 346.17583,351.42094 L 344.32991,351.42094 L 343.51286,346.06473 L 339.76049,346.60943 L 339.24605,343.12941 L 338.70136,342.31237 z "/> |
<path id="INSEE-D13" title="Bouches-du-Rhone (13)" class="land departement paca departement13" d="M 421.04161,397.05457 L 415.74593,400.08067 L 414.38419,410.24838 L 408.7859,409.46159 L 407.18206,413.72839 L 408.51355,415.60458 L 402.37056,419.35694 L 400.67594,423.29088 L 406.66763,423.56323 L 414.62628,424.13819 L 416.13933,425.65124 L 413.29479,425.65124 L 411.41861,428.85891 L 419.52856,430.55353 L 425.97416,429.43387 L 422.55467,426.19594 L 424.82424,424.31975 L 428.42531,425.83281 L 430.11992,429.43387 L 440.92311,429.61543 L 443.73739,428.46551 L 444.31235,430.19039 L 441.28624,432.8231 L 445.46226,433.00467 L 444.70574,434.91111 L 443.55582,436.2426 L 452.81569,436.2426 L 457.35485,437.75565 L 457.80876,438.36087 L 457.99033,434.6085 L 459.35208,433.06519 L 461.07696,432.03632 L 460.89539,431.00744 L 459.53364,429.64569 L 458.1719,429.64569 L 457.29433,428.61682 L 458.83764,427.22481 L 458.83764,426.71037 L 457.14302,425.86307 L 457.14302,424.50132 L 460.89539,424.68289 L 461.77296,423.98688 L 458.50477,420.90026 L 458.68633,417.2992 L 456.62858,415.60458 L 458.3232,412.18508 L 462.4387,409.43133 L 459.35208,407.37358 L 457.14302,409.09846 L 451.99865,410.27864 L 447.88315,409.7642 L 440.52972,406.70784 L 436.08135,406.85914 L 432.32898,405.16452 L 430.93697,403.25808 L 428.03191,400.02015 L 421.19292,397.11509 L 421.04161,397.05457 z "/> |
<path id="INSEE-D84" title="Vaucluse (84)" class="land departement paca departement84" d="M 428.09243,369.39599 L 425.42946,369.60781 L 423.37171,372.81548 L 423.91641,376.20472 L 427.12408,376.59811 L 426.57938,378.11116 L 424.09798,378.29273 L 421.2837,381.13727 L 420.52718,380.19917 L 421.07188,376.41655 L 419.95222,375.08506 L 414.8381,375.84159 L 413.83949,377.86907 L 414.38419,378.17169 L 417.59186,383.49763 L 417.59186,387.79469 L 423.22041,393.39298 L 423.22041,395.81386 L 421.04161,397.05457 L 421.19292,397.11509 L 428.03191,400.02015 L 430.93697,403.25808 L 432.32898,405.16452 L 436.08135,406.85914 L 440.52972,406.70784 L 447.88315,409.7642 L 451.99865,410.27864 L 457.14302,409.09846 L 459.26129,407.4341 L 459.53364,406.01183 L 455.59971,401.56346 L 451.30264,401.56346 L 451.30264,400.02015 L 452.84596,398.29527 L 452.84596,396.41909 L 449.42646,394.72447 L 449.09359,391.97071 L 450.96977,391.12341 L 450.96977,388.73278 L 448.91202,388.36965 L 448.76072,385.79746 L 448.73046,385.6159 L 447.00558,385.49485 L 444.16104,383.40684 L 443.40451,380.9557 L 438.10883,380.56231 L 434.14464,380.19917 L 433.75125,377.9296 L 435.08273,375.08506 L 432.63159,377.17307 L 428.84896,376.77968 L 428.09243,375.44819 L 430.72514,371.87739 L 428.09243,369.39599 z "/> |
<path id="INSEE-D04" title="Alpes-de-Haute-Provence (04)" class="land departement paca departement04" d="M 502.5043,352.93399 L 500.44655,356.02061 L 497.54149,357.74549 L 496.51262,359.80324 L 493.94043,359.95455 L 493.94043,361.83073 L 493.24443,362.8596 L 492.21555,365.43179 L 486.07257,365.28049 L 483.16751,363.73717 L 481.26106,365.09892 L 477.69026,364.91735 L 476.81269,366.1278 L 477.69026,366.1278 L 478.2047,369.36573 L 477.32713,369.72886 L 474.0892,367.67111 L 474.0892,366.46067 L 472.21301,364.91735 L 471.18414,364.91735 L 471.18414,366.64223 L 469.64083,366.9751 L 466.37264,368.85129 L 464.31489,372.30105 L 463.80045,373.99566 L 465.01089,374.32853 L 465.19246,377.08229 L 463.98201,377.08229 L 462.10583,375.35741 L 461.07696,375.53898 L 461.59139,377.08229 L 464.49645,380.32022 L 462.62027,381.01622 L 461.25852,380.16891 L 457.80876,380.16891 L 454.90371,382.89241 L 454.87344,382.86214 L 454.7524,383.9818 L 453.63274,382.65032 L 452.11969,381.31883 L 451.15134,384.16337 L 449.45672,385.67642 L 448.73046,385.6159 L 448.76072,385.79746 L 448.91202,388.36965 L 450.96977,388.73278 L 450.96977,391.12341 L 449.09359,391.97071 L 449.42646,394.72447 L 452.84596,396.41909 L 452.84596,398.29527 L 451.30264,400.02015 L 451.30264,401.56346 L 455.59971,401.56346 L 459.53364,406.01183 L 459.50338,406.10261 L 464.49645,404.46852 L 470.6697,408.58402 L 474.0892,406.01183 L 474.93651,404.28695 L 479.74801,402.74364 L 482.80437,404.80139 L 487.25275,401.56346 L 492.39712,401.74503 L 493.75887,400.35302 L 496.63366,400.23197 L 496.69419,400.20171 L 495.99818,398.47684 L 496.84549,397.44796 L 496.51262,396.08621 L 499.23611,396.08621 L 499.93212,395.23891 L 502.5043,393.8469 L 504.56205,395.23891 L 505.9238,394.36134 L 502.68587,391.45628 L 499.23611,388.21835 L 498.05593,387.85521 L 497.87437,385.28303 L 495.81662,382.22666 L 496.51262,377.77829 L 497.54149,375.35741 L 499.41768,373.8141 L 499.59924,371.42348 L 502.17143,370.06173 L 502.56483,369.91042 L 502.56483,366.24884 L 505.2278,365.88571 L 503.71474,364.55422 L 501.8083,363.97926 L 500.87021,361.52812 L 501.62673,359.8335 L 505.01597,356.23244 L 504.47127,353.56947 L 504.95545,353.05503 L 502.5043,352.93399 z "/> |
<path id="INSEE-D30" title="Gard (30)" class="land departement languedoc departement30" d="M 388.57153,369.09338 L 387.63344,370.90904 L 386.45326,371.93791 L 384.21394,372.30105 L 386.93744,375.2061 L 386.93744,379.14004 L 388.14788,379.47291 L 386.78613,381.01622 L 386.78613,383.92128 L 384.54681,387.34078 L 379.58401,386.82634 L 376.67895,384.10285 L 374.6212,384.61728 L 375.3172,386.3119 L 374.46989,387.52234 L 369.47682,388.55122 L 363.63644,384.64755 L 362.51679,385.64616 L 362.51679,388.33939 L 360.36825,388.85383 L 360.91295,391.00236 L 363.57592,391.54706 L 366.51124,391.54706 L 367.32829,395.26917 L 363.84827,396.873 L 363.84827,398.56762 L 366.57176,399.50571 L 366.57176,401.04902 L 367.7822,401.74503 L 368.81108,400.86746 L 370.17283,400.86746 L 370.86883,402.41077 L 372.92658,402.41077 L 373.95545,398.80971 L 375.65007,398.80971 L 378.22226,395.57178 L 381.30888,395.90465 L 381.82332,400.35302 L 383.0035,401.74503 L 384.90995,400.71615 L 388.14788,402.41077 L 389.35832,404.46852 L 394.98687,407.88802 L 397.04462,412.69952 L 397.04462,415.24145 L 393.44356,417.2992 L 391.11346,419.38721 L 394.01852,419.59903 L 394.01852,423.38166 L 398.34584,423.16983 L 400.67594,423.29088 L 402.37056,419.35694 L 408.51355,415.60458 L 407.18206,413.72839 L 408.7859,409.46159 L 414.38419,410.24838 L 415.74593,400.08067 L 423.22041,395.81386 L 423.22041,393.39298 L 417.59186,387.79469 L 417.59186,383.49763 L 414.38419,378.17169 L 407.6965,374.41932 L 407.18206,377.35464 L 404.48883,377.62699 L 403.70205,374.69167 L 401.00881,375.2061 L 400.49438,378.95847 L 398.34584,378.17169 L 393.80669,375.2061 L 391.65816,376.2955 L 391.65816,370.9393 L 388.57153,369.09338 z "/> |
<path id="INSEE-D11" title="Aude (11)" class="land departement languedoc departement11" d="M 318.91064,424.71315 L 318.63829,428.19317 L 315.15828,427.10377 L 311.40591,427.10377 L 311.67826,425.77228 L 309.80207,426.04463 L 305.80762,427.37612 L 304.47613,424.95524 L 301.7829,427.37612 L 302.59995,429.2523 L 299.63437,430.58379 L 299.11993,433.51911 L 296.69905,434.6085 L 298.84758,436.99912 L 298.30288,438.60296 L 307.6838,443.14211 L 308.47059,449.58771 L 308.47059,453.06773 L 309.01529,457.60689 L 304.20378,457.60689 L 302.8723,459.48307 L 309.01529,464.56692 L 312.4953,462.69074 L 316.76211,467.77459 L 316.12663,467.83511 L 316.94368,468.31929 L 324.62998,464.56692 L 322.75379,461.81317 L 322.60249,458.57524 L 340.54728,458.57524 L 340.21441,456.15436 L 344.32991,453.9453 L 349.11115,457.69767 L 351.59255,458.84759 L 351.44125,453.43086 L 351.65308,447.19709 L 349.3835,447.37866 L 347.47705,444.56438 L 348.99011,442.08298 L 352.19777,445.10908 L 355.04231,442.8395 L 356.94876,440.96332 L 357.19084,438.96609 L 354.76996,438.87531 L 353.92265,436.15182 L 351.53203,435.97025 L 349.29272,432.70206 L 347.56784,432.88362 L 345.54035,431.67318 L 345.17722,428.76812 L 344.14834,429.28256 L 344.66278,431.34031 L 342.27216,431.34031 L 342.09059,434.75981 L 338.51979,435.97025 L 336.79491,432.36919 L 334.40429,433.9125 L 332.34654,432.36919 L 331.31766,429.97857 L 333.04254,427.92082 L 332.2255,425.71176 L 332.01367,425.77228 L 326.38512,425.77228 L 320.51448,424.71315 L 318.91064,424.71315 z "/> |
<path id="INSEE-D34" title="Herault (34)" class="land departement languedoc departement34" d="M 378.22226,395.57178 L 375.65007,398.80971 L 373.95545,398.80971 L 372.92658,402.41077 L 370.86883,402.41077 L 370.17283,400.86746 L 368.81108,400.86746 L 367.7822,401.74503 L 366.57176,401.04902 L 366.57176,399.50571 L 363.84827,398.56762 L 363.84827,399.56623 L 360.6406,400.08067 L 359.03677,401.44242 L 359.5512,404.65009 L 356.61588,404.65009 L 353.68056,403.04625 L 352.07673,403.04625 L 352.07673,404.92243 L 352.34908,410.52072 L 349.14141,410.52072 L 347.53758,410.52072 L 346.44818,412.66926 L 339.48814,415.05988 L 336.82517,413.21396 L 335.22134,415.60458 L 334.43455,418.26755 L 337.36987,420.96078 L 336.28047,424.4408 L 332.2255,425.71176 L 333.04254,427.92082 L 331.31766,429.97857 L 332.34654,432.36919 L 334.40429,433.9125 L 336.79491,432.36919 L 338.51979,435.97025 L 342.09059,434.75981 L 342.27216,431.34031 L 344.66278,431.34031 L 344.14834,429.28256 L 345.17722,428.76812 L 345.54035,431.67318 L 347.56784,432.88362 L 349.29272,432.70206 L 351.53203,435.97025 L 353.92265,436.15182 L 354.76996,438.87531 L 357.19084,438.96609 L 357.31189,437.93722 L 364.12062,435.84921 L 364.87715,434.15459 L 370.17283,433.97302 L 371.86744,431.88501 L 382.09567,423.74479 L 388.51101,419.20564 L 391.11346,419.38721 L 393.44356,417.2992 L 397.04462,415.24145 L 397.04462,412.69952 L 394.98687,407.88802 L 389.35832,404.46852 L 388.14788,402.41077 L 384.90995,400.71615 L 383.0035,401.74503 L 381.82332,400.35302 L 381.30888,395.90465 L 378.22226,395.57178 z "/> |
<path id="INSEE-D66" title="Pyrenees-Orientales (66)" class="land departement languedoc departement66" d="M 344.32991,453.9453 L 340.21441,456.15436 L 340.54728,458.57524 L 322.60249,458.57524 L 322.75379,461.81317 L 324.62998,464.56692 L 316.94368,468.31929 L 316.12663,467.83511 L 309.80207,468.28903 L 309.01529,469.89286 L 305.80762,470.70991 L 303.65908,472.58609 L 297.78845,473.94784 L 298.12132,475.94507 L 300.96585,478.60804 L 306.62467,480.12109 L 306.80623,483.51033 L 309.83233,486.1733 L 312.10191,485.7799 L 315.33984,481.81571 L 319.30404,481.05918 L 325.53781,483.14719 L 330.83349,487.68635 L 332.34654,485.7799 L 333.67802,485.7799 L 335.00951,486.71799 L 336.12917,486.1733 L 336.31073,483.51033 L 341.99981,482.17884 L 343.87599,479.7277 L 346.72053,478.78961 L 350.68472,478.78961 L 353.16613,481.42231 L 356.19223,481.63414 L 356.19223,478.60804 L 354.67918,476.52003 L 352.01621,475.37011 L 351.59255,458.84759 L 349.11115,457.69767 L 344.32991,453.9453 z "/> |
<path id="INSEE-D63" title="Puy-de-Dome (63)" class="land departement auvergne departement63" d="M 342.96816,270.77529 L 340.39597,273.68035 L 340.21441,272.65148 L 338.15666,272.83304 L 338.15666,274.37636 L 336.97648,274.70923 L 335.76604,277.61429 L 334.22272,278.31029 L 331.34793,276.07097 L 331.62028,280.51935 L 333.13333,282.39553 L 333.88985,285.99659 L 331.62028,287.69121 L 331.07558,290.35418 L 328.98757,291.47384 L 325.3865,293.56185 L 325.74964,295.25647 L 330.10722,299.61405 L 330.50062,302.27703 L 328.77574,305.0913 L 328.77574,307.75427 L 329.92566,309.08576 L 330.50062,312.29343 L 330.13748,313.59465 L 335.9476,315.28927 L 337.49091,318.5272 L 340.54728,318.5272 L 341.75772,317.34702 L 343.81547,318.37589 L 344.84434,318.5272 L 347.41653,322.46113 L 350.14002,322.6427 L 350.83603,321.28095 L 351.59255,321.37173 L 352.37934,320.25208 L 355.79884,319.73764 L 357.67502,318.19433 L 359.73277,318.01276 L 359.73277,316.83258 L 361.09452,316.13658 L 361.45765,316.98389 L 362.30496,316.46945 L 363.6667,317.34702 L 366.05733,317.16545 L 368.11508,316.31814 L 369.47682,317.49832 L 371.02013,317.49832 L 372.23058,319.73764 L 374.10676,320.58495 L 375.13563,318.19433 L 376.49738,319.40477 L 379.4327,319.55607 L 380.46158,317.49832 L 382.15619,319.2232 L 384.54681,319.9192 L 385.30334,319.19294 L 383.82055,318.70876 L 383.24559,316.43919 L 386.84665,313.04995 L 385.15203,306.81618 L 380.21949,303.57825 L 378.16174,298.67596 L 375.89216,295.64986 L 376.46712,291.47384 L 378.16174,289.77922 L 375.13563,287.32808 L 375.22642,286.57155 L 372.56345,285.51242 L 371.71614,283.45467 L 368.81108,283.60597 L 366.57176,283.09153 L 366.23889,280.70091 L 364.51401,279.8536 L 362.30496,281.21535 L 359.73277,280.70091 L 358.00789,280.88248 L 352.19777,280.03517 L 347.41653,277.28142 L 347.0534,275.91967 L 345.02591,273.68035 L 346.38766,271.80417 L 345.87322,270.77529 L 342.96816,270.77529 z "/> |
<path id="INSEE-D65" title="Hautes-Pyrenees (65)" class="land departement midi departement65" d="M 226.88685,415.09014 L 225.01067,416.08875 L 225.34354,416.11901 L 228.55121,421.41469 L 226.4632,423.32114 L 227.97625,425.59072 L 230.24583,428.97995 L 228.36965,431.4311 L 225.34354,438.23983 L 220.22943,442.59741 L 221.56091,445.26039 L 220.41099,446.01691 L 217.59672,445.44195 L 216.80993,451.67572 L 215.29688,452.82564 L 214.99427,456.72932 L 215.47845,456.45697 L 218.68612,458.36341 L 222.46874,461.20795 L 222.83188,463.47752 L 225.85798,465.92867 L 228.33938,465.92867 L 234.57316,463.2657 L 237.20587,466.2918 L 240.80693,467.26015 L 242.13841,464.99058 L 243.83303,465.7471 L 247.49462,465.98919 L 247.25253,455.82148 L 249.15897,455.82148 L 250.85359,456.66879 L 252.06403,455.48861 L 251.88246,453.61243 L 254.27309,452.22042 L 253.42578,448.64962 L 252.3969,447.77205 L 250.33915,448.46805 L 251.36803,446.74318 L 250.85359,444.53412 L 247.76696,442.2948 L 247.94853,440.75149 L 249.67341,437.84643 L 251.88246,436.99912 L 251.88246,435.78868 L 253.24421,433.73093 L 254.15204,432.45997 L 250.70228,430.67457 L 246.07235,430.67457 L 245.37634,429.28256 L 242.98572,429.28256 L 242.28972,427.73925 L 240.08066,427.73925 L 239.38466,428.43525 L 236.81247,428.43525 L 236.66117,426.89194 L 234.60342,425.53019 L 235.29942,424.83419 L 235.63229,423.13957 L 235.11785,422.62514 L 234.08898,419.87138 L 231.84966,419.53851 L 229.64061,418.32807 L 229.79191,415.09014 L 226.88685,415.09014 z "/> |
<path id="INSEE-D40" title="Landes (40)" class="land departement aquitaine departement40" d="M 188.7277,362.7083 L 182.73601,365.79492 L 181.1927,365.85545 L 177.83373,383.8305 L 173.47614,400.47406 L 172.14465,406.91966 L 171.025,411.45882 L 168.21072,416.30058 L 173.65771,419.02407 L 178.62051,418.6912 L 181.52557,416.11901 L 183.91619,417.9952 L 182.55445,419.35694 L 183.58332,419.72008 L 184.43063,418.50964 L 188.7277,418.84251 L 191.11832,416.96632 L 195.56669,417.14789 L 197.29157,416.27032 L 200.01506,416.27032 L 200.71107,417.14789 L 202.92012,416.45189 L 204.97787,417.9952 L 207.73162,417.14789 L 211.33269,415.93745 L 211.84712,416.78476 L 217.32437,416.96632 L 220.04786,415.42301 L 218.71638,413.09291 L 220.04786,409.49185 L 221.92405,407.04071 L 221.34909,403.83304 L 222.86214,402.31999 L 220.62282,398.53736 L 222.49901,396.26778 L 224.58702,395.87439 L 226.4632,396.63091 L 229.12617,394.36134 L 230.06426,397.20587 L 231.00235,398.53736 L 233.09037,397.9624 L 232.9088,395.51125 L 233.51402,394.17977 L 233.0601,392.99959 L 233.57454,389.24722 L 235.63229,387.18947 L 234.60342,385.97903 L 232.3641,385.79746 L 229.79191,384.79885 L 226.03955,385.13172 L 225.34354,381.01622 L 222.95292,378.11116 L 221.92405,377.77829 L 222.28718,381.19779 L 222.28718,382.22666 L 219.01899,382.37797 L 215.59949,381.19779 L 214.90349,376.90072 L 212.51287,374.32853 L 210.81825,374.17723 L 210.63668,372.63392 L 208.7605,371.42348 L 205.67387,370.57617 L 206.52118,369.54729 L 206.52118,368.51842 L 205.49231,367.67111 L 204.31213,366.64223 L 200.86237,367.15667 L 198.83488,368.85129 L 197.44287,369.03285 L 195.23382,367.48954 L 191.96563,368.85129 L 190.42232,367.82241 L 191.81432,366.1278 L 191.96563,363.88848 L 188.7277,362.7083 z "/> |
<path id="INSEE-D33" title="Gironde (33)" class="land departement aquitaine departement33" d="M 190.11971,305.36365 L 187.0936,309.9028 L 186.15551,325.78984 L 183.70437,341.85845 L 181.97949,354.32599 L 181.79792,357.56392 L 183.12941,353.20634 L 185.76212,349.78684 L 189.54475,353.20634 L 189.93814,354.32599 L 191.0578,355.83905 L 186.33708,356.05087 L 185.58055,354.90095 L 183.70437,355.65748 L 183.31097,358.50202 L 181.22296,361.34655 L 181.22296,365.67388 L 181.1927,365.85545 L 182.73601,365.79492 L 188.7277,362.7083 L 191.96563,363.88848 L 191.81432,366.1278 L 190.42232,367.82241 L 191.96563,368.85129 L 195.23382,367.48954 L 197.44287,369.03285 L 198.83488,368.85129 L 200.86237,367.15667 L 204.31213,366.64223 L 205.49231,367.67111 L 206.52118,368.51842 L 206.52118,369.54729 L 205.67387,370.57617 L 208.7605,371.42348 L 210.63668,372.63392 L 210.81825,374.17723 L 212.51287,374.32853 L 214.90349,376.90072 L 215.59949,381.19779 L 219.01899,382.37797 L 222.28718,382.22666 L 222.28718,381.19779 L 221.92405,377.77829 L 222.95292,378.11116 L 224.88963,380.47152 L 227.91573,379.98735 L 229.30774,378.6256 L 229.12617,376.74942 L 227.91573,375.72054 L 228.27886,373.8141 L 230.15505,373.8141 L 232.03123,372.63392 L 231.18392,370.90904 L 230.66948,368.33685 L 232.03123,365.94623 L 234.93629,361.49786 L 236.66117,359.44011 L 238.20448,358.92567 L 238.53735,357.23105 L 236.4796,357.04949 L 235.63229,355.1733 L 236.29803,353.29712 L 238.71892,352.78268 L 240.41353,352.26824 L 242.41076,351.9959 L 242.28972,351.90511 L 242.13841,348.15274 L 244.0146,346.791 L 241.62398,345.24769 L 239.23335,348.15274 L 233.39298,348.33431 L 232.87854,346.9423 L 231.18392,346.09499 L 232.54567,344.37012 L 232.54567,342.49393 L 231.84966,341.46506 L 231.84966,340.43618 L 233.57454,339.40731 L 234.08898,336.35094 L 235.11785,333.59719 L 234.08898,332.05388 L 232.2128,332.05388 L 231.21418,330.8737 L 230.24583,332.90119 L 228.36965,331.5697 L 225.70667,332.90119 L 223.4371,332.53805 L 219.10977,328.18047 L 216.4468,327.9989 L 215.69027,321.94669 L 210.75773,321.37173 L 210.57616,318.5272 L 209.63807,319.46529 L 204.03978,319.46529 L 204.31213,320.67573 L 205.64361,326.15298 L 206.00675,331.63022 L 205.06865,333.14327 L 204.13056,328.60412 L 201.46759,318.22459 L 191.81432,309.50941 L 192.02615,305.54522 L 190.11971,305.36365 z "/> |
<path id="INSEE-D24" title="Dordogne (24)" class="land departement aquitaine departement24" d="M 256.54266,300.76397 L 254.84805,303.79008 L 252.18507,304.15321 L 252.00351,308.69236 L 243.10677,314.74457 L 242.9252,321.37173 L 239.5057,324.76097 L 237.62952,326.48585 L 233.84689,326.09245 L 231.75888,329.69352 L 231.21418,330.8737 L 232.2128,332.05388 L 234.08898,332.05388 L 235.11785,333.59719 L 234.08898,336.35094 L 233.57454,339.40731 L 231.84966,340.43618 L 231.84966,341.46506 L 232.54567,342.49393 L 232.54567,344.37012 L 231.18392,346.09499 L 232.87854,346.9423 L 233.39298,348.33431 L 239.23335,348.15274 L 241.62398,345.24769 L 244.0146,346.791 L 242.13841,348.15274 L 242.28972,351.90511 L 245.04347,353.81156 L 245.37634,357.38236 L 248.2814,358.41123 L 250.00628,356.86792 L 253.75865,356.86792 L 255.8164,355.1733 L 257.02684,355.35487 L 257.35971,356.71662 L 261.14234,356.71662 L 261.98965,355.68774 L 263.35139,355.86931 L 264.89471,357.56392 L 264.89471,358.77437 L 263.53296,359.62167 L 264.0474,360.83212 L 265.92358,360.98342 L 268.3142,358.77437 L 270.37195,358.77437 L 271.7337,360.31768 L 274.69928,361.55838 L 274.88085,361.0742 L 276.60572,359.37959 L 276.78729,356.53505 L 280.93305,356.17192 L 283.59602,352.38929 L 282.4461,351.9959 L 282.26454,349.93815 L 285.47221,349.54475 L 285.68403,347.66857 L 287.19708,346.70022 L 288.8917,343.67411 L 287.19708,341.79793 L 287.19708,339.70992 L 288.49831,338.59026 L 286.80369,335.92729 L 286.98526,331.78153 L 282.8395,331.96309 L 281.14488,330.81318 L 282.65793,328.93699 L 280.56992,327.24237 L 282.08297,325.33593 L 280.56992,324.5794 L 280.56992,321.94669 L 284.35255,318.5272 L 282.26454,316.83258 L 281.14488,313.98804 L 277.15042,313.41308 L 275.81894,312.47499 L 278.66347,311.14351 L 277.72538,309.84228 L 273.57962,309.26732 L 272.61127,305.48469 L 266.55906,304.90973 L 265.22758,306.81618 L 263.92635,307.17931 L 262.20148,304.90973 L 262.98826,302.82172 L 262.01991,300.94554 L 256.54266,300.76397 z "/> |
<path id="INSEE-D47" title="Lot-et-Garonne (47)" class="land departement aquitaine departement47" d="M 242.41076,351.9959 L 240.41353,352.26824 L 238.71892,352.78268 L 236.29803,353.29712 L 235.63229,355.1733 L 236.4796,357.04949 L 238.53735,357.23105 L 238.20448,358.92567 L 236.66117,359.44011 L 234.93629,361.49786 L 232.03123,365.94623 L 230.66948,368.33685 L 231.18392,370.90904 L 232.03123,372.63392 L 230.15505,373.8141 L 228.27886,373.8141 L 227.91573,375.72054 L 229.12617,376.74942 L 229.30774,378.6256 L 227.91573,379.98735 L 224.88963,380.47152 L 225.34354,381.01622 L 226.03955,385.13172 L 229.79191,384.79885 L 232.3641,385.79746 L 234.60342,385.97903 L 235.63229,387.18947 L 233.57454,389.24722 L 233.0601,392.99959 L 233.51402,394.17977 L 234.24028,392.66672 L 236.4796,394.57316 L 239.5057,391.54706 L 240.83719,393.42324 L 244.04486,392.84828 L 247.46435,392.48515 L 248.97741,389.82218 L 254.63622,389.27748 L 257.48075,392.09176 L 258.44911,391.15367 L 260.32529,390.57871 L 259.56877,387.946 L 262.4133,387.18947 L 266.01436,386.43295 L 265.22758,384.16337 L 266.3775,382.83188 L 267.31559,379.23082 L 265.22758,376.96124 L 266.55906,372.63392 L 269.4036,374.32853 L 273.57962,373.57201 L 271.67318,369.39599 L 270.16013,363.73717 L 273.94275,363.55561 L 274.69928,361.55838 L 271.7337,360.31768 L 270.37195,358.77437 L 268.3142,358.77437 L 265.92358,360.98342 L 264.0474,360.83212 L 263.53296,359.62167 L 264.89471,358.77437 L 264.89471,357.56392 L 263.35139,355.86931 L 261.98965,355.68774 L 261.14234,356.71662 L 257.35971,356.71662 L 257.02684,355.35487 L 255.8164,355.1733 L 253.75865,356.86792 L 250.00628,356.86792 L 248.2814,358.41123 L 245.37634,357.38236 L 245.04347,353.81156 L 242.41076,351.9959 z "/> |
<path id="INSEE-D46" title="Lot (46)" class="land departement midi departement46" d="M 292.97694,336.44173 L 288.95222,338.31791 L 288.37727,338.40869 L 288.49831,338.59026 L 287.19708,339.70992 L 287.19708,341.79793 L 288.8917,343.67411 L 287.19708,346.70022 L 285.68403,347.66857 L 285.47221,349.54475 L 282.26454,349.93815 L 282.4461,351.9959 L 283.59602,352.38929 L 280.93305,356.17192 L 276.78729,356.53505 L 276.60572,359.37959 L 274.88085,361.0742 L 273.94275,363.55561 L 270.16013,363.73717 L 271.67318,369.39599 L 273.27701,372.90627 L 275.69789,372.81548 L 275.8492,373.8141 L 274.48745,375.35741 L 275.51633,377.41516 L 277.05964,377.41516 L 278.75426,379.29134 L 280.29757,379.29134 L 281.50801,377.9296 L 281.84088,378.29273 L 281.84088,379.98735 L 282.35532,382.22666 L 285.95638,382.37797 L 288.86144,379.29134 L 290.40475,379.14004 L 290.91919,379.98735 L 291.7665,381.86353 L 293.15851,381.86353 L 293.67295,378.44403 L 296.578,378.80717 L 298.27262,376.74942 L 301.02638,377.41516 L 305.14187,375.53898 L 305.17214,375.90211 L 306.50362,374.5101 L 304.77874,371.93791 L 304.113,368.51842 L 306.32206,366.64223 L 307.35093,366.9751 L 310.43755,363.55561 L 312.13217,363.73717 L 312.82818,362.8596 L 316.24767,362.8596 L 317.45811,361.49786 L 317.79098,360.43872 L 316.24767,360.2269 L 317.30681,357.01923 L 314.88593,355.96009 L 317.30681,350.33154 L 314.09914,347.94092 L 313.00974,340.98088 L 310.07442,340.19409 L 307.92589,342.31237 L 306.86675,340.43618 L 303.65908,343.64385 L 301.51055,343.9162 L 297.78845,338.59026 L 292.97694,336.44173 z "/> |
<path id="INSEE-D09" title="Ariege (09)" class="land departement midi departement09" d="M 283.05132,432.36919 L 281.84088,433.2165 L 281.32645,434.24537 L 283.71707,435.97025 L 284.41307,437.18069 L 283.89863,438.1793 L 279.78313,438.54244 L 278.60295,440.23705 L 278.75426,440.75149 L 280.29757,441.26593 L 281.17514,442.47637 L 280.14627,444.17099 L 278.93582,444.01968 L 277.05964,442.2948 L 274.82032,441.62906 L 272.61127,441.78037 L 268.67734,444.17099 L 268.82864,447.43918 L 269.85752,448.13518 L 269.19177,450.67711 L 264.71314,451.88755 L 263.01852,453.9453 L 263.01852,457.3648 L 263.71453,458.39367 L 262.11069,459.87646 L 263.13957,460.45142 L 268.97995,461.57108 L 271.46135,461.57108 L 274.66902,465.7471 L 282.80924,465.35371 L 286.0169,470.46782 L 288.86144,469.3179 L 297.18322,470.46782 L 297.78845,473.94784 L 303.65908,472.58609 L 305.80762,470.70991 L 309.01529,469.89286 L 309.80207,468.28903 L 316.76211,467.77459 L 312.4953,462.69074 L 309.01529,464.56692 L 302.8723,459.48307 L 304.20378,457.60689 L 309.01529,457.60689 L 308.47059,453.06773 L 308.47059,449.58771 L 307.6838,443.14211 L 298.30288,438.60296 L 298.84758,436.99912 L 297.06218,435.0019 L 295.54913,435.63738 L 293.49138,435.97025 L 289.70875,434.24537 L 288.67988,433.9125 L 290.22319,435.78868 L 289.55745,437.332 L 286.28925,436.99912 L 286.13795,435.27425 L 284.2315,432.70206 L 283.05132,432.36919 z "/> |
<path id="INSEE-D32" title="Gers (32)" class="land departement midi departement32" d="M 254.63622,389.27748 L 248.97741,389.82218 L 247.46435,392.48515 L 244.04486,392.84828 L 240.83719,393.42324 L 239.5057,391.54706 L 236.4796,394.57316 L 234.24028,392.66672 L 232.9088,395.51125 L 233.09037,397.9624 L 231.00235,398.53736 L 230.06426,397.20587 L 229.12617,394.36134 L 226.4632,396.63091 L 224.58702,395.87439 L 222.49901,396.26778 L 220.62282,398.53736 L 222.86214,402.31999 L 221.34909,403.83304 L 221.92405,407.04071 L 220.04786,409.49185 L 218.71638,413.09291 L 220.22943,415.75588 L 225.01067,416.08875 L 226.88685,415.09014 L 229.79191,415.09014 L 229.64061,418.32807 L 231.84966,419.53851 L 234.08898,419.87138 L 235.11785,422.62514 L 235.63229,423.13957 L 235.29942,424.83419 L 234.60342,425.53019 L 236.66117,426.89194 L 236.81247,428.43525 L 239.38466,428.43525 L 240.08066,427.73925 L 242.28972,427.73925 L 242.98572,429.28256 L 245.37634,429.28256 L 246.07235,430.67457 L 250.70228,430.67457 L 254.15204,432.45997 L 254.45465,432.03632 L 256.33084,431.00744 L 259.75033,426.55907 L 266.10515,427.07351 L 268.82864,428.94969 L 269.70621,427.73925 L 271.06796,423.65401 L 272.76257,419.72008 L 276.36364,418.17676 L 278.08852,417.48076 L 277.57408,415.93745 L 275.8492,415.75588 L 275.18346,414.06126 L 273.79145,414.06126 L 271.58239,411.82195 L 271.7337,410.27864 L 268.82864,407.37358 L 268.3142,405.52765 L 266.43802,406.3447 L 265.92358,405.31583 L 267.13402,403.43964 L 265.74202,402.0779 L 265.74202,399.68728 L 264.56184,398.47684 L 260.77921,398.29527 L 260.77921,396.08621 L 262.83696,394.5429 L 262.83696,392.81802 L 265.07627,391.78915 L 263.86583,391.12341 L 262.50409,391.78915 L 259.75033,391.78915 L 258.90302,391.00236 L 258.44911,391.15367 L 257.48075,392.09176 L 254.63622,389.27748 z "/> |
<path id="INSEE-D31" title="Haute-Garonne (31)" class="land departement midi departement31" d="M 290.58632,399.50571 L 287.83257,400.53459 L 286.98526,401.89633 L 285.95638,400.71615 L 284.0802,400.53459 L 283.71707,402.25946 L 282.53689,402.74364 L 284.2315,403.62121 L 283.05132,405.49739 L 278.75426,406.70784 L 276.87807,404.46852 L 275.18346,404.46852 L 273.79145,405.31583 L 268.82864,405.31583 L 268.3142,405.52765 L 268.82864,407.37358 L 271.7337,410.27864 L 271.58239,411.82195 L 273.79145,414.06126 L 275.18346,414.06126 L 275.8492,415.75588 L 277.57408,415.93745 L 278.08852,417.48076 L 276.36364,418.17676 L 272.76257,419.72008 L 271.06796,423.65401 L 269.70621,427.73925 L 268.82864,428.94969 L 266.10515,427.07351 L 259.75033,426.55907 L 256.33084,431.00744 L 254.45465,432.03632 L 253.24421,433.73093 L 251.88246,435.78868 L 251.88246,436.99912 L 249.67341,437.84643 L 247.94853,440.75149 L 247.76696,442.2948 L 250.85359,444.53412 L 251.36803,446.74318 L 250.33915,448.46805 L 252.3969,447.77205 L 253.42578,448.64962 L 254.27309,452.22042 L 251.88246,453.61243 L 252.06403,455.48861 L 250.85359,456.66879 L 249.15897,455.82148 L 247.25253,455.82148 L 247.49462,465.98919 L 255.18092,466.50363 L 255.57431,457.21349 L 258.20702,457.60689 L 262.11069,459.87646 L 263.71453,458.39367 L 263.01852,457.3648 L 263.01852,453.9453 L 264.71314,451.88755 L 269.19177,450.67711 L 269.85752,448.13518 L 268.82864,447.43918 L 268.67734,444.17099 L 272.61127,441.78037 L 274.82032,441.62906 L 277.05964,442.2948 L 278.93582,444.01968 L 280.14627,444.17099 L 281.17514,442.47637 L 280.29757,441.26593 L 278.75426,440.75149 L 278.60295,440.23705 L 279.78313,438.54244 L 283.89863,438.1793 L 284.41307,437.18069 L 283.71707,435.97025 L 281.32645,434.24537 L 281.84088,433.2165 L 283.05132,432.36919 L 284.2315,432.70206 L 286.13795,435.27425 L 286.28925,436.99912 L 289.55745,437.332 L 290.22319,435.78868 L 288.67988,433.9125 L 289.70875,434.24537 L 293.49138,435.97025 L 295.54913,435.63738 L 297.06218,435.0019 L 296.69905,434.6085 L 299.11993,433.51911 L 299.63437,430.58379 L 302.59995,429.2523 L 301.7829,427.37612 L 304.47613,424.95524 L 305.80762,427.37612 L 309.80207,426.04463 L 310.5586,425.92359 L 310.61912,424.68289 L 310.61912,422.262 L 308.56137,422.62514 L 305.98918,421.92913 L 303.74987,419.20564 L 302.90256,417.9952 L 298.45419,416.11901 L 297.42531,414.5757 L 298.78706,414.06126 L 298.78706,412.18508 L 297.42531,410.64177 L 295.70043,407.88802 L 295.54913,405.49739 L 295.03469,405.16452 L 292.97694,402.74364 L 292.12963,400.20171 L 290.58632,399.50571 z "/> |
<path id="INSEE-D81" title="Tarn (81)" class="land departement midi departement81" d="M 315.58193,384.43572 L 312.31374,384.61728 L 310.10468,386.82634 L 309.40868,385.28303 L 307.86537,386.1606 L 307.71406,385.79746 L 306.83649,386.67503 L 304.113,387.70391 L 301.87368,389.06566 L 296.06357,389.76166 L 295.36756,392.66672 L 297.60688,392.66672 L 295.36756,394.72447 L 294.33869,396.60065 L 291.10076,396.60065 L 292.79538,398.47684 L 291.82702,400.08067 L 292.12963,400.20171 L 292.97694,402.74364 L 295.03469,405.16452 L 295.54913,405.49739 L 295.70043,407.88802 L 297.42531,410.64177 L 298.78706,412.18508 L 298.78706,414.06126 L 297.42531,414.5757 L 298.45419,416.11901 L 302.90256,417.9952 L 303.74987,419.20564 L 305.98918,421.92913 L 308.56137,422.62514 L 310.61912,422.262 L 310.61912,424.68289 L 310.5586,425.92359 L 311.67826,425.77228 L 311.40591,427.10377 L 315.15828,427.10377 L 318.63829,428.19317 L 318.91064,424.71315 L 320.51448,424.71315 L 326.38512,425.77228 L 332.01367,425.77228 L 336.28047,424.4408 L 337.36987,420.96078 L 334.43455,418.26755 L 335.22134,415.60458 L 336.82517,413.21396 L 339.48814,415.05988 L 346.44818,412.66926 L 347.53758,410.52072 L 343.99704,408.25115 L 342.45372,407.88802 L 341.42485,409.24976 L 339.3671,409.7642 L 336.09891,408.06958 L 332.67941,403.62121 L 332.67941,401.74503 L 330.80323,398.29527 L 330.98479,396.75196 L 329.44148,392.81802 L 326.53642,391.45628 L 324.47867,387.85521 L 318.81986,386.82634 L 315.58193,384.43572 z "/> |
<path id="INSEE-D38" title="Isere (38)" class="land departement rhone-alpes departement38" d="M 438.65353,289.35557 L 437.41283,290.8081 L 436.17213,294.49994 L 433.69072,295.74064 L 431.02775,293.25924 L 429.18183,293.25924 L 428.97,295.95247 L 431.66324,298.22205 L 427.54774,303.54799 L 422.19153,304.78869 L 418.07603,306.24122 L 420.739,308.90419 L 421.37449,310.14489 L 417.25899,312.20264 L 416.83533,318.16407 L 416.71429,318.22459 L 417.86421,320.61521 L 421.16266,321.64408 L 423.43224,320.82704 L 426.09521,318.98111 L 429.60549,321.85591 L 432.48028,321.85591 L 434.53803,324.73071 L 433.69072,326.78846 L 434.11438,329.69352 L 433.0855,332.56831 L 433.50916,333.59719 L 434.93143,333.17354 L 438.22988,334.20241 L 442.55721,335.44311 L 444.40313,334.20241 L 445.22018,332.78014 L 445.85566,332.78014 L 446.03722,348.18301 L 447.0661,349.21188 L 449.75933,349.21188 L 452.21047,350.66441 L 454.0564,352.11694 L 455.93258,352.29851 L 457.14302,353.32738 L 460.56252,353.72077 L 460.80461,353.14581 L 459.29155,352.38929 L 459.29155,350.11971 L 464.01228,350.11971 L 465.52533,348.60666 L 464.58723,346.91204 L 467.03838,345.0056 L 468.76326,345.76212 L 471.2144,343.67411 L 475.54173,344.43064 L 477.05478,342.73602 L 480.65584,342.91759 L 480.65584,338.77183 L 479.14279,338.0153 L 478.38626,335.56416 L 474.42207,335.17076 L 473.84711,334.23267 L 474.60364,330.26848 L 475.93512,329.11856 L 474.84572,327.63577 L 472.78797,326.39507 L 471.54727,327.63577 L 471.97093,325.97141 L 471.97093,324.33732 L 470.30657,322.67296 L 471.15388,318.76929 L 472.9998,317.74041 L 472.78797,315.07744 L 468.8843,311.17377 L 467.43177,311.17377 L 466.4029,312.59604 L 463.95175,309.32784 L 462.49922,309.50941 L 461.25852,312.20264 L 462.10583,313.83674 L 461.47035,314.47222 L 459.83625,313.23152 L 455.08527,312.20264 L 452.84596,308.08714 L 452.84596,306.42279 L 450.57638,303.97164 L 450.33429,302.91251 L 442.76903,293.68289 L 441.92172,291.01992 L 440.28763,289.56739 L 438.65353,289.35557 z "/> |
<path id="INSEE-D07" title="Ardeche (07)" class="land departement rhone-alpes departement07" d="M 416.71429,318.22459 L 412.32644,320.82704 L 411.47913,324.54914 L 408.21094,325.15436 L 406.4558,325.63854 L 406.51632,325.72932 L 405.39666,330.26848 L 402.73369,331.38813 L 401.61403,333.29458 L 402.37056,335.74572 L 402.91526,337.07721 L 400.10098,337.07721 L 399.88916,340.64801 L 396.86305,340.85984 L 395.35,345.58056 L 390.81085,345.58056 L 385.90856,349.18162 L 383.18507,353.50895 L 383.63898,354.08391 L 384.97047,361.04394 L 388.17814,364.52396 L 387.63344,368.51842 L 391.65816,370.9393 L 391.65816,376.2955 L 393.80669,375.2061 L 398.34584,378.17169 L 400.49438,378.95847 L 401.00881,375.2061 L 403.70205,374.69167 L 404.48883,377.62699 L 407.18206,377.35464 L 407.6965,374.41932 L 413.83949,377.86907 L 414.8381,375.84159 L 417.44055,375.44819 L 417.65238,371.45374 L 417.04716,370.60643 L 416.23011,370.42486 L 416.23011,368.97233 L 416.83533,367.5198 L 415.80646,365.88571 L 416.41168,362.19386 L 418.89308,359.2888 L 418.89308,355.20356 L 417.86421,350.45258 L 419.71013,350.05919 L 420.13378,348.00144 L 421.97971,344.49116 L 423.00858,341.82819 L 421.37449,337.71269 L 420.34561,334.41424 L 418.89308,328.66464 L 418.89308,320.94808 L 417.86421,320.61521 L 416.71429,318.22459 z "/> |
<path id="INSEE-D26" title="Drome (26)" class="land departement rhone-alpes departement26" d="M 426.09521,318.98111 L 423.43224,320.82704 L 421.16266,321.64408 L 418.89308,320.94808 L 418.89308,328.66464 L 420.34561,334.41424 L 421.37449,337.71269 L 423.00858,341.82819 L 421.97971,344.49116 L 420.13378,348.00144 L 419.71013,350.05919 L 417.86421,350.45258 L 418.89308,355.20356 L 418.89308,359.2888 L 416.41168,362.19386 L 415.80646,365.88571 L 416.83533,367.5198 L 416.23011,368.97233 L 416.23011,370.42486 L 417.04716,370.60643 L 417.65238,371.45374 L 417.44055,375.44819 L 419.95222,375.08506 L 421.07188,376.41655 L 420.52718,380.19917 L 421.2837,381.13727 L 424.09798,378.29273 L 426.57938,378.11116 L 427.12408,376.59811 L 423.91641,376.20472 L 423.37171,372.81548 L 425.42946,369.60781 L 428.09243,369.39599 L 430.72514,371.87739 L 428.09243,375.44819 L 428.84896,376.77968 L 432.63159,377.17307 L 435.08273,375.08506 L 433.75125,377.9296 L 434.14464,380.19917 L 438.10883,380.56231 L 443.40451,380.9557 L 444.16104,383.40684 L 447.00558,385.49485 L 449.45672,385.67642 L 451.15134,384.16337 L 452.11969,381.31883 L 453.63274,382.65032 L 454.7524,383.9818 L 455.50893,376.96124 L 453.63274,376.59811 L 452.48282,374.14697 L 446.06749,372.42209 L 445.2807,369.21442 L 447.58054,367.70137 L 445.67409,366.36988 L 446.06749,364.67527 L 449.09359,364.85683 L 451.7263,366.18832 L 453.81431,363.73717 L 451.7263,362.04256 L 451.90786,359.77298 L 453.05778,356.17192 L 457.02198,355.77852 L 460.22965,354.4773 L 460.56252,353.72077 L 457.14302,353.32738 L 455.93258,352.29851 L 454.0564,352.11694 L 452.21047,350.66441 L 449.75933,349.21188 L 447.0661,349.21188 L 446.03722,348.18301 L 445.85566,332.78014 L 445.22018,332.78014 L 444.40313,334.20241 L 442.55721,335.44311 L 438.22988,334.20241 L 434.93143,333.17354 L 433.50916,333.59719 L 433.0855,332.56831 L 434.11438,329.69352 L 433.69072,326.78846 L 434.53803,324.73071 L 432.48028,321.85591 L 429.60549,321.85591 L 426.09521,318.98111 z "/> |
<path id="INSEE-D19" title="Correze (19)" class="land departement limousin departement19" d="M 310.67964,298.01022 L 309.8626,300.06797 L 306.77597,300.67319 L 305.56553,302.73094 L 304.113,302.73094 L 302.05525,302.12572 L 300.60272,304.57686 L 298.3634,304.78869 L 296.91088,307.45166 L 295.06495,307.45166 L 293.61242,308.90419 L 289.92058,308.48054 L 288.67988,310.53829 L 287.25761,310.35672 L 284.7762,313.44334 L 282.50663,312.59604 L 281.44749,314.74457 L 282.26454,316.83258 L 284.35255,318.5272 L 280.56992,321.94669 L 280.56992,324.5794 L 282.08297,325.33593 L 280.56992,327.24237 L 282.65793,328.93699 L 281.14488,330.81318 L 282.8395,331.96309 L 286.98526,331.78153 L 286.80369,335.92729 L 288.37727,338.40869 L 288.95222,338.31791 L 292.97694,336.44173 L 297.78845,338.59026 L 301.51055,343.9162 L 303.65908,343.64385 L 306.86675,340.43618 L 307.92589,342.31237 L 310.07442,340.19409 L 313.00974,340.98088 L 313.10053,341.61636 L 315.55167,339.89148 L 314.79514,338.0153 L 313.64522,336.86538 L 315.15828,334.9892 L 316.67133,334.9892 L 317.63968,331.96309 L 318.39621,330.45004 L 317.82125,327.03055 L 320.27239,323.64131 L 323.69189,321.5533 L 323.87345,316.25762 L 325.56807,317.19571 L 327.47451,319.28372 L 329.3507,319.28372 L 330.50062,317.95224 L 329.56253,315.68266 L 330.50062,312.29343 L 329.92566,309.08576 L 328.77574,307.75427 L 328.77574,305.0913 L 330.50062,302.27703 L 330.10722,299.61405 L 329.68357,299.1904 L 327.77712,300.67319 L 324.05502,300.67319 L 322.84458,302.51911 L 320.575,302.51911 L 318.72908,300.67319 L 317.88177,299.43249 L 313.16105,299.43249 L 312.13217,298.01022 L 310.67964,298.01022 z "/> |
<path id="INSEE-D23" title="Creuse (23)" class="land departement limousin departement23" d="M 301.35925,259.51819 L 300.23959,262.54429 L 296.82009,262.36273 L 296.06357,261.96934 L 293.79399,262.18116 L 292.09937,261.03124 L 288.83118,264.78361 L 288.8917,267.56763 L 286.62213,272.07652 L 287.04578,274.3461 L 289.49692,274.95132 L 291.16128,279.06682 L 292.79538,280.73117 L 292.19015,288.53852 L 295.67017,287.50964 L 297.1227,289.35557 L 294.85313,291.20149 L 294.85313,293.07767 L 296.69905,293.25924 L 299.9975,293.07767 L 301.02638,291.62514 L 301.84342,291.62514 L 301.45003,294.10655 L 304.113,295.31699 L 306.5944,296.98135 L 306.5944,298.01022 L 305.14187,298.01022 L 305.56553,300.46136 L 306.53388,301.06658 L 306.77597,300.67319 L 309.8626,300.06797 L 310.67964,298.01022 L 312.13217,298.01022 L 313.16105,299.43249 L 317.88177,299.43249 L 318.72908,300.67319 L 320.575,302.51911 L 322.84458,302.51911 L 324.05502,300.67319 L 327.77712,300.67319 L 329.68357,299.1904 L 325.74964,295.25647 L 325.3865,293.56185 L 328.98757,291.47384 L 331.07558,290.35418 L 331.62028,287.69121 L 333.88985,285.99659 L 333.13333,282.39553 L 331.62028,280.51935 L 331.25714,274.64871 L 329.16913,269.74642 L 327.08112,268.98989 L 325.56807,266.32692 L 324.23658,268.02154 L 322.93536,266.32692 L 322.93536,264.05735 L 320.66578,260.84968 L 314.43201,261.6062 L 310.83095,260.66811 L 301.35925,259.51819 z "/> |
<path id="INSEE-D87" title="Haute-Vienne (87)" class="land departement limousin departement87" d="M 285.29064,262.36273 L 283.59602,264.05735 L 278.84504,263.69421 L 278.30034,263.57317 L 274.69928,264.23891 L 272.61127,265.96379 L 272.61127,268.23337 L 268.46551,268.41493 L 266.01436,271.25947 L 264.50131,272.37913 L 265.80254,273.89218 L 265.62097,279.00629 L 264.68288,280.70091 L 266.19593,282.39553 L 268.82864,282.60736 L 269.4036,285.24007 L 269.58517,286.93468 L 266.19593,287.69121 L 264.50131,288.26617 L 264.86445,292.98689 L 262.59487,294.49994 L 260.68842,295.0749 L 259.75033,297.73787 L 258.23728,297.91944 L 257.6018,300.79423 L 262.01991,300.94554 L 262.98826,302.82172 L 262.20148,304.90973 L 263.92635,307.17931 L 265.22758,306.81618 L 266.55906,304.90973 L 272.61127,305.48469 L 273.57962,309.26732 L 277.72538,309.84228 L 278.66347,311.14351 L 275.81894,312.47499 L 277.15042,313.41308 L 281.14488,313.98804 L 281.44749,314.74457 L 282.50663,312.59604 L 284.7762,313.44334 L 287.25761,310.35672 L 288.67988,310.53829 L 289.92058,308.48054 L 293.61242,308.90419 L 295.06495,307.45166 L 296.91088,307.45166 L 298.3634,304.78869 L 300.60272,304.57686 L 302.05525,302.12572 L 304.113,302.73094 L 305.56553,302.73094 L 306.53388,301.06658 L 305.56553,300.46136 L 305.14187,298.01022 L 306.5944,298.01022 L 306.5944,296.98135 L 304.113,295.31699 L 301.45003,294.10655 L 301.84342,291.62514 L 301.02638,291.62514 L 299.9975,293.07767 L 296.69905,293.25924 L 294.85313,293.07767 L 294.85313,291.20149 L 297.1227,289.35557 L 295.67017,287.50964 L 292.19015,288.53852 L 292.79538,280.73117 L 291.16128,279.06682 L 289.49692,274.95132 L 287.04578,274.3461 L 286.62213,272.07652 L 288.8917,267.56763 L 288.83118,264.78361 L 288.31674,265.38883 L 285.29064,262.36273 z "/> |
<path id="INSEE-D16" title="Charente (16)" class="land departement poitou departement16" d="M 253.09291,275.98019 L 251.45881,277.22089 L 251.67064,279.91413 L 250.64176,280.73117 L 247.7367,279.06682 L 244.86191,280.09569 L 241.56345,280.30752 L 239.08205,277.28142 L 238.29526,277.43272 L 234.99681,279.06682 L 232.51541,279.7023 L 232.51541,281.12457 L 231.09314,282.78892 L 231.48653,283.8178 L 229.64061,284.84667 L 228.00651,290.8081 L 227.58286,294.71177 L 226.16059,295.31699 L 224.10284,295.13542 L 223.67919,294.10655 L 221.40961,294.10655 L 220.19917,295.13542 L 217.50594,295.13542 L 215.23636,296.34586 L 216.90072,296.98135 L 217.11254,301.30867 L 217.92959,301.49024 L 216.47706,303.1546 L 218.14142,304.18347 L 220.38073,306.24122 L 221.62144,308.29897 L 223.07397,309.72124 L 222.65031,311.77899 L 221.83326,312.59604 L 223.07397,313.83674 L 223.07397,315.28927 L 220.59256,317.34702 L 221.62144,318.16407 L 223.07397,318.58772 L 223.07397,318.98111 L 221.01622,319.79816 L 221.19778,320.82704 L 222.43848,321.46252 L 226.34216,320.82704 L 228.00651,322.67296 L 229.24722,324.33732 L 233.27193,327.06081 L 233.84689,326.09245 L 237.62952,326.48585 L 239.5057,324.76097 L 242.9252,321.37173 L 243.10677,314.74457 L 252.00351,308.69236 L 252.18507,304.15321 L 254.84805,303.79008 L 256.54266,300.76397 L 257.6018,300.79423 L 258.23728,297.91944 L 259.75033,297.73787 L 260.68842,295.0749 L 262.59487,294.49994 L 264.86445,292.98689 L 264.50131,288.26617 L 266.19593,287.69121 L 269.58517,286.93468 L 269.4036,285.24007 L 268.82864,282.60736 L 266.19593,282.39553 L 264.68288,280.70091 L 265.62097,279.00629 L 265.68149,277.46298 L 263.98688,276.61567 L 260.71868,276.61567 L 259.26616,278.24977 L 255.75588,279.7023 L 254.54544,278.4616 L 253.09291,275.98019 z "/> |
<path id="INSEE-D79" title="Deux-Sevres (79)" class="land departement poitou departement79" d="M 229.30774,222.26687 L 224.19362,222.44843 L 219.4729,223.38652 L 214.35879,223.77992 L 214.35879,226.41263 L 211.72608,228.13751 L 205.85544,226.80602 L 201.89125,228.50064 L 203.76743,231.16361 L 203.76743,233.43319 L 208.30658,237.21581 L 207.18693,239.66696 L 210.21303,243.05619 L 208.88154,244.78107 L 210.75773,247.59535 L 211.33269,252.89103 L 210.21303,254.40408 L 211.54451,256.67366 L 210.21303,259.15506 L 210.39459,260.66811 L 211.90765,259.51819 L 213.78383,261.42464 L 211.15112,263.11925 L 210.21303,264.23891 L 208.12502,264.81387 L 205.67387,265.96379 L 205.49231,265.81249 L 205.58309,268.5965 L 207.64084,270.83582 L 207.64084,272.07652 L 210.72747,274.3461 L 214.63114,274.55792 L 217.29411,278.03794 L 221.62144,277.64455 L 225.13172,280.09569 L 227.79469,281.33639 L 228.21834,283.39414 L 229.70113,284.81641 L 231.48653,283.8178 L 231.09314,282.78892 L 232.51541,281.12457 L 232.51541,279.7023 L 234.99681,279.06682 L 238.29526,277.43272 L 241.77528,276.8275 L 242.41076,274.95132 L 239.5057,274.13427 L 238.08344,271.86469 L 239.11231,269.41355 L 240.35301,267.96102 L 240.35301,264.87439 L 239.11231,264.05735 L 237.47821,264.87439 L 237.47821,265.90327 L 236.63091,267.14397 L 234.99681,265.29805 L 234.78498,264.05735 L 235.42047,262.63508 L 233.96794,261.6062 L 233.96794,257.27888 L 233.15089,257.06705 L 233.15089,255.61452 L 234.39159,253.55677 L 234.57316,252.52789 L 235.42047,250.28858 L 234.78498,248.83605 L 232.72723,248.019 L 234.78498,244.93238 L 235.42047,243.29828 L 235.42047,242.26941 L 233.96794,240.60505 L 233.96794,239.99983 L 234.78498,238.5473 L 234.17976,237.51842 L 235.42047,236.09616 L 234.39159,233.82658 L 233.75611,230.52813 L 233.54428,228.47038 L 231.91019,228.6822 L 231.60758,224.02201 L 231.21418,224.71801 L 229.8827,223.59835 L 229.30774,222.26687 z "/> |
<path id="INSEE-D22" title="Cotes-d'Armor (22)" class="land departement bretagne departement22" d="M 120.91273,119.43989 L 119.18785,120.77138 L 114.86053,121.31607 L 113.89217,122.64756 L 110.86607,120.37798 L 106.90188,123.04095 L 108.41493,125.0987 L 105.78222,128.69977 L 105.66117,128.63924 L 104.57178,133.7231 L 106.90188,133.8744 L 106.75057,135.90189 L 108.47545,136.99129 L 106.90188,138.56486 L 105.81248,139.35165 L 105.96379,141.19757 L 108.32414,141.98436 L 106.11509,142.61984 L 106.11509,144.94994 L 107.53736,146.82612 L 107.83997,152.30337 L 106.90188,153.24146 L 107.68866,156.05573 L 110.65424,156.84252 L 110.95685,158.38583 L 112.83304,158.53714 L 114.40661,157.44774 L 115.3447,158.38583 L 118.94577,159.95941 L 121.91135,158.38583 L 122.66787,156.84252 L 125.17954,156.66096 L 127.99381,159.17262 L 130.65678,158.53714 L 132.98688,160.8975 L 134.07628,160.8975 L 135.16568,162.28951 L 137.37473,162.28951 L 138.13126,161.20011 L 139.06935,163.2276 L 141.42971,164.16569 L 144.39529,162.28951 L 144.39529,160.26202 L 146.57409,159.47523 L 147.96609,159.47523 L 149.69097,162.62238 L 153.44334,162.92499 L 155.31952,160.56463 L 157.34701,156.20704 L 160.00998,155.26895 L 161.40199,153.24146 L 162.82426,154.63347 L 165.78984,154.02825 L 166.72793,145.43411 L 167.66602,141.98436 L 166.72793,140.10817 L 165.15436,139.50295 L 164.09522,133.78362 L 162.88478,135.14536 L 159.28372,134.75197 L 158.92058,136.83998 L 156.65101,137.02155 L 156.46944,134.38884 L 154.563,133.81388 L 153.23151,135.32693 L 153.23151,131.5443 L 150.96193,133.23892 L 147.5727,132.66396 L 146.42278,134.93354 L 139.43248,138.71617 L 139.43248,140.62261 L 137.91943,140.62261 L 137.91943,137.20311 L 133.95524,135.32693 L 134.31837,131.90743 L 130.74757,129.27472 L 130.74757,126.06706 L 128.0846,125.4921 L 128.26616,122.46599 L 126.20841,122.28443 L 126.38998,120.19642 L 122.60735,120.19642 L 122.03239,122.0726 L 120.91273,119.43989 z "/> |
<path id="INSEE-D29" title="Finistere (29)" class="land departement bretagne departement29" d="M 92.709454,125.0987 L 90.651704,127.36828 L 88.382127,126.43019 L 84.206105,126.82358 L 83.449579,128.69977 L 80.998436,129.27472 L 80.605043,127.18671 L 76.277716,127.76167 L 76.277716,129.09316 L 73.251613,129.27472 L 71.920127,128.33663 L 70.407076,129.09316 L 70.013683,131.36274 L 64.92983,131.5443 L 62.266859,134.75197 L 64.536436,136.44659 L 61.510334,138.92799 L 62.448425,140.62261 L 61.6919,144.76837 L 64.718003,145.16176 L 65.867922,144.01185 L 66.442881,144.76837 L 73.614745,143.83028 L 78.335465,140.44104 L 74.189705,144.40524 L 74.552837,146.28142 L 78.335465,144.58681 L 77.57894,147.24978 L 81.754962,147.43134 L 81.573396,148.551 L 77.034241,148.36943 L 73.433179,147.43134 L 69.075591,145.34333 L 66.442881,148.36943 L 69.832116,149.51935 L 69.65055,154.60321 L 70.588642,153.84668 L 72.676653,150.63901 L 76.640848,152.90859 L 78.547293,153.30198 L 79.303818,156.32808 L 78.153899,158.38583 L 75.702756,158.20427 L 73.433179,158.20427 L 69.65055,158.77923 L 63.204951,159.14236 L 61.903727,160.86724 L 63.779911,161.9869 L 65.867922,161.80533 L 67.562539,163.31838 L 70.013683,163.13682 L 74.008138,167.67597 L 74.94623,172.57826 L 73.614745,175.24123 L 77.57894,175.99775 L 81.936528,175.78593 L 82.87462,174.09131 L 81.180002,171.82173 L 82.87462,172.57826 L 84.599498,172.39669 L 87.625601,174.09131 L 89.501785,173.72818 L 89.501785,170.49025 L 90.258311,173.72818 L 92.709454,177.69237 L 98.005134,178.0555 L 98.216961,176.93584 L 99.518186,178.81203 L 102.75612,179.38699 L 105.20726,179.38699 L 105.35856,179.59882 L 106.26639,175.87671 L 108.47545,175.87671 L 109.56485,174.15183 L 110.95685,174.15183 L 111.10816,171.36782 L 111.89495,170.42972 L 110.35163,168.37197 L 109.41354,169.49163 L 107.05318,167.61545 L 102.21142,166.82866 L 101.42463,164.01439 L 100.03262,160.41332 L 99.881318,159.02132 L 102.21142,157.14513 L 104.42047,157.14513 L 107.56762,155.63208 L 106.90188,153.24146 L 107.83997,152.30337 L 107.53736,146.82612 L 106.11509,144.94994 L 106.11509,142.61984 L 108.32414,141.98436 L 105.96379,141.19757 L 105.81248,139.35165 L 106.90188,138.56486 L 108.47545,136.99129 L 106.75057,135.90189 L 106.90188,133.8744 L 104.57178,133.7231 L 105.66117,128.63924 L 102.54429,126.82358 L 97.248608,127.00515 L 97.248608,130.78778 L 95.735557,130.78778 L 95.372425,129.09316 L 93.102847,129.45629 L 92.709454,125.0987 z "/> |
<path id="INSEE-D35" title="Ille-et-Villaine (35)" class="land departement bretagne departement35" d="M 165.91088,131.72587 L 164.09522,133.78362 L 165.15436,139.50295 L 166.72793,140.10817 L 167.66602,141.98436 L 166.72793,145.43411 L 165.78984,154.02825 L 162.82426,154.63347 L 161.40199,153.24146 L 160.00998,155.26895 L 157.34701,156.20704 L 155.31952,160.56463 L 154.07882,162.1382 L 154.53274,164.16569 L 153.74595,167.28258 L 152.35394,168.55354 L 152.35394,169.79424 L 153.29203,170.09685 L 155.955,170.09685 L 158.2851,171.51912 L 159.85868,174.3334 L 158.43641,176.20958 L 158.92058,178.0555 L 160.94807,178.0555 L 161.09938,179.93169 L 159.52581,181.80787 L 157.83119,182.59466 L 158.92058,183.23014 L 159.22319,184.16823 L 157.49832,185.56024 L 159.49554,189.31261 L 163.30843,187.28512 L 175.01945,186.71016 L 175.77598,184.62215 L 177.68242,182.74596 L 181.82818,182.171 L 182.00975,180.08299 L 184.85429,180.47639 L 186.5489,182.74596 L 190.36179,183.68405 L 191.08806,182.171 L 192.05641,178.75151 L 194.50755,172.6993 L 195.83904,171.94277 L 199.04671,172.33617 L 199.04671,167.22205 L 197.71522,165.89057 L 197.71522,160.41332 L 197.14026,158.53714 L 197.14026,155.51104 L 199.04671,153.60459 L 199.04671,149.82196 L 198.10862,149.06544 L 198.29018,143.76976 L 196.77713,143.01323 L 194.50755,143.01323 L 192.60111,141.50018 L 190.54336,143.95132 L 188.84874,144.16315 L 187.33569,146.2209 L 185.82264,145.85777 L 182.58471,143.01323 L 181.46505,139.41217 L 180.89009,137.02155 L 171.59996,137.02155 L 168.18046,134.93354 L 170.45004,131.90743 L 165.91088,131.72587 z "/> |
<path id="INSEE-D44" title="Loire-Atlantique (44)" class="land departement pdll departement44" d="M 182.00975,180.08299 L 181.82818,182.171 L 177.68242,182.74596 L 175.77598,184.62215 L 175.01945,186.71016 L 163.30843,187.28512 L 158.37589,189.91783 L 158.19432,195.21351 L 152.89864,197.30152 L 149.29758,199.1777 L 146.27147,199.1777 L 145.15182,197.87648 L 143.4572,199.57109 L 142.64015,199.7224 L 143.6085,200.38814 L 140.00744,203.59581 L 140.76397,204.35234 L 141.52049,205.86539 L 139.61405,208.52836 L 141.70206,209.64802 L 145.30312,210.40454 L 145.66625,208.89149 L 147.75427,211.55446 L 151.17376,211.55446 L 153.6249,208.89149 L 156.83257,208.89149 L 153.44334,210.58611 L 153.6249,212.49255 L 154.38143,214.18717 L 152.29342,216.27518 L 150.02384,216.27518 L 150.41724,219.11972 L 154.563,218.36319 L 159.49554,222.90235 L 159.25346,223.20496 L 162.82426,225.53506 L 163.61104,227.41124 L 166.87924,228.83351 L 169.3909,229.13612 L 170.4803,232.1017 L 174.38397,233.03979 L 177.01668,233.52397 L 178.43895,231.95039 L 177.01668,229.92291 L 176.41146,225.53506 L 177.65216,224.14305 L 179.37704,224.14305 L 180.16383,225.86793 L 179.67965,228.98481 L 180.76905,229.7716 L 183.58332,228.83351 L 184.52141,225.71662 L 183.28071,224.44566 L 186.3976,224.44566 L 187.487,222.41817 L 188.57639,222.56948 L 191.08806,224.92984 L 192.90372,225.17192 L 192.96424,223.20496 L 191.39067,221.17747 L 189.99866,221.17747 L 189.51448,221.32877 L 188.57639,220.87486 L 189.36318,220.08807 L 189.36318,218.6658 L 190.93675,218.21189 L 191.87484,216.03309 L 191.08806,215.24631 L 190.93675,212.58334 L 188.90926,212.58334 L 186.88178,210.07167 L 186.88178,208.22575 L 189.06057,207.10609 L 192.96424,206.34956 L 199.04671,206.50087 L 200.92289,205.22991 L 200.28741,201.32623 L 197.47314,198.69352 L 194.05364,199.14744 L 193.11555,198.36065 L 192.96424,195.57664 L 195.44565,193.36758 L 193.56946,191.03748 L 192.32876,187.73903 L 190.30127,186.49833 L 190.30127,184.31954 L 190.08944,183.62353 L 186.5489,182.74596 L 184.85429,180.47639 L 182.00975,180.08299 z "/> |
<path id="INSEE-D70" title="Haute-Saone (70)" class="land departement franche-comte departement70" d="M 463.43732,170.06659 L 459.86651,170.64155 L 459.29155,172.51773 L 457.38511,173.84922 L 456.08389,172.33617 L 455.14579,172.91113 L 455.87206,174.03079 L 453.99587,175.18071 L 454.57083,176.69376 L 452.48282,177.45028 L 452.48282,179.90143 L 449.81985,179.90143 L 449.63829,181.41448 L 447.00558,181.98944 L 447.18714,184.25901 L 448.88176,184.44058 L 447.94367,185.56024 L 447.36871,189.34287 L 445.67409,189.34287 L 442.82956,190.49279 L 439.80345,189.34287 L 437.17074,190.49279 L 437.17074,192.39923 L 439.22849,192.76236 L 440.74154,195.78847 L 440.95337,197.30152 L 438.50223,200.14605 L 437.35231,200.50919 L 436.59578,201.44728 L 438.68379,202.41563 L 439.04693,205.44173 L 440.74154,205.6233 L 440.95337,209.40593 L 441.7099,210.16245 L 441.80068,210.76767 L 443.25321,211.16107 L 444.88731,212.52281 L 447.33845,212.52281 L 448.27654,211.58472 L 449.9409,211.64524 L 451.66578,211.70577 L 455.47867,208.58888 L 456.56806,208.58888 L 457.7785,207.65079 L 461.71244,207.77183 L 464.70828,205.32069 L 466.88707,204.9273 L 467.70412,202.89981 L 469.45926,202.35511 L 471.2144,199.35927 L 473.66554,197.45282 L 476.23773,197.05943 L 478.14418,198.42118 L 481.68472,197.99752 L 481.68472,196.09108 L 483.10698,195.27403 L 484.22664,193.73072 L 486.40544,193.73072 L 487.61588,192.45975 L 488.06979,189.43365 L 488.06979,187.55747 L 487.25275,184.68267 L 487.25275,182.26179 L 488.73554,181.17239 L 490.49068,180.26456 L 490.30911,179.90143 L 484.2569,176.69376 L 482.56229,174.78731 L 480.86767,173.66765 L 479.35462,174.42418 L 479.14279,175.54384 L 477.62974,176.48193 L 476.69165,176.48193 L 473.84711,173.27426 L 469.88291,173.27426 L 468.1883,174.60575 L 466.67525,174.78731 L 464.2241,172.91113 L 464.40567,170.82312 L 463.43732,170.06659 z "/> |
<path id="INSEE-D76" title="Seine-Maritime (76)" class="land departement haute-normandie departement76" d="M 287.62074,59.674359 L 286.38004,61.18741 L 278.27008,67.421182 L 263.89609,71.022245 L 254.42439,74.41148 L 246.67757,78.587502 L 242.13841,85.396233 L 241.20032,90.691913 L 244.98295,93.53645 L 250.4602,94.656108 L 249.58263,94.807413 L 249.61289,94.958718 L 253.84943,94.41402 L 256.02823,92.08392 L 257.66232,91.690527 L 259.5385,94.958718 L 262.14095,94.686369 L 263.23035,96.562553 L 267.83003,96.290203 L 272.45996,99.558395 L 269.46412,100.49649 L 271.64292,102.13058 L 273.00466,102.13058 L 274.2151,104.73303 L 276.3939,104.73303 L 277.05964,103.09893 L 275.42554,102.00954 L 280.05548,100.64779 L 284.92751,100.10309 L 286.16821,96.562553 L 288.46805,94.535064 L 292.82564,94.41402 L 297.84897,96.986207 L 300.84481,97.319078 L 301.35925,95.745505 L 302.69073,93.264101 L 303.44726,91.962876 L 301.54081,91.962876 L 301.54081,88.724946 L 300.42115,86.848763 L 301.17768,83.066134 L 301.93421,81.159689 L 300.42115,81.159689 L 301.17768,79.283505 L 303.05386,77.013928 L 301.17768,73.594432 L 300.60272,70.205197 L 292.28094,62.06498 L 291.34285,60.188796 L 289.25483,60.370362 L 287.62074,59.674359 z "/> |
<path id="INSEE-D27" title="Eure (27)" class="land departement haute-normandie departement27" d="M 257.66232,91.690527 L 256.02823,92.08392 L 253.84943,94.41402 L 249.61289,94.958718 L 250.49046,101.97928 L 252.3969,102.55424 L 252.3969,103.31076 L 250.49046,104.43042 L 252.76003,107.63809 L 253.90995,112.17724 L 253.69813,114.08369 L 252.00351,115.20335 L 252.18507,116.53483 L 254.09152,117.29136 L 254.27309,118.98597 L 252.76003,123.34356 L 254.27309,125.25001 L 259.56877,125.43157 L 260.68842,128.06428 L 262.59487,129.97073 L 265.22758,130.90882 L 266.01436,133.75336 L 264.68288,135.62954 L 267.43663,137.47546 L 270.16013,134.87301 L 272.79284,134.87301 L 279.63183,131.30221 L 281.87114,132.24031 L 286.62213,132.24031 L 287.74178,130.90882 L 287.74178,128.06428 L 291.52441,126.1881 L 291.52441,123.162 L 292.55329,122.31469 L 292.4625,121.46738 L 293.43086,120.49903 L 291.73624,120.13589 L 291.73624,118.62284 L 290.76789,117.10979 L 291.52441,116.1717 L 296.82009,114.65865 L 298.15158,112.38907 L 299.3015,108.21305 L 300.6935,106.48817 L 300.99611,104.24885 L 302.69073,105.18695 L 304.02222,104.82381 L 303.05386,103.31076 L 302.50917,98.953174 L 300.81455,97.440123 L 300.84481,97.319078 L 297.84897,96.986207 L 292.82564,94.41402 L 288.46805,94.535064 L 286.16821,96.562553 L 284.92751,100.10309 L 280.05548,100.64779 L 275.42554,102.00954 L 277.05964,103.09893 L 276.3939,104.73303 L 274.2151,104.73303 L 273.00466,102.13058 L 271.64292,102.13058 L 269.46412,100.49649 L 272.45996,99.558395 L 267.83003,96.290203 L 263.23035,96.562553 L 262.14095,94.686369 L 259.5385,94.958718 L 257.66232,91.690527 z "/> |
<path id="INSEE-D37" title="Indre-et-Loire (37)" class="land departement centre departement37" d="M 258.81224,190.76513 L 259.17537,191.61244 L 253.69813,193.1255 L 252.3969,195.03194 L 250.09706,193.51889 L 251.24698,197.30152 L 249.15897,197.30152 L 245.37634,194.63855 L 243.50016,198.42118 L 244.43825,199.57109 L 244.43825,200.69075 L 242.53181,203.17216 L 242.74363,207.31792 L 239.71753,210.91898 L 237.569,218.6658 L 237.81109,218.6658 L 238.56761,221.69191 L 242.16867,222.44843 L 242.16867,224.71801 L 246.70783,226.04949 L 246.70783,229.65056 L 246.52626,231.92013 L 252.18507,231.92013 L 257.11762,230.77021 L 256.72423,228.6822 L 258.23728,227.74411 L 259.75033,229.83212 L 261.08182,230.40708 L 262.20148,234.94624 L 265.43941,238.33547 L 265.80254,240.99844 L 268.73786,243.9035 L 270.40221,243.7522 L 272.45996,241.84575 L 273.94275,234.12919 L 274.88085,231.4057 L 275.57685,228.01646 L 278.57269,226.92706 L 280.60018,227.32046 L 281.96193,228.56116 L 283.44472,226.11002 L 284.80646,224.86931 L 284.80646,223.38652 L 286.5616,223.26548 L 286.98526,221.48008 L 285.47221,219.45259 L 285.71429,218.60528 L 284.65516,217.69745 L 281.81062,213.49117 L 278.14904,213.49117 L 277.05964,211.85707 L 277.05964,205.04834 L 275.57685,201.11441 L 275.3045,196.24238 L 273.39806,196.09108 L 271.21926,194.45698 L 270.67456,194.45698 L 268.76812,195.81873 L 267.55768,195.00168 L 267.28533,193.1255 L 268.64707,192.42949 L 268.76812,191.76375 L 267.98133,191.06775 L 258.81224,190.76513 z "/> |
<path id="INSEE-D18" title="Cher (18)" class="land departement centre departement18" d="M 320.15135,194.60829 L 317.39759,195.97003 L 314.94645,197.99752 L 315.06749,198.81457 L 317.51864,199.48031 L 318.48699,201.53806 L 319.96978,202.08276 L 319.42508,203.2932 L 319.42508,205.32069 L 317.12524,206.28904 L 315.33984,209.52697 L 315.2188,211.31237 L 315.88454,212.12942 L 316.15689,213.06751 L 313.73601,214.42926 L 309.92312,214.82265 L 308.98503,213.76352 L 307.89563,213.88456 L 306.80623,215.095 L 306.92728,217.54615 L 304.50639,217.69745 L 304.35509,219.84598 L 302.17629,221.63138 L 302.44864,222.44843 L 303.81039,223.53783 L 306.53388,223.93122 L 308.56137,223.11417 L 311.13356,222.99313 L 312.37426,223.93122 L 311.95061,226.50341 L 314.1294,229.37821 L 314.1294,230.58865 L 313.19131,232.22274 L 313.19131,232.88849 L 314.28071,234.12919 L 316.03585,234.12919 L 316.15689,234.91598 L 314.00836,236.70138 L 314.1294,237.91182 L 312.76765,238.60782 L 313.31235,239.54591 L 315.06749,241.0287 L 315.06749,242.1181 L 313.19131,243.2075 L 313.19131,244.84159 L 315.7635,246.20334 L 316.30819,248.10978 L 317.94229,249.59257 L 317.79098,250.13727 L 317.12524,250.95432 L 316.97394,253.40546 L 316.58054,254.22251 L 317.66994,256.37104 L 318.06333,258.00514 L 316.15689,259.91159 L 316.06611,261.42464 L 320.51448,260.87994 L 321.42231,258.94323 L 323.87345,256.12896 L 328.59417,255.1606 L 331.07558,255.91713 L 333.70829,253.85938 L 333.52672,252.34633 L 332.58863,251.5898 L 332.58863,248.5637 L 337.67248,243.44959 L 339.57893,245.5376 L 341.27354,243.81272 L 342.78659,243.63115 L 345.4193,240.24192 L 349.77689,240.60505 L 349.83741,241.63392 L 351.28994,237.00399 L 350.35185,235.30937 L 350.53342,232.85823 L 351.10838,227.92568 L 349.02037,225.86793 L 349.41376,221.32877 L 347.50732,217.33432 L 347.32575,214.70161 L 343.90625,212.03864 L 343.36155,209.76906 L 345.05617,207.31792 L 345.05617,203.71686 L 343.0892,201.41702 L 341.1525,202.2038 L 340.21441,201.81041 L 338.85266,200.02501 L 338.03561,199.90397 L 337.49091,200.17631 L 337.33961,202.89981 L 336.12917,203.02085 L 335.19108,202.2038 L 333.01228,199.20796 L 332.19523,198.14883 L 329.07835,197.99752 L 327.5653,196.09108 L 326.35486,196.09108 L 325.81016,196.78708 L 323.78267,197.05943 L 322.14857,195.54638 L 320.24213,194.72933 L 320.15135,194.60829 z "/> |
<path id="INSEE-D58" title="Nievre (58)" class="land departement bourgogne departement58" d="M 350.38211,197.45282 L 349.44402,198.93561 L 347.65862,198.93561 L 345.268,198.39091 L 342.60503,199.1777 L 342.78659,201.08415 L 345.05617,203.71686 L 345.05617,207.31792 L 343.36155,209.76906 L 343.90625,212.03864 L 347.32575,214.70161 L 347.50732,217.33432 L 349.41376,221.32877 L 349.02037,225.86793 L 351.10838,227.92568 L 350.53342,232.85823 L 350.35185,235.30937 L 351.28994,237.00399 L 349.83741,241.63392 L 349.95846,243.05619 L 353.19639,244.56924 L 355.46597,247.05065 L 357.52372,245.90073 L 359.43016,244.78107 L 359.82355,246.47569 L 362.63783,246.47569 L 363.39436,244.96264 L 365.08897,245.71916 L 365.66393,248.17031 L 367.17698,247.80717 L 370.77805,242.87463 L 372.65423,244.20611 L 372.95684,244.78107 L 375.92242,242.93515 L 377.13286,243.08645 L 378.07095,245.38629 L 379.85635,245.11394 L 381.2181,243.7522 L 382.97324,243.7522 L 384.33499,241.99706 L 385.69673,241.72471 L 385.96908,240.75635 L 388.93466,240.90766 L 389.08597,240.21166 L 387.72422,239.00121 L 387.72422,237.79077 L 389.63067,236.70138 L 389.63067,235.88433 L 387.84527,234.79493 L 387.57292,232.76744 L 387.72422,230.861 L 386.51378,230.04395 L 387.57292,228.56116 L 388.54127,228.01646 L 389.20701,226.38237 L 388.26892,225.83767 L 387.17952,224.20357 L 388.54127,222.29713 L 390.84111,220.93538 L 393.68564,220.93538 L 393.68564,218.78685 L 394.50269,218.5145 L 394.50269,217.69745 L 393.29225,215.79101 L 390.56876,215.24631 L 389.63067,213.61221 L 390.02406,212.12942 L 390.29641,210.07167 L 389.81223,208.98227 L 386.78613,211.04002 L 385.54543,211.58472 L 383.91133,210.49533 L 384.06264,207.77183 L 382.27724,207.77183 L 380.79445,208.74019 L 380.40105,207.49948 L 381.2181,206.13774 L 380.24975,204.9273 L 379.16035,206.56139 L 379.31166,207.77183 L 376.73947,207.65079 L 372.65423,203.8379 L 369.53734,203.71686 L 369.53734,201.65911 L 367.35855,200.29736 L 366.9349,198.54222 L 366.26915,198.42118 L 366.26915,201.81041 L 365.05871,202.08276 L 363.27331,201.53806 L 361.39713,202.7485 L 360.30773,203.02085 L 359.21833,202.08276 L 358.12894,202.62746 L 355.67779,200.99336 L 353.92265,200.99336 L 352.68195,200.17631 L 352.9543,198.66326 L 351.59255,197.45282 L 350.38211,197.45282 z "/> |
<path id="INSEE-D71" title="Saone-et-Loire (71)" class="land departement bourgogne departement71" d="M 393.68564,220.75381 L 393.68564,220.93538 L 390.84111,220.93538 L 388.54127,222.29713 L 387.17952,224.20357 L 388.26892,225.83767 L 389.20701,226.38237 L 388.54127,228.01646 L 387.57292,228.56116 L 386.51378,230.04395 L 387.72422,230.861 L 387.57292,232.76744 L 387.84527,234.79493 L 389.63067,235.88433 L 389.63067,236.70138 L 387.72422,237.79077 L 387.72422,239.00121 L 389.08597,240.21166 L 388.93466,240.90766 L 385.96908,240.75635 L 385.69673,241.72471 L 384.33499,241.99706 L 382.97324,243.7522 L 381.2181,243.7522 L 379.85635,245.11394 L 378.07095,245.38629 L 377.13286,243.08645 L 375.92242,242.93515 L 372.95684,244.78107 L 376.46712,251.37798 L 376.46712,254.22251 L 377.40521,255.37243 L 380.61288,255.37243 L 381.73254,256.88548 L 384.75864,256.88548 L 386.09013,258.76167 L 385.90856,266.14536 L 381.94437,269.17146 L 381.85358,269.38329 L 382.12593,269.35303 L 382.70089,269.53459 L 382.88246,272.5607 L 385.72699,273.13565 L 386.09013,274.46714 L 387.60318,274.46714 L 389.87276,273.13565 L 395.92496,274.07375 L 397.07488,275.22367 L 398.58793,273.71061 L 400.67594,273.71061 L 401.7956,267.65841 L 402.55213,267.08345 L 404.42831,267.08345 L 406.72815,268.5965 L 408.42277,267.08345 L 409.54242,268.5965 L 411.2673,266.90188 L 413.32505,266.72032 L 414.29341,269.74642 L 415.01967,273.52905 L 416.35116,273.71061 L 417.50107,271.04764 L 421.07188,257.06705 L 422.40336,254.61591 L 424.49137,254.40408 L 426.57938,256.12896 L 428.09243,255.73556 L 429.96862,254.40408 L 431.87506,254.79747 L 432.99472,257.24861 L 434.08412,257.67227 L 439.04693,257.06705 L 440.95337,255.554 L 440.19685,254.40408 L 437.92727,253.64755 L 437.71544,251.01484 L 439.62189,249.68336 L 440.37841,246.47569 L 438.68379,243.44959 L 437.53388,241.93653 L 438.10883,241.36157 L 438.10883,239.48539 L 436.59578,238.51704 L 436.20239,237.00399 L 440.55998,236.45929 L 440.95337,234.94624 L 439.62189,234.94624 L 438.50223,233.61475 L 436.41422,233.61475 L 434.68934,230.77021 L 433.17629,230.58865 L 433.35785,228.31907 L 431.72376,228.13751 L 429.54496,229.6203 L 427.36617,230.16499 L 425.88338,229.2269 L 423.97693,229.10586 L 423.43224,229.89264 L 421.6771,230.16499 L 417.74316,231.4057 L 412.02383,233.43319 L 409.84503,231.67805 L 407.27285,231.13335 L 407.1518,228.83351 L 404.70066,227.04811 L 401.31142,224.47592 L 397.49853,224.59696 L 393.83695,220.81434 L 393.68564,220.75381 z "/> |
<path id="INSEE-D60" title="Oise (60)" class="land departement picardie departement60" d="M 302.41838,77.800715 L 301.17768,79.283505 L 300.42115,81.159689 L 301.93421,81.159689 L 301.17768,83.066134 L 300.42115,86.848763 L 301.54081,88.724946 L 301.54081,91.962876 L 303.44726,91.962876 L 302.69073,93.264101 L 301.35925,95.745505 L 300.81455,97.440123 L 302.50917,98.953174 L 303.05386,103.31076 L 304.02222,104.82381 L 302.69073,105.18695 L 300.99611,104.24885 L 300.6935,106.48817 L 300.81455,106.33686 L 301.54081,108.03148 L 302.69073,109.90767 L 307.80485,110.30106 L 311.40591,109.90767 L 313.85705,108.03148 L 316.88315,109.90767 L 318.39621,111.05759 L 320.66578,110.48263 L 322.72353,109.54453 L 326.71799,111.63254 L 330.86375,114.08369 L 332.19523,115.41517 L 334.46481,113.90212 L 336.341,115.02178 L 337.49091,115.95987 L 339.18553,115.77831 L 340.33545,114.26525 L 342.96816,115.77831 L 346.20609,114.44682 L 348.08227,115.02178 L 349.95846,113.50873 L 351.10838,112.93377 L 351.47151,113.20612 L 351.8649,110.63393 L 350.50316,109.09062 L 348.20332,107.54731 L 347.23497,109.09062 L 346.66001,109.27218 L 346.47844,106.39739 L 348.20332,106.00399 L 347.80993,103.34102 L 345.51009,102.94763 L 346.66001,101.01092 L 349.9282,100.2544 L 351.07812,95.654722 L 352.803,94.867935 L 350.50316,93.143056 L 351.28994,91.418178 L 351.65308,85.668582 L 350.86629,81.220211 L 346.87183,81.613605 L 344.1786,81.250472 L 339.18553,82.581957 L 334.94899,86.606674 L 331.49923,85.456755 L 328.04947,85.093623 L 325.35624,82.400391 L 320.54474,81.038645 L 314.03862,81.613605 L 312.31374,80.282119 L 308.83372,80.282119 L 306.35232,81.250472 L 305.2024,80.463685 L 305.2024,78.375675 L 304.809,77.800715 L 302.41838,77.800715 z "/> |
<path id="INSEE-D62" title="Pas-de-Calais (62)" class="land departement npdc departement62" d="M 314.06888,8.5029594 L 303.59856,10.500187 L 295.27678,16.915525 L 295.27678,42.455834 L 295.21626,43.212359 L 298.15158,43.908363 L 299.08967,45.996374 L 301.35925,45.421414 L 302.69073,43.726797 L 304.38535,44.301756 L 307.98641,47.116032 L 309.3179,46.571333 L 310.25599,48.840911 L 313.64522,50.353962 L 313.64522,52.230146 L 316.12663,53.168238 L 318.57777,52.230146 L 323.29849,51.655186 L 324.44841,52.623539 L 326.71799,51.655186 L 327.83765,53.561631 L 325.02337,55.437815 L 325.02337,58.100785 L 325.96146,59.038877 L 326.71799,58.857311 L 327.26269,57.34426 L 328.98757,56.194341 L 330.68218,57.525826 L 334.64638,58.857311 L 336.341,58.857311 L 336.341,56.950866 L 338.8224,58.675745 L 339.00397,60.188796 L 337.85405,61.883414 L 339.94206,60.733495 L 341.66694,59.976969 L 342.3932,61.308454 L 342.3932,62.63994 L 345.23774,61.126888 L 349.77689,61.126888 L 349.95846,61.308454 L 351.07812,59.159921 L 350.50316,58.191568 L 348.77828,57.828436 L 346.87183,57.828436 L 345.72191,57.435043 L 347.62836,56.285124 L 349.35324,56.46669 L 351.07812,56.285124 L 351.28994,53.198499 L 352.43986,52.441973 L 352.62143,50.717094 L 350.50316,49.355348 L 348.02175,49.173782 L 347.44679,48.780389 L 348.99011,47.630469 L 349.35324,46.48055 L 348.02175,45.542458 L 346.08505,43.212359 L 346.29687,42.06244 L 348.77828,40.912521 L 349.17167,39.581036 L 347.44679,38.794249 L 346.47844,36.312845 L 343.02868,35.919451 L 339.57893,34.981359 L 339.18553,31.138209 L 341.66694,29.594896 L 340.72884,27.658191 L 338.79214,27.658191 L 337.46065,29.776463 L 331.49923,29.41333 L 326.68773,28.23315 L 324.02476,25.358352 L 324.02476,23.058514 L 326.11277,22.090161 L 324.38789,20.758676 L 320.18161,20.57711 L 317.66994,14.222294 L 314.06888,8.5029594 z "/> |
<path id="INSEE-D59" title="Nord (59)" class="land departement npdc departement59" d="M 330.07696,4.0545882 L 324.02476,6.8991249 L 314.58332,8.4121763 L 314.06888,8.5029594 L 317.66994,14.222294 L 320.18161,20.57711 L 324.38789,20.758676 L 326.11277,22.090161 L 324.02476,23.058514 L 324.02476,25.358352 L 326.68773,28.23315 L 331.49923,29.41333 L 337.46065,29.776463 L 338.79214,27.658191 L 340.72884,27.658191 L 341.66694,29.594896 L 339.18553,31.138209 L 339.57893,34.981359 L 343.02868,35.919451 L 346.47844,36.312845 L 347.44679,38.794249 L 349.17167,39.581036 L 348.77828,40.912521 L 346.29687,42.06244 L 346.08505,43.212359 L 348.02175,45.542458 L 349.35324,46.48055 L 348.99011,47.630469 L 347.44679,48.780389 L 348.02175,49.173782 L 350.50316,49.355348 L 352.62143,50.717094 L 352.43986,52.441973 L 351.28994,53.198499 L 351.07812,56.285124 L 349.35324,56.46669 L 347.62836,56.285124 L 345.72191,57.435043 L 346.87183,57.828436 L 348.77828,57.828436 L 350.50316,58.191568 L 351.07812,59.159921 L 349.95846,61.308454 L 351.47151,62.821506 L 352.98456,63.214899 L 354.49761,62.246546 L 356.58562,62.246546 L 357.16058,63.396465 L 357.91711,63.214899 L 360.18669,61.883414 L 362.45626,63.214899 L 365.48237,61.126888 L 366.81385,61.126888 L 368.3269,62.458373 L 371.35301,60.370362 L 372.65423,60.551929 L 373.80415,61.490021 L 377.98017,61.883414 L 378.3433,63.578032 L 380.43131,61.701848 L 381.55097,61.701848 L 382.3075,64.152991 L 385.90856,65.091083 L 386.93744,64.395079 L 386.63483,64.395079 L 386.45326,62.518896 L 390.23589,60.249318 L 389.66093,56.648256 L 386.05987,55.710164 L 386.99796,54.741811 L 386.99796,52.109102 L 389.84249,50.021091 L 389.08597,48.508039 L 383.03376,43.787319 L 372.4424,44.362278 L 371.32274,46.238462 L 369.99126,46.238462 L 370.17283,39.611297 L 367.14672,36.040495 L 364.87715,36.403628 L 363.54566,34.890576 L 359.76303,36.585194 L 358.46181,35.28397 L 355.79884,34.890576 L 355.04231,32.439433 L 354.86074,24.874176 L 353.16613,24.11765 L 352.9543,22.967731 L 351.83464,22.967731 L 351.44125,20.698154 L 348.99011,20.909981 L 344.26938,22.423033 L 341.99981,25.237308 L 339.73023,25.237308 L 338.21718,23.361124 L 337.64222,21.273114 L 335.76604,19.185103 L 333.10307,19.185103 L 331.98341,17.127353 L 331.98341,13.889423 L 333.28463,11.831673 L 332.52811,8.9871359 L 330.07696,4.0545882 z "/> |
<path id="INSEE-D02" title="Aisne (02)" class="land departement picardie departement02" d="M 371.35301,60.370362 L 368.3269,62.458373 L 366.81385,61.126888 L 365.48237,61.126888 L 362.45626,63.214899 L 360.18669,61.883414 L 357.91711,63.214899 L 357.16058,63.396465 L 356.58562,62.246546 L 354.49761,62.246546 L 352.98456,63.214899 L 352.92404,63.214899 L 353.37795,65.87787 L 350.89655,68.571101 L 350.89655,71.052506 L 349.17167,72.989211 L 349.56506,75.28905 L 350.50316,79.1322 L 351.65308,85.668582 L 351.28994,91.418178 L 350.50316,93.143056 L 352.803,94.867935 L 351.07812,95.654722 L 349.9282,100.2544 L 346.66001,101.01092 L 345.51009,102.94763 L 347.80993,103.34102 L 348.20332,106.00399 L 346.47844,106.39739 L 346.66001,109.27218 L 347.23497,109.09062 L 348.20332,107.54731 L 350.50316,109.09062 L 351.8649,110.63393 L 351.47151,113.20612 L 353.19639,114.44682 L 353.77135,118.62284 L 358.8552,123.52513 L 360.54982,124.10009 L 361.51817,126.36967 L 364.69558,127.03541 L 365.08897,126.55123 L 366.05733,124.49348 L 368.90186,123.162 L 370.41491,119.1978 L 372.10953,118.04788 L 371.14118,116.7164 L 368.69004,116.7164 L 368.3269,115.41517 L 370.02152,114.65865 L 370.77805,113.50873 L 369.08343,112.38907 L 369.62813,110.66419 L 373.98572,110.30106 L 373.22919,108.60644 L 370.59648,106.88156 L 370.59648,101.79771 L 374.16728,99.13474 L 378.16174,99.13474 L 377.76834,97.258556 L 380.03792,96.290203 L 383.24559,98.378214 L 384.57708,98.015082 L 384.39551,91.569483 L 384.97047,89.299906 L 385.72699,86.667196 L 383.24559,85.335711 L 383.82055,83.82266 L 387.42161,83.066134 L 387.42161,80.614991 L 390.26615,79.101939 L 391.02267,76.832362 L 390.08458,75.319311 L 390.26615,72.474774 L 391.96077,70.961723 L 390.26615,67.754053 L 390.78059,64.395079 L 386.93744,64.395079 L 385.90856,65.091083 L 382.3075,64.152991 L 381.55097,61.701848 L 380.43131,61.701848 L 378.3433,63.578032 L 377.98017,61.883414 L 373.80415,61.490021 L 372.65423,60.551929 L 371.35301,60.370362 z "/> |
<path id="INSEE-D80" title="Somme (80)" class="land departement picardie departement80" d="M 295.21626,43.212359 L 294.70182,49.446131 L 298.87784,53.22876 L 298.87784,55.135205 L 293.76373,52.109102 L 287.62074,59.674359 L 289.25483,60.370362 L 291.34285,60.188796 L 292.28094,62.06498 L 300.60272,70.205197 L 301.17768,73.594432 L 303.05386,77.013928 L 302.41838,77.800715 L 304.809,77.800715 L 305.2024,78.375675 L 305.2024,80.463685 L 306.35232,81.250472 L 308.83372,80.282119 L 312.31374,80.282119 L 314.03862,81.613605 L 320.54474,81.038645 L 325.35624,82.400391 L 328.04947,85.093623 L 331.49923,85.456755 L 334.94899,86.606674 L 339.18553,82.581957 L 344.1786,81.250472 L 346.87183,81.613605 L 350.86629,81.220211 L 350.50316,79.1322 L 349.56506,75.28905 L 349.17167,72.989211 L 350.89655,71.052506 L 350.89655,68.571101 L 353.37795,65.87787 L 352.92404,63.214899 L 351.47151,62.821506 L 349.77689,61.126888 L 345.23774,61.126888 L 342.3932,62.63994 L 342.3932,61.308454 L 341.66694,59.976969 L 339.94206,60.733495 L 337.85405,61.883414 L 339.00397,60.188796 L 338.8224,58.675745 L 336.341,56.950866 L 336.341,58.857311 L 334.64638,58.857311 L 330.68218,57.525826 L 328.98757,56.194341 L 327.26269,57.34426 L 326.71799,58.857311 L 325.96146,59.038877 L 325.02337,58.100785 L 325.02337,55.437815 L 327.83765,53.561631 L 326.71799,51.655186 L 324.44841,52.623539 L 323.29849,51.655186 L 318.57777,52.230146 L 316.12663,53.168238 L 313.64522,52.230146 L 313.64522,50.353962 L 310.25599,48.840911 L 309.3179,46.571333 L 307.98641,47.116032 L 304.38535,44.301756 L 302.69073,43.726797 L 301.35925,45.421414 L 299.08967,45.996374 L 298.15158,43.908363 L 295.21626,43.212359 z "/> |
<path id="INSEE-D54" title="Meurthe-et-Moselle (54)" class="land departement lorraine departement54" d="M 442.22433,85.759365 L 439.95476,87.847376 L 436.74709,88.028943 L 435.62743,89.178862 L 435.38534,89.178862 L 435.2643,91.448439 L 436.38396,93.294362 L 435.99056,94.41402 L 435.62743,95.715244 L 435.809,96.441509 L 436.74709,95.715244 L 437.65492,94.050887 L 439.5311,93.869321 L 442.67825,92.931229 L 444.34261,94.232454 L 445.06887,95.715244 L 445.64383,97.3796 L 445.64383,99.043957 L 446.55166,99.800483 L 446.55166,101.07145 L 445.64383,102.1911 L 445.46226,104.61199 L 446.18853,105.73164 L 446.3701,107.21443 L 446.55166,109.60506 L 447.67132,110.54315 L 449.33568,111.26941 L 448.60941,112.7522 L 450.6369,114.62839 L 448.79098,116.65588 L 449.15411,117.9571 L 451.00003,118.86493 L 451.00003,119.80302 L 448.79098,119.80302 L 447.85289,121.10425 L 448.03445,122.04234 L 449.51724,123.52513 L 448.24628,127.03541 L 446.76349,130.36412 L 447.48975,132.42187 L 447.48975,135.75058 L 448.24628,137.41494 L 449.33568,137.41494 L 449.91064,138.35303 L 448.24628,138.35303 L 446.76349,139.0793 L 446.76349,140.19896 L 448.60941,141.86331 L 448.60941,144.46576 L 450.45533,143.8908 L 453.23935,144.07237 L 453.42092,147.03795 L 454.54057,147.43134 L 453.23935,148.33917 L 453.05778,149.27726 L 455.08527,149.6404 L 456.3865,151.30475 L 462.49922,150.94162 L 463.80045,148.52074 L 466.58446,148.52074 L 467.70412,147.61291 L 469.55004,148.73257 L 471.2144,148.15761 L 473.63528,148.33917 L 475.66277,147.61291 L 477.69026,146.13012 L 478.80992,147.24978 L 478.99148,144.64733 L 480.47427,144.07237 L 481.2308,146.49325 L 483.43986,146.67482 L 485.67917,147.24978 L 486.587,147.43134 L 489.76441,145.94855 L 491.42877,144.82889 L 492.91156,142.98297 L 495.87714,141.86331 L 497.81384,141.43966 L 496.72445,140.38052 L 498.81246,140.56209 L 499.20585,140.16869 L 496.96654,139.44243 L 493.81939,137.23338 L 491.03537,135.17563 L 487.70666,135.17563 L 484.19638,133.14814 L 481.41237,132.96657 L 481.41237,132.21004 L 477.14556,129.63786 L 472.33406,127.58011 L 469.91318,127.58011 L 469.00534,125.00792 L 465.28324,120.34772 L 461.59139,120.34772 L 460.1086,118.32023 L 457.14302,118.32023 L 457.32459,115.35465 L 453.42092,112.93377 L 453.60248,110.54315 L 455.66023,110.54315 L 455.66023,108.4854 L 456.3865,107.00261 L 454.72214,105.33825 L 456.20493,102.76606 L 455.08527,99.800483 L 454.17744,99.043957 L 451.75656,93.869321 L 452.69465,92.386531 C 452.69465,92.386531 452.61802,91.169079 452.54335,89.541994 L 450.00142,89.541994 L 446.58192,85.759365 L 442.22433,85.759365 z "/> |
<path id="INSEE-D77" title="Seine-et-Marne (77)" class="land departement idf departement77" d="M 351.10838,112.93377 L 349.95846,113.50873 L 348.08227,115.02178 L 346.20609,114.44682 L 342.96816,115.77831 L 340.33545,114.26525 L 339.18553,115.77831 L 337.49091,115.95987 L 336.341,115.02178 L 334.46481,113.90212 L 332.19523,115.41517 L 332.10445,115.32439 L 331.2874,120.55955 L 332.40706,127.21697 L 332.40706,131.66535 L 330.92427,135.38745 L 331.2874,137.95964 L 329.62305,139.26086 L 330.53088,144.28419 L 329.80461,145.37359 L 329.25991,150.39692 L 330.53088,152.06128 L 326.29433,154.84529 L 326.29433,158.65818 L 327.47451,160.41332 L 329.74409,161.56324 L 329.92566,164.77091 L 326.89955,166.85892 L 328.59417,168.37197 L 330.68218,167.04049 L 335.7963,167.22205 L 337.67248,166.85892 L 338.24744,165.34587 L 340.33545,165.52744 L 340.69858,167.04049 L 345.4193,164.37752 L 347.14418,162.31977 L 349.41376,159.6568 L 347.90071,157.96218 L 349.23219,155.11764 L 352.62143,153.42303 L 360.00512,153.78616 L 361.69974,152.48493 L 361.85104,152.63624 L 362.2747,149.45883 L 363.03122,145.6762 L 364.36271,143.95132 L 364.54427,141.68175 L 367.17698,140.56209 L 367.17698,139.04904 L 364.36271,139.2306 L 363.78775,137.89912 L 364.72584,136.2045 L 363.96931,133.35996 L 362.45626,132.42187 L 362.84966,129.78916 L 364.36271,128.82081 L 364.15088,127.70115 L 364.69558,127.03541 L 361.51817,126.36967 L 360.54982,124.10009 L 358.8552,123.52513 L 353.77135,118.62284 L 353.19639,114.44682 L 351.10838,112.93377 z "/> |
<path id="INSEE-D91" title="Essonne (91)" class="land departement idf departement91" d="M 318.88038,132.21004 L 317.18576,132.96657 L 315.33984,133.69283 L 314.97671,135.75058 L 312.19269,137.05181 L 311.82956,139.0793 L 313.13079,141.31861 L 311.2546,143.8908 L 308.50085,143.8908 L 309.59025,145.55516 L 308.28902,147.03795 L 307.83511,150.03379 L 308.74294,150.21536 L 309.10607,152.6665 L 309.49946,153.24146 L 309.89286,158.32531 L 315.94506,157.78061 L 318.39621,155.51104 L 320.48422,157.20565 L 325.56807,157.56879 L 326.29433,158.65818 L 326.29433,154.84529 L 330.53088,152.06128 L 329.25991,150.39692 L 329.80461,145.37359 L 330.53088,144.28419 L 329.62305,139.26086 L 331.2874,137.95964 L 330.95453,135.59928 L 328.86652,134.63093 L 325.35624,134.63093 L 323.32875,133.51127 L 321.84596,134.26779 L 318.88038,132.21004 z "/> |
<path id="INSEE-D95" title="Val-d'Oise (95)" class="land departement idf departement95" d="M 300.81455,106.33686 L 299.3015,108.21305 L 298.15158,112.38907 L 296.88061,114.5376 L 301.48029,116.59535 L 304.99057,115.95987 L 309.34816,118.74389 L 314.00836,118.95571 L 317.30681,120.95294 L 318.15412,123.73696 L 318.12386,123.79748 L 318.48699,123.73696 L 321.87622,121.92129 L 326.96008,121.58842 L 329.74409,120.31746 L 331.52949,119.0465 L 332.10445,115.32439 L 330.86375,114.08369 L 326.71799,111.63254 L 322.72353,109.54453 L 320.66578,110.48263 L 318.39621,111.05759 L 316.88315,109.90767 L 313.85705,108.03148 L 311.40591,109.90767 L 307.80485,110.30106 L 302.69073,109.90767 L 301.54081,108.03148 L 300.81455,106.33686 z "/> |
<path id="INSEE-D93" title="Seine-Saint-Denis (93)" class="land departement idf idfbig departement93" d="M 64.830941,8.8357923 L 58.956135,13.017858 L 49.795421,17.199922 L 33.06716,18.295224 L 33.565025,20.585403 L 34.959046,20.884122 L 36.253495,22.875582 L 34.959046,25.663625 L 33.266306,25.962344 L 34.461182,28.849961 L 42.526593,28.750388 L 45.115491,32.733307 L 45.613356,38.309394 L 48.401399,37.911102 L 50.990297,35.820069 L 54.873643,36.019215 L 59.752719,38.807259 L 62.540763,41.894021 L 63.835211,42.491459 L 64.631795,43.985054 L 67.718558,44.781638 L 67.718558,35.720496 L 64.034357,13.814441 L 64.830941,8.8357923 z "/> |
<path id="INSEE-D75" title="Paris (75)" class="land departement idf idfbig departement75" d="M 42.526593,28.750388 L 34.461182,28.849961 L 30.876554,30.443128 L 29.382959,32.434588 L 26.097051,32.633734 L 23.109861,36.019215 L 23.209434,37.911102 L 23.906445,40.101708 L 28.885094,41.495729 L 34.959046,44.582492 L 38.842393,44.781638 L 41.43129,44.084627 L 44.119761,42.19274 L 45.015918,42.989324 L 50.791151,43.785908 L 51.786881,41.694875 L 51.786881,39.603843 L 50.791151,39.205551 L 46.808231,39.404697 L 47.10695,40.400427 L 46.409939,40.997864 L 45.115491,40.997864 L 45.613356,39.703416 L 45.812502,38.309394 L 45.613356,38.309394 L 45.115491,32.733307 L 42.526593,28.750388 z "/> |
<path id="INSEE-D25" title="Doubs (25)" class="land departement franche-comte departement25" d="M 486.587,193.51889 L 486.40544,193.73072 L 484.22664,193.73072 L 483.10698,195.27403 L 481.68472,196.09108 L 481.68472,197.99752 L 478.14418,198.42118 L 476.23773,197.05943 L 473.66554,197.45282 L 471.2144,199.35927 L 469.45926,202.35511 L 467.70412,202.89981 L 466.88707,204.9273 L 464.70828,205.32069 L 461.71244,207.77183 L 457.7785,207.65079 L 456.56806,208.58888 L 455.47867,208.58888 L 451.66578,211.70577 L 449.9409,211.64524 L 449.91064,212.79516 L 450.18299,214.82265 L 452.63413,216.45675 L 453.99587,218.24215 L 453.57222,220.11833 L 452.36178,222.99313 L 451.54473,224.86931 L 456.84041,226.65471 L 460.22965,226.38237 L 460.502,229.2269 L 460.502,233.03979 L 464.70828,234.40154 L 466.61472,234.91598 L 469.33822,237.51842 L 469.06587,239.69722 L 467.82516,241.45236 L 464.43593,242.54175 L 465.25298,244.4482 L 465.64637,245.93099 L 464.16358,247.41378 L 464.31489,248.77553 L 466.61472,248.98735 L 466.64498,248.80579 L 478.356,237.82103 L 477.99287,228.74273 L 482.13863,226.68498 L 484.98317,225.35349 L 487.61588,222.90235 L 487.8277,219.30128 L 490.46041,217.9698 L 496.51262,210.9795 L 495.57453,208.70992 L 497.66254,207.77183 L 500.11368,204.74573 L 498.7822,203.41424 L 494.24304,204.35234 L 494.06148,203.59581 L 498.2375,198.78431 L 486.587,193.51889 z "/> |
<path id="INSEE-D90" title="Territoire de Belfort (90)" class="land departement franche-comte departement90" d="M 490.49068,180.26456 L 488.73554,181.17239 L 487.25275,182.26179 L 487.25275,184.68267 L 488.06979,187.55747 L 488.06979,189.43365 L 487.61588,192.45975 L 486.587,193.51889 L 498.2375,198.78431 L 498.96376,197.937 L 501.47543,197.54361 L 500.53734,193.51889 L 499.96238,191.43088 L 497.29941,191.82427 L 496.93627,189.55469 L 497.87437,187.82982 L 498.05593,185.56024 L 497.51123,184.25901 L 494.09174,181.59604 L 491.06563,181.41448 L 490.49068,180.26456 z "/> |
<path id="INSEE-D01" title="Ain (01)" class="land departement rhone-alpes departement01" d="M 424.49137,254.40408 L 422.40336,254.61591 L 421.07188,257.06705 L 417.50107,271.04764 L 416.98664,272.19756 L 416.6235,276.61567 L 415.59463,278.03794 L 415.59463,284.42302 L 414.98941,285.87555 L 418.68125,288.11486 L 420.13378,288.32669 L 422.40336,290.38444 L 422.79675,293.68289 L 425.27816,292.86585 L 429.12131,293.9855 L 429.18183,293.25924 L 431.02775,293.25924 L 433.69072,295.74064 L 436.17213,294.49994 L 437.41283,290.8081 L 438.65353,289.35557 L 440.28763,289.56739 L 441.92172,291.01992 L 442.76903,293.68289 L 450.36455,302.94277 L 452.63413,301.30867 L 453.02752,297.79839 L 455.50893,297.37474 L 455.50893,291.20149 L 456.74963,290.17261 L 457.14302,284.63485 L 457.6272,285.02824 L 457.56668,283.00075 L 456.5378,281.12457 L 456.96146,275.79863 L 458.80738,276.8275 L 459.83625,274.95132 L 461.68218,274.3461 L 463.58862,272.83304 L 461.53087,272.83304 L 461.53087,269.23198 L 463.80045,267.9005 L 467.18968,267.53736 L 467.40151,265.63092 L 466.25159,264.87439 L 469.09613,261.27333 L 468.70273,260.15367 L 465.4648,258.42879 L 457.59694,267.08345 L 452.11969,267.08345 L 452.11969,264.81387 L 449.09359,263.30082 L 445.49253,267.26502 L 442.64799,267.65841 L 442.64799,264.99544 L 440.19685,263.87578 L 436.41422,258.5801 L 432.99472,257.24861 L 431.87506,254.79747 L 429.96862,254.40408 L 428.09243,255.73556 L 426.57938,256.12896 L 424.49137,254.40408 z "/> |
<path id="INSEE-D74" title="Haute-Savoie (74)" class="land departement rhone-alpes departement74" d="M 485.3463,257.8841 L 481.01897,258.64062 L 476.84295,262.02986 L 475.72329,260.33524 L 473.63528,260.51681 L 471.72884,264.69283 L 471.94066,266.38745 L 473.99841,268.08206 L 470.21579,270.56347 L 467.76464,272.83304 L 463.58862,272.83304 L 461.68218,274.3461 L 459.83625,274.95132 L 458.80738,276.8275 L 456.96146,275.79863 L 456.5378,281.12457 L 457.56668,283.00075 L 457.6272,285.02824 L 459.20077,286.26894 L 459.20077,291.62514 L 462.92288,292.23036 L 464.34515,294.9236 L 467.6436,295.31699 L 468.24882,294.10655 L 469.91318,294.10655 L 472.78797,297.19317 L 473.81685,298.22205 L 477.1153,297.58657 L 477.93235,295.95247 L 478.7494,292.65402 L 480.59532,291.20149 L 482.04785,286.90442 L 483.89377,285.66372 L 485.3463,286.05711 L 485.73969,287.29782 L 484.71082,288.53852 L 486.55674,290.8081 L 489.64337,290.8081 L 491.51955,293.89472 L 491.0959,294.9236 L 492.94182,293.68289 L 494.39435,292.0488 L 495.66531,292.2001 L 495.75609,288.90165 L 502.20169,286.23868 L 502.95822,284.3625 L 502.56483,280.18647 L 498.41906,275.85915 L 497.08758,276.61567 L 497.08758,274.89079 L 497.08758,272.07652 L 493.48652,270.35164 L 493.30495,268.83859 L 495.39296,266.56901 L 495.39296,263.9363 L 491.97347,260.33524 L 491.7919,257.8841 L 485.3463,257.8841 z "/> |
<path id="INSEE-D42" title="Loire (42)" class="land departement rhone-alpes departement42" d="M 382.12593,269.35303 L 378.70644,269.92799 L 378.16174,272.016 L 379.49322,274.64871 L 379.85635,285.42163 L 375.3172,285.63346 L 375.13563,287.32808 L 378.16174,289.77922 L 376.46712,291.47384 L 375.89216,295.64986 L 378.16174,298.67596 L 380.21949,303.57825 L 385.15203,306.81618 L 386.84665,313.04995 L 383.24559,316.43919 L 383.82055,318.70876 L 389.11623,320.43364 L 393.29225,317.01415 L 395.35,316.83258 L 401.40221,319.46529 L 401.03907,323.06635 L 404.06518,322.88479 L 406.4558,325.63854 L 408.21094,325.15436 L 411.47913,324.54914 L 412.32644,320.82704 L 416.83533,318.16407 L 417.25899,312.20264 L 417.41029,312.11186 L 415.20124,311.77899 L 413.14349,312.59604 L 411.47913,311.56716 L 413.53688,309.11602 L 412.93166,307.27009 L 406.54658,306.24122 L 401.19038,301.30867 L 401.19038,299.64432 L 402.43108,298.61544 L 402.43108,297.19317 L 401.00881,296.34586 L 402.21925,294.49994 L 402.21925,291.83697 L 399.76811,289.56739 L 399.76811,287.29782 L 398.10375,285.66372 L 398.10375,283.8178 L 397.28671,280.73117 L 398.52741,279.49047 L 398.73924,275.79863 L 402.64291,275.79863 L 403.67178,274.55792 L 402.43108,272.50017 L 402.43108,270.65425 L 401.40221,269.8372 L 400.67594,273.71061 L 398.58793,273.71061 L 397.07488,275.22367 L 395.92496,274.07375 L 389.87276,273.13565 L 387.60318,274.46714 L 386.09013,274.46714 L 385.72699,273.13565 L 382.88246,272.5607 L 382.70089,269.53459 L 382.12593,269.35303 z "/> |
<path id="INSEE-D73" title="Savoie (73)" class="land departement rhone-alpes departement73" d="M 457.14302,284.63485 L 456.74963,290.17261 L 455.50893,291.20149 L 455.50893,297.37474 L 453.02752,297.79839 L 452.63413,301.30867 L 450.36455,302.94277 L 450.33429,302.91251 L 450.57638,303.97164 L 452.84596,306.42279 L 452.84596,308.08714 L 455.08527,312.20264 L 459.83625,313.23152 L 461.47035,314.47222 L 462.10583,313.83674 L 461.25852,312.20264 L 462.49922,309.50941 L 463.95175,309.32784 L 466.4029,312.59604 L 467.43177,311.17377 L 468.8843,311.17377 L 472.78797,315.07744 L 472.9998,317.74041 L 471.15388,318.76929 L 470.30657,322.67296 L 471.97093,324.33732 L 471.97093,325.97141 L 471.54727,327.63577 L 472.78797,326.39507 L 474.84572,327.63577 L 475.93512,329.11856 L 479.35462,328.75543 L 480.47427,329.87508 L 481.04923,332.53805 L 484.43847,332.14466 L 484.83186,329.30012 L 486.52648,328.5436 L 490.1578,328.72516 L 490.09728,328.60412 L 495.75609,326.33454 L 497.84411,327.66603 L 499.93212,327.66603 L 500.11368,325.39645 L 502.56483,324.06497 L 503.50292,322.94531 L 508.43547,321.03886 L 509.01042,317.83119 L 508.04207,316.31814 L 510.70504,311.77899 L 508.2539,310.8409 L 507.49737,308.17793 L 502.38326,305.15182 C 502.38326,305.15182 502.68831,299.35405 502.20169,298.31283 C 502.18638,298.28673 502.15357,298.23797 502.14117,298.22205 C 502.13632,298.21677 502.11589,298.19627 502.11091,298.19179 C 502.10745,298.192 502.08341,298.19172 502.08065,298.19179 C 502.0806,298.18503 502.08048,298.16334 502.08065,298.16153 C 502.0772,298.16164 502.05314,298.16149 502.05039,298.16153 C 502.04757,298.16138 502.02298,298.16146 502.02013,298.16153 C 502.01671,298.16145 501.99262,298.16154 501.98987,298.16153 C 501.23334,298.35066 498.41906,298.55492 498.41906,298.55492 L 495.57453,295.31699 L 495.66531,292.2001 L 494.39435,292.0488 L 492.94182,293.68289 L 491.0959,294.9236 L 491.51955,293.89472 L 489.64337,290.8081 L 486.55674,290.8081 L 484.71082,288.53852 L 485.73969,287.29782 L 485.3463,286.05711 L 483.89377,285.66372 L 482.04785,286.90442 L 480.59532,291.20149 L 478.7494,292.65402 L 477.93235,295.95247 L 477.1153,297.58657 L 473.81685,298.22205 L 472.78797,297.19317 L 469.91318,294.10655 L 468.24882,294.10655 L 467.6436,295.31699 L 464.34515,294.9236 L 462.92288,292.23036 L 459.20077,291.62514 L 459.20077,286.26894 L 457.14302,284.63485 z "/> |
<path id="INSEE-D17" title="Charente-Maritime (17)" class="land departement poitou departement17" d="M 197.92705,262.18116 L 195.26408,262.36273 L 189.48422,265.87301 L 190.87623,267.14397 L 187.85013,269.59511 L 187.487,271.50156 L 184.64246,271.86469 L 183.12941,270.17007 L 179.34678,269.80694 L 178.95339,267.9005 L 176.68381,266.38745 L 173.47614,267.53736 L 175.56415,270.56347 L 178.19686,270.56347 L 180.85983,272.25808 L 182.94784,273.9527 L 186.91204,273.77114 L 187.66856,275.46575 L 190.30127,276.04071 L 191.26962,278.67342 L 192.96424,279.42995 L 192.78268,281.51796 L 190.5131,281.15483 L 189.75657,282.27449 L 191.45119,284.72563 L 190.5131,288.90165 L 188.24352,288.72008 L 188.42509,291.35279 L 189.00005,292.29089 L 186.33708,292.29089 L 185.97394,290.77783 L 187.66856,288.50826 L 187.0936,287.20703 L 186.15551,286.45051 L 185.76212,281.91135 L 182.55445,281.51796 L 179.92174,278.31029 L 179.52835,284.93746 L 183.88593,288.14512 L 184.24907,291.74619 L 185.00559,295.89195 L 185.39898,300.06797 L 187.66856,299.85614 L 191.63276,303.09407 L 194.29573,304.60712 L 194.47729,306.48331 L 196.5653,306.8767 L 202.61751,312.92891 L 204.03978,319.46529 L 209.63807,319.46529 L 210.57616,318.5272 L 210.75773,321.37173 L 215.69027,321.94669 L 216.4468,327.9989 L 219.10977,328.18047 L 223.4371,332.53805 L 225.70667,332.90119 L 228.36965,331.5697 L 230.24583,332.90119 L 231.75888,329.69352 L 233.27193,327.06081 L 229.24722,324.33732 L 228.00651,322.67296 L 226.34216,320.82704 L 222.43848,321.46252 L 221.19778,320.82704 L 221.01622,319.79816 L 223.07397,318.98111 L 223.07397,318.58772 L 221.62144,318.16407 L 220.59256,317.34702 L 223.07397,315.28927 L 223.07397,313.83674 L 221.83326,312.59604 L 222.65031,311.77899 L 223.07397,309.72124 L 221.62144,308.29897 L 220.38073,306.24122 L 218.14142,304.18347 L 216.47706,303.1546 L 217.92959,301.49024 L 217.11254,301.30867 L 216.90072,296.98135 L 215.23636,296.34586 L 217.50594,295.13542 L 220.19917,295.13542 L 221.40961,294.10655 L 223.67919,294.10655 L 224.10284,295.13542 L 226.16059,295.31699 L 227.58286,294.71177 L 228.00651,290.8081 L 229.64061,284.84667 L 229.70113,284.81641 L 228.21834,283.39414 L 227.79469,281.33639 L 225.13172,280.09569 L 221.62144,277.64455 L 217.29411,278.03794 L 214.63114,274.55792 L 210.72747,274.3461 L 207.64084,272.07652 L 207.64084,270.83582 L 205.58309,268.5965 L 205.49231,265.81249 L 202.64777,263.69421 L 199.04671,265.20727 L 197.92705,262.18116 z "/> |
<path id="INSEE-D86" title="Vienne (86)" class="land departement poitou departement86" d="M 236.11647,218.6658 L 232.51541,222.44843 L 231.60758,224.02201 L 231.91019,228.6822 L 233.54428,228.47038 L 233.75611,230.52813 L 234.39159,233.82658 L 235.42047,236.09616 L 234.17976,237.51842 L 234.78498,238.5473 L 233.96794,239.99983 L 233.96794,240.60505 L 235.42047,242.26941 L 235.42047,243.29828 L 234.78498,244.93238 L 232.72723,248.019 L 234.78498,248.83605 L 235.42047,250.28858 L 234.57316,252.52789 L 234.39159,253.55677 L 233.15089,255.61452 L 233.15089,257.06705 L 233.96794,257.27888 L 233.96794,261.6062 L 235.42047,262.63508 L 234.78498,264.05735 L 234.99681,265.29805 L 236.63091,267.14397 L 237.47821,265.90327 L 237.47821,264.87439 L 239.11231,264.05735 L 240.35301,264.87439 L 240.35301,267.96102 L 239.11231,269.41355 L 238.08344,271.86469 L 239.5057,274.13427 L 242.41076,274.95132 L 241.77528,276.8275 L 239.08205,277.28142 L 241.56345,280.30752 L 244.86191,280.09569 L 247.7367,279.06682 L 250.64176,280.73117 L 251.67064,279.91413 L 251.45881,277.22089 L 253.09291,275.98019 L 254.54544,278.4616 L 255.75588,279.7023 L 259.26616,278.24977 L 260.71868,276.61567 L 263.98688,276.61567 L 265.68149,277.46298 L 265.80254,273.89218 L 264.50131,272.37913 L 266.01436,271.25947 L 268.46551,268.41493 L 272.61127,268.23337 L 272.61127,265.96379 L 274.69928,264.23891 L 279.81339,263.30082 L 280.17653,260.45628 L 278.11878,259.33663 L 276.96886,255.37243 L 273.94275,254.97904 L 272.06657,253.10285 L 268.46551,250.25832 L 269.22203,247.98874 L 269.22203,244.38768 L 265.80254,240.99844 L 265.43941,238.33547 L 262.20148,234.94624 L 261.08182,230.40708 L 259.75033,229.83212 L 258.23728,227.74411 L 256.72423,228.6822 L 257.11762,230.77021 L 252.18507,231.92013 L 246.52626,231.92013 L 246.70783,229.65056 L 246.70783,226.04949 L 242.16867,224.71801 L 242.16867,222.44843 L 238.56761,221.69191 L 237.81109,218.6658 L 236.11647,218.6658 z "/> |
<path id="INSEE-D50" title="Manche (50)" class="land departement basse-normandie departement50" d="M 169.11855,75.168005 L 168.36203,77.07445 L 172.35648,80.282119 L 172.35648,84.458141 L 170.84343,86.334325 L 171.78152,87.272417 L 172.35648,87.66581 L 171.96309,91.266873 L 173.29457,94.292976 L 177.65216,99.195262 L 178.59025,103.55285 L 179.52835,104.88434 L 179.52835,111.69307 L 181.79792,116.23222 L 181.79792,121.5279 L 179.34678,126.43019 L 181.97949,133.23892 L 186.15551,134.17701 L 186.51864,136.08346 L 184.46089,137.02155 L 180.89009,137.02155 L 181.46505,139.41217 L 182.58471,143.01323 L 185.82264,145.85777 L 187.33569,146.2209 L 188.84874,144.16315 L 190.54336,143.95132 L 192.60111,141.50018 L 194.50755,143.01323 L 196.77713,143.01323 L 198.29018,143.76976 L 198.29018,144.13289 L 201.49785,144.52628 L 203.4043,143.01323 L 206.21857,144.16315 L 206.27909,144.28419 L 209.51702,141.53044 L 210.60642,137.92938 L 210.30381,136.35581 L 210.75773,134.50988 L 208.88154,132.6337 L 204.03978,129.48655 L 200.46898,129.18394 L 196.86791,124.64479 L 199.8335,123.55539 L 201.0742,121.22529 L 199.53089,119.80302 L 200.92289,118.56232 L 202.3149,119.65172 L 204.82657,118.10841 L 206.40014,115.59674 L 207.00536,113.11534 L 205.91596,110.90628 L 206.55144,110.11949 L 205.12918,107.78939 L 206.70275,105.76191 L 205.46205,104.18833 L 203.88847,106.21582 L 201.70968,104.97512 L 198.10862,101.37406 L 197.95731,99.830744 L 199.04671,98.741347 L 198.71384,96.653336 L 196.92844,97.107251 L 196.74687,92.568097 L 191.81432,86.727718 L 193.32737,82.94509 L 195.41539,82.94509 L 193.5392,77.830976 L 185.39898,77.437583 L 181.0414,80.463685 L 176.13911,77.256016 L 169.11855,75.168005 z "/> |
<path id="INSEE-D49" title="Maine-et-Loire (49)" class="land departement pdll departement49" d="M 190.78545,182.83675 L 190.36179,183.68405 L 190.08944,183.62353 L 190.30127,184.31954 L 190.30127,186.49833 L 192.32876,187.73903 L 193.56946,191.03748 L 195.44565,193.36758 L 192.96424,195.57664 L 193.11555,198.36065 L 194.05364,199.14744 L 197.47314,198.69352 L 200.28741,201.32623 L 200.92289,205.22991 L 199.04671,206.50087 L 192.96424,206.34956 L 189.06057,207.10609 L 186.88178,208.22575 L 186.88178,210.07167 L 188.90926,212.58334 L 190.93675,212.58334 L 191.08806,215.24631 L 191.87484,216.03309 L 190.93675,218.21189 L 189.36318,218.6658 L 189.36318,220.08807 L 188.57639,220.87486 L 189.51448,221.32877 L 189.99866,221.17747 L 191.39067,221.17747 L 192.96424,223.20496 L 192.90372,225.17192 L 193.26685,225.23245 L 194.84043,226.17054 L 199.68219,226.17054 L 202.25438,228.34933 L 205.85544,226.80602 L 211.72608,228.13751 L 214.35879,226.41263 L 214.35879,223.77992 L 219.4729,223.38652 L 224.19362,222.44843 L 229.30774,222.26687 L 229.8827,223.59835 L 231.21418,224.71801 L 232.51541,222.44843 L 236.11647,218.6658 L 237.569,218.6658 L 239.71753,210.91898 L 242.74363,207.31792 L 242.53181,203.17216 L 244.43825,200.69075 L 244.43825,199.57109 L 243.50016,198.42118 L 244.10538,197.18047 L 241.53319,196.18186 L 233.57454,191.34009 L 226.22111,189.1613 L 223.40684,189.01 L 223.40684,187.13381 L 221.68196,185.71154 L 219.83604,185.71154 L 216.38628,184.62215 L 214.20748,186.80094 L 209.21441,186.98251 L 207.00536,185.71154 L 201.40707,184.01693 L 200.13611,185.56024 L 197.01922,183.53275 L 194.20494,183.53275 L 190.78545,182.83675 z "/> |
<path id="INSEE-D72" title="Sarthe (72)" class="land departement pdll departement72" d="M 249.3708,147.18925 L 244.25669,147.37082 L 239.14257,152.09154 L 236.4796,151.94024 L 232.93906,153.09015 L 231.84966,154.96634 L 231.36549,159.02132 L 231.69836,161.50272 L 228.88408,163.86308 L 228.0973,165.40639 L 228.73278,166.82866 L 227.94599,168.70484 L 228.2486,169.49163 L 225.13172,169.79424 L 224.6778,171.18625 L 226.06981,174.63601 L 225.9185,175.5741 L 224.6778,176.6635 L 222.01483,176.8148 L 221.68196,177.75289 L 222.31744,178.69098 L 222.31744,184.31954 L 221.71222,185.7418 L 223.40684,187.13381 L 223.40684,189.01 L 226.22111,189.1613 L 233.57454,191.34009 L 241.53319,196.18186 L 244.10538,197.18047 L 245.37634,194.63855 L 249.15897,197.30152 L 251.24698,197.30152 L 250.09706,193.51889 L 252.3969,195.03194 L 253.69813,193.1255 L 259.17537,191.61244 L 258.23728,189.34287 L 259.56877,187.64825 L 262.4133,186.52859 L 265.04601,183.10909 L 265.04601,179.50803 L 266.95246,179.50803 L 267.70898,176.87532 L 267.89055,172.91113 L 266.01436,171.18625 L 267.52742,168.55354 L 269.76673,165.709 L 267.13402,163.83282 L 264.68288,163.43943 L 262.01991,159.47523 L 261.26338,159.47523 L 261.08182,161.35141 L 260.90025,160.05019 L 256.93606,160.05019 L 255.02961,157.20565 L 251.82194,156.05573 L 250.88385,149.247 L 249.3708,147.18925 z "/> |
<path id="INSEE-D61" title="Orne (61)" class="land departement basse-normandie departement61" d="M 253.6376,120.8319 L 249.79445,121.67921 L 248.55375,120.92268 L 244.95269,121.5279 L 244.80138,122.95017 L 243.56068,123.25278 L 243.10677,121.22529 L 241.53319,121.5279 L 239.17283,124.19087 L 235.60203,126.85384 L 231.69836,128.09454 L 228.58147,126.36967 L 224.98041,127.00515 L 222.80162,124.82635 L 220.74387,125.58288 L 217.32437,127.94324 L 213.4207,126.85384 L 210.60642,130.12203 L 206.79353,131.27195 L 208.88154,132.6337 L 210.75773,134.50988 L 210.30381,136.35581 L 210.60642,137.92938 L 209.51702,141.53044 L 206.27909,144.28419 L 207.55006,146.43273 L 209.63807,147.94578 L 212.48261,146.03933 L 214.35879,147.37082 L 219.4729,144.34472 L 224.58702,145.10124 L 227.40129,143.95132 L 228.18808,142.07514 L 230.06426,141.89357 L 231.75888,143.40663 L 232.51541,147.55239 L 234.96655,148.49048 L 235.9349,151.90997 L 239.14257,152.09154 L 244.25669,147.37082 L 249.3708,147.18925 L 250.88385,149.247 L 251.82194,156.05573 L 255.02961,157.20565 L 256.93606,160.05019 L 260.90025,160.05019 L 261.08182,161.35141 L 261.26338,159.47523 L 262.01991,159.47523 L 264.68288,163.43943 L 266.74063,163.7723 L 266.74063,159.29367 L 265.43941,157.56879 L 265.04601,156.05573 L 267.89055,154.36112 L 270.73509,153.78616 L 272.61127,151.51658 L 272.24814,144.52628 L 268.25368,141.13705 L 268.07211,137.89912 L 264.68288,135.62954 L 266.01436,133.75336 L 265.22758,130.90882 L 262.59487,129.97073 L 260.68842,128.06428 L 259.56877,125.43157 L 254.27309,125.25001 L 252.76003,123.34356 L 253.6376,120.8319 z "/> |
<path id="INSEE-D28" title="Eure-et-Loir (28)" class="land departement centre departement28" d="M 292.67433,122.2239 L 291.52441,123.162 L 291.52441,126.1881 L 287.74178,128.06428 L 287.74178,130.90882 L 286.62213,132.24031 L 281.87114,132.24031 L 279.63183,131.30221 L 272.79284,134.87301 L 270.16013,134.87301 L 267.43663,137.47546 L 268.07211,137.89912 L 268.25368,141.13705 L 272.24814,144.52628 L 272.61127,151.51658 L 270.73509,153.78616 L 267.89055,154.36112 L 265.04601,156.05573 L 265.43941,157.56879 L 266.74063,159.29367 L 266.74063,163.7723 L 267.13402,163.83282 L 269.76673,165.709 L 268.79838,166.91944 L 270.67456,167.85754 L 273.67041,167.31284 L 275.42554,167.31284 L 275.3045,168.12989 L 273.67041,169.06798 L 274.7598,169.88503 L 277.48329,169.88503 L 278.42139,172.06382 L 280.05548,173.00191 L 281.26592,175.7254 L 285.47221,176.8148 L 288.07465,176.54245 L 290.37449,174.36366 L 292.43224,174.93862 L 292.94668,173.81896 L 292.82564,172.60852 L 293.91503,171.79147 L 295.67017,172.88087 L 296.75957,172.06382 L 296.75957,170.58103 L 298.24236,169.61268 L 299.60411,170.15737 L 300.81455,171.51912 L 302.99334,170.30868 L 305.29318,170.30868 L 306.92728,168.52328 L 307.89563,165.013 L 309.37842,164.74065 L 308.98503,161.20011 L 310.74017,159.71732 L 310.19547,158.62792 L 310.40729,158.26479 L 309.89286,158.32531 L 309.49946,153.24146 L 309.10607,152.6665 L 308.74294,150.21536 L 304.77874,149.45883 L 303.05386,147.37082 L 302.50917,143.1948 L 300.23959,142.83167 L 299.84619,140.74365 L 297.21349,138.86747 L 295.882,135.62954 L 297.21349,133.35996 L 295.882,131.84691 L 295.882,129.97073 L 296.63853,127.88272 L 295.12547,126.36967 L 294.55051,124.10009 L 292.67433,122.2239 z "/> |
<path id="INSEE-D89" title="Yonne (89)" class="land departement bourgogne departement89" d="M 361.69974,152.48493 L 360.00512,153.78616 L 352.62143,153.42303 L 349.23219,155.11764 L 347.90071,157.96218 L 349.41376,159.6568 L 347.14418,162.31977 L 345.4193,164.37752 L 348.8388,167.61545 L 349.77689,170.64155 L 352.2583,173.27426 L 352.2583,176.69376 L 347.32575,180.83952 L 349.02037,182.74596 L 348.65723,185.56024 L 345.99426,187.46668 L 342.21164,187.46668 L 342.78659,189.55469 L 345.23774,192.94393 L 345.8127,195.97003 L 346.38766,198.05804 L 345.268,198.39091 L 347.65862,198.93561 L 349.44402,198.93561 L 350.38211,197.45282 L 351.59255,197.45282 L 352.9543,198.66326 L 352.68195,200.17631 L 353.92265,200.99336 L 355.67779,200.99336 L 358.12894,202.62746 L 359.21833,202.08276 L 360.30773,203.02085 L 361.39713,202.7485 L 363.27331,201.53806 L 365.05871,202.08276 L 366.26915,201.81041 L 366.26915,198.42118 L 366.9349,198.54222 L 367.35855,200.29736 L 369.53734,201.65911 L 369.53734,203.71686 L 372.65423,203.8379 L 376.73947,207.65079 L 379.31166,207.77183 L 379.16035,206.56139 L 380.24975,204.9273 L 381.2181,206.13774 L 380.40105,207.49948 L 380.79445,208.74019 L 382.27724,207.77183 L 384.06264,207.77183 L 383.91133,210.49533 L 385.54543,211.58472 L 386.78613,211.04002 L 389.81223,208.98227 L 389.63067,208.58888 L 387.84527,207.49948 L 387.72422,205.59304 L 389.63067,204.65495 L 390.44771,203.56555 L 389.90302,202.62746 L 389.90302,200.44866 L 391.38581,198.26987 L 393.5646,193.63993 L 393.95799,191.61244 L 395.31974,191.06775 L 395.47105,190.67435 L 394.77504,190.12965 L 394.77504,188.49556 L 396.95384,186.86146 L 397.49853,184.13797 L 396.56044,182.53414 L 395.04739,182.53414 L 394.654,182.11048 L 394.654,179.81064 L 396.56044,178.4489 L 396.40914,177.08715 L 396.13679,175.7254 L 395.16844,177.81341 L 393.83695,177.63185 L 392.71729,175.54384 L 388.93466,177.45028 L 381.36941,177.05689 L 380.43131,174.96888 L 378.3433,172.1546 L 377.98017,168.73511 L 374.95407,165.13404 L 373.04762,166.46553 L 369.62813,163.83282 L 370.20309,158.71871 L 365.3008,153.60459 L 363.03122,153.60459 L 361.69974,152.48493 z "/> |
<path id="INSEE-D45" title="Loiret (45)" class="land departement centre departement45" d="M 318.39621,155.51104 L 315.94506,157.78061 L 310.40729,158.26479 L 310.19547,158.62792 L 310.74017,159.71732 L 308.98503,161.20011 L 309.37842,164.74065 L 307.89563,165.013 L 306.92728,168.52328 L 305.29318,170.30868 L 302.99334,170.30868 L 300.81455,171.51912 L 299.60411,170.15737 L 298.24236,169.61268 L 296.75957,170.58103 L 296.75957,172.06382 L 295.67017,172.88087 L 293.91503,171.79147 L 292.82564,172.60852 L 292.94668,173.81896 L 292.43224,174.93862 L 292.82564,175.05966 L 294.42947,175.05966 L 294.30843,176.14906 L 293.21903,178.02524 L 293.21903,178.99359 L 294.30843,178.99359 L 295.24652,180.08299 L 295.51887,181.17239 L 293.37033,183.32092 L 294.42947,185.92337 L 294.42947,187.13381 L 296.21487,188.34425 L 298.66601,188.6166 L 300.26985,189.97835 L 300.6935,192.30845 L 302.44864,194.33594 L 304.35509,193.79124 L 305.17214,192.0361 L 308.16798,192.42949 L 308.83372,193.1255 L 310.74017,193.1255 L 311.67826,192.0361 L 318.60803,192.30845 L 320.24213,194.72933 L 322.14857,195.54638 L 323.78267,197.05943 L 325.81016,196.78708 L 326.35486,196.09108 L 327.5653,196.09108 L 329.07835,197.99752 L 332.19523,198.14883 L 333.01228,199.20796 L 335.19108,202.2038 L 336.12917,203.02085 L 337.33961,202.89981 L 337.49091,200.17631 L 338.03561,199.90397 L 338.85266,200.02501 L 340.21441,201.81041 L 341.1525,202.2038 L 343.0892,201.41702 L 342.78659,201.08415 L 342.60503,199.1777 L 346.38766,198.05804 L 345.8127,195.97003 L 345.23774,192.94393 L 342.78659,189.55469 L 342.21164,187.46668 L 345.99426,187.46668 L 348.65723,185.56024 L 349.02037,182.74596 L 347.32575,180.83952 L 352.2583,176.69376 L 352.2583,173.27426 L 349.77689,170.64155 L 348.8388,167.61545 L 345.4193,164.37752 L 340.69858,167.04049 L 340.33545,165.52744 L 338.24744,165.34587 L 337.67248,166.85892 L 335.7963,167.22205 L 330.68218,167.04049 L 328.59417,168.37197 L 326.89955,166.85892 L 329.92566,164.77091 L 329.74409,161.56324 L 327.47451,160.41332 L 325.56807,157.56879 L 320.48422,157.20565 L 318.39621,155.51104 z "/> |
<path id="INSEE-D36" title="Indre (36)" class="land departement centre departement36" d="M 299.9975,214.5503 L 298.78706,214.97396 L 296.33592,214.82265 L 293.49138,215.79101 L 292.82564,217.2738 L 292.55329,216.7291 L 289.2851,216.8804 L 287.651,218.24215 L 285.74456,218.5145 L 285.47221,219.45259 L 286.98526,221.48008 L 286.5616,223.26548 L 284.80646,223.38652 L 284.80646,224.86931 L 283.44472,226.11002 L 281.96193,228.56116 L 280.60018,227.32046 L 278.57269,226.92706 L 275.57685,228.01646 L 274.88085,231.4057 L 273.94275,234.12919 L 272.45996,241.84575 L 270.40221,243.7522 L 268.73786,243.9035 L 269.22203,244.38768 L 269.22203,247.98874 L 268.46551,250.25832 L 272.06657,253.10285 L 273.94275,254.97904 L 276.96886,255.37243 L 278.11878,259.33663 L 280.17653,260.45628 L 279.81339,263.30082 L 278.30034,263.57317 L 278.84504,263.69421 L 283.59602,264.05735 L 285.29064,262.36273 L 288.31674,265.38883 L 292.09937,261.03124 L 293.79399,262.18116 L 296.06357,261.96934 L 296.82009,262.36273 L 300.23959,262.54429 L 301.35925,259.51819 L 310.83095,260.66811 L 314.43201,261.6062 L 316.06611,261.42464 L 316.15689,259.91159 L 318.06333,258.00514 L 317.66994,256.37104 L 316.58054,254.22251 L 316.97394,253.40546 L 317.12524,250.95432 L 317.79098,250.13727 L 317.94229,249.59257 L 316.30819,248.10978 L 315.7635,246.20334 L 313.19131,244.84159 L 313.19131,243.2075 L 315.06749,242.1181 L 315.06749,241.0287 L 313.31235,239.54591 L 312.76765,238.60782 L 314.1294,237.91182 L 314.00836,236.70138 L 316.15689,234.91598 L 316.03585,234.12919 L 314.28071,234.12919 L 313.19131,232.88849 L 313.19131,232.22274 L 314.1294,230.58865 L 314.1294,229.37821 L 311.95061,226.50341 L 312.37426,223.93122 L 311.13356,222.99313 L 308.56137,223.11417 L 306.53388,223.93122 L 303.81039,223.53783 L 302.44864,222.44843 L 302.17629,221.63138 L 304.35509,219.84598 L 304.50639,217.69745 L 301.6316,216.06335 L 299.9975,214.5503 z "/> |
<path id="INSEE-D51" title="Marne (51)" class="land departement champagne departement51" d="M 380.03792,96.290203 L 377.76834,97.258556 L 378.16174,99.13474 L 374.16728,99.13474 L 370.59648,101.79771 L 370.59648,106.88156 L 373.22919,108.60644 L 373.98572,110.30106 L 369.62813,110.66419 L 369.08343,112.38907 L 370.77805,113.50873 L 370.02152,114.65865 L 368.3269,115.41517 L 368.69004,116.7164 L 371.14118,116.7164 L 372.10953,118.04788 L 370.41491,119.1978 L 368.90186,123.162 L 366.05733,124.49348 L 365.08897,126.55123 L 364.15088,127.70115 L 364.36271,128.82081 L 362.84966,129.78916 L 362.45626,132.42187 L 363.96931,133.35996 L 364.72584,136.2045 L 363.78775,137.89912 L 364.36271,139.2306 L 367.17698,139.04904 L 367.17698,139.98713 L 367.99403,139.80556 L 371.26222,143.25532 L 375.8619,142.49879 L 381.24836,138.83721 L 384.48629,138.83721 L 387.75448,136.53737 L 391.59763,134.4191 L 394.47243,134.63093 L 394.86582,138.47408 L 398.31558,143.64871 L 402.15873,143.64871 L 407.5452,142.49879 L 411.38835,143.83028 L 415.41306,140.95548 L 415.98802,136.17424 L 420.43639,135.41771 L 420.34561,132.42187 L 416.74455,129.57733 L 416.35116,128.06428 L 417.68264,125.79471 L 416.53272,124.85661 L 417.68264,122.01208 L 419.77065,121.07399 L 421.2837,116.35327 L 418.2576,116.53483 L 419.95222,114.65865 L 418.62073,110.48263 L 417.31951,107.63809 L 419.01413,106.12504 L 418.04577,105.94347 L 417.80368,104.64225 C 417.76457,104.64807 417.53134,104.67251 417.53134,104.67251 L 415.80646,103.1292 L 413.86975,105.0659 L 413.29479,105.0659 L 412.53827,104.09755 L 407.93859,103.91598 L 407.1518,105.0659 L 405.82032,105.0659 L 404.6704,102.55424 L 402.15873,102.55424 L 401.58377,103.1292 L 399.10237,102.94763 L 396.01574,100.64779 L 393.89747,100.07283 L 393.14095,98.922913 L 389.11623,96.411248 L 384.51655,96.290203 L 384.57708,98.015082 L 383.24559,98.378214 L 380.03792,96.290203 z "/> |
<path id="INSEE-D08" title="Ardennes (08)" class="land departement champagne departement08" d="M 409.3306,54.197113 L 407.42415,57.011388 L 405.72953,58.736267 L 405.72953,60.430885 L 405.72953,62.700462 L 403.45996,64.213513 L 399.3142,65.544998 L 397.04462,66.48309 L 394.38165,64.395079 L 390.78059,64.395079 L 390.26615,67.754053 L 391.96077,70.961723 L 390.26615,72.474774 L 390.08458,75.319311 L 391.02267,76.832362 L 390.26615,79.101939 L 387.42161,80.614991 L 387.42161,83.066134 L 383.82055,83.82266 L 383.24559,85.335711 L 385.72699,86.667196 L 384.97047,89.299906 L 384.39551,91.569483 L 384.51655,96.290203 L 389.11623,96.411248 L 393.14095,98.922913 L 393.89747,100.07283 L 396.01574,100.64779 L 399.10237,102.94763 L 401.58377,103.1292 L 402.15873,102.55424 L 404.6704,102.55424 L 405.82032,105.0659 L 407.1518,105.0659 L 407.93859,103.91598 L 412.53827,104.09755 L 413.29479,105.0659 L 413.86975,105.0659 L 415.80646,103.1292 L 417.53134,104.67251 C 417.53134,104.67251 417.76457,104.64807 417.80368,104.64225 L 417.68264,103.85546 L 419.95222,102.7358 L 421.07188,101.58588 L 420.34561,99.7097 L 420.13378,98.378214 L 422.22179,96.683597 L 422.97832,92.900968 L 420.70874,90.056432 L 421.46527,88.724946 L 423.37171,85.154145 L 423.91641,85.910671 L 426.76095,85.910671 L 428.09243,87.211895 L 429.78705,86.092237 L 431.11854,83.913443 L 429.75679,83.701616 L 429.00027,79.918987 L 427.48721,78.769068 L 422.19153,78.194108 L 421.25344,75.742965 L 419.52856,74.623307 L 413.47636,73.866781 L 413.11323,69.509193 L 413.86975,68.752667 L 413.86975,67.05805 L 410.84365,65.151605 L 411.41861,63.063594 L 412.17513,61.18741 L 410.84365,60.037491 L 412.93166,58.161307 L 412.93166,54.741811 L 412.17513,54.197113 L 409.3306,54.197113 z "/> |
<path id="INSEE-D52" title="Haute-Marne (52)" class="land departement champagne departement52" d="M 420.43639,135.41771 L 415.98802,136.17424 L 415.41306,140.95548 L 411.38835,143.83028 L 409.30034,143.10401 L 408.30172,145.19203 L 408.12016,148.06682 L 411.56991,152.87833 L 414.8381,154.02825 L 415.59463,158.05296 L 415.80646,164.95248 L 414.65654,166.67736 L 411.38835,166.88918 L 409.27007,168.79563 L 410.81339,169.76398 L 411.44887,172.18486 L 413.71845,173.45583 L 417.10768,177.05689 L 421.46527,182.92753 L 419.01413,185.56024 L 420.70874,186.71016 L 420.89031,189.91783 L 423.91641,189.73626 L 424.67294,191.24931 L 426.94252,191.43088 L 428.63713,190.49279 L 431.66324,194.27541 L 432.05663,195.21351 L 436.20239,194.27541 L 436.98918,192.36897 L 437.17074,192.39923 L 437.17074,190.49279 L 439.80345,189.34287 L 442.82956,190.49279 L 445.67409,189.34287 L 447.36871,189.34287 L 447.94367,185.56024 L 448.88176,184.44058 L 447.18714,184.25901 L 447.00558,181.98944 L 449.63829,181.41448 L 449.81985,179.90143 L 452.48282,179.90143 L 452.48282,177.45028 L 454.57083,176.69376 L 453.99587,175.18071 L 454.57083,174.81757 L 452.84596,173.45583 L 450.78821,174.21235 L 450.78821,170.24816 L 445.49253,167.61545 L 446.61218,162.50133 L 448.3068,161.35141 L 447.7621,159.6568 L 445.2807,159.29367 L 444.736,156.81226 L 442.46642,156.81226 L 439.80345,153.24146 L 436.77735,153.02963 L 435.47613,151.15345 L 437.17074,149.45883 L 433.17629,145.10124 L 431.48167,144.52628 L 426.94252,142.25671 L 424.49137,139.624 L 420.52718,139.04904 L 420.43639,135.41771 z "/> |
<path id="INSEE-D67" title="Bas-Rhin (67)" class="land departement alsace departement67" d="M 518.84526,108.84853 L 515.2442,109.84714 L 513.57984,112.7522 L 513.57984,115.59674 L 512.06679,116.92822 L 510.7353,116.92822 L 508.28416,115.20335 L 506.37772,116.53483 L 504.10814,116.53483 L 502.23195,114.65865 L 498.63089,114.08369 L 496.54288,113.1456 L 495.78636,110.30106 L 494.09174,112.17724 L 493.15365,116.53483 L 490.67224,117.29136 L 490.67224,119.7425 L 493.15365,120.89242 L 495.02983,122.2239 L 494.2733,123.91852 L 495.99818,125.03818 L 499.02429,122.7686 L 504.2897,125.79471 L 502.05039,129.97073 L 502.23195,131.30221 L 503.74501,132.81526 L 502.59509,136.77946 L 498.81246,140.56209 L 496.72445,140.38052 L 498.05593,141.68175 L 497.29941,145.10124 L 498.05593,150.21536 L 501.65699,151.15345 L 501.35438,151.84945 L 504.19892,151.69815 L 505.86328,153.72564 L 507.34607,155.57156 L 511.06817,155.38999 L 512.73253,160.2015 L 515.63759,161.47246 L 515.60733,160.86724 L 520.53988,151.21397 L 519.96492,145.73672 L 522.23449,138.35303 L 522.80945,131.90743 L 527.71174,128.33663 L 527.71174,126.06706 L 529.61819,123.58565 L 531.13124,123.58565 L 532.82585,121.89103 L 532.46272,118.68336 L 534.15734,114.14421 L 536.79005,113.56925 L 534.15734,111.48124 L 529.43662,110.93654 L 525.2606,108.84853 L 522.41606,110.54315 L 520.90301,108.84853 L 518.84526,108.84853 z "/> |
<path id="INSEE-D68" title="Haut-Rhin (68)" class="land departement alsace departement68" d="M 504.19892,151.69815 L 501.35438,151.84945 L 499.56898,155.87417 L 497.29941,160.41332 L 497.87437,163.25786 L 495.99818,167.61545 L 492.76025,170.42972 L 492.57869,177.81341 L 490.21833,179.8409 L 490.30911,179.90143 L 491.06563,181.41448 L 494.09174,181.59604 L 497.51123,184.25901 L 498.05593,185.56024 L 497.87437,187.82982 L 496.93627,189.55469 L 497.29941,191.82427 L 499.96238,191.43088 L 500.53734,193.51889 L 501.47543,197.54361 L 503.71474,197.18047 L 503.32135,199.23822 L 504.65284,200.38814 L 511.64313,200.20658 L 515.2442,197.36204 L 515.42576,193.18602 L 517.33221,190.73487 L 514.8508,187.89034 L 513.54958,184.86423 L 515.06263,182.80648 L 515.06263,178.0555 L 516.00072,175.78593 L 516.00072,172.0033 L 517.69534,169.55215 L 515.81916,166.91944 L 515.63759,161.47246 L 512.73253,160.2015 L 511.06817,155.38999 L 507.34607,155.57156 L 505.86328,153.72564 L 504.19892,151.69815 z "/> |
<path id="INSEE-D57" title="Moselle (57)" class="land departement lorraine departement57" d="M 463.04392,87.66581 L 460.19939,87.847376 L 457.92981,89.753821 L 457.35485,90.691913 L 454.14718,90.691913 L 453.02752,89.541994 L 452.54335,89.541994 C 452.61802,91.169079 452.69465,92.386531 452.69465,92.386531 L 451.75656,93.869321 L 454.17744,99.043957 L 455.08527,99.800483 L 456.20493,102.76606 L 454.72214,105.33825 L 456.3865,107.00261 L 455.66023,108.4854 L 455.66023,110.54315 L 453.60248,110.54315 L 453.42092,112.93377 L 457.32459,115.35465 L 457.14302,118.32023 L 460.1086,118.32023 L 461.59139,120.34772 L 465.28324,120.34772 L 469.00534,125.00792 L 469.91318,127.58011 L 472.33406,127.58011 L 477.14556,129.63786 L 481.41237,132.21004 L 481.41237,132.96657 L 484.19638,133.14814 L 487.70666,135.17563 L 491.03537,135.17563 L 493.81939,137.23338 L 496.96654,139.44243 L 499.20585,140.16869 L 502.59509,136.77946 L 503.74501,132.81526 L 502.23195,131.30221 L 502.05039,129.97073 L 504.2897,125.79471 L 499.02429,122.7686 L 495.99818,125.03818 L 494.2733,123.91852 L 495.02983,122.2239 L 493.15365,120.89242 L 490.67224,119.7425 L 490.67224,117.29136 L 493.15365,116.53483 L 494.09174,112.17724 L 495.78636,110.30106 L 496.54288,113.1456 L 498.63089,114.08369 L 502.23195,114.65865 L 504.10814,116.53483 L 506.37772,116.53483 L 508.28416,115.20335 L 510.7353,116.92822 L 512.06679,116.92822 L 513.57984,115.59674 L 513.57984,112.7522 L 515.2442,109.84714 L 514.8508,109.96819 L 513.54958,108.092 L 509.76695,105.82243 L 508.43547,103.73442 L 503.89631,104.12781 L 501.23334,106.57895 L 494.818,106.76052 L 492.91156,105.42903 C 492.78374,105.19718 491.85302,103.55467 491.03537,103.09893 C 491.0037,103.08212 490.95166,103.05465 490.91433,103.03841 C 490.88669,103.02712 490.84666,103.01491 490.82355,103.00815 C 490.81321,103.0029 490.77394,102.98348 490.76302,102.97789 C 490.76027,102.9779 490.73608,102.97776 490.73276,102.97789 C 490.70854,102.97663 490.66138,102.97789 490.64198,102.97789 C 489.75543,102.9779 488.03895,101.98291 487.8277,101.85823 L 485.16473,102.97789 L 484.98317,105.24747 L 481.7755,105.64086 L 479.86905,102.0398 L 478.7494,101.64641 L 478.7494,99.013696 L 476.08643,97.863777 L 475.90486,93.324623 L 473.99841,91.448439 L 470.03422,89.541994 L 468.15804,89.541994 L 467.58308,89.935387 L 465.67663,89.935387 L 463.04392,87.66581 z "/> |
<path id="INSEE-D88" title="Vosges (88)" class="land departement lorraine departement88" d="M 497.81384,141.43966 L 495.87714,141.86331 L 492.91156,142.98297 L 491.42877,144.82889 L 489.76441,145.94855 L 486.587,147.43134 L 485.67917,147.24978 L 483.43986,146.67482 L 481.2308,146.49325 L 480.47427,144.07237 L 478.99148,144.64733 L 478.80992,147.24978 L 477.69026,146.13012 L 475.66277,147.61291 L 473.63528,148.33917 L 471.2144,148.15761 L 469.55004,148.73257 L 467.70412,147.61291 L 466.58446,148.52074 L 463.80045,148.52074 L 462.49922,150.94162 L 456.3865,151.30475 L 455.08527,149.6404 L 453.05778,149.27726 L 453.23935,148.33917 L 454.54057,147.43134 L 453.42092,147.03795 L 453.23935,144.07237 L 450.45533,143.8908 L 448.82124,144.40524 L 447.67132,145.94855 L 444.70574,146.85638 L 444.70574,145.76699 L 443.79791,145.76699 L 443.79791,147.03795 L 440.0758,147.79447 L 440.0758,149.45883 L 436.74709,149.88249 L 435.47613,151.15345 L 436.77735,153.02963 L 439.80345,153.24146 L 442.46642,156.81226 L 444.736,156.81226 L 445.2807,159.29367 L 447.7621,159.6568 L 448.3068,161.35141 L 446.61218,162.50133 L 445.49253,167.61545 L 450.78821,170.24816 L 450.78821,174.21235 L 452.84596,173.45583 L 454.57083,174.81757 L 455.87206,174.03079 L 455.14579,172.91113 L 456.08389,172.33617 L 457.38511,173.84922 L 459.29155,172.51773 L 459.86651,170.64155 L 463.43732,170.06659 L 464.40567,170.82312 L 464.2241,172.91113 L 466.67525,174.78731 L 468.1883,174.60575 L 469.88291,173.27426 L 473.84711,173.27426 L 476.69165,176.48193 L 477.62974,176.48193 L 479.14279,175.54384 L 479.35462,174.42418 L 480.86767,173.66765 L 482.56229,174.78731 L 484.2569,176.69376 L 490.21833,179.8409 L 492.57869,177.81341 L 492.76025,170.42972 L 495.99818,167.61545 L 497.87437,163.25786 L 497.29941,160.41332 L 499.56898,155.87417 L 501.65699,151.15345 L 498.05593,150.21536 L 497.29941,145.10124 L 498.05593,141.68175 L 497.81384,141.43966 z "/> |
<path id="INSEE-D78" title="Yvelines (78)" class="land departement idf departement78" d="M 296.88061,114.5376 L 296.82009,114.65865 L 291.52441,116.1717 L 290.76789,117.10979 L 291.73624,118.62284 L 291.73624,120.13589 L 293.43086,120.49903 L 292.4625,121.46738 L 292.55329,122.31469 L 292.67433,122.2239 L 294.55051,124.10009 L 295.12547,126.36967 L 296.63853,127.88272 L 295.882,129.97073 L 295.882,131.84691 L 297.21349,133.35996 L 295.882,135.62954 L 297.21349,138.86747 L 299.84619,140.74365 L 300.23959,142.83167 L 302.50917,143.1948 L 303.05386,147.37082 L 304.77874,149.45883 L 307.83511,150.03379 L 308.28902,147.03795 L 309.59025,145.55516 L 308.50085,143.8908 L 311.2546,143.8908 L 313.13079,141.31861 L 311.82956,139.0793 L 312.19269,137.05181 L 314.97671,135.75058 L 315.33984,133.69283 L 317.18576,132.96657 L 318.88038,132.21004 L 319.21325,132.42187 L 319.21325,132.21004 L 317.51864,130.3036 L 316.4595,127.4288 L 318.15412,123.73696 L 317.30681,120.95294 L 314.00836,118.95571 L 309.34816,118.74389 L 304.99057,115.95987 L 301.48029,116.59535 L 296.88061,114.5376 z "/> |
<path id="INSEE-D92" title="Hauts-de-Seine (92)" class="land departement idf idfbig departement92" d="M 33.06716,18.295224 L 21.914986,24.269603 L 20.72011,24.468749 L 15.243596,36.417507 L 18.72865,45.876941 L 24.304737,52.150038 L 24.304737,52.847049 L 32.967587,58.921001 L 35.058619,57.825698 L 33.465452,54.838509 L 35.058619,50.158579 L 34.06289,48.465838 L 35.158192,44.582492 L 34.959046,44.582492 L 28.885094,41.495729 L 23.906445,40.101708 L 23.209434,37.911102 L 23.109861,36.019215 L 26.097051,32.633734 L 29.382959,32.434588 L 30.876554,30.443128 L 34.461182,28.849961 L 33.266306,25.962344 L 34.959046,25.663625 L 36.253495,22.875582 L 34.959046,20.884122 L 33.565025,20.585403 L 33.06716,18.295224 z "/> |
<path id="dom-cadre" class="dom cadre" d="M 4.9513254,493.17701 L 275.37144,493.17701 L 275.37144,546.92063"/> |
<text id="text2505" x="7.5722885" y="542.53876" class="txt departement971"> |
Guadeloupe |
</text> |
<text id="text2509" x="66.464882" y="542.53876" class="txt departement972"> |
Martinique |
</text> |
<text id="text2513" x="121.86009" y="542.38055" class="txt departement973"> |
Guyane |
</text> |
<text id="text2517" x="166.49937" y="542.53876" class="txt departement974"> |
La Réunion |
</text> |
<text id="text2521" x="225.19235" y="542.2619" class="txt mayotte"> |
Mayotte |
</text> |
<path id="INSEE-D974" title="La Reunion (974)" class="land departement dom departement974" d="M 188.55297,500.95998 L 186.22178,501.00453 L 185.37542,501.42029 L 184.41027,502.1627 L 184.23209,502.32604 L 183.56391,502.32604 L 182.15332,502.86058 L 181.54453,503.39513 L 179.59939,503.67724 L 179.42121,504.70178 L 178.88667,506.83995 C 178.88667,506.83995 178.14218,507.33673 177.92153,507.41904 C 177.70083,507.50133 176.46639,508.16146 176.46639,508.16146 L 176.24366,510.43326 L 176.7782,511.78446 L 178.23334,513.50688 L 178.93122,514.29384 L 179.49546,514.17506 L 179.15395,514.33839 L 179.19848,517.42685 L 180.65363,519.23835 L 182.15332,520.63411 L 184.79633,522.19319 L 184.97452,522.08925 L 184.76664,522.23774 L 187.89965,524.12348 L 190.31994,524.99954 L 192.9184,525.44498 L 194.99718,526.18741 L 196.31869,526.43983 C 196.31869,526.43983 198.35539,526.02408 198.62019,526.02408 C 198.88498,526.02408 200.99594,525.60832 200.99594,525.60832 L 203.16379,524.91044 L 204.61894,523.58893 L 204.48531,521.2429 L 204.75257,519.7729 L 205.33167,518.94139 L 206.29682,517.66443 L 206.78682,516.06081 L 206.65318,514.50172 L 205.62863,513.92263 L 204.30713,513.31385 L 203.69834,513.2693 L 202.71834,511.87356 C 202.49768,511.70902 201.30693,510.38658 201.21865,510.18084 C 201.13038,509.9751 200.34261,508.206 200.34261,508.206 L 200.07533,505.4442 L 198.57564,504.00391 L 196.80869,503.02391 C 196.80869,503.02392 195.39562,502.2039 195.13082,502.1627 C 194.86602,502.12161 192.53068,501.62816 192.35416,501.62816 C 192.17761,501.62816 190.45316,501.75039 190.40902,501.79149 L 190.18631,501.70241 L 188.55297,500.95998 z"/> |
<path id="INSEE-D971" title="Guadeloupe (971)" class="land departement dom departement971" d="M 36.266401,501.65044 L 34.766711,502.0068 L 33.385815,503.22437 L 33.445212,505.95647 L 34.514286,506.13465 L 34.573683,507.82737 L 33.519446,508.64403 L 33.326418,509.98039 L 33.326418,510.21795 L 32.390975,511.19796 L 32.331578,511.37614 L 30.267652,511.25734 L 30.015227,510.2625 L 28.515537,509.40129 L 25.842827,508.00555 L 22.902844,508.00555 L 21.536797,510.09917 L 21.596194,513.1134 L 21.967401,514.34582 L 22.026798,514.56854 L 22.219826,516.89973 L 23.095872,521.20578 L 23.97193,523.47758 C 23.971941,523.47758 24.589525,524.06265 24.714356,524.35363 C 24.839187,524.64462 25.531017,525.5712 25.531017,525.5712 L 26.897064,525.74938 L 27.283121,525.03665 L 27.342518,525.1109 L 28.708565,525.1109 L 30.772491,523.35879 L 32.079153,521.56213 L 32.019756,517.37489 L 31.262492,515.16248 L 31.514917,513.35097 L 32.940361,513.06885 L 32.95521,513.06885 L 33.385815,513.58854 L 34.573683,513.87067 L 35.509137,514.22702 L 35.598221,514.18248 L 35.702166,514.524 L 37.513666,514.62793 L 40.631829,514.04884 L 42.383944,512.77188 L 45.44271,512.6531 L 48.056022,511.77704 L 46.43755,510.85644 L 46.244522,509.98039 L 44.180596,508.64403 L 40.260622,508.58463 L 39.072754,506.55041 L 39.072754,504.2786 L 38.256081,502.52649 L 36.266401,501.65044 z"/> |
<path id="INSEE-D972" title="Martinique (972)" class="land departement dom departement972" d="M 81.074386,499.50485 C 81.074386,499.50485 77.462124,499.59268 77.02078,499.75727 C 76.579425,499.92185 74.808374,501.15302 74.808362,501.15302 L 74.541099,501.22726 L 73.486863,502.80119 L 73.843221,504.85026 L 76.931685,507.89419 L 76.397148,508.7257 L 76.397148,510.37387 L 77.718647,512.18537 L 81.965293,515.97172 L 85.751636,515.97172 L 86.107994,515.97172 L 87.162231,515.88262 L 87.34041,515.88262 L 87.162231,516.62505 L 87.162231,517.20413 L 88.409496,517.53079 L 88.929184,517.85746 C 88.929184,517.85746 88.755091,519.26 89.196458,519.3423 L 87.874947,519.41654 L 86.018898,518.8523 L 84.786483,518.59988 L 83.197709,519.25321 L 82.306802,520.3223 L 81.876197,521.55471 L 82.217718,522.80198 L 83.108613,524.03439 L 84.251945,524.68772 C 84.251945,524.68772 85.399376,524.36227 85.840719,524.19772 C 86.282074,524.03308 86.642543,523.29197 86.642531,523.29198 C 86.642531,523.29198 87.95494,523.21094 88.572825,523.12864 C 89.190711,523.04634 89.82009,523.87105 89.82009,523.87106 L 92.730376,524.27197 L 94.051887,525.01438 L 94.838849,524.94015 L 94.838849,524.10864 L 95.551577,523.70773 L 96.264298,524.10864 L 95.90794,525.10348 L 95.106124,525.84589 L 95.462482,527.31588 L 96.516723,527.89497 L 97.763988,527.82073 L 98.996404,526.82589 L 99.352762,525.51923 L 100.58518,524.19772 L 99.783366,522.54955 L 99.263678,521.06471 L 98.640046,519.08988 L 98.016413,517.69412 C 98.016413,517.69412 96.516711,516.2118 96.516723,515.88262 C 96.516723,515.55344 95.106124,514.81355 95.106124,514.81354 L 94.927944,513.49204 C 94.927944,513.49204 95.288378,513.09244 95.729761,512.92779 C 96.171069,512.7632 95.462482,512.02203 95.462482,512.02204 L 94.586424,512.18537 L 93.250075,512.51203 L 92.908555,512.09628 L 92.374017,511.51719 L 92.463101,510.77478 L 93.428254,510.95296 L 94.230066,510.0472 L 93.086734,509.14146 L 92.195838,508.88903 L 91.928564,508.39903 L 91.928564,508.39903 L 91.928564,507.81995 L 92.908555,507.40419 L 93.606433,507.98328 L 94.838849,508.47328 L 95.462482,507.73085 L 95.462482,506.91419 L 95.997024,506.26086 L 95.551577,505.75602 L 94.586424,505.35511 L 93.962791,505.91935 L 91.49796,506.17178 L 90.696148,506.75086 L 89.641911,506.4242 L 88.409496,504.44936 L 85.573457,501.64302 L 83.984671,500.98969 L 81.074386,499.50485 z"/> |
<path id="INSEE-D973" title="Guyane (973)" class="land departement dom departement973" d="M 131.69165,498.79176 C 131.6152,498.79678 131.55755,498.82055 131.53104,498.8453 L 130.04994,500.71897 L 128.76512,502.20008 L 127.28402,503.68119 L 127.49816,507.6427 L 127.39108,511.30086 L 128.6759,513.08533 L 129.94286,515.35158 L 130.6745,516.74346 L 129.94286,517.6357 L 129.08634,520.00904 L 129.19339,523.27461 L 128.14055,525.14829 L 126.44532,526.54018 L 126.96281,527.12904 L 128.24763,527.91421 L 129.40753,528.61015 L 131.10278,528.11049 L 132.90508,527.02199 L 136.61676,526.93275 L 138.00865,527.91421 L 139.48976,528.02129 L 140.97086,528.32464 L 143.09438,526.6294 L 145.53909,522.38237 L 147.3414,518.72422 L 149.1437,516.04753 L 151.05309,513.58497 L 152.10592,511.69344 L 151.26722,510.01604 L 150.62481,507.6427 L 149.25078,507.14304 L 147.68045,506.07238 L 146.37778,504.87678 L 144.68255,503.78826 L 143.52265,503.39567 L 140.13215,501.02234 L 137.90158,500.21933 L 135.77807,499.93381 C 135.77807,499.93381 134.82734,499.54274 134.29697,499.34494 C 133.83284,499.17192 132.2268,498.75662 131.69165,498.79176 z"/> |
<g id="mayotte" class="land mayotte" title="Mayotte" transform="translate(-7.6293945e-6,0)"> |
<path id="path5886" d="M 246.2712,526.59904 C 246.01634,526.59877 245.81851,526.62078 245.69538,526.87243 C 245.54574,527.17815 245.26524,526.85585 245.09184,526.80156 C 244.75766,526.69708 244.50998,526.86209 244.37416,527.17231 C 244.31913,527.29813 244.35067,527.40926 244.31457,527.53488 C 244.26538,527.70599 244.08856,527.66842 244.08064,527.50784 C 244.05259,526.93805 244.11654,526.33948 243.4561,526.17521 C 242.76707,526.00376 242.48644,526.3276 242.62313,526.98012 C 242.64655,527.09186 242.66823,527.20862 242.6538,527.3233 C 242.56146,527.32189 242.46349,527.34142 242.40497,527.41979 C 242.30593,527.5528 242.34022,527.7421 242.22977,527.87087 C 242.1173,528.00199 241.78466,528.16976 241.61187,528.18076 C 241.29513,528.20123 241.31178,527.67922 241.17958,527.48945 C 241.05101,527.30511 240.71669,527.18741 240.51732,527.3396 C 240.40016,527.42899 240.44532,527.68687 240.23227,527.60641 C 240.12443,527.38255 240.14966,527.0467 240.07282,526.79686 C 239.99445,526.5416 239.62296,526.43665 239.37621,526.43665 C 239.10692,526.43665 238.91654,527.14675 238.59512,527.32411 C 238.51218,527.37913 238.4244,526.82485 238.55049,526.70976 C 238.79817,526.48402 238.66678,526.33351 238.68853,525.97759 C 238.71047,525.61723 239.06558,524.56316 238.28852,524.77642 C 238.07385,524.8354 238.0362,525.06698 237.82738,525.13194 C 237.59627,525.2038 237.2794,525.29251 237.04379,525.19481 C 236.84617,525.11288 236.91818,524.86788 236.60802,524.91129 C 236.26766,524.9588 236.2633,524.78896 236.53669,524.63067 C 236.75719,524.50303 236.97515,524.38768 237.22451,524.32675 C 237.52534,524.25314 237.60345,524.01458 237.81764,523.82078 C 238.14928,523.52082 238.26697,522.80938 238.10981,522.3938 C 238.04157,522.21336 237.99366,521.96192 237.7647,521.93367 C 237.60244,521.91353 237.02527,522.52096 237.02527,521.99715 C 237.02527,521.65693 236.95119,521.69504 236.70613,521.51574 C 236.48012,521.35006 236.40959,521.04581 236.32839,520.79302 C 236.25934,520.57816 236.28712,520.228 236.08339,520.09145 C 235.92234,519.98341 235.58783,519.98005 235.64594,519.707 C 235.99039,519.66318 236.37497,519.60158 236.72176,519.60843 C 236.86033,519.61118 236.98004,519.6907 237.11855,519.70009 C 237.26598,519.71002 237.38005,519.64681 237.51863,519.61849 C 237.65599,519.59031 237.98561,519.81967 238.04399,519.93422 C 238.11525,520.0744 238.0615,520.24277 238.07465,520.39067 C 238.09405,520.60882 238.14652,520.81329 238.15739,521.03413 C 238.17162,521.32322 238.39414,521.45669 238.54499,521.67632 C 238.72604,521.94004 239.00747,521.90146 239.26737,522.02587 C 239.53606,522.15437 239.77018,522.26509 240.05833,522.34824 C 240.38338,522.44218 240.611,522.71765 240.96075,522.74114 C 241.15475,522.75422 241.49041,522.68691 241.63528,522.54063 C 241.7711,522.40353 242.09522,522.09056 242.09166,521.93803 C 242.08844,521.80107 242.103,521.6582 242.08784,521.52198 C 242.13428,521.41891 242.23896,521.51588 242.21211,521.34415 C 242.16172,521.02205 241.8317,520.83852 241.73574,520.5438 C 241.70387,520.44623 241.76567,520.33919 241.64448,520.27699 C 241.53926,520.22317 241.42927,520.2372 241.40337,520.08608 C 241.3464,519.75532 241.41156,519.7378 241.1416,519.54186 C 240.93217,519.38994 240.99692,519.10172 240.84915,518.91121 C 240.77366,518.81398 240.65912,518.83632 240.56457,518.77304 C 240.40056,518.66319 240.27649,518.50785 240.12228,518.38618 C 239.68892,518.04456 239.07324,517.806 238.96345,517.19166 C 238.92219,516.96075 238.90964,516.72475 238.60183,516.72374 C 238.30885,516.72267 237.96454,516.52518 237.7951,516.2877 C 237.70175,516.15684 237.403,516.03934 237.48527,515.82454 C 237.5246,515.7214 237.68894,515.73911 237.76705,515.68925 C 237.88388,515.61484 237.88253,515.5321 237.92709,515.41534 C 238.10384,514.95185 239.22724,515.15087 239.2671,514.89226 C 239.30387,514.65377 239.09404,514.63645 238.91702,514.60418 C 238.67235,514.55948 238.48963,514.39984 238.22148,514.37314 C 237.92716,514.34374 238.07928,514.01332 238.1839,513.85972 C 238.37803,513.57473 238.37891,513.21417 238.37891,512.88368 C 238.37891,512.3857 237.64773,512.07662 237.96172,511.46925 C 238.10304,511.19587 238.43017,511.41812 238.58297,511.2158 C 238.89615,510.80069 238.10962,510.96879 237.97319,510.95618 C 237.71652,510.93249 237.62498,510.59099 237.64901,510.38062 C 237.67726,510.13475 237.89314,510.03798 238.0097,509.8364 C 238.08767,509.70206 238.27664,509.265 238.21913,509.11751 C 238.10935,508.83587 237.99144,508.69126 237.72517,508.90271 C 237.20652,509.31352 236.88228,508.38292 236.40529,508.63784 C 236.15996,508.7691 235.911,508.71817 235.78089,508.44479 C 235.71325,508.30259 235.60662,508.32776 235.49737,508.24267 C 235.39813,508.16516 235.30357,508.02639 235.21439,507.93378 C 235.05166,507.76482 234.88169,507.60591 234.63709,507.5833 C 234.43323,507.56451 234.13253,507.86004 233.95269,507.76878 C 233.84573,507.71429 233.81848,507.56028 233.73789,507.48036 C 233.63019,507.3736 233.49336,507.36957 233.36392,507.31179 C 233.02618,507.16081 233.51738,506.76899 233.60891,506.66175 C 233.88753,506.33515 234.30023,505.99789 234.44738,505.62485 C 234.70889,504.96153 233.51007,505.26699 233.2593,505.11627 C 233.03812,504.98333 233.8374,504.36584 233.88431,504.16258 C 233.93914,503.9247 233.80922,503.66057 233.92639,503.43383 C 234.06838,503.1591 234.18581,503.30082 234.41806,503.35229 C 234.65763,503.40557 235.00382,503.42604 235.12991,503.17876 C 235.19849,503.04408 235.39081,502.6999 235.51428,502.61314 C 235.66392,502.50818 235.88973,502.22809 235.69969,502.03798 C 235.40564,501.74373 235.55381,501.79742 235.92791,501.74709 C 236.09527,501.72461 236.47562,501.76265 236.50199,501.53342 C 236.52407,501.34204 236.5022,500.88077 236.66707,500.75119 C 236.84711,500.60973 236.97984,500.44398 237.15968,500.30702 C 237.24209,500.24408 237.36576,500.19053 237.42139,500.09752 C 237.50474,499.95821 237.35294,499.74422 237.59573,499.71711 C 237.85415,499.68805 237.86972,499.80045 238.06687,499.54827 C 238.14041,499.45433 238.58975,498.98949 238.57284,499.35924 C 238.56445,499.5415 238.11377,499.68973 238.35844,499.87279 C 238.62451,500.07202 238.30489,500.10557 238.15632,500.14262 C 237.73202,500.24864 236.74095,500.62194 237.49809,501.03779 C 237.73397,501.16737 237.98185,501.22495 238.23738,501.27769 C 238.65585,501.36472 237.92769,501.62637 238.40333,501.71783 C 238.55432,501.74675 238.59948,501.70998 238.68215,501.83506 C 238.72275,501.89639 238.7814,502.03617 238.84461,502.07509 C 239.08558,502.22333 238.99137,502.42994 239.11236,502.65454 C 239.22073,502.85572 239.53055,503.00697 239.72294,503.11944 C 239.87057,503.20573 240.02881,503.28687 240.20495,503.28687 C 240.35426,503.287 240.56987,503.23513 240.6567,503.40309 C 240.74414,503.57179 239.89171,503.84893 240.16348,504.27565 C 240.30494,504.49777 240.58658,504.61077 240.69273,504.87006 C 240.78118,505.08641 240.63436,505.5403 240.95558,505.49897 C 241.07577,505.48353 241.2285,505.41455 241.34298,505.49527 C 241.43538,505.56057 241.44867,505.62056 241.58113,505.62593 C 241.8919,505.63861 241.89042,505.42857 242.15568,505.71021 C 242.74794,506.33898 243.06421,505.37865 243.51428,505.20471 C 243.80504,505.09238 243.83444,505.14754 244.02011,505.35597 C 244.12956,505.4789 244.2986,505.79906 244.51273,505.70571 C 244.79698,505.58171 245.01024,505.74853 245.26416,505.69874 C 245.55996,505.64082 245.67216,505.67901 245.92219,505.83925 C 246.10659,505.95716 246.43507,505.80074 246.65276,505.903 C 246.74308,505.94528 246.89433,505.94179 246.95862,506.03043 C 247.00083,506.08848 246.94902,506.17122 247.07525,506.17021 C 247.23167,506.16901 247.26697,505.95293 247.35118,506.21638 C 247.38071,506.30872 247.44674,506.32858 247.38587,506.40796 C 247.30159,506.51808 247.55525,506.7002 247.60705,506.76939 C 247.77562,506.99432 248.07,506.98063 248.33017,507.00426 C 248.53464,507.02278 248.73575,507.31763 248.82788,507.47909 C 248.90552,507.61531 249.01973,507.60866 249.10691,507.71496 C 249.22816,507.86245 249.41545,508.06826 249.4796,508.24965 C 249.64595,508.71891 248.62328,509.20367 249.01598,509.77882 C 249.15844,509.98853 249.33707,510.07153 249.36217,510.36243 C 249.39841,510.78211 248.98706,510.42598 248.82419,510.52268 C 248.46787,510.73392 247.74388,510.98879 247.66584,511.45543 C 247.589,511.91382 247.36668,511.87933 247.07793,512.14822 C 246.9097,512.30464 246.4954,512.49273 246.49909,512.77625 C 246.50345,513.11781 246.48553,513.19552 246.19577,513.39643 C 245.95232,513.56506 245.7702,513.55151 245.6525,513.84818 C 245.60814,513.96004 245.68981,514.02272 245.75725,514.0921 C 245.89186,514.23067 245.75436,514.24369 245.719,514.38038 C 245.6482,514.65135 245.51594,514.91615 245.69799,515.18349 C 245.77879,515.30227 245.79523,515.39319 245.84086,515.52565 C 245.87454,515.62443 245.79509,515.72133 245.86669,515.8036 C 245.94064,515.88889 246.01668,516.00297 246.10351,516.07464 C 246.18692,516.14322 246.38548,516.11611 246.43561,516.21703 C 246.58411,516.51605 246.43789,516.64281 246.84266,516.7028 C 246.98506,516.72394 247.50304,516.93592 247.12652,516.98498 C 247.03921,517.26856 247.24254,517.63079 247.54947,517.63126 C 247.64221,517.6314 247.74421,517.58348 247.83608,517.6167 C 247.97492,517.66689 247.70569,517.83539 247.6912,517.87572 C 247.5843,518.17387 247.68691,518.53777 247.43365,518.77029 C 247.20684,518.97859 246.87595,519.11783 246.60793,519.27364 C 246.39971,519.39457 246.13451,519.63258 246.00882,519.8437 C 245.87649,520.06588 246.02996,520.68713 246.0513,520.94844 C 246.06136,521.07238 246.53466,521.61781 245.98279,521.39133 C 245.51372,521.19887 245.29074,521.36147 245.09285,521.74926 C 244.96904,521.99117 244.64405,521.9485 244.42945,522.12471 C 244.24068,522.27966 244.3396,522.79073 244.43589,522.97929 C 244.6158,523.33179 244.50441,523.38648 244.11869,523.36534 C 243.74612,523.34487 243.64889,523.90848 243.75539,524.17758 C 243.88121,524.49518 244.22378,524.57175 244.24894,524.948 C 244.27156,525.28695 244.60392,525.4235 244.88234,525.55053 C 245.06352,525.63314 245.23672,525.68615 245.39864,525.80875 C 245.50406,525.88894 245.5917,526.02576 245.73,526.04476 C 245.89065,526.06663 246.07331,525.99597 246.21389,526.10227 C 246.44843,526.27969 246.2763,526.3527 246.3116,526.57877" i:knockout="Off"/> |
<path id="path5890" d="M 253.92011,511.36202 C 253.89179,511.42416 253.77248,511.4047 253.71685,511.42195 C 253.56251,511.46959 253.4232,511.48489 253.31228,511.61366 C 253.26611,511.66728 253.25262,511.72506 253.23095,511.7876 C 253.1935,511.89563 253.13921,511.99569 253.09284,512.09742 C 253.03594,512.2221 253.08224,512.39885 252.96146,512.49307 C 252.90421,512.53789 252.84114,512.53561 252.76813,512.54333 C 252.65653,512.55527 252.64949,512.56796 252.57654,512.48253 C 252.51709,512.41274 252.48615,512.3904 252.47971,512.29538 C 252.47374,512.20848 252.47958,512.11882 252.47971,512.03159 C 252.47978,511.94791 252.48944,511.90107 252.42381,511.84396 C 252.36208,511.79021 252.28732,511.75291 252.22102,511.70204 C 252.16123,511.65601 252.08245,511.60467 252.03736,511.54407 C 251.98495,511.47355 251.96797,511.37658 251.92717,511.30076 C 251.82692,511.11461 251.78149,510.9557 251.58642,510.87571 C 251.50213,510.84109 251.44416,510.77432 251.36423,510.73305 C 251.25519,510.67682 251.15413,510.64407 251.05844,510.56509 C 250.89329,510.42927 250.72546,510.28667 250.75861,510.04677 C 250.92872,509.96491 250.99207,510.11213 251.12487,510.17977 C 251.25076,510.24379 251.37094,510.30969 251.48542,510.38813 C 251.6301,510.48718 251.76652,510.51188 251.79028,510.30754 C 251.79967,510.22655 251.77659,510.15977 251.76954,510.08381 C 251.76599,510.04577 251.78021,509.99745 251.77062,509.96108 C 251.76109,509.92545 251.72868,509.90646 251.71324,509.87646 C 251.68781,509.82727 251.66117,509.73239 251.66768,509.67804 C 251.67862,509.5865 251.78652,509.58181 251.85161,509.53101 C 251.91415,509.48209 251.94952,509.40881 251.99783,509.35345 C 252.05178,509.29138 252.12728,509.23897 252.19686,509.19562 C 252.2692,509.15073 252.35181,509.14509 252.41831,509.0902 C 252.49085,509.03014 252.53829,508.9837 252.6064,508.90546 C 252.64875,508.85708 252.70592,508.82044 252.74846,508.76991 C 252.81147,508.69529 252.84235,508.60752 252.89099,508.52719 C 252.93643,508.45217 253.01527,508.33104 253.09291,508.2826 C 253.22296,508.2014 253.28013,508.32172 253.33637,508.41519 C 253.36395,508.46096 253.40206,508.50149 253.42823,508.54545 C 253.48695,508.64416 253.49715,508.68562 253.61586,508.68381 C 253.76302,508.68167 253.8367,508.75441 253.86381,508.88667 C 253.89038,509.01665 253.88461,509.14073 253.89944,509.27272 C 253.90602,509.3307 253.93406,509.37848 253.96581,509.43062 C 254.01419,509.50994 254.00996,509.54805 254.02057,509.63844 C 254.03351,509.74809 254.05694,509.87525 254.118,509.96612 C 254.15833,510.02604 254.21846,510.03436 254.25992,510.08891 C 254.29844,510.13965 254.29039,510.21883 254.28227,510.28372 C 254.06331,510.27687 253.9601,510.50147 253.96071,510.69245 C 253.96145,510.9196 254.05298,511.12018 254.01801,511.3584 C 253.98225,511.37564 253.94198,511.39195 253.89978,511.38229" i:knockout="Off"/> |
</g> |
<path id="corse-cadre" class="corse cadre" d="M 516.72142,543.99287 L 516.72142,468.56568 L 551.77498,431.31769 L 581.57051,431.31769"/> |
<path id="idfbig-cadre" class="idfbig cadre" d="M 4.2701863,83.695652 C 83.695652,83.695652 83.695652,83.695652 83.695652,83.695652 L 83.695652,3.416149"/> |
<text id="idfbig-text" class="idfbig txt" x="11.724806" y="76.211243"> |
ÃŽle-de-France |
</text> |
<path id="INSEE-D94-zoom" title="Val-de-Marne (94)" class="land departement idf idfsmall departement94" d="M 327.16282,127.37489 L 326.38985,127.9992 L 325.61689,128.11812 L 325.55743,128.53433 L 325.40879,128.92082 L 325.79526,128.92082 L 326.00337,128.74244 L 325.91418,128.44515 L 327.10335,128.38569 L 327.40066,128.50461 L 327.40066,129.12892 L 327.10335,129.75324 L 325.37905,129.51541 L 325.11148,129.27757 L 324.30878,129.84244 L 323.53581,130.05054 L 322.43583,129.99108 L 322.1088,131.15053 L 322.40611,131.65594 L 321.93043,133.05322 L 322.40611,133.94511 L 323.23852,133.52889 L 325.2304,134.62889 L 328.67902,134.62889 L 330.73036,135.58022 L 330.70064,135.37213 L 332.15738,131.71539 L 332.15738,130.05054 L 331.23576,129.81271 L 330.99792,129.36676 L 330.61144,129.18838 L 329.77902,128.26677 L 328.32226,127.43434 L 327.16282,127.37489 z"/> |
<path id="INSEE-D93-zoom" title="Seine-Saint-Denis" class="land departement idf idfsmall departement93" d="M 331.29522,119.31819 L 329.54117,120.56682 L 326.80606,121.81547 L 321.81151,122.14249 L 321.96016,122.82627 L 322.37637,122.91546 L 322.76285,123.51004 L 322.37637,124.34247 L 321.87096,124.43166 L 322.22772,125.29381 L 324.63582,125.26409 L 325.40879,126.45327 L 325.55743,128.11812 L 326.38985,127.9992 L 327.16282,127.37489 L 328.32226,127.43434 L 329.77902,128.26677 L 330.61144,129.18838 L 330.99792,129.36676 L 331.23576,129.81271 L 332.15738,130.05054 L 332.15738,127.34515 L 331.05739,120.80467 L 331.29522,119.31819 z"/> |
<path id="INSEE-D75-zoom" title="Paris (75)" class="land departement idf idfsmall departement75 " d="M 324.63582,125.26409 L 322.22772,125.29381 L 321.15746,125.76949 L 320.71152,126.36408 L 319.73044,126.42353 L 318.83856,127.43434 L 318.86828,127.9992 L 319.07639,128.65325 L 320.56287,129.06946 L 322.37637,129.99108 L 323.53581,130.05054 L 324.30878,129.84244 L 325.11148,129.27757 L 325.37905,129.51541 L 327.10335,129.75324 L 327.40066,129.12892 L 327.40066,128.50461 L 327.10335,128.38569 L 325.91418,128.44515 L 326.00337,128.74244 L 325.79526,128.92082 L 325.40879,128.92082 L 325.55743,128.53433 L 325.61689,128.11812 L 325.55743,128.11812 L 325.40879,126.45327 L 324.63582,125.26409 z"/> |
<path id="INSEE-D92-zoom" title="Hauts-de-Seine (92)" class="land departement idf idfsmall departement92" d="M 321.81151,122.14249 L 318.48181,123.92626 L 318.12505,123.98572 L 316.48993,127.55326 L 317.53045,130.37757 L 319.19531,132.25053 L 319.19531,132.45863 L 321.78178,134.27213 L 322.40611,133.94511 L 321.93043,133.05322 L 322.40611,131.65594 L 322.1088,131.15053 L 322.43583,129.99108 L 322.37637,129.99108 L 320.56287,129.06946 L 319.07639,128.65325 L 318.86828,127.9992 L 318.83856,127.43434 L 319.73044,126.42353 L 320.71152,126.36408 L 321.15746,125.76949 L 322.22772,125.29381 L 321.87096,124.43166 L 322.37637,124.34247 L 322.76285,123.51004 L 322.37637,122.91546 L 321.96016,122.82627 L 321.81151,122.14249 z"/> |
<text id="titre-texte" x="295" y="522" class="txt titre" xml:space="preserve"> |
<tspan id="titre-taxon" x="285" y="525"></tspan> |
<tspan id="titre-msg" x="285" y="540">Carte en cours d'élaboration.</tspan> |
</text> |
<!--<g id="couche-num-dep" desc="Numéros des départements" transform="translate(45,-7)"> |
<text x="500" y="522.46307">2a</text> |
<text x="505" y="490">2b</text> |
<text x="340.05017" y="165.48323">10</text> |
<text x="275.93124" y="462.3653">11</text> |
<text x="285.49982" y="394.9285">12</text> |
<text x="385.47107" y="432.74658">13</text> |
<text x="169.59084" y="119.59122">14</text> |
<text x="286.01541" y="347.34229">15</text> |
<text x="184.93521" y="313.28046">16</text> |
<text x="149.35028" y="305.01443">17</text> |
<text x="278.17551" y="236.72379">18</text> |
<text x="255.70399" y="333.50601">19</text> |
<text x="366.62848" y="215.44362">21</text> |
<text x="77.443314" y="154.65916">22</text> |
<text x="259.49942" y="291.12961">23</text> |
<text x="208.14978" y="347.36383">24</text> |
<text x="426.4913" y="226.924">25</text> |
<text x="387.52527" y="370.61215">26</text> |
<text x="218.36873" y="123.45922">27</text> |
<text x="236.24745" y="163.9295">28</text> |
<text x="32.752422" y="159.80573">29</text> |
<text x="350.10199" y="411.25201">30</text> |
<text x="226.46878" y="444.25089">31</text> |
<text x="193.67938" y="427.59033">32</text> |
<text x="155.21661" y="363.45023">33</text> |
<text x="313.85724" y="433.47208">34</text> |
<text x="121.07767" y="170.81239">35</text> |
<text x="242.11922" y="253.26028">36</text> |
<text x="208.55455" y="225.61589">37</text> |
<text x="400.02567" y="336.1355">38</text> |
<text x="403.70837" y="252.62927">39</text> |
<text x="141.87534" y="410.00177">40</text> |
<text x="236.533" y="206.03616">41</text> |
<text x="344.24771" y="313.84027">42</text> |
<text x="330.82129" y="347.94345">43</text> |
<text x="115.84439" y="216.11394">44</text> |
<text x="270.39145" y="187.10056">45</text> |
<text x="242.91499" y="374.47601">46</text> |
<text x="194.812" y="389.22894">47</text> |
<text x="318.72366" y="379.78024">48</text> |
<text x="160.44055" y="215.16055">49</text> |
<text x="135.04189" y="118.67933">50</text> |
<text x="343.89667" y="126.01338">51</text> |
<text x="381.26428" y="173.22806">52</text> |
<text x="156.85811" y="172.43538">53</text> |
<text x="415.3656" y="143.31583">54</text> |
<text x="387.02689" y="126.03261">55</text> |
<text x="74.415573" y="184.25244">56</text> |
<text x="430.32043" y="121.86172">57</text> |
<text x="318.98431" y="235.73589">58</text> |
<text x="309.578" y="51.367298">59</text> |
<text x="273.19901" y="104.4">60</text> |
<text x="188.631" y="143.62782">61</text> |
<text x="270.05676" y="43.54641">62</text> |
<text x="301.97977" y="312.34189">63</text> |
<text x="144.4501" y="452.05734">64</text> |
<text x="181.70399" y="463.116">65</text> |
<text x="280.77542" y="489.75699">66</text> |
<text x="468.83728" y="138.92934">67</text> |
<text x="458.48599" y="183.41901">68</text> |
<text x="361.61499" y="303.90601">69</text> |
<text x="389.52344" y="289.11728">01</text> |
<text x="317.71494" y="91.464127">02</text> |
<text x="304.79639" y="273.39404">03</text> |
<text x="429.73807" y="403.08469">04</text> |
<text x="431.49451" y="370.41684">05</text> |
<text x="468.04169" y="408.98822">06</text> |
<text x="355.52588" y="367.6001">07</text> |
<text x="355.23471" y="94.337006">08</text> |
<text x="235.62527" y="471.0025">09</text> |
<text x="415.52142" y="198.70544">70</text> |
<text x="358.86234" y="258.45761">71</text> |
<text x="191.15994" y="181.91512">72</text> |
<text x="436.55295" y="321.66956">73</text> |
<text x="429.935" y="291.53601">74</text> |
<text x="224.36623" y="87.776649">76</text> |
<text x="295.07571" y="147.75082">77</text> |
<text x="253.75279" y="137.74051">78</text> |
<text x="167.42421" y="262.80984">79</text> |
<text x="271.19772" y="74.197655">80</text> |
<text x="264.30704" y="423.10611">81</text> |
<text x="228.1265" y="405.17361">82</text> |
<text x="433.41739" y="437.59961">83</text> |
<text x="385.51199" y="408.30801">84</text> |
<text x="130.51228" y="257.07504">85</text> |
<text x="199.62645" y="265.11456">86</text> |
<text x="228.26965" y="303.53333">87</text> |
<text x="424.64432" y="167.36722">88</text> |
<text x="320.9649" y="194.08562">89</text> |
<text x="447.48077" y="200.24228">90</text> |
<text x="268.57501" y="155.17101">91</text> |
<text x="260.90515" y="121.41072">95</text> |
</g>--> |
</svg> |
/tags/v5.12-baouque/services/presentations/images/cartes/france_moissonnage_sans_departements.svg |
---|
New file |
0,0 → 1,0 |
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox = "0 0 604 604" version = "1.1"><g id="departements" inkscape:groupmode="layer" inkscape:label="departements"><g stroke="rgb(0,0,0)" fill="none" stroke-linejoin="round" stroke-width="0.4"><g><polyline points="79.1,220.6 79.0,220.6 78.9,220.6 78.9,220.7 79.0,220.7 79.0,220.8 79.0,220.9 78.9,220.9 78.8,220.9 78.8,221.0 78.8,221.1 78.8,221.2 78.7,221.2 78.7,221.3 78.6,221.3 78.6,221.4 78.7,221.4 78.7,221.5 78.7,221.6 78.7,221.7 78.6,221.7 78.6,221.8 78.6,221.9 78.6,222.0 78.6,222.1 78.6,222.2 78.5,222.2 78.6,222.2 78.6,222.3 78.5,222.3 78.6,222.3 78.6,222.4 78.6,222.5 78.6,222.6 78.6,222.7 78.5,222.7 78.4,222.7 78.4,222.8 78.4,222.9 78.3,222.9 78.2,222.9 78.1,222.9 78.1,222.8 78.0,222.8 78.0,222.7 77.9,222.7 77.9,222.8 77.9,222.9 77.8,222.9 77.7,222.9 77.7,222.8 77.7,222.7 77.6,222.7 77.6,222.8 77.5,222.8 77.5,222.7 77.4,222.7 77.4,222.6 77.3,222.6 77.2,222.6 77.1,222.6 77.1,222.5 77.0,222.5 77.0,222.6 76.9,222.6 76.8,222.6 76.8,222.7 76.7,222.7 76.7,222.6 76.6,222.6 76.5,222.6 76.5,222.7 76.4,222.7 76.4,222.6 76.3,222.6 76.2,222.6 76.1,222.6 76.1,222.5 76.0,222.5 76.0,222.6 75.8,222.6 75.8,222.5 75.7,222.5 75.6,222.5 75.6,222.4 75.6,222.5 75.5,222.5 75.5,222.6 75.4,222.6 75.4,222.5 75.3,222.5 75.2,222.5 75.2,222.4 75.1,222.4 75.1,222.5 75.0,222.5 74.9,222.5 74.9,222.4 74.8,222.4 74.7,222.4 74.7,222.3 74.6,222.3 74.5,222.3 74.4,222.3 74.4,222.2 74.3,222.2 74.3,222.3 74.2,222.3 74.2,222.2 74.2,222.1 74.2,222.0 74.1,222.0 74.1,221.9 74.1,221.8 74.0,221.8 74.0,221.9 74.0,222.0 73.9,222.0 73.8,222.0 73.7,222.0 73.7,221.9 73.7,222.0 73.6,222.0 73.6,221.9 73.5,221.9 73.5,221.8 73.4,221.8 73.4,221.9 73.4,221.8 73.3,221.8 73.3,221.9 73.2,221.9 73.2,222.0 73.2,222.1 73.1,222.1 73.0,222.1 73.0,222.2 72.9,222.2 72.9,222.1 72.8,222.1 72.8,222.0 72.7,222.0 72.6,222.0 72.6,221.9 72.5,221.9 72.5,221.8 72.4,221.8 72.4,221.7 72.3,221.7 72.3,221.6 72.2,221.6 72.2,221.5 72.1,221.5 72.0,221.5 72.0,221.4 72.0,221.5 71.9,221.5 71.8,221.5 71.9,221.5 71.9,221.4 71.9,221.3 71.8,221.3 71.8,221.2 71.7,221.2 71.7,221.1 71.6,221.1 71.5,221.1 71.5,221.0 71.4,221.0 71.4,220.9 71.3,220.9 71.2,220.9 71.2,220.8 71.2,220.7 71.3,220.7 71.3,220.6 71.2,220.6 71.2,220.5 71.3,220.5 71.3,220.4 71.4,220.4 71.4,220.3 71.5,220.3 71.5,220.4 71.6,220.4 71.6,220.3 71.6,220.2 71.7,220.2 71.7,220.1 71.7,220.0 71.8,220.0 71.9,220.0 72.0,220.0 72.0,219.9 72.0,219.8 72.1,219.8 72.2,219.8 72.2,219.7 72.3,219.7 72.3,219.6 72.4,219.6 72.4,219.7 72.5,219.7 72.5,219.6 72.6,219.6 72.6,219.7 72.7,219.7 72.7,219.6 72.7,219.5 72.7,219.6 72.6,219.6 72.5,219.6 72.4,219.6 72.3,219.6 72.3,219.5 72.2,219.5 72.3,219.5 72.3,219.4 72.2,219.4 72.2,219.3 72.3,219.3 72.3,219.2 72.3,219.1 72.3,219.0 72.3,219.1 72.3,219.2 72.3,219.3 72.2,219.3 72.2,219.4 72.2,219.5 72.2,219.6 72.1,219.6 72.1,219.7 72.0,219.7 72.0,219.8 71.9,219.8 72.0,219.8 72.0,219.9 71.9,219.9 71.9,220.0 71.9,219.9 71.8,219.9 71.8,220.0 71.7,220.0 71.7,220.1 71.6,220.1 71.6,220.2 71.5,220.2 71.4,220.2 71.4,220.3 71.3,220.3 71.3,220.4 71.2,220.4 71.2,220.5 71.1,220.5 71.0,220.5 71.0,220.6 70.9,220.6 70.8,220.6 70.8,220.5 70.7,220.5 70.7,220.4 70.7,220.3 70.6,220.3 70.6,220.2 70.6,220.1 70.5,220.1 70.5,220.0 70.5,219.9 70.4,219.9 70.4,219.8 70.4,219.7 70.4,219.6 70.4,219.5 70.4,219.4 70.4,219.3 70.4,219.2 70.4,219.1 70.4,219.0 70.3,219.0 70.3,218.9 70.2,218.9 70.2,218.8 70.1,218.8 70.1,218.7 70.2,218.7 70.3,218.7 70.3,218.6 70.2,218.6 70.2,218.5 70.3,218.5 70.3,218.4 70.2,218.4 70.2,218.5 70.1,218.5 70.1,218.6 70.1,218.7 70.0,218.7 70.0,218.8 70.0,218.9 70.1,218.9 70.1,219.0 70.1,219.1 70.2,219.1 70.2,219.2 70.3,219.2 70.3,219.1 70.3,219.2 70.4,219.2 70.4,219.3 70.4,219.4 70.4,219.5 70.3,219.5 70.3,219.7 70.3,219.8 70.2,219.8 70.1,219.8 70.1,219.9 70.2,219.9 70.2,219.8 70.3,219.8 70.3,219.9 70.4,219.9 70.4,220.0 70.4,220.1 70.5,220.1 70.5,220.2 70.5,220.3 70.6,220.3 70.6,220.4 70.6,220.5 70.6,220.6 70.6,220.7 70.7,220.7 70.7,220.8 70.6,220.8 70.6,220.9 70.5,220.9 70.5,221.0 70.4,221.0 70.3,221.0 70.3,221.1 70.2,221.1 70.1,221.1 70.1,221.2 70.0,221.2 70.0,221.3 69.9,221.3 69.8,221.3 69.7,221.3 69.6,221.3 69.5,221.3 69.4,221.3 69.4,221.4 69.3,221.4 69.3,221.3 69.2,221.3 69.2,221.4 69.2,221.3 69.1,221.3 69.0,221.3 68.9,221.3 68.8,221.3 68.7,221.3 68.6,221.3 68.5,221.3 68.5,221.4 68.4,221.4 68.4,221.5 68.3,221.5 68.2,221.5 68.2,221.4 68.0,221.4 68.0,221.3 67.9,221.3 67.9,221.2 67.8,221.2 67.9,221.2 67.9,221.1 67.8,221.1 67.7,221.1 67.6,221.1 67.6,221.0 67.5,221.0 67.4,221.0 67.3,221.0 67.3,221.1 67.2,221.1 67.2,221.2 67.1,221.2 67.1,221.1 67.1,221.0 67.0,221.0 66.9,221.0 66.8,221.0 66.8,220.9 66.8,221.0 66.7,221.0 66.7,221.1 66.6,221.1 66.6,221.2 66.5,221.2 66.4,221.2 66.3,221.2 66.3,221.3 66.2,221.3 66.1,221.3 66.0,221.3 66.1,221.3 66.1,221.2 66.1,221.1 66.2,221.1 66.2,221.0 66.2,220.9 66.3,220.9 66.3,220.8 66.3,220.7 66.2,220.7 66.2,220.6 66.1,220.6 66.1,220.5 66.1,220.4 66.0,220.4 66.0,220.3 65.9,220.3 65.8,220.3 65.8,220.2 65.7,220.2 65.7,220.1 65.6,220.1 65.6,220.0 65.6,219.9 65.5,219.9 65.5,219.8 65.4,219.8 65.4,219.7 65.3,219.7 65.3,219.6 65.3,219.5 65.2,219.5 65.1,219.5 65.1,219.4 65.0,219.4 65.0,219.3 65.0,219.2 64.9,219.2 64.9,219.1 64.8,219.1 64.8,219.0 64.7,219.0 64.6,219.0 64.6,218.9 64.6,218.8 64.5,218.8 64.5,218.9 64.4,218.9 64.4,218.8 64.3,218.8 64.3,218.7 64.4,218.7 64.4,218.6 64.3,218.6 64.3,218.5 64.3,218.4 64.3,218.3 64.3,218.4 64.4,218.4 64.5,218.4 64.5,218.3 64.5,218.2 64.4,218.2 64.4,218.0 64.5,218.0 64.5,218.1 64.6,218.1 64.6,218.0 64.7,218.0 64.8,218.0 64.9,218.0 64.9,217.9 64.8,217.9 64.8,218.0 64.7,218.0 64.7,217.9 64.6,217.9 64.4,217.9 64.3,217.9 64.2,217.9 64.2,217.8 64.2,217.9 64.1,217.9 64.0,217.9 64.0,217.8 64.0,217.7 63.9,217.7 63.9,217.6 63.8,217.6 63.7,217.6 63.6,217.6 63.6,217.5 63.7,217.5 63.7,217.4 63.8,217.4 63.8,217.3 63.9,217.3 64.0,217.3 64.0,217.4 64.1,217.4 64.1,217.5 64.2,217.5 64.3,217.5 64.3,217.4 64.3,217.3 64.2,217.3 64.2,217.2 64.1,217.2 64.1,217.1 64.1,217.0 64.0,217.0 64.0,216.9 64.0,216.8 64.0,216.7 64.0,216.6 64.0,216.7 63.9,216.7 63.9,216.8 63.8,216.8 63.8,216.9 63.8,216.8 63.7,216.8 63.6,216.8 63.4,216.8 63.4,216.7 63.3,216.7 63.2,216.7 63.2,216.6 63.2,216.5 63.3,216.5 63.3,216.4 63.2,216.4 63.2,216.3 63.2,216.2 63.2,216.1 63.1,216.1 63.1,216.0 63.0,216.0 62.9,216.0 62.8,216.0 62.8,215.9 62.7,215.9 62.7,215.8 62.6,215.8 62.6,215.6 62.5,215.6 62.5,215.5 62.5,215.4 62.5,215.3 62.6,215.3 62.6,215.2 62.6,215.1 62.5,215.1 62.5,215.2 62.5,215.3 62.4,215.3 62.4,215.4 62.2,215.4 62.2,215.3 62.2,215.2 61.9,215.2 61.8,215.2 61.7,215.2 61.7,215.3 61.6,215.3 61.6,215.2 61.6,215.1 61.5,215.1 61.5,215.0 61.4,215.0 61.5,215.0 61.5,214.9 61.5,214.8 61.5,214.7 61.4,214.7 61.4,214.5 61.4,214.6 61.4,214.7 61.4,214.8 61.4,214.9 61.3,214.9 61.3,215.0 61.3,215.1 61.3,215.2 61.4,215.2 61.4,215.3 61.3,215.3 61.3,215.4 61.2,215.4 61.2,215.3 61.1,215.3 61.1,215.2 61.0,215.2 60.9,215.2 60.9,215.3 60.9,215.4 61.0,215.4 61.0,215.5 61.1,215.5 61.1,215.6 61.2,215.6 61.3,215.6 61.4,215.6 61.5,215.6 61.5,215.5 61.6,215.5 61.7,215.5 61.6,215.5 61.6,215.6 61.5,215.6 61.4,215.6 61.4,215.7 61.3,215.7 61.2,215.7 61.2,215.8 61.1,215.8 61.1,215.9 61.0,215.9 61.0,216.0 61.0,216.1 61.1,216.1 61.1,216.2 61.1,216.3 61.1,216.4 61.2,216.4 61.2,216.5 61.2,216.6 61.2,216.7 61.2,216.8 61.1,216.8 61.1,216.9 61.1,217.0 61.2,217.0 61.2,217.1 61.2,217.2 61.2,217.3 61.3,217.3 61.3,217.4 61.4,217.4 61.4,217.5 61.4,217.4 61.4,217.5 61.5,217.5 61.6,217.5 61.6,217.6 61.5,217.6 61.5,217.7 61.5,217.8 61.4,217.8 61.4,217.7 61.3,217.7 61.2,217.7 61.1,217.7 61.0,217.7 60.9,217.7 60.8,217.7 60.7,217.7 60.7,217.8 60.6,217.8 60.5,217.8 60.4,217.8 60.3,217.8 60.2,217.8 60.1,217.8 60.0,217.8 59.9,217.8 59.9,217.9 59.7,217.9 59.6,217.9 59.5,217.9 59.4,217.9 59.3,217.9 59.3,218.0 59.2,218.0 59.2,218.1 59.1,218.1 59.1,218.3 59.0,218.3 59.0,218.2 59.0,218.1 58.9,218.1 58.9,218.0 58.8,218.0 58.8,217.9 58.7,217.9 58.7,217.8 58.6,217.8 58.6,217.7 58.5,217.7 58.5,217.6 58.4,217.6 58.4,217.5 58.3,217.5 58.2,217.5 58.2,217.4 58.1,217.4 58.0,217.4 58.0,217.3 57.8,217.3 57.6,217.3 57.5,217.3 57.5,217.2 57.6,217.2 57.7,217.2 57.8,217.2 57.8,217.1 57.8,217.2 57.9,217.2 57.9,217.1 58.0,217.1 58.0,217.2 58.0,217.3 58.1,217.3 58.1,217.2 58.0,217.2 58.0,217.1 57.9,217.1 57.8,217.1 57.7,217.1 57.7,217.0 57.8,217.0 57.8,216.9 57.7,216.9 57.6,216.9 57.6,217.0 57.5,217.0 57.2,217.0 57.2,217.1 57.1,217.1 57.1,217.2 57.1,217.3 57.0,217.3 56.9,217.3 56.9,217.2 56.8,217.2 56.7,217.2 56.7,217.1 56.7,217.0 56.6,217.0 56.6,216.9 56.6,216.8 56.7,216.8 56.7,216.7 56.6,216.7 56.5,216.7 56.4,216.7 56.4,216.6 56.3,216.6 56.2,216.6 56.2,216.7 56.2,216.8 56.2,216.9 56.3,216.9 56.3,217.2 56.2,217.2 56.1,217.2 56.1,217.1 56.0,217.1 55.8,217.1 55.7,217.1 55.6,217.1 55.6,217.2 55.5,217.2 55.4,217.2 55.4,217.3 55.3,217.3 55.2,217.3 55.2,217.4 55.1,217.4 55.0,217.4 55.0,217.5 54.9,217.5 54.9,217.6 54.8,217.6 54.7,217.6 54.7,217.7 54.6,217.7 54.6,217.8 54.5,217.8 54.4,217.8 54.4,217.9 54.3,217.9 54.3,218.0 54.2,218.0 54.2,218.1 54.2,218.2 54.2,218.3 54.2,218.4 54.1,218.4 54.1,218.5 54.0,218.5 54.0,218.6 54.0,218.5 54.0,218.4 54.0,218.2 54.0,218.1 54.1,218.1 54.1,218.0 54.1,217.9 54.1,217.8 54.2,217.8 54.2,217.7 54.3,217.7 54.3,217.6 54.4,217.6 54.4,217.5 54.4,217.4 54.3,217.4 54.3,217.5 54.2,217.5 54.2,217.6 54.1,217.6 54.1,217.5 54.1,217.4 54.1,217.3 54.0,217.3 54.0,217.2 54.0,217.1 54.0,217.0 54.0,216.9 53.9,216.9 53.9,216.8 53.8,216.8 53.8,216.7 53.8,216.6 53.7,216.6 53.7,216.5 53.9,216.5 53.9,216.4 53.8,216.4 53.8,216.3 53.7,216.3 53.7,216.2 53.6,216.2 53.6,216.3 53.6,216.4 53.6,216.5 53.5,216.5 53.5,216.6 53.4,216.6 53.4,216.5 53.4,216.6 53.4,216.5 53.3,216.5 53.3,216.6 53.2,216.6 53.3,216.6 53.4,216.6 53.4,216.7 53.4,216.8 53.5,216.8 53.6,216.8 53.6,216.9 53.6,217.0 53.6,217.1 53.6,217.2 53.7,217.2 53.7,217.3 53.7,217.4 53.7,217.5 53.8,217.5 53.8,217.6 53.8,217.7 53.8,217.8 53.7,217.8 53.7,217.9 53.7,217.8 53.6,217.8 53.6,217.7 53.6,217.6 53.5,217.6 53.5,217.5 53.4,217.5 53.3,217.5 53.3,217.4 53.3,217.3 53.3,217.2 53.2,217.2 53.2,217.1 53.1,217.1 53.1,217.0 53.1,217.1 53.1,217.3 53.1,217.4 53.1,217.5 53.1,217.6 53.1,217.7 53.2,217.7 53.3,217.7 53.3,217.8 53.4,217.8 53.5,217.8 53.5,217.9 53.5,218.0 53.4,218.0 53.4,217.9 53.4,218.0 53.3,218.0 53.3,218.1 53.3,218.2 53.3,218.1 53.4,218.1 53.4,218.2 53.4,218.3 53.5,218.3 53.6,218.3 53.6,218.4 53.7,218.4 53.7,218.5 53.6,218.5 53.6,218.6 53.6,218.5 53.5,218.5 53.5,218.6 53.5,218.7 53.6,218.7 53.7,218.7 53.7,218.6 53.7,218.5 53.8,218.5 53.8,218.6 53.9,218.6 53.9,218.7 53.9,218.8 54.0,218.8 54.0,218.7 53.9,218.7 53.9,218.6 54.0,218.6 54.0,218.7 54.1,218.7 54.2,218.7 54.3,218.7 54.4,218.7 54.4,218.8 54.4,218.9 54.5,218.9 54.5,219.0 54.5,219.1 54.4,219.1 54.4,219.3 54.4,219.4 54.4,219.5 54.3,219.5 54.2,219.5 54.2,219.6 54.2,219.7 54.2,219.8 54.2,219.9 54.3,219.9 54.3,220.0 54.1,220.0 54.0,220.0 53.9,220.0 53.9,220.1 53.9,220.2 53.8,220.2 53.8,220.3 53.9,220.3 53.9,220.4 53.8,220.4 53.8,220.5 53.7,220.5 53.7,220.6 53.7,220.7 53.6,220.7 53.6,220.8 53.7,220.8 53.7,220.9 53.7,221.0 53.6,221.0 53.6,220.9 53.5,220.9 53.4,220.9 53.3,220.9 53.3,221.0 53.2,221.0 53.1,221.0 53.0,221.0 53.0,220.9 52.9,220.9 52.9,220.8 52.8,220.8 52.7,220.8 52.6,220.8 52.5,220.8 52.4,220.8 52.4,220.9 52.5,220.9 52.5,221.0 52.4,221.0 52.3,221.0 52.3,221.1 52.2,221.1 52.2,221.2 52.0,221.2 51.9,221.2 51.8,221.2 51.8,221.1 51.7,221.1 51.6,221.1 51.6,221.2 51.5,221.2 51.5,221.3 51.5,221.2 51.4,221.2 51.3,221.2 51.2,221.2 51.1,221.2 51.0,221.2 51.0,221.3 50.9,221.3 50.8,221.3 50.8,221.2 50.7,221.2 50.5,221.2 50.5,221.3 50.4,221.3 50.3,221.3 50.1,221.3 50.0,221.3 49.8,221.3 49.7,221.3 49.7,221.2 49.6,221.2 49.5,221.2 49.4,221.2 49.3,221.2 49.2,221.2 49.2,221.1 49.2,221.0 49.2,220.9 49.2,220.8 49.1,220.8 49.0,220.8 48.9,220.8 48.9,220.7 48.8,220.7 48.7,220.7 48.7,220.8 48.7,220.7 48.6,220.7 48.5,220.7 48.4,220.7 48.4,220.8 48.3,220.8 48.2,220.8 48.2,220.9 48.1,220.9 48.1,221.0 48.0,221.0 48.0,220.9 47.9,220.9 47.7,220.9 47.5,220.9 47.5,220.8 47.4,220.8 47.4,220.7 47.3,220.7 47.3,220.8 47.2,220.8 47.1,220.8 47.1,220.9 47.0,220.9 47.0,221.0 46.9,221.0 46.8,221.0 46.8,221.1 46.9,221.1 46.9,221.0 47.0,221.0 47.0,221.1 46.9,221.1 46.9,221.2 46.8,221.2 46.7,221.2 46.7,221.3 46.6,221.3 46.6,221.2 46.6,221.3 46.5,221.3 46.4,221.3 46.4,221.2 46.4,221.1 46.3,221.1 46.2,221.1 46.2,221.0 46.1,221.0 46.1,221.1 46.0,221.1 45.9,221.1 45.9,221.0 46.0,221.0 46.0,220.9 46.0,220.8 45.9,220.8 45.9,220.7 45.9,220.6 45.8,220.6 45.8,220.5 45.9,220.5 45.9,220.4 46.0,220.4 46.1,220.4 46.1,220.3 46.1,220.2 46.2,220.2 46.2,220.1 46.1,220.1 46.1,220.0 46.1,220.1 46.0,220.1 46.0,220.2 45.9,220.2 45.8,220.2 45.7,220.2 45.6,220.2 45.5,220.2 45.5,220.1 45.5,220.0 45.6,220.0 45.7,220.0 45.7,219.9 45.8,219.9 45.8,219.8 45.8,219.7 45.9,219.7 45.9,219.6 45.9,219.5 46.0,219.5 46.0,219.4 46.1,219.4 46.1,219.3 46.2,219.3 46.3,219.3 46.3,219.2 46.3,219.3 46.4,219.3 46.4,219.2 46.4,219.1 46.5,219.1 46.5,219.0 46.6,219.0 46.6,219.1 46.7,219.1 46.7,219.2 46.8,219.2 46.9,219.2 47.0,219.2 47.0,219.1 47.0,219.0 47.1,219.0 47.2,219.0 47.2,218.9 47.2,218.8 47.3,218.8 47.3,218.7 47.2,218.7 47.1,218.7 47.0,218.7 46.9,218.7 46.9,218.6 47.0,218.6 47.0,218.5 47.1,218.5 47.2,218.5 47.3,218.5 47.3,218.4 47.2,218.4 47.2,218.3 47.2,218.2 47.2,218.1 47.2,218.0 47.2,217.9 47.2,217.7 47.1,217.7 47.1,217.6 47.1,217.5 47.1,217.4 47.1,217.3 47.1,217.2 47.0,217.2 47.0,217.1 47.0,217.0 47.0,216.9 46.9,216.9 46.9,216.8 46.9,216.7 46.9,216.6 46.9,216.5 46.8,216.5 46.8,216.4 46.8,216.3 46.8,216.2 46.7,216.2 46.7,216.1 46.7,216.0 46.7,215.9 46.6,215.9 46.6,215.8 46.6,215.7 46.6,215.6 46.6,215.5 46.5,215.5 46.5,215.4 46.5,215.3 46.4,215.3 46.4,215.2 46.4,215.1 46.4,215.0 46.3,215.0 46.3,214.9 46.2,214.9 46.2,214.8 46.2,214.7 46.2,214.6 46.1,214.6 46.1,214.5 46.1,214.4 46.0,214.4 46.0,214.3 46.0,214.2 46.0,214.1 45.9,214.1 45.9,214.0 45.9,213.9 45.8,213.9 45.8,213.8 45.8,213.7 45.7,213.7 45.7,213.6 45.7,213.5 45.6,213.5 45.6,213.4 45.6,213.3 45.5,213.3 45.5,213.2 45.4,213.2 45.4,213.1 45.4,213.0 45.3,213.0 45.3,212.9 45.2,212.9 45.2,212.8 45.1,212.8 45.0,212.8 45.0,212.7 44.9,212.7 44.9,212.6 44.8,212.6 44.8,212.5 44.7,212.5 44.7,212.4 44.7,212.3 44.7,212.2 44.7,212.1 44.6,212.1 44.6,212.0 44.6,211.9 44.6,211.8 44.5,211.8 44.5,211.7 44.5,211.6 44.4,211.6 44.4,211.5 44.3,211.5 44.3,211.4 44.2,211.4 44.2,211.3 44.1,211.3 44.1,211.2 44.0,211.2 43.9,211.2 43.9,211.1 43.8,211.1 43.8,211.0 43.7,211.0 43.7,210.9 43.6,210.9 43.6,210.8 43.5,210.8 43.5,210.7 43.4,210.7 43.4,210.6 43.3,210.6 43.3,210.5 43.3,210.4 43.2,210.4 43.2,210.3 43.1,210.3 42.9,210.3 42.9,210.2 42.8,210.2 42.8,210.1 42.7,210.1 42.7,210.2 42.6,210.2 42.6,210.1 42.5,210.1 42.4,210.1 42.3,210.1 42.3,210.0 42.2,210.0 42.2,209.9 42.1,209.9 42.1,209.8 42.2,209.8 42.1,209.8 42.1,209.7 42.0,209.7 42.0,209.6 41.9,209.6 41.9,209.5 41.8,209.5 41.7,209.5 41.7,209.4 41.6,209.4 41.6,209.3 41.5,209.3 41.5,209.2 41.4,209.2 41.3,209.2 41.3,209.1 41.3,209.2 41.2,209.2 41.2,209.1 41.1,209.1 41.0,209.1 41.0,209.0 40.9,209.0 40.9,208.9 40.8,208.9 40.7,208.9 40.6,208.9 40.6,209.0 40.5,209.0 40.5,208.9 40.4,208.9 40.3,208.9 40.3,208.8 40.2,208.8 40.2,208.7 40.1,208.7 40.0,208.7 40.0,208.6 39.9,208.6 39.9,208.5 39.9,208.4 40.0,208.4 40.0,208.3 40.1,208.3 40.1,208.1 40.1,208.0 40.0,208.0 40.0,207.9 40.0,207.8 40.1,207.8 40.0,207.8 40.0,207.7 40.1,207.7 40.1,207.6 40.1,207.5 40.0,207.5 40.0,207.4 40.0,207.3 40.1,207.3 40.1,207.2 40.2,207.2 40.3,207.2 40.3,207.1 40.4,207.1 40.5,207.1 40.8,207.1 40.9,207.1 41.0,207.1 41.0,207.2 41.1,207.2 41.2,207.2 41.2,207.1 41.3,207.1 41.3,207.0 41.4,207.0 41.5,207.0 41.5,206.9 41.5,207.0 41.4,207.0 41.3,207.0 41.3,207.1 41.2,207.1 41.1,207.1 41.1,207.0 41.0,207.0 40.9,207.0 40.7,207.0 40.4,207.0 40.3,207.0 40.3,207.1 40.2,207.1 40.1,207.1 40.1,207.2 40.1,207.3 40.0,207.3 40.0,207.4 40.0,207.5 40.0,207.6 40.0,207.7 39.9,207.7 39.9,207.8 40.0,207.8 39.9,207.8 39.9,207.9 39.9,208.0 40.0,208.0 40.0,208.1 40.0,208.2 40.0,208.3 39.9,208.3 39.9,208.4 39.8,208.4 39.8,208.5 39.7,208.5 39.7,208.6 39.8,208.6 39.8,208.7 39.7,208.7 39.7,208.6 39.6,208.6 39.4,208.6 39.3,208.6 39.3,208.7 39.2,208.7 39.2,208.8 39.1,208.8 39.2,208.8 39.2,208.9 39.2,209.0 39.1,209.0 39.1,209.1 39.1,209.2 39.1,209.3 39.0,209.3 39.0,209.2 38.9,209.2 38.9,209.3 38.8,209.3 38.7,209.3 38.6,209.3 38.6,209.2 38.6,209.1 38.5,209.1 38.4,209.1 38.4,209.0 38.3,209.0 38.3,209.1 38.2,209.1 38.2,209.0 38.1,209.0 38.1,208.9 38.0,208.9 37.9,208.9 37.8,208.9 37.7,208.9 37.7,208.8 37.7,208.7 37.8,208.7 37.8,208.6 37.8,208.5 37.7,208.5 37.6,208.5 37.6,208.4 37.3,208.4 37.3,208.3 37.2,208.3 37.1,208.3 37.1,208.2 37.0,208.2 37.0,208.3 36.8,208.3 36.8,208.2 36.7,208.2 36.7,208.3 36.6,208.3 36.6,208.2 36.6,208.1 36.6,208.0 36.5,208.0 36.4,208.0 36.4,207.9 36.4,207.8 36.3,207.8 36.3,207.7 36.3,207.6 36.2,207.6 36.2,207.5 36.2,207.6 36.1,207.6 36.1,207.7 36.0,207.7 36.0,207.8 35.9,207.8 35.9,207.9 35.8,207.9 35.6,207.9 35.6,208.0 35.5,208.0 35.4,208.0 35.3,208.0 35.2,208.0 35.2,207.9 35.1,207.9 35.1,207.8 35.0,207.8 35.0,207.7 35.0,207.8 34.9,207.8 34.8,207.8 34.7,207.8 34.7,207.7 34.6,207.7 34.5,207.7 34.0,207.7 33.9,207.7 33.9,207.6 33.8,207.6 33.8,207.7 33.8,207.8 33.7,207.8 33.7,207.7 33.6,207.7 33.6,207.6 33.5,207.6 33.5,207.5 33.4,207.5 33.3,207.5 33.3,207.4 33.2,207.4 33.1,207.4 33.1,207.3 33.0,207.3 32.8,207.3 32.8,207.4 32.7,207.4 32.6,207.4 32.6,207.3 32.5,207.3 32.5,207.2 32.4,207.2 32.4,207.1 32.3,207.1 32.3,207.0 32.2,207.0 32.1,207.0 32.1,206.9 32.0,206.9 32.1,206.9 32.2,206.9 32.3,206.9 32.3,206.8 32.6,206.8 32.8,206.8 32.9,206.8 33.0,206.8 33.1,206.8 33.2,206.8 33.2,206.7 33.3,206.7 33.3,206.6 33.4,206.6 33.4,206.5 33.4,206.4 33.3,206.4 33.3,206.3 33.2,206.3 33.2,206.2 33.1,206.2 33.1,206.1 33.1,206.0 33.1,205.9 33.1,205.8 33.1,205.7 33.0,205.7 33.0,205.6 33.0,205.5 33.2,205.5 33.3,205.5 33.4,205.5 33.4,205.6 33.5,205.6 33.7,205.6 33.7,205.7 33.8,205.7 33.9,205.7 34.0,205.7 34.0,205.6 34.0,205.5 34.0,205.4 34.1,205.4 34.1,205.5 34.1,205.6 34.2,205.6 34.2,205.7 34.3,205.7 34.3,205.6 34.4,205.6 34.4,205.7 34.6,205.7 34.7,205.7 34.7,205.6 34.7,205.5 34.7,205.4 34.8,205.4 34.8,205.3 34.8,205.2 34.9,205.2 34.9,205.1 34.9,205.0 35.0,205.0 35.0,205.1 35.1,205.1 35.1,205.2 35.2,205.2 35.2,205.3 35.3,205.3 35.4,205.3 35.4,205.2 35.5,205.2 35.6,205.2 35.7,205.2 35.7,205.3 35.8,205.3 35.9,205.3 36.0,205.3 36.1,205.3 36.2,205.3 36.3,205.3 36.3,205.2 36.3,205.0 36.3,204.9 36.3,205.0 36.4,205.0 36.4,205.1 36.5,205.1 36.5,205.2 36.6,205.2 36.6,205.3 36.7,205.3 36.7,205.2 36.7,205.1 36.8,205.1 36.9,205.1 36.9,205.0 37.0,205.0 37.1,205.0 37.1,204.9 37.2,204.9 37.3,204.9 37.3,204.8 37.4,204.8 37.5,204.8 37.7,204.8 37.7,204.9 37.8,204.9 37.8,204.8 37.9,204.8 37.9,204.7 37.9,204.6 38.1,204.6 38.1,204.5 38.2,204.5 38.3,204.5 38.4,204.5 38.4,204.4 38.5,204.4 38.5,204.5 38.6,204.5 38.6,204.4 38.7,204.4 38.7,204.5 38.8,204.5 38.8,204.6 38.9,204.6 39.0,204.6 39.0,204.7 39.1,204.7 39.2,204.7 39.3,204.7 39.4,204.7 39.4,204.8 39.5,204.8 39.5,204.7 39.5,204.6 39.5,204.5 39.5,204.4 39.6,204.4 39.6,204.5 39.7,204.5 39.7,204.4 39.7,204.3 39.7,204.2 39.8,204.2 39.8,204.1 39.9,204.1 39.9,204.0 40.0,204.0 40.0,204.1 40.1,204.1 40.2,204.1 40.2,204.2 40.3,204.2 40.4,204.2 40.4,204.3 40.5,204.3 40.5,204.2 40.5,204.1 40.5,204.0 40.6,204.0 40.6,204.1 40.7,204.1 40.7,204.0 40.8,204.0 40.9,204.0 41.1,204.0 41.1,204.1 41.1,204.0 41.1,203.9 41.2,203.9 41.3,203.9 41.3,204.0 41.4,204.0 41.4,204.1 41.6,204.1 41.7,204.1 41.7,204.2 41.8,204.2 41.8,204.1 41.9,204.1 42.0,204.1 42.0,204.0 42.0,203.9 42.1,203.9 42.1,203.8 42.2,203.8 42.2,203.7 42.2,203.6 42.3,203.6 42.3,203.7 42.5,203.7 42.6,203.7 42.6,203.6 42.6,203.5 42.7,203.5 42.8,203.5 42.8,203.6 43.0,203.6 43.1,203.6 43.1,203.5 43.2,203.5 43.3,203.5 43.3,203.6 43.4,203.6 43.5,203.6 43.6,203.6 43.7,203.6 43.8,203.6 43.9,203.6 43.9,203.5 44.0,203.5 44.1,203.5 44.1,203.4 44.2,203.4 44.3,203.4 44.3,203.3 44.3,203.2 44.4,203.2 44.4,203.1 44.5,203.1 44.5,203.0 44.6,203.0 44.6,203.1 44.7,203.1 44.8,203.1 44.8,203.2 44.9,203.2 45.0,203.2 45.0,203.1 45.1,203.1 45.1,203.2 45.2,203.2 45.3,203.2 45.4,203.2 45.5,203.2 45.6,203.2 45.6,203.1 45.7,203.1 45.8,203.1 45.9,203.1 45.9,203.0 46.0,203.0 46.1,203.0 46.1,202.9 46.1,202.8 46.4,202.8 46.4,202.9 46.5,202.9 46.6,202.9 46.7,202.9 46.7,203.0 46.7,203.1 46.8,203.1 46.8,203.2 46.9,203.2 46.9,203.3 47.0,203.3 47.1,203.3 47.2,203.3 47.2,203.4 47.3,203.4 47.4,203.4 47.5,203.4 47.5,203.5 47.5,203.6 47.6,203.6 47.6,203.7 47.7,203.7 47.7,203.6 47.8,203.6 47.8,203.7 47.9,203.7 47.9,203.6 47.9,203.5 48.0,203.5 48.1,203.5 48.1,203.6 48.2,203.6 48.2,203.8 48.1,203.8 48.1,203.9 48.2,203.9 48.3,203.9 48.4,203.9 48.5,203.9 48.6,203.9 48.6,204.0 48.7,204.0 48.7,204.1 48.8,204.1 48.9,204.1 48.9,204.0 49.0,204.0 49.1,204.0 49.1,203.9 49.1,203.8 49.1,203.7 49.2,203.7 49.2,203.6 49.2,203.5 49.3,203.5 49.3,203.4 49.4,203.4 49.4,203.3 49.5,203.3 49.5,203.2 49.6,203.2 49.6,203.1 49.6,203.0 49.6,202.9 49.7,202.9 49.7,202.8 49.7,202.7 49.7,202.6 49.7,202.5 49.7,202.4 49.8,202.4 49.7,202.4 49.7,202.3 49.7,202.2 49.6,202.2 49.6,202.1 49.6,202.0 49.5,202.0 49.5,201.9 49.6,201.9 49.7,201.9 49.7,201.8 49.8,201.8 49.8,201.7 49.9,201.7 49.9,201.6 49.9,201.5 50.0,201.5 50.1,201.5 50.2,201.5 50.2,201.4 50.1,201.4 50.1,201.3 50.1,201.2 50.1,201.1 50.1,201.0 50.1,200.9 50.0,200.9 50.0,200.8 50.0,200.7 50.0,200.8 50.1,200.8 50.1,200.7 50.0,200.7 50.0,200.6 49.9,200.6 49.9,200.5 50.1,200.5 50.1,200.4 50.1,200.3 50.0,200.3 50.0,200.2 49.8,200.2 49.7,200.2 49.7,200.3 49.6,200.3 49.5,200.3 49.5,200.2 49.4,200.2 49.4,200.1 49.5,200.1 49.4,200.1 49.3,200.1 49.3,200.2 49.2,200.2 49.2,200.1 49.2,199.9 49.2,199.8 49.2,199.7 49.1,199.7 49.1,199.6 49.0,199.6 49.0,199.5 49.1,199.5 49.1,199.4 49.1,199.5 49.2,199.5 49.3,199.5 49.3,199.4 49.4,199.4 49.4,199.3 49.3,199.3 49.3,199.2 49.3,199.1 49.4,199.1 49.3,199.1 49.3,199.0 49.3,198.9 49.3,198.8 49.2,198.8 49.2,198.7 49.2,198.6 49.2,198.5 49.1,198.5 49.1,198.4 49.1,198.3 49.0,198.3 49.0,198.2 49.0,198.1 48.9,198.1 48.9,198.0 48.9,197.9 48.7,197.9 48.6,197.9 48.5,197.9 48.5,197.8 48.5,197.7 48.5,197.6 48.4,197.6 48.4,197.5 48.3,197.5 48.2,197.5 48.2,197.6 48.1,197.6 48.0,197.6 48.0,197.5 47.9,197.5 47.8,197.5 47.8,197.4 47.8,197.3 47.7,197.3 47.6,197.3 47.6,197.4 47.5,197.4 47.4,197.4 47.4,197.3 47.3,197.3 47.2,197.3 47.0,197.3 47.0,197.4 46.9,197.4 46.8,197.4 46.7,197.4 46.7,197.3 46.5,197.3 46.5,197.4 46.4,197.4 46.3,197.4 46.3,197.3 46.2,197.3 46.2,197.2 46.3,197.2 46.3,197.1 46.4,197.1 46.3,197.1 46.3,197.0 46.3,196.9 46.2,196.9 46.2,196.8 46.1,196.8 46.1,196.7 46.0,196.7 46.0,196.6 45.8,196.6 45.7,196.6 45.6,196.6 45.6,196.7 45.5,196.7 45.4,196.7 45.5,196.7 45.5,196.6 45.4,196.6 45.5,196.6 45.5,196.5 45.3,196.5 45.2,196.5 45.1,196.5 45.1,196.4 45.0,196.4 44.9,196.4 44.7,196.4 44.6,196.4 44.6,196.3 44.6,196.2 44.6,196.1 44.5,196.1 44.4,196.1 44.4,196.2 44.3,196.2 44.3,196.1 44.2,196.1 44.2,196.0 44.1,196.0 43.9,196.0 43.9,196.1 43.9,196.2 43.8,196.2 43.8,196.3 43.7,196.3 43.7,196.2 43.7,196.1 43.8,196.1 43.8,196.0 43.9,196.0 43.9,195.9 44.0,195.9 44.0,195.8 44.0,195.7 44.1,195.7 44.1,195.6 44.1,195.5 44.1,195.6 44.2,195.6 44.2,195.5 44.1,195.5 44.0,195.5 44.0,195.6 43.9,195.6 43.9,195.7 43.9,195.8 43.9,195.9 43.8,195.9 43.7,195.9 43.7,195.8 43.6,195.8 43.5,195.8 43.5,195.7 43.4,195.7 43.4,195.6 43.3,195.6 43.2,195.6 43.0,195.6 42.9,195.6 42.8,195.6 42.8,195.5 42.7,195.5 42.8,195.5 42.8,195.4 42.7,195.4 42.7,195.5 42.6,195.5 42.5,195.5 42.5,195.6 42.4,195.6 42.4,195.5 42.4,195.6 42.3,195.6 42.1,195.6 42.0,195.6 42.0,195.7 41.9,195.7 41.8,195.7 41.8,195.6 41.7,195.6 41.7,195.7 41.6,195.7 41.5,195.7 41.5,195.8 41.4,195.8 41.3,195.8 41.3,195.9 41.3,196.0 41.2,196.0 41.2,196.1 41.2,196.2 41.2,196.3 41.3,196.3 41.3,196.2 41.4,196.2 41.4,196.3 41.4,196.2 41.5,196.2 41.6,196.2 41.6,196.1 41.6,196.2 41.6,196.3 41.6,196.4 41.5,196.4 41.6,196.4 41.6,196.5 41.5,196.5 41.5,196.6 41.5,196.7 41.4,196.7 41.4,196.8 41.3,196.8 41.2,196.8 41.1,196.8 41.1,196.9 41.0,196.9 41.0,197.0 40.9,197.0 40.9,197.1 40.9,197.2 40.8,197.2 40.8,197.3 40.8,197.4 40.8,197.5 40.8,197.6 40.9,197.6 41.0,197.6 40.9,197.6 40.9,197.7 40.8,197.7 40.8,197.6 40.8,197.7 40.7,197.7 40.7,197.8 40.6,197.8 40.6,197.9 40.6,198.0 40.5,198.0 40.6,198.0 40.6,198.1 40.6,198.2 40.5,198.2 40.5,198.3 40.4,198.3 40.4,198.4 40.3,198.4 40.3,198.5 40.2,198.5 40.2,198.6 40.1,198.6 40.1,198.7 40.0,198.7 39.9,198.7 39.9,198.8 39.8,198.8 39.8,198.9 39.8,199.0 39.8,199.1 39.8,199.3 39.8,199.4 39.8,199.5 39.7,199.5 39.7,199.6 39.6,199.6 39.6,199.5 39.5,199.5 39.5,199.6 39.5,199.5 39.4,199.5 39.4,199.6 39.3,199.6 39.3,199.5 39.2,199.5 39.0,199.5 39.0,199.4 39.1,199.4 39.1,199.3 39.0,199.3 39.0,199.2 39.1,199.2 39.1,199.1 39.0,199.1 39.0,199.0 39.0,198.9 39.1,198.9 39.2,198.9 39.3,198.9 39.3,198.8 39.3,198.7 39.4,198.7 39.3,198.7 39.3,198.6 39.2,198.6 39.2,198.5 39.3,198.5 39.3,198.4 39.3,198.3 39.3,198.2 39.3,198.1 39.4,198.1 39.4,198.0 39.4,197.9 39.4,197.8 39.4,197.7 39.3,197.7 39.3,197.6 39.3,197.5 39.3,197.4 39.3,197.2 39.3,197.1 39.3,197.0 39.2,197.0 39.1,197.0 39.1,196.9 39.1,196.8 39.1,196.7 39.0,196.7 39.0,196.6 39.0,196.5 39.0,196.4 39.1,196.4 39.1,196.3 39.1,196.2 39.0,196.2 39.0,196.1 38.9,196.1 38.9,196.0 39.0,196.0 39.0,195.9 38.9,195.9 38.8,195.9 38.7,195.9 38.6,195.9 38.6,195.8 38.6,195.7 38.5,195.7 38.5,195.6 38.6,195.6 38.7,195.6 38.7,195.5 38.8,195.5 38.8,195.6 38.9,195.6 39.0,195.6 39.0,195.5 39.1,195.5 39.1,195.4 39.2,195.4 39.3,195.4 39.4,195.4 39.4,195.3 39.5,195.3 39.6,195.3 39.6,195.2 39.6,194.9 39.6,194.8 39.6,194.7 39.5,194.7 39.5,194.6 39.5,194.5 39.3,194.5 39.3,194.4 39.2,194.4 39.2,194.3 39.1,194.3 39.0,194.3 39.0,194.4 39.0,194.5 38.9,194.5 38.8,194.5 38.7,194.5 38.7,194.6 38.6,194.6 38.5,194.6 38.5,194.5 38.4,194.5 38.4,194.6 38.3,194.6 38.3,194.7 38.2,194.7 38.2,194.8 38.1,194.8 38.1,194.7 38.0,194.7 38.0,194.6 37.9,194.6 37.8,194.6 37.7,194.6 37.7,194.7 37.6,194.7 37.6,194.6 37.6,194.5 37.7,194.5 37.6,194.5 37.6,194.4 37.5,194.4 37.4,194.4 37.4,194.3 37.4,194.2 37.3,194.2 37.2,194.2 37.2,194.1 37.1,194.1 37.0,194.1 36.9,194.1 36.9,194.2 36.8,194.2 36.8,194.3 36.8,194.4 36.7,194.4 36.7,194.5 36.7,194.6 36.6,194.6 36.6,194.7 36.6,194.6 36.6,194.5 36.6,194.4 36.5,194.4 36.6,194.4 36.6,194.3 36.5,194.3 36.5,194.2 36.6,194.2 36.6,194.1 36.7,194.1 36.7,194.0 36.7,193.9 36.7,193.8 36.8,193.8 36.8,193.7 36.8,193.6 36.8,193.5 36.8,193.4 36.9,193.4 36.8,193.4 36.8,193.3 36.8,193.2 36.7,193.2 36.6,193.2 36.5,193.2 36.5,193.1 36.4,193.1 36.3,193.1 36.3,193.0 36.4,193.0 36.8,193.0 36.8,192.9 36.9,192.9 36.9,193.0 37.0,193.0 37.1,193.0 37.1,192.9 37.1,192.8 37.2,192.8 37.1,192.8 37.0,192.8 37.0,192.7 37.1,192.7 37.2,192.7 37.2,192.6 37.3,192.6 37.4,192.6 37.5,192.6 37.5,192.7 37.5,192.8 37.5,192.9 37.4,192.9 37.5,192.9 37.6,192.9 37.6,193.0 37.7,193.0 37.9,193.0 37.9,193.1 37.8,193.1 37.7,193.1 37.6,193.1 37.6,193.2 37.7,193.2 37.7,193.3 37.8,193.3 37.9,193.3 38.0,193.3 38.1,193.3 38.1,193.2 38.2,193.2 38.3,193.2 38.3,193.1 38.4,193.1 38.4,193.0 38.4,192.9 38.5,192.9 38.6,192.9 38.6,192.8 38.6,192.7 38.6,192.8 38.7,192.8 38.7,192.7 38.7,192.6 38.8,192.6 38.7,192.6 38.7,192.5 38.7,192.4 38.7,192.3 38.6,192.3 38.6,192.2 38.7,192.2 38.7,192.1 38.7,192.0 38.6,192.0 38.5,192.0 38.5,191.9 38.5,191.8 38.6,191.8 38.6,191.7 38.6,191.6 38.5,191.6 38.5,191.5 38.5,191.3 38.4,191.3 38.4,191.2 38.5,191.2 38.5,191.1 38.4,191.1 38.4,191.0 38.4,190.9 38.3,190.9 38.3,190.8 38.2,190.8 38.2,190.9 38.1,190.9 38.1,190.8 38.1,190.7 38.2,190.7 38.3,190.7 38.3,190.6 38.3,190.5 38.3,190.4 38.4,190.4 38.5,190.4 38.5,190.3 38.6,190.3 38.6,190.1 38.7,190.1 38.8,190.1 38.9,190.1 38.9,190.0 38.9,189.9 39.0,189.9 39.0,189.8 39.1,189.8 39.1,189.7 39.2,189.7 39.2,189.6 39.3,189.6 39.5,189.6 39.6,189.6 39.6,189.5 39.7,189.5 39.8,189.5 39.9,189.5 40.0,189.5 40.1,189.5 40.1,189.6 40.1,189.7 40.0,189.7 40.0,189.8 40.0,189.9 39.9,189.9 39.9,190.0 39.9,190.1 39.8,190.1 39.8,190.2 39.7,190.2 39.7,190.3 39.7,190.4 39.6,190.4 39.6,190.5 39.6,190.6 39.7,190.6 39.7,190.8 39.6,190.8 39.6,190.9 39.6,191.0 39.6,191.1 39.5,191.1 39.5,191.2 39.6,191.2 39.5,191.2 39.5,191.3 39.5,191.4 39.4,191.4 39.4,191.5 39.4,191.6 39.3,191.6 39.2,191.6 39.2,191.7 39.2,191.9 39.2,192.0 39.2,192.1 39.3,192.1 39.3,192.2 39.4,192.2 39.4,192.3 39.5,192.3 39.6,192.3 39.6,192.4 39.7,192.4 39.8,192.4 39.8,192.3 39.9,192.3 39.9,192.2 39.9,192.3 39.9,192.4 39.9,192.5 39.9,192.6 39.8,192.6 39.8,192.7 39.9,192.7 39.9,192.8 40.0,192.8 40.0,192.7 40.1,192.7 40.2,192.7 40.2,192.6 40.3,192.6 40.4,192.6 40.4,192.5 40.5,192.5 40.5,192.4 40.3,192.4 40.3,192.3 40.3,192.2 40.3,192.1 40.4,192.1 40.5,192.1 40.5,192.0 40.6,192.0 40.6,191.9 40.7,191.9 40.7,191.8 40.7,191.7 40.8,191.7 40.8,191.6 40.8,191.5 40.9,191.5 40.9,191.4 40.9,191.3 41.0,191.3 41.0,191.2 41.4,191.2 41.4,191.3 41.5,191.3 41.5,191.4 41.5,191.5 41.5,191.4 41.5,191.3 41.4,191.3 41.4,191.4 41.3,191.4 41.3,191.5 41.3,191.6 41.4,191.6 41.3,191.6 41.2,191.6 41.2,191.7 41.1,191.7 41.1,191.8 41.0,191.8 41.0,191.9 41.0,192.0 40.9,192.0 40.9,192.1 40.8,192.1 40.8,192.2 40.8,192.3 40.8,192.4 40.9,192.4 40.9,192.5 41.0,192.5 41.0,192.6 41.2,192.6 41.1,192.6 41.1,192.7 41.1,192.8 41.0,192.8 40.9,192.8 40.9,192.9 40.9,193.0 41.0,193.0 41.1,193.0 41.1,192.9 41.1,193.0 41.2,193.0 41.2,192.9 41.5,192.9 41.5,193.0 41.5,192.9 41.6,192.9 41.7,192.9 41.8,192.9 41.8,192.8 41.9,192.8 42.0,192.8 42.0,192.7 42.1,192.7 42.2,192.7 42.3,192.7 42.4,192.7 42.4,192.6 42.5,192.6 42.6,192.6 42.6,192.5 42.7,192.5 42.7,192.4 42.7,192.2 42.8,192.2 42.9,192.2 42.9,192.3 43.0,192.3 43.1,192.3 43.1,192.2 43.1,192.1 43.2,192.1 43.2,192.2 43.1,192.2 43.1,192.3 43.3,192.3 43.3,192.4 43.4,192.4 43.5,192.4 43.5,192.3 43.6,192.3 43.7,192.3 43.9,192.3 43.9,192.4 44.0,192.4 44.1,192.4 44.2,192.4 44.2,192.3 44.3,192.3 44.4,192.3 44.5,192.3 44.5,192.4 44.5,192.5 44.4,192.5 44.4,192.6 44.4,192.7 44.4,192.8 44.5,192.8 44.5,192.7 44.5,192.6 44.5,192.5 44.6,192.5 44.6,192.6 44.6,192.7 44.6,192.8 44.6,192.9 44.5,192.9 44.5,193.0 44.6,193.0 44.6,193.1 44.7,193.1 44.7,193.2 44.8,193.2 44.8,193.3 44.9,193.3 45.0,193.3 45.2,193.3 45.4,193.3 45.8,193.3 45.9,193.3 46.0,193.3 46.0,193.2 46.1,193.2 46.2,193.2 46.3,193.2 46.4,193.2 46.4,193.1 46.5,193.1 46.6,193.1 46.6,193.0 46.7,193.0 46.7,192.9 46.8,192.9 46.8,192.8 46.9,192.8 46.9,192.7 47.0,192.7 47.3,192.7 47.5,192.7 47.6,192.7 47.6,192.6 47.7,192.6 47.7,192.5 47.8,192.5 47.8,192.4 47.9,192.4 48.0,192.4 48.1,192.4 48.2,192.4 48.2,192.3 48.3,192.3 48.3,192.2 48.4,192.2 48.5,192.2 48.5,192.1 48.6,192.1 48.7,192.1 48.7,192.0 48.8,192.0 49.0,192.0 49.1,192.0 49.3,192.0 49.4,192.0 49.5,192.0 49.4,192.0 49.6,192.0 49.6,192.1 49.8,192.1 49.9,192.1 50.0,192.1 50.1,192.1 50.2,192.1 50.2,192.2 50.3,192.2 50.3,192.3 50.4,192.3 50.5,192.3 50.5,192.4 50.4,192.4 50.4,192.5 50.4,192.6 50.4,192.7 50.4,192.8 50.3,192.8 50.2,192.8 50.1,192.8 50.1,192.7 50.1,192.6 50.0,192.6 50.0,192.5 49.9,192.5 49.8,192.5 49.7,192.5 49.7,192.6 49.6,192.6 49.6,192.7 49.6,192.8 49.6,192.9 49.6,193.0 49.5,193.0 49.6,193.0 49.6,193.1 49.6,193.2 49.6,193.3 49.6,193.4 49.5,193.4 49.6,193.4 49.6,193.3 49.7,193.3 49.8,193.3 49.8,193.4 49.9,193.4 49.9,193.5 50.0,193.5 50.1,193.5 50.1,193.6 50.2,193.6 50.2,193.7 50.3,193.7 50.4,193.7 50.5,193.7 50.5,193.8 50.6,193.8 50.6,193.9 50.7,193.9 50.7,194.0 50.8,194.0 50.8,194.1 50.7,194.1 50.7,194.2 50.8,194.2 50.8,194.3 50.9,194.3 50.9,194.4 50.8,194.4 50.9,194.4 50.9,194.5 51.0,194.5 51.1,194.5 51.1,194.6 51.2,194.6 51.2,194.7 51.1,194.7 51.2,194.7 51.3,194.7 51.5,194.7 51.5,194.8 51.6,194.8 51.7,194.8 51.7,194.7 51.8,194.7 51.8,194.6 51.9,194.6 51.9,194.5 52.0,194.5 52.0,194.4 52.0,194.3 52.1,194.3 52.2,194.3 52.2,194.4 52.3,194.4 52.3,194.5 52.3,194.6 52.3,194.7 52.3,194.8 52.4,194.8 52.4,194.9 52.4,195.0 52.4,195.1 52.4,195.2 52.5,195.2 52.5,195.1 52.5,195.0 52.6,195.0 52.7,195.0 52.8,195.0 52.9,195.0 53.0,195.0 53.1,195.0 53.4,195.0 53.5,195.0 53.6,195.0 53.7,195.0 54.1,195.0 54.4,195.0 54.4,195.1 54.6,195.1 54.7,195.1 54.8,195.1 54.8,195.2 54.9,195.2 54.9,195.3 55.0,195.3 55.0,195.4 55.1,195.4 55.1,195.5 55.2,195.5 55.3,195.5 55.2,195.5 55.2,195.4 55.1,195.4 55.1,195.3 55.0,195.3 55.0,195.2 55.0,195.1 54.9,195.1 54.9,195.0 54.8,195.0 54.7,195.0 54.7,194.9 54.5,194.9 54.5,195.0 54.3,195.0 54.3,194.9 54.2,194.9 54.1,194.9 54.0,194.9 53.8,194.9 53.8,194.8 53.5,194.8 53.4,194.8 53.2,194.8 53.1,194.8 53.1,194.7 53.0,194.7 53.0,194.8 52.9,194.8 52.9,194.7 52.9,194.8 52.8,194.8 52.8,194.9 52.7,194.9 52.7,194.8 52.6,194.8 52.5,194.8 52.5,194.7 52.5,194.6 52.5,194.5 52.5,194.4 52.5,194.3 52.4,194.3 52.4,194.2 52.3,194.2 52.2,194.2 52.1,194.2 52.1,194.1 52.1,194.2 52.0,194.2 51.9,194.2 51.9,194.3 51.8,194.3 51.8,194.4 51.7,194.4 51.6,194.4 51.6,194.5 51.5,194.5 51.5,194.6 51.4,194.6 51.3,194.6 51.3,194.5 51.2,194.5 51.2,194.4 51.2,194.3 51.1,194.3 51.1,194.2 51.1,194.1 51.0,194.1 51.0,194.0 51.0,193.9 50.9,193.9 50.9,193.8 50.8,193.8 50.8,193.7 50.7,193.7 50.6,193.7 50.5,193.7 50.5,193.6 50.4,193.6 50.4,193.5 50.3,193.5 50.3,193.4 50.2,193.4 50.1,193.4 50.1,193.3 50.0,193.3 49.9,193.3 49.9,193.2 49.8,193.2 49.8,193.1 49.8,193.0 49.9,193.0 49.9,192.9 49.8,192.9 49.7,192.9 49.7,192.8 49.8,192.8 49.8,192.7 49.9,192.7 49.9,192.8 49.9,192.9 50.0,192.9 50.0,193.0 50.1,193.0 50.1,193.1 50.2,193.1 50.4,193.1 50.5,193.1 50.5,193.0 50.6,193.0 50.7,193.0 50.7,192.9 50.8,192.9 50.9,192.9 50.9,192.8 51.0,192.8 51.0,192.7 51.1,192.7 51.1,192.6 51.2,192.6 51.3,192.6 51.3,192.5 51.4,192.5 51.4,192.4 51.3,192.4 51.3,192.3 51.4,192.3 51.4,192.4 51.5,192.4 51.6,192.4 51.6,192.3 51.7,192.3 51.7,192.4 51.8,192.4 51.9,192.4 51.9,192.5 51.9,192.6 51.9,192.5 52.0,192.5 52.1,192.5 52.1,192.4 52.2,192.4 52.3,192.4 52.3,192.3 52.4,192.3 52.5,192.3 52.6,192.3 52.6,192.2 52.7,192.2 52.8,192.2 52.9,192.2 53.0,192.2 53.0,192.1 53.1,192.1 53.2,192.1 53.0,192.1 52.9,192.1 52.8,192.1 52.7,192.1 52.5,192.1 52.4,192.1 52.3,192.1 52.2,192.1 52.1,192.1 52.0,192.1 51.9,192.1 51.8,192.1 51.7,192.1 51.6,192.1 51.6,192.0 51.5,192.0 51.4,192.0 51.4,191.9 51.4,191.8 51.5,191.8 51.5,191.7 51.4,191.7 51.4,191.6 51.3,191.6 51.3,191.4 51.3,191.3 51.4,191.3 51.3,191.3 51.2,191.3 51.2,191.4 51.2,191.6 51.1,191.6 51.1,191.7 51.0,191.7 51.0,191.8 51.1,191.8 51.1,191.9 51.2,191.9 51.1,191.9 51.1,192.0 51.0,192.0 51.0,191.9 50.9,191.9 50.9,191.8 51.0,191.8 51.0,191.7 50.9,191.7 50.9,191.8 50.8,191.8 50.8,191.7 50.8,191.6 50.7,191.6 50.6,191.6 50.6,191.5 50.5,191.5 50.5,191.4 50.4,191.4 50.3,191.4 50.1,191.4 50.0,191.4 50.0,191.3 49.9,191.3 49.9,191.2 49.8,191.2 49.7,191.2 49.7,191.1 49.7,191.0 49.8,191.0 49.9,191.0 49.9,190.9 50.0,190.9 50.1,190.9 50.1,190.8 50.2,190.8 50.3,190.8 50.3,190.7 50.3,190.6 50.4,190.6 50.5,190.6 50.6,190.6 50.7,190.6 50.8,190.6 50.8,190.5 50.9,190.5 50.9,190.4 51.0,190.4 51.0,190.3 50.9,190.3 50.9,190.4 50.8,190.4 50.8,190.5 50.7,190.5 50.6,190.5 50.6,190.6 50.4,190.6 50.3,190.6 50.3,190.7 50.2,190.7 50.2,190.8 50.1,190.8 50.0,190.8 50.0,190.7 49.9,190.7 49.9,190.8 49.8,190.8 49.7,190.8 49.7,190.9 49.6,190.9 49.6,191.0 49.5,191.0 49.5,191.1 49.4,191.1 49.4,191.2 49.3,191.2 49.2,191.2 49.1,191.2 49.0,191.2 49.0,191.1 48.9,191.1 48.8,191.1 48.8,191.0 48.7,191.0 48.7,191.1 48.6,191.1 48.6,191.0 48.5,191.0 48.4,191.0 48.4,191.1 48.3,191.1 48.3,191.0 48.0,191.0 47.9,191.0 47.9,191.1 47.8,191.1 47.7,191.1 47.7,191.2 47.6,191.2 47.5,191.2 47.5,191.1 47.6,191.1 47.7,191.1 47.7,191.0 47.6,191.0 47.6,190.9 47.7,190.9 47.8,190.9 47.8,190.8 47.9,190.8 47.9,190.7 48.0,190.7 48.0,190.6 48.1,190.6 48.0,190.6 48.1,190.6 48.1,190.5 48.2,190.5 48.2,190.6 48.3,190.6 48.3,190.5 48.3,190.4 48.1,190.4 48.1,190.3 48.2,190.3 48.2,190.2 48.3,190.2 48.4,190.2 48.5,190.2 48.6,190.2 48.6,190.3 48.7,190.3 48.7,190.2 48.8,190.2 48.8,190.1 48.9,190.1 48.9,190.0 48.8,190.0 48.7,190.0 48.6,190.0 48.6,190.1 48.5,190.1 48.4,190.1 48.3,190.1 48.3,190.0 48.2,190.0 48.1,190.0 48.2,190.0 48.2,189.9 48.3,189.9 48.3,189.8 48.4,189.8 48.6,189.8 48.6,189.7 48.7,189.7 48.9,189.7 49.0,189.7 49.0,189.6 49.1,189.6 49.2,189.6 49.2,189.5 49.3,189.5 49.4,189.5 49.4,189.4 49.5,189.4 49.6,189.4 49.7,189.4 49.7,189.3 49.7,189.2 49.6,189.2 49.6,189.1 49.5,189.1 49.4,189.1 49.3,189.1 49.3,189.0 49.3,188.9 49.4,188.9 49.4,189.0 49.5,189.0 49.5,188.9 49.6,188.9 49.7,188.9 49.8,188.9 49.8,188.8 49.9,188.8 50.0,188.8 50.1,188.8 50.1,188.7 50.2,188.7 50.3,188.7 50.3,188.6 50.4,188.6 50.4,188.5 50.5,188.5 50.4,188.5 50.4,188.6 50.3,188.6 50.2,188.6 50.2,188.7 50.1,188.7 50.1,188.8 50.0,188.8 50.0,188.7 49.9,188.7 49.8,188.7 49.7,188.7 49.7,188.8 49.6,188.8 49.5,188.8 49.3,188.8 49.2,188.8 49.2,188.7 49.1,188.7 49.0,188.7 48.9,188.7 48.9,188.8 48.9,188.9 48.9,189.0 48.8,189.0 48.8,189.1 48.9,189.1 49.0,189.1 49.1,189.1 49.1,189.2 49.1,189.3 49.0,189.3 49.0,189.4 48.9,189.4 48.8,189.4 48.7,189.4 48.6,189.4 48.5,189.4 48.4,189.4 48.3,189.4 48.3,189.5 48.2,189.5 48.0,189.5 48.0,189.6 47.9,189.6 47.9,189.7 47.9,189.6 47.8,189.6 47.8,189.5 47.9,189.5 47.9,189.4 47.8,189.4 47.8,189.2 47.8,189.1 47.9,189.1 47.9,189.0 48.0,189.0 48.0,188.9 48.0,188.8 48.1,188.8 48.1,188.7 48.0,188.7 47.9,188.7 47.9,188.8 47.9,188.9 47.8,188.9 47.7,188.9 47.7,189.0 47.6,189.0 47.6,189.1 47.5,189.1 47.5,189.2 47.4,189.2 47.5,189.2 47.5,189.3 47.4,189.3 47.4,189.4 47.3,189.4 47.3,189.5 47.2,189.5 47.2,189.4 47.1,189.4 47.1,189.3 47.0,189.3 47.0,189.4 47.0,189.5 46.9,189.5 46.9,189.4 46.9,189.3 46.9,189.2 47.0,189.2 47.0,189.1 47.0,189.0 47.1,189.0 47.1,188.9 47.2,188.9 47.2,188.8 47.2,188.9 47.1,188.9 47.0,188.9 47.0,189.0 46.9,189.0 46.9,189.1 46.8,189.1 46.7,189.1 46.7,189.2 46.6,189.2 46.6,189.3 46.5,189.3 46.5,189.4 46.4,189.4 46.4,189.5 46.4,189.6 46.4,189.7 46.3,189.7 46.3,189.8 46.4,189.8 46.5,189.8 46.5,189.9 46.4,189.9 46.4,190.0 46.3,190.0 46.3,190.1 46.3,190.2 46.3,190.3 46.2,190.3 46.2,190.4 46.1,190.4 46.0,190.4 45.7,190.4 45.5,190.4 45.5,190.5 45.4,190.5 45.3,190.5 45.2,190.5 44.9,190.5 44.5,190.5 44.5,190.4 44.6,190.4 44.6,190.3 44.6,190.2 44.7,190.2 44.7,190.1 44.8,190.1 44.8,190.0 44.8,189.9 44.9,189.9 44.9,189.8 45.0,189.8 45.0,189.7 45.1,189.7 45.1,189.6 45.2,189.6 45.2,189.5 45.3,189.5 45.2,189.5 45.1,189.5 45.1,189.6 45.0,189.6 44.9,189.6 44.9,189.7 44.8,189.7 44.7,189.7 44.7,189.8 44.6,189.8 44.5,189.8 44.5,189.9 44.4,189.9 44.4,190.0 44.3,190.0 44.2,190.0 44.2,190.1 44.1,190.1 44.0,190.1 44.0,190.2 43.9,190.2 43.8,190.2 43.7,190.2 43.7,190.3 43.6,190.3 43.6,190.4 43.5,190.4 43.4,190.4 43.3,190.4 43.2,190.4 43.1,190.4 43.0,190.4 43.0,190.3 43.0,190.4 42.9,190.4 42.9,190.3 42.9,190.2 43.0,190.2 43.1,190.2 43.2,190.2 43.2,190.1 43.3,190.1 43.3,190.0 43.3,189.9 43.3,189.8 43.2,189.8 43.2,189.7 43.3,189.7 43.4,189.7 43.4,189.6 43.5,189.6 43.5,189.5 43.6,189.5 43.7,189.5 43.7,189.4 43.6,189.4 43.5,189.4 43.5,189.3 43.5,189.2 43.5,189.1 43.4,189.1 43.4,189.0 43.5,189.0 43.5,188.9 43.5,188.8 43.6,188.8 43.6,188.7 43.7,188.7 43.8,188.7 43.8,188.6 43.8,188.5 43.7,188.5 43.7,188.4 43.8,188.4 43.8,188.3 43.8,188.2 43.9,188.2 43.9,188.1 44.0,188.1 44.1,188.1 44.1,188.0 44.2,188.0 44.3,188.0 44.4,188.0 44.4,187.9 44.5,187.9 44.5,187.8 44.5,187.7 44.6,187.7 44.6,187.6 44.7,187.6 44.7,187.5 44.7,187.4 44.8,187.4 44.8,187.3 44.9,187.3 44.9,187.1 45.0,187.1 45.1,187.1 45.2,187.1 45.2,187.0 45.3,187.0 45.3,186.9 45.4,186.9 45.4,186.8 45.5,186.8 45.5,186.7 45.6,186.7 45.7,186.7 45.7,186.6 45.8,186.6 45.9,186.6 45.9,186.5 46.0,186.5 46.1,186.5 46.1,186.4 46.2,186.4 46.3,186.4 46.4,186.4 46.4,186.3 46.4,186.2 46.5,186.2 46.5,186.1 46.6,186.1 46.6,186.0 46.7,186.0 46.7,185.9 46.8,185.9 46.9,185.9 47.0,185.9 47.2,185.9 47.3,185.9 47.4,185.9 47.4,185.8 47.5,185.8 47.5,185.7 47.6,185.7 47.7,185.7 47.7,185.6 47.8,185.6 47.8,185.5 47.9,185.5 47.9,185.4 48.0,185.4 48.1,185.4 48.1,185.3 48.2,185.3 48.2,185.2 48.3,185.2 48.4,185.2 48.4,185.1 48.5,185.1 48.6,185.1 48.6,185.0 48.7,185.0 48.7,184.9 48.7,184.8 48.8,184.8 48.9,184.8 48.9,184.7 49.0,184.7 49.1,184.7 49.1,184.6 49.1,184.5 49.2,184.5 49.2,184.4 49.2,184.3 49.3,184.3 49.3,184.2 49.4,184.2 49.4,184.1 49.3,184.1 49.3,184.2 49.2,184.2 49.2,184.3 49.1,184.3 49.1,184.4 49.1,184.5 49.0,184.5 49.0,184.6 48.9,184.6 48.8,184.6 48.7,184.6 48.7,184.7 48.6,184.7 48.6,184.8 48.6,184.9 48.5,184.9 48.5,185.0 48.3,185.0 48.2,185.0 48.2,185.1 48.1,185.1 48.0,185.1 48.0,185.0 47.9,185.0 47.9,185.1 48.0,185.1 48.0,185.2 47.9,185.2 47.9,185.3 47.8,185.3 47.7,185.3 47.6,185.3 47.5,185.3 47.5,185.4 47.4,185.4 47.4,185.5 47.3,185.5 47.3,185.6 47.3,185.7 47.2,185.7 47.1,185.7 47.1,185.6 47.0,185.6 46.9,185.6 46.9,185.7 46.8,185.7 46.8,185.6 46.7,185.6 46.7,185.5 46.7,185.6 46.7,185.7 46.5,185.7 46.4,185.7 46.4,185.8 46.4,185.9 46.4,186.0 46.3,186.0 46.3,186.1 46.1,186.1 46.0,186.1 46.0,186.2 45.9,186.2 45.9,186.3 45.8,186.3 45.8,186.2 45.7,186.2 45.6,186.2 45.5,186.2 45.4,186.2 45.4,186.3 45.4,186.4 45.3,186.4 45.3,186.5 45.2,186.5 45.2,186.6 45.2,186.7 45.0,186.7 45.0,186.6 44.9,186.6 44.9,186.7 44.9,186.6 44.8,186.6 44.7,186.6 44.7,186.5 44.6,186.5 44.6,186.4 44.5,186.4 44.5,186.3 44.4,186.3 44.3,186.3 44.3,186.2 44.2,186.2 44.1,186.2 44.0,186.2 43.9,186.2 43.9,186.3 43.9,186.4 44.0,186.4 44.0,186.5 44.0,186.6 44.0,186.7 43.9,186.7 43.9,186.8 43.9,186.9 43.9,187.0 43.8,187.0 43.8,187.1 43.7,187.1 43.6,187.1 43.5,187.1 43.4,187.1 43.4,187.0 43.3,187.0 43.2,187.0 43.2,187.1 43.1,187.1 43.0,187.1 43.0,187.0 43.1,187.0 43.1,186.9 43.1,186.8 43.0,186.8 43.0,186.9 43.0,187.0 42.8,187.0 42.8,186.9 42.8,187.0 42.7,187.0 42.7,187.1 42.6,187.1 42.6,187.2 42.5,187.2 42.4,187.2 42.4,187.1 42.3,187.1 42.3,187.2 42.2,187.2 42.2,187.1 42.1,187.1 42.1,187.2 42.0,187.2 41.9,187.2 41.9,187.3 41.9,187.4 41.9,187.3 41.8,187.3 41.8,187.2 41.7,187.2 41.7,187.3 41.6,187.3 41.5,187.3 41.5,187.2 41.5,187.3 41.5,187.4 41.5,187.5 41.4,187.5 41.4,187.4 41.3,187.4 41.3,187.5 41.2,187.5 41.2,187.6 41.1,187.6 41.0,187.6 41.0,187.7 40.9,187.7 40.9,187.8 40.8,187.8 40.8,187.9 40.7,187.9 40.7,188.0 40.6,188.0 40.6,188.1 40.5,188.1 40.4,188.1 40.3,188.1 40.3,188.2 40.2,188.2 40.2,188.3 40.1,188.3 40.1,188.4 40.1,188.5 40.0,188.5 40.0,188.6 39.9,188.6 39.8,188.6 39.8,188.5 39.7,188.5 39.7,188.4 39.6,188.4 39.5,188.4 39.5,188.3 39.4,188.3 39.3,188.3 39.3,188.4 39.4,188.4 39.4,188.5 39.3,188.5 39.2,188.5 39.2,188.6 39.1,188.6 39.1,188.7 39.0,188.7 39.0,188.6 38.9,188.6 38.8,188.6 38.8,188.7 38.8,188.9 38.7,188.9 38.6,188.9 38.6,189.0 38.4,189.0 38.4,189.1 38.3,189.1 38.2,189.1 38.1,189.1 38.0,189.1 38.0,189.2 37.9,189.2 37.9,189.3 37.8,189.3 37.7,189.3 37.7,189.4 37.6,189.4 37.6,189.5 37.5,189.5 37.4,189.5 37.4,189.6 37.3,189.6 37.2,189.6 37.2,189.7 37.1,189.7 37.1,189.6 37.0,189.6 37.0,189.7 36.9,189.7 36.9,189.6 36.8,189.6 36.7,189.6 36.7,189.7 36.6,189.7 36.5,189.7 36.4,189.7 36.4,189.8 36.3,189.8 36.3,189.7 36.3,189.6 36.2,189.6 36.2,189.5 36.1,189.5 36.1,189.4 36.1,189.3 36.0,189.3 35.9,189.3 35.7,189.3 35.6,189.3 35.5,189.3 35.5,189.2 35.4,189.2 35.4,189.1 35.3,189.1 35.3,189.0 35.2,189.0 35.1,189.0 35.1,188.9 35.0,188.9 35.0,188.8 34.9,188.8 34.9,188.9 34.8,188.9 34.8,188.8 34.7,188.8 34.6,188.8 34.6,188.7 34.5,188.7 34.4,188.7 34.4,188.6 34.4,188.7 34.3,188.7 34.3,188.8 34.2,188.8 34.1,188.8 34.1,188.7 34.0,188.7 34.0,188.8 33.9,188.8 33.8,188.8 33.8,188.9 33.7,188.9 33.7,189.0 33.6,189.0 33.6,189.1 33.5,189.1 33.5,189.2 33.6,189.2 33.6,189.4 33.7,189.4 33.7,189.5 33.7,189.6 33.6,189.6 33.7,189.6 33.7,189.7 33.8,189.7 33.8,189.8 33.7,189.8 33.6,189.8 33.5,189.8 33.4,189.8 33.4,189.9 33.4,190.0 33.3,190.0 33.3,190.1 33.4,190.1 33.3,190.1 33.1,190.1 33.1,190.2 33.0,190.2 32.9,190.2 32.9,190.1 32.8,190.1 32.8,190.2 32.6,190.2 32.6,190.1 32.5,190.1 32.4,190.1 32.4,190.0 32.2,190.0 32.1,190.0 32.1,190.1 32.0,190.1 31.9,190.1 31.9,190.2 31.6,190.2 31.5,190.2 31.5,190.3 31.3,190.3 31.2,190.3 31.0,190.3 31.0,190.2 30.9,190.2 30.8,190.2 30.8,190.1 30.8,190.0 30.8,189.9 30.8,189.8 30.7,189.8 30.7,189.6 30.8,189.6 30.8,189.5 30.8,189.4 30.9,189.4 30.9,189.3 30.9,189.2 30.9,189.1 30.8,189.1 30.8,189.0 30.7,189.0 30.7,188.9 30.6,188.9 30.6,188.8 30.5,188.8 30.5,188.7 30.6,188.7 30.6,188.6 30.6,188.5 30.5,188.5 30.5,188.4 30.6,188.4 30.6,188.3 30.7,188.3 30.8,188.3 30.8,188.2 30.8,188.3 30.9,188.3 31.1,188.3 31.3,188.3 31.3,188.2 31.1,188.2 30.7,188.2 30.6,188.2 30.6,188.3 30.5,188.3 30.4,188.3 30.3,188.3 30.2,188.3 30.2,188.2 30.3,188.2 30.3,188.1 30.3,188.0 30.4,188.0 30.2,188.0 30.3,188.0 30.3,187.9 30.2,187.9 30.2,187.8 30.3,187.8 30.3,187.9 30.4,187.9 30.4,188.0 30.5,188.0 30.5,188.1 30.6,188.1 30.7,188.1 30.8,188.1 31.0,188.1 31.0,188.0 31.1,188.0 31.1,187.9 31.2,187.9 31.2,187.8 31.2,187.7 31.3,187.7 31.3,187.6 31.3,187.5 31.2,187.5 31.2,187.4 31.2,187.3 31.1,187.3 31.1,187.2 31.1,187.1 31.2,187.1 31.2,187.0 31.1,187.0 31.0,187.0 30.9,187.0 30.9,186.9 30.8,186.9 30.8,186.8 30.8,186.7 30.7,186.7 30.7,186.6 30.7,186.5 30.7,186.3 30.8,186.3 30.8,186.2 30.8,186.1 30.7,186.1 30.7,186.0 30.8,186.0 30.8,185.9 30.8,185.8 30.8,185.7 30.7,185.7 30.6,185.7 30.6,185.8 30.5,185.8 30.4,185.8 30.4,185.7 30.4,185.6 30.3,185.6 30.3,185.5 30.2,185.5 30.1,185.5 30.1,185.4 30.1,185.3 30.1,185.4 30.0,185.4 30.0,185.3 29.9,185.3 29.9,185.2 30.0,185.2 30.0,185.1 30.1,185.1 30.1,185.0 30.1,184.9 30.1,184.8 30.2,184.8 30.2,184.7 30.2,184.6 30.3,184.6 30.3,184.5 30.3,184.4 30.4,184.4 30.4,184.3 30.3,184.3 30.3,184.2 30.3,184.0 30.4,184.0 30.4,183.9 30.3,183.9 30.2,183.9 30.2,183.8 30.3,183.8 30.4,183.8 30.5,183.8 30.5,183.7 30.6,183.7 30.6,183.6 30.6,183.5 30.7,183.5 30.7,183.4 30.6,183.4 30.6,183.5 30.5,183.5 30.5,183.6 30.4,183.6 30.4,183.5 30.4,183.4 30.4,183.3 30.5,183.3 30.6,183.3 30.6,183.2 30.5,183.2 30.6,183.2 30.6,183.1 30.6,183.0 30.6,182.9 30.7,182.9 30.8,182.9 30.8,182.8 30.9,182.8 30.9,182.7 30.9,182.6 30.9,182.5 30.9,182.4 30.9,182.3 30.9,182.4 31.0,182.4 31.0,182.3 31.1,182.3 31.1,182.2 31.1,182.1 31.2,182.1 31.2,182.0 31.3,182.0 31.3,182.1 31.4,182.1 31.5,182.1 31.5,182.2 31.6,182.2 31.6,182.1 31.5,182.1 31.5,182.0 31.6,182.0 31.6,181.9 31.7,181.9 31.8,181.9 31.7,181.9 31.7,181.8 31.6,181.8 31.6,181.9 31.5,181.9 31.5,182.0 31.3,182.0 31.3,181.9 31.2,181.9 31.2,181.8 31.1,181.8 31.1,181.7 31.0,181.7 31.0,181.5 30.9,181.5 30.9,181.4 31.0,181.4 31.0,181.3 30.9,181.3 30.9,181.4 30.9,181.3 30.8,181.3 30.8,181.2 30.7,181.2 30.7,181.1 30.8,181.1 30.9,181.1 30.9,181.0 30.8,181.0 30.7,181.0 30.7,180.9 30.7,180.8 30.7,180.7 30.7,180.6 30.6,180.6 30.6,180.5 30.5,180.5 30.5,180.4 30.5,180.3 30.5,180.2 30.6,180.2 30.6,180.3 30.7,180.3 30.7,180.2 30.7,180.1 30.6,180.1 30.6,180.0 30.6,179.9 30.7,179.9 30.8,179.9 30.8,179.8 30.9,179.8 31.0,179.8 31.0,179.7 31.1,179.7 31.1,179.6 31.0,179.6 30.9,179.6 30.9,179.5 31.0,179.5 31.0,179.4 30.9,179.4 30.9,179.3 30.9,179.4 30.8,179.4 30.7,179.4 30.7,179.5 30.6,179.5 30.6,179.4 30.6,179.3 30.5,179.3 30.5,179.4 30.5,179.3 30.4,179.3 30.4,179.2 30.5,179.2 30.6,179.2 30.7,179.2 30.7,179.3 30.7,179.2 30.7,179.1 30.9,179.1 30.9,179.2 30.9,179.3 31.0,179.3 31.1,179.3 31.1,179.2 31.0,179.2 31.0,179.1 31.1,179.1 31.1,179.2 31.2,179.2 31.2,179.1 31.1,179.1 31.1,179.0 31.0,179.0 30.9,179.0 31.0,179.0 31.0,178.9 31.1,178.9 31.2,178.9 31.2,179.0 31.2,179.1 31.3,179.1 31.3,179.0 31.4,179.0 31.4,178.9 31.3,178.9 31.3,179.0 31.2,179.0 31.2,178.9 31.2,178.8 31.3,178.8 31.3,178.7 31.2,178.7 31.1,178.7 31.1,178.6 31.1,178.5 31.1,178.6 31.2,178.6 31.2,178.5 31.1,178.5 31.1,178.4 31.2,178.4 31.3,178.4 31.3,178.5 31.4,178.5 31.4,178.4 31.4,178.3 31.4,178.2 31.4,178.3 31.5,178.3 31.6,178.3 31.6,178.4 31.6,178.3 31.7,178.3 31.7,178.2 31.7,178.1 31.7,178.0 31.7,177.9 31.6,177.9 31.6,177.8 31.6,177.7 31.5,177.7 31.6,177.7 31.7,177.7 31.7,177.6 31.8,177.6 31.8,177.5 31.9,177.5 32.0,177.5 32.1,177.5 32.1,177.4 32.2,177.4 32.2,177.3 32.3,177.3 32.3,177.2 32.3,177.1 32.4,177.1 32.4,177.0 32.4,176.9 32.5,176.9 32.6,176.9 32.7,176.9 32.7,176.8 32.8,176.8 32.9,176.8 33.1,176.8 33.0,176.8 33.0,176.9 33.0,177.0 33.1,177.0 33.1,177.1 33.2,177.1 33.2,177.0 33.3,177.0 33.4,177.0 33.4,177.1 33.3,177.1 33.3,177.2 33.4,177.2 33.5,177.2 33.4,177.2 33.4,177.1 33.5,177.1 33.5,177.0 33.6,177.0 33.4,177.0 33.4,176.9 33.4,176.8 33.5,176.8 33.5,176.7 33.5,176.6 33.4,176.6 33.3,176.6 33.3,176.5 33.4,176.5 33.4,176.4 33.5,176.4 33.5,176.5 33.6,176.5 33.6,176.4 33.5,176.4 33.5,176.3 33.4,176.3 33.3,176.3 33.3,176.2 33.4,176.2 33.4,176.1 33.5,176.1 33.7,176.1 33.7,176.0 33.8,176.0 33.8,176.1 33.8,176.2 33.9,176.2 33.9,176.1 34.0,176.1 34.0,176.0 33.9,176.0 33.9,175.9 33.8,175.9 33.8,175.8 33.9,175.8 34.0,175.8 34.0,175.9 34.1,175.9 34.1,176.0 34.2,176.0 34.3,176.0 34.3,176.1 34.3,176.2 34.2,176.2 34.3,176.2 34.3,176.3 34.4,176.3 34.5,176.3 34.5,176.2 34.6,176.2 34.7,176.2 34.7,176.1 34.7,176.0 34.7,175.9 34.7,175.8 34.8,175.8 34.9,175.8 34.9,175.9 35.0,175.9 35.0,176.0 35.1,176.0 35.1,176.1 35.3,176.1 35.4,176.1 35.4,176.0 35.5,176.0 35.8,176.0 35.9,176.0 35.9,175.9 36.0,175.9 36.0,175.8 36.1,175.8 36.1,175.7 36.2,175.7 36.3,175.7 36.3,175.6 36.4,175.6 36.5,175.6 36.6,175.6 36.6,175.7 36.5,175.7 36.5,175.8 36.7,175.8 36.8,175.8 36.9,175.8 36.9,175.9 37.0,175.9 37.0,176.0 37.2,176.0 37.4,176.0 37.5,176.0 37.5,176.1 37.6,176.1 37.7,176.1 37.7,176.2 37.7,176.3 37.7,176.6 37.8,176.6 37.8,176.7 37.9,176.7 37.9,176.8 37.9,176.9 37.8,176.9 37.8,177.0 37.8,177.1 37.9,177.1 37.9,177.0 38.0,177.0 38.0,176.9 38.1,176.9 38.1,177.0 38.2,177.0 38.2,176.9 38.1,176.9 38.1,176.8 38.2,176.8 38.2,176.7 38.3,176.7 38.5,176.7 38.5,176.8 38.6,176.8 38.8,176.8 39.0,176.8 39.1,176.8 39.2,176.8 39.3,176.8 39.3,176.9 39.4,176.9 39.5,176.9 39.5,177.0 39.6,177.0 39.6,176.9 39.7,176.9 39.8,176.9 39.8,177.0 39.8,177.1 39.9,177.1 40.0,177.1 40.0,177.2 40.1,177.2 40.1,177.1 40.2,177.1 40.2,177.0 40.3,177.0 40.3,177.1 40.4,177.1 40.4,177.0 40.3,177.0 40.2,177.0 40.1,177.0 40.1,177.1 40.1,177.0 40.0,177.0 39.9,177.0 39.9,176.9 39.9,176.8 39.8,176.8 39.6,176.8 39.5,176.8 39.5,176.9 39.4,176.9 39.4,176.8 39.3,176.8 39.3,176.7 39.2,176.7 39.1,176.7 39.1,176.8 39.0,176.8 39.0,176.7 38.9,176.7 38.6,176.7 38.5,176.7 38.3,176.7 38.1,176.7 38.0,176.7 38.0,176.6 37.9,176.6 37.9,176.5 37.9,176.4 37.9,176.3 37.9,176.2 37.8,176.2 37.8,176.1 37.8,176.0 37.7,176.0 37.7,175.9 37.4,175.9 37.3,175.9 37.2,175.9 37.1,175.9 37.1,175.8 37.0,175.8 37.0,175.6 37.1,175.6 37.2,175.6 37.2,175.5 37.3,175.5 37.3,175.4 37.3,175.3 37.3,175.2 37.3,175.1 37.3,175.2 37.1,175.2 37.1,175.1 37.2,175.1 37.2,175.0 37.2,174.9 37.3,174.9 37.2,174.9 37.2,174.8 37.2,174.7 37.2,174.6 37.2,174.5 37.2,174.4 37.2,174.3 37.3,174.3 37.3,174.2 37.2,174.2 37.2,174.1 37.3,174.1 37.4,174.1 37.4,174.0 37.5,174.0 37.5,173.9 37.6,173.9 37.6,174.0 37.7,174.0 37.7,174.1 37.7,174.2 37.8,174.2 37.8,174.1 37.8,174.2 37.9,174.2 37.9,174.1 38.0,174.1 38.0,174.2 38.0,174.3 38.0,174.4 38.0,174.5 37.9,174.5 37.8,174.5 37.8,174.6 37.7,174.6 37.7,174.7 37.7,174.8 37.8,174.8 37.8,174.7 37.9,174.7 38.0,174.7 38.1,174.7 38.2,174.7 38.3,174.7 38.3,174.6 38.5,174.6 38.6,174.6 38.7,174.6 38.7,174.5 38.8,174.5 38.9,174.5 39.0,174.5 39.1,174.5 39.1,174.7 39.3,174.7 39.3,174.6 39.4,174.6 39.4,174.5 39.6,174.5 39.7,174.5 39.7,174.6 39.8,174.6 39.9,174.6 39.9,174.7 40.0,174.7 40.1,174.7 40.2,174.7 40.3,174.7 40.3,174.8 40.4,174.8 40.4,174.9 40.5,174.9 40.5,175.0 40.5,175.1 40.5,175.2 40.5,175.3 40.6,175.3 40.6,175.2 40.7,175.2 40.8,175.2 41.3,175.2 41.3,175.3 41.3,175.4 41.4,175.4 41.4,175.5 41.5,175.5 41.5,175.6 41.6,175.6 41.6,175.7 41.6,175.8 41.7,175.8 41.7,175.9 41.8,175.9 41.8,176.0 41.9,176.0 42.0,176.0 42.0,175.9 41.9,175.9 41.8,175.9 41.8,175.8 41.8,175.7 41.7,175.7 41.7,175.6 41.6,175.6 41.6,175.5 41.5,175.5 41.5,175.4 41.4,175.4 41.4,175.3 41.3,175.3 41.3,175.2 41.3,175.1 41.2,175.1 41.0,175.1 40.7,175.1 40.6,175.1 40.5,175.1 40.5,175.0 40.5,174.9 40.5,174.8 40.4,174.8 40.4,174.7 40.3,174.7 40.2,174.7 40.2,174.6 40.1,174.6 40.0,174.6 39.9,174.6 39.9,174.5 39.8,174.5 39.8,174.4 39.7,174.4 39.7,174.3 39.6,174.3 39.6,174.4 39.5,174.4 39.4,174.4 39.4,174.3 39.4,174.2 39.3,174.2 39.2,174.2 39.2,174.3 39.1,174.3 39.0,174.3 39.0,174.2 39.0,174.3 38.9,174.3 38.9,174.2 38.9,174.1 39.0,174.1 39.1,174.1 39.1,174.0 39.2,174.0 39.2,173.9 39.2,173.8 39.1,173.8 39.1,173.9 39.0,173.9 39.0,173.8 39.0,173.9 38.9,173.9 38.8,173.9 38.8,174.0 38.7,174.0 38.7,174.1 38.6,174.1 38.5,174.1 38.5,174.0 38.5,173.9 38.4,173.9 38.4,173.8 38.5,173.8 38.5,173.7 38.5,173.8 38.6,173.8 38.6,173.9 38.7,173.9 38.7,173.8 38.7,173.7 38.7,173.6 38.8,173.6 38.8,173.5 38.9,173.5 38.8,173.5 38.7,173.5 38.6,173.5 38.6,173.4 38.5,173.4 38.5,173.5 38.5,173.6 38.4,173.6 38.4,173.5 38.4,173.4 38.4,173.3 38.5,173.3 38.6,173.3 38.6,173.2 38.5,173.2 38.5,173.1 38.5,173.0 38.5,172.9 38.6,172.9 38.6,173.0 38.6,173.1 38.6,173.2 38.7,173.2 38.8,173.2 38.8,173.3 38.9,173.3 38.9,173.2 38.9,173.1 38.8,173.1 38.8,173.0 38.8,172.9 38.9,172.9 38.9,172.8 39.0,172.8 39.0,172.9 38.9,172.9 38.9,173.0 39.0,173.0 39.1,173.0 39.2,173.0 39.4,173.0 39.4,172.9 39.4,172.8 39.5,172.8 39.5,172.9 39.5,173.0 39.6,173.0 39.7,173.0 39.7,172.9 39.7,172.8 39.6,172.8 39.5,172.8 39.5,172.7 39.4,172.7 39.4,172.8 39.3,172.8 39.3,172.9 39.2,172.9 39.2,172.8 39.1,172.8 39.1,172.7 39.0,172.7 39.0,172.6 39.1,172.6 39.2,172.6 39.2,172.5 39.3,172.5 39.3,172.6 39.2,172.6 39.2,172.7 39.3,172.7 39.3,172.6 39.4,172.6 39.5,172.6 39.5,172.7 39.6,172.7 39.6,172.6 39.5,172.6 39.5,172.5 39.5,172.4 39.5,172.3 39.6,172.3 39.6,172.4 39.6,172.3 39.7,172.3 39.7,172.2 39.8,172.2 39.9,172.2 39.9,172.3 39.9,172.4 39.8,172.4 39.8,172.5 39.8,172.6 39.9,172.6 39.9,172.5 39.9,172.4 40.0,172.4 40.0,172.5 40.0,172.6 40.1,172.6 40.3,172.6 40.4,172.6 40.4,172.5 40.4,172.4 40.5,172.4 40.5,172.3 40.6,172.3 40.6,172.4 40.7,172.4 40.7,172.3 40.8,172.3 40.8,172.4 40.9,172.4 40.9,172.5 41.0,172.5 40.9,172.5 40.9,172.6 40.9,172.7 41.0,172.7 41.0,172.6 41.1,172.6 41.1,172.7 41.2,172.7 41.2,172.8 41.1,172.8 41.0,172.8 40.9,172.8 40.9,172.9 40.9,173.0 41.0,173.0 41.1,173.0 41.0,173.0 41.1,173.0 41.1,172.9 41.0,172.9 41.1,172.9 41.2,172.9 41.1,172.9 41.1,173.0 41.1,173.1 41.2,173.1 41.2,173.2 41.3,173.2 41.3,173.1 41.4,173.1 41.4,173.0 41.5,173.0 41.5,172.9 41.6,172.9 41.7,172.9 42.1,172.9 42.1,173.0 42.2,173.0 42.3,173.0 42.3,172.9 42.4,172.9 42.5,172.9 42.6,172.9 42.6,172.8 42.7,172.8 42.8,172.8 42.8,172.7 42.9,172.7 42.9,172.6 43.0,172.6 43.0,172.5 43.1,172.5 43.1,172.4 43.1,172.3 43.0,172.3 43.0,172.2 42.9,172.2 42.9,172.1 43.0,172.1 43.0,172.2 43.1,172.2 43.1,172.3 43.2,172.3 43.2,172.2 43.3,172.2 43.3,172.1 43.2,172.1 43.2,172.0 43.2,171.9 43.3,171.9 43.3,171.8 43.4,171.8 43.4,171.9 43.4,172.0 43.3,172.0 43.3,172.1 43.5,172.1 43.6,172.1 43.6,172.0 43.6,171.9 43.6,172.0 43.7,172.0 43.7,172.1 43.6,172.1 43.6,172.2 43.7,172.2 43.7,172.3 43.8,172.3 43.7,172.3 43.7,172.4 43.8,172.4 43.8,172.5 43.7,172.5 43.8,172.5 43.8,172.6 43.9,172.6 43.9,172.5 43.9,172.4 43.9,172.3 44.0,172.3 43.9,172.3 43.9,172.2 43.9,172.1 43.8,172.1 43.8,172.0 43.8,171.9 43.9,171.9 43.9,172.0 44.0,172.0 44.1,172.0 44.2,172.0 44.2,172.1 44.3,172.1 44.3,172.2 44.4,172.2 44.5,172.2 44.9,172.2 44.9,172.1 44.9,172.0 44.7,172.0 44.5,172.0 44.4,172.0 44.4,171.9 44.4,171.8 44.3,171.8 44.3,171.7 44.2,171.7 44.1,171.7 44.0,171.7 43.9,171.7 43.9,171.6 43.9,171.4 43.8,171.4 43.7,171.4 43.7,171.3 43.8,171.3 43.8,171.2 43.7,171.2 43.7,171.0 43.6,171.0 43.6,170.9 43.7,170.9 43.7,171.0 43.8,171.0 43.8,171.1 43.9,171.1 44.0,171.1 44.0,171.2 44.0,171.3 44.4,171.3 44.5,171.3 44.5,171.2 44.6,171.2 44.7,171.2 44.7,171.1 44.8,171.1 44.8,171.2 45.0,171.2 45.3,171.2 45.3,171.1 45.4,171.1 45.4,171.0 45.5,171.0 45.6,171.0 45.6,170.9 45.7,170.9 45.8,170.9 45.8,170.8 45.9,170.8 45.9,170.7 45.8,170.7 45.9,170.7 46.0,170.7 46.0,170.8 46.0,170.7 46.1,170.7 46.1,170.6 46.1,170.5 46.1,170.4 46.2,170.4 46.2,170.3 46.3,170.3 46.4,170.3 46.4,170.4 46.5,170.4 46.5,170.3 46.6,170.3 46.7,170.3 46.7,170.2 46.8,170.2 46.9,170.2 46.9,170.1 47.0,170.1 47.0,170.0 47.1,170.0 47.2,170.0 47.2,169.9 47.6,169.9 47.7,169.9 47.8,169.9 47.9,169.9 47.9,170.0 48.0,170.0 48.0,169.9 48.1,169.9 48.1,170.0 48.1,170.1 48.1,170.2 48.0,170.2 47.9,170.2 47.9,170.3 47.9,170.4 47.9,170.5 48.0,170.5 48.1,170.5 48.1,170.6 48.2,170.6 48.2,170.5 48.2,170.4 48.3,170.4 48.3,170.3 48.4,170.3 48.3,170.3 48.3,170.2 48.4,170.2 48.4,170.1 48.5,170.1 48.6,170.1 48.6,170.2 48.6,170.3 48.6,170.4 48.7,170.4 48.7,170.5 48.8,170.5 49.0,170.5 49.0,170.6 49.1,170.6 49.2,170.6 49.2,170.7 49.3,170.7 49.3,170.8 49.3,170.9 49.2,170.9 49.1,170.9 49.1,171.0 49.0,171.0 49.0,171.2 49.1,171.2 49.1,171.3 49.1,171.4 49.0,171.4 48.9,171.4 48.9,171.5 48.8,171.5 48.8,171.6 48.6,171.6 48.6,171.7 48.6,171.8 48.7,171.8 48.7,171.9 48.7,172.0 48.6,172.0 48.7,172.0 48.7,172.1 48.6,172.1 48.6,172.2 48.7,172.2 48.7,172.3 48.8,172.3 48.8,172.4 48.9,172.4 49.0,172.4 49.1,172.4 49.1,172.3 49.2,172.3 49.2,172.2 49.1,172.2 49.0,172.2 49.0,172.3 49.0,172.2 48.9,172.2 48.9,172.1 48.9,172.0 49.0,172.0 49.1,172.0 49.2,172.0 49.3,172.0 49.7,172.0 49.8,172.0 49.8,171.9 49.8,171.8 49.9,171.8 49.9,171.7 49.9,171.6 50.0,171.6 50.0,171.5 50.1,171.5 50.2,171.5 50.3,171.5 50.4,171.5 50.4,171.4 50.6,171.4 50.6,171.5 50.7,171.5 51.2,171.5 51.3,171.5 51.3,171.4 51.4,171.4 51.5,171.4 51.6,171.4 51.6,171.3 51.7,171.3 51.8,171.3 51.8,171.2 52.0,171.2 52.0,171.3 51.9,171.3 52.0,171.3 52.0,171.4 52.0,171.5 52.0,171.6 52.1,171.6 52.3,171.6 52.3,171.5 52.4,171.5 52.5,171.5 52.6,171.5 52.6,171.4 52.7,171.4 52.8,171.4 52.8,171.3 52.9,171.3 52.9,171.2 52.8,171.2 52.7,171.2 52.7,171.1 52.5,171.1 52.4,171.1 52.4,171.2 52.3,171.2 52.2,171.2 52.1,171.2 52.0,171.2 52.0,171.1 51.9,171.1 51.9,171.0 52.0,171.0 52.0,170.9 52.1,170.9 52.2,170.9 52.2,170.8 52.2,170.7 52.3,170.7 52.3,170.6 52.3,170.5 52.3,170.4 52.3,170.3 52.4,170.3 52.5,170.3 52.5,170.2 52.6,170.2 52.6,170.1 52.7,170.1 52.7,170.0 52.8,170.0 52.8,169.9 52.9,169.9 52.9,169.8 53.0,169.8 53.0,169.7 53.1,169.7 53.1,169.6 53.2,169.6 53.2,169.5 53.2,169.4 53.3,169.4 53.3,169.3 53.4,169.3 53.5,169.3 53.5,169.4 53.6,169.4 53.6,169.5 53.6,169.4 53.7,169.4 53.7,169.3 53.8,169.3 53.9,169.3 53.9,169.2 53.9,169.3 53.9,169.4 54.0,169.4 54.0,169.3 54.0,169.2 54.1,169.2 54.1,169.1 54.1,169.0 54.2,169.0 54.2,169.1 54.3,169.1 54.3,169.2 54.3,169.1 54.4,169.1 54.5,169.1 54.6,169.1 54.6,169.0 54.8,169.0 54.8,168.9 54.9,168.9 55.0,168.9 55.1,168.9 55.1,169.0 55.2,169.0 55.3,169.0 55.3,168.9 55.4,168.9 55.4,168.8 55.5,168.8 55.5,168.7 55.4,168.7 55.5,168.7 55.6,168.7 55.6,168.8 55.7,168.8 55.7,168.9 55.8,168.9 55.9,168.9 55.9,169.0 56.0,169.0 56.1,169.0 56.1,168.9 56.1,168.8 56.2,168.8 56.3,168.8 56.4,168.8 56.4,168.9 56.5,168.9 56.5,169.0 56.5,168.9 56.6,168.9 56.7,168.9 56.7,168.8 56.8,168.8 56.8,168.9 56.9,168.9 56.9,169.0 56.9,169.1 57.0,169.1 57.0,169.0 57.1,169.0 57.2,169.0 57.3,169.0 57.3,168.9 57.4,168.9 57.5,168.9 57.6,168.9 57.6,169.0 57.5,169.0 57.5,169.1 57.6,169.1 57.7,169.1 57.7,169.2 57.7,169.3 57.6,169.3 57.7,169.3 57.8,169.3 57.8,169.4 57.9,169.4 57.9,169.5 58.0,169.5 58.0,169.6 58.1,169.6 58.0,169.6 58.0,169.5 58.0,169.4 57.9,169.4 57.9,169.3 57.8,169.3 57.8,169.2 57.8,169.3 57.8,169.2 57.9,169.2 58.0,169.2 58.0,169.3 58.2,169.3 58.2,169.2 58.2,169.1 58.2,169.0 58.3,169.0 58.3,168.9 58.3,168.7 58.3,168.6 58.3,168.5 58.2,168.5 58.2,168.4 58.1,168.4 58.0,168.4 58.0,168.3 57.9,168.3 57.8,168.3 57.7,168.3 57.8,168.3 57.8,168.2 57.9,168.2 57.9,168.1 58.0,168.1 58.0,168.2 58.0,168.1 58.0,168.2 58.1,168.2 58.1,168.1 58.1,168.2 58.2,168.2 58.3,168.2 58.3,168.3 58.3,168.4 58.4,168.4 58.4,168.5 58.4,168.4 58.5,168.4 58.5,168.3 58.5,168.1 58.6,168.1 58.6,168.2 58.6,168.1 58.7,168.1 58.7,168.2 58.7,168.3 58.8,168.3 58.9,168.3 58.9,168.4 59.0,168.4 59.0,168.3 59.1,168.3 59.1,168.2 59.1,168.1 59.2,168.1 59.2,168.0 59.2,167.9 59.1,167.9 59.0,167.9 58.9,167.9 59.0,167.9 59.0,167.8 59.1,167.8 59.1,167.7 59.2,167.7 59.3,167.7 59.4,167.7 59.4,167.8 59.5,167.8 59.5,167.9 59.6,167.9 59.9,167.9 60.0,167.9 60.0,167.8 60.1,167.8 60.1,167.7 60.1,167.6 60.1,167.5 60.0,167.5 60.1,167.5 60.1,167.4 60.2,167.4 60.2,167.3 60.3,167.3 60.3,167.2 60.3,167.1 60.3,167.0 60.2,167.0 60.2,166.9 60.3,166.9 60.3,167.0 60.4,167.0 60.5,167.0 60.6,167.0 60.6,167.1 60.5,167.1 60.5,167.2 60.4,167.2 60.4,167.3 60.3,167.3 60.3,167.4 60.4,167.4 60.4,167.5 60.5,167.5 60.5,167.6 60.5,167.7 60.4,167.7 60.4,167.8 60.5,167.8 60.5,167.9 60.6,167.9 60.6,167.8 60.7,167.8 60.8,167.8 60.8,167.7 60.9,167.7 60.9,167.6 60.9,167.5 60.9,167.4 60.8,167.4 60.8,167.2 60.9,167.2 60.9,167.1 60.8,167.1 60.9,167.1 60.9,167.0 61.0,167.0 61.1,167.0 61.2,167.0 61.3,167.0 61.3,166.9 61.3,167.0 61.3,167.1 61.3,167.2 61.4,167.2 61.4,167.3 61.4,167.2 61.5,167.2 61.6,167.2 61.5,167.2 61.5,167.1 61.6,167.1 61.6,167.0 61.7,167.0 61.8,167.0 61.8,167.1 61.7,167.1 61.8,167.1 61.8,167.2 61.8,167.1 61.8,167.2 61.9,167.2 61.9,167.3 62.0,167.3 62.0,167.4 62.1,167.4 62.0,167.4 61.9,167.4 61.9,167.5 61.8,167.5 61.8,167.6 61.8,167.7 61.7,167.7 61.7,167.8 61.7,167.9 61.7,168.0 61.6,168.0 61.6,168.1 61.6,168.2 61.7,168.2 61.7,168.3 61.6,168.3 61.6,168.4 61.6,168.5 61.6,168.6 61.5,168.6 61.5,168.7 61.6,168.7 61.6,168.8 61.6,168.9 61.7,168.9 61.8,168.9 61.9,168.9 61.9,169.0 61.9,168.9 61.9,169.0 61.9,169.1 61.9,169.2 62.0,169.2 62.1,169.2 62.2,169.2 62.2,169.3 62.1,169.3 62.1,169.4 62.1,169.5 62.2,169.5 62.2,169.6 62.1,169.6 62.1,169.5 62.0,169.5 62.0,169.4 62.1,169.4 62.1,169.3 62.0,169.3 61.9,169.3 61.9,169.2 61.8,169.2 61.8,169.3 61.7,169.3 61.7,169.4 61.7,169.5 61.7,169.6 61.8,169.6 61.8,169.7 61.8,169.8 61.8,169.9 61.8,170.0 61.7,170.0 61.7,170.1 61.8,170.1 61.9,170.1 61.9,170.0 61.9,169.9 61.9,170.0 62.0,170.0 62.0,170.1 62.1,170.1 62.2,170.1 62.1,170.1 62.2,170.1 62.3,170.1 62.3,170.0 62.3,169.9 62.4,169.9 62.3,169.9 62.3,170.0 62.4,170.0 62.4,170.1 62.5,170.1 62.5,170.3 62.4,170.3 62.4,170.4 62.3,170.4 62.3,170.5 62.4,170.5 62.4,170.6 62.4,170.7 62.5,170.7 62.5,170.8 62.5,170.9 62.4,170.9 62.4,171.0 62.5,171.0 62.5,171.1 62.4,171.1 62.4,171.2 62.3,171.2 62.3,171.3 62.3,171.4 62.3,171.5 62.3,171.6 62.3,171.7 62.4,171.7 62.4,171.8 62.4,171.9 62.5,171.9 62.5,172.0 62.5,172.1 62.5,172.2 62.5,172.3 62.5,172.1 62.5,172.0 62.5,171.9 62.5,171.8 62.4,171.8 62.4,171.7 62.4,171.5 62.4,171.4 62.5,171.4 62.5,171.3 62.6,171.3 62.7,171.3 62.7,171.2 62.8,171.2 62.8,171.1 62.8,171.0 62.8,170.9 62.7,170.9 62.7,170.8 62.8,170.8 62.8,170.9 62.9,170.9 62.9,171.0 62.9,171.1 62.9,171.0 63.0,171.0 63.0,171.1 63.1,171.1 63.1,171.0 63.1,171.1 63.2,171.1 63.2,171.0 63.3,171.0 63.3,170.9 63.3,170.8 63.3,170.7 63.3,170.6 63.4,170.6 63.4,170.5 63.4,170.4 63.5,170.4 63.5,170.3 63.5,170.2 63.5,170.1 63.4,170.1 63.4,170.0 63.3,170.0 63.3,169.9 63.3,169.8 63.3,169.6 63.4,169.6 63.5,169.6 63.5,169.5 63.4,169.5 63.4,169.4 63.4,169.3 63.4,169.2 63.3,169.2 63.3,169.1 63.3,168.9 63.3,168.8 63.4,168.8 63.4,168.7 63.3,168.7 63.4,168.7 63.4,168.6 63.5,168.6 63.5,168.7 63.6,168.7 63.6,168.8 63.5,168.8 63.5,168.9 63.5,169.0 63.6,169.0 63.6,169.1 63.5,169.1 63.5,169.2 63.6,169.2 63.6,169.1 63.7,169.1 63.7,169.2 63.6,169.2 63.6,169.3 63.6,169.4 63.7,169.4 63.7,169.5 63.7,169.6 63.6,169.6 63.6,169.7 63.6,169.8 63.5,169.8 63.5,169.9 63.4,169.9 63.4,170.0 63.5,170.0 63.6,170.0 63.6,170.1 63.7,170.1 63.8,170.1 63.8,170.2 63.8,170.1 63.9,170.1 63.9,170.2 63.9,170.1 64.0,170.1 64.0,170.2 64.0,170.3 64.1,170.3 64.1,170.4 64.1,170.3 64.1,170.4 64.2,170.4 64.2,170.3 64.1,170.3 64.2,170.3 64.3,170.3 64.5,170.3 64.5,170.2 64.4,170.2 64.5,170.2 64.4,170.2 64.4,170.1 64.5,170.1 64.5,170.2 64.6,170.2 64.6,170.1 64.7,170.1 64.7,170.2 64.6,170.2 64.8,170.2 64.8,170.3 64.8,170.4 64.8,170.5 64.8,170.6 64.7,170.6 64.6,170.6 64.5,170.6 64.5,170.7 64.4,170.7 64.3,170.7 64.2,170.7 64.2,170.8 64.2,170.9 64.2,171.0 64.2,171.1 64.3,171.1 64.3,171.2 64.4,171.2 64.4,171.3 64.4,171.4 64.4,171.5 64.5,171.5 64.5,171.6 64.5,171.7 64.5,171.8 64.6,171.8 64.7,171.8 64.7,171.9 64.8,171.9 64.8,172.0 64.9,172.0 65.0,172.0 65.0,172.1 65.0,172.0 65.1,172.0 65.1,172.1 65.2,172.1 65.3,172.1 65.4,172.1 65.4,172.2 65.5,172.2 65.5,172.3 65.6,172.3 65.7,172.3 65.8,172.3 65.8,172.4 65.9,172.4 65.9,172.5 66.0,172.5 66.0,172.6 66.1,172.6 66.0,172.6 66.0,172.7 66.0,172.8 66.1,172.8 66.1,172.9 66.1,173.0 66.1,173.1 66.1,173.2 66.2,173.2 66.2,173.3 66.2,173.2 66.3,173.2 66.3,173.1 66.2,173.1 66.3,173.1 66.3,173.0 66.3,172.9 66.4,172.9 66.4,172.8 66.5,172.8 66.6,172.8 66.7,172.8 66.6,172.8 66.5,172.8 66.5,172.7 66.4,172.7 66.4,172.6 66.4,172.5 66.3,172.5 66.3,172.4 66.3,172.3 66.4,172.3 66.3,172.3 66.3,172.2 66.3,172.1 66.3,172.0 66.2,172.0 66.2,171.9 66.2,171.8 66.2,171.7 66.1,171.7 66.1,171.6 66.0,171.6 66.0,171.5 66.1,171.5 66.1,171.4 66.1,171.3 66.0,171.3 66.0,171.2 66.1,171.2 66.0,171.2 66.0,171.1 66.0,171.0 66.0,170.9 66.1,170.9 66.1,170.8 66.0,170.8 66.0,170.7 66.0,170.6 65.9,170.6 65.9,170.5 65.8,170.5 65.8,170.4 65.8,170.3 65.8,170.2 65.9,170.2 65.9,170.1 66.0,170.1 66.1,170.1 66.2,170.1 66.2,170.2 66.2,170.3 66.2,170.4 66.2,170.5 66.2,170.6 66.2,170.7 66.2,170.8 66.3,170.8 66.4,170.8 66.4,170.9 66.4,170.8 66.5,170.8 66.5,170.7 66.4,170.7 66.4,170.6 66.4,170.5 66.4,170.4 66.4,170.3 66.5,170.3 66.5,170.2 66.5,170.1 66.4,170.1 66.4,170.0 66.3,170.0 66.3,170.1 66.3,170.0 66.3,170.1 66.2,170.1 66.2,170.0 66.2,169.9 66.3,169.9 66.3,169.8 66.3,169.7 66.3,169.6 66.3,169.5 66.2,169.5 66.2,169.6 66.1,169.6 66.1,169.5 66.1,169.4 66.2,169.4 66.2,169.3 66.1,169.3 66.1,169.2 66.1,169.1 66.1,169.0 66.1,169.1 66.2,169.1 66.2,169.2 66.3,169.2 66.3,169.1 66.3,169.0 66.3,168.9 66.3,168.8 66.4,168.8 66.5,168.8 66.5,168.7 66.5,168.8 66.6,168.8 66.7,168.8 66.7,168.7 66.7,168.6 66.7,168.4 66.7,168.3 66.6,168.3 66.6,168.2 66.7,168.2 66.6,168.2 66.6,168.1 66.7,168.1 66.7,168.2 66.8,168.2 66.9,168.2 66.9,168.1 66.9,168.0 66.9,167.9 67.0,167.9 67.0,167.8 67.0,167.7 67.1,167.7 67.1,167.6 67.2,167.6 67.2,167.7 67.2,167.8 67.1,167.8 67.1,167.9 67.2,167.9 67.1,167.9 67.1,168.0 67.2,168.0 67.2,168.1 67.3,168.1 67.3,168.2 67.2,168.2 67.2,168.3 67.3,168.3 67.3,168.4 67.4,168.4 67.4,168.3 67.4,168.0 67.5,168.0 67.5,167.9 67.6,167.9 67.5,167.9 67.5,167.8 67.4,167.8 67.4,167.7 67.5,167.7 67.5,167.6 67.4,167.6 67.4,167.5 67.4,167.4 67.3,167.4 67.4,167.4 67.5,167.4 67.5,167.5 67.6,167.5 67.7,167.5 67.7,167.6 67.7,167.7 67.8,167.7 67.8,167.6 67.8,167.7 67.8,167.8 67.9,167.8 67.9,167.9 68.0,167.9 68.1,167.9 68.1,167.8 68.2,167.8 68.2,167.7 68.3,167.7 68.3,167.8 68.4,167.8 68.4,167.9 68.4,168.0 68.5,168.0 68.5,168.1 68.4,168.1 68.4,168.2 68.5,168.2 68.5,168.3 68.6,168.3 68.7,168.3 68.7,168.4 68.8,168.4 68.9,168.4 69.0,168.4 69.1,168.4 69.1,168.3 69.2,168.3 69.2,168.2 69.3,168.2 69.4,168.2 69.4,168.1 69.5,168.1 69.5,168.0 69.6,168.0 69.7,168.0 69.7,168.1 69.8,168.1 69.8,168.0 69.9,168.0 70.0,168.0 70.1,168.0 70.1,168.1 70.2,168.1 70.3,168.1 70.4,168.1 70.4,168.0 70.4,168.1 70.5,168.1 70.6,168.1 70.7,168.1 70.7,168.0 70.7,168.1 70.8,168.1 70.9,168.1 70.9,168.2 71.0,168.2 71.1,168.2 71.2,168.2 71.3,168.2 71.4,168.2 71.4,168.3 71.5,168.3 71.5,168.4 71.5,168.5 71.4,168.5 71.5,168.5 71.5,168.6 71.6,168.6 71.6,168.7 71.7,168.7 71.8,168.7 71.8,168.8 71.9,168.8 71.9,168.9 72.0,168.9 72.0,169.0 72.0,169.1 72.2,169.1 72.3,169.1 72.3,169.0 72.4,169.0 72.6,169.0 72.6,169.1 72.7,169.1 72.7,169.2 72.7,169.3 72.8,169.3 72.9,169.3 73.0,169.3 73.0,169.2 73.2,169.2 73.2,169.1 73.3,169.1 73.4,169.1 73.5,169.1 73.5,169.0 73.6,169.0 73.6,168.9 73.7,168.9 73.7,168.8 73.8,168.8 73.8,168.7 73.8,168.8 73.9,168.8 73.9,168.9 74.0,168.9 74.1,168.9 74.2,168.9 74.2,168.8 74.2,168.7 74.3,168.7 74.3,168.8 74.3,168.9 74.3,169.0 74.3,169.1 74.2,169.1 74.1,169.1 74.1,169.2 74.0,169.2 74.0,169.3 74.0,169.4 73.9,169.4 73.9,169.5 73.9,169.6 73.9,169.7 74.0,169.7 74.0,169.8 74.1,169.8 74.2,169.8 74.3,169.8 74.3,169.7 74.3,169.8 74.3,169.9 74.2,169.9 74.2,170.0 74.3,170.0 74.4,170.0 74.5,170.0 74.5,170.1 74.4,170.1 74.4,170.2 74.3,170.2 74.3,170.3 74.2,170.3 74.2,170.4 74.1,170.4 74.1,170.5 74.0,170.5 74.1,170.5 74.2,170.5 74.2,170.4 "/></g><g><polyline points="79.9,229.1 82.5,229.7 83.0,230.3 82.9,231.1 82.2,230.6 81.3,231.1 80.4,230.6 79.2,229.5 79.9,229.1 "/></g><g><polyline points="123.0,281.3 124.3,281.7 124.6,282.3 125.2,282.2 126.8,283.9 125.5,283.6 124.7,284.2 123.3,283.2 122.7,283.4 122.1,281.9 123.0,281.3 "/></g><g><polyline points="170.2,129.6 170.3,129.6 "/></g><g></g><g></g><g><polyline points="170.3,129.6 170.7,129.3 170.9,130.0 "/></g><g><polyline points="138.0,177.3 138.7,178.2 139.0,177.0 "/></g><g><polyline points="374.3,91.5 376.9,93.9 "/></g><g><polyline points="508.5,147.5 510.0,147.9 510.7,147.1 511.3,147.6 511.8,147.2 512.2,148.2 513.3,148.2 514.6,146.9 517.5,149.0 517.7,148.3 519.5,148.1 519.9,147.1 521.9,149.3 522.8,149.2 525.0,150.9 525.0,150.3 526.2,151.3 528.5,152.2 530.1,152.2 530.1,152.9 531.2,152.4 531.4,152.8 529.9,153.5 527.8,156.9 526.0,162.3 525.0,163.3 523.8,163.4 523.0,164.9 521.3,165.0 520.9,167.4 518.3,170.5 516.2,171.9 514.9,175.3 514.9,179.1 514.3,180.3 513.6,180.4 513.4,182.6 512.1,186.0 512.6,189.9 510.6,191.6 509.8,196.2 508.7,197.1 507.1,199.9 506.1,203.2 "/></g><g><polyline points="506.1,203.2 505.9,206.9 507.7,209.1 507.9,210.9 506.2,213.4 505.2,216.3 505.5,218.2 504.4,221.8 504.9,224.6 503.5,227.1 504.0,228.8 505.4,229.7 505.6,230.8 506.6,231.6 506.4,232.4 507.1,232.8 506.5,232.5 506.3,233.3 505.8,233.3 505.5,233.9 503.1,235.5 503.2,236.1 504.4,236.1 504.0,236.9 503.0,236.5 503.6,237.9 502.8,238.7 502.1,238.9 500.7,237.9 500.1,238.8 501.1,239.4 500.1,240.9 498.6,241.6 496.6,241.1 494.8,241.4 493.4,242.1 492.6,241.1 491.5,241.5 490.4,240.8 491.2,238.4 490.3,238.7 489.2,237.7 "/></g><g><polyline points="166.4,405.0 166.3,404.1 166.0,403.9 166.1,402.8 167.8,399.5 168.6,396.0 170.5,396.0 170.5,396.9 173.1,397.0 174.6,396.3 174.9,397.0 174.7,396.5 175.3,395.6 173.4,394.2 174.4,394.1 172.3,391.9 170.1,390.3 169.4,390.3 169.1,390.7 169.4,391.4 167.2,393.9 166.6,398.1 166.1,397.9 169.8,361.2 170.0,351.6 172.6,346.5 173.7,346.1 173.6,347.2 174.4,347.7 174.4,347.4 174.6,348.2 174.0,348.2 174.0,348.8 173.4,349.1 176.0,351.6 175.9,352.1 176.5,352.0 178.5,353.3 179.7,355.2 181.9,356.7 183.5,358.5 185.2,362.3 185.8,366.7 188.1,373.0 190.2,375.8 191.8,377.1 192.0,376.6 191.1,375.3 191.3,374.9 190.0,373.5 188.8,370.7 188.7,368.2 187.0,359.9 "/></g><g><polyline points="489.2,237.7 486.8,238.2 485.1,237.7 483.3,238.2 484.0,240.4 481.9,241.6 "/></g><g><polyline points="156.2,456.3 158.8,450.8 159.7,444.8 164.1,423.4 166.4,405.0 "/></g><g><polyline points="200.5,494.6 199.7,495.4 198.5,495.1 197.5,495.7 195.0,494.0 194.3,494.8 194.1,495.9 193.6,495.8 193.3,496.6 192.6,496.4 192.6,495.1 191.4,495.3 191.3,493.8 189.2,492.4 188.9,491.4 188.4,491.0 187.6,491.3 186.5,490.6 186.4,487.8 185.6,486.7 184.1,486.8 183.4,487.5 181.2,487.5 179.6,486.8 178.1,487.4 176.2,486.2 175.7,485.4 173.2,485.0 172.7,484.8 172.9,484.3 171.6,483.7 170.6,484.5 170.4,483.6 169.8,483.2 169.0,483.2 167.2,482.0 166.5,482.7 165.9,482.6 165.6,482.0 164.1,481.3 164.5,480.0 165.6,478.7 163.7,479.0 162.8,479.9 162.8,482.0 162.4,483.4 159.0,482.5 157.8,480.3 160.1,478.1 160.6,475.5 161.3,474.9 161.2,471.5 160.1,470.4 159.2,470.8 157.1,470.0 156.5,469.4 155.4,469.3 154.3,469.6 154.6,470.1 153.9,471.7 152.6,471.6 151.8,469.8 152.0,468.7 150.3,468.3 148.0,469.2 147.7,467.5 145.7,466.4 146.4,465.5 145.7,465.2 149.7,463.9 150.3,464.4 150.6,463.5 152.9,462.1 154.1,459.3 155.0,458.7 155.8,457.2 155.9,456.8 155.5,456.7 156.2,456.3 "/></g><g><polyline points="170.9,130.0 171.6,130.6 171.5,129.8 173.2,127.9 178.4,127.6 181.3,129.5 183.9,130.1 189.5,130.5 190.7,130.9 194.5,130.6 199.3,131.3 203.1,133.5 205.0,133.8 204.9,134.4 205.8,134.6 205.1,135.4 205.9,135.0 205.8,134.2 211.1,133.6 211.4,133.0 215.2,131.2 219.4,127.2 223.1,125.7 225.7,125.6 225.7,125.2 "/></g><g><polyline points="156.5,172.6 157.4,171.9 159.9,172.1 161.1,171.6 162.2,172.4 161.9,171.7 160.2,171.5 160.4,170.2 159.8,171.4 158.8,171.3 158.2,170.2 156.6,169.5 155.5,166.8 154.0,166.1 153.9,161.5 153.2,160.7 152.3,160.7 153.5,159.8 154.4,155.2 154.8,154.8 154.9,155.9 155.1,155.0 154.3,154.3 154.5,149.4 155.4,148.8 156.2,149.6 156.3,149.3 155.5,148.8 154.6,149.0 153.6,150.9 152.5,146.1 153.2,143.0 152.8,138.9 152.4,138.2 153.3,137.8 152.3,137.6 152.0,138.4 152.4,138.7 151.7,138.4 149.9,134.4 150.0,134.1 150.3,134.3 149.6,134.0 148.8,132.2 148.8,131.7 149.2,131.9 149.3,131.5 148.7,130.9 148.9,131.6 148.2,131.8 145.7,128.9 146.4,129.0 146.2,128.7 144.9,129.0 144.4,127.4 144.3,124.4 143.4,123.0 143.3,121.0 142.3,120.6 141.8,119.4 143.6,117.1 143.4,113.9 142.3,112.0 139.6,111.0 140.0,110.2 139.5,109.1 139.8,107.9 141.0,108.1 141.9,109.2 143.3,108.4 144.3,110.1 146.8,110.8 148.4,110.7 149.0,111.3 149.6,111.1 150.2,112.0 151.8,111.9 152.3,112.8 152.4,112.4 152.8,112.8 152.7,112.1 153.4,112.4 155.5,112.2 157.3,111.4 157.8,109.7 158.5,110.1 159.8,109.2 161.3,109.1 164.6,110.0 165.8,109.7 165.5,110.8 166.8,112.2 167.2,115.1 166.2,114.7 165.9,116.4 164.6,116.5 164.3,119.0 166.2,122.4 169.6,126.9 169.9,128.3 169.4,128.7 169.4,129.8 170.2,129.6 "/></g><g><polyline points="17.9,182.2 18.3,181.6 19.1,181.8 19.4,181.1 20.2,181.5 19.9,182.2 20.9,182.5 20.2,182.7 19.9,183.3 19.0,183.1 18.7,183.9 17.5,184.1 18.5,183.0 16.7,183.3 16.6,182.9 17.9,182.2 "/></g><g><polyline points="139.0,177.0 138.4,177.0 138.6,176.5 138.0,175.3 139.3,175.9 139.0,174.9 137.6,175.0 137.6,174.3 137.0,174.5 137.4,173.7 136.7,173.4 137.0,172.9 136.3,172.2 136.8,172.1 136.4,172.1 136.4,171.4 138.2,170.3 137.9,169.5 138.9,169.3 139.0,169.7 139.6,169.6 139.1,169.1 139.9,168.9 139.9,168.4 140.2,168.9 141.4,169.1 143.5,167.8 143.3,168.6 143.9,169.7 142.8,170.5 142.6,171.8 143.3,173.2 144.5,173.9 145.8,173.7 146.1,174.2 146.4,173.6 146.9,174.0 148.6,174.0 150.5,173.7 152.1,173.0 153.0,171.9 155.7,172.0 155.9,172.5 156.4,172.6 156.3,172.2 156.5,172.6 "/></g><g><polyline points="93.6,250.0 92.4,249.3 91.6,249.9 91.3,249.4 90.6,249.7 89.6,248.9 89.4,248.4 89.9,247.9 88.9,246.4 88.9,245.3 89.5,245.3 89.3,244.2 91.7,245.6 93.0,245.7 93.7,247.7 94.3,247.7 95.1,248.5 96.5,248.4 96.9,248.8 95.6,250.6 94.4,249.9 93.6,250.0 "/></g><g><polyline points="376.9,93.9 380.9,93.6 382.0,94.5 386.2,95.4 388.0,94.9 391.1,92.9 394.3,92.4 395.6,88.6 394.8,87.5 395.0,86.7 400.0,82.0 402.1,82.5 402.8,83.3 402.0,84.1 402.3,86.1 401.0,85.5 400.2,87.5 400.8,88.9 400.1,89.8 399.7,92.2 398.7,92.8 398.9,93.8 401.0,94.6 402.6,96.9 401.3,99.7 402.1,102.3 401.3,103.9 403.7,104.1 406.4,103.3 408.4,105.2 410.6,106.0 411.7,108.5 412.9,108.5 413.5,109.7 417.2,109.8 419.6,112.2 418.7,113.4 418.9,114.4 421.2,114.1 "/></g><g><polyline points="576.2,544.5 576.5,546.8 576.1,549.0 576.6,549.4 576.5,552.2 576.3,553.3 575.2,553.9 575.3,554.4 576.1,554.5 575.5,554.7 575.7,555.7 575.4,555.5 575.1,556.2 574.5,555.9 574.9,555.7 574.2,556.1 574.5,557.2 573.7,556.9 573.2,557.3 572.7,556.6 572.7,557.2 571.9,557.6 571.7,558.2 572.1,559.0 573.1,557.8 573.8,558.0 573.9,558.4 575.1,558.3 574.2,559.3 574.1,560.2 572.7,560.6 571.9,561.7 571.4,561.6 571.8,562.3 571.1,563.3 571.7,563.2 571.9,563.6 571.8,564.4 571.1,564.7 571.5,565.2 571.1,564.9 570.2,566.0 569.0,566.3 569.6,567.0 569.3,568.1 571.0,567.0 569.3,570.1 567.8,570.1 567.4,569.2 566.5,569.2 566.9,568.9 565.8,568.7 566.0,568.4 564.5,568.7 564.5,567.7 565.6,566.1 565.0,566.3 564.5,565.8 563.7,566.1 563.3,565.6 563.9,564.4 562.4,565.5 562.3,564.7 561.8,565.2 561.6,564.2 560.9,564.5 560.6,563.8 560.1,564.6 559.3,563.6 558.5,563.8 558.2,563.4 557.8,563.8 557.7,562.9 556.3,562.9 556.6,562.4 556.1,561.9 554.8,562.3 555.2,560.8 554.9,561.1 554.9,560.8 553.9,560.9 553.8,560.4 552.9,560.4 552.5,559.9 553.3,559.3 552.1,558.5 552.8,557.7 552.6,557.1 553.3,555.9 553.9,556.5 555.1,555.5 555.9,555.6 556.3,554.3 557.7,553.6 554.8,553.0 553.6,552.1 552.4,552.9 552.6,552.4 552.0,552.2 552.5,551.2 552.2,550.7 549.6,551.7 549.5,550.9 547.7,550.9 547.8,550.3 549.1,550.2 550.5,548.7 549.7,548.0 549.7,547.6 550.7,547.9 551.1,547.1 552.1,547.0 552.5,546.0 551.2,545.3 552.7,545.0 552.8,544.2 552.3,543.3 553.3,542.7 552.5,541.2 551.8,541.4 551.1,540.7 550.9,541.7 550.0,542.1 547.0,542.0 545.7,542.8 546.3,540.7 545.8,540.5 545.1,539.2 546.0,538.8 547.3,538.9 548.4,537.9 547.7,537.8 547.6,536.8 551.2,534.7 550.7,533.9 549.9,534.0 550.1,533.6 549.7,532.8 549.4,532.9 549.7,532.2 549.2,531.4 547.7,532.1 547.4,531.1 546.3,531.0 546.0,530.4 544.6,530.7 545.1,529.6 543.8,529.7 545.2,528.5 543.9,528.4 544.9,527.9 544.6,527.5 544.7,526.5 544.1,526.6 544.6,526.2 544.2,525.9 544.4,525.4 543.6,525.5 543.1,525.0 543.9,525.0 546.1,524.0 546.8,524.1 549.0,523.3 547.8,521.6 547.0,521.7 546.4,521.0 545.5,521.2 545.5,520.5 546.5,520.0 546.0,519.1 545.1,518.9 544.4,519.7 543.6,519.9 543.7,518.3 543.1,518.3 542.9,517.9 543.3,518.0 543.3,517.4 544.0,518.0 544.5,517.6 "/></g><g><polyline points="544.5,517.6 544.8,517.2 545.8,517.2 545.5,516.5 545.8,516.2 545.5,516.0 545.7,515.5 546.3,515.3 547.3,515.8 547.8,515.3 547.9,514.7 547.3,514.2 548.0,514.1 547.9,513.4 548.5,512.8 548.4,512.5 547.4,512.6 547.3,512.3 547.9,511.6 548.1,510.3 550.0,509.9 549.7,509.3 550.2,508.3 550.0,507.5 549.5,507.5 550.2,506.8 550.4,508.0 551.4,507.5 551.6,508.2 552.5,508.2 553.3,507.4 553.1,506.9 553.5,506.2 553.1,505.8 554.3,505.9 555.1,505.3 555.8,505.6 556.2,504.4 557.5,504.4 558.3,503.5 558.8,504.2 560.9,503.7 561.4,503.9 561.9,503.2 563.1,502.8 563.1,500.9 563.5,501.1 564.1,499.9 564.6,499.9 565.6,499.0 567.3,498.8 568.5,499.4 569.4,498.9 569.6,499.8 570.7,499.7 570.6,500.5 571.2,500.7 571.8,502.0 572.4,502.0 573.2,500.9 573.2,499.9 574.1,498.9 574.0,495.6 572.7,493.7 573.9,492.0 573.2,490.3 574.7,488.9 574.3,488.6 574.6,487.8 574.1,487.2 573.9,485.2 574.6,484.5 577.3,484.4 578.7,485.6 578.2,487.0 578.9,488.3 579.0,491.5 579.8,495.1 578.8,497.5 578.0,503.0 580.5,506.5 581.3,508.8 581.2,511.7 581.7,515.1 581.3,518.0 582.4,522.6 582.1,525.2 582.4,527.1 582.0,531.9 577.0,539.0 576.7,540.5 576.7,539.7 576.2,539.8 576.8,541.0 576.2,544.5 "/></g><g><polyline points="481.9,241.6 481.6,243.1 480.6,243.1 480.6,244.2 479.5,244.9 479.5,246.0 485.2,245.0 486.2,246.6 486.0,247.3 484.2,247.8 484.2,249.0 483.8,249.5 481.7,250.0 482.3,252.4 479.3,254.9 479.1,255.7 478.3,256.3 478.1,257.3 476.4,258.8 473.9,260.1 474.1,260.9 472.6,261.6 473.1,263.3 470.8,264.8 469.7,266.4 470.1,266.4 464.7,267.9 462.9,270.2 462.6,271.1 463.6,272.1 463.8,272.9 463.6,274.5 462.4,277.3 463.3,278.8 462.5,279.7 461.0,280.4 460.3,281.4 459.7,281.4 459.7,281.9 456.7,283.5 450.2,290.0 450.1,290.7 "/></g><g><polyline points="225.7,125.2 222.6,124.1 220.7,124.1 220.2,123.5 219.0,123.3 218.3,122.7 220.2,123.4 221.2,123.2 221.0,122.9 219.4,123.0 217.1,121.0 217.3,119.5 220.4,112.8 220.3,111.7 219.3,111.3 219.0,111.8 219.2,111.3 220.5,111.8 220.8,110.3 222.4,108.6 227.4,106.8 228.6,105.4 231.1,104.3 236.7,100.4 241.2,99.2 244.8,99.1 250.3,97.2 251.4,96.4 253.7,96.6 255.6,96.0 256.2,95.4 257.0,95.4 260.9,93.2 260.9,92.7 261.8,92.4 265.6,88.8 269.0,86.3 "/></g><g><polyline points="338.6,474.1 338.0,474.7 338.0,474.3 337.4,474.0 337.8,475.1 335.2,478.1 334.8,478.9 335.1,479.1 334.5,479.3 333.3,481.8 333.9,480.4 333.2,481.6 333.1,480.9 331.7,480.5 331.9,480.0 331.3,480.2 331.2,479.5 330.8,481.4 331.0,480.3 330.4,481.4 331.0,479.3 330.2,478.8 330.5,477.5 329.9,477.4 329.8,476.9 329.5,477.1 329.8,478.4 329.4,479.1 328.4,479.3 328.6,479.7 329.2,479.6 329.5,480.3 328.8,480.6 328.6,480.2 329.0,480.4 329.1,480.0 328.5,480.1 328.2,481.1 329.1,481.1 329.6,482.3 330.1,481.8 330.2,482.5 330.8,482.8 330.3,483.2 330.6,483.4 331.3,483.5 331.6,483.2 330.9,481.6 331.1,481.3 332.3,482.3 332.7,481.8 333.0,482.0 332.3,483.5 332.7,484.3 332.0,484.6 331.2,486.9 331.6,486.6 331.3,488.4 332.3,489.2 332.0,491.6 331.6,491.6 331.1,492.6 331.8,490.1 331.5,489.9 331.3,490.4 330.6,490.5 330.4,488.7 329.8,491.0 330.0,491.6 328.2,493.2 "/></g><g><polyline points="371.5,455.4 368.7,455.6 364.8,457.5 362.0,459.8 360.7,461.5 358.7,462.8 358.8,462.5 357.9,462.9 357.5,463.8 355.7,464.0 354.4,464.8 351.7,467.6 349.5,470.8 349.6,469.9 349.4,470.5 348.5,470.5 347.0,470.2 346.4,469.6 344.1,470.0 343.3,470.6 342.9,470.0 343.1,470.7 338.6,474.1 "/></g><g><polyline points="426.2,120.8 427.2,120.7 428.5,119.7 430.3,120.9 430.7,119.6 431.9,118.4 433.8,119.0 435.6,118.8 436.4,117.8 438.7,118.3 438.5,119.1 439.0,119.0 440.3,121.1 442.6,121.6 "/></g><g><polyline points="442.6,121.6 444.0,122.1 444.9,124.4 445.4,124.0 446.9,124.5 447.8,123.0 448.6,123.4 449.1,124.2 450.2,123.4 450.4,122.3 451.0,122.4 451.3,121.7 454.7,120.9 455.7,121.7 456.1,121.4 456.4,122.3 458.5,123.6 460.9,123.3 461.5,122.5 464.2,123.9 466.0,125.1 467.1,127.9 468.0,128.0 468.7,129.4 467.3,129.8 467.6,130.9 468.8,132.6 470.6,133.7 470.7,135.3 471.3,136.0 471.5,137.5 472.2,138.0 473.3,138.1 473.0,139.4 473.9,140.7 477.5,141.0 477.9,140.6 477.9,138.2 478.2,137.8 478.8,137.5 480.2,138.3 481.2,137.4 482.1,138.2 484.0,138.8 486.1,140.4 486.8,143.0 488.6,142.2 490.0,143.4 491.3,142.9 491.8,143.7 493.4,142.7 494.3,143.3 494.8,143.1 495.2,143.7 496.7,141.8 498.0,142.0 498.0,140.7 500.3,139.9 501.7,140.8 503.0,140.6 503.3,141.8 502.8,142.6 503.2,142.6 503.3,143.2 503.9,143.6 504.8,145.3 507.5,146.0 508.2,146.4 508.5,147.5 "/></g><g><polyline points="283.4,507.1 281.3,506.6 281.5,505.3 279.7,504.8 278.6,505.1 278.1,504.7 276.3,504.8 275.2,503.6 274.2,503.2 272.5,503.7 271.8,503.3 271.4,505.4 270.2,506.0 269.9,506.6 268.9,503.1 267.9,502.4 268.0,501.4 266.5,500.5 266.8,499.6 265.8,499.4 262.7,499.9 261.8,499.2 259.6,500.3 258.1,499.2 258.1,498.1 256.0,496.1 254.7,496.5 253.3,496.0 252.4,496.2 251.5,495.2 250.2,496.0 247.5,494.1 245.4,493.3 "/></g><g><polyline points="245.4,493.3 244.5,493.6 241.7,492.2 240.6,492.6 239.9,493.3 240.3,495.2 239.3,496.4 240.2,496.8 239.1,497.8 240.0,498.1 240.7,499.5 240.5,501.2 238.2,500.9 237.5,500.4 236.7,501.1 234.7,500.6 234.4,501.2 232.8,500.7 232.5,501.0 "/></g><g><polyline points="232.5,501.0 229.7,501.0 229.6,500.1 228.4,499.5 227.0,500.4 226.8,501.6 225.9,502.1 224.6,501.1 224.5,499.9 223.2,499.8 221.3,498.8 220.7,499.5 218.8,500.2 217.7,499.9 216.4,501.0 215.0,500.6 214.5,501.5 213.9,501.5 212.1,501.0 211.9,499.7 210.4,499.6 209.8,498.0 208.4,496.5 208.3,495.6 207.7,496.2 207.2,496.1 205.4,495.1 205.2,494.2 204.8,494.5 203.9,493.5 202.5,493.0 202.0,493.7 201.2,493.5 200.5,494.6 "/></g><g><polyline points="295.3,30.1 296.7,29.8 297.2,28.8 297.8,28.6 297.2,28.8 297.7,29.0 297.3,29.6 298.0,29.5 297.7,29.8 298.5,30.8 298.4,29.9 298.8,29.5 298.2,29.5 298.9,29.2 298.9,28.6 297.7,28.2 298.9,28.3 299.4,28.9 301.4,28.3 301.8,28.9 301.9,28.3 304.1,27.7 304.9,28.0 304.6,28.3 305.5,28.2 305.7,28.7 305.1,27.7 307.5,27.6 312.9,25.2 313.8,30.7 314.9,31.8 315.7,33.9 314.5,35.8 315.2,39.0 314.6,39.9 315.4,40.9 315.6,42.3 317.3,41.9 319.1,42.4 321.7,47.5 323.4,47.9 325.9,49.3 326.8,48.6 327.8,46.3 328.9,46.2 331.7,44.8 335.6,44.5 337.8,48.3 339.1,48.8 339.5,49.6 339.8,50.7 339.2,51.9 340.5,55.6 340.8,59.8 344.1,62.0 346.5,61.5 347.8,60.2 349.1,59.8 349.5,60.6 349.0,62.5 351.5,61.8 352.0,62.3 353.2,62.1 355.1,64.7 355.8,68.0 355.2,69.9 356.2,72.9 357.0,73.5 357.2,72.9 357.8,73.1 358.1,71.5 358.7,71.0 362.2,70.7 365.0,72.2 369.7,70.3 371.5,72.7 373.1,73.6 373.8,76.0 374.7,75.9 374.9,74.3 376.6,75.3 376.7,76.5 374.5,79.0 374.4,81.8 373.4,83.8 375.9,83.6 377.1,87.3 375.9,88.5 374.4,89.1 373.8,90.6 374.3,91.5 "/></g><g><polyline points="276.2,69.2 274.3,67.5 275.6,58.9 277.0,60.2 275.2,57.1 275.2,52.8 274.5,49.3 275.0,48.4 274.6,47.7 274.8,47.9 275.1,47.5 275.1,48.2 275.3,47.4 275.8,47.5 275.8,46.1 276.3,45.1 276.3,43.3 275.2,39.9 275.3,38.8 277.6,38.4 281.1,34.6 285.5,32.8 285.7,33.2 285.5,32.8 286.4,32.7 285.3,32.5 287.4,32.1 289.1,30.9 291.5,31.0 295.3,30.1 "/></g><g><polyline points="138.2,264.8 137.4,263.0 135.4,261.0 133.4,260.1 131.7,260.0 127.9,258.8 129.3,257.3 130.6,257.5 131.1,256.9 131.4,254.5 130.5,253.1 130.9,252.8 131.0,251.1 135.4,250.3 136.0,249.8 136.0,249.2 132.9,249.1 131.0,250.0 130.6,249.5 130.6,250.2 129.8,251.3 129.1,251.2 128.8,251.9 128.0,251.9 127.2,252.9 126.1,253.2 124.4,251.9 123.9,251.0 122.9,250.5 121.4,250.7 121.5,251.7 120.9,251.8 116.5,249.9 116.6,249.3 117.4,249.2 118.2,250.2 120.1,250.2 120.5,250.7 121.0,250.0 122.2,249.9 121.4,249.5 120.5,249.7 120.7,249.0 120.6,249.4 119.2,247.7 118.8,248.3 118.9,247.5 118.4,247.1 118.9,248.5 117.8,249.2 118.1,248.4 118.0,246.9 117.3,245.8 116.0,245.1 119.5,242.4 119.8,243.0 120.9,242.9 119.9,242.3 120.4,241.5 119.7,240.8 "/></g><g><polyline points="129.7,268.9 128.9,268.4 127.4,268.7 125.9,266.9 126.4,265.7 125.7,264.9 127.8,264.7 129.0,265.5 129.1,266.9 128.5,266.6 128.4,267.5 131.5,269.2 131.9,270.0 131.8,272.4 129.7,268.9 "/></g><g><polyline points="269.0,86.3 270.4,85.0 271.5,81.3 273.1,79.0 274.9,78.4 274.8,78.8 275.4,79.5 275.9,79.4 278.2,80.7 278.1,80.3 278.6,80.2 277.5,80.2 277.3,80.0 277.7,79.8 276.9,79.7 276.6,79.1 276.9,79.4 277.1,78.9 278.3,79.0 277.6,79.0 277.8,78.5 276.9,78.7 275.8,76.5 275.3,76.5 275.7,76.2 274.1,76.1 273.7,75.0 274.2,69.7 276.7,69.3 276.2,69.2 "/></g><g><polyline points="168.8,329.0 168.0,330.8 168.5,332.0 167.0,333.5 165.7,329.1 161.2,325.4 160.7,323.7 161.1,322.5 160.1,319.7 161.9,320.3 161.8,320.9 163.1,321.6 163.9,322.8 166.9,323.3 167.1,324.4 166.7,324.9 167.3,325.7 167.1,326.6 168.0,327.9 168.6,327.7 168.3,328.2 168.8,329.0 "/></g><g><polyline points="160.9,311.1 162.0,310.8 163.7,312.0 164.7,312.0 165.3,313.4 166.2,313.4 165.3,314.5 163.5,314.5 158.2,311.2 156.7,311.7 155.4,311.3 154.4,308.8 155.3,308.9 156.3,308.0 156.8,308.0 157.8,309.5 157.3,309.8 156.8,309.4 157.1,309.9 156.6,310.0 156.3,309.8 156.5,310.6 156.9,310.5 157.3,311.1 157.4,310.6 158.5,310.0 157.9,309.6 160.1,309.6 159.9,310.3 159.0,310.6 160.9,311.1 "/></g><g><polyline points="482.2,396.6 482.9,397.9 482.4,398.1 481.6,400.6 480.8,401.5 479.6,401.8 478.8,403.0 479.6,405.5 480.7,406.3 482.1,408.6 480.3,409.1 480.0,412.0 "/></g><g><polyline points="480.0,412.0 481.3,412.6 481.5,413.7 482.6,414.8 482.7,415.6 484.0,416.6 484.0,418.9 484.8,419.7 486.7,419.3 489.4,420.9 491.4,421.1 491.6,421.9 493.2,422.5 493.5,423.4 494.7,424.2 495.4,423.7 497.2,423.8 497.8,425.5 498.9,425.1 500.5,425.5 500.7,424.9 502.0,424.9 503.4,423.9 504.1,424.0 505.8,423.3 507.5,423.4 508.3,422.2 510.2,422.2 509.6,424.7 511.4,427.0 510.9,429.3 509.5,430.0 509.2,430.8 509.6,431.7 508.9,432.7 505.7,434.7 505.3,436.6 502.8,438.5 504.1,443.2 502.7,444.2 502.6,445.1 501.6,444.5 501.0,445.1 500.2,444.4 499.5,444.6 498.3,446.8 497.7,446.6 496.6,447.6 497.3,448.4 496.8,448.5 496.7,449.1 496.3,449.0 496.4,447.9 495.9,447.4 495.6,448.6 494.8,448.0 493.1,448.4 492.1,450.6 491.6,450.7 491.3,450.0 489.9,450.2 488.7,452.9 488.8,453.8 489.0,453.6 488.7,454.5 489.3,454.7 489.1,455.4 489.4,455.6 489.2,456.0 488.4,456.1 488.5,455.3 487.6,454.6 486.5,455.1 485.3,456.6 484.8,455.8 482.5,456.1 481.5,457.7 482.2,458.6 481.8,459.3 481.2,459.3 480.7,461.2 "/></g><g><polyline points="431.1,475.1 430.5,475.4 430.2,476.5 428.9,475.8 427.6,473.7 426.1,474.6 424.4,473.7 424.3,474.3 422.4,473.7 421.0,474.0 420.0,473.7 420.3,472.7 421.6,471.3 420.2,470.1 420.5,469.2 420.9,469.2 420.8,467.8 419.5,466.7 420.1,466.9 419.4,466.0 418.2,465.9 416.8,467.1 415.6,467.6 410.3,467.3 408.9,467.8 408.9,467.3 408.5,467.6 407.6,466.8 407.9,466.2 406.3,464.1 406.9,463.9 406.8,463.6 406.3,464.0 405.9,463.7 405.7,462.3 404.0,462.0 403.1,463.1 402.7,463.0 402.8,463.5 402.5,463.0 403.3,462.1 402.4,462.7 401.5,460.9 401.1,461.0 402.2,463.2 401.7,463.5 400.3,462.2 400.1,462.4 401.5,463.6 401.1,463.9 400.6,463.5 400.7,464.1 402.0,464.3 400.5,465.1 401.2,465.0 402.4,466.1 402.4,465.6 402.7,465.9 403.5,465.0 402.5,466.1 401.6,466.1 402.1,466.4 401.4,467.2 400.9,466.8 400.4,467.1 400.6,467.5 398.5,466.5 393.8,466.6 390.7,465.7 389.8,464.5 391.3,463.5 391.1,462.5 390.6,461.8 388.9,461.0 386.1,460.7 383.8,461.2 375.9,460.3 "/></g><g><polyline points="469.7,371.6 471.2,374.2 471.8,376.4 473.8,376.3 474.2,376.7 474.2,378.1 474.7,379.1 474.7,382.3 478.8,385.5 480.5,386.0 481.9,385.0 482.8,385.6 484.3,385.9 483.9,386.4 484.7,387.2 484.2,388.8 484.9,389.9 484.8,391.3 486.3,393.2 486.8,394.7 485.2,394.4 483.9,394.6 482.8,395.4 482.2,396.6 "/></g><g><polyline points="480.7,461.2 479.2,462.4 478.5,461.9 478.2,463.2 477.3,462.8 475.7,463.3 474.7,462.4 474.0,462.8 473.5,463.9 473.3,463.6 473.6,464.3 472.8,465.5 473.0,466.6 471.5,466.9 471.0,467.8 471.2,468.4 469.8,468.7 467.8,470.2 468.2,471.1 469.3,471.0 469.9,470.4 471.0,470.9 471.5,470.2 472.2,470.9 472.0,471.6 470.9,472.3 471.0,473.7 471.6,474.4 470.1,475.0 470.3,476.1 469.8,475.8 469.3,476.6 468.5,475.3 466.9,474.9 466.1,475.4 466.0,476.3 465.4,476.2 464.4,477.0 463.2,476.6 462.4,477.4 461.9,476.9 460.9,477.0 459.5,477.8 459.2,479.2 459.5,479.5 459.4,480.4 457.8,480.1 457.6,479.3 456.5,479.3 456.0,478.5 454.6,479.0 453.3,478.7 452.0,479.6 451.4,480.8 451.3,483.0 452.1,483.2 451.5,483.5 450.6,483.1 449.0,483.4 449.0,482.8 450.0,482.9 450.4,482.5 449.9,480.5 448.5,480.3 446.2,480.8 446.3,479.9 445.6,479.4 443.1,479.2 442.5,479.5 442.9,478.7 442.4,478.8 442.5,478.4 442.1,478.9 442.0,478.4 441.8,479.0 441.0,478.8 441.1,479.5 442.0,479.6 441.4,480.6 443.1,480.5 443.5,480.9 443.4,481.4 441.9,481.5 441.1,480.8 440.5,481.3 440.0,482.5 438.8,482.3 437.5,481.2 437.9,480.7 438.1,479.0 436.4,478.8 436.9,478.1 436.8,477.7 435.8,478.0 434.8,477.8 434.5,477.1 433.6,477.3 433.1,476.7 433.7,476.0 433.4,475.5 431.1,475.1 "/></g><g><polyline points="448.1,298.8 448.0,299.2 449.2,299.6 452.0,301.9 450.2,304.7 450.6,304.9 449.8,306.5 450.2,308.4 449.4,309.2 449.1,308.8 446.2,309.6 444.6,311.1 444.5,311.7 445.3,312.1 443.8,315.2 444.6,315.0 444.8,314.5 "/></g><g><polyline points="444.8,314.5 446.3,314.5 446.8,314.9 448.1,314.0 449.0,313.9 449.2,314.5 450.5,314.6 452.8,313.1 454.8,310.8 456.3,310.1 457.4,308.0 456.8,307.5 455.8,308.2 454.8,307.4 455.0,306.2 454.0,305.0 455.2,302.9 458.3,299.9 462.3,299.1 465.3,297.0 471.2,297.0 477.0,298.5 477.2,299.2 476.7,300.2 476.6,301.7 475.3,302.7 478.7,306.4 478.4,308.2 477.7,308.6 476.8,310.6 476.9,312.4 476.0,313.5 476.1,314.5 477.0,315.1 479.2,315.0 480.1,315.4 480.2,317.4 479.6,319.2 480.2,319.6 481.5,318.7 483.4,322.0 484.3,322.6 484.7,323.4 484.2,323.9 485.6,324.8 485.5,326.2 484.4,327.7 484.1,329.4 480.9,330.8 479.1,332.2 477.0,332.1 476.7,334.9 "/></g><g><polyline points="476.7,334.9 477.1,337.9 478.8,340.0 480.3,340.3 481.0,341.7 484.3,341.9 484.3,342.4 483.3,343.4 483.7,347.8 484.3,348.5 483.9,348.8 484.1,349.5 485.9,350.1 486.1,351.3 487.4,351.5 488.5,353.6 491.0,355.4 490.2,356.6 489.9,357.7 489.2,358.0 489.0,358.8 488.2,359.4 489.0,361.8 488.8,363.5 486.9,365.4 485.8,365.1 483.0,366.2 482.1,367.9 480.1,368.6 479.9,369.9 478.4,370.2 477.1,369.4 475.1,369.1 474.1,370.0 472.0,370.0 471.3,370.8 469.7,371.6 "/></g><g><polyline points="131.6,173.6 132.0,173.2 132.7,174.1 131.7,172.4 132.8,172.3 133.2,171.6 133.2,172.2 133.9,172.4 134.5,172.0 135.7,172.1 135.4,172.9 136.4,173.0 136.4,174.1 136.9,174.1 136.6,174.5 137.8,175.7 137.1,176.2 138.0,177.3 "/></g><g><polyline points="138.0,177.3 137.2,178.7 136.0,178.7 135.9,177.4 131.6,173.6 "/></g><g><polyline points="450.1,290.7 451.3,292.4 449.8,293.9 449.2,295.5 448.3,296.4 448.8,297.7 448.1,298.8 "/></g><g><polyline points="375.9,460.3 373.4,459.1 372.8,458.0 373.8,456.7 373.0,455.8 371.5,455.4 "/></g><g><polyline points="421.2,114.1 423.2,115.4 425.0,121.5 426.2,120.8 "/></g><g><polyline points="74.2,170.4 74.3,170.3 74.5,170.3 74.6,169.6 74.7,169.6 75.1,169.3 75.1,169.5 75.4,169.5 75.5,170.3 76.0,170.4 76.5,170.2 76.5,170.3 77.2,169.7 77.2,169.4 76.5,169.1 76.7,168.7 76.5,168.2 76.6,168.1 76.5,167.7 76.7,167.3 76.4,167.2 76.4,167.0 76.7,167.0 76.8,167.2 77.2,167.1 77.3,166.7 77.5,166.9 78.3,166.9 78.3,166.7 78.5,166.7 78.6,166.6 77.8,166.6 77.9,165.9 77.4,165.2 77.0,165.1 76.6,165.3 76.5,165.1 76.7,165.0 76.8,164.8 76.6,164.6 76.5,164.7 76.4,164.4 76.6,164.4 76.5,164.1 76.5,163.9 76.6,164.0 76.8,163.7 76.7,163.4 76.5,163.4 76.7,163.2 76.9,163.4 77.1,163.3 76.8,163.0 76.7,163.1 76.3,162.6 76.5,162.6 76.3,162.3 76.6,162.4 76.7,162.3 76.9,162.5 77.1,162.3 77.0,162.2 77.3,162.2 77.4,162.5 77.3,162.9 77.5,162.8 77.6,163.0 77.8,163.0 78.2,162.7 78.1,162.5 78.4,162.4 78.3,162.2 77.9,162.2 77.7,162.0 77.9,162.0 77.9,161.8 78.2,161.8 78.2,161.4 78.0,161.4 78.4,161.2 78.6,161.4 78.9,161.2 78.8,161.0 78.8,160.9 79.0,160.9 79.3,160.7 79.0,160.4 79.2,160.4 79.4,160.7 79.6,160.5 79.6,160.4 80.0,160.4 79.9,160.6 79.4,160.7 79.5,160.8 79.4,161.0 79.6,161.3 79.8,161.2 79.7,161.0 79.9,160.9 80.2,161.2 80.4,161.2 80.1,160.9 80.3,160.8 80.3,160.6 80.5,160.5 80.7,160.5 80.8,160.9 81.1,161.4 81.4,161.5 81.3,161.7 81.7,161.8 81.9,161.6 82.5,161.6 82.5,161.4 82.7,161.6 82.6,161.8 82.2,162.1 82.3,162.3 82.0,162.6 82.1,162.8 82.3,162.7 82.7,162.8 84.0,162.6 84.1,162.4 84.1,162.0 84.0,162.0 84.1,161.8 84.3,161.9 85.0,161.6 84.9,161.5 85.1,161.4 85.3,161.6 85.5,161.4 85.4,161.3 85.9,161.1 86.0,160.9 86.0,161.0 86.3,160.9 86.4,160.6 86.8,160.5 87.2,160.5 87.3,160.7 87.4,160.6 87.7,160.9 87.8,160.7 88.0,160.6 88.0,160.3 88.1,160.4 88.1,160.0 87.8,159.9 87.8,159.7 87.7,159.8 87.8,160.0 87.8,160.2 87.6,160.1 87.6,159.6 87.7,159.5 87.8,159.7 87.9,159.6 87.9,159.9 88.2,159.9 88.4,159.8 88.4,159.9 88.6,159.8 88.4,160.1 88.7,160.7 88.8,160.8 89.1,160.4 89.1,159.9 89.5,159.6 89.5,159.4 89.9,159.2 90.1,158.9 89.9,158.9 90.0,158.6 90.3,158.7 90.5,158.5 90.5,158.8 90.7,158.7 91.1,160.0 90.9,160.0 90.9,160.3 90.7,160.6 91.1,160.4 91.1,160.6 91.3,160.5 91.2,161.2 91.5,161.1 91.7,160.5 92.0,160.2 92.0,160.1 92.2,160.0 92.2,160.1 92.3,160.0 92.4,160.1 92.6,159.6 92.9,159.7 93.3,159.6 93.6,159.3 93.9,159.3 93.9,159.0 94.2,158.9 95.0,158.9 96.3,157.8 96.3,158.0 95.8,158.4 95.9,158.5 95.7,158.5 95.4,158.7 95.7,158.6 95.9,158.9 96.2,158.8 96.0,159.1 96.1,159.3 96.1,159.5 96.0,159.3 95.8,159.2 95.7,159.4 95.9,159.4 96.0,159.7 95.8,159.7 95.9,159.9 95.6,160.4 95.7,160.6 95.3,160.8 95.7,160.8 95.7,160.9 96.0,160.6 96.1,160.7 95.9,160.9 96.3,160.7 96.3,160.9 95.8,161.2 95.9,161.5 95.7,161.8 95.8,162.0 96.2,161.5 96.5,161.3 97.0,161.3 96.9,161.8 98.2,161.4 98.7,161.5 98.8,161.7 98.4,162.0 98.7,162.4 98.9,162.4 98.9,162.8 98.3,162.9 98.1,163.3 97.5,163.4 97.4,163.6 98.7,163.8 98.7,163.9 98.0,164.0 98.1,164.3 98.4,164.3 98.6,164.7 98.8,164.5 98.9,164.7 99.8,165.0 100.5,164.9 100.9,164.4 101.0,164.6 100.9,164.7 101.3,165.2 101.6,165.2 101.8,165.4 101.4,165.8 101.4,166.2 101.6,166.3 101.5,166.8 101.1,167.0 101.3,167.4 101.7,167.4 101.7,167.6 102.0,168.2 102.8,168.6 103.0,168.6 103.1,168.4 103.6,169.2 103.4,169.5 103.5,169.5 103.6,170.0 104.1,170.0 104.2,170.2 104.4,170.0 104.6,170.1 104.7,170.5 105.2,170.7 105.2,170.9 105.4,171.2 105.7,171.1 105.7,171.5 106.0,171.5 106.0,171.7 105.7,171.7 105.9,172.0 105.8,172.1 106.0,172.6 105.9,172.9 106.3,173.5 106.0,174.2 106.1,174.3 105.8,174.5 106.0,174.8 106.5,174.8 106.9,175.2 107.4,175.2 107.6,175.4 107.8,176.1 108.4,176.5 109.2,176.7 109.4,176.6 109.4,176.8 110.1,177.0 110.1,177.2 109.7,177.5 110.0,177.9 109.7,178.4 110.1,178.3 110.2,178.5 110.0,178.6 110.0,178.9 110.8,179.8 111.0,179.9 111.1,180.2 111.4,179.8 111.5,179.5 111.2,178.4 111.8,178.1 112.2,178.5 112.2,178.8 112.9,178.9 113.2,178.7 113.1,178.6 113.2,178.1 114.4,177.0 114.4,176.8 114.7,176.7 115.6,175.6 115.6,175.3 115.7,175.4 116.3,174.7 116.2,174.6 116.2,174.4 116.8,174.6 117.3,174.5 118.5,173.9 118.7,173.6 119.0,173.4 119.4,173.0 119.2,172.6 119.5,172.6 119.5,172.4 119.1,172.5 118.7,171.9 118.7,171.7 118.9,171.6 119.0,171.8 119.2,171.8 119.5,171.5 119.7,171.6 120.1,171.6 120.7,171.3 120.9,171.5 121.5,171.6 121.3,171.8 121.5,172.0 122.3,171.9 122.5,171.4 123.0,171.3 123.1,171.1 123.7,171.2 124.2,170.6 124.3,170.7 124.3,170.5 124.8,170.2 125.0,169.9 124.9,169.6 125.1,169.6 125.3,169.2 125.6,169.8 125.5,169.9 125.6,170.3 126.0,170.4 126.6,170.4 126.5,170.8 126.3,170.8 126.1,171.5 125.7,171.8 125.7,172.1 125.5,172.6 125.0,172.9 124.8,173.2 125.2,173.4 125.3,173.7 125.5,173.8 126.0,172.9 126.3,172.9 126.4,172.5 127.0,172.3 127.0,172.0 127.3,172.0 127.5,171.8 127.7,171.9 128.0,171.7 128.2,171.8 128.1,172.1 128.0,172.1 127.7,172.3 127.9,172.8 128.2,173.0 128.3,172.9 128.4,173.1 128.2,173.2 128.1,173.6 128.8,173.8 129.0,174.3 128.9,174.7 129.2,174.8 129.5,175.1 129.5,175.9 129.3,176.0 129.5,176.0 129.6,175.6 129.8,175.5 129.8,175.3 130.1,174.9 130.0,174.6 130.1,174.2 130.0,173.9 130.0,173.8 130.4,174.1 130.5,174.3 130.5,175.0 130.4,175.2 130.6,175.7 130.9,175.7 131.2,175.1 131.1,175.0 131.2,174.8 131.0,174.9 130.9,174.6 131.0,174.6 131.2,174.0 131.5,173.9 131.6,173.7 131.6,173.6 "/></g><g><polyline points="119.7,240.8 119.5,240.8 119.4,241.1 119.2,241.1 119.1,241.3 118.5,240.8 118.5,240.6 118.2,240.3 118.5,240.2 118.5,239.9 118.7,239.9 118.7,239.6 118.2,238.6 118.3,238.5 118.2,238.4 118.3,238.2 119.0,238.2 119.5,238.7 120.1,238.5 120.3,238.3 120.3,237.9 120.0,237.6 119.5,237.3 118.7,237.0 118.3,237.2 118.0,236.9 118.2,236.9 118.2,236.7 117.7,236.4 117.4,236.6 116.7,236.6 116.6,236.9 116.3,237.1 116.4,237.3 115.9,237.1 115.1,236.9 114.3,237.0 114.1,237.4 114.2,237.5 114.0,237.5 113.7,237.7 113.4,237.6 113.2,237.8 113.1,237.6 113.3,237.4 113.3,237.5 113.5,237.1 113.9,237.1 113.9,237.3 114.1,236.9 114.0,236.7 114.1,236.3 114.4,236.4 115.0,236.0 115.4,235.3 115.1,235.5 115.1,235.7 114.3,236.2 114.2,236.0 114.0,236.1 113.9,235.8 113.7,236.2 113.4,236.2 113.1,235.9 112.5,236.1 112.6,236.3 112.8,236.2 113.6,236.4 113.6,236.8 113.4,237.0 112.8,237.1 112.7,236.9 112.1,237.0 112.2,236.6 111.7,236.6 111.9,236.7 112.0,236.7 111.8,237.2 112.0,237.4 111.3,238.2 111.4,238.3 111.6,238.2 111.6,238.4 111.3,238.5 111.3,238.3 111.1,238.0 109.8,237.5 109.5,237.5 109.5,237.4 109.4,237.6 109.2,237.6 109.1,238.0 108.4,238.1 108.1,238.1 107.5,238.2 107.3,238.4 107.3,238.6 107.1,238.6 107.1,238.7 106.9,238.8 106.7,238.6 106.2,238.8 105.6,238.4 105.4,238.4 104.8,238.0 104.9,237.2 104.8,236.9 104.5,236.9 104.4,236.5 103.9,236.0 103.3,235.7 103.0,235.8 103.0,236.0 102.8,236.0 102.7,235.9 102.8,235.6 102.4,235.6 102.4,235.4 102.2,235.3 102.2,235.2 102.6,235.1 102.5,234.9 102.4,234.9 102.4,234.6 102.5,234.7 102.6,234.3 102.7,234.6 103.0,234.3 103.1,234.8 103.2,234.5 103.5,234.7 103.5,234.4 103.8,234.3 103.7,234.7 103.9,234.8 104.1,234.6 104.2,234.6 103.9,235.1 103.9,235.3 104.1,235.0 104.5,235.0 104.5,235.3 104.4,235.6 104.7,235.8 105.0,235.6 104.7,235.6 104.8,235.3 105.0,235.2 105.1,235.4 105.5,235.3 105.7,235.1 105.6,235.4 106.0,235.5 106.0,235.1 105.8,235.0 105.8,234.7 106.1,234.7 106.2,234.9 106.4,234.7 106.6,234.9 106.5,235.4 106.6,235.7 106.8,235.7 106.8,235.2 107.2,234.9 107.3,235.3 107.5,235.3 107.6,235.2 107.5,235.7 108.1,235.7 108.0,235.9 108.6,235.8 108.9,235.5 109.3,235.6 109.4,235.5 109.4,235.2 109.2,235.0 109.4,234.8 109.6,234.2 109.5,234.1 109.9,233.7 110.1,233.4 110.1,233.2 110.0,233.3 110.0,232.9 110.2,232.9 110.2,233.3 110.3,233.5 110.5,233.3 110.6,233.3 110.4,233.3 110.3,232.9 110.3,232.8 110.8,232.8 110.9,232.7 110.8,232.5 111.0,232.4 110.9,231.8 111.1,231.8 111.0,231.7 111.1,231.5 110.8,230.9 110.8,230.6 110.5,230.6 110.7,230.7 110.6,231.0 110.9,231.3 110.6,231.9 110.5,231.8 110.6,232.0 110.3,232.7 110.1,232.6 109.8,232.8 109.4,232.6 109.4,232.4 109.8,232.7 109.9,232.6 109.9,232.3 109.7,232.3 109.6,232.2 109.7,232.1 109.5,232.1 109.4,232.3 108.3,231.5 108.3,231.4 108.1,231.5 107.6,231.2 107.5,230.8 107.8,230.8 108.3,231.0 108.5,231.2 108.8,231.1 109.0,231.4 109.2,231.4 108.9,231.0 109.0,230.7 108.8,231.0 108.7,231.0 108.3,230.4 108.5,230.2 108.3,229.8 108.2,230.3 108.0,230.5 107.2,230.3 107.2,230.0 107.3,230.0 107.1,229.9 107.0,230.1 107.2,230.4 107.5,230.5 107.7,230.7 107.5,230.8 107.5,231.0 107.1,231.1 106.4,231.0 105.4,231.5 105.6,231.2 105.5,231.1 105.3,231.3 104.9,231.2 104.5,230.9 104.3,231.0 104.2,231.2 104.6,231.2 104.6,231.5 104.1,231.8 104.1,231.9 104.5,232.1 104.4,232.4 103.4,232.0 103.2,232.3 103.3,232.6 103.3,233.3 103.0,233.1 102.8,233.2 102.6,233.2 102.7,233.0 102.7,232.8 102.4,232.7 102.3,233.0 102.2,233.0 102.2,233.2 101.9,233.1 101.8,232.1 101.7,232.0 101.7,232.2 101.5,232.4 101.6,232.9 101.6,233.0 101.4,232.9 101.1,231.8 100.9,231.8 101.0,230.9 101.4,230.7 101.3,230.6 100.8,230.7 100.6,230.6 100.6,230.3 100.5,230.2 100.8,230.0 100.9,229.7 101.3,229.3 101.7,229.2 101.9,229.4 102.0,228.8 101.9,228.4 101.7,228.4 101.8,228.7 102.0,228.7 101.9,229.0 101.4,229.1 100.8,229.7 100.8,229.9 100.3,230.0 100.3,229.5 100.2,229.4 100.0,229.0 100.1,229.7 100.2,229.7 100.3,230.3 100.4,230.3 100.8,231.1 100.8,231.6 100.7,231.4 100.4,231.6 100.5,231.7 100.3,231.9 100.4,232.1 100.8,232.3 100.7,232.6 100.3,232.9 100.5,232.9 100.7,233.4 101.1,233.4 101.1,233.8 101.5,234.1 101.5,234.4 101.9,234.6 101.8,234.9 101.2,234.7 100.9,234.7 101.0,234.6 100.7,234.3 100.6,234.4 100.8,234.4 100.7,234.7 100.6,234.6 100.5,234.7 100.5,234.9 100.2,234.6 100.2,234.4 100.0,234.0 100.1,234.0 100.1,233.8 99.9,233.8 99.9,233.9 99.9,233.6 99.8,233.5 99.6,233.5 99.3,233.3 99.4,233.2 99.3,232.8 99.1,233.1 99.4,233.9 99.3,233.8 99.1,233.9 99.3,234.2 98.8,234.1 98.5,233.2 98.2,232.8 98.3,232.7 98.4,232.8 98.4,232.4 98.2,232.3 98.2,231.9 97.9,232.2 98.1,232.5 98.1,232.8 98.2,233.1 98.1,233.2 98.2,233.4 98.2,233.7 98.3,234.1 98.1,234.1 98.0,233.8 97.8,233.6 97.7,233.8 97.5,233.8 97.6,233.3 97.5,233.3 97.5,233.6 97.3,233.5 97.0,233.5 97.1,233.7 97.0,233.7 97.0,234.0 96.8,234.0 96.8,233.8 96.3,233.9 96.0,234.1 95.6,234.3 95.3,234.2 95.3,234.0 95.1,233.9 95.0,233.5 95.2,233.5 95.5,233.6 95.4,233.3 95.0,233.3 95.1,233.1 94.9,233.1 94.8,232.9 94.6,232.9 94.2,232.3 94.1,232.4 94.2,232.7 94.0,232.8 94.1,233.7 94.6,233.5 94.6,233.6 94.4,233.8 93.9,235.4 94.0,236.4 94.2,236.8 94.2,237.2 94.5,237.3 94.4,237.8 94.6,238.1 94.9,238.6 95.1,238.5 95.3,238.6 95.2,238.8 95.4,238.9 95.6,239.5 95.9,239.6 96.0,239.8 95.6,239.7 95.5,239.5 95.2,239.6 95.0,239.4 94.9,239.6 94.6,239.2 94.2,239.2 94.1,239.5 93.8,239.5 93.9,239.3 93.7,239.0 93.5,238.9 93.5,238.4 93.4,238.4 93.2,237.7 93.3,237.5 93.1,236.6 92.9,236.7 92.8,236.2 93.0,236.4 93.2,236.3 93.6,235.9 93.8,235.4 93.7,233.4 93.2,232.3 92.8,231.7 92.0,231.3 91.8,231.0 91.7,231.0 91.6,231.1 91.5,230.9 91.4,231.0 91.3,230.9 91.5,230.8 91.4,230.6 90.9,229.8 90.9,229.6 91.2,229.4 91.2,229.2 91.3,229.1 91.1,229.1 91.0,228.6 91.2,228.5 91.0,228.4 91.0,228.2 91.3,228.2 91.5,227.7 91.8,227.8 91.7,227.5 91.9,227.3 92.0,227.6 92.3,227.4 92.6,227.6 92.8,227.6 92.7,227.3 92.9,227.1 93.1,227.3 93.3,227.1 93.3,226.7 94.1,226.4 94.4,226.6 94.4,226.4 94.0,226.3 93.8,226.5 93.5,226.5 93.5,226.4 93.4,226.5 93.5,226.5 93.4,226.6 93.2,226.5 93.1,226.6 93.1,226.8 92.9,226.9 92.6,226.6 92.7,226.5 93.1,226.5 93.1,226.3 93.4,226.3 93.2,226.1 93.4,225.7 93.3,225.6 93.6,225.6 93.5,225.9 93.7,226.1 93.9,226.0 94.0,226.2 94.0,225.8 93.7,225.8 94.3,225.4 94.3,225.0 94.9,225.2 94.8,224.9 94.2,224.9 94.0,225.2 93.5,225.2 93.2,225.4 93.1,225.4 93.0,226.1 92.9,226.1 92.7,225.4 92.8,225.3 93.2,225.1 93.2,224.9 93.5,224.7 93.4,224.7 93.1,224.4 93.2,224.4 93.1,224.3 93.4,224.2 93.7,224.0 93.7,223.9 93.5,224.1 93.3,224.0 93.3,223.6 93.0,224.4 93.1,224.6 92.9,224.9 92.5,224.7 92.3,224.3 92.0,224.3 91.8,224.2 91.9,223.8 91.7,223.7 91.7,224.4 92.0,224.5 92.2,224.4 92.4,224.9 92.6,224.9 92.3,225.2 92.4,225.6 92.6,225.6 92.5,225.8 92.6,226.2 92.3,226.5 92.3,226.1 92.0,226.2 92.0,226.4 91.8,226.3 91.6,226.4 91.5,226.3 91.4,226.7 91.5,226.9 91.6,226.7 91.8,226.8 91.7,226.8 91.8,226.9 91.5,227.2 91.4,227.2 91.3,227.0 91.2,227.1 91.0,226.9 90.9,226.6 90.8,226.9 91.1,227.1 91.1,227.3 90.9,227.3 91.4,227.4 91.2,227.8 91.0,227.8 91.2,228.0 90.7,228.1 90.8,228.2 90.6,228.4 90.9,228.7 90.9,228.9 91.0,229.1 90.8,229.7 89.7,228.6 89.3,228.4 89.3,228.2 88.1,227.3 86.7,226.8 86.8,226.7 86.6,226.9 86.4,226.7 85.6,226.8 85.4,227.3 85.1,227.4 85.2,227.2 85.1,227.0 85.3,227.0 85.4,226.8 85.4,226.5 85.6,226.5 85.7,226.7 86.4,226.5 86.5,226.4 86.9,226.7 86.9,226.8 87.4,226.8 87.5,227.0 88.2,227.3 88.3,227.2 88.0,226.6 87.6,226.5 87.7,226.4 87.2,226.3 87.3,226.5 86.9,226.4 86.8,226.2 87.1,226.3 87.1,226.0 86.8,226.2 86.5,226.0 86.2,226.1 85.9,226.0 85.5,226.3 85.2,226.1 85.1,226.1 85.0,225.8 85.2,226.0 85.3,225.8 85.5,226.0 85.5,225.6 85.7,225.7 85.8,225.6 85.8,225.3 85.5,225.1 85.8,225.0 85.6,224.8 85.7,224.4 85.9,224.5 85.9,224.7 86.0,224.5 86.5,224.4 86.9,224.2 86.9,223.9 87.2,223.7 87.4,222.8 86.9,223.3 86.6,223.2 86.7,223.4 86.6,223.8 85.5,224.3 85.4,224.6 85.1,224.9 84.8,225.0 84.6,224.7 83.7,224.6 83.9,224.8 84.1,224.8 84.6,225.0 84.6,225.2 84.8,225.5 84.9,225.2 85.0,225.4 84.7,225.8 84.7,226.1 84.4,226.1 84.3,226.4 84.0,226.5 83.7,226.3 83.1,226.5 82.8,226.5 82.7,226.2 82.5,226.3 82.5,226.5 82.3,226.5 82.3,226.6 81.9,226.5 81.9,226.7 81.3,226.6 81.2,226.5 81.4,226.4 81.2,226.2 80.9,226.1 80.9,225.9 80.8,226.0 80.7,225.9 80.8,225.7 80.5,225.7 80.3,225.2 80.0,225.1 80.0,224.9 79.8,224.7 79.8,224.2 79.7,223.9 79.3,223.6 79.3,223.4 78.9,223.2 78.9,222.9 78.8,222.7 78.8,222.6 78.7,222.4 78.6,222.0 78.8,221.6 78.7,221.4 78.8,221.0 79.0,220.9 79.1,220.6 "/></g><g><polyline points="171.8,304.8 171.6,304.8 171.5,304.4 171.3,304.4 171.2,304.5 171.2,304.8 170.9,305.4 169.8,305.0 169.4,305.2 169.2,305.1 169.0,305.3 168.8,305.3 168.8,305.5 168.4,305.8 168.1,306.4 168.0,306.7 167.8,306.8 167.9,307.1 168.2,307.5 168.2,307.6 168.0,307.5 165.3,305.3 164.7,305.1 164.6,304.7 164.0,304.0 164.5,304.8 164.8,305.5 164.7,305.7 164.8,305.7 164.9,305.5 165.2,305.7 165.2,306.0 165.3,306.1 165.2,306.2 165.5,306.2 165.2,306.6 165.0,306.5 164.2,305.7 163.6,304.4 163.3,304.1 162.0,303.2 161.6,303.2 161.2,303.4 160.5,303.4 160.0,303.2 159.6,303.1 159.5,303.3 159.2,303.5 158.0,303.4 156.5,300.1 156.2,299.9 155.4,299.6 155.1,299.7 154.9,299.9 153.6,299.6 153.7,299.8 152.8,299.5 152.0,299.5 151.7,299.2 150.9,299.0 150.9,298.7 151.0,298.7 151.1,298.4 151.5,298.4 151.3,298.0 151.2,298.3 150.7,298.4 150.4,298.1 149.8,298.0 149.7,297.8 148.7,297.3 148.6,297.0 148.2,296.9 147.8,296.5 147.6,296.4 147.5,296.4 147.5,296.3 146.9,296.0 146.7,295.6 146.1,294.9 145.6,294.9 145.6,295.3 145.1,295.2 144.7,294.9 144.4,294.0 144.5,293.8 144.1,292.1 143.7,290.9 143.2,288.8 142.9,288.2 142.5,288.0 142.3,287.4 142.1,287.3 141.0,286.1 141.1,285.9 140.2,284.4 139.5,283.6 139.7,283.6 139.6,283.5 139.0,283.8 138.8,283.7 138.3,283.0 138.3,282.4 138.2,282.1 133.9,278.1 132.8,277.3 132.1,276.7 131.9,275.7 131.8,273.9 131.6,273.1 131.6,272.6 131.8,272.6 132.2,272.4 132.6,272.4 133.2,271.3 133.7,270.5 133.9,270.5 134.4,269.8 134.6,269.8 135.3,269.2 135.8,268.3 135.7,267.7 136.2,266.8 136.0,266.7 136.0,266.5 136.3,266.4 136.4,266.1 136.3,266.1 136.4,266.0 136.3,265.9 136.6,265.8 136.6,265.6 136.9,265.6 137.0,265.4 137.4,265.4 138.2,264.9 138.2,264.8 "/></g><g><polyline points="187.0,359.9 186.1,356.8 185.1,354.6 183.6,352.1 182.6,350.7 181.5,349.5 180.7,349.1 180.7,348.9 180.5,348.6 180.1,348.5 180.0,348.6 179.7,348.2 179.6,348.3 179.5,348.2 179.6,348.1 179.3,347.4 179.0,347.3 178.9,347.2 178.4,347.0 178.2,347.1 178.2,347.3 177.4,347.0 177.3,346.8 177.1,346.7 177.1,346.4 176.7,346.2 176.7,345.9 176.4,346.0 176.3,345.9 176.4,345.6 176.4,345.1 176.2,344.6 175.8,344.6 175.8,344.8 175.5,344.4 175.7,344.2 175.6,344.0 175.3,343.5 175.1,343.4 175.0,343.6 174.9,343.7 174.8,343.6 174.4,343.7 174.4,343.5 174.1,343.5 174.0,343.3 174.1,343.2 173.8,343.3 173.3,342.7 173.1,342.7 173.1,342.5 172.9,342.6 172.6,342.5 172.6,342.3 172.5,342.5 172.2,342.4 172.2,342.1 171.6,342.1 170.9,341.4 169.8,340.4 169.7,340.5 168.6,339.8 168.5,339.5 168.2,339.6 168.2,339.4 168.0,339.5 168.0,339.3 167.2,339.4 167.4,340.1 167.8,340.3 168.0,340.5 168.5,340.4 168.8,340.2 169.1,340.2 169.1,340.4 168.6,340.5 168.2,340.7 167.3,340.7 166.9,338.7 166.6,334.5 166.8,334.3 168.1,333.9 168.6,334.1 168.9,334.1 169.7,333.5 170.1,333.5 170.7,333.9 170.9,333.7 170.7,332.8 170.8,332.7 170.6,332.3 170.1,331.8 170.2,331.6 169.9,331.2 169.7,331.2 169.5,330.8 169.7,330.7 169.5,330.6 169.6,330.5 170.1,330.7 170.3,330.6 170.0,330.3 170.1,330.0 170.2,330.2 171.3,330.3 171.7,329.7 172.0,329.4 172.1,328.8 172.9,328.0 173.1,327.6 173.1,326.6 172.9,325.9 172.6,325.8 172.1,325.4 172.3,325.4 172.3,325.2 172.4,325.3 173.3,325.2 173.2,324.9 172.8,324.4 172.8,323.6 172.3,323.3 172.2,323.0 171.9,322.8 171.8,322.6 171.3,322.4 171.1,322.2 171.5,322.2 172.0,322.6 172.4,322.9 172.9,322.6 173.7,322.8 174.0,322.2 174.0,321.7 173.8,321.5 173.6,321.0 173.8,320.8 173.8,320.3 173.6,319.9 173.1,319.5 172.5,319.5 172.5,319.2 172.4,319.0 172.4,318.5 172.2,317.3 171.6,316.8 170.9,316.8 170.8,316.6 170.7,316.7 170.5,316.6 170.5,316.4 171.2,316.2 171.1,315.4 170.6,315.5 170.3,315.4 170.1,314.9 169.2,314.8 169.4,314.7 169.4,314.4 169.8,314.1 169.9,313.9 170.1,313.9 169.6,313.9 168.1,314.4 167.5,314.3 167.1,314.0 167.3,313.7 167.5,313.7 167.2,313.6 167.3,313.3 166.9,313.3 166.8,313.6 166.7,313.4 166.9,313.2 167.4,313.2 167.6,313.0 167.5,312.7 167.7,312.3 168.1,312.2 168.3,311.7 168.3,311.3 168.1,311.2 168.3,310.6 169.1,310.1 169.4,310.0 169.9,309.3 170.1,309.3 170.4,309.0 170.6,308.4 170.9,308.2 171.3,307.8 171.2,307.1 170.9,305.9 171.0,305.5 171.4,304.9 171.3,304.5 171.4,304.4 171.5,304.8 171.9,305.0 172.1,304.9 172.3,305.1 172.5,304.8 172.6,304.7 172.4,304.8 172.3,305.0 172.2,304.8 172.0,304.9 171.8,304.8 "/></g><g><polyline points="328.2,493.2 328.0,493.7 328.5,493.7 329.0,495.2 330.7,495.2 331.0,494.9 330.6,494.8 330.6,493.5 331.1,492.9 331.3,493.3 331.4,491.9 332.0,491.7 331.5,494.3 331.2,505.4 331.8,508.7 333.3,509.9 335.4,510.4 334.7,510.9 335.2,511.2 334.9,512.2 335.9,512.4 336.6,514.6 334.6,514.5 333.2,515.1 331.5,512.7 330.5,513.0 329.5,512.6 328.7,513.0 327.9,512.1 326.8,513.5 325.0,512.9 324.6,513.6 323.7,513.4 323.3,514.4 321.4,515.8 320.5,515.1 319.7,515.2 317.3,516.3 317.3,517.1 316.5,517.1 317.4,518.7 317.3,519.6 313.4,518.6 312.8,518.8 312.3,519.9 311.7,519.9 310.7,519.4 310.1,519.6 309.4,518.5 308.2,517.7 308.1,516.8 305.3,516.3 303.5,515.0 302.7,515.3 301.3,514.4 299.4,515.6 297.9,515.1 296.4,515.7 295.9,517.3 294.9,517.8 294.7,518.4 292.3,518.8 292.0,519.2 290.1,517.4 289.9,515.2 289.2,514.9 289.0,513.6 287.3,513.9 284.7,511.9 282.3,511.9 281.7,511.5 281.1,511.6 280.7,511.1 281.4,507.8 283.4,507.1 "/></g></g></g><g id="grille" inkscape:groupmode="layer" inkscape:label="grille"><g stroke="none" fill="none" stroke-linejoin="round" stroke-width="0.26"><g id="bbox:1.9_51_2_51.1" ><polygon points="287.5,25.5 291.3,25.5 291.3,31.6 287.5,31.6 287.5,25.5 " /></g><g id="bbox:2_51_2.1_51.1" ><polygon points="291.3,25.5 295.2,25.5 295.2,31.6 291.3,31.6 291.3,25.5 " /></g><g id="bbox:2.1_51_2.2_51.1" ><polygon points="295.2,25.5 299.0,25.5 299.0,31.6 295.2,31.6 295.2,25.5 " /></g><g id="bbox:2.2_51_2.3_51.1" ><polygon points="299.0,25.5 302.8,25.5 302.8,31.6 299.0,31.6 299.0,25.5 " /></g><g id="bbox:2.3_51_2.4_51.1" ><polygon points="302.8,25.5 306.7,25.5 306.7,31.6 302.8,31.6 302.8,25.5 " /></g><g id="bbox:2.4_51_2.5_51.1" ><polygon points="306.7,25.5 310.5,25.5 310.5,31.6 306.7,31.6 306.7,25.5 " /></g><g id="bbox:2.5_51_2.6_51.1" ><polygon points="310.5,25.5 314.4,25.5 314.4,31.6 310.5,31.6 310.5,25.5 " /></g><g id="bbox:1.6_50.9_1.7_51" ><polygon points="275.9,31.6 279.8,31.6 279.8,37.7 275.9,37.7 275.9,31.6 " /></g><g id="bbox:1.7_50.9_1.8_51" ><polygon points="279.8,31.6 283.6,31.6 283.6,37.7 279.8,37.7 279.8,31.6 " /></g><g id="bbox:1.8_50.9_1.9_51" ><polygon points="283.6,31.6 287.5,31.6 287.5,37.7 283.6,37.7 283.6,31.6 " /></g><g id="bbox:1.9_50.9_2_51" ><polygon points="287.5,31.6 291.3,31.6 291.3,37.7 287.5,37.7 287.5,31.6 " /></g><g id="bbox:2_50.9_2.1_51" ><polygon points="291.3,31.6 295.2,31.6 295.2,37.7 291.3,37.7 291.3,31.6 " /></g><g id="bbox:2.1_50.9_2.2_51" ><polygon points="295.2,31.6 299.0,31.6 299.0,37.7 295.2,37.7 295.2,31.6 " /></g><g id="bbox:2.2_50.9_2.3_51" ><polygon points="299.0,31.6 302.8,31.6 302.8,37.7 299.0,37.7 299.0,31.6 " /></g><g id="bbox:2.3_50.9_2.4_51" ><polygon points="302.8,31.6 306.7,31.6 306.7,37.7 302.8,37.7 302.8,31.6 " /></g><g id="bbox:2.4_50.9_2.5_51" ><polygon points="306.7,31.6 310.5,31.6 310.5,37.7 306.7,37.7 306.7,31.6 " /></g><g id="bbox:2.5_50.9_2.6_51" ><polygon points="310.5,31.6 314.4,31.6 314.4,37.7 310.5,37.7 310.5,31.6 " /></g><g id="bbox:2.6_50.9_2.7_51" ><polygon points="314.4,31.6 318.2,31.6 318.2,37.7 314.4,37.7 314.4,31.6 " /></g><g id="bbox:1.5_50.8_1.6_50.9" ><polygon points="272.1,37.7 275.9,37.7 275.9,43.8 272.1,43.8 272.1,37.7 " /></g><g id="bbox:1.6_50.8_1.7_50.9" ><polygon points="275.9,37.7 279.8,37.7 279.8,43.8 275.9,43.8 275.9,37.7 " /></g><g id="bbox:1.7_50.8_1.8_50.9" ><polygon points="279.8,37.7 283.6,37.7 283.6,43.8 279.8,43.8 279.8,37.7 " /></g><g id="bbox:1.8_50.8_1.9_50.9" ><polygon points="283.6,37.7 287.5,37.7 287.5,43.8 283.6,43.8 283.6,37.7 " /></g><g id="bbox:1.9_50.8_2_50.9" ><polygon points="287.5,37.7 291.3,37.7 291.3,43.8 287.5,43.8 287.5,37.7 " /></g><g id="bbox:2_50.8_2.1_50.9" ><polygon points="291.3,37.7 295.2,37.7 295.2,43.8 291.3,43.8 291.3,37.7 " /></g><g id="bbox:2.1_50.8_2.2_50.9" ><polygon points="295.2,37.7 299.0,37.7 299.0,43.8 295.2,43.8 295.2,37.7 " /></g><g id="bbox:2.2_50.8_2.3_50.9" ><polygon points="299.0,37.7 302.8,37.7 302.8,43.8 299.0,43.8 299.0,37.7 " /></g><g id="bbox:2.3_50.8_2.4_50.9" ><polygon points="302.8,37.7 306.7,37.7 306.7,43.8 302.8,43.8 302.8,37.7 " /></g><g id="bbox:2.4_50.8_2.5_50.9" ><polygon points="306.7,37.7 310.5,37.7 310.5,43.8 306.7,43.8 306.7,37.7 " /></g><g id="bbox:2.5_50.8_2.6_50.9" ><polygon points="310.5,37.7 314.4,37.7 314.4,43.8 310.5,43.8 310.5,37.7 " /></g><g id="bbox:2.6_50.8_2.7_50.9" ><polygon points="314.4,37.7 318.2,37.7 318.2,43.8 314.4,43.8 314.4,37.7 " /></g><g id="bbox:2.7_50.8_2.8_50.9" ><polygon points="318.2,37.7 322.1,37.7 322.1,43.8 318.2,43.8 318.2,37.7 " /></g><g id="bbox:1.5_50.7_1.6_50.8" ><polygon points="272.1,43.8 275.9,43.8 275.9,49.9 272.1,49.9 272.1,43.8 " /></g><g id="bbox:1.6_50.7_1.7_50.8" ><polygon points="275.9,43.8 279.8,43.8 279.8,49.9 275.9,49.9 275.9,43.8 " /></g><g id="bbox:1.7_50.7_1.8_50.8" ><polygon points="279.8,43.8 283.6,43.8 283.6,49.9 279.8,49.9 279.8,43.8 " /></g><g id="bbox:1.8_50.7_1.9_50.8" ><polygon points="283.6,43.8 287.5,43.8 287.5,49.9 283.6,49.9 283.6,43.8 " /></g><g id="bbox:1.9_50.7_2_50.8" ><polygon points="287.5,43.8 291.3,43.8 291.3,49.9 287.5,49.9 287.5,43.8 " /></g><g id="bbox:2_50.7_2.1_50.8" ><polygon points="291.3,43.8 295.2,43.8 295.2,49.9 291.3,49.9 291.3,43.8 " /></g><g id="bbox:2.1_50.7_2.2_50.8" ><polygon points="295.2,43.8 299.0,43.8 299.0,49.9 295.2,49.9 295.2,43.8 " /></g><g id="bbox:2.2_50.7_2.3_50.8" ><polygon points="299.0,43.8 302.8,43.8 302.8,49.9 299.0,49.9 299.0,43.8 " /></g><g id="bbox:2.3_50.7_2.4_50.8" ><polygon points="302.8,43.8 306.7,43.8 306.7,49.9 302.8,49.9 302.8,43.8 " /></g><g id="bbox:2.4_50.7_2.5_50.8" ><polygon points="306.7,43.8 310.5,43.8 310.5,49.9 306.7,49.9 306.7,43.8 " /></g><g id="bbox:2.5_50.7_2.6_50.8" ><polygon points="310.5,43.8 314.4,43.8 314.4,49.9 310.5,49.9 310.5,43.8 " /></g><g id="bbox:2.6_50.7_2.7_50.8" ><polygon points="314.4,43.8 318.2,43.8 318.2,49.9 314.4,49.9 314.4,43.8 " /></g><g id="bbox:2.7_50.7_2.8_50.8" ><polygon points="318.2,43.8 322.1,43.8 322.1,49.9 318.2,49.9 318.2,43.8 " /></g><g id="bbox:2.8_50.7_2.9_50.8" ><polygon points="322.1,43.8 325.9,43.8 325.9,49.9 322.1,49.9 322.1,43.8 " /></g><g id="bbox:2.9_50.7_3_50.8" ><polygon points="325.9,43.8 329.8,43.8 329.8,49.9 325.9,49.9 325.9,43.8 " /></g><g id="bbox:3_50.7_3.1_50.8" ><polygon points="329.8,43.8 333.6,43.8 333.6,49.9 329.8,49.9 329.8,43.8 " /></g><g id="bbox:3.1_50.7_3.2_50.8" ><polygon points="333.6,43.8 337.5,43.8 337.5,49.9 333.6,49.9 333.6,43.8 " /></g><g id="bbox:3.2_50.7_3.3_50.8" ><polygon points="337.5,43.8 341.3,43.8 341.3,49.9 337.5,49.9 337.5,43.8 " /></g><g id="bbox:1.5_50.6_1.6_50.7" ><polygon points="272.1,49.9 275.9,49.9 275.9,56.0 272.1,56.0 272.1,49.9 " /></g><g id="bbox:1.6_50.6_1.7_50.7" ><polygon points="275.9,49.9 279.8,49.9 279.8,56.0 275.9,56.0 275.9,49.9 " /></g><g id="bbox:1.7_50.6_1.8_50.7" ><polygon points="279.8,49.9 283.6,49.9 283.6,56.0 279.8,56.0 279.8,49.9 " /></g><g id="bbox:1.8_50.6_1.9_50.7" ><polygon points="283.6,49.9 287.5,49.9 287.5,56.0 283.6,56.0 283.6,49.9 " /></g><g id="bbox:1.9_50.6_2_50.7" ><polygon points="287.5,49.9 291.3,49.9 291.3,56.0 287.5,56.0 287.5,49.9 " /></g><g id="bbox:2_50.6_2.1_50.7" ><polygon points="291.3,49.9 295.2,49.9 295.2,56.0 291.3,56.0 291.3,49.9 " /></g><g id="bbox:2.1_50.6_2.2_50.7" ><polygon points="295.2,49.9 299.0,49.9 299.0,56.0 295.2,56.0 295.2,49.9 " /></g><g id="bbox:2.2_50.6_2.3_50.7" ><polygon points="299.0,49.9 302.8,49.9 302.8,56.0 299.0,56.0 299.0,49.9 " /></g><g id="bbox:2.3_50.6_2.4_50.7" ><polygon points="302.8,49.9 306.7,49.9 306.7,56.0 302.8,56.0 302.8,49.9 " /></g><g id="bbox:2.4_50.6_2.5_50.7" ><polygon points="306.7,49.9 310.5,49.9 310.5,56.0 306.7,56.0 306.7,49.9 " /></g><g id="bbox:2.5_50.6_2.6_50.7" ><polygon points="310.5,49.9 314.4,49.9 314.4,56.0 310.5,56.0 310.5,49.9 " /></g><g id="bbox:2.6_50.6_2.7_50.7" ><polygon points="314.4,49.9 318.2,49.9 318.2,56.0 314.4,56.0 314.4,49.9 " /></g><g id="bbox:2.7_50.6_2.8_50.7" ><polygon points="318.2,49.9 322.1,49.9 322.1,56.0 318.2,56.0 318.2,49.9 " /></g><g id="bbox:2.8_50.6_2.9_50.7" ><polygon points="322.1,49.9 325.9,49.9 325.9,56.0 322.1,56.0 322.1,49.9 " /></g><g id="bbox:2.9_50.6_3_50.7" ><polygon points="325.9,49.9 329.8,49.9 329.8,56.0 325.9,56.0 325.9,49.9 " /></g><g id="bbox:3_50.6_3.1_50.7" ><polygon points="329.8,49.9 333.6,49.9 333.6,56.0 329.8,56.0 329.8,49.9 " /></g><g id="bbox:3.1_50.6_3.2_50.7" ><polygon points="333.6,49.9 337.5,49.9 337.5,56.0 333.6,56.0 333.6,49.9 " /></g><g id="bbox:3.2_50.6_3.3_50.7" ><polygon points="337.5,49.9 341.3,49.9 341.3,56.0 337.5,56.0 337.5,49.9 " /></g><g id="bbox:1.5_50.5_1.6_50.6" ><polygon points="272.1,56.0 275.9,56.0 275.9,62.0 272.1,62.0 272.1,56.0 " /></g><g id="bbox:1.6_50.5_1.7_50.6" ><polygon points="275.9,56.0 279.8,56.0 279.8,62.0 275.9,62.0 275.9,56.0 " /></g><g id="bbox:1.7_50.5_1.8_50.6" ><polygon points="279.8,56.0 283.6,56.0 283.6,62.0 279.8,62.0 279.8,56.0 " /></g><g id="bbox:1.8_50.5_1.9_50.6" ><polygon points="283.6,56.0 287.5,56.0 287.5,62.0 283.6,62.0 283.6,56.0 " /></g><g id="bbox:1.9_50.5_2_50.6" ><polygon points="287.5,56.0 291.3,56.0 291.3,62.0 287.5,62.0 287.5,56.0 " /></g><g id="bbox:2_50.5_2.1_50.6" ><polygon points="291.3,56.0 295.2,56.0 295.2,62.0 291.3,62.0 291.3,56.0 " /></g><g id="bbox:2.1_50.5_2.2_50.6" ><polygon points="295.2,56.0 299.0,56.0 299.0,62.0 295.2,62.0 295.2,56.0 " /></g><g id="bbox:2.2_50.5_2.3_50.6" ><polygon points="299.0,56.0 302.8,56.0 302.8,62.0 299.0,62.0 299.0,56.0 " /></g><g id="bbox:2.3_50.5_2.4_50.6" ><polygon points="302.8,56.0 306.7,56.0 306.7,62.0 302.8,62.0 302.8,56.0 " /></g><g id="bbox:2.4_50.5_2.5_50.6" ><polygon points="306.7,56.0 310.5,56.0 310.5,62.0 306.7,62.0 306.7,56.0 " /></g><g id="bbox:2.5_50.5_2.6_50.6" ><polygon points="310.5,56.0 314.4,56.0 314.4,62.0 310.5,62.0 310.5,56.0 " /></g><g id="bbox:2.6_50.5_2.7_50.6" ><polygon points="314.4,56.0 318.2,56.0 318.2,62.0 314.4,62.0 314.4,56.0 " /></g><g id="bbox:2.7_50.5_2.8_50.6" ><polygon points="318.2,56.0 322.1,56.0 322.1,62.0 318.2,62.0 318.2,56.0 " /></g><g id="bbox:2.8_50.5_2.9_50.6" ><polygon points="322.1,56.0 325.9,56.0 325.9,62.0 322.1,62.0 322.1,56.0 " /></g><g id="bbox:2.9_50.5_3_50.6" ><polygon points="325.9,56.0 329.8,56.0 329.8,62.0 325.9,62.0 325.9,56.0 " /></g><g id="bbox:3_50.5_3.1_50.6" ><polygon points="329.8,56.0 333.6,56.0 333.6,62.0 329.8,62.0 329.8,56.0 " /></g><g id="bbox:3.1_50.5_3.2_50.6" ><polygon points="333.6,56.0 337.5,56.0 337.5,62.0 333.6,62.0 333.6,56.0 " /></g><g id="bbox:3.2_50.5_3.3_50.6" ><polygon points="337.5,56.0 341.3,56.0 341.3,62.0 337.5,62.0 337.5,56.0 " /></g><g id="bbox:3.3_50.5_3.4_50.6" ><polygon points="341.3,56.0 345.2,56.0 345.2,62.0 341.3,62.0 341.3,56.0 " /></g><g id="bbox:3.4_50.5_3.5_50.6" ><polygon points="345.2,56.0 349.0,56.0 349.0,62.0 345.2,62.0 345.2,56.0 " /></g><g id="bbox:3.5_50.5_3.6_50.6" ><polygon points="349.0,56.0 352.9,56.0 352.9,62.0 349.0,62.0 349.0,56.0 " /></g><g id="bbox:1.5_50.4_1.6_50.5" ><polygon points="272.1,62.0 275.9,62.0 275.9,68.1 272.1,68.1 272.1,62.0 " /></g><g id="bbox:1.6_50.4_1.7_50.5" ><polygon points="275.9,62.0 279.8,62.0 279.8,68.1 275.9,68.1 275.9,62.0 " /></g><g id="bbox:1.7_50.4_1.8_50.5" ><polygon points="279.8,62.0 283.6,62.0 283.6,68.1 279.8,68.1 279.8,62.0 " /></g><g id="bbox:1.8_50.4_1.9_50.5" ><polygon points="283.6,62.0 287.5,62.0 287.5,68.1 283.6,68.1 283.6,62.0 " /></g><g id="bbox:1.9_50.4_2_50.5" ><polygon points="287.5,62.0 291.3,62.0 291.3,68.1 287.5,68.1 287.5,62.0 " /></g><g id="bbox:2_50.4_2.1_50.5" ><polygon points="291.3,62.0 295.2,62.0 295.2,68.1 291.3,68.1 291.3,62.0 " /></g><g id="bbox:2.1_50.4_2.2_50.5" ><polygon points="295.2,62.0 299.0,62.0 299.0,68.1 295.2,68.1 295.2,62.0 " /></g><g id="bbox:2.2_50.4_2.3_50.5" ><polygon points="299.0,62.0 302.8,62.0 302.8,68.1 299.0,68.1 299.0,62.0 " /></g><g id="bbox:2.3_50.4_2.4_50.5" ><polygon points="302.8,62.0 306.7,62.0 306.7,68.1 302.8,68.1 302.8,62.0 " /></g><g id="bbox:2.4_50.4_2.5_50.5" ><polygon points="306.7,62.0 310.5,62.0 310.5,68.1 306.7,68.1 306.7,62.0 " /></g><g id="bbox:2.5_50.4_2.6_50.5" ><polygon points="310.5,62.0 314.4,62.0 314.4,68.1 310.5,68.1 310.5,62.0 " /></g><g id="bbox:2.6_50.4_2.7_50.5" ><polygon points="314.4,62.0 318.2,62.0 318.2,68.1 314.4,68.1 314.4,62.0 " /></g><g id="bbox:2.7_50.4_2.8_50.5" ><polygon points="318.2,62.0 322.1,62.0 322.1,68.1 318.2,68.1 318.2,62.0 " /></g><g id="bbox:2.8_50.4_2.9_50.5" ><polygon points="322.1,62.0 325.9,62.0 325.9,68.1 322.1,68.1 322.1,62.0 " /></g><g id="bbox:2.9_50.4_3_50.5" ><polygon points="325.9,62.0 329.8,62.0 329.8,68.1 325.9,68.1 325.9,62.0 " /></g><g id="bbox:3_50.4_3.1_50.5" ><polygon points="329.8,62.0 333.6,62.0 333.6,68.1 329.8,68.1 329.8,62.0 " /></g><g id="bbox:3.1_50.4_3.2_50.5" ><polygon points="333.6,62.0 337.5,62.0 337.5,68.1 333.6,68.1 333.6,62.0 " /></g><g id="bbox:3.2_50.4_3.3_50.5" ><polygon points="337.5,62.0 341.3,62.0 341.3,68.1 337.5,68.1 337.5,62.0 " /></g><g id="bbox:3.3_50.4_3.4_50.5" ><polygon points="341.3,62.0 345.2,62.0 345.2,68.1 341.3,68.1 341.3,62.0 " /></g><g id="bbox:3.4_50.4_3.5_50.5" ><polygon points="345.2,62.0 349.0,62.0 349.0,68.1 345.2,68.1 345.2,62.0 " /></g><g id="bbox:3.5_50.4_3.6_50.5" ><polygon points="349.0,62.0 352.9,62.0 352.9,68.1 349.0,68.1 349.0,62.0 " /></g><g id="bbox:3.6_50.4_3.7_50.5" ><polygon points="352.9,62.0 356.7,62.0 356.7,68.1 352.9,68.1 352.9,62.0 " /></g><g id="bbox:1.5_50.3_1.6_50.4" ><polygon points="272.1,68.1 275.9,68.1 275.9,74.1 272.1,74.1 272.1,68.1 " /></g><g id="bbox:1.6_50.3_1.7_50.4" ><polygon points="275.9,68.1 279.8,68.1 279.8,74.1 275.9,74.1 275.9,68.1 " /></g><g id="bbox:1.7_50.3_1.8_50.4" ><polygon points="279.8,68.1 283.6,68.1 283.6,74.1 279.8,74.1 279.8,68.1 " /></g><g id="bbox:1.8_50.3_1.9_50.4" ><polygon points="283.6,68.1 287.5,68.1 287.5,74.1 283.6,74.1 283.6,68.1 " /></g><g id="bbox:1.9_50.3_2_50.4" ><polygon points="287.5,68.1 291.3,68.1 291.3,74.1 287.5,74.1 287.5,68.1 " /></g><g id="bbox:2_50.3_2.1_50.4" ><polygon points="291.3,68.1 295.2,68.1 295.2,74.1 291.3,74.1 291.3,68.1 " /></g><g id="bbox:2.1_50.3_2.2_50.4" ><polygon points="295.2,68.1 299.0,68.1 299.0,74.1 295.2,74.1 295.2,68.1 " /></g><g id="bbox:2.2_50.3_2.3_50.4" ><polygon points="299.0,68.1 302.8,68.1 302.8,74.1 299.0,74.1 299.0,68.1 " /></g><g id="bbox:2.3_50.3_2.4_50.4" ><polygon points="302.8,68.1 306.7,68.1 306.7,74.1 302.8,74.1 302.8,68.1 " /></g><g id="bbox:2.4_50.3_2.5_50.4" ><polygon points="306.7,68.1 310.5,68.1 310.5,74.1 306.7,74.1 306.7,68.1 " /></g><g id="bbox:2.5_50.3_2.6_50.4" ><polygon points="310.5,68.1 314.4,68.1 314.4,74.1 310.5,74.1 310.5,68.1 " /></g><g id="bbox:2.6_50.3_2.7_50.4" ><polygon points="314.4,68.1 318.2,68.1 318.2,74.1 314.4,74.1 314.4,68.1 " /></g><g id="bbox:2.7_50.3_2.8_50.4" ><polygon points="318.2,68.1 322.1,68.1 322.1,74.1 318.2,74.1 318.2,68.1 " /></g><g id="bbox:2.8_50.3_2.9_50.4" ><polygon points="322.1,68.1 325.9,68.1 325.9,74.1 322.1,74.1 322.1,68.1 " /></g><g id="bbox:2.9_50.3_3_50.4" ><polygon points="325.9,68.1 329.8,68.1 329.8,74.1 325.9,74.1 325.9,68.1 " /></g><g id="bbox:3_50.3_3.1_50.4" ><polygon points="329.8,68.1 333.6,68.1 333.6,74.1 329.8,74.1 329.8,68.1 " /></g><g id="bbox:3.1_50.3_3.2_50.4" ><polygon points="333.6,68.1 337.5,68.1 337.5,74.1 333.6,74.1 333.6,68.1 " /></g><g id="bbox:3.2_50.3_3.3_50.4" ><polygon points="337.5,68.1 341.3,68.1 341.3,74.1 337.5,74.1 337.5,68.1 " /></g><g id="bbox:3.3_50.3_3.4_50.4" ><polygon points="341.3,68.1 345.2,68.1 345.2,74.1 341.3,74.1 341.3,68.1 " /></g><g id="bbox:3.4_50.3_3.5_50.4" ><polygon points="345.2,68.1 349.0,68.1 349.0,74.1 345.2,74.1 345.2,68.1 " /></g><g id="bbox:3.5_50.3_3.6_50.4" ><polygon points="349.0,68.1 352.9,68.1 352.9,74.1 349.0,74.1 349.0,68.1 " /></g><g id="bbox:3.6_50.3_3.7_50.4" ><polygon points="352.9,68.1 356.7,68.1 356.7,74.1 352.9,74.1 352.9,68.1 " /></g><g id="bbox:3.7_50.3_3.8_50.4" ><polygon points="356.7,68.1 360.6,68.1 360.6,74.1 356.7,74.1 356.7,68.1 " /></g><g id="bbox:3.8_50.3_3.9_50.4" ><polygon points="360.6,68.1 364.4,68.1 364.4,74.1 360.6,74.1 360.6,68.1 " /></g><g id="bbox:3.9_50.3_4_50.4" ><polygon points="364.4,68.1 368.3,68.1 368.3,74.1 364.4,74.1 364.4,68.1 " /></g><g id="bbox:4_50.3_4.1_50.4" ><polygon points="368.3,68.1 372.1,68.1 372.1,74.1 368.3,74.1 368.3,68.1 " /></g><g id="bbox:4.1_50.3_4.2_50.4" ><polygon points="372.1,68.1 376.0,68.1 376.0,74.1 372.1,74.1 372.1,68.1 " /></g><g id="bbox:1.5_50.2_1.6_50.3" ><polygon points="272.1,74.1 275.9,74.1 275.9,80.1 272.1,80.1 272.1,74.1 " /></g><g id="bbox:1.6_50.2_1.7_50.3" ><polygon points="275.9,74.1 279.8,74.1 279.8,80.1 275.9,80.1 275.9,74.1 " /></g><g id="bbox:1.7_50.2_1.8_50.3" ><polygon points="279.8,74.1 283.6,74.1 283.6,80.1 279.8,80.1 279.8,74.1 " /></g><g id="bbox:1.8_50.2_1.9_50.3" ><polygon points="283.6,74.1 287.5,74.1 287.5,80.1 283.6,80.1 283.6,74.1 " /></g><g id="bbox:1.9_50.2_2_50.3" ><polygon points="287.5,74.1 291.3,74.1 291.3,80.1 287.5,80.1 287.5,74.1 " /></g><g id="bbox:2_50.2_2.1_50.3" ><polygon points="291.3,74.1 295.2,74.1 295.2,80.1 291.3,80.1 291.3,74.1 " /></g><g id="bbox:2.1_50.2_2.2_50.3" ><polygon points="295.2,74.1 299.0,74.1 299.0,80.1 295.2,80.1 295.2,74.1 " /></g><g id="bbox:2.2_50.2_2.3_50.3" ><polygon points="299.0,74.1 302.8,74.1 302.8,80.1 299.0,80.1 299.0,74.1 " /></g><g id="bbox:2.3_50.2_2.4_50.3" ><polygon points="302.8,74.1 306.7,74.1 306.7,80.1 302.8,80.1 302.8,74.1 " /></g><g id="bbox:2.4_50.2_2.5_50.3" ><polygon points="306.7,74.1 310.5,74.1 310.5,80.1 306.7,80.1 306.7,74.1 " /></g><g id="bbox:2.5_50.2_2.6_50.3" ><polygon points="310.5,74.1 314.4,74.1 314.4,80.1 310.5,80.1 310.5,74.1 " /></g><g id="bbox:2.6_50.2_2.7_50.3" ><polygon points="314.4,74.1 318.2,74.1 318.2,80.1 314.4,80.1 314.4,74.1 " /></g><g id="bbox:2.7_50.2_2.8_50.3" ><polygon points="318.2,74.1 322.1,74.1 322.1,80.1 318.2,80.1 318.2,74.1 " /></g><g id="bbox:2.8_50.2_2.9_50.3" ><polygon points="322.1,74.1 325.9,74.1 325.9,80.1 322.1,80.1 322.1,74.1 " /></g><g id="bbox:2.9_50.2_3_50.3" ><polygon points="325.9,74.1 329.8,74.1 329.8,80.1 325.9,80.1 325.9,74.1 " /></g><g id="bbox:3_50.2_3.1_50.3" ><polygon points="329.8,74.1 333.6,74.1 333.6,80.1 329.8,80.1 329.8,74.1 " /></g><g id="bbox:3.1_50.2_3.2_50.3" ><polygon points="333.6,74.1 337.5,74.1 337.5,80.1 333.6,80.1 333.6,74.1 " /></g><g id="bbox:3.2_50.2_3.3_50.3" ><polygon points="337.5,74.1 341.3,74.1 341.3,80.1 337.5,80.1 337.5,74.1 " /></g><g id="bbox:3.3_50.2_3.4_50.3" ><polygon points="341.3,74.1 345.2,74.1 345.2,80.1 341.3,80.1 341.3,74.1 " /></g><g id="bbox:3.4_50.2_3.5_50.3" ><polygon points="345.2,74.1 349.0,74.1 349.0,80.1 345.2,80.1 345.2,74.1 " /></g><g id="bbox:3.5_50.2_3.6_50.3" ><polygon points="349.0,74.1 352.9,74.1 352.9,80.1 349.0,80.1 349.0,74.1 " /></g><g id="bbox:3.6_50.2_3.7_50.3" ><polygon points="352.9,74.1 356.7,74.1 356.7,80.1 352.9,80.1 352.9,74.1 " /></g><g id="bbox:3.7_50.2_3.8_50.3" ><polygon points="356.7,74.1 360.6,74.1 360.6,80.1 356.7,80.1 356.7,74.1 " /></g><g id="bbox:3.8_50.2_3.9_50.3" ><polygon points="360.6,74.1 364.4,74.1 364.4,80.1 360.6,80.1 360.6,74.1 " /></g><g id="bbox:3.9_50.2_4_50.3" ><polygon points="364.4,74.1 368.3,74.1 368.3,80.1 364.4,80.1 364.4,74.1 " /></g><g id="bbox:4_50.2_4.1_50.3" ><polygon points="368.3,74.1 372.1,74.1 372.1,80.1 368.3,80.1 368.3,74.1 " /></g><g id="bbox:4.1_50.2_4.2_50.3" ><polygon points="372.1,74.1 376.0,74.1 376.0,80.1 372.1,80.1 372.1,74.1 " /></g><g id="bbox:4.2_50.2_4.3_50.3" ><polygon points="376.0,74.1 379.8,74.1 379.8,80.1 376.0,80.1 376.0,74.1 " /></g><g id="bbox:1.4_50.1_1.5_50.2" ><polygon points="268.2,80.1 272.1,80.1 272.1,86.1 268.2,86.1 268.2,80.1 " /></g><g id="bbox:1.5_50.1_1.6_50.2" ><polygon points="272.1,80.1 275.9,80.1 275.9,86.1 272.1,86.1 272.1,80.1 " /></g><g id="bbox:1.6_50.1_1.7_50.2" ><polygon points="275.9,80.1 279.8,80.1 279.8,86.1 275.9,86.1 275.9,80.1 " /></g><g id="bbox:1.7_50.1_1.8_50.2" ><polygon points="279.8,80.1 283.6,80.1 283.6,86.1 279.8,86.1 279.8,80.1 " /></g><g id="bbox:1.8_50.1_1.9_50.2" ><polygon points="283.6,80.1 287.5,80.1 287.5,86.1 283.6,86.1 283.6,80.1 " /></g><g id="bbox:1.9_50.1_2_50.2" ><polygon points="287.5,80.1 291.3,80.1 291.3,86.1 287.5,86.1 287.5,80.1 " /></g><g id="bbox:2_50.1_2.1_50.2" ><polygon points="291.3,80.1 295.2,80.1 295.2,86.1 291.3,86.1 291.3,80.1 " /></g><g id="bbox:2.1_50.1_2.2_50.2" ><polygon points="295.2,80.1 299.0,80.1 299.0,86.1 295.2,86.1 295.2,80.1 " /></g><g id="bbox:2.2_50.1_2.3_50.2" ><polygon points="299.0,80.1 302.8,80.1 302.8,86.1 299.0,86.1 299.0,80.1 " /></g><g id="bbox:2.3_50.1_2.4_50.2" ><polygon points="302.8,80.1 306.7,80.1 306.7,86.1 302.8,86.1 302.8,80.1 " /></g><g id="bbox:2.4_50.1_2.5_50.2" ><polygon points="306.7,80.1 310.5,80.1 310.5,86.1 306.7,86.1 306.7,80.1 " /></g><g id="bbox:2.5_50.1_2.6_50.2" ><polygon points="310.5,80.1 314.4,80.1 314.4,86.1 310.5,86.1 310.5,80.1 " /></g><g id="bbox:2.6_50.1_2.7_50.2" ><polygon points="314.4,80.1 318.2,80.1 318.2,86.1 314.4,86.1 314.4,80.1 " /></g><g id="bbox:2.7_50.1_2.8_50.2" ><polygon points="318.2,80.1 322.1,80.1 322.1,86.1 318.2,86.1 318.2,80.1 " /></g><g id="bbox:2.8_50.1_2.9_50.2" ><polygon points="322.1,80.1 325.9,80.1 325.9,86.1 322.1,86.1 322.1,80.1 " /></g><g id="bbox:2.9_50.1_3_50.2" ><polygon points="325.9,80.1 329.8,80.1 329.8,86.1 325.9,86.1 325.9,80.1 " /></g><g id="bbox:3_50.1_3.1_50.2" ><polygon points="329.8,80.1 333.6,80.1 333.6,86.1 329.8,86.1 329.8,80.1 " /></g><g id="bbox:3.1_50.1_3.2_50.2" ><polygon points="333.6,80.1 337.5,80.1 337.5,86.1 333.6,86.1 333.6,80.1 " /></g><g id="bbox:3.2_50.1_3.3_50.2" ><polygon points="337.5,80.1 341.3,80.1 341.3,86.1 337.5,86.1 337.5,80.1 " /></g><g id="bbox:3.3_50.1_3.4_50.2" ><polygon points="341.3,80.1 345.2,80.1 345.2,86.1 341.3,86.1 341.3,80.1 " /></g><g id="bbox:3.4_50.1_3.5_50.2" ><polygon points="345.2,80.1 349.0,80.1 349.0,86.1 345.2,86.1 345.2,80.1 " /></g><g id="bbox:3.5_50.1_3.6_50.2" ><polygon points="349.0,80.1 352.9,80.1 352.9,86.1 349.0,86.1 349.0,80.1 " /></g><g id="bbox:3.6_50.1_3.7_50.2" ><polygon points="352.9,80.1 356.7,80.1 356.7,86.1 352.9,86.1 352.9,80.1 " /></g><g id="bbox:3.7_50.1_3.8_50.2" ><polygon points="356.7,80.1 360.6,80.1 360.6,86.1 356.7,86.1 356.7,80.1 " /></g><g id="bbox:3.8_50.1_3.9_50.2" ><polygon points="360.6,80.1 364.4,80.1 364.4,86.1 360.6,86.1 360.6,80.1 " /></g><g id="bbox:3.9_50.1_4_50.2" ><polygon points="364.4,80.1 368.3,80.1 368.3,86.1 364.4,86.1 364.4,80.1 " /></g><g id="bbox:4_50.1_4.1_50.2" ><polygon points="368.3,80.1 372.1,80.1 372.1,86.1 368.3,86.1 368.3,80.1 " /></g><g id="bbox:4.1_50.1_4.2_50.2" ><polygon points="372.1,80.1 376.0,80.1 376.0,86.1 372.1,86.1 372.1,80.1 " /></g><g id="bbox:4.2_50.1_4.3_50.2" ><polygon points="376.0,80.1 379.8,80.1 379.8,86.1 376.0,86.1 376.0,80.1 " /></g><g id="bbox:4.7_50.1_4.8_50.2" ><polygon points="395.2,80.1 399.1,80.1 399.1,86.1 395.2,86.1 395.2,80.1 " /></g><g id="bbox:4.8_50.1_4.9_50.2" ><polygon points="399.1,80.1 402.9,80.1 402.9,86.1 399.1,86.1 399.1,80.1 " /></g><g id="bbox:1.2_50_1.3_50.1" ><polygon points="260.5,86.1 264.4,86.1 264.4,92.1 260.5,92.1 260.5,86.1 " /></g><g id="bbox:1.3_50_1.4_50.1" ><polygon points="264.4,86.1 268.2,86.1 268.2,92.1 264.4,92.1 264.4,86.1 " /></g><g id="bbox:1.4_50_1.5_50.1" ><polygon points="268.2,86.1 272.1,86.1 272.1,92.1 268.2,92.1 268.2,86.1 " /></g><g id="bbox:1.5_50_1.6_50.1" ><polygon points="272.1,86.1 275.9,86.1 275.9,92.1 272.1,92.1 272.1,86.1 " /></g><g id="bbox:1.6_50_1.7_50.1" ><polygon points="275.9,86.1 279.8,86.1 279.8,92.1 275.9,92.1 275.9,86.1 " /></g><g id="bbox:1.7_50_1.8_50.1" ><polygon points="279.8,86.1 283.6,86.1 283.6,92.1 279.8,92.1 279.8,86.1 " /></g><g id="bbox:1.8_50_1.9_50.1" ><polygon points="283.6,86.1 287.5,86.1 287.5,92.1 283.6,92.1 283.6,86.1 " /></g><g id="bbox:1.9_50_2_50.1" ><polygon points="287.5,86.1 291.3,86.1 291.3,92.1 287.5,92.1 287.5,86.1 " /></g><g id="bbox:2_50_2.1_50.1" ><polygon points="291.3,86.1 295.2,86.1 295.2,92.1 291.3,92.1 291.3,86.1 " /></g><g id="bbox:2.1_50_2.2_50.1" ><polygon points="295.2,86.1 299.0,86.1 299.0,92.1 295.2,92.1 295.2,86.1 " /></g><g id="bbox:2.2_50_2.3_50.1" ><polygon points="299.0,86.1 302.8,86.1 302.8,92.1 299.0,92.1 299.0,86.1 " /></g><g id="bbox:2.3_50_2.4_50.1" ><polygon points="302.8,86.1 306.7,86.1 306.7,92.1 302.8,92.1 302.8,86.1 " /></g><g id="bbox:2.4_50_2.5_50.1" ><polygon points="306.7,86.1 310.5,86.1 310.5,92.1 306.7,92.1 306.7,86.1 " /></g><g id="bbox:2.5_50_2.6_50.1" ><polygon points="310.5,86.1 314.4,86.1 314.4,92.1 310.5,92.1 310.5,86.1 " /></g><g id="bbox:2.6_50_2.7_50.1" ><polygon points="314.4,86.1 318.2,86.1 318.2,92.1 314.4,92.1 314.4,86.1 " /></g><g id="bbox:2.7_50_2.8_50.1" ><polygon points="318.2,86.1 322.1,86.1 322.1,92.1 318.2,92.1 318.2,86.1 " /></g><g id="bbox:2.8_50_2.9_50.1" ><polygon points="322.1,86.1 325.9,86.1 325.9,92.1 322.1,92.1 322.1,86.1 " /></g><g id="bbox:2.9_50_3_50.1" ><polygon points="325.9,86.1 329.8,86.1 329.8,92.1 325.9,92.1 325.9,86.1 " /></g><g id="bbox:3_50_3.1_50.1" ><polygon points="329.8,86.1 333.6,86.1 333.6,92.1 329.8,92.1 329.8,86.1 " /></g><g id="bbox:3.1_50_3.2_50.1" ><polygon points="333.6,86.1 337.5,86.1 337.5,92.1 333.6,92.1 333.6,86.1 " /></g><g id="bbox:3.2_50_3.3_50.1" ><polygon points="337.5,86.1 341.3,86.1 341.3,92.1 337.5,92.1 337.5,86.1 " /></g><g id="bbox:3.3_50_3.4_50.1" ><polygon points="341.3,86.1 345.2,86.1 345.2,92.1 341.3,92.1 341.3,86.1 " /></g><g id="bbox:3.4_50_3.5_50.1" ><polygon points="345.2,86.1 349.0,86.1 349.0,92.1 345.2,92.1 345.2,86.1 " /></g><g id="bbox:3.5_50_3.6_50.1" ><polygon points="349.0,86.1 352.9,86.1 352.9,92.1 349.0,92.1 349.0,86.1 " /></g><g id="bbox:3.6_50_3.7_50.1" ><polygon points="352.9,86.1 356.7,86.1 356.7,92.1 352.9,92.1 352.9,86.1 " /></g><g id="bbox:3.7_50_3.8_50.1" ><polygon points="356.7,86.1 360.6,86.1 360.6,92.1 356.7,92.1 356.7,86.1 " /></g><g id="bbox:3.8_50_3.9_50.1" ><polygon points="360.6,86.1 364.4,86.1 364.4,92.1 360.6,92.1 360.6,86.1 " /></g><g id="bbox:3.9_50_4_50.1" ><polygon points="364.4,86.1 368.3,86.1 368.3,92.1 364.4,92.1 364.4,86.1 " /></g><g id="bbox:4_50_4.1_50.1" ><polygon points="368.3,86.1 372.1,86.1 372.1,92.1 368.3,92.1 368.3,86.1 " /></g><g id="bbox:4.1_50_4.2_50.1" ><polygon points="372.1,86.1 376.0,86.1 376.0,92.1 372.1,92.1 372.1,86.1 " /></g><g id="bbox:4.2_50_4.3_50.1" ><polygon points="376.0,86.1 379.8,86.1 379.8,92.1 376.0,92.1 376.0,86.1 " /></g><g id="bbox:4.6_50_4.7_50.1" ><polygon points="391.4,86.1 395.2,86.1 395.2,92.1 391.4,92.1 391.4,86.1 " /></g><g id="bbox:4.7_50_4.8_50.1" ><polygon points="395.2,86.1 399.1,86.1 399.1,92.1 395.2,92.1 395.2,86.1 " /></g><g id="bbox:4.8_50_4.9_50.1" ><polygon points="399.1,86.1 402.9,86.1 402.9,92.1 399.1,92.1 399.1,86.1 " /></g><g id="bbox:0.8_49.9_0.9_50" ><polygon points="245.1,92.1 249.0,92.1 249.0,98.1 245.1,98.1 245.1,92.1 " /></g><g id="bbox:0.9_49.9_1_50" ><polygon points="249.0,92.1 252.8,92.1 252.8,98.1 249.0,98.1 249.0,92.1 " /></g><g id="bbox:1_49.9_1.1_50" ><polygon points="252.8,92.1 256.7,92.1 256.7,98.1 252.8,98.1 252.8,92.1 " /></g><g id="bbox:1.1_49.9_1.2_50" ><polygon points="256.7,92.1 260.5,92.1 260.5,98.1 256.7,98.1 256.7,92.1 " /></g><g id="bbox:1.2_49.9_1.3_50" ><polygon points="260.5,92.1 264.4,92.1 264.4,98.1 260.5,98.1 260.5,92.1 " /></g><g id="bbox:1.3_49.9_1.4_50" ><polygon points="264.4,92.1 268.2,92.1 268.2,98.1 264.4,98.1 264.4,92.1 " /></g><g id="bbox:1.4_49.9_1.5_50" ><polygon points="268.2,92.1 272.1,92.1 272.1,98.1 268.2,98.1 268.2,92.1 " /></g><g id="bbox:1.5_49.9_1.6_50" ><polygon points="272.1,92.1 275.9,92.1 275.9,98.1 272.1,98.1 272.1,92.1 " /></g><g id="bbox:1.6_49.9_1.7_50" ><polygon points="275.9,92.1 279.8,92.1 279.8,98.1 275.9,98.1 275.9,92.1 " /></g><g id="bbox:1.7_49.9_1.8_50" ><polygon points="279.8,92.1 283.6,92.1 283.6,98.1 279.8,98.1 279.8,92.1 " /></g><g id="bbox:1.8_49.9_1.9_50" ><polygon points="283.6,92.1 287.5,92.1 287.5,98.1 283.6,98.1 283.6,92.1 " /></g><g id="bbox:1.9_49.9_2_50" ><polygon points="287.5,92.1 291.3,92.1 291.3,98.1 287.5,98.1 287.5,92.1 " /></g><g id="bbox:2_49.9_2.1_50" ><polygon points="291.3,92.1 295.2,92.1 295.2,98.1 291.3,98.1 291.3,92.1 " /></g><g id="bbox:2.1_49.9_2.2_50" ><polygon points="295.2,92.1 299.0,92.1 299.0,98.1 295.2,98.1 295.2,92.1 " /></g><g id="bbox:2.2_49.9_2.3_50" ><polygon points="299.0,92.1 302.8,92.1 302.8,98.1 299.0,98.1 299.0,92.1 " /></g><g id="bbox:2.3_49.9_2.4_50" ><polygon points="302.8,92.1 306.7,92.1 306.7,98.1 302.8,98.1 302.8,92.1 " /></g><g id="bbox:2.4_49.9_2.5_50" ><polygon points="306.7,92.1 310.5,92.1 310.5,98.1 306.7,98.1 306.7,92.1 " /></g><g id="bbox:2.5_49.9_2.6_50" ><polygon points="310.5,92.1 314.4,92.1 314.4,98.1 310.5,98.1 310.5,92.1 " /></g><g id="bbox:2.6_49.9_2.7_50" ><polygon points="314.4,92.1 318.2,92.1 318.2,98.1 314.4,98.1 314.4,92.1 " /></g><g id="bbox:2.7_49.9_2.8_50" ><polygon points="318.2,92.1 322.1,92.1 322.1,98.1 318.2,98.1 318.2,92.1 " /></g><g id="bbox:2.8_49.9_2.9_50" ><polygon points="322.1,92.1 325.9,92.1 325.9,98.1 322.1,98.1 322.1,92.1 " /></g><g id="bbox:2.9_49.9_3_50" ><polygon points="325.9,92.1 329.8,92.1 329.8,98.1 325.9,98.1 325.9,92.1 " /></g><g id="bbox:3_49.9_3.1_50" ><polygon points="329.8,92.1 333.6,92.1 333.6,98.1 329.8,98.1 329.8,92.1 " /></g><g id="bbox:3.1_49.9_3.2_50" ><polygon points="333.6,92.1 337.5,92.1 337.5,98.1 333.6,98.1 333.6,92.1 " /></g><g id="bbox:3.2_49.9_3.3_50" ><polygon points="337.5,92.1 341.3,92.1 341.3,98.1 337.5,98.1 337.5,92.1 " /></g><g id="bbox:3.3_49.9_3.4_50" ><polygon points="341.3,92.1 345.2,92.1 345.2,98.1 341.3,98.1 341.3,92.1 " /></g><g id="bbox:3.4_49.9_3.5_50" ><polygon points="345.2,92.1 349.0,92.1 349.0,98.1 345.2,98.1 345.2,92.1 " /></g><g id="bbox:3.5_49.9_3.6_50" ><polygon points="349.0,92.1 352.9,92.1 352.9,98.1 349.0,98.1 349.0,92.1 " /></g><g id="bbox:3.6_49.9_3.7_50" ><polygon points="352.9,92.1 356.7,92.1 356.7,98.1 352.9,98.1 352.9,92.1 " /></g><g id="bbox:3.7_49.9_3.8_50" ><polygon points="356.7,92.1 360.6,92.1 360.6,98.1 356.7,98.1 356.7,92.1 " /></g><g id="bbox:3.8_49.9_3.9_50" ><polygon points="360.6,92.1 364.4,92.1 364.4,98.1 360.6,98.1 360.6,92.1 " /></g><g id="bbox:3.9_49.9_4_50" ><polygon points="364.4,92.1 368.3,92.1 368.3,98.1 364.4,98.1 364.4,92.1 " /></g><g id="bbox:4_49.9_4.1_50" ><polygon points="368.3,92.1 372.1,92.1 372.1,98.1 368.3,98.1 368.3,92.1 " /></g><g id="bbox:4.1_49.9_4.2_50" ><polygon points="372.1,92.1 376.0,92.1 376.0,98.1 372.1,98.1 372.1,92.1 " /></g><g id="bbox:4.2_49.9_4.3_50" ><polygon points="376.0,92.1 379.8,92.1 379.8,98.1 376.0,98.1 376.0,92.1 " /></g><g id="bbox:4.3_49.9_4.4_50" ><polygon points="379.8,92.1 383.7,92.1 383.7,98.1 379.8,98.1 379.8,92.1 " /></g><g id="bbox:4.4_49.9_4.5_50" ><polygon points="383.7,92.1 387.5,92.1 387.5,98.1 383.7,98.1 383.7,92.1 " /></g><g id="bbox:4.5_49.9_4.6_50" ><polygon points="387.5,92.1 391.4,92.1 391.4,98.1 387.5,98.1 387.5,92.1 " /></g><g id="bbox:4.6_49.9_4.7_50" ><polygon points="391.4,92.1 395.2,92.1 395.2,98.1 391.4,98.1 391.4,92.1 " /></g><g id="bbox:4.7_49.9_4.8_50" ><polygon points="395.2,92.1 399.1,92.1 399.1,98.1 395.2,98.1 395.2,92.1 " /></g><g id="bbox:4.8_49.9_4.9_50" ><polygon points="399.1,92.1 402.9,92.1 402.9,98.1 399.1,98.1 399.1,92.1 " /></g><g id="bbox:0.4_49.8_0.5_49.9" ><polygon points="229.7,98.1 233.6,98.1 233.6,104.1 229.7,104.1 229.7,98.1 " /></g><g id="bbox:0.5_49.8_0.6_49.9" ><polygon points="233.6,98.1 237.4,98.1 237.4,104.1 233.6,104.1 233.6,98.1 " /></g><g id="bbox:0.6_49.8_0.7_49.9" ><polygon points="237.4,98.1 241.3,98.1 241.3,104.1 237.4,104.1 237.4,98.1 " /></g><g id="bbox:0.7_49.8_0.8_49.9" ><polygon points="241.3,98.1 245.1,98.1 245.1,104.1 241.3,104.1 241.3,98.1 " /></g><g id="bbox:0.8_49.8_0.9_49.9" ><polygon points="245.1,98.1 249.0,98.1 249.0,104.1 245.1,104.1 245.1,98.1 " /></g><g id="bbox:0.9_49.8_1_49.9" ><polygon points="249.0,98.1 252.8,98.1 252.8,104.1 249.0,104.1 249.0,98.1 " /></g><g id="bbox:1_49.8_1.1_49.9" ><polygon points="252.8,98.1 256.7,98.1 256.7,104.1 252.8,104.1 252.8,98.1 " /></g><g id="bbox:1.1_49.8_1.2_49.9" ><polygon points="256.7,98.1 260.5,98.1 260.5,104.1 256.7,104.1 256.7,98.1 " /></g><g id="bbox:1.2_49.8_1.3_49.9" ><polygon points="260.5,98.1 264.4,98.1 264.4,104.1 260.5,104.1 260.5,98.1 " /></g><g id="bbox:1.3_49.8_1.4_49.9" ><polygon points="264.4,98.1 268.2,98.1 268.2,104.1 264.4,104.1 264.4,98.1 " /></g><g id="bbox:1.4_49.8_1.5_49.9" ><polygon points="268.2,98.1 272.1,98.1 272.1,104.1 268.2,104.1 268.2,98.1 " /></g><g id="bbox:1.5_49.8_1.6_49.9" ><polygon points="272.1,98.1 275.9,98.1 275.9,104.1 272.1,104.1 272.1,98.1 " /></g><g id="bbox:1.6_49.8_1.7_49.9" ><polygon points="275.9,98.1 279.8,98.1 279.8,104.1 275.9,104.1 275.9,98.1 " /></g><g id="bbox:1.7_49.8_1.8_49.9" ><polygon points="279.8,98.1 283.6,98.1 283.6,104.1 279.8,104.1 279.8,98.1 " /></g><g id="bbox:1.8_49.8_1.9_49.9" ><polygon points="283.6,98.1 287.5,98.1 287.5,104.1 283.6,104.1 283.6,98.1 " /></g><g id="bbox:1.9_49.8_2_49.9" ><polygon points="287.5,98.1 291.3,98.1 291.3,104.1 287.5,104.1 287.5,98.1 " /></g><g id="bbox:2_49.8_2.1_49.9" ><polygon points="291.3,98.1 295.2,98.1 295.2,104.1 291.3,104.1 291.3,98.1 " /></g><g id="bbox:2.1_49.8_2.2_49.9" ><polygon points="295.2,98.1 299.0,98.1 299.0,104.1 295.2,104.1 295.2,98.1 " /></g><g id="bbox:2.2_49.8_2.3_49.9" ><polygon points="299.0,98.1 302.8,98.1 302.8,104.1 299.0,104.1 299.0,98.1 " /></g><g id="bbox:2.3_49.8_2.4_49.9" ><polygon points="302.8,98.1 306.7,98.1 306.7,104.1 302.8,104.1 302.8,98.1 " /></g><g id="bbox:2.4_49.8_2.5_49.9" ><polygon points="306.7,98.1 310.5,98.1 310.5,104.1 306.7,104.1 306.7,98.1 " /></g><g id="bbox:2.5_49.8_2.6_49.9" ><polygon points="310.5,98.1 314.4,98.1 314.4,104.1 310.5,104.1 310.5,98.1 " /></g><g id="bbox:2.6_49.8_2.7_49.9" ><polygon points="314.4,98.1 318.2,98.1 318.2,104.1 314.4,104.1 314.4,98.1 " /></g><g id="bbox:2.7_49.8_2.8_49.9" ><polygon points="318.2,98.1 322.1,98.1 322.1,104.1 318.2,104.1 318.2,98.1 " /></g><g id="bbox:2.8_49.8_2.9_49.9" ><polygon points="322.1,98.1 325.9,98.1 325.9,104.1 322.1,104.1 322.1,98.1 " /></g><g id="bbox:2.9_49.8_3_49.9" ><polygon points="325.9,98.1 329.8,98.1 329.8,104.1 325.9,104.1 325.9,98.1 " /></g><g id="bbox:3_49.8_3.1_49.9" ><polygon points="329.8,98.1 333.6,98.1 333.6,104.1 329.8,104.1 329.8,98.1 " /></g><g id="bbox:3.1_49.8_3.2_49.9" ><polygon points="333.6,98.1 337.5,98.1 337.5,104.1 333.6,104.1 333.6,98.1 " /></g><g id="bbox:3.2_49.8_3.3_49.9" ><polygon points="337.5,98.1 341.3,98.1 341.3,104.1 337.5,104.1 337.5,98.1 " /></g><g id="bbox:3.3_49.8_3.4_49.9" ><polygon points="341.3,98.1 345.2,98.1 345.2,104.1 341.3,104.1 341.3,98.1 " /></g><g id="bbox:3.4_49.8_3.5_49.9" ><polygon points="345.2,98.1 349.0,98.1 349.0,104.1 345.2,104.1 345.2,98.1 " /></g><g id="bbox:3.5_49.8_3.6_49.9" ><polygon points="349.0,98.1 352.9,98.1 352.9,104.1 349.0,104.1 349.0,98.1 " /></g><g id="bbox:3.6_49.8_3.7_49.9" ><polygon points="352.9,98.1 356.7,98.1 356.7,104.1 352.9,104.1 352.9,98.1 " /></g><g id="bbox:3.7_49.8_3.8_49.9" ><polygon points="356.7,98.1 360.6,98.1 360.6,104.1 356.7,104.1 356.7,98.1 " /></g><g id="bbox:3.8_49.8_3.9_49.9" ><polygon points="360.6,98.1 364.4,98.1 364.4,104.1 360.6,104.1 360.6,98.1 " /></g><g id="bbox:3.9_49.8_4_49.9" ><polygon points="364.4,98.1 368.3,98.1 368.3,104.1 364.4,104.1 364.4,98.1 " /></g><g id="bbox:4_49.8_4.1_49.9" ><polygon points="368.3,98.1 372.1,98.1 372.1,104.1 368.3,104.1 368.3,98.1 " /></g><g id="bbox:4.1_49.8_4.2_49.9" ><polygon points="372.1,98.1 376.0,98.1 376.0,104.1 372.1,104.1 372.1,98.1 " /></g><g id="bbox:4.2_49.8_4.3_49.9" ><polygon points="376.0,98.1 379.8,98.1 379.8,104.1 376.0,104.1 376.0,98.1 " /></g><g id="bbox:4.3_49.8_4.4_49.9" ><polygon points="379.8,98.1 383.7,98.1 383.7,104.1 379.8,104.1 379.8,98.1 " /></g><g id="bbox:4.4_49.8_4.5_49.9" ><polygon points="383.7,98.1 387.5,98.1 387.5,104.1 383.7,104.1 383.7,98.1 " /></g><g id="bbox:4.5_49.8_4.6_49.9" ><polygon points="387.5,98.1 391.4,98.1 391.4,104.1 387.5,104.1 387.5,98.1 " /></g><g id="bbox:4.6_49.8_4.7_49.9" ><polygon points="391.4,98.1 395.2,98.1 395.2,104.1 391.4,104.1 391.4,98.1 " /></g><g id="bbox:4.7_49.8_4.8_49.9" ><polygon points="395.2,98.1 399.1,98.1 399.1,104.1 395.2,104.1 395.2,98.1 " /></g><g id="bbox:4.8_49.8_4.9_49.9" ><polygon points="399.1,98.1 402.9,98.1 402.9,104.1 399.1,104.1 399.1,98.1 " /></g><g id="bbox:4.9_49.8_5_49.9" ><polygon points="402.9,98.1 406.7,98.1 406.7,104.1 402.9,104.1 402.9,98.1 " /></g><g id="bbox:-2_49.7_-1.9_49.8" ><polygon points="137.4,104.1 141.2,104.1 141.2,110.0 137.4,110.0 137.4,104.1 " /></g><g id="bbox:-1.9_49.7_-1.8_49.8" ><polygon points="141.2,104.1 145.1,104.1 145.1,110.0 141.2,110.0 141.2,104.1 " /></g><g id="bbox:-1.5_49.7_-1.4_49.8" ><polygon points="156.6,104.1 160.5,104.1 160.5,110.0 156.6,110.0 156.6,104.1 " /></g><g id="bbox:-1.4_49.7_-1.3_49.8" ><polygon points="160.5,104.1 164.3,104.1 164.3,110.0 160.5,110.0 160.5,104.1 " /></g><g id="bbox:0.1_49.7_0.2_49.8" ><polygon points="218.2,104.1 222.0,104.1 222.0,110.0 218.2,110.0 218.2,104.1 " /></g><g id="bbox:0.2_49.7_0.3_49.8" ><polygon points="222.0,104.1 225.9,104.1 225.9,110.0 222.0,110.0 222.0,104.1 " /></g><g id="bbox:0.3_49.7_0.4_49.8" ><polygon points="225.9,104.1 229.7,104.1 229.7,110.0 225.9,110.0 225.9,104.1 " /></g><g id="bbox:0.4_49.7_0.5_49.8" ><polygon points="229.7,104.1 233.6,104.1 233.6,110.0 229.7,110.0 229.7,104.1 " /></g><g id="bbox:0.5_49.7_0.6_49.8" ><polygon points="233.6,104.1 237.4,104.1 237.4,110.0 233.6,110.0 233.6,104.1 " /></g><g id="bbox:0.6_49.7_0.7_49.8" ><polygon points="237.4,104.1 241.3,104.1 241.3,110.0 237.4,110.0 237.4,104.1 " /></g><g id="bbox:0.7_49.7_0.8_49.8" ><polygon points="241.3,104.1 245.1,104.1 245.1,110.0 241.3,110.0 241.3,104.1 " /></g><g id="bbox:0.8_49.7_0.9_49.8" ><polygon points="245.1,104.1 249.0,104.1 249.0,110.0 245.1,110.0 245.1,104.1 " /></g><g id="bbox:0.9_49.7_1_49.8" ><polygon points="249.0,104.1 252.8,104.1 252.8,110.0 249.0,110.0 249.0,104.1 " /></g><g id="bbox:1_49.7_1.1_49.8" ><polygon points="252.8,104.1 256.7,104.1 256.7,110.0 252.8,110.0 252.8,104.1 " /></g><g id="bbox:1.1_49.7_1.2_49.8" ><polygon points="256.7,104.1 260.5,104.1 260.5,110.0 256.7,110.0 256.7,104.1 " /></g><g id="bbox:1.2_49.7_1.3_49.8" ><polygon points="260.5,104.1 264.4,104.1 264.4,110.0 260.5,110.0 260.5,104.1 " /></g><g id="bbox:1.3_49.7_1.4_49.8" ><polygon points="264.4,104.1 268.2,104.1 268.2,110.0 264.4,110.0 264.4,104.1 " /></g><g id="bbox:1.4_49.7_1.5_49.8" ><polygon points="268.2,104.1 272.1,104.1 272.1,110.0 268.2,110.0 268.2,104.1 " /></g><g id="bbox:1.5_49.7_1.6_49.8" ><polygon points="272.1,104.1 275.9,104.1 275.9,110.0 272.1,110.0 272.1,104.1 " /></g><g id="bbox:1.6_49.7_1.7_49.8" ><polygon points="275.9,104.1 279.8,104.1 279.8,110.0 275.9,110.0 275.9,104.1 " /></g><g id="bbox:1.7_49.7_1.8_49.8" ><polygon points="279.8,104.1 283.6,104.1 283.6,110.0 279.8,110.0 279.8,104.1 " /></g><g id="bbox:1.8_49.7_1.9_49.8" ><polygon points="283.6,104.1 287.5,104.1 287.5,110.0 283.6,110.0 283.6,104.1 " /></g><g id="bbox:1.9_49.7_2_49.8" ><polygon points="287.5,104.1 291.3,104.1 291.3,110.0 287.5,110.0 287.5,104.1 " /></g><g id="bbox:2_49.7_2.1_49.8" ><polygon points="291.3,104.1 295.2,104.1 295.2,110.0 291.3,110.0 291.3,104.1 " /></g><g id="bbox:2.1_49.7_2.2_49.8" ><polygon points="295.2,104.1 299.0,104.1 299.0,110.0 295.2,110.0 295.2,104.1 " /></g><g id="bbox:2.2_49.7_2.3_49.8" ><polygon points="299.0,104.1 302.8,104.1 302.8,110.0 299.0,110.0 299.0,104.1 " /></g><g id="bbox:2.3_49.7_2.4_49.8" ><polygon points="302.8,104.1 306.7,104.1 306.7,110.0 302.8,110.0 302.8,104.1 " /></g><g id="bbox:2.4_49.7_2.5_49.8" ><polygon points="306.7,104.1 310.5,104.1 310.5,110.0 306.7,110.0 306.7,104.1 " /></g><g id="bbox:2.5_49.7_2.6_49.8" ><polygon points="310.5,104.1 314.4,104.1 314.4,110.0 310.5,110.0 310.5,104.1 " /></g><g id="bbox:2.6_49.7_2.7_49.8" ><polygon points="314.4,104.1 318.2,104.1 318.2,110.0 314.4,110.0 314.4,104.1 " /></g><g id="bbox:2.7_49.7_2.8_49.8" ><polygon points="318.2,104.1 322.1,104.1 322.1,110.0 318.2,110.0 318.2,104.1 " /></g><g id="bbox:2.8_49.7_2.9_49.8" ><polygon points="322.1,104.1 325.9,104.1 325.9,110.0 322.1,110.0 322.1,104.1 " /></g><g id="bbox:2.9_49.7_3_49.8" ><polygon points="325.9,104.1 329.8,104.1 329.8,110.0 325.9,110.0 325.9,104.1 " /></g><g id="bbox:3_49.7_3.1_49.8" ><polygon points="329.8,104.1 333.6,104.1 333.6,110.0 329.8,110.0 329.8,104.1 " /></g><g id="bbox:3.1_49.7_3.2_49.8" ><polygon points="333.6,104.1 337.5,104.1 337.5,110.0 333.6,110.0 333.6,104.1 " /></g><g id="bbox:3.2_49.7_3.3_49.8" ><polygon points="337.5,104.1 341.3,104.1 341.3,110.0 337.5,110.0 337.5,104.1 " /></g><g id="bbox:3.3_49.7_3.4_49.8" ><polygon points="341.3,104.1 345.2,104.1 345.2,110.0 341.3,110.0 341.3,104.1 " /></g><g id="bbox:3.4_49.7_3.5_49.8" ><polygon points="345.2,104.1 349.0,104.1 349.0,110.0 345.2,110.0 345.2,104.1 " /></g><g id="bbox:3.5_49.7_3.6_49.8" ><polygon points="349.0,104.1 352.9,104.1 352.9,110.0 349.0,110.0 349.0,104.1 " /></g><g id="bbox:3.6_49.7_3.7_49.8" ><polygon points="352.9,104.1 356.7,104.1 356.7,110.0 352.9,110.0 352.9,104.1 " /></g><g id="bbox:3.7_49.7_3.8_49.8" ><polygon points="356.7,104.1 360.6,104.1 360.6,110.0 356.7,110.0 356.7,104.1 " /></g><g id="bbox:3.8_49.7_3.9_49.8" ><polygon points="360.6,104.1 364.4,104.1 364.4,110.0 360.6,110.0 360.6,104.1 " /></g><g id="bbox:3.9_49.7_4_49.8" ><polygon points="364.4,104.1 368.3,104.1 368.3,110.0 364.4,110.0 364.4,104.1 " /></g><g id="bbox:4_49.7_4.1_49.8" ><polygon points="368.3,104.1 372.1,104.1 372.1,110.0 368.3,110.0 368.3,104.1 " /></g><g id="bbox:4.1_49.7_4.2_49.8" ><polygon points="372.1,104.1 376.0,104.1 376.0,110.0 372.1,110.0 372.1,104.1 " /></g><g id="bbox:4.2_49.7_4.3_49.8" ><polygon points="376.0,104.1 379.8,104.1 379.8,110.0 376.0,110.0 376.0,104.1 " /></g><g id="bbox:4.3_49.7_4.4_49.8" ><polygon points="379.8,104.1 383.7,104.1 383.7,110.0 379.8,110.0 379.8,104.1 " /></g><g id="bbox:4.4_49.7_4.5_49.8" ><polygon points="383.7,104.1 387.5,104.1 387.5,110.0 383.7,110.0 383.7,104.1 " /></g><g id="bbox:4.5_49.7_4.6_49.8" ><polygon points="387.5,104.1 391.4,104.1 391.4,110.0 387.5,110.0 387.5,104.1 " /></g><g id="bbox:4.6_49.7_4.7_49.8" ><polygon points="391.4,104.1 395.2,104.1 395.2,110.0 391.4,110.0 391.4,104.1 " /></g><g id="bbox:4.7_49.7_4.8_49.8" ><polygon points="395.2,104.1 399.1,104.1 399.1,110.0 395.2,110.0 395.2,104.1 " /></g><g id="bbox:4.8_49.7_4.9_49.8" ><polygon points="399.1,104.1 402.9,104.1 402.9,110.0 399.1,110.0 399.1,104.1 " /></g><g id="bbox:4.9_49.7_5_49.8" ><polygon points="402.9,104.1 406.7,104.1 406.7,110.0 402.9,110.0 402.9,104.1 " /></g><g id="bbox:5_49.7_5.1_49.8" ><polygon points="406.7,104.1 410.6,104.1 410.6,110.0 406.7,110.0 406.7,104.1 " /></g><g id="bbox:5.1_49.7_5.2_49.8" ><polygon points="410.6,104.1 414.4,104.1 414.4,110.0 410.6,110.0 410.6,104.1 " /></g><g id="bbox:-2_49.6_-1.9_49.7" ><polygon points="137.4,110.0 141.2,110.0 141.2,116.0 137.4,116.0 137.4,110.0 " /></g><g id="bbox:-1.9_49.6_-1.8_49.7" ><polygon points="141.2,110.0 145.1,110.0 145.1,116.0 141.2,116.0 141.2,110.0 " /></g><g id="bbox:-1.8_49.6_-1.7_49.7" ><polygon points="145.1,110.0 148.9,110.0 148.9,116.0 145.1,116.0 145.1,110.0 " /></g><g id="bbox:-1.7_49.6_-1.6_49.7" ><polygon points="148.9,110.0 152.8,110.0 152.8,116.0 148.9,116.0 148.9,110.0 " /></g><g id="bbox:-1.6_49.6_-1.5_49.7" ><polygon points="152.8,110.0 156.6,110.0 156.6,116.0 152.8,116.0 152.8,110.0 " /></g><g id="bbox:-1.5_49.6_-1.4_49.7" ><polygon points="156.6,110.0 160.5,110.0 160.5,116.0 156.6,116.0 156.6,110.0 " /></g><g id="bbox:-1.4_49.6_-1.3_49.7" ><polygon points="160.5,110.0 164.3,110.0 164.3,116.0 160.5,116.0 160.5,110.0 " /></g><g id="bbox:-1.3_49.6_-1.2_49.7" ><polygon points="164.3,110.0 168.2,110.0 168.2,116.0 164.3,116.0 164.3,110.0 " /></g><g id="bbox:0.1_49.6_0.2_49.7" ><polygon points="218.2,110.0 222.0,110.0 222.0,116.0 218.2,116.0 218.2,110.0 " /></g><g id="bbox:0.2_49.6_0.3_49.7" ><polygon points="222.0,110.0 225.9,110.0 225.9,116.0 222.0,116.0 222.0,110.0 " /></g><g id="bbox:0.3_49.6_0.4_49.7" ><polygon points="225.9,110.0 229.7,110.0 229.7,116.0 225.9,116.0 225.9,110.0 " /></g><g id="bbox:0.4_49.6_0.5_49.7" ><polygon points="229.7,110.0 233.6,110.0 233.6,116.0 229.7,116.0 229.7,110.0 " /></g><g id="bbox:0.5_49.6_0.6_49.7" ><polygon points="233.6,110.0 237.4,110.0 237.4,116.0 233.6,116.0 233.6,110.0 " /></g><g id="bbox:0.6_49.6_0.7_49.7" ><polygon points="237.4,110.0 241.3,110.0 241.3,116.0 237.4,116.0 237.4,110.0 " /></g><g id="bbox:0.7_49.6_0.8_49.7" ><polygon points="241.3,110.0 245.1,110.0 245.1,116.0 241.3,116.0 241.3,110.0 " /></g><g id="bbox:0.8_49.6_0.9_49.7" ><polygon points="245.1,110.0 249.0,110.0 249.0,116.0 245.1,116.0 245.1,110.0 " /></g><g id="bbox:0.9_49.6_1_49.7" ><polygon points="249.0,110.0 252.8,110.0 252.8,116.0 249.0,116.0 249.0,110.0 " /></g><g id="bbox:1_49.6_1.1_49.7" ><polygon points="252.8,110.0 256.7,110.0 256.7,116.0 252.8,116.0 252.8,110.0 " /></g><g id="bbox:1.1_49.6_1.2_49.7" ><polygon points="256.7,110.0 260.5,110.0 260.5,116.0 256.7,116.0 256.7,110.0 " /></g><g id="bbox:1.2_49.6_1.3_49.7" ><polygon points="260.5,110.0 264.4,110.0 264.4,116.0 260.5,116.0 260.5,110.0 " /></g><g id="bbox:1.3_49.6_1.4_49.7" ><polygon points="264.4,110.0 268.2,110.0 268.2,116.0 264.4,116.0 264.4,110.0 " /></g><g id="bbox:1.4_49.6_1.5_49.7" ><polygon points="268.2,110.0 272.1,110.0 272.1,116.0 268.2,116.0 268.2,110.0 " /></g><g id="bbox:1.5_49.6_1.6_49.7" ><polygon points="272.1,110.0 275.9,110.0 275.9,116.0 272.1,116.0 272.1,110.0 " /></g><g id="bbox:1.6_49.6_1.7_49.7" ><polygon points="275.9,110.0 279.8,110.0 279.8,116.0 275.9,116.0 275.9,110.0 " /></g><g id="bbox:1.7_49.6_1.8_49.7" ><polygon points="279.8,110.0 283.6,110.0 283.6,116.0 279.8,116.0 279.8,110.0 " /></g><g id="bbox:1.8_49.6_1.9_49.7" ><polygon points="283.6,110.0 287.5,110.0 287.5,116.0 283.6,116.0 283.6,110.0 " /></g><g id="bbox:1.9_49.6_2_49.7" ><polygon points="287.5,110.0 291.3,110.0 291.3,116.0 287.5,116.0 287.5,110.0 " /></g><g id="bbox:2_49.6_2.1_49.7" ><polygon points="291.3,110.0 295.2,110.0 295.2,116.0 291.3,116.0 291.3,110.0 " /></g><g id="bbox:2.1_49.6_2.2_49.7" ><polygon points="295.2,110.0 299.0,110.0 299.0,116.0 295.2,116.0 295.2,110.0 " /></g><g id="bbox:2.2_49.6_2.3_49.7" ><polygon points="299.0,110.0 302.8,110.0 302.8,116.0 299.0,116.0 299.0,110.0 " /></g><g id="bbox:2.3_49.6_2.4_49.7" ><polygon points="302.8,110.0 306.7,110.0 306.7,116.0 302.8,116.0 302.8,110.0 " /></g><g id="bbox:2.4_49.6_2.5_49.7" ><polygon points="306.7,110.0 310.5,110.0 310.5,116.0 306.7,116.0 306.7,110.0 " /></g><g id="bbox:2.5_49.6_2.6_49.7" ><polygon points="310.5,110.0 314.4,110.0 314.4,116.0 310.5,116.0 310.5,110.0 " /></g><g id="bbox:2.6_49.6_2.7_49.7" ><polygon points="314.4,110.0 318.2,110.0 318.2,116.0 314.4,116.0 314.4,110.0 " /></g><g id="bbox:2.7_49.6_2.8_49.7" ><polygon points="318.2,110.0 322.1,110.0 322.1,116.0 318.2,116.0 318.2,110.0 " /></g><g id="bbox:2.8_49.6_2.9_49.7" ><polygon points="322.1,110.0 325.9,110.0 325.9,116.0 322.1,116.0 322.1,110.0 " /></g><g id="bbox:2.9_49.6_3_49.7" ><polygon points="325.9,110.0 329.8,110.0 329.8,116.0 325.9,116.0 325.9,110.0 " /></g><g id="bbox:3_49.6_3.1_49.7" ><polygon points="329.8,110.0 333.6,110.0 333.6,116.0 329.8,116.0 329.8,110.0 " /></g><g id="bbox:3.1_49.6_3.2_49.7" ><polygon points="333.6,110.0 337.5,110.0 337.5,116.0 333.6,116.0 333.6,110.0 " /></g><g id="bbox:3.2_49.6_3.3_49.7" ><polygon points="337.5,110.0 341.3,110.0 341.3,116.0 337.5,116.0 337.5,110.0 " /></g><g id="bbox:3.3_49.6_3.4_49.7" ><polygon points="341.3,110.0 345.2,110.0 345.2,116.0 341.3,116.0 341.3,110.0 " /></g><g id="bbox:3.4_49.6_3.5_49.7" ><polygon points="345.2,110.0 349.0,110.0 349.0,116.0 345.2,116.0 345.2,110.0 " /></g><g id="bbox:3.5_49.6_3.6_49.7" ><polygon points="349.0,110.0 352.9,110.0 352.9,116.0 349.0,116.0 349.0,110.0 " /></g><g id="bbox:3.6_49.6_3.7_49.7" ><polygon points="352.9,110.0 356.7,110.0 356.7,116.0 352.9,116.0 352.9,110.0 " /></g><g id="bbox:3.7_49.6_3.8_49.7" ><polygon points="356.7,110.0 360.6,110.0 360.6,116.0 356.7,116.0 356.7,110.0 " /></g><g id="bbox:3.8_49.6_3.9_49.7" ><polygon points="360.6,110.0 364.4,110.0 364.4,116.0 360.6,116.0 360.6,110.0 " /></g><g id="bbox:3.9_49.6_4_49.7" ><polygon points="364.4,110.0 368.3,110.0 368.3,116.0 364.4,116.0 364.4,110.0 " /></g><g id="bbox:4_49.6_4.1_49.7" ><polygon points="368.3,110.0 372.1,110.0 372.1,116.0 368.3,116.0 368.3,110.0 " /></g><g id="bbox:4.1_49.6_4.2_49.7" ><polygon points="372.1,110.0 376.0,110.0 376.0,116.0 372.1,116.0 372.1,110.0 " /></g><g id="bbox:4.2_49.6_4.3_49.7" ><polygon points="376.0,110.0 379.8,110.0 379.8,116.0 376.0,116.0 376.0,110.0 " /></g><g id="bbox:4.3_49.6_4.4_49.7" ><polygon points="379.8,110.0 383.7,110.0 383.7,116.0 379.8,116.0 379.8,110.0 " /></g><g id="bbox:4.4_49.6_4.5_49.7" ><polygon points="383.7,110.0 387.5,110.0 387.5,116.0 383.7,116.0 383.7,110.0 " /></g><g id="bbox:4.5_49.6_4.6_49.7" ><polygon points="387.5,110.0 391.4,110.0 391.4,116.0 387.5,116.0 387.5,110.0 " /></g><g id="bbox:4.6_49.6_4.7_49.7" ><polygon points="391.4,110.0 395.2,110.0 395.2,116.0 391.4,116.0 391.4,110.0 " /></g><g id="bbox:4.7_49.6_4.8_49.7" ><polygon points="395.2,110.0 399.1,110.0 399.1,116.0 395.2,116.0 395.2,110.0 " /></g><g id="bbox:4.8_49.6_4.9_49.7" ><polygon points="399.1,110.0 402.9,110.0 402.9,116.0 399.1,116.0 399.1,110.0 " /></g><g id="bbox:4.9_49.6_5_49.7" ><polygon points="402.9,110.0 406.7,110.0 406.7,116.0 402.9,116.0 402.9,110.0 " /></g><g id="bbox:5_49.6_5.1_49.7" ><polygon points="406.7,110.0 410.6,110.0 410.6,116.0 406.7,116.0 406.7,110.0 " /></g><g id="bbox:5.1_49.6_5.2_49.7" ><polygon points="410.6,110.0 414.4,110.0 414.4,116.0 410.6,116.0 410.6,110.0 " /></g><g id="bbox:5.2_49.6_5.3_49.7" ><polygon points="414.4,110.0 418.3,110.0 418.3,116.0 414.4,116.0 414.4,110.0 " /></g><g id="bbox:5.3_49.6_5.4_49.7" ><polygon points="418.3,110.0 422.1,110.0 422.1,116.0 418.3,116.0 418.3,110.0 " /></g><g id="bbox:5.4_49.6_5.5_49.7" ><polygon points="422.1,110.0 426.0,110.0 426.0,116.0 422.1,116.0 422.1,110.0 " /></g><g id="bbox:-1.9_49.5_-1.8_49.6" ><polygon points="141.2,116.0 145.1,116.0 145.1,121.9 141.2,121.9 141.2,116.0 " /></g><g id="bbox:-1.8_49.5_-1.7_49.6" ><polygon points="145.1,116.0 148.9,116.0 148.9,121.9 145.1,121.9 145.1,116.0 " /></g><g id="bbox:-1.7_49.5_-1.6_49.6" ><polygon points="148.9,116.0 152.8,116.0 152.8,121.9 148.9,121.9 148.9,116.0 " /></g><g id="bbox:-1.6_49.5_-1.5_49.6" ><polygon points="152.8,116.0 156.6,116.0 156.6,121.9 152.8,121.9 152.8,116.0 " /></g><g id="bbox:-1.5_49.5_-1.4_49.6" ><polygon points="156.6,116.0 160.5,116.0 160.5,121.9 156.6,121.9 156.6,116.0 " /></g><g id="bbox:-1.4_49.5_-1.3_49.6" ><polygon points="160.5,116.0 164.3,116.0 164.3,121.9 160.5,121.9 160.5,116.0 " /></g><g id="bbox:-1.3_49.5_-1.2_49.6" ><polygon points="164.3,116.0 168.2,116.0 168.2,121.9 164.3,121.9 164.3,116.0 " /></g><g id="bbox:0_49.5_0.1_49.6" ><polygon points="214.3,116.0 218.2,116.0 218.2,121.9 214.3,121.9 214.3,116.0 " /></g><g id="bbox:0.1_49.5_0.2_49.6" ><polygon points="218.2,116.0 222.0,116.0 222.0,121.9 218.2,121.9 218.2,116.0 " /></g><g id="bbox:0.2_49.5_0.3_49.6" ><polygon points="222.0,116.0 225.9,116.0 225.9,121.9 222.0,121.9 222.0,116.0 " /></g><g id="bbox:0.3_49.5_0.4_49.6" ><polygon points="225.9,116.0 229.7,116.0 229.7,121.9 225.9,121.9 225.9,116.0 " /></g><g id="bbox:0.4_49.5_0.5_49.6" ><polygon points="229.7,116.0 233.6,116.0 233.6,121.9 229.7,121.9 229.7,116.0 " /></g><g id="bbox:0.5_49.5_0.6_49.6" ><polygon points="233.6,116.0 237.4,116.0 237.4,121.9 233.6,121.9 233.6,116.0 " /></g><g id="bbox:0.6_49.5_0.7_49.6" ><polygon points="237.4,116.0 241.3,116.0 241.3,121.9 237.4,121.9 237.4,116.0 " /></g><g id="bbox:0.7_49.5_0.8_49.6" ><polygon points="241.3,116.0 245.1,116.0 245.1,121.9 241.3,121.9 241.3,116.0 " /></g><g id="bbox:0.8_49.5_0.9_49.6" ><polygon points="245.1,116.0 249.0,116.0 249.0,121.9 245.1,121.9 245.1,116.0 " /></g><g id="bbox:0.9_49.5_1_49.6" ><polygon points="249.0,116.0 252.8,116.0 252.8,121.9 249.0,121.9 249.0,116.0 " /></g><g id="bbox:1_49.5_1.1_49.6" ><polygon points="252.8,116.0 256.7,116.0 256.7,121.9 252.8,121.9 252.8,116.0 " /></g><g id="bbox:1.1_49.5_1.2_49.6" ><polygon points="256.7,116.0 260.5,116.0 260.5,121.9 256.7,121.9 256.7,116.0 " /></g><g id="bbox:1.2_49.5_1.3_49.6" ><polygon points="260.5,116.0 264.4,116.0 264.4,121.9 260.5,121.9 260.5,116.0 " /></g><g id="bbox:1.3_49.5_1.4_49.6" ><polygon points="264.4,116.0 268.2,116.0 268.2,121.9 264.4,121.9 264.4,116.0 " /></g><g id="bbox:1.4_49.5_1.5_49.6" ><polygon points="268.2,116.0 272.1,116.0 272.1,121.9 268.2,121.9 268.2,116.0 " /></g><g id="bbox:1.5_49.5_1.6_49.6" ><polygon points="272.1,116.0 275.9,116.0 275.9,121.9 272.1,121.9 272.1,116.0 " /></g><g id="bbox:1.6_49.5_1.7_49.6" ><polygon points="275.9,116.0 279.8,116.0 279.8,121.9 275.9,121.9 275.9,116.0 " /></g><g id="bbox:1.7_49.5_1.8_49.6" ><polygon points="279.8,116.0 283.6,116.0 283.6,121.9 279.8,121.9 279.8,116.0 " /></g><g id="bbox:1.8_49.5_1.9_49.6" ><polygon points="283.6,116.0 287.5,116.0 287.5,121.9 283.6,121.9 283.6,116.0 " /></g><g id="bbox:1.9_49.5_2_49.6" ><polygon points="287.5,116.0 291.3,116.0 291.3,121.9 287.5,121.9 287.5,116.0 " /></g><g id="bbox:2_49.5_2.1_49.6" ><polygon points="291.3,116.0 295.2,116.0 295.2,121.9 291.3,121.9 291.3,116.0 " /></g><g id="bbox:2.1_49.5_2.2_49.6" ><polygon points="295.2,116.0 299.0,116.0 299.0,121.9 295.2,121.9 295.2,116.0 " /></g><g id="bbox:2.2_49.5_2.3_49.6" ><polygon points="299.0,116.0 302.8,116.0 302.8,121.9 299.0,121.9 299.0,116.0 " /></g><g id="bbox:2.3_49.5_2.4_49.6" ><polygon points="302.8,116.0 306.7,116.0 306.7,121.9 302.8,121.9 302.8,116.0 " /></g><g id="bbox:2.4_49.5_2.5_49.6" ><polygon points="306.7,116.0 310.5,116.0 310.5,121.9 306.7,121.9 306.7,116.0 " /></g><g id="bbox:2.5_49.5_2.6_49.6" ><polygon points="310.5,116.0 314.4,116.0 314.4,121.9 310.5,121.9 310.5,116.0 " /></g><g id="bbox:2.6_49.5_2.7_49.6" ><polygon points="314.4,116.0 318.2,116.0 318.2,121.9 314.4,121.9 314.4,116.0 " /></g><g id="bbox:2.7_49.5_2.8_49.6" ><polygon points="318.2,116.0 322.1,116.0 322.1,121.9 318.2,121.9 318.2,116.0 " /></g><g id="bbox:2.8_49.5_2.9_49.6" ><polygon points="322.1,116.0 325.9,116.0 325.9,121.9 322.1,121.9 322.1,116.0 " /></g><g id="bbox:2.9_49.5_3_49.6" ><polygon points="325.9,116.0 329.8,116.0 329.8,121.9 325.9,121.9 325.9,116.0 " /></g><g id="bbox:3_49.5_3.1_49.6" ><polygon points="329.8,116.0 333.6,116.0 333.6,121.9 329.8,121.9 329.8,116.0 " /></g><g id="bbox:3.1_49.5_3.2_49.6" ><polygon points="333.6,116.0 337.5,116.0 337.5,121.9 333.6,121.9 333.6,116.0 " /></g><g id="bbox:3.2_49.5_3.3_49.6" ><polygon points="337.5,116.0 341.3,116.0 341.3,121.9 337.5,121.9 337.5,116.0 " /></g><g id="bbox:3.3_49.5_3.4_49.6" ><polygon points="341.3,116.0 345.2,116.0 345.2,121.9 341.3,121.9 341.3,116.0 " /></g><g id="bbox:3.4_49.5_3.5_49.6" ><polygon points="345.2,116.0 349.0,116.0 349.0,121.9 345.2,121.9 345.2,116.0 " /></g><g id="bbox:3.5_49.5_3.6_49.6" ><polygon points="349.0,116.0 352.9,116.0 352.9,121.9 349.0,121.9 349.0,116.0 " /></g><g id="bbox:3.6_49.5_3.7_49.6" ><polygon points="352.9,116.0 356.7,116.0 356.7,121.9 352.9,121.9 352.9,116.0 " /></g><g id="bbox:3.7_49.5_3.8_49.6" ><polygon points="356.7,116.0 360.6,116.0 360.6,121.9 356.7,121.9 356.7,116.0 " /></g><g id="bbox:3.8_49.5_3.9_49.6" ><polygon points="360.6,116.0 364.4,116.0 364.4,121.9 360.6,121.9 360.6,116.0 " /></g><g id="bbox:3.9_49.5_4_49.6" ><polygon points="364.4,116.0 368.3,116.0 368.3,121.9 364.4,121.9 364.4,116.0 " /></g><g id="bbox:4_49.5_4.1_49.6" ><polygon points="368.3,116.0 372.1,116.0 372.1,121.9 368.3,121.9 368.3,116.0 " /></g><g id="bbox:4.1_49.5_4.2_49.6" ><polygon points="372.1,116.0 376.0,116.0 376.0,121.9 372.1,121.9 372.1,116.0 " /></g><g id="bbox:4.2_49.5_4.3_49.6" ><polygon points="376.0,116.0 379.8,116.0 379.8,121.9 376.0,121.9 376.0,116.0 " /></g><g id="bbox:4.3_49.5_4.4_49.6" ><polygon points="379.8,116.0 383.7,116.0 383.7,121.9 379.8,121.9 379.8,116.0 " /></g><g id="bbox:4.4_49.5_4.5_49.6" ><polygon points="383.7,116.0 387.5,116.0 387.5,121.9 383.7,121.9 383.7,116.0 " /></g><g id="bbox:4.5_49.5_4.6_49.6" ><polygon points="387.5,116.0 391.4,116.0 391.4,121.9 387.5,121.9 387.5,116.0 " /></g><g id="bbox:4.6_49.5_4.7_49.6" ><polygon points="391.4,116.0 395.2,116.0 395.2,121.9 391.4,121.9 391.4,116.0 " /></g><g id="bbox:4.7_49.5_4.8_49.6" ><polygon points="395.2,116.0 399.1,116.0 399.1,121.9 395.2,121.9 395.2,116.0 " /></g><g id="bbox:4.8_49.5_4.9_49.6" ><polygon points="399.1,116.0 402.9,116.0 402.9,121.9 399.1,121.9 399.1,116.0 " /></g><g id="bbox:4.9_49.5_5_49.6" ><polygon points="402.9,116.0 406.7,116.0 406.7,121.9 402.9,121.9 402.9,116.0 " /></g><g id="bbox:5_49.5_5.1_49.6" ><polygon points="406.7,116.0 410.6,116.0 410.6,121.9 406.7,121.9 406.7,116.0 " /></g><g id="bbox:5.1_49.5_5.2_49.6" ><polygon points="410.6,116.0 414.4,116.0 414.4,121.9 410.6,121.9 410.6,116.0 " /></g><g id="bbox:5.2_49.5_5.3_49.6" ><polygon points="414.4,116.0 418.3,116.0 418.3,121.9 414.4,121.9 414.4,116.0 " /></g><g id="bbox:5.3_49.5_5.4_49.6" ><polygon points="418.3,116.0 422.1,116.0 422.1,121.9 418.3,121.9 418.3,116.0 " /></g><g id="bbox:5.4_49.5_5.5_49.6" ><polygon points="422.1,116.0 426.0,116.0 426.0,121.9 422.1,121.9 422.1,116.0 " /></g><g id="bbox:5.5_49.5_5.6_49.6" ><polygon points="426.0,116.0 429.8,116.0 429.8,121.9 426.0,121.9 426.0,116.0 " /></g><g id="bbox:5.6_49.5_5.7_49.6" ><polygon points="429.8,116.0 433.7,116.0 433.7,121.9 429.8,121.9 429.8,116.0 " /></g><g id="bbox:5.7_49.5_5.8_49.6" ><polygon points="433.7,116.0 437.5,116.0 437.5,121.9 433.7,121.9 433.7,116.0 " /></g><g id="bbox:5.8_49.5_5.9_49.6" ><polygon points="437.5,116.0 441.4,116.0 441.4,121.9 437.5,121.9 437.5,116.0 " /></g><g id="bbox:6.1_49.5_6.2_49.6" ><polygon points="449.1,116.0 452.9,116.0 452.9,121.9 449.1,121.9 449.1,116.0 " /></g><g id="bbox:6.2_49.5_6.3_49.6" ><polygon points="452.9,116.0 456.8,116.0 456.8,121.9 452.9,121.9 452.9,116.0 " /></g><g id="bbox:-1.9_49.4_-1.8_49.5" ><polygon points="141.2,121.9 145.1,121.9 145.1,127.8 141.2,127.8 141.2,121.9 " /></g><g id="bbox:-1.8_49.4_-1.7_49.5" ><polygon points="145.1,121.9 148.9,121.9 148.9,127.8 145.1,127.8 145.1,121.9 " /></g><g id="bbox:-1.7_49.4_-1.6_49.5" ><polygon points="148.9,121.9 152.8,121.9 152.8,127.8 148.9,127.8 148.9,121.9 " /></g><g id="bbox:-1.6_49.4_-1.5_49.5" ><polygon points="152.8,121.9 156.6,121.9 156.6,127.8 152.8,127.8 152.8,121.9 " /></g><g id="bbox:-1.5_49.4_-1.4_49.5" ><polygon points="156.6,121.9 160.5,121.9 160.5,127.8 156.6,127.8 156.6,121.9 " /></g><g id="bbox:-1.4_49.4_-1.3_49.5" ><polygon points="160.5,121.9 164.3,121.9 164.3,127.8 160.5,127.8 160.5,121.9 " /></g><g id="bbox:-1.3_49.4_-1.2_49.5" ><polygon points="164.3,121.9 168.2,121.9 168.2,127.8 164.3,127.8 164.3,121.9 " /></g><g id="bbox:-1.2_49.4_-1.1_49.5" ><polygon points="168.2,121.9 172.0,121.9 172.0,127.8 168.2,127.8 168.2,121.9 " /></g><g id="bbox:0_49.4_0.1_49.5" ><polygon points="214.3,121.9 218.2,121.9 218.2,127.8 214.3,127.8 214.3,121.9 " /></g><g id="bbox:0.1_49.4_0.2_49.5" ><polygon points="218.2,121.9 222.0,121.9 222.0,127.8 218.2,127.8 218.2,121.9 " /></g><g id="bbox:0.2_49.4_0.3_49.5" ><polygon points="222.0,121.9 225.9,121.9 225.9,127.8 222.0,127.8 222.0,121.9 " /></g><g id="bbox:0.3_49.4_0.4_49.5" ><polygon points="225.9,121.9 229.7,121.9 229.7,127.8 225.9,127.8 225.9,121.9 " /></g><g id="bbox:0.4_49.4_0.5_49.5" ><polygon points="229.7,121.9 233.6,121.9 233.6,127.8 229.7,127.8 229.7,121.9 " /></g><g id="bbox:0.5_49.4_0.6_49.5" ><polygon points="233.6,121.9 237.4,121.9 237.4,127.8 233.6,127.8 233.6,121.9 " /></g><g id="bbox:0.6_49.4_0.7_49.5" ><polygon points="237.4,121.9 241.3,121.9 241.3,127.8 237.4,127.8 237.4,121.9 " /></g><g id="bbox:0.7_49.4_0.8_49.5" ><polygon points="241.3,121.9 245.1,121.9 245.1,127.8 241.3,127.8 241.3,121.9 " /></g><g id="bbox:0.8_49.4_0.9_49.5" ><polygon points="245.1,121.9 249.0,121.9 249.0,127.8 245.1,127.8 245.1,121.9 " /></g><g id="bbox:0.9_49.4_1_49.5" ><polygon points="249.0,121.9 252.8,121.9 252.8,127.8 249.0,127.8 249.0,121.9 " /></g><g id="bbox:1_49.4_1.1_49.5" ><polygon points="252.8,121.9 256.7,121.9 256.7,127.8 252.8,127.8 252.8,121.9 " /></g><g id="bbox:1.1_49.4_1.2_49.5" ><polygon points="256.7,121.9 260.5,121.9 260.5,127.8 256.7,127.8 256.7,121.9 " /></g><g id="bbox:1.2_49.4_1.3_49.5" ><polygon points="260.5,121.9 264.4,121.9 264.4,127.8 260.5,127.8 260.5,121.9 " /></g><g id="bbox:1.3_49.4_1.4_49.5" ><polygon points="264.4,121.9 268.2,121.9 268.2,127.8 264.4,127.8 264.4,121.9 " /></g><g id="bbox:1.4_49.4_1.5_49.5" ><polygon points="268.2,121.9 272.1,121.9 272.1,127.8 268.2,127.8 268.2,121.9 " /></g><g id="bbox:1.5_49.4_1.6_49.5" ><polygon points="272.1,121.9 275.9,121.9 275.9,127.8 272.1,127.8 272.1,121.9 " /></g><g id="bbox:1.6_49.4_1.7_49.5" ><polygon points="275.9,121.9 279.8,121.9 279.8,127.8 275.9,127.8 275.9,121.9 " /></g><g id="bbox:1.7_49.4_1.8_49.5" ><polygon points="279.8,121.9 283.6,121.9 283.6,127.8 279.8,127.8 279.8,121.9 " /></g><g id="bbox:1.8_49.4_1.9_49.5" ><polygon points="283.6,121.9 287.5,121.9 287.5,127.8 283.6,127.8 283.6,121.9 " /></g><g id="bbox:1.9_49.4_2_49.5" ><polygon points="287.5,121.9 291.3,121.9 291.3,127.8 287.5,127.8 287.5,121.9 " /></g><g id="bbox:2_49.4_2.1_49.5" ><polygon points="291.3,121.9 295.2,121.9 295.2,127.8 291.3,127.8 291.3,121.9 " /></g><g id="bbox:2.1_49.4_2.2_49.5" ><polygon points="295.2,121.9 299.0,121.9 299.0,127.8 295.2,127.8 295.2,121.9 " /></g><g id="bbox:2.2_49.4_2.3_49.5" ><polygon points="299.0,121.9 302.8,121.9 302.8,127.8 299.0,127.8 299.0,121.9 " /></g><g id="bbox:2.3_49.4_2.4_49.5" ><polygon points="302.8,121.9 306.7,121.9 306.7,127.8 302.8,127.8 302.8,121.9 " /></g><g id="bbox:2.4_49.4_2.5_49.5" ><polygon points="306.7,121.9 310.5,121.9 310.5,127.8 306.7,127.8 306.7,121.9 " /></g><g id="bbox:2.5_49.4_2.6_49.5" ><polygon points="310.5,121.9 314.4,121.9 314.4,127.8 310.5,127.8 310.5,121.9 " /></g><g id="bbox:2.6_49.4_2.7_49.5" ><polygon points="314.4,121.9 318.2,121.9 318.2,127.8 314.4,127.8 314.4,121.9 " /></g><g id="bbox:2.7_49.4_2.8_49.5" ><polygon points="318.2,121.9 322.1,121.9 322.1,127.8 318.2,127.8 318.2,121.9 " /></g><g id="bbox:2.8_49.4_2.9_49.5" ><polygon points="322.1,121.9 325.9,121.9 325.9,127.8 322.1,127.8 322.1,121.9 " /></g><g id="bbox:2.9_49.4_3_49.5" ><polygon points="325.9,121.9 329.8,121.9 329.8,127.8 325.9,127.8 325.9,121.9 " /></g><g id="bbox:3_49.4_3.1_49.5" ><polygon points="329.8,121.9 333.6,121.9 333.6,127.8 329.8,127.8 329.8,121.9 " /></g><g id="bbox:3.1_49.4_3.2_49.5" ><polygon points="333.6,121.9 337.5,121.9 337.5,127.8 333.6,127.8 333.6,121.9 " /></g><g id="bbox:3.2_49.4_3.3_49.5" ><polygon points="337.5,121.9 341.3,121.9 341.3,127.8 337.5,127.8 337.5,121.9 " /></g><g id="bbox:3.3_49.4_3.4_49.5" ><polygon points="341.3,121.9 345.2,121.9 345.2,127.8 341.3,127.8 341.3,121.9 " /></g><g id="bbox:3.4_49.4_3.5_49.5" ><polygon points="345.2,121.9 349.0,121.9 349.0,127.8 345.2,127.8 345.2,121.9 " /></g><g id="bbox:3.5_49.4_3.6_49.5" ><polygon points="349.0,121.9 352.9,121.9 352.9,127.8 349.0,127.8 349.0,121.9 " /></g><g id="bbox:3.6_49.4_3.7_49.5" ><polygon points="352.9,121.9 356.7,121.9 356.7,127.8 352.9,127.8 352.9,121.9 " /></g><g id="bbox:3.7_49.4_3.8_49.5" ><polygon points="356.7,121.9 360.6,121.9 360.6,127.8 356.7,127.8 356.7,121.9 " /></g><g id="bbox:3.8_49.4_3.9_49.5" ><polygon points="360.6,121.9 364.4,121.9 364.4,127.8 360.6,127.8 360.6,121.9 " /></g><g id="bbox:3.9_49.4_4_49.5" ><polygon points="364.4,121.9 368.3,121.9 368.3,127.8 364.4,127.8 364.4,121.9 " /></g><g id="bbox:4_49.4_4.1_49.5" ><polygon points="368.3,121.9 372.1,121.9 372.1,127.8 368.3,127.8 368.3,121.9 " /></g><g id="bbox:4.1_49.4_4.2_49.5" ><polygon points="372.1,121.9 376.0,121.9 376.0,127.8 372.1,127.8 372.1,121.9 " /></g><g id="bbox:4.2_49.4_4.3_49.5" ><polygon points="376.0,121.9 379.8,121.9 379.8,127.8 376.0,127.8 376.0,121.9 " /></g><g id="bbox:4.3_49.4_4.4_49.5" ><polygon points="379.8,121.9 383.7,121.9 383.7,127.8 379.8,127.8 379.8,121.9 " /></g><g id="bbox:4.4_49.4_4.5_49.5" ><polygon points="383.7,121.9 387.5,121.9 387.5,127.8 383.7,127.8 383.7,121.9 " /></g><g id="bbox:4.5_49.4_4.6_49.5" ><polygon points="387.5,121.9 391.4,121.9 391.4,127.8 387.5,127.8 387.5,121.9 " /></g><g id="bbox:4.6_49.4_4.7_49.5" ><polygon points="391.4,121.9 395.2,121.9 395.2,127.8 391.4,127.8 391.4,121.9 " /></g><g id="bbox:4.7_49.4_4.8_49.5" ><polygon points="395.2,121.9 399.1,121.9 399.1,127.8 395.2,127.8 395.2,121.9 " /></g><g id="bbox:4.8_49.4_4.9_49.5" ><polygon points="399.1,121.9 402.9,121.9 402.9,127.8 399.1,127.8 399.1,121.9 " /></g><g id="bbox:4.9_49.4_5_49.5" ><polygon points="402.9,121.9 406.7,121.9 406.7,127.8 402.9,127.8 402.9,121.9 " /></g><g id="bbox:5_49.4_5.1_49.5" ><polygon points="406.7,121.9 410.6,121.9 410.6,127.8 406.7,127.8 406.7,121.9 " /></g><g id="bbox:5.1_49.4_5.2_49.5" ><polygon points="410.6,121.9 414.4,121.9 414.4,127.8 410.6,127.8 410.6,121.9 " /></g><g id="bbox:5.2_49.4_5.3_49.5" ><polygon points="414.4,121.9 418.3,121.9 418.3,127.8 414.4,127.8 414.4,121.9 " /></g><g id="bbox:5.3_49.4_5.4_49.5" ><polygon points="418.3,121.9 422.1,121.9 422.1,127.8 418.3,127.8 418.3,121.9 " /></g><g id="bbox:5.4_49.4_5.5_49.5" ><polygon points="422.1,121.9 426.0,121.9 426.0,127.8 422.1,127.8 422.1,121.9 " /></g><g id="bbox:5.5_49.4_5.6_49.5" ><polygon points="426.0,121.9 429.8,121.9 429.8,127.8 426.0,127.8 426.0,121.9 " /></g><g id="bbox:5.6_49.4_5.7_49.5" ><polygon points="429.8,121.9 433.7,121.9 433.7,127.8 429.8,127.8 429.8,121.9 " /></g><g id="bbox:5.7_49.4_5.8_49.5" ><polygon points="433.7,121.9 437.5,121.9 437.5,127.8 433.7,127.8 433.7,121.9 " /></g><g id="bbox:5.8_49.4_5.9_49.5" ><polygon points="437.5,121.9 441.4,121.9 441.4,127.8 437.5,127.8 437.5,121.9 " /></g><g id="bbox:5.9_49.4_6_49.5" ><polygon points="441.4,121.9 445.2,121.9 445.2,127.8 441.4,127.8 441.4,121.9 " /></g><g id="bbox:6_49.4_6.1_49.5" ><polygon points="445.2,121.9 449.1,121.9 449.1,127.8 445.2,127.8 445.2,121.9 " /></g><g id="bbox:6.1_49.4_6.2_49.5" ><polygon points="449.1,121.9 452.9,121.9 452.9,127.8 449.1,127.8 449.1,121.9 " /></g><g id="bbox:6.2_49.4_6.3_49.5" ><polygon points="452.9,121.9 456.8,121.9 456.8,127.8 452.9,127.8 452.9,121.9 " /></g><g id="bbox:6.3_49.4_6.4_49.5" ><polygon points="456.8,121.9 460.6,121.9 460.6,127.8 456.8,127.8 456.8,121.9 " /></g><g id="bbox:6.4_49.4_6.5_49.5" ><polygon points="460.6,121.9 464.5,121.9 464.5,127.8 460.6,127.8 460.6,121.9 " /></g><g id="bbox:6.5_49.4_6.6_49.5" ><polygon points="464.5,121.9 468.3,121.9 468.3,127.8 464.5,127.8 464.5,121.9 " /></g><g id="bbox:-1.9_49.3_-1.8_49.4" ><polygon points="141.2,127.8 145.1,127.8 145.1,133.7 141.2,133.7 141.2,127.8 " /></g><g id="bbox:-1.8_49.3_-1.7_49.4" ><polygon points="145.1,127.8 148.9,127.8 148.9,133.7 145.1,133.7 145.1,127.8 " /></g><g id="bbox:-1.7_49.3_-1.6_49.4" ><polygon points="148.9,127.8 152.8,127.8 152.8,133.7 148.9,133.7 148.9,127.8 " /></g><g id="bbox:-1.6_49.3_-1.5_49.4" ><polygon points="152.8,127.8 156.6,127.8 156.6,133.7 152.8,133.7 152.8,127.8 " /></g><g id="bbox:-1.5_49.3_-1.4_49.4" ><polygon points="156.6,127.8 160.5,127.8 160.5,133.7 156.6,133.7 156.6,127.8 " /></g><g id="bbox:-1.4_49.3_-1.3_49.4" ><polygon points="160.5,127.8 164.3,127.8 164.3,133.7 160.5,133.7 160.5,127.8 " /></g><g id="bbox:-1.3_49.3_-1.2_49.4" ><polygon points="164.3,127.8 168.2,127.8 168.2,133.7 164.3,133.7 164.3,127.8 " /></g><g id="bbox:-1.2_49.3_-1.1_49.4" ><polygon points="168.2,127.8 172.0,127.8 172.0,133.7 168.2,133.7 168.2,127.8 " /></g><g id="bbox:-1.1_49.3_-1_49.4" ><polygon points="172.0,127.8 175.9,127.8 175.9,133.7 172.0,133.7 172.0,127.8 " /></g><g id="bbox:-1_49.3_-0.9_49.4" ><polygon points="175.9,127.8 179.7,127.8 179.7,133.7 175.9,133.7 175.9,127.8 " /></g><g id="bbox:-0.9_49.3_-0.8_49.4" ><polygon points="179.7,127.8 183.6,127.8 183.6,133.7 179.7,133.7 179.7,127.8 " /></g><g id="bbox:-0.8_49.3_-0.7_49.4" ><polygon points="183.6,127.8 187.4,127.8 187.4,133.7 183.6,133.7 183.6,127.8 " /></g><g id="bbox:-0.7_49.3_-0.6_49.4" ><polygon points="187.4,127.8 191.3,127.8 191.3,133.7 187.4,133.7 187.4,127.8 " /></g><g id="bbox:-0.6_49.3_-0.5_49.4" ><polygon points="191.3,127.8 195.1,127.8 195.1,133.7 191.3,133.7 191.3,127.8 " /></g><g id="bbox:-0.5_49.3_-0.4_49.4" ><polygon points="195.1,127.8 198.9,127.8 198.9,133.7 195.1,133.7 195.1,127.8 " /></g><g id="bbox:-0.4_49.3_-0.3_49.4" ><polygon points="198.9,127.8 202.8,127.8 202.8,133.7 198.9,133.7 198.9,127.8 " /></g><g id="bbox:-0.1_49.3_0_49.4" ><polygon points="210.5,127.8 214.3,127.8 214.3,133.7 210.5,133.7 210.5,127.8 " /></g><g id="bbox:0_49.3_0.1_49.4" ><polygon points="214.3,127.8 218.2,127.8 218.2,133.7 214.3,133.7 214.3,127.8 " /></g><g id="bbox:0.1_49.3_0.2_49.4" ><polygon points="218.2,127.8 222.0,127.8 222.0,133.7 218.2,133.7 218.2,127.8 " /></g><g id="bbox:0.2_49.3_0.3_49.4" ><polygon points="222.0,127.8 225.9,127.8 225.9,133.7 222.0,133.7 222.0,127.8 " /></g><g id="bbox:0.3_49.3_0.4_49.4" ><polygon points="225.9,127.8 229.7,127.8 229.7,133.7 225.9,133.7 225.9,127.8 " /></g><g id="bbox:0.4_49.3_0.5_49.4" ><polygon points="229.7,127.8 233.6,127.8 233.6,133.7 229.7,133.7 229.7,127.8 " /></g><g id="bbox:0.5_49.3_0.6_49.4" ><polygon points="233.6,127.8 237.4,127.8 237.4,133.7 233.6,133.7 233.6,127.8 " /></g><g id="bbox:0.6_49.3_0.7_49.4" ><polygon points="237.4,127.8 241.3,127.8 241.3,133.7 237.4,133.7 237.4,127.8 " /></g><g id="bbox:0.7_49.3_0.8_49.4" ><polygon points="241.3,127.8 245.1,127.8 245.1,133.7 241.3,133.7 241.3,127.8 " /></g><g id="bbox:0.8_49.3_0.9_49.4" ><polygon points="245.1,127.8 249.0,127.8 249.0,133.7 245.1,133.7 245.1,127.8 " /></g><g id="bbox:0.9_49.3_1_49.4" ><polygon points="249.0,127.8 252.8,127.8 252.8,133.7 249.0,133.7 249.0,127.8 " /></g><g id="bbox:1_49.3_1.1_49.4" ><polygon points="252.8,127.8 256.7,127.8 256.7,133.7 252.8,133.7 252.8,127.8 " /></g><g id="bbox:1.1_49.3_1.2_49.4" ><polygon points="256.7,127.8 260.5,127.8 260.5,133.7 256.7,133.7 256.7,127.8 " /></g><g id="bbox:1.2_49.3_1.3_49.4" ><polygon points="260.5,127.8 264.4,127.8 264.4,133.7 260.5,133.7 260.5,127.8 " /></g><g id="bbox:1.3_49.3_1.4_49.4" ><polygon points="264.4,127.8 268.2,127.8 268.2,133.7 264.4,133.7 264.4,127.8 " /></g><g id="bbox:1.4_49.3_1.5_49.4" ><polygon points="268.2,127.8 272.1,127.8 272.1,133.7 268.2,133.7 268.2,127.8 " /></g><g id="bbox:1.5_49.3_1.6_49.4" ><polygon points="272.1,127.8 275.9,127.8 275.9,133.7 272.1,133.7 272.1,127.8 " /></g><g id="bbox:1.6_49.3_1.7_49.4" ><polygon points="275.9,127.8 279.8,127.8 279.8,133.7 275.9,133.7 275.9,127.8 " /></g><g id="bbox:1.7_49.3_1.8_49.4" ><polygon points="279.8,127.8 283.6,127.8 283.6,133.7 279.8,133.7 279.8,127.8 " /></g><g id="bbox:1.8_49.3_1.9_49.4" ><polygon points="283.6,127.8 287.5,127.8 287.5,133.7 283.6,133.7 283.6,127.8 " /></g><g id="bbox:1.9_49.3_2_49.4" ><polygon points="287.5,127.8 291.3,127.8 291.3,133.7 287.5,133.7 287.5,127.8 " /></g><g id="bbox:2_49.3_2.1_49.4" ><polygon points="291.3,127.8 295.2,127.8 295.2,133.7 291.3,133.7 291.3,127.8 " /></g><g id="bbox:2.1_49.3_2.2_49.4" ><polygon points="295.2,127.8 299.0,127.8 299.0,133.7 295.2,133.7 295.2,127.8 " /></g><g id="bbox:2.2_49.3_2.3_49.4" ><polygon points="299.0,127.8 302.8,127.8 302.8,133.7 299.0,133.7 299.0,127.8 " /></g><g id="bbox:2.3_49.3_2.4_49.4" ><polygon points="302.8,127.8 306.7,127.8 306.7,133.7 302.8,133.7 302.8,127.8 " /></g><g id="bbox:2.4_49.3_2.5_49.4" ><polygon points="306.7,127.8 310.5,127.8 310.5,133.7 306.7,133.7 306.7,127.8 " /></g><g id="bbox:2.5_49.3_2.6_49.4" ><polygon points="310.5,127.8 314.4,127.8 314.4,133.7 310.5,133.7 310.5,127.8 " /></g><g id="bbox:2.6_49.3_2.7_49.4" ><polygon points="314.4,127.8 318.2,127.8 318.2,133.7 314.4,133.7 314.4,127.8 " /></g><g id="bbox:2.7_49.3_2.8_49.4" ><polygon points="318.2,127.8 322.1,127.8 322.1,133.7 318.2,133.7 318.2,127.8 " /></g><g id="bbox:2.8_49.3_2.9_49.4" ><polygon points="322.1,127.8 325.9,127.8 325.9,133.7 322.1,133.7 322.1,127.8 " /></g><g id="bbox:2.9_49.3_3_49.4" ><polygon points="325.9,127.8 329.8,127.8 329.8,133.7 325.9,133.7 325.9,127.8 " /></g><g id="bbox:3_49.3_3.1_49.4" ><polygon points="329.8,127.8 333.6,127.8 333.6,133.7 329.8,133.7 329.8,127.8 " /></g><g id="bbox:3.1_49.3_3.2_49.4" ><polygon points="333.6,127.8 337.5,127.8 337.5,133.7 333.6,133.7 333.6,127.8 " /></g><g id="bbox:3.2_49.3_3.3_49.4" ><polygon points="337.5,127.8 341.3,127.8 341.3,133.7 337.5,133.7 337.5,127.8 " /></g><g id="bbox:3.3_49.3_3.4_49.4" ><polygon points="341.3,127.8 345.2,127.8 345.2,133.7 341.3,133.7 341.3,127.8 " /></g><g id="bbox:3.4_49.3_3.5_49.4" ><polygon points="345.2,127.8 349.0,127.8 349.0,133.7 345.2,133.7 345.2,127.8 " /></g><g id="bbox:3.5_49.3_3.6_49.4" ><polygon points="349.0,127.8 352.9,127.8 352.9,133.7 349.0,133.7 349.0,127.8 " /></g><g id="bbox:3.6_49.3_3.7_49.4" ><polygon points="352.9,127.8 356.7,127.8 356.7,133.7 352.9,133.7 352.9,127.8 " /></g><g id="bbox:3.7_49.3_3.8_49.4" ><polygon points="356.7,127.8 360.6,127.8 360.6,133.7 356.7,133.7 356.7,127.8 " /></g><g id="bbox:3.8_49.3_3.9_49.4" ><polygon points="360.6,127.8 364.4,127.8 364.4,133.7 360.6,133.7 360.6,127.8 " /></g><g id="bbox:3.9_49.3_4_49.4" ><polygon points="364.4,127.8 368.3,127.8 368.3,133.7 364.4,133.7 364.4,127.8 " /></g><g id="bbox:4_49.3_4.1_49.4" ><polygon points="368.3,127.8 372.1,127.8 372.1,133.7 368.3,133.7 368.3,127.8 " /></g><g id="bbox:4.1_49.3_4.2_49.4" ><polygon points="372.1,127.8 376.0,127.8 376.0,133.7 372.1,133.7 372.1,127.8 " /></g><g id="bbox:4.2_49.3_4.3_49.4" ><polygon points="376.0,127.8 379.8,127.8 379.8,133.7 376.0,133.7 376.0,127.8 " /></g><g id="bbox:4.3_49.3_4.4_49.4" ><polygon points="379.8,127.8 383.7,127.8 383.7,133.7 379.8,133.7 379.8,127.8 " /></g><g id="bbox:4.4_49.3_4.5_49.4" ><polygon points="383.7,127.8 387.5,127.8 387.5,133.7 383.7,133.7 383.7,127.8 " /></g><g id="bbox:4.5_49.3_4.6_49.4" ><polygon points="387.5,127.8 391.4,127.8 391.4,133.7 387.5,133.7 387.5,127.8 " /></g><g id="bbox:4.6_49.3_4.7_49.4" ><polygon points="391.4,127.8 395.2,127.8 395.2,133.7 391.4,133.7 391.4,127.8 " /></g><g id="bbox:4.7_49.3_4.8_49.4" ><polygon points="395.2,127.8 399.1,127.8 399.1,133.7 395.2,133.7 395.2,127.8 " /></g><g id="bbox:4.8_49.3_4.9_49.4" ><polygon points="399.1,127.8 402.9,127.8 402.9,133.7 399.1,133.7 399.1,127.8 " /></g><g id="bbox:4.9_49.3_5_49.4" ><polygon points="402.9,127.8 406.7,127.8 406.7,133.7 402.9,133.7 402.9,127.8 " /></g><g id="bbox:5_49.3_5.1_49.4" ><polygon points="406.7,127.8 410.6,127.8 410.6,133.7 406.7,133.7 406.7,127.8 " /></g><g id="bbox:5.1_49.3_5.2_49.4" ><polygon points="410.6,127.8 414.4,127.8 414.4,133.7 410.6,133.7 410.6,127.8 " /></g><g id="bbox:5.2_49.3_5.3_49.4" ><polygon points="414.4,127.8 418.3,127.8 418.3,133.7 414.4,133.7 414.4,127.8 " /></g><g id="bbox:5.3_49.3_5.4_49.4" ><polygon points="418.3,127.8 422.1,127.8 422.1,133.7 418.3,133.7 418.3,127.8 " /></g><g id="bbox:5.4_49.3_5.5_49.4" ><polygon points="422.1,127.8 426.0,127.8 426.0,133.7 422.1,133.7 422.1,127.8 " /></g><g id="bbox:5.5_49.3_5.6_49.4" ><polygon points="426.0,127.8 429.8,127.8 429.8,133.7 426.0,133.7 426.0,127.8 " /></g><g id="bbox:5.6_49.3_5.7_49.4" ><polygon points="429.8,127.8 433.7,127.8 433.7,133.7 429.8,133.7 429.8,127.8 " /></g><g id="bbox:5.7_49.3_5.8_49.4" ><polygon points="433.7,127.8 437.5,127.8 437.5,133.7 433.7,133.7 433.7,127.8 " /></g><g id="bbox:5.8_49.3_5.9_49.4" ><polygon points="437.5,127.8 441.4,127.8 441.4,133.7 437.5,133.7 437.5,127.8 " /></g><g id="bbox:5.9_49.3_6_49.4" ><polygon points="441.4,127.8 445.2,127.8 445.2,133.7 441.4,133.7 441.4,127.8 " /></g><g id="bbox:6_49.3_6.1_49.4" ><polygon points="445.2,127.8 449.1,127.8 449.1,133.7 445.2,133.7 445.2,127.8 " /></g><g id="bbox:6.1_49.3_6.2_49.4" ><polygon points="449.1,127.8 452.9,127.8 452.9,133.7 449.1,133.7 449.1,127.8 " /></g><g id="bbox:6.2_49.3_6.3_49.4" ><polygon points="452.9,127.8 456.8,127.8 456.8,133.7 452.9,133.7 452.9,127.8 " /></g><g id="bbox:6.3_49.3_6.4_49.4" ><polygon points="456.8,127.8 460.6,127.8 460.6,133.7 456.8,133.7 456.8,127.8 " /></g><g id="bbox:6.4_49.3_6.5_49.4" ><polygon points="460.6,127.8 464.5,127.8 464.5,133.7 460.6,133.7 460.6,127.8 " /></g><g id="bbox:6.5_49.3_6.6_49.4" ><polygon points="464.5,127.8 468.3,127.8 468.3,133.7 464.5,133.7 464.5,127.8 " /></g><g id="bbox:6.6_49.3_6.7_49.4" ><polygon points="468.3,127.8 472.2,127.8 472.2,133.7 468.3,133.7 468.3,127.8 " /></g><g id="bbox:-1.7_49.2_-1.6_49.3" ><polygon points="148.9,133.7 152.8,133.7 152.8,139.6 148.9,139.6 148.9,133.7 " /></g><g id="bbox:-1.6_49.2_-1.5_49.3" ><polygon points="152.8,133.7 156.6,133.7 156.6,139.6 152.8,139.6 152.8,133.7 " /></g><g id="bbox:-1.5_49.2_-1.4_49.3" ><polygon points="156.6,133.7 160.5,133.7 160.5,139.6 156.6,139.6 156.6,133.7 " /></g><g id="bbox:-1.4_49.2_-1.3_49.3" ><polygon points="160.5,133.7 164.3,133.7 164.3,139.6 160.5,139.6 160.5,133.7 " /></g><g id="bbox:-1.3_49.2_-1.2_49.3" ><polygon points="164.3,133.7 168.2,133.7 168.2,139.6 164.3,139.6 164.3,133.7 " /></g><g id="bbox:-1.2_49.2_-1.1_49.3" ><polygon points="168.2,133.7 172.0,133.7 172.0,139.6 168.2,139.6 168.2,133.7 " /></g><g id="bbox:-1.1_49.2_-1_49.3" ><polygon points="172.0,133.7 175.9,133.7 175.9,139.6 172.0,139.6 172.0,133.7 " /></g><g id="bbox:-1_49.2_-0.9_49.3" ><polygon points="175.9,133.7 179.7,133.7 179.7,139.6 175.9,139.6 175.9,133.7 " /></g><g id="bbox:-0.9_49.2_-0.8_49.3" ><polygon points="179.7,133.7 183.6,133.7 183.6,139.6 179.7,139.6 179.7,133.7 " /></g><g id="bbox:-0.8_49.2_-0.7_49.3" ><polygon points="183.6,133.7 187.4,133.7 187.4,139.6 183.6,139.6 183.6,133.7 " /></g><g id="bbox:-0.7_49.2_-0.6_49.3" ><polygon points="187.4,133.7 191.3,133.7 191.3,139.6 187.4,139.6 187.4,133.7 " /></g><g id="bbox:-0.6_49.2_-0.5_49.3" ><polygon points="191.3,133.7 195.1,133.7 195.1,139.6 191.3,139.6 191.3,133.7 " /></g><g id="bbox:-0.5_49.2_-0.4_49.3" ><polygon points="195.1,133.7 198.9,133.7 198.9,139.6 195.1,139.6 195.1,133.7 " /></g><g id="bbox:-0.4_49.2_-0.3_49.3" ><polygon points="198.9,133.7 202.8,133.7 202.8,139.6 198.9,139.6 198.9,133.7 " /></g><g id="bbox:-0.3_49.2_-0.2_49.3" ><polygon points="202.8,133.7 206.6,133.7 206.6,139.6 202.8,139.6 202.8,133.7 " /></g><g id="bbox:-0.2_49.2_-0.1_49.3" ><polygon points="206.6,133.7 210.5,133.7 210.5,139.6 206.6,139.6 206.6,133.7 " /></g><g id="bbox:-0.1_49.2_0_49.3" ><polygon points="210.5,133.7 214.3,133.7 214.3,139.6 210.5,139.6 210.5,133.7 " /></g><g id="bbox:0_49.2_0.1_49.3" ><polygon points="214.3,133.7 218.2,133.7 218.2,139.6 214.3,139.6 214.3,133.7 " /></g><g id="bbox:0.1_49.2_0.2_49.3" ><polygon points="218.2,133.7 222.0,133.7 222.0,139.6 218.2,139.6 218.2,133.7 " /></g><g id="bbox:0.2_49.2_0.3_49.3" ><polygon points="222.0,133.7 225.9,133.7 225.9,139.6 222.0,139.6 222.0,133.7 " /></g><g id="bbox:0.3_49.2_0.4_49.3" ><polygon points="225.9,133.7 229.7,133.7 229.7,139.6 225.9,139.6 225.9,133.7 " /></g><g id="bbox:0.4_49.2_0.5_49.3" ><polygon points="229.7,133.7 233.6,133.7 233.6,139.6 229.7,139.6 229.7,133.7 " /></g><g id="bbox:0.5_49.2_0.6_49.3" ><polygon points="233.6,133.7 237.4,133.7 237.4,139.6 233.6,139.6 233.6,133.7 " /></g><g id="bbox:0.6_49.2_0.7_49.3" ><polygon points="237.4,133.7 241.3,133.7 241.3,139.6 237.4,139.6 237.4,133.7 " /></g><g id="bbox:0.7_49.2_0.8_49.3" ><polygon points="241.3,133.7 245.1,133.7 245.1,139.6 241.3,139.6 241.3,133.7 " /></g><g id="bbox:0.8_49.2_0.9_49.3" ><polygon points="245.1,133.7 249.0,133.7 249.0,139.6 245.1,139.6 245.1,133.7 " /></g><g id="bbox:0.9_49.2_1_49.3" ><polygon points="249.0,133.7 252.8,133.7 252.8,139.6 249.0,139.6 249.0,133.7 " /></g><g id="bbox:1_49.2_1.1_49.3" ><polygon points="252.8,133.7 256.7,133.7 256.7,139.6 252.8,139.6 252.8,133.7 " /></g><g id="bbox:1.1_49.2_1.2_49.3" ><polygon points="256.7,133.7 260.5,133.7 260.5,139.6 256.7,139.6 256.7,133.7 " /></g><g id="bbox:1.2_49.2_1.3_49.3" ><polygon points="260.5,133.7 264.4,133.7 264.4,139.6 260.5,139.6 260.5,133.7 " /></g><g id="bbox:1.3_49.2_1.4_49.3" ><polygon points="264.4,133.7 268.2,133.7 268.2,139.6 264.4,139.6 264.4,133.7 " /></g><g id="bbox:1.4_49.2_1.5_49.3" ><polygon points="268.2,133.7 272.1,133.7 272.1,139.6 268.2,139.6 268.2,133.7 " /></g><g id="bbox:1.5_49.2_1.6_49.3" ><polygon points="272.1,133.7 275.9,133.7 275.9,139.6 272.1,139.6 272.1,133.7 " /></g><g id="bbox:1.6_49.2_1.7_49.3" ><polygon points="275.9,133.7 279.8,133.7 279.8,139.6 275.9,139.6 275.9,133.7 " /></g><g id="bbox:1.7_49.2_1.8_49.3" ><polygon points="279.8,133.7 283.6,133.7 283.6,139.6 279.8,139.6 279.8,133.7 " /></g><g id="bbox:1.8_49.2_1.9_49.3" ><polygon points="283.6,133.7 287.5,133.7 287.5,139.6 283.6,139.6 283.6,133.7 " /></g><g id="bbox:1.9_49.2_2_49.3" ><polygon points="287.5,133.7 291.3,133.7 291.3,139.6 287.5,139.6 287.5,133.7 " /></g><g id="bbox:2_49.2_2.1_49.3" ><polygon points="291.3,133.7 295.2,133.7 295.2,139.6 291.3,139.6 291.3,133.7 " /></g><g id="bbox:2.1_49.2_2.2_49.3" ><polygon points="295.2,133.7 299.0,133.7 299.0,139.6 295.2,139.6 295.2,133.7 " /></g><g id="bbox:2.2_49.2_2.3_49.3" ><polygon points="299.0,133.7 302.8,133.7 302.8,139.6 299.0,139.6 299.0,133.7 " /></g><g id="bbox:2.3_49.2_2.4_49.3" ><polygon points="302.8,133.7 306.7,133.7 306.7,139.6 302.8,139.6 302.8,133.7 " /></g><g id="bbox:2.4_49.2_2.5_49.3" ><polygon points="306.7,133.7 310.5,133.7 310.5,139.6 306.7,139.6 306.7,133.7 " /></g><g id="bbox:2.5_49.2_2.6_49.3" ><polygon points="310.5,133.7 314.4,133.7 314.4,139.6 310.5,139.6 310.5,133.7 " /></g><g id="bbox:2.6_49.2_2.7_49.3" ><polygon points="314.4,133.7 318.2,133.7 318.2,139.6 314.4,139.6 314.4,133.7 " /></g><g id="bbox:2.7_49.2_2.8_49.3" ><polygon points="318.2,133.7 322.1,133.7 322.1,139.6 318.2,139.6 318.2,133.7 " /></g><g id="bbox:2.8_49.2_2.9_49.3" ><polygon points="322.1,133.7 325.9,133.7 325.9,139.6 322.1,139.6 322.1,133.7 " /></g><g id="bbox:2.9_49.2_3_49.3" ><polygon points="325.9,133.7 329.8,133.7 329.8,139.6 325.9,139.6 325.9,133.7 " /></g><g id="bbox:3_49.2_3.1_49.3" ><polygon points="329.8,133.7 333.6,133.7 333.6,139.6 329.8,139.6 329.8,133.7 " /></g><g id="bbox:3.1_49.2_3.2_49.3" ><polygon points="333.6,133.7 337.5,133.7 337.5,139.6 333.6,139.6 333.6,133.7 " /></g><g id="bbox:3.2_49.2_3.3_49.3" ><polygon points="337.5,133.7 341.3,133.7 341.3,139.6 337.5,139.6 337.5,133.7 " /></g><g id="bbox:3.3_49.2_3.4_49.3" ><polygon points="341.3,133.7 345.2,133.7 345.2,139.6 341.3,139.6 341.3,133.7 " /></g><g id="bbox:3.4_49.2_3.5_49.3" ><polygon points="345.2,133.7 349.0,133.7 349.0,139.6 345.2,139.6 345.2,133.7 " /></g><g id="bbox:3.5_49.2_3.6_49.3" ><polygon points="349.0,133.7 352.9,133.7 352.9,139.6 349.0,139.6 349.0,133.7 " /></g><g id="bbox:3.6_49.2_3.7_49.3" ><polygon points="352.9,133.7 356.7,133.7 356.7,139.6 352.9,139.6 352.9,133.7 " /></g><g id="bbox:3.7_49.2_3.8_49.3" ><polygon points="356.7,133.7 360.6,133.7 360.6,139.6 356.7,139.6 356.7,133.7 " /></g><g id="bbox:3.8_49.2_3.9_49.3" ><polygon points="360.6,133.7 364.4,133.7 364.4,139.6 360.6,139.6 360.6,133.7 " /></g><g id="bbox:3.9_49.2_4_49.3" ><polygon points="364.4,133.7 368.3,133.7 368.3,139.6 364.4,139.6 364.4,133.7 " /></g><g id="bbox:4_49.2_4.1_49.3" ><polygon points="368.3,133.7 372.1,133.7 372.1,139.6 368.3,139.6 368.3,133.7 " /></g><g id="bbox:4.1_49.2_4.2_49.3" ><polygon points="372.1,133.7 376.0,133.7 376.0,139.6 372.1,139.6 372.1,133.7 " /></g><g id="bbox:4.2_49.2_4.3_49.3" ><polygon points="376.0,133.7 379.8,133.7 379.8,139.6 376.0,139.6 376.0,133.7 " /></g><g id="bbox:4.3_49.2_4.4_49.3" ><polygon points="379.8,133.7 383.7,133.7 383.7,139.6 379.8,139.6 379.8,133.7 " /></g><g id="bbox:4.4_49.2_4.5_49.3" ><polygon points="383.7,133.7 387.5,133.7 387.5,139.6 383.7,139.6 383.7,133.7 " /></g><g id="bbox:4.5_49.2_4.6_49.3" ><polygon points="387.5,133.7 391.4,133.7 391.4,139.6 387.5,139.6 387.5,133.7 " /></g><g id="bbox:4.6_49.2_4.7_49.3" ><polygon points="391.4,133.7 395.2,133.7 395.2,139.6 391.4,139.6 391.4,133.7 " /></g><g id="bbox:4.7_49.2_4.8_49.3" ><polygon points="395.2,133.7 399.1,133.7 399.1,139.6 395.2,139.6 395.2,133.7 " /></g><g id="bbox:4.8_49.2_4.9_49.3" ><polygon points="399.1,133.7 402.9,133.7 402.9,139.6 399.1,139.6 399.1,133.7 " /></g><g id="bbox:4.9_49.2_5_49.3" ><polygon points="402.9,133.7 406.7,133.7 406.7,139.6 402.9,139.6 402.9,133.7 " /></g><g id="bbox:5_49.2_5.1_49.3" ><polygon points="406.7,133.7 410.6,133.7 410.6,139.6 406.7,139.6 406.7,133.7 " /></g><g id="bbox:5.1_49.2_5.2_49.3" ><polygon points="410.6,133.7 414.4,133.7 414.4,139.6 410.6,139.6 410.6,133.7 " /></g><g id="bbox:5.2_49.2_5.3_49.3" ><polygon points="414.4,133.7 418.3,133.7 418.3,139.6 414.4,139.6 414.4,133.7 " /></g><g id="bbox:5.3_49.2_5.4_49.3" ><polygon points="418.3,133.7 422.1,133.7 422.1,139.6 418.3,139.6 418.3,133.7 " /></g><g id="bbox:5.4_49.2_5.5_49.3" ><polygon points="422.1,133.7 426.0,133.7 426.0,139.6 422.1,139.6 422.1,133.7 " /></g><g id="bbox:5.5_49.2_5.6_49.3" ><polygon points="426.0,133.7 429.8,133.7 429.8,139.6 426.0,139.6 426.0,133.7 " /></g><g id="bbox:5.6_49.2_5.7_49.3" ><polygon points="429.8,133.7 433.7,133.7 433.7,139.6 429.8,139.6 429.8,133.7 " /></g><g id="bbox:5.7_49.2_5.8_49.3" ><polygon points="433.7,133.7 437.5,133.7 437.5,139.6 433.7,139.6 433.7,133.7 " /></g><g id="bbox:5.8_49.2_5.9_49.3" ><polygon points="437.5,133.7 441.4,133.7 441.4,139.6 437.5,139.6 437.5,133.7 " /></g><g id="bbox:5.9_49.2_6_49.3" ><polygon points="441.4,133.7 445.2,133.7 445.2,139.6 441.4,139.6 441.4,133.7 " /></g><g id="bbox:6_49.2_6.1_49.3" ><polygon points="445.2,133.7 449.1,133.7 449.1,139.6 445.2,139.6 445.2,133.7 " /></g><g id="bbox:6.1_49.2_6.2_49.3" ><polygon points="449.1,133.7 452.9,133.7 452.9,139.6 449.1,139.6 449.1,133.7 " /></g><g id="bbox:6.2_49.2_6.3_49.3" ><polygon points="452.9,133.7 456.8,133.7 456.8,139.6 452.9,139.6 452.9,133.7 " /></g><g id="bbox:6.3_49.2_6.4_49.3" ><polygon points="456.8,133.7 460.6,133.7 460.6,139.6 456.8,139.6 456.8,133.7 " /></g><g id="bbox:6.4_49.2_6.5_49.3" ><polygon points="460.6,133.7 464.5,133.7 464.5,139.6 460.6,139.6 460.6,133.7 " /></g><g id="bbox:6.5_49.2_6.6_49.3" ><polygon points="464.5,133.7 468.3,133.7 468.3,139.6 464.5,139.6 464.5,133.7 " /></g><g id="bbox:6.6_49.2_6.7_49.3" ><polygon points="468.3,133.7 472.2,133.7 472.2,139.6 468.3,139.6 468.3,133.7 " /></g><g id="bbox:6.7_49.2_6.8_49.3" ><polygon points="472.2,133.7 476.0,133.7 476.0,139.6 472.2,139.6 472.2,133.7 " /></g><g id="bbox:6.8_49.2_6.9_49.3" ><polygon points="476.0,133.7 479.9,133.7 479.9,139.6 476.0,139.6 476.0,133.7 " /></g><g id="bbox:6.9_49.2_7_49.3" ><polygon points="479.9,133.7 483.7,133.7 483.7,139.6 479.9,139.6 479.9,133.7 " /></g><g id="bbox:7_49.2_7.1_49.3" ><polygon points="483.7,133.7 487.6,133.7 487.6,139.6 483.7,139.6 483.7,133.7 " /></g><g id="bbox:-2.9_49.1_-2.8_49.2" ><polygon points="102.7,139.6 106.6,139.6 106.6,145.5 102.7,145.5 102.7,139.6 " /></g><g id="bbox:-1.7_49.1_-1.6_49.2" ><polygon points="148.9,139.6 152.8,139.6 152.8,145.5 148.9,145.5 148.9,139.6 " /></g><g id="bbox:-1.6_49.1_-1.5_49.2" ><polygon points="152.8,139.6 156.6,139.6 156.6,145.5 152.8,145.5 152.8,139.6 " /></g><g id="bbox:-1.5_49.1_-1.4_49.2" ><polygon points="156.6,139.6 160.5,139.6 160.5,145.5 156.6,145.5 156.6,139.6 " /></g><g id="bbox:-1.4_49.1_-1.3_49.2" ><polygon points="160.5,139.6 164.3,139.6 164.3,145.5 160.5,145.5 160.5,139.6 " /></g><g id="bbox:-1.3_49.1_-1.2_49.2" ><polygon points="164.3,139.6 168.2,139.6 168.2,145.5 164.3,145.5 164.3,139.6 " /></g><g id="bbox:-1.2_49.1_-1.1_49.2" ><polygon points="168.2,139.6 172.0,139.6 172.0,145.5 168.2,145.5 168.2,139.6 " /></g><g id="bbox:-1.1_49.1_-1_49.2" ><polygon points="172.0,139.6 175.9,139.6 175.9,145.5 172.0,145.5 172.0,139.6 " /></g><g id="bbox:-1_49.1_-0.9_49.2" ><polygon points="175.9,139.6 179.7,139.6 179.7,145.5 175.9,145.5 175.9,139.6 " /></g><g id="bbox:-0.9_49.1_-0.8_49.2" ><polygon points="179.7,139.6 183.6,139.6 183.6,145.5 179.7,145.5 179.7,139.6 " /></g><g id="bbox:-0.8_49.1_-0.7_49.2" ><polygon points="183.6,139.6 187.4,139.6 187.4,145.5 183.6,145.5 183.6,139.6 " /></g><g id="bbox:-0.7_49.1_-0.6_49.2" ><polygon points="187.4,139.6 191.3,139.6 191.3,145.5 187.4,145.5 187.4,139.6 " /></g><g id="bbox:-0.6_49.1_-0.5_49.2" ><polygon points="191.3,139.6 195.1,139.6 195.1,145.5 191.3,145.5 191.3,139.6 " /></g><g id="bbox:-0.5_49.1_-0.4_49.2" ><polygon points="195.1,139.6 198.9,139.6 198.9,145.5 195.1,145.5 195.1,139.6 " /></g><g id="bbox:-0.4_49.1_-0.3_49.2" ><polygon points="198.9,139.6 202.8,139.6 202.8,145.5 198.9,145.5 198.9,139.6 " /></g><g id="bbox:-0.3_49.1_-0.2_49.2" ><polygon points="202.8,139.6 206.6,139.6 206.6,145.5 202.8,145.5 202.8,139.6 " /></g><g id="bbox:-0.2_49.1_-0.1_49.2" ><polygon points="206.6,139.6 210.5,139.6 210.5,145.5 206.6,145.5 206.6,139.6 " /></g><g id="bbox:-0.1_49.1_0_49.2" ><polygon points="210.5,139.6 214.3,139.6 214.3,145.5 210.5,145.5 210.5,139.6 " /></g><g id="bbox:0_49.1_0.1_49.2" ><polygon points="214.3,139.6 218.2,139.6 218.2,145.5 214.3,145.5 214.3,139.6 " /></g><g id="bbox:0.1_49.1_0.2_49.2" ><polygon points="218.2,139.6 222.0,139.6 222.0,145.5 218.2,145.5 218.2,139.6 " /></g><g id="bbox:0.2_49.1_0.3_49.2" ><polygon points="222.0,139.6 225.9,139.6 225.9,145.5 222.0,145.5 222.0,139.6 " /></g><g id="bbox:0.3_49.1_0.4_49.2" ><polygon points="225.9,139.6 229.7,139.6 229.7,145.5 225.9,145.5 225.9,139.6 " /></g><g id="bbox:0.4_49.1_0.5_49.2" ><polygon points="229.7,139.6 233.6,139.6 233.6,145.5 229.7,145.5 229.7,139.6 " /></g><g id="bbox:0.5_49.1_0.6_49.2" ><polygon points="233.6,139.6 237.4,139.6 237.4,145.5 233.6,145.5 233.6,139.6 " /></g><g id="bbox:0.6_49.1_0.7_49.2" ><polygon points="237.4,139.6 241.3,139.6 241.3,145.5 237.4,145.5 237.4,139.6 " /></g><g id="bbox:0.7_49.1_0.8_49.2" ><polygon points="241.3,139.6 245.1,139.6 245.1,145.5 241.3,145.5 241.3,139.6 " /></g><g id="bbox:0.8_49.1_0.9_49.2" ><polygon points="245.1,139.6 249.0,139.6 249.0,145.5 245.1,145.5 245.1,139.6 " /></g><g id="bbox:0.9_49.1_1_49.2" ><polygon points="249.0,139.6 252.8,139.6 252.8,145.5 249.0,145.5 249.0,139.6 " /></g><g id="bbox:1_49.1_1.1_49.2" ><polygon points="252.8,139.6 256.7,139.6 256.7,145.5 252.8,145.5 252.8,139.6 " /></g><g id="bbox:1.1_49.1_1.2_49.2" ><polygon points="256.7,139.6 260.5,139.6 260.5,145.5 256.7,145.5 256.7,139.6 " /></g><g id="bbox:1.2_49.1_1.3_49.2" ><polygon points="260.5,139.6 264.4,139.6 264.4,145.5 260.5,145.5 260.5,139.6 " /></g><g id="bbox:1.3_49.1_1.4_49.2" ><polygon points="264.4,139.6 268.2,139.6 268.2,145.5 264.4,145.5 264.4,139.6 " /></g><g id="bbox:1.4_49.1_1.5_49.2" ><polygon points="268.2,139.6 272.1,139.6 272.1,145.5 268.2,145.5 268.2,139.6 " /></g><g id="bbox:1.5_49.1_1.6_49.2" ><polygon points="272.1,139.6 275.9,139.6 275.9,145.5 272.1,145.5 272.1,139.6 " /></g><g id="bbox:1.6_49.1_1.7_49.2" ><polygon points="275.9,139.6 279.8,139.6 279.8,145.5 275.9,145.5 275.9,139.6 " /></g><g id="bbox:1.7_49.1_1.8_49.2" ><polygon points="279.8,139.6 283.6,139.6 283.6,145.5 279.8,145.5 279.8,139.6 " /></g><g id="bbox:1.8_49.1_1.9_49.2" ><polygon points="283.6,139.6 287.5,139.6 287.5,145.5 283.6,145.5 283.6,139.6 " /></g><g id="bbox:1.9_49.1_2_49.2" ><polygon points="287.5,139.6 291.3,139.6 291.3,145.5 287.5,145.5 287.5,139.6 " /></g><g id="bbox:2_49.1_2.1_49.2" ><polygon points="291.3,139.6 295.2,139.6 295.2,145.5 291.3,145.5 291.3,139.6 " /></g><g id="bbox:2.1_49.1_2.2_49.2" ><polygon points="295.2,139.6 299.0,139.6 299.0,145.5 295.2,145.5 295.2,139.6 " /></g><g id="bbox:2.2_49.1_2.3_49.2" ><polygon points="299.0,139.6 302.8,139.6 302.8,145.5 299.0,145.5 299.0,139.6 " /></g><g id="bbox:2.3_49.1_2.4_49.2" ><polygon points="302.8,139.6 306.7,139.6 306.7,145.5 302.8,145.5 302.8,139.6 " /></g><g id="bbox:2.4_49.1_2.5_49.2" ><polygon points="306.7,139.6 310.5,139.6 310.5,145.5 306.7,145.5 306.7,139.6 " /></g><g id="bbox:2.5_49.1_2.6_49.2" ><polygon points="310.5,139.6 314.4,139.6 314.4,145.5 310.5,145.5 310.5,139.6 " /></g><g id="bbox:2.6_49.1_2.7_49.2" ><polygon points="314.4,139.6 318.2,139.6 318.2,145.5 314.4,145.5 314.4,139.6 " /></g><g id="bbox:2.7_49.1_2.8_49.2" ><polygon points="318.2,139.6 322.1,139.6 322.1,145.5 318.2,145.5 318.2,139.6 " /></g><g id="bbox:2.8_49.1_2.9_49.2" ><polygon points="322.1,139.6 325.9,139.6 325.9,145.5 322.1,145.5 322.1,139.6 " /></g><g id="bbox:2.9_49.1_3_49.2" ><polygon points="325.9,139.6 329.8,139.6 329.8,145.5 325.9,145.5 325.9,139.6 " /></g><g id="bbox:3_49.1_3.1_49.2" ><polygon points="329.8,139.6 333.6,139.6 333.6,145.5 329.8,145.5 329.8,139.6 " /></g><g id="bbox:3.1_49.1_3.2_49.2" ><polygon points="333.6,139.6 337.5,139.6 337.5,145.5 333.6,145.5 333.6,139.6 " /></g><g id="bbox:3.2_49.1_3.3_49.2" ><polygon points="337.5,139.6 341.3,139.6 341.3,145.5 337.5,145.5 337.5,139.6 " /></g><g id="bbox:3.3_49.1_3.4_49.2" ><polygon points="341.3,139.6 345.2,139.6 345.2,145.5 341.3,145.5 341.3,139.6 " /></g><g id="bbox:3.4_49.1_3.5_49.2" ><polygon points="345.2,139.6 349.0,139.6 349.0,145.5 345.2,145.5 345.2,139.6 " /></g><g id="bbox:3.5_49.1_3.6_49.2" ><polygon points="349.0,139.6 352.9,139.6 352.9,145.5 349.0,145.5 349.0,139.6 " /></g><g id="bbox:3.6_49.1_3.7_49.2" ><polygon points="352.9,139.6 356.7,139.6 356.7,145.5 352.9,145.5 352.9,139.6 " /></g><g id="bbox:3.7_49.1_3.8_49.2" ><polygon points="356.7,139.6 360.6,139.6 360.6,145.5 356.7,145.5 356.7,139.6 " /></g><g id="bbox:3.8_49.1_3.9_49.2" ><polygon points="360.6,139.6 364.4,139.6 364.4,145.5 360.6,145.5 360.6,139.6 " /></g><g id="bbox:3.9_49.1_4_49.2" ><polygon points="364.4,139.6 368.3,139.6 368.3,145.5 364.4,145.5 364.4,139.6 " /></g><g id="bbox:4_49.1_4.1_49.2" ><polygon points="368.3,139.6 372.1,139.6 372.1,145.5 368.3,145.5 368.3,139.6 " /></g><g id="bbox:4.1_49.1_4.2_49.2" ><polygon points="372.1,139.6 376.0,139.6 376.0,145.5 372.1,145.5 372.1,139.6 " /></g><g id="bbox:4.2_49.1_4.3_49.2" ><polygon points="376.0,139.6 379.8,139.6 379.8,145.5 376.0,145.5 376.0,139.6 " /></g><g id="bbox:4.3_49.1_4.4_49.2" ><polygon points="379.8,139.6 383.7,139.6 383.7,145.5 379.8,145.5 379.8,139.6 " /></g><g id="bbox:4.4_49.1_4.5_49.2" ><polygon points="383.7,139.6 387.5,139.6 387.5,145.5 383.7,145.5 383.7,139.6 " /></g><g id="bbox:4.5_49.1_4.6_49.2" ><polygon points="387.5,139.6 391.4,139.6 391.4,145.5 387.5,145.5 387.5,139.6 " /></g><g id="bbox:4.6_49.1_4.7_49.2" ><polygon points="391.4,139.6 395.2,139.6 395.2,145.5 391.4,145.5 391.4,139.6 " /></g><g id="bbox:4.7_49.1_4.8_49.2" ><polygon points="395.2,139.6 399.1,139.6 399.1,145.5 395.2,145.5 395.2,139.6 " /></g><g id="bbox:4.8_49.1_4.9_49.2" ><polygon points="399.1,139.6 402.9,139.6 402.9,145.5 399.1,145.5 399.1,139.6 " /></g><g id="bbox:4.9_49.1_5_49.2" ><polygon points="402.9,139.6 406.7,139.6 406.7,145.5 402.9,145.5 402.9,139.6 " /></g><g id="bbox:5_49.1_5.1_49.2" ><polygon points="406.7,139.6 410.6,139.6 410.6,145.5 406.7,145.5 406.7,139.6 " /></g><g id="bbox:5.1_49.1_5.2_49.2" ><polygon points="410.6,139.6 414.4,139.6 414.4,145.5 410.6,145.5 410.6,139.6 " /></g><g id="bbox:5.2_49.1_5.3_49.2" ><polygon points="414.4,139.6 418.3,139.6 418.3,145.5 414.4,145.5 414.4,139.6 " /></g><g id="bbox:5.3_49.1_5.4_49.2" ><polygon points="418.3,139.6 422.1,139.6 422.1,145.5 418.3,145.5 418.3,139.6 " /></g><g id="bbox:5.4_49.1_5.5_49.2" ><polygon points="422.1,139.6 426.0,139.6 426.0,145.5 422.1,145.5 422.1,139.6 " /></g><g id="bbox:5.5_49.1_5.6_49.2" ><polygon points="426.0,139.6 429.8,139.6 429.8,145.5 426.0,145.5 426.0,139.6 " /></g><g id="bbox:5.6_49.1_5.7_49.2" ><polygon points="429.8,139.6 433.7,139.6 433.7,145.5 429.8,145.5 429.8,139.6 " /></g><g id="bbox:5.7_49.1_5.8_49.2" ><polygon points="433.7,139.6 437.5,139.6 437.5,145.5 433.7,145.5 433.7,139.6 " /></g><g id="bbox:5.8_49.1_5.9_49.2" ><polygon points="437.5,139.6 441.4,139.6 441.4,145.5 437.5,145.5 437.5,139.6 " /></g><g id="bbox:5.9_49.1_6_49.2" ><polygon points="441.4,139.6 445.2,139.6 445.2,145.5 441.4,145.5 441.4,139.6 " /></g><g id="bbox:6_49.1_6.1_49.2" ><polygon points="445.2,139.6 449.1,139.6 449.1,145.5 445.2,145.5 445.2,139.6 " /></g><g id="bbox:6.1_49.1_6.2_49.2" ><polygon points="449.1,139.6 452.9,139.6 452.9,145.5 449.1,145.5 449.1,139.6 " /></g><g id="bbox:6.2_49.1_6.3_49.2" ><polygon points="452.9,139.6 456.8,139.6 456.8,145.5 452.9,145.5 452.9,139.6 " /></g><g id="bbox:6.3_49.1_6.4_49.2" ><polygon points="456.8,139.6 460.6,139.6 460.6,145.5 456.8,145.5 456.8,139.6 " /></g><g id="bbox:6.4_49.1_6.5_49.2" ><polygon points="460.6,139.6 464.5,139.6 464.5,145.5 460.6,145.5 460.6,139.6 " /></g><g id="bbox:6.5_49.1_6.6_49.2" ><polygon points="464.5,139.6 468.3,139.6 468.3,145.5 464.5,145.5 464.5,139.6 " /></g><g id="bbox:6.6_49.1_6.7_49.2" ><polygon points="468.3,139.6 472.2,139.6 472.2,145.5 468.3,145.5 468.3,139.6 " /></g><g id="bbox:6.7_49.1_6.8_49.2" ><polygon points="472.2,139.6 476.0,139.6 476.0,145.5 472.2,145.5 472.2,139.6 " /></g><g id="bbox:6.8_49.1_6.9_49.2" ><polygon points="476.0,139.6 479.9,139.6 479.9,145.5 476.0,145.5 476.0,139.6 " /></g><g id="bbox:6.9_49.1_7_49.2" ><polygon points="479.9,139.6 483.7,139.6 483.7,145.5 479.9,145.5 479.9,139.6 " /></g><g id="bbox:7_49.1_7.1_49.2" ><polygon points="483.7,139.6 487.6,139.6 487.6,145.5 483.7,145.5 483.7,139.6 " /></g><g id="bbox:7.1_49.1_7.2_49.2" ><polygon points="487.6,139.6 491.4,139.6 491.4,145.5 487.6,145.5 487.6,139.6 " /></g><g id="bbox:7.2_49.1_7.3_49.2" ><polygon points="491.4,139.6 495.3,139.6 495.3,145.5 491.4,145.5 491.4,139.6 " /></g><g id="bbox:7.3_49.1_7.4_49.2" ><polygon points="495.3,139.6 499.1,139.6 499.1,145.5 495.3,145.5 495.3,139.6 " /></g><g id="bbox:7.4_49.1_7.5_49.2" ><polygon points="499.1,139.6 503.0,139.6 503.0,145.5 499.1,145.5 499.1,139.6 " /></g><g id="bbox:7.5_49.1_7.6_49.2" ><polygon points="503.0,139.6 506.8,139.6 506.8,145.5 503.0,145.5 503.0,139.6 " /></g><g id="bbox:-1.7_49_-1.6_49.1" ><polygon points="148.9,145.5 152.8,145.5 152.8,151.4 148.9,151.4 148.9,145.5 " /></g><g id="bbox:-1.6_49_-1.5_49.1" ><polygon points="152.8,145.5 156.6,145.5 156.6,151.4 152.8,151.4 152.8,145.5 " /></g><g id="bbox:-1.5_49_-1.4_49.1" ><polygon points="156.6,145.5 160.5,145.5 160.5,151.4 156.6,151.4 156.6,145.5 " /></g><g id="bbox:-1.4_49_-1.3_49.1" ><polygon points="160.5,145.5 164.3,145.5 164.3,151.4 160.5,151.4 160.5,145.5 " /></g><g id="bbox:-1.3_49_-1.2_49.1" ><polygon points="164.3,145.5 168.2,145.5 168.2,151.4 164.3,151.4 164.3,145.5 " /></g><g id="bbox:-1.2_49_-1.1_49.1" ><polygon points="168.2,145.5 172.0,145.5 172.0,151.4 168.2,151.4 168.2,145.5 " /></g><g id="bbox:-1.1_49_-1_49.1" ><polygon points="172.0,145.5 175.9,145.5 175.9,151.4 172.0,151.4 172.0,145.5 " /></g><g id="bbox:-1_49_-0.9_49.1" ><polygon points="175.9,145.5 179.7,145.5 179.7,151.4 175.9,151.4 175.9,145.5 " /></g><g id="bbox:-0.9_49_-0.8_49.1" ><polygon points="179.7,145.5 183.6,145.5 183.6,151.4 179.7,151.4 179.7,145.5 " /></g><g id="bbox:-0.8_49_-0.7_49.1" ><polygon points="183.6,145.5 187.4,145.5 187.4,151.4 183.6,151.4 183.6,145.5 " /></g><g id="bbox:-0.7_49_-0.6_49.1" ><polygon points="187.4,145.5 191.3,145.5 191.3,151.4 187.4,151.4 187.4,145.5 " /></g><g id="bbox:-0.6_49_-0.5_49.1" ><polygon points="191.3,145.5 195.1,145.5 195.1,151.4 191.3,151.4 191.3,145.5 " /></g><g id="bbox:-0.5_49_-0.4_49.1" ><polygon points="195.1,145.5 198.9,145.5 198.9,151.4 195.1,151.4 195.1,145.5 " /></g><g id="bbox:-0.4_49_-0.3_49.1" ><polygon points="198.9,145.5 202.8,145.5 202.8,151.4 198.9,151.4 198.9,145.5 " /></g><g id="bbox:-0.3_49_-0.2_49.1" ><polygon points="202.8,145.5 206.6,145.5 206.6,151.4 202.8,151.4 202.8,145.5 " /></g><g id="bbox:-0.2_49_-0.1_49.1" ><polygon points="206.6,145.5 210.5,145.5 210.5,151.4 206.6,151.4 206.6,145.5 " /></g><g id="bbox:-0.1_49_0_49.1" ><polygon points="210.5,145.5 214.3,145.5 214.3,151.4 210.5,151.4 210.5,145.5 " /></g><g id="bbox:0_49_0.1_49.1" ><polygon points="214.3,145.5 218.2,145.5 218.2,151.4 214.3,151.4 214.3,145.5 " /></g><g id="bbox:0.1_49_0.2_49.1" ><polygon points="218.2,145.5 222.0,145.5 222.0,151.4 218.2,151.4 218.2,145.5 " /></g><g id="bbox:0.2_49_0.3_49.1" ><polygon points="222.0,145.5 225.9,145.5 225.9,151.4 222.0,151.4 222.0,145.5 " /></g><g id="bbox:0.3_49_0.4_49.1" ><polygon points="225.9,145.5 229.7,145.5 229.7,151.4 225.9,151.4 225.9,145.5 " /></g><g id="bbox:0.4_49_0.5_49.1" ><polygon points="229.7,145.5 233.6,145.5 233.6,151.4 229.7,151.4 229.7,145.5 " /></g><g id="bbox:0.5_49_0.6_49.1" ><polygon points="233.6,145.5 237.4,145.5 237.4,151.4 233.6,151.4 233.6,145.5 " /></g><g id="bbox:0.6_49_0.7_49.1" ><polygon points="237.4,145.5 241.3,145.5 241.3,151.4 237.4,151.4 237.4,145.5 " /></g><g id="bbox:0.7_49_0.8_49.1" ><polygon points="241.3,145.5 245.1,145.5 245.1,151.4 241.3,151.4 241.3,145.5 " /></g><g id="bbox:0.8_49_0.9_49.1" ><polygon points="245.1,145.5 249.0,145.5 249.0,151.4 245.1,151.4 245.1,145.5 " /></g><g id="bbox:0.9_49_1_49.1" ><polygon points="249.0,145.5 252.8,145.5 252.8,151.4 249.0,151.4 249.0,145.5 " /></g><g id="bbox:1_49_1.1_49.1" ><polygon points="252.8,145.5 256.7,145.5 256.7,151.4 252.8,151.4 252.8,145.5 " /></g><g id="bbox:1.1_49_1.2_49.1" ><polygon points="256.7,145.5 260.5,145.5 260.5,151.4 256.7,151.4 256.7,145.5 " /></g><g id="bbox:1.2_49_1.3_49.1" ><polygon points="260.5,145.5 264.4,145.5 264.4,151.4 260.5,151.4 260.5,145.5 " /></g><g id="bbox:1.3_49_1.4_49.1" ><polygon points="264.4,145.5 268.2,145.5 268.2,151.4 264.4,151.4 264.4,145.5 " /></g><g id="bbox:1.4_49_1.5_49.1" ><polygon points="268.2,145.5 272.1,145.5 272.1,151.4 268.2,151.4 268.2,145.5 " /></g><g id="bbox:1.5_49_1.6_49.1" ><polygon points="272.1,145.5 275.9,145.5 275.9,151.4 272.1,151.4 272.1,145.5 " /></g><g id="bbox:1.6_49_1.7_49.1" ><polygon points="275.9,145.5 279.8,145.5 279.8,151.4 275.9,151.4 275.9,145.5 " /></g><g id="bbox:1.7_49_1.8_49.1" ><polygon points="279.8,145.5 283.6,145.5 283.6,151.4 279.8,151.4 279.8,145.5 " /></g><g id="bbox:1.8_49_1.9_49.1" ><polygon points="283.6,145.5 287.5,145.5 287.5,151.4 283.6,151.4 283.6,145.5 " /></g><g id="bbox:1.9_49_2_49.1" ><polygon points="287.5,145.5 291.3,145.5 291.3,151.4 287.5,151.4 287.5,145.5 " /></g><g id="bbox:2_49_2.1_49.1" ><polygon points="291.3,145.5 295.2,145.5 295.2,151.4 291.3,151.4 291.3,145.5 " /></g><g id="bbox:2.1_49_2.2_49.1" ><polygon points="295.2,145.5 299.0,145.5 299.0,151.4 295.2,151.4 295.2,145.5 " /></g><g id="bbox:2.2_49_2.3_49.1" ><polygon points="299.0,145.5 302.8,145.5 302.8,151.4 299.0,151.4 299.0,145.5 " /></g><g id="bbox:2.3_49_2.4_49.1" ><polygon points="302.8,145.5 306.7,145.5 306.7,151.4 302.8,151.4 302.8,145.5 " /></g><g id="bbox:2.4_49_2.5_49.1" ><polygon points="306.7,145.5 310.5,145.5 310.5,151.4 306.7,151.4 306.7,145.5 " /></g><g id="bbox:2.5_49_2.6_49.1" ><polygon points="310.5,145.5 314.4,145.5 314.4,151.4 310.5,151.4 310.5,145.5 " /></g><g id="bbox:2.6_49_2.7_49.1" ><polygon points="314.4,145.5 318.2,145.5 318.2,151.4 314.4,151.4 314.4,145.5 " /></g><g id="bbox:2.7_49_2.8_49.1" ><polygon points="318.2,145.5 322.1,145.5 322.1,151.4 318.2,151.4 318.2,145.5 " /></g><g id="bbox:2.8_49_2.9_49.1" ><polygon points="322.1,145.5 325.9,145.5 325.9,151.4 322.1,151.4 322.1,145.5 " /></g><g id="bbox:2.9_49_3_49.1" ><polygon points="325.9,145.5 329.8,145.5 329.8,151.4 325.9,151.4 325.9,145.5 " /></g><g id="bbox:3_49_3.1_49.1" ><polygon points="329.8,145.5 333.6,145.5 333.6,151.4 329.8,151.4 329.8,145.5 " /></g><g id="bbox:3.1_49_3.2_49.1" ><polygon points="333.6,145.5 337.5,145.5 337.5,151.4 333.6,151.4 333.6,145.5 " /></g><g id="bbox:3.2_49_3.3_49.1" ><polygon points="337.5,145.5 341.3,145.5 341.3,151.4 337.5,151.4 337.5,145.5 " /></g><g id="bbox:3.3_49_3.4_49.1" ><polygon points="341.3,145.5 345.2,145.5 345.2,151.4 341.3,151.4 341.3,145.5 " /></g><g id="bbox:3.4_49_3.5_49.1" ><polygon points="345.2,145.5 349.0,145.5 349.0,151.4 345.2,151.4 345.2,145.5 " /></g><g id="bbox:3.5_49_3.6_49.1" ><polygon points="349.0,145.5 352.9,145.5 352.9,151.4 349.0,151.4 349.0,145.5 " /></g><g id="bbox:3.6_49_3.7_49.1" ><polygon points="352.9,145.5 356.7,145.5 356.7,151.4 352.9,151.4 352.9,145.5 " /></g><g id="bbox:3.7_49_3.8_49.1" ><polygon points="356.7,145.5 360.6,145.5 360.6,151.4 356.7,151.4 356.7,145.5 " /></g><g id="bbox:3.8_49_3.9_49.1" ><polygon points="360.6,145.5 364.4,145.5 364.4,151.4 360.6,151.4 360.6,145.5 " /></g><g id="bbox:3.9_49_4_49.1" ><polygon points="364.4,145.5 368.3,145.5 368.3,151.4 364.4,151.4 364.4,145.5 " /></g><g id="bbox:4_49_4.1_49.1" ><polygon points="368.3,145.5 372.1,145.5 372.1,151.4 368.3,151.4 368.3,145.5 " /></g><g id="bbox:4.1_49_4.2_49.1" ><polygon points="372.1,145.5 376.0,145.5 376.0,151.4 372.1,151.4 372.1,145.5 " /></g><g id="bbox:4.2_49_4.3_49.1" ><polygon points="376.0,145.5 379.8,145.5 379.8,151.4 376.0,151.4 376.0,145.5 " /></g><g id="bbox:4.3_49_4.4_49.1" ><polygon points="379.8,145.5 383.7,145.5 383.7,151.4 379.8,151.4 379.8,145.5 " /></g><g id="bbox:4.4_49_4.5_49.1" ><polygon points="383.7,145.5 387.5,145.5 387.5,151.4 383.7,151.4 383.7,145.5 " /></g><g id="bbox:4.5_49_4.6_49.1" ><polygon points="387.5,145.5 391.4,145.5 391.4,151.4 387.5,151.4 387.5,145.5 " /></g><g id="bbox:4.6_49_4.7_49.1" ><polygon points="391.4,145.5 395.2,145.5 395.2,151.4 391.4,151.4 391.4,145.5 " /></g><g id="bbox:4.7_49_4.8_49.1" ><polygon points="395.2,145.5 399.1,145.5 399.1,151.4 395.2,151.4 395.2,145.5 " /></g><g id="bbox:4.8_49_4.9_49.1" ><polygon points="399.1,145.5 402.9,145.5 402.9,151.4 399.1,151.4 399.1,145.5 " /></g><g id="bbox:4.9_49_5_49.1" ><polygon points="402.9,145.5 406.7,145.5 406.7,151.4 402.9,151.4 402.9,145.5 " /></g><g id="bbox:5_49_5.1_49.1" ><polygon points="406.7,145.5 410.6,145.5 410.6,151.4 406.7,151.4 406.7,145.5 " /></g><g id="bbox:5.1_49_5.2_49.1" ><polygon points="410.6,145.5 414.4,145.5 414.4,151.4 410.6,151.4 410.6,145.5 " /></g><g id="bbox:5.2_49_5.3_49.1" ><polygon points="414.4,145.5 418.3,145.5 418.3,151.4 414.4,151.4 414.4,145.5 " /></g><g id="bbox:5.3_49_5.4_49.1" ><polygon points="418.3,145.5 422.1,145.5 422.1,151.4 418.3,151.4 418.3,145.5 " /></g><g id="bbox:5.4_49_5.5_49.1" ><polygon points="422.1,145.5 426.0,145.5 426.0,151.4 422.1,151.4 422.1,145.5 " /></g><g id="bbox:5.5_49_5.6_49.1" ><polygon points="426.0,145.5 429.8,145.5 429.8,151.4 426.0,151.4 426.0,145.5 " /></g><g id="bbox:5.6_49_5.7_49.1" ><polygon points="429.8,145.5 433.7,145.5 433.7,151.4 429.8,151.4 429.8,145.5 " /></g><g id="bbox:5.7_49_5.8_49.1" ><polygon points="433.7,145.5 437.5,145.5 437.5,151.4 433.7,151.4 433.7,145.5 " /></g><g id="bbox:5.8_49_5.9_49.1" ><polygon points="437.5,145.5 441.4,145.5 441.4,151.4 437.5,151.4 437.5,145.5 " /></g><g id="bbox:5.9_49_6_49.1" ><polygon points="441.4,145.5 445.2,145.5 445.2,151.4 441.4,151.4 441.4,145.5 " /></g><g id="bbox:6_49_6.1_49.1" ><polygon points="445.2,145.5 449.1,145.5 449.1,151.4 445.2,151.4 445.2,145.5 " /></g><g id="bbox:6.1_49_6.2_49.1" ><polygon points="449.1,145.5 452.9,145.5 452.9,151.4 449.1,151.4 449.1,145.5 " /></g><g id="bbox:6.2_49_6.3_49.1" ><polygon points="452.9,145.5 456.8,145.5 456.8,151.4 452.9,151.4 452.9,145.5 " /></g><g id="bbox:6.3_49_6.4_49.1" ><polygon points="456.8,145.5 460.6,145.5 460.6,151.4 456.8,151.4 456.8,145.5 " /></g><g id="bbox:6.4_49_6.5_49.1" ><polygon points="460.6,145.5 464.5,145.5 464.5,151.4 460.6,151.4 460.6,145.5 " /></g><g id="bbox:6.5_49_6.6_49.1" ><polygon points="464.5,145.5 468.3,145.5 468.3,151.4 464.5,151.4 464.5,145.5 " /></g><g id="bbox:6.6_49_6.7_49.1" ><polygon points="468.3,145.5 472.2,145.5 472.2,151.4 468.3,151.4 468.3,145.5 " /></g><g id="bbox:6.7_49_6.8_49.1" ><polygon points="472.2,145.5 476.0,145.5 476.0,151.4 472.2,151.4 472.2,145.5 " /></g><g id="bbox:6.8_49_6.9_49.1" ><polygon points="476.0,145.5 479.9,145.5 479.9,151.4 476.0,151.4 476.0,145.5 " /></g><g id="bbox:6.9_49_7_49.1" ><polygon points="479.9,145.5 483.7,145.5 483.7,151.4 479.9,151.4 479.9,145.5 " /></g><g id="bbox:7_49_7.1_49.1" ><polygon points="483.7,145.5 487.6,145.5 487.6,151.4 483.7,151.4 483.7,145.5 " /></g><g id="bbox:7.1_49_7.2_49.1" ><polygon points="487.6,145.5 491.4,145.5 491.4,151.4 487.6,151.4 487.6,145.5 " /></g><g id="bbox:7.2_49_7.3_49.1" ><polygon points="491.4,145.5 495.3,145.5 495.3,151.4 491.4,151.4 491.4,145.5 " /></g><g id="bbox:7.3_49_7.4_49.1" ><polygon points="495.3,145.5 499.1,145.5 499.1,151.4 495.3,151.4 495.3,145.5 " /></g><g id="bbox:7.4_49_7.5_49.1" ><polygon points="499.1,145.5 503.0,145.5 503.0,151.4 499.1,151.4 499.1,145.5 " /></g><g id="bbox:7.5_49_7.6_49.1" ><polygon points="503.0,145.5 506.8,145.5 506.8,151.4 503.0,151.4 503.0,145.5 " /></g><g id="bbox:7.6_49_7.7_49.1" ><polygon points="506.8,145.5 510.6,145.5 510.6,151.4 506.8,151.4 506.8,145.5 " /></g><g id="bbox:7.7_49_7.8_49.1" ><polygon points="510.6,145.5 514.5,145.5 514.5,151.4 510.6,151.4 510.6,145.5 " /></g><g id="bbox:7.8_49_7.9_49.1" ><polygon points="514.5,145.5 518.3,145.5 518.3,151.4 514.5,151.4 514.5,145.5 " /></g><g id="bbox:7.9_49_8_49.1" ><polygon points="518.3,145.5 522.2,145.5 522.2,151.4 518.3,151.4 518.3,145.5 " /></g><g id="bbox:8_49_8.1_49.1" ><polygon points="522.2,145.5 526.0,145.5 526.0,151.4 522.2,151.4 522.2,145.5 " /></g><g id="bbox:-3.5_48.9_-3.4_49" ><polygon points="79.7,151.4 83.5,151.4 83.5,157.2 79.7,157.2 79.7,151.4 " /></g><g id="bbox:-3.1_48.9_-3_49" ><polygon points="95.0,151.4 98.9,151.4 98.9,157.2 95.0,157.2 95.0,151.4 " /></g><g id="bbox:-2.1_48.9_-2_49" ><polygon points="133.5,151.4 137.4,151.4 137.4,157.2 133.5,157.2 133.5,151.4 " /></g><g id="bbox:-1.6_48.9_-1.5_49" ><polygon points="152.8,151.4 156.6,151.4 156.6,157.2 152.8,157.2 152.8,151.4 " /></g><g id="bbox:-1.5_48.9_-1.4_49" ><polygon points="156.6,151.4 160.5,151.4 160.5,157.2 156.6,157.2 156.6,151.4 " /></g><g id="bbox:-1.4_48.9_-1.3_49" ><polygon points="160.5,151.4 164.3,151.4 164.3,157.2 160.5,157.2 160.5,151.4 " /></g><g id="bbox:-1.3_48.9_-1.2_49" ><polygon points="164.3,151.4 168.2,151.4 168.2,157.2 164.3,157.2 164.3,151.4 " /></g><g id="bbox:-1.2_48.9_-1.1_49" ><polygon points="168.2,151.4 172.0,151.4 172.0,157.2 168.2,157.2 168.2,151.4 " /></g><g id="bbox:-1.1_48.9_-1_49" ><polygon points="172.0,151.4 175.9,151.4 175.9,157.2 172.0,157.2 172.0,151.4 " /></g><g id="bbox:-1_48.9_-0.9_49" ><polygon points="175.9,151.4 179.7,151.4 179.7,157.2 175.9,157.2 175.9,151.4 " /></g><g id="bbox:-0.9_48.9_-0.8_49" ><polygon points="179.7,151.4 183.6,151.4 183.6,157.2 179.7,157.2 179.7,151.4 " /></g><g id="bbox:-0.8_48.9_-0.7_49" ><polygon points="183.6,151.4 187.4,151.4 187.4,157.2 183.6,157.2 183.6,151.4 " /></g><g id="bbox:-0.7_48.9_-0.6_49" ><polygon points="187.4,151.4 191.3,151.4 191.3,157.2 187.4,157.2 187.4,151.4 " /></g><g id="bbox:-0.6_48.9_-0.5_49" ><polygon points="191.3,151.4 195.1,151.4 195.1,157.2 191.3,157.2 191.3,151.4 " /></g><g id="bbox:-0.5_48.9_-0.4_49" ><polygon points="195.1,151.4 198.9,151.4 198.9,157.2 195.1,157.2 195.1,151.4 " /></g><g id="bbox:-0.4_48.9_-0.3_49" ><polygon points="198.9,151.4 202.8,151.4 202.8,157.2 198.9,157.2 198.9,151.4 " /></g><g id="bbox:-0.3_48.9_-0.2_49" ><polygon points="202.8,151.4 206.6,151.4 206.6,157.2 202.8,157.2 202.8,151.4 " /></g><g id="bbox:-0.2_48.9_-0.1_49" ><polygon points="206.6,151.4 210.5,151.4 210.5,157.2 206.6,157.2 206.6,151.4 " /></g><g id="bbox:-0.1_48.9_0_49" ><polygon points="210.5,151.4 214.3,151.4 214.3,157.2 210.5,157.2 210.5,151.4 " /></g><g id="bbox:0_48.9_0.1_49" ><polygon points="214.3,151.4 218.2,151.4 218.2,157.2 214.3,157.2 214.3,151.4 " /></g><g id="bbox:0.1_48.9_0.2_49" ><polygon points="218.2,151.4 222.0,151.4 222.0,157.2 218.2,157.2 218.2,151.4 " /></g><g id="bbox:0.2_48.9_0.3_49" ><polygon points="222.0,151.4 225.9,151.4 225.9,157.2 222.0,157.2 222.0,151.4 " /></g><g id="bbox:0.3_48.9_0.4_49" ><polygon points="225.9,151.4 229.7,151.4 229.7,157.2 225.9,157.2 225.9,151.4 " /></g><g id="bbox:0.4_48.9_0.5_49" ><polygon points="229.7,151.4 233.6,151.4 233.6,157.2 229.7,157.2 229.7,151.4 " /></g><g id="bbox:0.5_48.9_0.6_49" ><polygon points="233.6,151.4 237.4,151.4 237.4,157.2 233.6,157.2 233.6,151.4 " /></g><g id="bbox:0.6_48.9_0.7_49" ><polygon points="237.4,151.4 241.3,151.4 241.3,157.2 237.4,157.2 237.4,151.4 " /></g><g id="bbox:0.7_48.9_0.8_49" ><polygon points="241.3,151.4 245.1,151.4 245.1,157.2 241.3,157.2 241.3,151.4 " /></g><g id="bbox:0.8_48.9_0.9_49" ><polygon points="245.1,151.4 249.0,151.4 249.0,157.2 245.1,157.2 245.1,151.4 " /></g><g id="bbox:0.9_48.9_1_49" ><polygon points="249.0,151.4 252.8,151.4 252.8,157.2 249.0,157.2 249.0,151.4 " /></g><g id="bbox:1_48.9_1.1_49" ><polygon points="252.8,151.4 256.7,151.4 256.7,157.2 252.8,157.2 252.8,151.4 " /></g><g id="bbox:1.1_48.9_1.2_49" ><polygon points="256.7,151.4 260.5,151.4 260.5,157.2 256.7,157.2 256.7,151.4 " /></g><g id="bbox:1.2_48.9_1.3_49" ><polygon points="260.5,151.4 264.4,151.4 264.4,157.2 260.5,157.2 260.5,151.4 " /></g><g id="bbox:1.3_48.9_1.4_49" ><polygon points="264.4,151.4 268.2,151.4 268.2,157.2 264.4,157.2 264.4,151.4 " /></g><g id="bbox:1.4_48.9_1.5_49" ><polygon points="268.2,151.4 272.1,151.4 272.1,157.2 268.2,157.2 268.2,151.4 " /></g><g id="bbox:1.5_48.9_1.6_49" ><polygon points="272.1,151.4 275.9,151.4 275.9,157.2 272.1,157.2 272.1,151.4 " /></g><g id="bbox:1.6_48.9_1.7_49" ><polygon points="275.9,151.4 279.8,151.4 279.8,157.2 275.9,157.2 275.9,151.4 " /></g><g id="bbox:1.7_48.9_1.8_49" ><polygon points="279.8,151.4 283.6,151.4 283.6,157.2 279.8,157.2 279.8,151.4 " /></g><g id="bbox:1.8_48.9_1.9_49" ><polygon points="283.6,151.4 287.5,151.4 287.5,157.2 283.6,157.2 283.6,151.4 " /></g><g id="bbox:1.9_48.9_2_49" ><polygon points="287.5,151.4 291.3,151.4 291.3,157.2 287.5,157.2 287.5,151.4 " /></g><g id="bbox:2_48.9_2.1_49" ><polygon points="291.3,151.4 295.2,151.4 295.2,157.2 291.3,157.2 291.3,151.4 " /></g><g id="bbox:2.1_48.9_2.2_49" ><polygon points="295.2,151.4 299.0,151.4 299.0,157.2 295.2,157.2 295.2,151.4 " /></g><g id="bbox:2.2_48.9_2.3_49" ><polygon points="299.0,151.4 302.8,151.4 302.8,157.2 299.0,157.2 299.0,151.4 " /></g><g id="bbox:2.3_48.9_2.4_49" ><polygon points="302.8,151.4 306.7,151.4 306.7,157.2 302.8,157.2 302.8,151.4 " /></g><g id="bbox:2.4_48.9_2.5_49" ><polygon points="306.7,151.4 310.5,151.4 310.5,157.2 306.7,157.2 306.7,151.4 " /></g><g id="bbox:2.5_48.9_2.6_49" ><polygon points="310.5,151.4 314.4,151.4 314.4,157.2 310.5,157.2 310.5,151.4 " /></g><g id="bbox:2.6_48.9_2.7_49" ><polygon points="314.4,151.4 318.2,151.4 318.2,157.2 314.4,157.2 314.4,151.4 " /></g><g id="bbox:2.7_48.9_2.8_49" ><polygon points="318.2,151.4 322.1,151.4 322.1,157.2 318.2,157.2 318.2,151.4 " /></g><g id="bbox:2.8_48.9_2.9_49" ><polygon points="322.1,151.4 325.9,151.4 325.9,157.2 322.1,157.2 322.1,151.4 " /></g><g id="bbox:2.9_48.9_3_49" ><polygon points="325.9,151.4 329.8,151.4 329.8,157.2 325.9,157.2 325.9,151.4 " /></g><g id="bbox:3_48.9_3.1_49" ><polygon points="329.8,151.4 333.6,151.4 333.6,157.2 329.8,157.2 329.8,151.4 " /></g><g id="bbox:3.1_48.9_3.2_49" ><polygon points="333.6,151.4 337.5,151.4 337.5,157.2 333.6,157.2 333.6,151.4 " /></g><g id="bbox:3.2_48.9_3.3_49" ><polygon points="337.5,151.4 341.3,151.4 341.3,157.2 337.5,157.2 337.5,151.4 " /></g><g id="bbox:3.3_48.9_3.4_49" ><polygon points="341.3,151.4 345.2,151.4 345.2,157.2 341.3,157.2 341.3,151.4 " /></g><g id="bbox:3.4_48.9_3.5_49" ><polygon points="345.2,151.4 349.0,151.4 349.0,157.2 345.2,157.2 345.2,151.4 " /></g><g id="bbox:3.5_48.9_3.6_49" ><polygon points="349.0,151.4 352.9,151.4 352.9,157.2 349.0,157.2 349.0,151.4 " /></g><g id="bbox:3.6_48.9_3.7_49" ><polygon points="352.9,151.4 356.7,151.4 356.7,157.2 352.9,157.2 352.9,151.4 " /></g><g id="bbox:3.7_48.9_3.8_49" ><polygon points="356.7,151.4 360.6,151.4 360.6,157.2 356.7,157.2 356.7,151.4 " /></g><g id="bbox:3.8_48.9_3.9_49" ><polygon points="360.6,151.4 364.4,151.4 364.4,157.2 360.6,157.2 360.6,151.4 " /></g><g id="bbox:3.9_48.9_4_49" ><polygon points="364.4,151.4 368.3,151.4 368.3,157.2 364.4,157.2 364.4,151.4 " /></g><g id="bbox:4_48.9_4.1_49" ><polygon points="368.3,151.4 372.1,151.4 372.1,157.2 368.3,157.2 368.3,151.4 " /></g><g id="bbox:4.1_48.9_4.2_49" ><polygon points="372.1,151.4 376.0,151.4 376.0,157.2 372.1,157.2 372.1,151.4 " /></g><g id="bbox:4.2_48.9_4.3_49" ><polygon points="376.0,151.4 379.8,151.4 379.8,157.2 376.0,157.2 376.0,151.4 " /></g><g id="bbox:4.3_48.9_4.4_49" ><polygon points="379.8,151.4 383.7,151.4 383.7,157.2 379.8,157.2 379.8,151.4 " /></g><g id="bbox:4.4_48.9_4.5_49" ><polygon points="383.7,151.4 387.5,151.4 387.5,157.2 383.7,157.2 383.7,151.4 " /></g><g id="bbox:4.5_48.9_4.6_49" ><polygon points="387.5,151.4 391.4,151.4 391.4,157.2 387.5,157.2 387.5,151.4 " /></g><g id="bbox:4.6_48.9_4.7_49" ><polygon points="391.4,151.4 395.2,151.4 395.2,157.2 391.4,157.2 391.4,151.4 " /></g><g id="bbox:4.7_48.9_4.8_49" ><polygon points="395.2,151.4 399.1,151.4 399.1,157.2 395.2,157.2 395.2,151.4 " /></g><g id="bbox:4.8_48.9_4.9_49" ><polygon points="399.1,151.4 402.9,151.4 402.9,157.2 399.1,157.2 399.1,151.4 " /></g><g id="bbox:4.9_48.9_5_49" ><polygon points="402.9,151.4 406.7,151.4 406.7,157.2 402.9,157.2 402.9,151.4 " /></g><g id="bbox:5_48.9_5.1_49" ><polygon points="406.7,151.4 410.6,151.4 410.6,157.2 406.7,157.2 406.7,151.4 " /></g><g id="bbox:5.1_48.9_5.2_49" ><polygon points="410.6,151.4 414.4,151.4 414.4,157.2 410.6,157.2 410.6,151.4 " /></g><g id="bbox:5.2_48.9_5.3_49" ><polygon points="414.4,151.4 418.3,151.4 418.3,157.2 414.4,157.2 414.4,151.4 " /></g><g id="bbox:5.3_48.9_5.4_49" ><polygon points="418.3,151.4 422.1,151.4 422.1,157.2 418.3,157.2 418.3,151.4 " /></g><g id="bbox:5.4_48.9_5.5_49" ><polygon points="422.1,151.4 426.0,151.4 426.0,157.2 422.1,157.2 422.1,151.4 " /></g><g id="bbox:5.5_48.9_5.6_49" ><polygon points="426.0,151.4 429.8,151.4 429.8,157.2 426.0,157.2 426.0,151.4 " /></g><g id="bbox:5.6_48.9_5.7_49" ><polygon points="429.8,151.4 433.7,151.4 433.7,157.2 429.8,157.2 429.8,151.4 " /></g><g id="bbox:5.7_48.9_5.8_49" ><polygon points="433.7,151.4 437.5,151.4 437.5,157.2 433.7,157.2 433.7,151.4 " /></g><g id="bbox:5.8_48.9_5.9_49" ><polygon points="437.5,151.4 441.4,151.4 441.4,157.2 437.5,157.2 437.5,151.4 " /></g><g id="bbox:5.9_48.9_6_49" ><polygon points="441.4,151.4 445.2,151.4 445.2,157.2 441.4,157.2 441.4,151.4 " /></g><g id="bbox:6_48.9_6.1_49" ><polygon points="445.2,151.4 449.1,151.4 449.1,157.2 445.2,157.2 445.2,151.4 " /></g><g id="bbox:6.1_48.9_6.2_49" ><polygon points="449.1,151.4 452.9,151.4 452.9,157.2 449.1,157.2 449.1,151.4 " /></g><g id="bbox:6.2_48.9_6.3_49" ><polygon points="452.9,151.4 456.8,151.4 456.8,157.2 452.9,157.2 452.9,151.4 " /></g><g id="bbox:6.3_48.9_6.4_49" ><polygon points="456.8,151.4 460.6,151.4 460.6,157.2 456.8,157.2 456.8,151.4 " /></g><g id="bbox:6.4_48.9_6.5_49" ><polygon points="460.6,151.4 464.5,151.4 464.5,157.2 460.6,157.2 460.6,151.4 " /></g><g id="bbox:6.5_48.9_6.6_49" ><polygon points="464.5,151.4 468.3,151.4 468.3,157.2 464.5,157.2 464.5,151.4 " /></g><g id="bbox:6.6_48.9_6.7_49" ><polygon points="468.3,151.4 472.2,151.4 472.2,157.2 468.3,157.2 468.3,151.4 " /></g><g id="bbox:6.7_48.9_6.8_49" ><polygon points="472.2,151.4 476.0,151.4 476.0,157.2 472.2,157.2 472.2,151.4 " /></g><g id="bbox:6.8_48.9_6.9_49" ><polygon points="476.0,151.4 479.9,151.4 479.9,157.2 476.0,157.2 476.0,151.4 " /></g><g id="bbox:6.9_48.9_7_49" ><polygon points="479.9,151.4 483.7,151.4 483.7,157.2 479.9,157.2 479.9,151.4 " /></g><g id="bbox:7_48.9_7.1_49" ><polygon points="483.7,151.4 487.6,151.4 487.6,157.2 483.7,157.2 483.7,151.4 " /></g><g id="bbox:7.1_48.9_7.2_49" ><polygon points="487.6,151.4 491.4,151.4 491.4,157.2 487.6,157.2 487.6,151.4 " /></g><g id="bbox:7.2_48.9_7.3_49" ><polygon points="491.4,151.4 495.3,151.4 495.3,157.2 491.4,157.2 491.4,151.4 " /></g><g id="bbox:7.3_48.9_7.4_49" ><polygon points="495.3,151.4 499.1,151.4 499.1,157.2 495.3,157.2 495.3,151.4 " /></g><g id="bbox:7.4_48.9_7.5_49" ><polygon points="499.1,151.4 503.0,151.4 503.0,157.2 499.1,157.2 499.1,151.4 " /></g><g id="bbox:7.5_48.9_7.6_49" ><polygon points="503.0,151.4 506.8,151.4 506.8,157.2 503.0,157.2 503.0,151.4 " /></g><g id="bbox:7.6_48.9_7.7_49" ><polygon points="506.8,151.4 510.6,151.4 510.6,157.2 506.8,157.2 506.8,151.4 " /></g><g id="bbox:7.7_48.9_7.8_49" ><polygon points="510.6,151.4 514.5,151.4 514.5,157.2 510.6,157.2 510.6,151.4 " /></g><g id="bbox:7.8_48.9_7.9_49" ><polygon points="514.5,151.4 518.3,151.4 518.3,157.2 514.5,157.2 514.5,151.4 " /></g><g id="bbox:7.9_48.9_8_49" ><polygon points="518.3,151.4 522.2,151.4 522.2,157.2 518.3,157.2 518.3,151.4 " /></g><g id="bbox:8_48.9_8.1_49" ><polygon points="522.2,151.4 526.0,151.4 526.0,157.2 522.2,157.2 522.2,151.4 " /></g><g id="bbox:8.1_48.9_8.2_49" ><polygon points="526.0,151.4 529.9,151.4 529.9,157.2 526.0,157.2 526.0,151.4 " /></g><g id="bbox:8.2_48.9_8.3_49" ><polygon points="529.9,151.4 533.7,151.4 533.7,157.2 529.9,157.2 529.9,151.4 " /></g><g id="bbox:-3.7_48.8_-3.6_48.9" ><polygon points="72.0,157.2 75.8,157.2 75.8,163.1 72.0,163.1 72.0,157.2 " /></g><g id="bbox:-3.6_48.8_-3.5_48.9" ><polygon points="75.8,157.2 79.7,157.2 79.7,163.1 75.8,163.1 75.8,157.2 " /></g><g id="bbox:-3.5_48.8_-3.4_48.9" ><polygon points="79.7,157.2 83.5,157.2 83.5,163.1 79.7,163.1 79.7,157.2 " /></g><g id="bbox:-3.4_48.8_-3.3_48.9" ><polygon points="83.5,157.2 87.4,157.2 87.4,163.1 83.5,163.1 83.5,157.2 " /></g><g id="bbox:-3.3_48.8_-3.2_48.9" ><polygon points="87.4,157.2 91.2,157.2 91.2,163.1 87.4,163.1 87.4,157.2 " /></g><g id="bbox:-3.2_48.8_-3.1_48.9" ><polygon points="91.2,157.2 95.0,157.2 95.0,163.1 91.2,163.1 91.2,157.2 " /></g><g id="bbox:-3.1_48.8_-3_48.9" ><polygon points="95.0,157.2 98.9,157.2 98.9,163.1 95.0,163.1 95.0,157.2 " /></g><g id="bbox:-3_48.8_-2.9_48.9" ><polygon points="98.9,157.2 102.7,157.2 102.7,163.1 98.9,163.1 98.9,157.2 " /></g><g id="bbox:-1.9_48.8_-1.8_48.9" ><polygon points="141.2,157.2 145.1,157.2 145.1,163.1 141.2,163.1 141.2,157.2 " /></g><g id="bbox:-1.8_48.8_-1.7_48.9" ><polygon points="145.1,157.2 148.9,157.2 148.9,163.1 145.1,163.1 145.1,157.2 " /></g><g id="bbox:-1.7_48.8_-1.6_48.9" ><polygon points="148.9,157.2 152.8,157.2 152.8,163.1 148.9,163.1 148.9,157.2 " /></g><g id="bbox:-1.6_48.8_-1.5_48.9" ><polygon points="152.8,157.2 156.6,157.2 156.6,163.1 152.8,163.1 152.8,157.2 " /></g><g id="bbox:-1.5_48.8_-1.4_48.9" ><polygon points="156.6,157.2 160.5,157.2 160.5,163.1 156.6,163.1 156.6,157.2 " /></g><g id="bbox:-1.4_48.8_-1.3_48.9" ><polygon points="160.5,157.2 164.3,157.2 164.3,163.1 160.5,163.1 160.5,157.2 " /></g><g id="bbox:-1.3_48.8_-1.2_48.9" ><polygon points="164.3,157.2 168.2,157.2 168.2,163.1 164.3,163.1 164.3,157.2 " /></g><g id="bbox:-1.2_48.8_-1.1_48.9" ><polygon points="168.2,157.2 172.0,157.2 172.0,163.1 168.2,163.1 168.2,157.2 " /></g><g id="bbox:-1.1_48.8_-1_48.9" ><polygon points="172.0,157.2 175.9,157.2 175.9,163.1 172.0,163.1 172.0,157.2 " /></g><g id="bbox:-1_48.8_-0.9_48.9" ><polygon points="175.9,157.2 179.7,157.2 179.7,163.1 175.9,163.1 175.9,157.2 " /></g><g id="bbox:-0.9_48.8_-0.8_48.9" ><polygon points="179.7,157.2 183.6,157.2 183.6,163.1 179.7,163.1 179.7,157.2 " /></g><g id="bbox:-0.8_48.8_-0.7_48.9" ><polygon points="183.6,157.2 187.4,157.2 187.4,163.1 183.6,163.1 183.6,157.2 " /></g><g id="bbox:-0.7_48.8_-0.6_48.9" ><polygon points="187.4,157.2 191.3,157.2 191.3,163.1 187.4,163.1 187.4,157.2 " /></g><g id="bbox:-0.6_48.8_-0.5_48.9" ><polygon points="191.3,157.2 195.1,157.2 195.1,163.1 191.3,163.1 191.3,157.2 " /></g><g id="bbox:-0.5_48.8_-0.4_48.9" ><polygon points="195.1,157.2 198.9,157.2 198.9,163.1 195.1,163.1 195.1,157.2 " /></g><g id="bbox:-0.4_48.8_-0.3_48.9" ><polygon points="198.9,157.2 202.8,157.2 202.8,163.1 198.9,163.1 198.9,157.2 " /></g><g id="bbox:-0.3_48.8_-0.2_48.9" ><polygon points="202.8,157.2 206.6,157.2 206.6,163.1 202.8,163.1 202.8,157.2 " /></g><g id="bbox:-0.2_48.8_-0.1_48.9" ><polygon points="206.6,157.2 210.5,157.2 210.5,163.1 206.6,163.1 206.6,157.2 " /></g><g id="bbox:-0.1_48.8_0_48.9" ><polygon points="210.5,157.2 214.3,157.2 214.3,163.1 210.5,163.1 210.5,157.2 " /></g><g id="bbox:0_48.8_0.1_48.9" ><polygon points="214.3,157.2 218.2,157.2 218.2,163.1 214.3,163.1 214.3,157.2 " /></g><g id="bbox:0.1_48.8_0.2_48.9" ><polygon points="218.2,157.2 222.0,157.2 222.0,163.1 218.2,163.1 218.2,157.2 " /></g><g id="bbox:0.2_48.8_0.3_48.9" ><polygon points="222.0,157.2 225.9,157.2 225.9,163.1 222.0,163.1 222.0,157.2 " /></g><g id="bbox:0.3_48.8_0.4_48.9" ><polygon points="225.9,157.2 229.7,157.2 229.7,163.1 225.9,163.1 225.9,157.2 " /></g><g id="bbox:0.4_48.8_0.5_48.9" ><polygon points="229.7,157.2 233.6,157.2 233.6,163.1 229.7,163.1 229.7,157.2 " /></g><g id="bbox:0.5_48.8_0.6_48.9" ><polygon points="233.6,157.2 237.4,157.2 237.4,163.1 233.6,163.1 233.6,157.2 " /></g><g id="bbox:0.6_48.8_0.7_48.9" ><polygon points="237.4,157.2 241.3,157.2 241.3,163.1 237.4,163.1 237.4,157.2 " /></g><g id="bbox:0.7_48.8_0.8_48.9" ><polygon points="241.3,157.2 245.1,157.2 245.1,163.1 241.3,163.1 241.3,157.2 " /></g><g id="bbox:0.8_48.8_0.9_48.9" ><polygon points="245.1,157.2 249.0,157.2 249.0,163.1 245.1,163.1 245.1,157.2 " /></g><g id="bbox:0.9_48.8_1_48.9" ><polygon points="249.0,157.2 252.8,157.2 252.8,163.1 249.0,163.1 249.0,157.2 " /></g><g id="bbox:1_48.8_1.1_48.9" ><polygon points="252.8,157.2 256.7,157.2 256.7,163.1 252.8,163.1 252.8,157.2 " /></g><g id="bbox:1.1_48.8_1.2_48.9" ><polygon points="256.7,157.2 260.5,157.2 260.5,163.1 256.7,163.1 256.7,157.2 " /></g><g id="bbox:1.2_48.8_1.3_48.9" ><polygon points="260.5,157.2 264.4,157.2 264.4,163.1 260.5,163.1 260.5,157.2 " /></g><g id="bbox:1.3_48.8_1.4_48.9" ><polygon points="264.4,157.2 268.2,157.2 268.2,163.1 264.4,163.1 264.4,157.2 " /></g><g id="bbox:1.4_48.8_1.5_48.9" ><polygon points="268.2,157.2 272.1,157.2 272.1,163.1 268.2,163.1 268.2,157.2 " /></g><g id="bbox:1.5_48.8_1.6_48.9" ><polygon points="272.1,157.2 275.9,157.2 275.9,163.1 272.1,163.1 272.1,157.2 " /></g><g id="bbox:1.6_48.8_1.7_48.9" ><polygon points="275.9,157.2 279.8,157.2 279.8,163.1 275.9,163.1 275.9,157.2 " /></g><g id="bbox:1.7_48.8_1.8_48.9" ><polygon points="279.8,157.2 283.6,157.2 283.6,163.1 279.8,163.1 279.8,157.2 " /></g><g id="bbox:1.8_48.8_1.9_48.9" ><polygon points="283.6,157.2 287.5,157.2 287.5,163.1 283.6,163.1 283.6,157.2 " /></g><g id="bbox:1.9_48.8_2_48.9" ><polygon points="287.5,157.2 291.3,157.2 291.3,163.1 287.5,163.1 287.5,157.2 " /></g><g id="bbox:2_48.8_2.1_48.9" ><polygon points="291.3,157.2 295.2,157.2 295.2,163.1 291.3,163.1 291.3,157.2 " /></g><g id="bbox:2.1_48.8_2.2_48.9" ><polygon points="295.2,157.2 299.0,157.2 299.0,163.1 295.2,163.1 295.2,157.2 " /></g><g id="bbox:2.2_48.8_2.3_48.9" ><polygon points="299.0,157.2 302.8,157.2 302.8,163.1 299.0,163.1 299.0,157.2 " /></g><g id="bbox:2.3_48.8_2.4_48.9" ><polygon points="302.8,157.2 306.7,157.2 306.7,163.1 302.8,163.1 302.8,157.2 " /></g><g id="bbox:2.4_48.8_2.5_48.9" ><polygon points="306.7,157.2 310.5,157.2 310.5,163.1 306.7,163.1 306.7,157.2 " /></g><g id="bbox:2.5_48.8_2.6_48.9" ><polygon points="310.5,157.2 314.4,157.2 314.4,163.1 310.5,163.1 310.5,157.2 " /></g><g id="bbox:2.6_48.8_2.7_48.9" ><polygon points="314.4,157.2 318.2,157.2 318.2,163.1 314.4,163.1 314.4,157.2 " /></g><g id="bbox:2.7_48.8_2.8_48.9" ><polygon points="318.2,157.2 322.1,157.2 322.1,163.1 318.2,163.1 318.2,157.2 " /></g><g id="bbox:2.8_48.8_2.9_48.9" ><polygon points="322.1,157.2 325.9,157.2 325.9,163.1 322.1,163.1 322.1,157.2 " /></g><g id="bbox:2.9_48.8_3_48.9" ><polygon points="325.9,157.2 329.8,157.2 329.8,163.1 325.9,163.1 325.9,157.2 " /></g><g id="bbox:3_48.8_3.1_48.9" ><polygon points="329.8,157.2 333.6,157.2 333.6,163.1 329.8,163.1 329.8,157.2 " /></g><g id="bbox:3.1_48.8_3.2_48.9" ><polygon points="333.6,157.2 337.5,157.2 337.5,163.1 333.6,163.1 333.6,157.2 " /></g><g id="bbox:3.2_48.8_3.3_48.9" ><polygon points="337.5,157.2 341.3,157.2 341.3,163.1 337.5,163.1 337.5,157.2 " /></g><g id="bbox:3.3_48.8_3.4_48.9" ><polygon points="341.3,157.2 345.2,157.2 345.2,163.1 341.3,163.1 341.3,157.2 " /></g><g id="bbox:3.4_48.8_3.5_48.9" ><polygon points="345.2,157.2 349.0,157.2 349.0,163.1 345.2,163.1 345.2,157.2 " /></g><g id="bbox:3.5_48.8_3.6_48.9" ><polygon points="349.0,157.2 352.9,157.2 352.9,163.1 349.0,163.1 349.0,157.2 " /></g><g id="bbox:3.6_48.8_3.7_48.9" ><polygon points="352.9,157.2 356.7,157.2 356.7,163.1 352.9,163.1 352.9,157.2 " /></g><g id="bbox:3.7_48.8_3.8_48.9" ><polygon points="356.7,157.2 360.6,157.2 360.6,163.1 356.7,163.1 356.7,157.2 " /></g><g id="bbox:3.8_48.8_3.9_48.9" ><polygon points="360.6,157.2 364.4,157.2 364.4,163.1 360.6,163.1 360.6,157.2 " /></g><g id="bbox:3.9_48.8_4_48.9" ><polygon points="364.4,157.2 368.3,157.2 368.3,163.1 364.4,163.1 364.4,157.2 " /></g><g id="bbox:4_48.8_4.1_48.9" ><polygon points="368.3,157.2 372.1,157.2 372.1,163.1 368.3,163.1 368.3,157.2 " /></g><g id="bbox:4.1_48.8_4.2_48.9" ><polygon points="372.1,157.2 376.0,157.2 376.0,163.1 372.1,163.1 372.1,157.2 " /></g><g id="bbox:4.2_48.8_4.3_48.9" ><polygon points="376.0,157.2 379.8,157.2 379.8,163.1 376.0,163.1 376.0,157.2 " /></g><g id="bbox:4.3_48.8_4.4_48.9" ><polygon points="379.8,157.2 383.7,157.2 383.7,163.1 379.8,163.1 379.8,157.2 " /></g><g id="bbox:4.4_48.8_4.5_48.9" ><polygon points="383.7,157.2 387.5,157.2 387.5,163.1 383.7,163.1 383.7,157.2 " /></g><g id="bbox:4.5_48.8_4.6_48.9" ><polygon points="387.5,157.2 391.4,157.2 391.4,163.1 387.5,163.1 387.5,157.2 " /></g><g id="bbox:4.6_48.8_4.7_48.9" ><polygon points="391.4,157.2 395.2,157.2 395.2,163.1 391.4,163.1 391.4,157.2 " /></g><g id="bbox:4.7_48.8_4.8_48.9" ><polygon points="395.2,157.2 399.1,157.2 399.1,163.1 395.2,163.1 395.2,157.2 " /></g><g id="bbox:4.8_48.8_4.9_48.9" ><polygon points="399.1,157.2 402.9,157.2 402.9,163.1 399.1,163.1 399.1,157.2 " /></g><g id="bbox:4.9_48.8_5_48.9" ><polygon points="402.9,157.2 406.7,157.2 406.7,163.1 402.9,163.1 402.9,157.2 " /></g><g id="bbox:5_48.8_5.1_48.9" ><polygon points="406.7,157.2 410.6,157.2 410.6,163.1 406.7,163.1 406.7,157.2 " /></g><g id="bbox:5.1_48.8_5.2_48.9" ><polygon points="410.6,157.2 414.4,157.2 414.4,163.1 410.6,163.1 410.6,157.2 " /></g><g id="bbox:5.2_48.8_5.3_48.9" ><polygon points="414.4,157.2 418.3,157.2 418.3,163.1 414.4,163.1 414.4,157.2 " /></g><g id="bbox:5.3_48.8_5.4_48.9" ><polygon points="418.3,157.2 422.1,157.2 422.1,163.1 418.3,163.1 418.3,157.2 " /></g><g id="bbox:5.4_48.8_5.5_48.9" ><polygon points="422.1,157.2 426.0,157.2 426.0,163.1 422.1,163.1 422.1,157.2 " /></g><g id="bbox:5.5_48.8_5.6_48.9" ><polygon points="426.0,157.2 429.8,157.2 429.8,163.1 426.0,163.1 426.0,157.2 " /></g><g id="bbox:5.6_48.8_5.7_48.9" ><polygon points="429.8,157.2 433.7,157.2 433.7,163.1 429.8,163.1 429.8,157.2 " /></g><g id="bbox:5.7_48.8_5.8_48.9" ><polygon points="433.7,157.2 437.5,157.2 437.5,163.1 433.7,163.1 433.7,157.2 " /></g><g id="bbox:5.8_48.8_5.9_48.9" ><polygon points="437.5,157.2 441.4,157.2 441.4,163.1 437.5,163.1 437.5,157.2 " /></g><g id="bbox:5.9_48.8_6_48.9" ><polygon points="441.4,157.2 445.2,157.2 445.2,163.1 441.4,163.1 441.4,157.2 " /></g><g id="bbox:6_48.8_6.1_48.9" ><polygon points="445.2,157.2 449.1,157.2 449.1,163.1 445.2,163.1 445.2,157.2 " /></g><g id="bbox:6.1_48.8_6.2_48.9" ><polygon points="449.1,157.2 452.9,157.2 452.9,163.1 449.1,163.1 449.1,157.2 " /></g><g id="bbox:6.2_48.8_6.3_48.9" ><polygon points="452.9,157.2 456.8,157.2 456.8,163.1 452.9,163.1 452.9,157.2 " /></g><g id="bbox:6.3_48.8_6.4_48.9" ><polygon points="456.8,157.2 460.6,157.2 460.6,163.1 456.8,163.1 456.8,157.2 " /></g><g id="bbox:6.4_48.8_6.5_48.9" ><polygon points="460.6,157.2 464.5,157.2 464.5,163.1 460.6,163.1 460.6,157.2 " /></g><g id="bbox:6.5_48.8_6.6_48.9" ><polygon points="464.5,157.2 468.3,157.2 468.3,163.1 464.5,163.1 464.5,157.2 " /></g><g id="bbox:6.6_48.8_6.7_48.9" ><polygon points="468.3,157.2 472.2,157.2 472.2,163.1 468.3,163.1 468.3,157.2 " /></g><g id="bbox:6.7_48.8_6.8_48.9" ><polygon points="472.2,157.2 476.0,157.2 476.0,163.1 472.2,163.1 472.2,157.2 " /></g><g id="bbox:6.8_48.8_6.9_48.9" ><polygon points="476.0,157.2 479.9,157.2 479.9,163.1 476.0,163.1 476.0,157.2 " /></g><g id="bbox:6.9_48.8_7_48.9" ><polygon points="479.9,157.2 483.7,157.2 483.7,163.1 479.9,163.1 479.9,157.2 " /></g><g id="bbox:7_48.8_7.1_48.9" ><polygon points="483.7,157.2 487.6,157.2 487.6,163.1 483.7,163.1 483.7,157.2 " /></g><g id="bbox:7.1_48.8_7.2_48.9" ><polygon points="487.6,157.2 491.4,157.2 491.4,163.1 487.6,163.1 487.6,157.2 " /></g><g id="bbox:7.2_48.8_7.3_48.9" ><polygon points="491.4,157.2 495.3,157.2 495.3,163.1 491.4,163.1 491.4,157.2 " /></g><g id="bbox:7.3_48.8_7.4_48.9" ><polygon points="495.3,157.2 499.1,157.2 499.1,163.1 495.3,163.1 495.3,157.2 " /></g><g id="bbox:7.4_48.8_7.5_48.9" ><polygon points="499.1,157.2 503.0,157.2 503.0,163.1 499.1,163.1 499.1,157.2 " /></g><g id="bbox:7.5_48.8_7.6_48.9" ><polygon points="503.0,157.2 506.8,157.2 506.8,163.1 503.0,163.1 503.0,157.2 " /></g><g id="bbox:7.6_48.8_7.7_48.9" ><polygon points="506.8,157.2 510.6,157.2 510.6,163.1 506.8,163.1 506.8,157.2 " /></g><g id="bbox:7.7_48.8_7.8_48.9" ><polygon points="510.6,157.2 514.5,157.2 514.5,163.1 510.6,163.1 510.6,157.2 " /></g><g id="bbox:7.8_48.8_7.9_48.9" ><polygon points="514.5,157.2 518.3,157.2 518.3,163.1 514.5,163.1 514.5,157.2 " /></g><g id="bbox:7.9_48.8_8_48.9" ><polygon points="518.3,157.2 522.2,157.2 522.2,163.1 518.3,163.1 518.3,157.2 " /></g><g id="bbox:8_48.8_8.1_48.9" ><polygon points="522.2,157.2 526.0,157.2 526.0,163.1 522.2,163.1 522.2,157.2 " /></g><g id="bbox:8.1_48.8_8.2_48.9" ><polygon points="526.0,157.2 529.9,157.2 529.9,163.1 526.0,163.1 526.0,157.2 " /></g><g id="bbox:-4.1_48.7_-4_48.8" ><polygon points="56.6,163.1 60.4,163.1 60.4,168.9 56.6,168.9 56.6,163.1 " /></g><g id="bbox:-4_48.7_-3.9_48.8" ><polygon points="60.4,163.1 64.3,163.1 64.3,168.9 60.4,168.9 60.4,163.1 " /></g><g id="bbox:-3.9_48.7_-3.8_48.8" ><polygon points="64.3,163.1 68.1,163.1 68.1,168.9 64.3,168.9 64.3,163.1 " /></g><g id="bbox:-3.8_48.7_-3.7_48.8" ><polygon points="68.1,163.1 72.0,163.1 72.0,168.9 68.1,168.9 68.1,163.1 " /></g><g id="bbox:-3.7_48.7_-3.6_48.8" ><polygon points="72.0,163.1 75.8,163.1 75.8,168.9 72.0,168.9 72.0,163.1 " /></g><g id="bbox:-3.6_48.7_-3.5_48.8" ><polygon points="75.8,163.1 79.7,163.1 79.7,168.9 75.8,168.9 75.8,163.1 " /></g><g id="bbox:-3.5_48.7_-3.4_48.8" ><polygon points="79.7,163.1 83.5,163.1 83.5,168.9 79.7,168.9 79.7,163.1 " /></g><g id="bbox:-3.4_48.7_-3.3_48.8" ><polygon points="83.5,163.1 87.4,163.1 87.4,168.9 83.5,168.9 83.5,163.1 " /></g><g id="bbox:-3.3_48.7_-3.2_48.8" ><polygon points="87.4,163.1 91.2,163.1 91.2,168.9 87.4,168.9 87.4,163.1 " /></g><g id="bbox:-3.2_48.7_-3.1_48.8" ><polygon points="91.2,163.1 95.0,163.1 95.0,168.9 91.2,168.9 91.2,163.1 " /></g><g id="bbox:-3.1_48.7_-3_48.8" ><polygon points="95.0,163.1 98.9,163.1 98.9,168.9 95.0,168.9 95.0,163.1 " /></g><g id="bbox:-3_48.7_-2.9_48.8" ><polygon points="98.9,163.1 102.7,163.1 102.7,168.9 98.9,168.9 98.9,163.1 " /></g><g id="bbox:-2.9_48.7_-2.8_48.8" ><polygon points="102.7,163.1 106.6,163.1 106.6,168.9 102.7,168.9 102.7,163.1 " /></g><g id="bbox:-2_48.7_-1.9_48.8" ><polygon points="137.4,163.1 141.2,163.1 141.2,168.9 137.4,168.9 137.4,163.1 " /></g><g id="bbox:-1.9_48.7_-1.8_48.8" ><polygon points="141.2,163.1 145.1,163.1 145.1,168.9 141.2,168.9 141.2,163.1 " /></g><g id="bbox:-1.6_48.7_-1.5_48.8" ><polygon points="152.8,163.1 156.6,163.1 156.6,168.9 152.8,168.9 152.8,163.1 " /></g><g id="bbox:-1.5_48.7_-1.4_48.8" ><polygon points="156.6,163.1 160.5,163.1 160.5,168.9 156.6,168.9 156.6,163.1 " /></g><g id="bbox:-1.4_48.7_-1.3_48.8" ><polygon points="160.5,163.1 164.3,163.1 164.3,168.9 160.5,168.9 160.5,163.1 " /></g><g id="bbox:-1.3_48.7_-1.2_48.8" ><polygon points="164.3,163.1 168.2,163.1 168.2,168.9 164.3,168.9 164.3,163.1 " /></g><g id="bbox:-1.2_48.7_-1.1_48.8" ><polygon points="168.2,163.1 172.0,163.1 172.0,168.9 168.2,168.9 168.2,163.1 " /></g><g id="bbox:-1.1_48.7_-1_48.8" ><polygon points="172.0,163.1 175.9,163.1 175.9,168.9 172.0,168.9 172.0,163.1 " /></g><g id="bbox:-1_48.7_-0.9_48.8" ><polygon points="175.9,163.1 179.7,163.1 179.7,168.9 175.9,168.9 175.9,163.1 " /></g><g id="bbox:-0.9_48.7_-0.8_48.8" ><polygon points="179.7,163.1 183.6,163.1 183.6,168.9 179.7,168.9 179.7,163.1 " /></g><g id="bbox:-0.8_48.7_-0.7_48.8" ><polygon points="183.6,163.1 187.4,163.1 187.4,168.9 183.6,168.9 183.6,163.1 " /></g><g id="bbox:-0.7_48.7_-0.6_48.8" ><polygon points="187.4,163.1 191.3,163.1 191.3,168.9 187.4,168.9 187.4,163.1 " /></g><g id="bbox:-0.6_48.7_-0.5_48.8" ><polygon points="191.3,163.1 195.1,163.1 195.1,168.9 191.3,168.9 191.3,163.1 " /></g><g id="bbox:-0.5_48.7_-0.4_48.8" ><polygon points="195.1,163.1 198.9,163.1 198.9,168.9 195.1,168.9 195.1,163.1 " /></g><g id="bbox:-0.4_48.7_-0.3_48.8" ><polygon points="198.9,163.1 202.8,163.1 202.8,168.9 198.9,168.9 198.9,163.1 " /></g><g id="bbox:-0.3_48.7_-0.2_48.8" ><polygon points="202.8,163.1 206.6,163.1 206.6,168.9 202.8,168.9 202.8,163.1 " /></g><g id="bbox:-0.2_48.7_-0.1_48.8" ><polygon points="206.6,163.1 210.5,163.1 210.5,168.9 206.6,168.9 206.6,163.1 " /></g><g id="bbox:-0.1_48.7_0_48.8" ><polygon points="210.5,163.1 214.3,163.1 214.3,168.9 210.5,168.9 210.5,163.1 " /></g><g id="bbox:0_48.7_0.1_48.8" ><polygon points="214.3,163.1 218.2,163.1 218.2,168.9 214.3,168.9 214.3,163.1 " /></g><g id="bbox:0.1_48.7_0.2_48.8" ><polygon points="218.2,163.1 222.0,163.1 222.0,168.9 218.2,168.9 218.2,163.1 " /></g><g id="bbox:0.2_48.7_0.3_48.8" ><polygon points="222.0,163.1 225.9,163.1 225.9,168.9 222.0,168.9 222.0,163.1 " /></g><g id="bbox:0.3_48.7_0.4_48.8" ><polygon points="225.9,163.1 229.7,163.1 229.7,168.9 225.9,168.9 225.9,163.1 " /></g><g id="bbox:0.4_48.7_0.5_48.8" ><polygon points="229.7,163.1 233.6,163.1 233.6,168.9 229.7,168.9 229.7,163.1 " /></g><g id="bbox:0.5_48.7_0.6_48.8" ><polygon points="233.6,163.1 237.4,163.1 237.4,168.9 233.6,168.9 233.6,163.1 " /></g><g id="bbox:0.6_48.7_0.7_48.8" ><polygon points="237.4,163.1 241.3,163.1 241.3,168.9 237.4,168.9 237.4,163.1 " /></g><g id="bbox:0.7_48.7_0.8_48.8" ><polygon points="241.3,163.1 245.1,163.1 245.1,168.9 241.3,168.9 241.3,163.1 " /></g><g id="bbox:0.8_48.7_0.9_48.8" ><polygon points="245.1,163.1 249.0,163.1 249.0,168.9 245.1,168.9 245.1,163.1 " /></g><g id="bbox:0.9_48.7_1_48.8" ><polygon points="249.0,163.1 252.8,163.1 252.8,168.9 249.0,168.9 249.0,163.1 " /></g><g id="bbox:1_48.7_1.1_48.8" ><polygon points="252.8,163.1 256.7,163.1 256.7,168.9 252.8,168.9 252.8,163.1 " /></g><g id="bbox:1.1_48.7_1.2_48.8" ><polygon points="256.7,163.1 260.5,163.1 260.5,168.9 256.7,168.9 256.7,163.1 " /></g><g id="bbox:1.2_48.7_1.3_48.8" ><polygon points="260.5,163.1 264.4,163.1 264.4,168.9 260.5,168.9 260.5,163.1 " /></g><g id="bbox:1.3_48.7_1.4_48.8" ><polygon points="264.4,163.1 268.2,163.1 268.2,168.9 264.4,168.9 264.4,163.1 " /></g><g id="bbox:1.4_48.7_1.5_48.8" ><polygon points="268.2,163.1 272.1,163.1 272.1,168.9 268.2,168.9 268.2,163.1 " /></g><g id="bbox:1.5_48.7_1.6_48.8" ><polygon points="272.1,163.1 275.9,163.1 275.9,168.9 272.1,168.9 272.1,163.1 " /></g><g id="bbox:1.6_48.7_1.7_48.8" ><polygon points="275.9,163.1 279.8,163.1 279.8,168.9 275.9,168.9 275.9,163.1 " /></g><g id="bbox:1.7_48.7_1.8_48.8" ><polygon points="279.8,163.1 283.6,163.1 283.6,168.9 279.8,168.9 279.8,163.1 " /></g><g id="bbox:1.8_48.7_1.9_48.8" ><polygon points="283.6,163.1 287.5,163.1 287.5,168.9 283.6,168.9 283.6,163.1 " /></g><g id="bbox:1.9_48.7_2_48.8" ><polygon points="287.5,163.1 291.3,163.1 291.3,168.9 287.5,168.9 287.5,163.1 " /></g><g id="bbox:2_48.7_2.1_48.8" ><polygon points="291.3,163.1 295.2,163.1 295.2,168.9 291.3,168.9 291.3,163.1 " /></g><g id="bbox:2.1_48.7_2.2_48.8" ><polygon points="295.2,163.1 299.0,163.1 299.0,168.9 295.2,168.9 295.2,163.1 " /></g><g id="bbox:2.2_48.7_2.3_48.8" ><polygon points="299.0,163.1 302.8,163.1 302.8,168.9 299.0,168.9 299.0,163.1 " /></g><g id="bbox:2.3_48.7_2.4_48.8" ><polygon points="302.8,163.1 306.7,163.1 306.7,168.9 302.8,168.9 302.8,163.1 " /></g><g id="bbox:2.4_48.7_2.5_48.8" ><polygon points="306.7,163.1 310.5,163.1 310.5,168.9 306.7,168.9 306.7,163.1 " /></g><g id="bbox:2.5_48.7_2.6_48.8" ><polygon points="310.5,163.1 314.4,163.1 314.4,168.9 310.5,168.9 310.5,163.1 " /></g><g id="bbox:2.6_48.7_2.7_48.8" ><polygon points="314.4,163.1 318.2,163.1 318.2,168.9 314.4,168.9 314.4,163.1 " /></g><g id="bbox:2.7_48.7_2.8_48.8" ><polygon points="318.2,163.1 322.1,163.1 322.1,168.9 318.2,168.9 318.2,163.1 " /></g><g id="bbox:2.8_48.7_2.9_48.8" ><polygon points="322.1,163.1 325.9,163.1 325.9,168.9 322.1,168.9 322.1,163.1 " /></g><g id="bbox:2.9_48.7_3_48.8" ><polygon points="325.9,163.1 329.8,163.1 329.8,168.9 325.9,168.9 325.9,163.1 " /></g><g id="bbox:3_48.7_3.1_48.8" ><polygon points="329.8,163.1 333.6,163.1 333.6,168.9 329.8,168.9 329.8,163.1 " /></g><g id="bbox:3.1_48.7_3.2_48.8" ><polygon points="333.6,163.1 337.5,163.1 337.5,168.9 333.6,168.9 333.6,163.1 " /></g><g id="bbox:3.2_48.7_3.3_48.8" ><polygon points="337.5,163.1 341.3,163.1 341.3,168.9 337.5,168.9 337.5,163.1 " /></g><g id="bbox:3.3_48.7_3.4_48.8" ><polygon points="341.3,163.1 345.2,163.1 345.2,168.9 341.3,168.9 341.3,163.1 " /></g><g id="bbox:3.4_48.7_3.5_48.8" ><polygon points="345.2,163.1 349.0,163.1 349.0,168.9 345.2,168.9 345.2,163.1 " /></g><g id="bbox:3.5_48.7_3.6_48.8" ><polygon points="349.0,163.1 352.9,163.1 352.9,168.9 349.0,168.9 349.0,163.1 " /></g><g id="bbox:3.6_48.7_3.7_48.8" ><polygon points="352.9,163.1 356.7,163.1 356.7,168.9 352.9,168.9 352.9,163.1 " /></g><g id="bbox:3.7_48.7_3.8_48.8" ><polygon points="356.7,163.1 360.6,163.1 360.6,168.9 356.7,168.9 356.7,163.1 " /></g><g id="bbox:3.8_48.7_3.9_48.8" ><polygon points="360.6,163.1 364.4,163.1 364.4,168.9 360.6,168.9 360.6,163.1 " /></g><g id="bbox:3.9_48.7_4_48.8" ><polygon points="364.4,163.1 368.3,163.1 368.3,168.9 364.4,168.9 364.4,163.1 " /></g><g id="bbox:4_48.7_4.1_48.8" ><polygon points="368.3,163.1 372.1,163.1 372.1,168.9 368.3,168.9 368.3,163.1 " /></g><g id="bbox:4.1_48.7_4.2_48.8" ><polygon points="372.1,163.1 376.0,163.1 376.0,168.9 372.1,168.9 372.1,163.1 " /></g><g id="bbox:4.2_48.7_4.3_48.8" ><polygon points="376.0,163.1 379.8,163.1 379.8,168.9 376.0,168.9 376.0,163.1 " /></g><g id="bbox:4.3_48.7_4.4_48.8" ><polygon points="379.8,163.1 383.7,163.1 383.7,168.9 379.8,168.9 379.8,163.1 " /></g><g id="bbox:4.4_48.7_4.5_48.8" ><polygon points="383.7,163.1 387.5,163.1 387.5,168.9 383.7,168.9 383.7,163.1 " /></g><g id="bbox:4.5_48.7_4.6_48.8" ><polygon points="387.5,163.1 391.4,163.1 391.4,168.9 387.5,168.9 387.5,163.1 " /></g><g id="bbox:4.6_48.7_4.7_48.8" ><polygon points="391.4,163.1 395.2,163.1 395.2,168.9 391.4,168.9 391.4,163.1 " /></g><g id="bbox:4.7_48.7_4.8_48.8" ><polygon points="395.2,163.1 399.1,163.1 399.1,168.9 395.2,168.9 395.2,163.1 " /></g><g id="bbox:4.8_48.7_4.9_48.8" ><polygon points="399.1,163.1 402.9,163.1 402.9,168.9 399.1,168.9 399.1,163.1 " /></g><g id="bbox:4.9_48.7_5_48.8" ><polygon points="402.9,163.1 406.7,163.1 406.7,168.9 402.9,168.9 402.9,163.1 " /></g><g id="bbox:5_48.7_5.1_48.8" ><polygon points="406.7,163.1 410.6,163.1 410.6,168.9 406.7,168.9 406.7,163.1 " /></g><g id="bbox:5.1_48.7_5.2_48.8" ><polygon points="410.6,163.1 414.4,163.1 414.4,168.9 410.6,168.9 410.6,163.1 " /></g><g id="bbox:5.2_48.7_5.3_48.8" ><polygon points="414.4,163.1 418.3,163.1 418.3,168.9 414.4,168.9 414.4,163.1 " /></g><g id="bbox:5.3_48.7_5.4_48.8" ><polygon points="418.3,163.1 422.1,163.1 422.1,168.9 418.3,168.9 418.3,163.1 " /></g><g id="bbox:5.4_48.7_5.5_48.8" ><polygon points="422.1,163.1 426.0,163.1 426.0,168.9 422.1,168.9 422.1,163.1 " /></g><g id="bbox:5.5_48.7_5.6_48.8" ><polygon points="426.0,163.1 429.8,163.1 429.8,168.9 426.0,168.9 426.0,163.1 " /></g><g id="bbox:5.6_48.7_5.7_48.8" ><polygon points="429.8,163.1 433.7,163.1 433.7,168.9 429.8,168.9 429.8,163.1 " /></g><g id="bbox:5.7_48.7_5.8_48.8" ><polygon points="433.7,163.1 437.5,163.1 437.5,168.9 433.7,168.9 433.7,163.1 " /></g><g id="bbox:5.8_48.7_5.9_48.8" ><polygon points="437.5,163.1 441.4,163.1 441.4,168.9 437.5,168.9 437.5,163.1 " /></g><g id="bbox:5.9_48.7_6_48.8" ><polygon points="441.4,163.1 445.2,163.1 445.2,168.9 441.4,168.9 441.4,163.1 " /></g><g id="bbox:6_48.7_6.1_48.8" ><polygon points="445.2,163.1 449.1,163.1 449.1,168.9 445.2,168.9 445.2,163.1 " /></g><g id="bbox:6.1_48.7_6.2_48.8" ><polygon points="449.1,163.1 452.9,163.1 452.9,168.9 449.1,168.9 449.1,163.1 " /></g><g id="bbox:6.2_48.7_6.3_48.8" ><polygon points="452.9,163.1 456.8,163.1 456.8,168.9 452.9,168.9 452.9,163.1 " /></g><g id="bbox:6.3_48.7_6.4_48.8" ><polygon points="456.8,163.1 460.6,163.1 460.6,168.9 456.8,168.9 456.8,163.1 " /></g><g id="bbox:6.4_48.7_6.5_48.8" ><polygon points="460.6,163.1 464.5,163.1 464.5,168.9 460.6,168.9 460.6,163.1 " /></g><g id="bbox:6.5_48.7_6.6_48.8" ><polygon points="464.5,163.1 468.3,163.1 468.3,168.9 464.5,168.9 464.5,163.1 " /></g><g id="bbox:6.6_48.7_6.7_48.8" ><polygon points="468.3,163.1 472.2,163.1 472.2,168.9 468.3,168.9 468.3,163.1 " /></g><g id="bbox:6.7_48.7_6.8_48.8" ><polygon points="472.2,163.1 476.0,163.1 476.0,168.9 472.2,168.9 472.2,163.1 " /></g><g id="bbox:6.8_48.7_6.9_48.8" ><polygon points="476.0,163.1 479.9,163.1 479.9,168.9 476.0,168.9 476.0,163.1 " /></g><g id="bbox:6.9_48.7_7_48.8" ><polygon points="479.9,163.1 483.7,163.1 483.7,168.9 479.9,168.9 479.9,163.1 " /></g><g id="bbox:7_48.7_7.1_48.8" ><polygon points="483.7,163.1 487.6,163.1 487.6,168.9 483.7,168.9 483.7,163.1 " /></g><g id="bbox:7.1_48.7_7.2_48.8" ><polygon points="487.6,163.1 491.4,163.1 491.4,168.9 487.6,168.9 487.6,163.1 " /></g><g id="bbox:7.2_48.7_7.3_48.8" ><polygon points="491.4,163.1 495.3,163.1 495.3,168.9 491.4,168.9 491.4,163.1 " /></g><g id="bbox:7.3_48.7_7.4_48.8" ><polygon points="495.3,163.1 499.1,163.1 499.1,168.9 495.3,168.9 495.3,163.1 " /></g><g id="bbox:7.4_48.7_7.5_48.8" ><polygon points="499.1,163.1 503.0,163.1 503.0,168.9 499.1,168.9 499.1,163.1 " /></g><g id="bbox:7.5_48.7_7.6_48.8" ><polygon points="503.0,163.1 506.8,163.1 506.8,168.9 503.0,168.9 503.0,163.1 " /></g><g id="bbox:7.6_48.7_7.7_48.8" ><polygon points="506.8,163.1 510.6,163.1 510.6,168.9 506.8,168.9 506.8,163.1 " /></g><g id="bbox:7.7_48.7_7.8_48.8" ><polygon points="510.6,163.1 514.5,163.1 514.5,168.9 510.6,168.9 510.6,163.1 " /></g><g id="bbox:7.8_48.7_7.9_48.8" ><polygon points="514.5,163.1 518.3,163.1 518.3,168.9 514.5,168.9 514.5,163.1 " /></g><g id="bbox:7.9_48.7_8_48.8" ><polygon points="518.3,163.1 522.2,163.1 522.2,168.9 518.3,168.9 518.3,163.1 " /></g><g id="bbox:8_48.7_8.1_48.8" ><polygon points="522.2,163.1 526.0,163.1 526.0,168.9 522.2,168.9 522.2,163.1 " /></g><g id="bbox:-4.7_48.6_-4.6_48.7" ><polygon points="33.5,168.9 37.3,168.9 37.3,174.8 33.5,174.8 33.5,168.9 " /></g><g id="bbox:-4.6_48.6_-4.5_48.7" ><polygon points="37.3,168.9 41.2,168.9 41.2,174.8 37.3,174.8 37.3,168.9 " /></g><g id="bbox:-4.5_48.6_-4.4_48.7" ><polygon points="41.2,168.9 45.0,168.9 45.0,174.8 41.2,174.8 41.2,168.9 " /></g><g id="bbox:-4.4_48.6_-4.3_48.7" ><polygon points="45.0,168.9 48.9,168.9 48.9,174.8 45.0,174.8 45.0,168.9 " /></g><g id="bbox:-4.3_48.6_-4.2_48.7" ><polygon points="48.9,168.9 52.7,168.9 52.7,174.8 48.9,174.8 48.9,168.9 " /></g><g id="bbox:-4.2_48.6_-4.1_48.7" ><polygon points="52.7,168.9 56.6,168.9 56.6,174.8 52.7,174.8 52.7,168.9 " /></g><g id="bbox:-4.1_48.6_-4_48.7" ><polygon points="56.6,168.9 60.4,168.9 60.4,174.8 56.6,174.8 56.6,168.9 " /></g><g id="bbox:-4_48.6_-3.9_48.7" ><polygon points="60.4,168.9 64.3,168.9 64.3,174.8 60.4,174.8 60.4,168.9 " /></g><g id="bbox:-3.9_48.6_-3.8_48.7" ><polygon points="64.3,168.9 68.1,168.9 68.1,174.8 64.3,174.8 64.3,168.9 " /></g><g id="bbox:-3.8_48.6_-3.7_48.7" ><polygon points="68.1,168.9 72.0,168.9 72.0,174.8 68.1,174.8 68.1,168.9 " /></g><g id="bbox:-3.7_48.6_-3.6_48.7" ><polygon points="72.0,168.9 75.8,168.9 75.8,174.8 72.0,174.8 72.0,168.9 " /></g><g id="bbox:-3.6_48.6_-3.5_48.7" ><polygon points="75.8,168.9 79.7,168.9 79.7,174.8 75.8,174.8 75.8,168.9 " /></g><g id="bbox:-3.5_48.6_-3.4_48.7" ><polygon points="79.7,168.9 83.5,168.9 83.5,174.8 79.7,174.8 79.7,168.9 " /></g><g id="bbox:-3.4_48.6_-3.3_48.7" ><polygon points="83.5,168.9 87.4,168.9 87.4,174.8 83.5,174.8 83.5,168.9 " /></g><g id="bbox:-3.3_48.6_-3.2_48.7" ><polygon points="87.4,168.9 91.2,168.9 91.2,174.8 87.4,174.8 87.4,168.9 " /></g><g id="bbox:-3.2_48.6_-3.1_48.7" ><polygon points="91.2,168.9 95.0,168.9 95.0,174.8 91.2,174.8 91.2,168.9 " /></g><g id="bbox:-3.1_48.6_-3_48.7" ><polygon points="95.0,168.9 98.9,168.9 98.9,174.8 95.0,174.8 95.0,168.9 " /></g><g id="bbox:-3_48.6_-2.9_48.7" ><polygon points="98.9,168.9 102.7,168.9 102.7,174.8 98.9,174.8 98.9,168.9 " /></g><g id="bbox:-2.9_48.6_-2.8_48.7" ><polygon points="102.7,168.9 106.6,168.9 106.6,174.8 102.7,174.8 102.7,168.9 " /></g><g id="bbox:-2.6_48.6_-2.5_48.7" ><polygon points="114.3,168.9 118.1,168.9 118.1,174.8 114.3,174.8 114.3,168.9 " /></g><g id="bbox:-2.5_48.6_-2.4_48.7" ><polygon points="118.1,168.9 122.0,168.9 122.0,174.8 118.1,174.8 118.1,168.9 " /></g><g id="bbox:-2.4_48.6_-2.3_48.7" ><polygon points="122.0,168.9 125.8,168.9 125.8,174.8 122.0,174.8 122.0,168.9 " /></g><g id="bbox:-2.3_48.6_-2.2_48.7" ><polygon points="125.8,168.9 129.7,168.9 129.7,174.8 125.8,174.8 125.8,168.9 " /></g><g id="bbox:-2.2_48.6_-2.1_48.7" ><polygon points="129.7,168.9 133.5,168.9 133.5,174.8 129.7,174.8 129.7,168.9 " /></g><g id="bbox:-2.1_48.6_-2_48.7" ><polygon points="133.5,168.9 137.4,168.9 137.4,174.8 133.5,174.8 133.5,168.9 " /></g><g id="bbox:-2_48.6_-1.9_48.7" ><polygon points="137.4,168.9 141.2,168.9 141.2,174.8 137.4,174.8 137.4,168.9 " /></g><g id="bbox:-1.9_48.6_-1.8_48.7" ><polygon points="141.2,168.9 145.1,168.9 145.1,174.8 141.2,174.8 141.2,168.9 " /></g><g id="bbox:-1.8_48.6_-1.7_48.7" ><polygon points="145.1,168.9 148.9,168.9 148.9,174.8 145.1,174.8 145.1,168.9 " /></g><g id="bbox:-1.7_48.6_-1.6_48.7" ><polygon points="148.9,168.9 152.8,168.9 152.8,174.8 148.9,174.8 148.9,168.9 " /></g><g id="bbox:-1.6_48.6_-1.5_48.7" ><polygon points="152.8,168.9 156.6,168.9 156.6,174.8 152.8,174.8 152.8,168.9 " /></g><g id="bbox:-1.5_48.6_-1.4_48.7" ><polygon points="156.6,168.9 160.5,168.9 160.5,174.8 156.6,174.8 156.6,168.9 " /></g><g id="bbox:-1.4_48.6_-1.3_48.7" ><polygon points="160.5,168.9 164.3,168.9 164.3,174.8 160.5,174.8 160.5,168.9 " /></g><g id="bbox:-1.3_48.6_-1.2_48.7" ><polygon points="164.3,168.9 168.2,168.9 168.2,174.8 164.3,174.8 164.3,168.9 " /></g><g id="bbox:-1.2_48.6_-1.1_48.7" ><polygon points="168.2,168.9 172.0,168.9 172.0,174.8 168.2,174.8 168.2,168.9 " /></g><g id="bbox:-1.1_48.6_-1_48.7" ><polygon points="172.0,168.9 175.9,168.9 175.9,174.8 172.0,174.8 172.0,168.9 " /></g><g id="bbox:-1_48.6_-0.9_48.7" ><polygon points="175.9,168.9 179.7,168.9 179.7,174.8 175.9,174.8 175.9,168.9 " /></g><g id="bbox:-0.9_48.6_-0.8_48.7" ><polygon points="179.7,168.9 183.6,168.9 183.6,174.8 179.7,174.8 179.7,168.9 " /></g><g id="bbox:-0.8_48.6_-0.7_48.7" ><polygon points="183.6,168.9 187.4,168.9 187.4,174.8 183.6,174.8 183.6,168.9 " /></g><g id="bbox:-0.7_48.6_-0.6_48.7" ><polygon points="187.4,168.9 191.3,168.9 191.3,174.8 187.4,174.8 187.4,168.9 " /></g><g id="bbox:-0.6_48.6_-0.5_48.7" ><polygon points="191.3,168.9 195.1,168.9 195.1,174.8 191.3,174.8 191.3,168.9 " /></g><g id="bbox:-0.5_48.6_-0.4_48.7" ><polygon points="195.1,168.9 198.9,168.9 198.9,174.8 195.1,174.8 195.1,168.9 " /></g><g id="bbox:-0.4_48.6_-0.3_48.7" ><polygon points="198.9,168.9 202.8,168.9 202.8,174.8 198.9,174.8 198.9,168.9 " /></g><g id="bbox:-0.3_48.6_-0.2_48.7" ><polygon points="202.8,168.9 206.6,168.9 206.6,174.8 202.8,174.8 202.8,168.9 " /></g><g id="bbox:-0.2_48.6_-0.1_48.7" ><polygon points="206.6,168.9 210.5,168.9 210.5,174.8 206.6,174.8 206.6,168.9 " /></g><g id="bbox:-0.1_48.6_0_48.7" ><polygon points="210.5,168.9 214.3,168.9 214.3,174.8 210.5,174.8 210.5,168.9 " /></g><g id="bbox:0_48.6_0.1_48.7" ><polygon points="214.3,168.9 218.2,168.9 218.2,174.8 214.3,174.8 214.3,168.9 " /></g><g id="bbox:0.1_48.6_0.2_48.7" ><polygon points="218.2,168.9 222.0,168.9 222.0,174.8 218.2,174.8 218.2,168.9 " /></g><g id="bbox:0.2_48.6_0.3_48.7" ><polygon points="222.0,168.9 225.9,168.9 225.9,174.8 222.0,174.8 222.0,168.9 " /></g><g id="bbox:0.3_48.6_0.4_48.7" ><polygon points="225.9,168.9 229.7,168.9 229.7,174.8 225.9,174.8 225.9,168.9 " /></g><g id="bbox:0.4_48.6_0.5_48.7" ><polygon points="229.7,168.9 233.6,168.9 233.6,174.8 229.7,174.8 229.7,168.9 " /></g><g id="bbox:0.5_48.6_0.6_48.7" ><polygon points="233.6,168.9 237.4,168.9 237.4,174.8 233.6,174.8 233.6,168.9 " /></g><g id="bbox:0.6_48.6_0.7_48.7" ><polygon points="237.4,168.9 241.3,168.9 241.3,174.8 237.4,174.8 237.4,168.9 " /></g><g id="bbox:0.7_48.6_0.8_48.7" ><polygon points="241.3,168.9 245.1,168.9 245.1,174.8 241.3,174.8 241.3,168.9 " /></g><g id="bbox:0.8_48.6_0.9_48.7" ><polygon points="245.1,168.9 249.0,168.9 249.0,174.8 245.1,174.8 245.1,168.9 " /></g><g id="bbox:0.9_48.6_1_48.7" ><polygon points="249.0,168.9 252.8,168.9 252.8,174.8 249.0,174.8 249.0,168.9 " /></g><g id="bbox:1_48.6_1.1_48.7" ><polygon points="252.8,168.9 256.7,168.9 256.7,174.8 252.8,174.8 252.8,168.9 " /></g><g id="bbox:1.1_48.6_1.2_48.7" ><polygon points="256.7,168.9 260.5,168.9 260.5,174.8 256.7,174.8 256.7,168.9 " /></g><g id="bbox:1.2_48.6_1.3_48.7" ><polygon points="260.5,168.9 264.4,168.9 264.4,174.8 260.5,174.8 260.5,168.9 " /></g><g id="bbox:1.3_48.6_1.4_48.7" ><polygon points="264.4,168.9 268.2,168.9 268.2,174.8 264.4,174.8 264.4,168.9 " /></g><g id="bbox:1.4_48.6_1.5_48.7" ><polygon points="268.2,168.9 272.1,168.9 272.1,174.8 268.2,174.8 268.2,168.9 " /></g><g id="bbox:1.5_48.6_1.6_48.7" ><polygon points="272.1,168.9 275.9,168.9 275.9,174.8 272.1,174.8 272.1,168.9 " /></g><g id="bbox:1.6_48.6_1.7_48.7" ><polygon points="275.9,168.9 279.8,168.9 279.8,174.8 275.9,174.8 275.9,168.9 " /></g><g id="bbox:1.7_48.6_1.8_48.7" ><polygon points="279.8,168.9 283.6,168.9 283.6,174.8 279.8,174.8 279.8,168.9 " /></g><g id="bbox:1.8_48.6_1.9_48.7" ><polygon points="283.6,168.9 287.5,168.9 287.5,174.8 283.6,174.8 283.6,168.9 " /></g><g id="bbox:1.9_48.6_2_48.7" ><polygon points="287.5,168.9 291.3,168.9 291.3,174.8 287.5,174.8 287.5,168.9 " /></g><g id="bbox:2_48.6_2.1_48.7" ><polygon points="291.3,168.9 295.2,168.9 295.2,174.8 291.3,174.8 291.3,168.9 " /></g><g id="bbox:2.1_48.6_2.2_48.7" ><polygon points="295.2,168.9 299.0,168.9 299.0,174.8 295.2,174.8 295.2,168.9 " /></g><g id="bbox:2.2_48.6_2.3_48.7" ><polygon points="299.0,168.9 302.8,168.9 302.8,174.8 299.0,174.8 299.0,168.9 " /></g><g id="bbox:2.3_48.6_2.4_48.7" ><polygon points="302.8,168.9 306.7,168.9 306.7,174.8 302.8,174.8 302.8,168.9 " /></g><g id="bbox:2.4_48.6_2.5_48.7" ><polygon points="306.7,168.9 310.5,168.9 310.5,174.8 306.7,174.8 306.7,168.9 " /></g><g id="bbox:2.5_48.6_2.6_48.7" ><polygon points="310.5,168.9 314.4,168.9 314.4,174.8 310.5,174.8 310.5,168.9 " /></g><g id="bbox:2.6_48.6_2.7_48.7" ><polygon points="314.4,168.9 318.2,168.9 318.2,174.8 314.4,174.8 314.4,168.9 " /></g><g id="bbox:2.7_48.6_2.8_48.7" ><polygon points="318.2,168.9 322.1,168.9 322.1,174.8 318.2,174.8 318.2,168.9 " /></g><g id="bbox:2.8_48.6_2.9_48.7" ><polygon points="322.1,168.9 325.9,168.9 325.9,174.8 322.1,174.8 322.1,168.9 " /></g><g id="bbox:2.9_48.6_3_48.7" ><polygon points="325.9,168.9 329.8,168.9 329.8,174.8 325.9,174.8 325.9,168.9 " /></g><g id="bbox:3_48.6_3.1_48.7" ><polygon points="329.8,168.9 333.6,168.9 333.6,174.8 329.8,174.8 329.8,168.9 " /></g><g id="bbox:3.1_48.6_3.2_48.7" ><polygon points="333.6,168.9 337.5,168.9 337.5,174.8 333.6,174.8 333.6,168.9 " /></g><g id="bbox:3.2_48.6_3.3_48.7" ><polygon points="337.5,168.9 341.3,168.9 341.3,174.8 337.5,174.8 337.5,168.9 " /></g><g id="bbox:3.3_48.6_3.4_48.7" ><polygon points="341.3,168.9 345.2,168.9 345.2,174.8 341.3,174.8 341.3,168.9 " /></g><g id="bbox:3.4_48.6_3.5_48.7" ><polygon points="345.2,168.9 349.0,168.9 349.0,174.8 345.2,174.8 345.2,168.9 " /></g><g id="bbox:3.5_48.6_3.6_48.7" ><polygon points="349.0,168.9 352.9,168.9 352.9,174.8 349.0,174.8 349.0,168.9 " /></g><g id="bbox:3.6_48.6_3.7_48.7" ><polygon points="352.9,168.9 356.7,168.9 356.7,174.8 352.9,174.8 352.9,168.9 " /></g><g id="bbox:3.7_48.6_3.8_48.7" ><polygon points="356.7,168.9 360.6,168.9 360.6,174.8 356.7,174.8 356.7,168.9 " /></g><g id="bbox:3.8_48.6_3.9_48.7" ><polygon points="360.6,168.9 364.4,168.9 364.4,174.8 360.6,174.8 360.6,168.9 " /></g><g id="bbox:3.9_48.6_4_48.7" ><polygon points="364.4,168.9 368.3,168.9 368.3,174.8 364.4,174.8 364.4,168.9 " /></g><g id="bbox:4_48.6_4.1_48.7" ><polygon points="368.3,168.9 372.1,168.9 372.1,174.8 368.3,174.8 368.3,168.9 " /></g><g id="bbox:4.1_48.6_4.2_48.7" ><polygon points="372.1,168.9 376.0,168.9 376.0,174.8 372.1,174.8 372.1,168.9 " /></g><g id="bbox:4.2_48.6_4.3_48.7" ><polygon points="376.0,168.9 379.8,168.9 379.8,174.8 376.0,174.8 376.0,168.9 " /></g><g id="bbox:4.3_48.6_4.4_48.7" ><polygon points="379.8,168.9 383.7,168.9 383.7,174.8 379.8,174.8 379.8,168.9 " /></g><g id="bbox:4.4_48.6_4.5_48.7" ><polygon points="383.7,168.9 387.5,168.9 387.5,174.8 383.7,174.8 383.7,168.9 " /></g><g id="bbox:4.5_48.6_4.6_48.7" ><polygon points="387.5,168.9 391.4,168.9 391.4,174.8 387.5,174.8 387.5,168.9 " /></g><g id="bbox:4.6_48.6_4.7_48.7" ><polygon points="391.4,168.9 395.2,168.9 395.2,174.8 391.4,174.8 391.4,168.9 " /></g><g id="bbox:4.7_48.6_4.8_48.7" ><polygon points="395.2,168.9 399.1,168.9 399.1,174.8 395.2,174.8 395.2,168.9 " /></g><g id="bbox:4.8_48.6_4.9_48.7" ><polygon points="399.1,168.9 402.9,168.9 402.9,174.8 399.1,174.8 399.1,168.9 " /></g><g id="bbox:4.9_48.6_5_48.7" ><polygon points="402.9,168.9 406.7,168.9 406.7,174.8 402.9,174.8 402.9,168.9 " /></g><g id="bbox:5_48.6_5.1_48.7" ><polygon points="406.7,168.9 410.6,168.9 410.6,174.8 406.7,174.8 406.7,168.9 " /></g><g id="bbox:5.1_48.6_5.2_48.7" ><polygon points="410.6,168.9 414.4,168.9 414.4,174.8 410.6,174.8 410.6,168.9 " /></g><g id="bbox:5.2_48.6_5.3_48.7" ><polygon points="414.4,168.9 418.3,168.9 418.3,174.8 414.4,174.8 414.4,168.9 " /></g><g id="bbox:5.3_48.6_5.4_48.7" ><polygon points="418.3,168.9 422.1,168.9 422.1,174.8 418.3,174.8 418.3,168.9 " /></g><g id="bbox:5.4_48.6_5.5_48.7" ><polygon points="422.1,168.9 426.0,168.9 426.0,174.8 422.1,174.8 422.1,168.9 " /></g><g id="bbox:5.5_48.6_5.6_48.7" ><polygon points="426.0,168.9 429.8,168.9 429.8,174.8 426.0,174.8 426.0,168.9 " /></g><g id="bbox:5.6_48.6_5.7_48.7" ><polygon points="429.8,168.9 433.7,168.9 433.7,174.8 429.8,174.8 429.8,168.9 " /></g><g id="bbox:5.7_48.6_5.8_48.7" ><polygon points="433.7,168.9 437.5,168.9 437.5,174.8 433.7,174.8 433.7,168.9 " /></g><g id="bbox:5.8_48.6_5.9_48.7" ><polygon points="437.5,168.9 441.4,168.9 441.4,174.8 437.5,174.8 437.5,168.9 " /></g><g id="bbox:5.9_48.6_6_48.7" ><polygon points="441.4,168.9 445.2,168.9 445.2,174.8 441.4,174.8 441.4,168.9 " /></g><g id="bbox:6_48.6_6.1_48.7" ><polygon points="445.2,168.9 449.1,168.9 449.1,174.8 445.2,174.8 445.2,168.9 " /></g><g id="bbox:6.1_48.6_6.2_48.7" ><polygon points="449.1,168.9 452.9,168.9 452.9,174.8 449.1,174.8 449.1,168.9 " /></g><g id="bbox:6.2_48.6_6.3_48.7" ><polygon points="452.9,168.9 456.8,168.9 456.8,174.8 452.9,174.8 452.9,168.9 " /></g><g id="bbox:6.3_48.6_6.4_48.7" ><polygon points="456.8,168.9 460.6,168.9 460.6,174.8 456.8,174.8 456.8,168.9 " /></g><g id="bbox:6.4_48.6_6.5_48.7" ><polygon points="460.6,168.9 464.5,168.9 464.5,174.8 460.6,174.8 460.6,168.9 " /></g><g id="bbox:6.5_48.6_6.6_48.7" ><polygon points="464.5,168.9 468.3,168.9 468.3,174.8 464.5,174.8 464.5,168.9 " /></g><g id="bbox:6.6_48.6_6.7_48.7" ><polygon points="468.3,168.9 472.2,168.9 472.2,174.8 468.3,174.8 468.3,168.9 " /></g><g id="bbox:6.7_48.6_6.8_48.7" ><polygon points="472.2,168.9 476.0,168.9 476.0,174.8 472.2,174.8 472.2,168.9 " /></g><g id="bbox:6.8_48.6_6.9_48.7" ><polygon points="476.0,168.9 479.9,168.9 479.9,174.8 476.0,174.8 476.0,168.9 " /></g><g id="bbox:6.9_48.6_7_48.7" ><polygon points="479.9,168.9 483.7,168.9 483.7,174.8 479.9,174.8 479.9,168.9 " /></g><g id="bbox:7_48.6_7.1_48.7" ><polygon points="483.7,168.9 487.6,168.9 487.6,174.8 483.7,174.8 483.7,168.9 " /></g><g id="bbox:7.1_48.6_7.2_48.7" ><polygon points="487.6,168.9 491.4,168.9 491.4,174.8 487.6,174.8 487.6,168.9 " /></g><g id="bbox:7.2_48.6_7.3_48.7" ><polygon points="491.4,168.9 495.3,168.9 495.3,174.8 491.4,174.8 491.4,168.9 " /></g><g id="bbox:7.3_48.6_7.4_48.7" ><polygon points="495.3,168.9 499.1,168.9 499.1,174.8 495.3,174.8 495.3,168.9 " /></g><g id="bbox:7.4_48.6_7.5_48.7" ><polygon points="499.1,168.9 503.0,168.9 503.0,174.8 499.1,174.8 499.1,168.9 " /></g><g id="bbox:7.5_48.6_7.6_48.7" ><polygon points="503.0,168.9 506.8,168.9 506.8,174.8 503.0,174.8 503.0,168.9 " /></g><g id="bbox:7.6_48.6_7.7_48.7" ><polygon points="506.8,168.9 510.6,168.9 510.6,174.8 506.8,174.8 506.8,168.9 " /></g><g id="bbox:7.7_48.6_7.8_48.7" ><polygon points="510.6,168.9 514.5,168.9 514.5,174.8 510.6,174.8 510.6,168.9 " /></g><g id="bbox:7.8_48.6_7.9_48.7" ><polygon points="514.5,168.9 518.3,168.9 518.3,174.8 514.5,174.8 514.5,168.9 " /></g><g id="bbox:7.9_48.6_8_48.7" ><polygon points="518.3,168.9 522.2,168.9 522.2,174.8 518.3,174.8 518.3,168.9 " /></g><g id="bbox:-4.8_48.5_-4.7_48.6" ><polygon points="29.6,174.8 33.5,174.8 33.5,180.6 29.6,180.6 29.6,174.8 " /></g><g id="bbox:-4.7_48.5_-4.6_48.6" ><polygon points="33.5,174.8 37.3,174.8 37.3,180.6 33.5,180.6 33.5,174.8 " /></g><g id="bbox:-4.6_48.5_-4.5_48.6" ><polygon points="37.3,174.8 41.2,174.8 41.2,180.6 37.3,180.6 37.3,174.8 " /></g><g id="bbox:-4.5_48.5_-4.4_48.6" ><polygon points="41.2,174.8 45.0,174.8 45.0,180.6 41.2,180.6 41.2,174.8 " /></g><g id="bbox:-4.4_48.5_-4.3_48.6" ><polygon points="45.0,174.8 48.9,174.8 48.9,180.6 45.0,180.6 45.0,174.8 " /></g><g id="bbox:-4.3_48.5_-4.2_48.6" ><polygon points="48.9,174.8 52.7,174.8 52.7,180.6 48.9,180.6 48.9,174.8 " /></g><g id="bbox:-4.2_48.5_-4.1_48.6" ><polygon points="52.7,174.8 56.6,174.8 56.6,180.6 52.7,180.6 52.7,174.8 " /></g><g id="bbox:-4.1_48.5_-4_48.6" ><polygon points="56.6,174.8 60.4,174.8 60.4,180.6 56.6,180.6 56.6,174.8 " /></g><g id="bbox:-4_48.5_-3.9_48.6" ><polygon points="60.4,174.8 64.3,174.8 64.3,180.6 60.4,180.6 60.4,174.8 " /></g><g id="bbox:-3.9_48.5_-3.8_48.6" ><polygon points="64.3,174.8 68.1,174.8 68.1,180.6 64.3,180.6 64.3,174.8 " /></g><g id="bbox:-3.8_48.5_-3.7_48.6" ><polygon points="68.1,174.8 72.0,174.8 72.0,180.6 68.1,180.6 68.1,174.8 " /></g><g id="bbox:-3.7_48.5_-3.6_48.6" ><polygon points="72.0,174.8 75.8,174.8 75.8,180.6 72.0,180.6 72.0,174.8 " /></g><g id="bbox:-3.6_48.5_-3.5_48.6" ><polygon points="75.8,174.8 79.7,174.8 79.7,180.6 75.8,180.6 75.8,174.8 " /></g><g id="bbox:-3.5_48.5_-3.4_48.6" ><polygon points="79.7,174.8 83.5,174.8 83.5,180.6 79.7,180.6 79.7,174.8 " /></g><g id="bbox:-3.4_48.5_-3.3_48.6" ><polygon points="83.5,174.8 87.4,174.8 87.4,180.6 83.5,180.6 83.5,174.8 " /></g><g id="bbox:-3.3_48.5_-3.2_48.6" ><polygon points="87.4,174.8 91.2,174.8 91.2,180.6 87.4,180.6 87.4,174.8 " /></g><g id="bbox:-3.2_48.5_-3.1_48.6" ><polygon points="91.2,174.8 95.0,174.8 95.0,180.6 91.2,180.6 91.2,174.8 " /></g><g id="bbox:-3.1_48.5_-3_48.6" ><polygon points="95.0,174.8 98.9,174.8 98.9,180.6 95.0,180.6 95.0,174.8 " /></g><g id="bbox:-3_48.5_-2.9_48.6" ><polygon points="98.9,174.8 102.7,174.8 102.7,180.6 98.9,180.6 98.9,174.8 " /></g><g id="bbox:-2.9_48.5_-2.8_48.6" ><polygon points="102.7,174.8 106.6,174.8 106.6,180.6 102.7,180.6 102.7,174.8 " /></g><g id="bbox:-2.8_48.5_-2.7_48.6" ><polygon points="106.6,174.8 110.4,174.8 110.4,180.6 106.6,180.6 106.6,174.8 " /></g><g id="bbox:-2.7_48.5_-2.6_48.6" ><polygon points="110.4,174.8 114.3,174.8 114.3,180.6 110.4,180.6 110.4,174.8 " /></g><g id="bbox:-2.6_48.5_-2.5_48.6" ><polygon points="114.3,174.8 118.1,174.8 118.1,180.6 114.3,180.6 114.3,174.8 " /></g><g id="bbox:-2.5_48.5_-2.4_48.6" ><polygon points="118.1,174.8 122.0,174.8 122.0,180.6 118.1,180.6 118.1,174.8 " /></g><g id="bbox:-2.4_48.5_-2.3_48.6" ><polygon points="122.0,174.8 125.8,174.8 125.8,180.6 122.0,180.6 122.0,174.8 " /></g><g id="bbox:-2.3_48.5_-2.2_48.6" ><polygon points="125.8,174.8 129.7,174.8 129.7,180.6 125.8,180.6 125.8,174.8 " /></g><g id="bbox:-2.2_48.5_-2.1_48.6" ><polygon points="129.7,174.8 133.5,174.8 133.5,180.6 129.7,180.6 129.7,174.8 " /></g><g id="bbox:-2.1_48.5_-2_48.6" ><polygon points="133.5,174.8 137.4,174.8 137.4,180.6 133.5,180.6 133.5,174.8 " /></g><g id="bbox:-2_48.5_-1.9_48.6" ><polygon points="137.4,174.8 141.2,174.8 141.2,180.6 137.4,180.6 137.4,174.8 " /></g><g id="bbox:-1.9_48.5_-1.8_48.6" ><polygon points="141.2,174.8 145.1,174.8 145.1,180.6 141.2,180.6 141.2,174.8 " /></g><g id="bbox:-1.8_48.5_-1.7_48.6" ><polygon points="145.1,174.8 148.9,174.8 148.9,180.6 145.1,180.6 145.1,174.8 " /></g><g id="bbox:-1.7_48.5_-1.6_48.6" ><polygon points="148.9,174.8 152.8,174.8 152.8,180.6 148.9,180.6 148.9,174.8 " /></g><g id="bbox:-1.6_48.5_-1.5_48.6" ><polygon points="152.8,174.8 156.6,174.8 156.6,180.6 152.8,180.6 152.8,174.8 " /></g><g id="bbox:-1.5_48.5_-1.4_48.6" ><polygon points="156.6,174.8 160.5,174.8 160.5,180.6 156.6,180.6 156.6,174.8 " /></g><g id="bbox:-1.4_48.5_-1.3_48.6" ><polygon points="160.5,174.8 164.3,174.8 164.3,180.6 160.5,180.6 160.5,174.8 " /></g><g id="bbox:-1.3_48.5_-1.2_48.6" ><polygon points="164.3,174.8 168.2,174.8 168.2,180.6 164.3,180.6 164.3,174.8 " /></g><g id="bbox:-1.2_48.5_-1.1_48.6" ><polygon points="168.2,174.8 172.0,174.8 172.0,180.6 168.2,180.6 168.2,174.8 " /></g><g id="bbox:-1.1_48.5_-1_48.6" ><polygon points="172.0,174.8 175.9,174.8 175.9,180.6 172.0,180.6 172.0,174.8 " /></g><g id="bbox:-1_48.5_-0.9_48.6" ><polygon points="175.9,174.8 179.7,174.8 179.7,180.6 175.9,180.6 175.9,174.8 " /></g><g id="bbox:-0.9_48.5_-0.8_48.6" ><polygon points="179.7,174.8 183.6,174.8 183.6,180.6 179.7,180.6 179.7,174.8 " /></g><g id="bbox:-0.8_48.5_-0.7_48.6" ><polygon points="183.6,174.8 187.4,174.8 187.4,180.6 183.6,180.6 183.6,174.8 " /></g><g id="bbox:-0.7_48.5_-0.6_48.6" ><polygon points="187.4,174.8 191.3,174.8 191.3,180.6 187.4,180.6 187.4,174.8 " /></g><g id="bbox:-0.6_48.5_-0.5_48.6" ><polygon points="191.3,174.8 195.1,174.8 195.1,180.6 191.3,180.6 191.3,174.8 " /></g><g id="bbox:-0.5_48.5_-0.4_48.6" ><polygon points="195.1,174.8 198.9,174.8 198.9,180.6 195.1,180.6 195.1,174.8 " /></g><g id="bbox:-0.4_48.5_-0.3_48.6" ><polygon points="198.9,174.8 202.8,174.8 202.8,180.6 198.9,180.6 198.9,174.8 " /></g><g id="bbox:-0.3_48.5_-0.2_48.6" ><polygon points="202.8,174.8 206.6,174.8 206.6,180.6 202.8,180.6 202.8,174.8 " /></g><g id="bbox:-0.2_48.5_-0.1_48.6" ><polygon points="206.6,174.8 210.5,174.8 210.5,180.6 206.6,180.6 206.6,174.8 " /></g><g id="bbox:-0.1_48.5_0_48.6" ><polygon points="210.5,174.8 214.3,174.8 214.3,180.6 210.5,180.6 210.5,174.8 " /></g><g id="bbox:0_48.5_0.1_48.6" ><polygon points="214.3,174.8 218.2,174.8 218.2,180.6 214.3,180.6 214.3,174.8 " /></g><g id="bbox:0.1_48.5_0.2_48.6" ><polygon points="218.2,174.8 222.0,174.8 222.0,180.6 218.2,180.6 218.2,174.8 " /></g><g id="bbox:0.2_48.5_0.3_48.6" ><polygon points="222.0,174.8 225.9,174.8 225.9,180.6 222.0,180.6 222.0,174.8 " /></g><g id="bbox:0.3_48.5_0.4_48.6" ><polygon points="225.9,174.8 229.7,174.8 229.7,180.6 225.9,180.6 225.9,174.8 " /></g><g id="bbox:0.4_48.5_0.5_48.6" ><polygon points="229.7,174.8 233.6,174.8 233.6,180.6 229.7,180.6 229.7,174.8 " /></g><g id="bbox:0.5_48.5_0.6_48.6" ><polygon points="233.6,174.8 237.4,174.8 237.4,180.6 233.6,180.6 233.6,174.8 " /></g><g id="bbox:0.6_48.5_0.7_48.6" ><polygon points="237.4,174.8 241.3,174.8 241.3,180.6 237.4,180.6 237.4,174.8 " /></g><g id="bbox:0.7_48.5_0.8_48.6" ><polygon points="241.3,174.8 245.1,174.8 245.1,180.6 241.3,180.6 241.3,174.8 " /></g><g id="bbox:0.8_48.5_0.9_48.6" ><polygon points="245.1,174.8 249.0,174.8 249.0,180.6 245.1,180.6 245.1,174.8 " /></g><g id="bbox:0.9_48.5_1_48.6" ><polygon points="249.0,174.8 252.8,174.8 252.8,180.6 249.0,180.6 249.0,174.8 " /></g><g id="bbox:1_48.5_1.1_48.6" ><polygon points="252.8,174.8 256.7,174.8 256.7,180.6 252.8,180.6 252.8,174.8 " /></g><g id="bbox:1.1_48.5_1.2_48.6" ><polygon points="256.7,174.8 260.5,174.8 260.5,180.6 256.7,180.6 256.7,174.8 " /></g><g id="bbox:1.2_48.5_1.3_48.6" ><polygon points="260.5,174.8 264.4,174.8 264.4,180.6 260.5,180.6 260.5,174.8 " /></g><g id="bbox:1.3_48.5_1.4_48.6" ><polygon points="264.4,174.8 268.2,174.8 268.2,180.6 264.4,180.6 264.4,174.8 " /></g><g id="bbox:1.4_48.5_1.5_48.6" ><polygon points="268.2,174.8 272.1,174.8 272.1,180.6 268.2,180.6 268.2,174.8 " /></g><g id="bbox:1.5_48.5_1.6_48.6" ><polygon points="272.1,174.8 275.9,174.8 275.9,180.6 272.1,180.6 272.1,174.8 " /></g><g id="bbox:1.6_48.5_1.7_48.6" ><polygon points="275.9,174.8 279.8,174.8 279.8,180.6 275.9,180.6 275.9,174.8 " /></g><g id="bbox:1.7_48.5_1.8_48.6" ><polygon points="279.8,174.8 283.6,174.8 283.6,180.6 279.8,180.6 279.8,174.8 " /></g><g id="bbox:1.8_48.5_1.9_48.6" ><polygon points="283.6,174.8 287.5,174.8 287.5,180.6 283.6,180.6 283.6,174.8 " /></g><g id="bbox:1.9_48.5_2_48.6" ><polygon points="287.5,174.8 291.3,174.8 291.3,180.6 287.5,180.6 287.5,174.8 " /></g><g id="bbox:2_48.5_2.1_48.6" ><polygon points="291.3,174.8 295.2,174.8 295.2,180.6 291.3,180.6 291.3,174.8 " /></g><g id="bbox:2.1_48.5_2.2_48.6" ><polygon points="295.2,174.8 299.0,174.8 299.0,180.6 295.2,180.6 295.2,174.8 " /></g><g id="bbox:2.2_48.5_2.3_48.6" ><polygon points="299.0,174.8 302.8,174.8 302.8,180.6 299.0,180.6 299.0,174.8 " /></g><g id="bbox:2.3_48.5_2.4_48.6" ><polygon points="302.8,174.8 306.7,174.8 306.7,180.6 302.8,180.6 302.8,174.8 " /></g><g id="bbox:2.4_48.5_2.5_48.6" ><polygon points="306.7,174.8 310.5,174.8 310.5,180.6 306.7,180.6 306.7,174.8 " /></g><g id="bbox:2.5_48.5_2.6_48.6" ><polygon points="310.5,174.8 314.4,174.8 314.4,180.6 310.5,180.6 310.5,174.8 " /></g><g id="bbox:2.6_48.5_2.7_48.6" ><polygon points="314.4,174.8 318.2,174.8 318.2,180.6 314.4,180.6 314.4,174.8 " /></g><g id="bbox:2.7_48.5_2.8_48.6" ><polygon points="318.2,174.8 322.1,174.8 322.1,180.6 318.2,180.6 318.2,174.8 " /></g><g id="bbox:2.8_48.5_2.9_48.6" ><polygon points="322.1,174.8 325.9,174.8 325.9,180.6 322.1,180.6 322.1,174.8 " /></g><g id="bbox:2.9_48.5_3_48.6" ><polygon points="325.9,174.8 329.8,174.8 329.8,180.6 325.9,180.6 325.9,174.8 " /></g><g id="bbox:3_48.5_3.1_48.6" ><polygon points="329.8,174.8 333.6,174.8 333.6,180.6 329.8,180.6 329.8,174.8 " /></g><g id="bbox:3.1_48.5_3.2_48.6" ><polygon points="333.6,174.8 337.5,174.8 337.5,180.6 333.6,180.6 333.6,174.8 " /></g><g id="bbox:3.2_48.5_3.3_48.6" ><polygon points="337.5,174.8 341.3,174.8 341.3,180.6 337.5,180.6 337.5,174.8 " /></g><g id="bbox:3.3_48.5_3.4_48.6" ><polygon points="341.3,174.8 345.2,174.8 345.2,180.6 341.3,180.6 341.3,174.8 " /></g><g id="bbox:3.4_48.5_3.5_48.6" ><polygon points="345.2,174.8 349.0,174.8 349.0,180.6 345.2,180.6 345.2,174.8 " /></g><g id="bbox:3.5_48.5_3.6_48.6" ><polygon points="349.0,174.8 352.9,174.8 352.9,180.6 349.0,180.6 349.0,174.8 " /></g><g id="bbox:3.6_48.5_3.7_48.6" ><polygon points="352.9,174.8 356.7,174.8 356.7,180.6 352.9,180.6 352.9,174.8 " /></g><g id="bbox:3.7_48.5_3.8_48.6" ><polygon points="356.7,174.8 360.6,174.8 360.6,180.6 356.7,180.6 356.7,174.8 " /></g><g id="bbox:3.8_48.5_3.9_48.6" ><polygon points="360.6,174.8 364.4,174.8 364.4,180.6 360.6,180.6 360.6,174.8 " /></g><g id="bbox:3.9_48.5_4_48.6" ><polygon points="364.4,174.8 368.3,174.8 368.3,180.6 364.4,180.6 364.4,174.8 " /></g><g id="bbox:4_48.5_4.1_48.6" ><polygon points="368.3,174.8 372.1,174.8 372.1,180.6 368.3,180.6 368.3,174.8 " /></g><g id="bbox:4.1_48.5_4.2_48.6" ><polygon points="372.1,174.8 376.0,174.8 376.0,180.6 372.1,180.6 372.1,174.8 " /></g><g id="bbox:4.2_48.5_4.3_48.6" ><polygon points="376.0,174.8 379.8,174.8 379.8,180.6 376.0,180.6 376.0,174.8 " /></g><g id="bbox:4.3_48.5_4.4_48.6" ><polygon points="379.8,174.8 383.7,174.8 383.7,180.6 379.8,180.6 379.8,174.8 " /></g><g id="bbox:4.4_48.5_4.5_48.6" ><polygon points="383.7,174.8 387.5,174.8 387.5,180.6 383.7,180.6 383.7,174.8 " /></g><g id="bbox:4.5_48.5_4.6_48.6" ><polygon points="387.5,174.8 391.4,174.8 391.4,180.6 387.5,180.6 387.5,174.8 " /></g><g id="bbox:4.6_48.5_4.7_48.6" ><polygon points="391.4,174.8 395.2,174.8 395.2,180.6 391.4,180.6 391.4,174.8 " /></g><g id="bbox:4.7_48.5_4.8_48.6" ><polygon points="395.2,174.8 399.1,174.8 399.1,180.6 395.2,180.6 395.2,174.8 " /></g><g id="bbox:4.8_48.5_4.9_48.6" ><polygon points="399.1,174.8 402.9,174.8 402.9,180.6 399.1,180.6 399.1,174.8 " /></g><g id="bbox:4.9_48.5_5_48.6" ><polygon points="402.9,174.8 406.7,174.8 406.7,180.6 402.9,180.6 402.9,174.8 " /></g><g id="bbox:5_48.5_5.1_48.6" ><polygon points="406.7,174.8 410.6,174.8 410.6,180.6 406.7,180.6 406.7,174.8 " /></g><g id="bbox:5.1_48.5_5.2_48.6" ><polygon points="410.6,174.8 414.4,174.8 414.4,180.6 410.6,180.6 410.6,174.8 " /></g><g id="bbox:5.2_48.5_5.3_48.6" ><polygon points="414.4,174.8 418.3,174.8 418.3,180.6 414.4,180.6 414.4,174.8 " /></g><g id="bbox:5.3_48.5_5.4_48.6" ><polygon points="418.3,174.8 422.1,174.8 422.1,180.6 418.3,180.6 418.3,174.8 " /></g><g id="bbox:5.4_48.5_5.5_48.6" ><polygon points="422.1,174.8 426.0,174.8 426.0,180.6 422.1,180.6 422.1,174.8 " /></g><g id="bbox:5.5_48.5_5.6_48.6" ><polygon points="426.0,174.8 429.8,174.8 429.8,180.6 426.0,180.6 426.0,174.8 " /></g><g id="bbox:5.6_48.5_5.7_48.6" ><polygon points="429.8,174.8 433.7,174.8 433.7,180.6 429.8,180.6 429.8,174.8 " /></g><g id="bbox:5.7_48.5_5.8_48.6" ><polygon points="433.7,174.8 437.5,174.8 437.5,180.6 433.7,180.6 433.7,174.8 " /></g><g id="bbox:5.8_48.5_5.9_48.6" ><polygon points="437.5,174.8 441.4,174.8 441.4,180.6 437.5,180.6 437.5,174.8 " /></g><g id="bbox:5.9_48.5_6_48.6" ><polygon points="441.4,174.8 445.2,174.8 445.2,180.6 441.4,180.6 441.4,174.8 " /></g><g id="bbox:6_48.5_6.1_48.6" ><polygon points="445.2,174.8 449.1,174.8 449.1,180.6 445.2,180.6 445.2,174.8 " /></g><g id="bbox:6.1_48.5_6.2_48.6" ><polygon points="449.1,174.8 452.9,174.8 452.9,180.6 449.1,180.6 449.1,174.8 " /></g><g id="bbox:6.2_48.5_6.3_48.6" ><polygon points="452.9,174.8 456.8,174.8 456.8,180.6 452.9,180.6 452.9,174.8 " /></g><g id="bbox:6.3_48.5_6.4_48.6" ><polygon points="456.8,174.8 460.6,174.8 460.6,180.6 456.8,180.6 456.8,174.8 " /></g><g id="bbox:6.4_48.5_6.5_48.6" ><polygon points="460.6,174.8 464.5,174.8 464.5,180.6 460.6,180.6 460.6,174.8 " /></g><g id="bbox:6.5_48.5_6.6_48.6" ><polygon points="464.5,174.8 468.3,174.8 468.3,180.6 464.5,180.6 464.5,174.8 " /></g><g id="bbox:6.6_48.5_6.7_48.6" ><polygon points="468.3,174.8 472.2,174.8 472.2,180.6 468.3,180.6 468.3,174.8 " /></g><g id="bbox:6.7_48.5_6.8_48.6" ><polygon points="472.2,174.8 476.0,174.8 476.0,180.6 472.2,180.6 472.2,174.8 " /></g><g id="bbox:6.8_48.5_6.9_48.6" ><polygon points="476.0,174.8 479.9,174.8 479.9,180.6 476.0,180.6 476.0,174.8 " /></g><g id="bbox:6.9_48.5_7_48.6" ><polygon points="479.9,174.8 483.7,174.8 483.7,180.6 479.9,180.6 479.9,174.8 " /></g><g id="bbox:7_48.5_7.1_48.6" ><polygon points="483.7,174.8 487.6,174.8 487.6,180.6 483.7,180.6 483.7,174.8 " /></g><g id="bbox:7.1_48.5_7.2_48.6" ><polygon points="487.6,174.8 491.4,174.8 491.4,180.6 487.6,180.6 487.6,174.8 " /></g><g id="bbox:7.2_48.5_7.3_48.6" ><polygon points="491.4,174.8 495.3,174.8 495.3,180.6 491.4,180.6 491.4,174.8 " /></g><g id="bbox:7.3_48.5_7.4_48.6" ><polygon points="495.3,174.8 499.1,174.8 499.1,180.6 495.3,180.6 495.3,174.8 " /></g><g id="bbox:7.4_48.5_7.5_48.6" ><polygon points="499.1,174.8 503.0,174.8 503.0,180.6 499.1,180.6 499.1,174.8 " /></g><g id="bbox:7.5_48.5_7.6_48.6" ><polygon points="503.0,174.8 506.8,174.8 506.8,180.6 503.0,180.6 503.0,174.8 " /></g><g id="bbox:7.6_48.5_7.7_48.6" ><polygon points="506.8,174.8 510.6,174.8 510.6,180.6 506.8,180.6 506.8,174.8 " /></g><g id="bbox:7.7_48.5_7.8_48.6" ><polygon points="510.6,174.8 514.5,174.8 514.5,180.6 510.6,180.6 510.6,174.8 " /></g><g id="bbox:7.8_48.5_7.9_48.6" ><polygon points="514.5,174.8 518.3,174.8 518.3,180.6 514.5,180.6 514.5,174.8 " /></g><g id="bbox:-5.2_48.4_-5.1_48.5" ><polygon points="14.2,180.6 18.1,180.6 18.1,186.4 14.2,186.4 14.2,180.6 " /></g><g id="bbox:-5.1_48.4_-5_48.5" ><polygon points="18.1,180.6 21.9,180.6 21.9,186.4 18.1,186.4 18.1,180.6 " /></g><g id="bbox:-5_48.4_-4.9_48.5" ><polygon points="21.9,180.6 25.8,180.6 25.8,186.4 21.9,186.4 21.9,180.6 " /></g><g id="bbox:-4.9_48.4_-4.8_48.5" ><polygon points="25.8,180.6 29.6,180.6 29.6,186.4 25.8,186.4 25.8,180.6 " /></g><g id="bbox:-4.8_48.4_-4.7_48.5" ><polygon points="29.6,180.6 33.5,180.6 33.5,186.4 29.6,186.4 29.6,180.6 " /></g><g id="bbox:-4.7_48.4_-4.6_48.5" ><polygon points="33.5,180.6 37.3,180.6 37.3,186.4 33.5,186.4 33.5,180.6 " /></g><g id="bbox:-4.6_48.4_-4.5_48.5" ><polygon points="37.3,180.6 41.2,180.6 41.2,186.4 37.3,186.4 37.3,180.6 " /></g><g id="bbox:-4.5_48.4_-4.4_48.5" ><polygon points="41.2,180.6 45.0,180.6 45.0,186.4 41.2,186.4 41.2,180.6 " /></g><g id="bbox:-4.4_48.4_-4.3_48.5" ><polygon points="45.0,180.6 48.9,180.6 48.9,186.4 45.0,186.4 45.0,180.6 " /></g><g id="bbox:-4.3_48.4_-4.2_48.5" ><polygon points="48.9,180.6 52.7,180.6 52.7,186.4 48.9,186.4 48.9,180.6 " /></g><g id="bbox:-4.2_48.4_-4.1_48.5" ><polygon points="52.7,180.6 56.6,180.6 56.6,186.4 52.7,186.4 52.7,180.6 " /></g><g id="bbox:-4.1_48.4_-4_48.5" ><polygon points="56.6,180.6 60.4,180.6 60.4,186.4 56.6,186.4 56.6,180.6 " /></g><g id="bbox:-4_48.4_-3.9_48.5" ><polygon points="60.4,180.6 64.3,180.6 64.3,186.4 60.4,186.4 60.4,180.6 " /></g><g id="bbox:-3.9_48.4_-3.8_48.5" ><polygon points="64.3,180.6 68.1,180.6 68.1,186.4 64.3,186.4 64.3,180.6 " /></g><g id="bbox:-3.8_48.4_-3.7_48.5" ><polygon points="68.1,180.6 72.0,180.6 72.0,186.4 68.1,186.4 68.1,180.6 " /></g><g id="bbox:-3.7_48.4_-3.6_48.5" ><polygon points="72.0,180.6 75.8,180.6 75.8,186.4 72.0,186.4 72.0,180.6 " /></g><g id="bbox:-3.6_48.4_-3.5_48.5" ><polygon points="75.8,180.6 79.7,180.6 79.7,186.4 75.8,186.4 75.8,180.6 " /></g><g id="bbox:-3.5_48.4_-3.4_48.5" ><polygon points="79.7,180.6 83.5,180.6 83.5,186.4 79.7,186.4 79.7,180.6 " /></g><g id="bbox:-3.4_48.4_-3.3_48.5" ><polygon points="83.5,180.6 87.4,180.6 87.4,186.4 83.5,186.4 83.5,180.6 " /></g><g id="bbox:-3.3_48.4_-3.2_48.5" ><polygon points="87.4,180.6 91.2,180.6 91.2,186.4 87.4,186.4 87.4,180.6 " /></g><g id="bbox:-3.2_48.4_-3.1_48.5" ><polygon points="91.2,180.6 95.0,180.6 95.0,186.4 91.2,186.4 91.2,180.6 " /></g><g id="bbox:-3.1_48.4_-3_48.5" ><polygon points="95.0,180.6 98.9,180.6 98.9,186.4 95.0,186.4 95.0,180.6 " /></g><g id="bbox:-3_48.4_-2.9_48.5" ><polygon points="98.9,180.6 102.7,180.6 102.7,186.4 98.9,186.4 98.9,180.6 " /></g><g id="bbox:-2.9_48.4_-2.8_48.5" ><polygon points="102.7,180.6 106.6,180.6 106.6,186.4 102.7,186.4 102.7,180.6 " /></g><g id="bbox:-2.8_48.4_-2.7_48.5" ><polygon points="106.6,180.6 110.4,180.6 110.4,186.4 106.6,186.4 106.6,180.6 " /></g><g id="bbox:-2.7_48.4_-2.6_48.5" ><polygon points="110.4,180.6 114.3,180.6 114.3,186.4 110.4,186.4 110.4,180.6 " /></g><g id="bbox:-2.6_48.4_-2.5_48.5" ><polygon points="114.3,180.6 118.1,180.6 118.1,186.4 114.3,186.4 114.3,180.6 " /></g><g id="bbox:-2.5_48.4_-2.4_48.5" ><polygon points="118.1,180.6 122.0,180.6 122.0,186.4 118.1,186.4 118.1,180.6 " /></g><g id="bbox:-2.4_48.4_-2.3_48.5" ><polygon points="122.0,180.6 125.8,180.6 125.8,186.4 122.0,186.4 122.0,180.6 " /></g><g id="bbox:-2.3_48.4_-2.2_48.5" ><polygon points="125.8,180.6 129.7,180.6 129.7,186.4 125.8,186.4 125.8,180.6 " /></g><g id="bbox:-2.2_48.4_-2.1_48.5" ><polygon points="129.7,180.6 133.5,180.6 133.5,186.4 129.7,186.4 129.7,180.6 " /></g><g id="bbox:-2.1_48.4_-2_48.5" ><polygon points="133.5,180.6 137.4,180.6 137.4,186.4 133.5,186.4 133.5,180.6 " /></g><g id="bbox:-2_48.4_-1.9_48.5" ><polygon points="137.4,180.6 141.2,180.6 141.2,186.4 137.4,186.4 137.4,180.6 " /></g><g id="bbox:-1.9_48.4_-1.8_48.5" ><polygon points="141.2,180.6 145.1,180.6 145.1,186.4 141.2,186.4 141.2,180.6 " /></g><g id="bbox:-1.8_48.4_-1.7_48.5" ><polygon points="145.1,180.6 148.9,180.6 148.9,186.4 145.1,186.4 145.1,180.6 " /></g><g id="bbox:-1.7_48.4_-1.6_48.5" ><polygon points="148.9,180.6 152.8,180.6 152.8,186.4 148.9,186.4 148.9,180.6 " /></g><g id="bbox:-1.6_48.4_-1.5_48.5" ><polygon points="152.8,180.6 156.6,180.6 156.6,186.4 152.8,186.4 152.8,180.6 " /></g><g id="bbox:-1.5_48.4_-1.4_48.5" ><polygon points="156.6,180.6 160.5,180.6 160.5,186.4 156.6,186.4 156.6,180.6 " /></g><g id="bbox:-1.4_48.4_-1.3_48.5" ><polygon points="160.5,180.6 164.3,180.6 164.3,186.4 160.5,186.4 160.5,180.6 " /></g><g id="bbox:-1.3_48.4_-1.2_48.5" ><polygon points="164.3,180.6 168.2,180.6 168.2,186.4 164.3,186.4 164.3,180.6 " /></g><g id="bbox:-1.2_48.4_-1.1_48.5" ><polygon points="168.2,180.6 172.0,180.6 172.0,186.4 168.2,186.4 168.2,180.6 " /></g><g id="bbox:-1.1_48.4_-1_48.5" ><polygon points="172.0,180.6 175.9,180.6 175.9,186.4 172.0,186.4 172.0,180.6 " /></g><g id="bbox:-1_48.4_-0.9_48.5" ><polygon points="175.9,180.6 179.7,180.6 179.7,186.4 175.9,186.4 175.9,180.6 " /></g><g id="bbox:-0.9_48.4_-0.8_48.5" ><polygon points="179.7,180.6 183.6,180.6 183.6,186.4 179.7,186.4 179.7,180.6 " /></g><g id="bbox:-0.8_48.4_-0.7_48.5" ><polygon points="183.6,180.6 187.4,180.6 187.4,186.4 183.6,186.4 183.6,180.6 " /></g><g id="bbox:-0.7_48.4_-0.6_48.5" ><polygon points="187.4,180.6 191.3,180.6 191.3,186.4 187.4,186.4 187.4,180.6 " /></g><g id="bbox:-0.6_48.4_-0.5_48.5" ><polygon points="191.3,180.6 195.1,180.6 195.1,186.4 191.3,186.4 191.3,180.6 " /></g><g id="bbox:-0.5_48.4_-0.4_48.5" ><polygon points="195.1,180.6 198.9,180.6 198.9,186.4 195.1,186.4 195.1,180.6 " /></g><g id="bbox:-0.4_48.4_-0.3_48.5" ><polygon points="198.9,180.6 202.8,180.6 202.8,186.4 198.9,186.4 198.9,180.6 " /></g><g id="bbox:-0.3_48.4_-0.2_48.5" ><polygon points="202.8,180.6 206.6,180.6 206.6,186.4 202.8,186.4 202.8,180.6 " /></g><g id="bbox:-0.2_48.4_-0.1_48.5" ><polygon points="206.6,180.6 210.5,180.6 210.5,186.4 206.6,186.4 206.6,180.6 " /></g><g id="bbox:-0.1_48.4_0_48.5" ><polygon points="210.5,180.6 214.3,180.6 214.3,186.4 210.5,186.4 210.5,180.6 " /></g><g id="bbox:0_48.4_0.1_48.5" ><polygon points="214.3,180.6 218.2,180.6 218.2,186.4 214.3,186.4 214.3,180.6 " /></g><g id="bbox:0.1_48.4_0.2_48.5" ><polygon points="218.2,180.6 222.0,180.6 222.0,186.4 218.2,186.4 218.2,180.6 " /></g><g id="bbox:0.2_48.4_0.3_48.5" ><polygon points="222.0,180.6 225.9,180.6 225.9,186.4 222.0,186.4 222.0,180.6 " /></g><g id="bbox:0.3_48.4_0.4_48.5" ><polygon points="225.9,180.6 229.7,180.6 229.7,186.4 225.9,186.4 225.9,180.6 " /></g><g id="bbox:0.4_48.4_0.5_48.5" ><polygon points="229.7,180.6 233.6,180.6 233.6,186.4 229.7,186.4 229.7,180.6 " /></g><g id="bbox:0.5_48.4_0.6_48.5" ><polygon points="233.6,180.6 237.4,180.6 237.4,186.4 233.6,186.4 233.6,180.6 " /></g><g id="bbox:0.6_48.4_0.7_48.5" ><polygon points="237.4,180.6 241.3,180.6 241.3,186.4 237.4,186.4 237.4,180.6 " /></g><g id="bbox:0.7_48.4_0.8_48.5" ><polygon points="241.3,180.6 245.1,180.6 245.1,186.4 241.3,186.4 241.3,180.6 " /></g><g id="bbox:0.8_48.4_0.9_48.5" ><polygon points="245.1,180.6 249.0,180.6 249.0,186.4 245.1,186.4 245.1,180.6 " /></g><g id="bbox:0.9_48.4_1_48.5" ><polygon points="249.0,180.6 252.8,180.6 252.8,186.4 249.0,186.4 249.0,180.6 " /></g><g id="bbox:1_48.4_1.1_48.5" ><polygon points="252.8,180.6 256.7,180.6 256.7,186.4 252.8,186.4 252.8,180.6 " /></g><g id="bbox:1.1_48.4_1.2_48.5" ><polygon points="256.7,180.6 260.5,180.6 260.5,186.4 256.7,186.4 256.7,180.6 " /></g><g id="bbox:1.2_48.4_1.3_48.5" ><polygon points="260.5,180.6 264.4,180.6 264.4,186.4 260.5,186.4 260.5,180.6 " /></g><g id="bbox:1.3_48.4_1.4_48.5" ><polygon points="264.4,180.6 268.2,180.6 268.2,186.4 264.4,186.4 264.4,180.6 " /></g><g id="bbox:1.4_48.4_1.5_48.5" ><polygon points="268.2,180.6 272.1,180.6 272.1,186.4 268.2,186.4 268.2,180.6 " /></g><g id="bbox:1.5_48.4_1.6_48.5" ><polygon points="272.1,180.6 275.9,180.6 275.9,186.4 272.1,186.4 272.1,180.6 " /></g><g id="bbox:1.6_48.4_1.7_48.5" ><polygon points="275.9,180.6 279.8,180.6 279.8,186.4 275.9,186.4 275.9,180.6 " /></g><g id="bbox:1.7_48.4_1.8_48.5" ><polygon points="279.8,180.6 283.6,180.6 283.6,186.4 279.8,186.4 279.8,180.6 " /></g><g id="bbox:1.8_48.4_1.9_48.5" ><polygon points="283.6,180.6 287.5,180.6 287.5,186.4 283.6,186.4 283.6,180.6 " /></g><g id="bbox:1.9_48.4_2_48.5" ><polygon points="287.5,180.6 291.3,180.6 291.3,186.4 287.5,186.4 287.5,180.6 " /></g><g id="bbox:2_48.4_2.1_48.5" ><polygon points="291.3,180.6 295.2,180.6 295.2,186.4 291.3,186.4 291.3,180.6 " /></g><g id="bbox:2.1_48.4_2.2_48.5" ><polygon points="295.2,180.6 299.0,180.6 299.0,186.4 295.2,186.4 295.2,180.6 " /></g><g id="bbox:2.2_48.4_2.3_48.5" ><polygon points="299.0,180.6 302.8,180.6 302.8,186.4 299.0,186.4 299.0,180.6 " /></g><g id="bbox:2.3_48.4_2.4_48.5" ><polygon points="302.8,180.6 306.7,180.6 306.7,186.4 302.8,186.4 302.8,180.6 " /></g><g id="bbox:2.4_48.4_2.5_48.5" ><polygon points="306.7,180.6 310.5,180.6 310.5,186.4 306.7,186.4 306.7,180.6 " /></g><g id="bbox:2.5_48.4_2.6_48.5" ><polygon points="310.5,180.6 314.4,180.6 314.4,186.4 310.5,186.4 310.5,180.6 " /></g><g id="bbox:2.6_48.4_2.7_48.5" ><polygon points="314.4,180.6 318.2,180.6 318.2,186.4 314.4,186.4 314.4,180.6 " /></g><g id="bbox:2.7_48.4_2.8_48.5" ><polygon points="318.2,180.6 322.1,180.6 322.1,186.4 318.2,186.4 318.2,180.6 " /></g><g id="bbox:2.8_48.4_2.9_48.5" ><polygon points="322.1,180.6 325.9,180.6 325.9,186.4 322.1,186.4 322.1,180.6 " /></g><g id="bbox:2.9_48.4_3_48.5" ><polygon points="325.9,180.6 329.8,180.6 329.8,186.4 325.9,186.4 325.9,180.6 " /></g><g id="bbox:3_48.4_3.1_48.5" ><polygon points="329.8,180.6 333.6,180.6 333.6,186.4 329.8,186.4 329.8,180.6 " /></g><g id="bbox:3.1_48.4_3.2_48.5" ><polygon points="333.6,180.6 337.5,180.6 337.5,186.4 333.6,186.4 333.6,180.6 " /></g><g id="bbox:3.2_48.4_3.3_48.5" ><polygon points="337.5,180.6 341.3,180.6 341.3,186.4 337.5,186.4 337.5,180.6 " /></g><g id="bbox:3.3_48.4_3.4_48.5" ><polygon points="341.3,180.6 345.2,180.6 345.2,186.4 341.3,186.4 341.3,180.6 " /></g><g id="bbox:3.4_48.4_3.5_48.5" ><polygon points="345.2,180.6 349.0,180.6 349.0,186.4 345.2,186.4 345.2,180.6 " /></g><g id="bbox:3.5_48.4_3.6_48.5" ><polygon points="349.0,180.6 352.9,180.6 352.9,186.4 349.0,186.4 349.0,180.6 " /></g><g id="bbox:3.6_48.4_3.7_48.5" ><polygon points="352.9,180.6 356.7,180.6 356.7,186.4 352.9,186.4 352.9,180.6 " /></g><g id="bbox:3.7_48.4_3.8_48.5" ><polygon points="356.7,180.6 360.6,180.6 360.6,186.4 356.7,186.4 356.7,180.6 " /></g><g id="bbox:3.8_48.4_3.9_48.5" ><polygon points="360.6,180.6 364.4,180.6 364.4,186.4 360.6,186.4 360.6,180.6 " /></g><g id="bbox:3.9_48.4_4_48.5" ><polygon points="364.4,180.6 368.3,180.6 368.3,186.4 364.4,186.4 364.4,180.6 " /></g><g id="bbox:4_48.4_4.1_48.5" ><polygon points="368.3,180.6 372.1,180.6 372.1,186.4 368.3,186.4 368.3,180.6 " /></g><g id="bbox:4.1_48.4_4.2_48.5" ><polygon points="372.1,180.6 376.0,180.6 376.0,186.4 372.1,186.4 372.1,180.6 " /></g><g id="bbox:4.2_48.4_4.3_48.5" ><polygon points="376.0,180.6 379.8,180.6 379.8,186.4 376.0,186.4 376.0,180.6 " /></g><g id="bbox:4.3_48.4_4.4_48.5" ><polygon points="379.8,180.6 383.7,180.6 383.7,186.4 379.8,186.4 379.8,180.6 " /></g><g id="bbox:4.4_48.4_4.5_48.5" ><polygon points="383.7,180.6 387.5,180.6 387.5,186.4 383.7,186.4 383.7,180.6 " /></g><g id="bbox:4.5_48.4_4.6_48.5" ><polygon points="387.5,180.6 391.4,180.6 391.4,186.4 387.5,186.4 387.5,180.6 " /></g><g id="bbox:4.6_48.4_4.7_48.5" ><polygon points="391.4,180.6 395.2,180.6 395.2,186.4 391.4,186.4 391.4,180.6 " /></g><g id="bbox:4.7_48.4_4.8_48.5" ><polygon points="395.2,180.6 399.1,180.6 399.1,186.4 395.2,186.4 395.2,180.6 " /></g><g id="bbox:4.8_48.4_4.9_48.5" ><polygon points="399.1,180.6 402.9,180.6 402.9,186.4 399.1,186.4 399.1,180.6 " /></g><g id="bbox:4.9_48.4_5_48.5" ><polygon points="402.9,180.6 406.7,180.6 406.7,186.4 402.9,186.4 402.9,180.6 " /></g><g id="bbox:5_48.4_5.1_48.5" ><polygon points="406.7,180.6 410.6,180.6 410.6,186.4 406.7,186.4 406.7,180.6 " /></g><g id="bbox:5.1_48.4_5.2_48.5" ><polygon points="410.6,180.6 414.4,180.6 414.4,186.4 410.6,186.4 410.6,180.6 " /></g><g id="bbox:5.2_48.4_5.3_48.5" ><polygon points="414.4,180.6 418.3,180.6 418.3,186.4 414.4,186.4 414.4,180.6 " /></g><g id="bbox:5.3_48.4_5.4_48.5" ><polygon points="418.3,180.6 422.1,180.6 422.1,186.4 418.3,186.4 418.3,180.6 " /></g><g id="bbox:5.4_48.4_5.5_48.5" ><polygon points="422.1,180.6 426.0,180.6 426.0,186.4 422.1,186.4 422.1,180.6 " /></g><g id="bbox:5.5_48.4_5.6_48.5" ><polygon points="426.0,180.6 429.8,180.6 429.8,186.4 426.0,186.4 426.0,180.6 " /></g><g id="bbox:5.6_48.4_5.7_48.5" ><polygon points="429.8,180.6 433.7,180.6 433.7,186.4 429.8,186.4 429.8,180.6 " /></g><g id="bbox:5.7_48.4_5.8_48.5" ><polygon points="433.7,180.6 437.5,180.6 437.5,186.4 433.7,186.4 433.7,180.6 " /></g><g id="bbox:5.8_48.4_5.9_48.5" ><polygon points="437.5,180.6 441.4,180.6 441.4,186.4 437.5,186.4 437.5,180.6 " /></g><g id="bbox:5.9_48.4_6_48.5" ><polygon points="441.4,180.6 445.2,180.6 445.2,186.4 441.4,186.4 441.4,180.6 " /></g><g id="bbox:6_48.4_6.1_48.5" ><polygon points="445.2,180.6 449.1,180.6 449.1,186.4 445.2,186.4 445.2,180.6 " /></g><g id="bbox:6.1_48.4_6.2_48.5" ><polygon points="449.1,180.6 452.9,180.6 452.9,186.4 449.1,186.4 449.1,180.6 " /></g><g id="bbox:6.2_48.4_6.3_48.5" ><polygon points="452.9,180.6 456.8,180.6 456.8,186.4 452.9,186.4 452.9,180.6 " /></g><g id="bbox:6.3_48.4_6.4_48.5" ><polygon points="456.8,180.6 460.6,180.6 460.6,186.4 456.8,186.4 456.8,180.6 " /></g><g id="bbox:6.4_48.4_6.5_48.5" ><polygon points="460.6,180.6 464.5,180.6 464.5,186.4 460.6,186.4 460.6,180.6 " /></g><g id="bbox:6.5_48.4_6.6_48.5" ><polygon points="464.5,180.6 468.3,180.6 468.3,186.4 464.5,186.4 464.5,180.6 " /></g><g id="bbox:6.6_48.4_6.7_48.5" ><polygon points="468.3,180.6 472.2,180.6 472.2,186.4 468.3,186.4 468.3,180.6 " /></g><g id="bbox:6.7_48.4_6.8_48.5" ><polygon points="472.2,180.6 476.0,180.6 476.0,186.4 472.2,186.4 472.2,180.6 " /></g><g id="bbox:6.8_48.4_6.9_48.5" ><polygon points="476.0,180.6 479.9,180.6 479.9,186.4 476.0,186.4 476.0,180.6 " /></g><g id="bbox:6.9_48.4_7_48.5" ><polygon points="479.9,180.6 483.7,180.6 483.7,186.4 479.9,186.4 479.9,180.6 " /></g><g id="bbox:7_48.4_7.1_48.5" ><polygon points="483.7,180.6 487.6,180.6 487.6,186.4 483.7,186.4 483.7,180.6 " /></g><g id="bbox:7.1_48.4_7.2_48.5" ><polygon points="487.6,180.6 491.4,180.6 491.4,186.4 487.6,186.4 487.6,180.6 " /></g><g id="bbox:7.2_48.4_7.3_48.5" ><polygon points="491.4,180.6 495.3,180.6 495.3,186.4 491.4,186.4 491.4,180.6 " /></g><g id="bbox:7.3_48.4_7.4_48.5" ><polygon points="495.3,180.6 499.1,180.6 499.1,186.4 495.3,186.4 495.3,180.6 " /></g><g id="bbox:7.4_48.4_7.5_48.5" ><polygon points="499.1,180.6 503.0,180.6 503.0,186.4 499.1,186.4 499.1,180.6 " /></g><g id="bbox:7.5_48.4_7.6_48.5" ><polygon points="503.0,180.6 506.8,180.6 506.8,186.4 503.0,186.4 503.0,180.6 " /></g><g id="bbox:7.6_48.4_7.7_48.5" ><polygon points="506.8,180.6 510.6,180.6 510.6,186.4 506.8,186.4 506.8,180.6 " /></g><g id="bbox:7.7_48.4_7.8_48.5" ><polygon points="510.6,180.6 514.5,180.6 514.5,186.4 510.6,186.4 510.6,180.6 " /></g><g id="bbox:-5_48.3_-4.9_48.4" ><polygon points="21.9,186.4 25.8,186.4 25.8,192.2 21.9,192.2 21.9,186.4 " /></g><g id="bbox:-4.9_48.3_-4.8_48.4" ><polygon points="25.8,186.4 29.6,186.4 29.6,192.2 25.8,192.2 25.8,186.4 " /></g><g id="bbox:-4.8_48.3_-4.7_48.4" ><polygon points="29.6,186.4 33.5,186.4 33.5,192.2 29.6,192.2 29.6,186.4 " /></g><g id="bbox:-4.7_48.3_-4.6_48.4" ><polygon points="33.5,186.4 37.3,186.4 37.3,192.2 33.5,192.2 33.5,186.4 " /></g><g id="bbox:-4.6_48.3_-4.5_48.4" ><polygon points="37.3,186.4 41.2,186.4 41.2,192.2 37.3,192.2 37.3,186.4 " /></g><g id="bbox:-4.5_48.3_-4.4_48.4" ><polygon points="41.2,186.4 45.0,186.4 45.0,192.2 41.2,192.2 41.2,186.4 " /></g><g id="bbox:-4.4_48.3_-4.3_48.4" ><polygon points="45.0,186.4 48.9,186.4 48.9,192.2 45.0,192.2 45.0,186.4 " /></g><g id="bbox:-4.3_48.3_-4.2_48.4" ><polygon points="48.9,186.4 52.7,186.4 52.7,192.2 48.9,192.2 48.9,186.4 " /></g><g id="bbox:-4.2_48.3_-4.1_48.4" ><polygon points="52.7,186.4 56.6,186.4 56.6,192.2 52.7,192.2 52.7,186.4 " /></g><g id="bbox:-4.1_48.3_-4_48.4" ><polygon points="56.6,186.4 60.4,186.4 60.4,192.2 56.6,192.2 56.6,186.4 " /></g><g id="bbox:-4_48.3_-3.9_48.4" ><polygon points="60.4,186.4 64.3,186.4 64.3,192.2 60.4,192.2 60.4,186.4 " /></g><g id="bbox:-3.9_48.3_-3.8_48.4" ><polygon points="64.3,186.4 68.1,186.4 68.1,192.2 64.3,192.2 64.3,186.4 " /></g><g id="bbox:-3.8_48.3_-3.7_48.4" ><polygon points="68.1,186.4 72.0,186.4 72.0,192.2 68.1,192.2 68.1,186.4 " /></g><g id="bbox:-3.7_48.3_-3.6_48.4" ><polygon points="72.0,186.4 75.8,186.4 75.8,192.2 72.0,192.2 72.0,186.4 " /></g><g id="bbox:-3.6_48.3_-3.5_48.4" ><polygon points="75.8,186.4 79.7,186.4 79.7,192.2 75.8,192.2 75.8,186.4 " /></g><g id="bbox:-3.5_48.3_-3.4_48.4" ><polygon points="79.7,186.4 83.5,186.4 83.5,192.2 79.7,192.2 79.7,186.4 " /></g><g id="bbox:-3.4_48.3_-3.3_48.4" ><polygon points="83.5,186.4 87.4,186.4 87.4,192.2 83.5,192.2 83.5,186.4 " /></g><g id="bbox:-3.3_48.3_-3.2_48.4" ><polygon points="87.4,186.4 91.2,186.4 91.2,192.2 87.4,192.2 87.4,186.4 " /></g><g id="bbox:-3.2_48.3_-3.1_48.4" ><polygon points="91.2,186.4 95.0,186.4 95.0,192.2 91.2,192.2 91.2,186.4 " /></g><g id="bbox:-3.1_48.3_-3_48.4" ><polygon points="95.0,186.4 98.9,186.4 98.9,192.2 95.0,192.2 95.0,186.4 " /></g><g id="bbox:-3_48.3_-2.9_48.4" ><polygon points="98.9,186.4 102.7,186.4 102.7,192.2 98.9,192.2 98.9,186.4 " /></g><g id="bbox:-2.9_48.3_-2.8_48.4" ><polygon points="102.7,186.4 106.6,186.4 106.6,192.2 102.7,192.2 102.7,186.4 " /></g><g id="bbox:-2.8_48.3_-2.7_48.4" ><polygon points="106.6,186.4 110.4,186.4 110.4,192.2 106.6,192.2 106.6,186.4 " /></g><g id="bbox:-2.7_48.3_-2.6_48.4" ><polygon points="110.4,186.4 114.3,186.4 114.3,192.2 110.4,192.2 110.4,186.4 " /></g><g id="bbox:-2.6_48.3_-2.5_48.4" ><polygon points="114.3,186.4 118.1,186.4 118.1,192.2 114.3,192.2 114.3,186.4 " /></g><g id="bbox:-2.5_48.3_-2.4_48.4" ><polygon points="118.1,186.4 122.0,186.4 122.0,192.2 118.1,192.2 118.1,186.4 " /></g><g id="bbox:-2.4_48.3_-2.3_48.4" ><polygon points="122.0,186.4 125.8,186.4 125.8,192.2 122.0,192.2 122.0,186.4 " /></g><g id="bbox:-2.3_48.3_-2.2_48.4" ><polygon points="125.8,186.4 129.7,186.4 129.7,192.2 125.8,192.2 125.8,186.4 " /></g><g id="bbox:-2.2_48.3_-2.1_48.4" ><polygon points="129.7,186.4 133.5,186.4 133.5,192.2 129.7,192.2 129.7,186.4 " /></g><g id="bbox:-2.1_48.3_-2_48.4" ><polygon points="133.5,186.4 137.4,186.4 137.4,192.2 133.5,192.2 133.5,186.4 " /></g><g id="bbox:-2_48.3_-1.9_48.4" ><polygon points="137.4,186.4 141.2,186.4 141.2,192.2 137.4,192.2 137.4,186.4 " /></g><g id="bbox:-1.9_48.3_-1.8_48.4" ><polygon points="141.2,186.4 145.1,186.4 145.1,192.2 141.2,192.2 141.2,186.4 " /></g><g id="bbox:-1.8_48.3_-1.7_48.4" ><polygon points="145.1,186.4 148.9,186.4 148.9,192.2 145.1,192.2 145.1,186.4 " /></g><g id="bbox:-1.7_48.3_-1.6_48.4" ><polygon points="148.9,186.4 152.8,186.4 152.8,192.2 148.9,192.2 148.9,186.4 " /></g><g id="bbox:-1.6_48.3_-1.5_48.4" ><polygon points="152.8,186.4 156.6,186.4 156.6,192.2 152.8,192.2 152.8,186.4 " /></g><g id="bbox:-1.5_48.3_-1.4_48.4" ><polygon points="156.6,186.4 160.5,186.4 160.5,192.2 156.6,192.2 156.6,186.4 " /></g><g id="bbox:-1.4_48.3_-1.3_48.4" ><polygon points="160.5,186.4 164.3,186.4 164.3,192.2 160.5,192.2 160.5,186.4 " /></g><g id="bbox:-1.3_48.3_-1.2_48.4" ><polygon points="164.3,186.4 168.2,186.4 168.2,192.2 164.3,192.2 164.3,186.4 " /></g><g id="bbox:-1.2_48.3_-1.1_48.4" ><polygon points="168.2,186.4 172.0,186.4 172.0,192.2 168.2,192.2 168.2,186.4 " /></g><g id="bbox:-1.1_48.3_-1_48.4" ><polygon points="172.0,186.4 175.9,186.4 175.9,192.2 172.0,192.2 172.0,186.4 " /></g><g id="bbox:-1_48.3_-0.9_48.4" ><polygon points="175.9,186.4 179.7,186.4 179.7,192.2 175.9,192.2 175.9,186.4 " /></g><g id="bbox:-0.9_48.3_-0.8_48.4" ><polygon points="179.7,186.4 183.6,186.4 183.6,192.2 179.7,192.2 179.7,186.4 " /></g><g id="bbox:-0.8_48.3_-0.7_48.4" ><polygon points="183.6,186.4 187.4,186.4 187.4,192.2 183.6,192.2 183.6,186.4 " /></g><g id="bbox:-0.7_48.3_-0.6_48.4" ><polygon points="187.4,186.4 191.3,186.4 191.3,192.2 187.4,192.2 187.4,186.4 " /></g><g id="bbox:-0.6_48.3_-0.5_48.4" ><polygon points="191.3,186.4 195.1,186.4 195.1,192.2 191.3,192.2 191.3,186.4 " /></g><g id="bbox:-0.5_48.3_-0.4_48.4" ><polygon points="195.1,186.4 198.9,186.4 198.9,192.2 195.1,192.2 195.1,186.4 " /></g><g id="bbox:-0.4_48.3_-0.3_48.4" ><polygon points="198.9,186.4 202.8,186.4 202.8,192.2 198.9,192.2 198.9,186.4 " /></g><g id="bbox:-0.3_48.3_-0.2_48.4" ><polygon points="202.8,186.4 206.6,186.4 206.6,192.2 202.8,192.2 202.8,186.4 " /></g><g id="bbox:-0.2_48.3_-0.1_48.4" ><polygon points="206.6,186.4 210.5,186.4 210.5,192.2 206.6,192.2 206.6,186.4 " /></g><g id="bbox:-0.1_48.3_0_48.4" ><polygon points="210.5,186.4 214.3,186.4 214.3,192.2 210.5,192.2 210.5,186.4 " /></g><g id="bbox:0_48.3_0.1_48.4" ><polygon points="214.3,186.4 218.2,186.4 218.2,192.2 214.3,192.2 214.3,186.4 " /></g><g id="bbox:0.1_48.3_0.2_48.4" ><polygon points="218.2,186.4 222.0,186.4 222.0,192.2 218.2,192.2 218.2,186.4 " /></g><g id="bbox:0.2_48.3_0.3_48.4" ><polygon points="222.0,186.4 225.9,186.4 225.9,192.2 222.0,192.2 222.0,186.4 " /></g><g id="bbox:0.3_48.3_0.4_48.4" ><polygon points="225.9,186.4 229.7,186.4 229.7,192.2 225.9,192.2 225.9,186.4 " /></g><g id="bbox:0.4_48.3_0.5_48.4" ><polygon points="229.7,186.4 233.6,186.4 233.6,192.2 229.7,192.2 229.7,186.4 " /></g><g id="bbox:0.5_48.3_0.6_48.4" ><polygon points="233.6,186.4 237.4,186.4 237.4,192.2 233.6,192.2 233.6,186.4 " /></g><g id="bbox:0.6_48.3_0.7_48.4" ><polygon points="237.4,186.4 241.3,186.4 241.3,192.2 237.4,192.2 237.4,186.4 " /></g><g id="bbox:0.7_48.3_0.8_48.4" ><polygon points="241.3,186.4 245.1,186.4 245.1,192.2 241.3,192.2 241.3,186.4 " /></g><g id="bbox:0.8_48.3_0.9_48.4" ><polygon points="245.1,186.4 249.0,186.4 249.0,192.2 245.1,192.2 245.1,186.4 " /></g><g id="bbox:0.9_48.3_1_48.4" ><polygon points="249.0,186.4 252.8,186.4 252.8,192.2 249.0,192.2 249.0,186.4 " /></g><g id="bbox:1_48.3_1.1_48.4" ><polygon points="252.8,186.4 256.7,186.4 256.7,192.2 252.8,192.2 252.8,186.4 " /></g><g id="bbox:1.1_48.3_1.2_48.4" ><polygon points="256.7,186.4 260.5,186.4 260.5,192.2 256.7,192.2 256.7,186.4 " /></g><g id="bbox:1.2_48.3_1.3_48.4" ><polygon points="260.5,186.4 264.4,186.4 264.4,192.2 260.5,192.2 260.5,186.4 " /></g><g id="bbox:1.3_48.3_1.4_48.4" ><polygon points="264.4,186.4 268.2,186.4 268.2,192.2 264.4,192.2 264.4,186.4 " /></g><g id="bbox:1.4_48.3_1.5_48.4" ><polygon points="268.2,186.4 272.1,186.4 272.1,192.2 268.2,192.2 268.2,186.4 " /></g><g id="bbox:1.5_48.3_1.6_48.4" ><polygon points="272.1,186.4 275.9,186.4 275.9,192.2 272.1,192.2 272.1,186.4 " /></g><g id="bbox:1.6_48.3_1.7_48.4" ><polygon points="275.9,186.4 279.8,186.4 279.8,192.2 275.9,192.2 275.9,186.4 " /></g><g id="bbox:1.7_48.3_1.8_48.4" ><polygon points="279.8,186.4 283.6,186.4 283.6,192.2 279.8,192.2 279.8,186.4 " /></g><g id="bbox:1.8_48.3_1.9_48.4" ><polygon points="283.6,186.4 287.5,186.4 287.5,192.2 283.6,192.2 283.6,186.4 " /></g><g id="bbox:1.9_48.3_2_48.4" ><polygon points="287.5,186.4 291.3,186.4 291.3,192.2 287.5,192.2 287.5,186.4 " /></g><g id="bbox:2_48.3_2.1_48.4" ><polygon points="291.3,186.4 295.2,186.4 295.2,192.2 291.3,192.2 291.3,186.4 " /></g><g id="bbox:2.1_48.3_2.2_48.4" ><polygon points="295.2,186.4 299.0,186.4 299.0,192.2 295.2,192.2 295.2,186.4 " /></g><g id="bbox:2.2_48.3_2.3_48.4" ><polygon points="299.0,186.4 302.8,186.4 302.8,192.2 299.0,192.2 299.0,186.4 " /></g><g id="bbox:2.3_48.3_2.4_48.4" ><polygon points="302.8,186.4 306.7,186.4 306.7,192.2 302.8,192.2 302.8,186.4 " /></g><g id="bbox:2.4_48.3_2.5_48.4" ><polygon points="306.7,186.4 310.5,186.4 310.5,192.2 306.7,192.2 306.7,186.4 " /></g><g id="bbox:2.5_48.3_2.6_48.4" ><polygon points="310.5,186.4 314.4,186.4 314.4,192.2 310.5,192.2 310.5,186.4 " /></g><g id="bbox:2.6_48.3_2.7_48.4" ><polygon points="314.4,186.4 318.2,186.4 318.2,192.2 314.4,192.2 314.4,186.4 " /></g><g id="bbox:2.7_48.3_2.8_48.4" ><polygon points="318.2,186.4 322.1,186.4 322.1,192.2 318.2,192.2 318.2,186.4 " /></g><g id="bbox:2.8_48.3_2.9_48.4" ><polygon points="322.1,186.4 325.9,186.4 325.9,192.2 322.1,192.2 322.1,186.4 " /></g><g id="bbox:2.9_48.3_3_48.4" ><polygon points="325.9,186.4 329.8,186.4 329.8,192.2 325.9,192.2 325.9,186.4 " /></g><g id="bbox:3_48.3_3.1_48.4" ><polygon points="329.8,186.4 333.6,186.4 333.6,192.2 329.8,192.2 329.8,186.4 " /></g><g id="bbox:3.1_48.3_3.2_48.4" ><polygon points="333.6,186.4 337.5,186.4 337.5,192.2 333.6,192.2 333.6,186.4 " /></g><g id="bbox:3.2_48.3_3.3_48.4" ><polygon points="337.5,186.4 341.3,186.4 341.3,192.2 337.5,192.2 337.5,186.4 " /></g><g id="bbox:3.3_48.3_3.4_48.4" ><polygon points="341.3,186.4 345.2,186.4 345.2,192.2 341.3,192.2 341.3,186.4 " /></g><g id="bbox:3.4_48.3_3.5_48.4" ><polygon points="345.2,186.4 349.0,186.4 349.0,192.2 345.2,192.2 345.2,186.4 " /></g><g id="bbox:3.5_48.3_3.6_48.4" ><polygon points="349.0,186.4 352.9,186.4 352.9,192.2 349.0,192.2 349.0,186.4 " /></g><g id="bbox:3.6_48.3_3.7_48.4" ><polygon points="352.9,186.4 356.7,186.4 356.7,192.2 352.9,192.2 352.9,186.4 " /></g><g id="bbox:3.7_48.3_3.8_48.4" ><polygon points="356.7,186.4 360.6,186.4 360.6,192.2 356.7,192.2 356.7,186.4 " /></g><g id="bbox:3.8_48.3_3.9_48.4" ><polygon points="360.6,186.4 364.4,186.4 364.4,192.2 360.6,192.2 360.6,186.4 " /></g><g id="bbox:3.9_48.3_4_48.4" ><polygon points="364.4,186.4 368.3,186.4 368.3,192.2 364.4,192.2 364.4,186.4 " /></g><g id="bbox:4_48.3_4.1_48.4" ><polygon points="368.3,186.4 372.1,186.4 372.1,192.2 368.3,192.2 368.3,186.4 " /></g><g id="bbox:4.1_48.3_4.2_48.4" ><polygon points="372.1,186.4 376.0,186.4 376.0,192.2 372.1,192.2 372.1,186.4 " /></g><g id="bbox:4.2_48.3_4.3_48.4" ><polygon points="376.0,186.4 379.8,186.4 379.8,192.2 376.0,192.2 376.0,186.4 " /></g><g id="bbox:4.3_48.3_4.4_48.4" ><polygon points="379.8,186.4 383.7,186.4 383.7,192.2 379.8,192.2 379.8,186.4 " /></g><g id="bbox:4.4_48.3_4.5_48.4" ><polygon points="383.7,186.4 387.5,186.4 387.5,192.2 383.7,192.2 383.7,186.4 " /></g><g id="bbox:4.5_48.3_4.6_48.4" ><polygon points="387.5,186.4 391.4,186.4 391.4,192.2 387.5,192.2 387.5,186.4 " /></g><g id="bbox:4.6_48.3_4.7_48.4" ><polygon points="391.4,186.4 395.2,186.4 395.2,192.2 391.4,192.2 391.4,186.4 " /></g><g id="bbox:4.7_48.3_4.8_48.4" ><polygon points="395.2,186.4 399.1,186.4 399.1,192.2 395.2,192.2 395.2,186.4 " /></g><g id="bbox:4.8_48.3_4.9_48.4" ><polygon points="399.1,186.4 402.9,186.4 402.9,192.2 399.1,192.2 399.1,186.4 " /></g><g id="bbox:4.9_48.3_5_48.4" ><polygon points="402.9,186.4 406.7,186.4 406.7,192.2 402.9,192.2 402.9,186.4 " /></g><g id="bbox:5_48.3_5.1_48.4" ><polygon points="406.7,186.4 410.6,186.4 410.6,192.2 406.7,192.2 406.7,186.4 " /></g><g id="bbox:5.1_48.3_5.2_48.4" ><polygon points="410.6,186.4 414.4,186.4 414.4,192.2 410.6,192.2 410.6,186.4 " /></g><g id="bbox:5.2_48.3_5.3_48.4" ><polygon points="414.4,186.4 418.3,186.4 418.3,192.2 414.4,192.2 414.4,186.4 " /></g><g id="bbox:5.3_48.3_5.4_48.4" ><polygon points="418.3,186.4 422.1,186.4 422.1,192.2 418.3,192.2 418.3,186.4 " /></g><g id="bbox:5.4_48.3_5.5_48.4" ><polygon points="422.1,186.4 426.0,186.4 426.0,192.2 422.1,192.2 422.1,186.4 " /></g><g id="bbox:5.5_48.3_5.6_48.4" ><polygon points="426.0,186.4 429.8,186.4 429.8,192.2 426.0,192.2 426.0,186.4 " /></g><g id="bbox:5.6_48.3_5.7_48.4" ><polygon points="429.8,186.4 433.7,186.4 433.7,192.2 429.8,192.2 429.8,186.4 " /></g><g id="bbox:5.7_48.3_5.8_48.4" ><polygon points="433.7,186.4 437.5,186.4 437.5,192.2 433.7,192.2 433.7,186.4 " /></g><g id="bbox:5.8_48.3_5.9_48.4" ><polygon points="437.5,186.4 441.4,186.4 441.4,192.2 437.5,192.2 437.5,186.4 " /></g><g id="bbox:5.9_48.3_6_48.4" ><polygon points="441.4,186.4 445.2,186.4 445.2,192.2 441.4,192.2 441.4,186.4 " /></g><g id="bbox:6_48.3_6.1_48.4" ><polygon points="445.2,186.4 449.1,186.4 449.1,192.2 445.2,192.2 445.2,186.4 " /></g><g id="bbox:6.1_48.3_6.2_48.4" ><polygon points="449.1,186.4 452.9,186.4 452.9,192.2 449.1,192.2 449.1,186.4 " /></g><g id="bbox:6.2_48.3_6.3_48.4" ><polygon points="452.9,186.4 456.8,186.4 456.8,192.2 452.9,192.2 452.9,186.4 " /></g><g id="bbox:6.3_48.3_6.4_48.4" ><polygon points="456.8,186.4 460.6,186.4 460.6,192.2 456.8,192.2 456.8,186.4 " /></g><g id="bbox:6.4_48.3_6.5_48.4" ><polygon points="460.6,186.4 464.5,186.4 464.5,192.2 460.6,192.2 460.6,186.4 " /></g><g id="bbox:6.5_48.3_6.6_48.4" ><polygon points="464.5,186.4 468.3,186.4 468.3,192.2 464.5,192.2 464.5,186.4 " /></g><g id="bbox:6.6_48.3_6.7_48.4" ><polygon points="468.3,186.4 472.2,186.4 472.2,192.2 468.3,192.2 468.3,186.4 " /></g><g id="bbox:6.7_48.3_6.8_48.4" ><polygon points="472.2,186.4 476.0,186.4 476.0,192.2 472.2,192.2 472.2,186.4 " /></g><g id="bbox:6.8_48.3_6.9_48.4" ><polygon points="476.0,186.4 479.9,186.4 479.9,192.2 476.0,192.2 476.0,186.4 " /></g><g id="bbox:6.9_48.3_7_48.4" ><polygon points="479.9,186.4 483.7,186.4 483.7,192.2 479.9,192.2 479.9,186.4 " /></g><g id="bbox:7_48.3_7.1_48.4" ><polygon points="483.7,186.4 487.6,186.4 487.6,192.2 483.7,192.2 483.7,186.4 " /></g><g id="bbox:7.1_48.3_7.2_48.4" ><polygon points="487.6,186.4 491.4,186.4 491.4,192.2 487.6,192.2 487.6,186.4 " /></g><g id="bbox:7.2_48.3_7.3_48.4" ><polygon points="491.4,186.4 495.3,186.4 495.3,192.2 491.4,192.2 491.4,186.4 " /></g><g id="bbox:7.3_48.3_7.4_48.4" ><polygon points="495.3,186.4 499.1,186.4 499.1,192.2 495.3,192.2 495.3,186.4 " /></g><g id="bbox:7.4_48.3_7.5_48.4" ><polygon points="499.1,186.4 503.0,186.4 503.0,192.2 499.1,192.2 499.1,186.4 " /></g><g id="bbox:7.5_48.3_7.6_48.4" ><polygon points="503.0,186.4 506.8,186.4 506.8,192.2 503.0,192.2 503.0,186.4 " /></g><g id="bbox:7.6_48.3_7.7_48.4" ><polygon points="506.8,186.4 510.6,186.4 510.6,192.2 506.8,192.2 506.8,186.4 " /></g><g id="bbox:7.7_48.3_7.8_48.4" ><polygon points="510.6,186.4 514.5,186.4 514.5,192.2 510.6,192.2 510.6,186.4 " /></g><g id="bbox:-4.7_48.2_-4.6_48.3" ><polygon points="33.5,192.2 37.3,192.2 37.3,197.9 33.5,197.9 33.5,192.2 " /></g><g id="bbox:-4.6_48.2_-4.5_48.3" ><polygon points="37.3,192.2 41.2,192.2 41.2,197.9 37.3,197.9 37.3,192.2 " /></g><g id="bbox:-4.5_48.2_-4.4_48.3" ><polygon points="41.2,192.2 45.0,192.2 45.0,197.9 41.2,197.9 41.2,192.2 " /></g><g id="bbox:-4.4_48.2_-4.3_48.3" ><polygon points="45.0,192.2 48.9,192.2 48.9,197.9 45.0,197.9 45.0,192.2 " /></g><g id="bbox:-4.3_48.2_-4.2_48.3" ><polygon points="48.9,192.2 52.7,192.2 52.7,197.9 48.9,197.9 48.9,192.2 " /></g><g id="bbox:-4.2_48.2_-4.1_48.3" ><polygon points="52.7,192.2 56.6,192.2 56.6,197.9 52.7,197.9 52.7,192.2 " /></g><g id="bbox:-4.1_48.2_-4_48.3" ><polygon points="56.6,192.2 60.4,192.2 60.4,197.9 56.6,197.9 56.6,192.2 " /></g><g id="bbox:-4_48.2_-3.9_48.3" ><polygon points="60.4,192.2 64.3,192.2 64.3,197.9 60.4,197.9 60.4,192.2 " /></g><g id="bbox:-3.9_48.2_-3.8_48.3" ><polygon points="64.3,192.2 68.1,192.2 68.1,197.9 64.3,197.9 64.3,192.2 " /></g><g id="bbox:-3.8_48.2_-3.7_48.3" ><polygon points="68.1,192.2 72.0,192.2 72.0,197.9 68.1,197.9 68.1,192.2 " /></g><g id="bbox:-3.7_48.2_-3.6_48.3" ><polygon points="72.0,192.2 75.8,192.2 75.8,197.9 72.0,197.9 72.0,192.2 " /></g><g id="bbox:-3.6_48.2_-3.5_48.3" ><polygon points="75.8,192.2 79.7,192.2 79.7,197.9 75.8,197.9 75.8,192.2 " /></g><g id="bbox:-3.5_48.2_-3.4_48.3" ><polygon points="79.7,192.2 83.5,192.2 83.5,197.9 79.7,197.9 79.7,192.2 " /></g><g id="bbox:-3.4_48.2_-3.3_48.3" ><polygon points="83.5,192.2 87.4,192.2 87.4,197.9 83.5,197.9 83.5,192.2 " /></g><g id="bbox:-3.3_48.2_-3.2_48.3" ><polygon points="87.4,192.2 91.2,192.2 91.2,197.9 87.4,197.9 87.4,192.2 " /></g><g id="bbox:-3.2_48.2_-3.1_48.3" ><polygon points="91.2,192.2 95.0,192.2 95.0,197.9 91.2,197.9 91.2,192.2 " /></g><g id="bbox:-3.1_48.2_-3_48.3" ><polygon points="95.0,192.2 98.9,192.2 98.9,197.9 95.0,197.9 95.0,192.2 " /></g><g id="bbox:-3_48.2_-2.9_48.3" ><polygon points="98.9,192.2 102.7,192.2 102.7,197.9 98.9,197.9 98.9,192.2 " /></g><g id="bbox:-2.9_48.2_-2.8_48.3" ><polygon points="102.7,192.2 106.6,192.2 106.6,197.9 102.7,197.9 102.7,192.2 " /></g><g id="bbox:-2.8_48.2_-2.7_48.3" ><polygon points="106.6,192.2 110.4,192.2 110.4,197.9 106.6,197.9 106.6,192.2 " /></g><g id="bbox:-2.7_48.2_-2.6_48.3" ><polygon points="110.4,192.2 114.3,192.2 114.3,197.9 110.4,197.9 110.4,192.2 " /></g><g id="bbox:-2.6_48.2_-2.5_48.3" ><polygon points="114.3,192.2 118.1,192.2 118.1,197.9 114.3,197.9 114.3,192.2 " /></g><g id="bbox:-2.5_48.2_-2.4_48.3" ><polygon points="118.1,192.2 122.0,192.2 122.0,197.9 118.1,197.9 118.1,192.2 " /></g><g id="bbox:-2.4_48.2_-2.3_48.3" ><polygon points="122.0,192.2 125.8,192.2 125.8,197.9 122.0,197.9 122.0,192.2 " /></g><g id="bbox:-2.3_48.2_-2.2_48.3" ><polygon points="125.8,192.2 129.7,192.2 129.7,197.9 125.8,197.9 125.8,192.2 " /></g><g id="bbox:-2.2_48.2_-2.1_48.3" ><polygon points="129.7,192.2 133.5,192.2 133.5,197.9 129.7,197.9 129.7,192.2 " /></g><g id="bbox:-2.1_48.2_-2_48.3" ><polygon points="133.5,192.2 137.4,192.2 137.4,197.9 133.5,197.9 133.5,192.2 " /></g><g id="bbox:-2_48.2_-1.9_48.3" ><polygon points="137.4,192.2 141.2,192.2 141.2,197.9 137.4,197.9 137.4,192.2 " /></g><g id="bbox:-1.9_48.2_-1.8_48.3" ><polygon points="141.2,192.2 145.1,192.2 145.1,197.9 141.2,197.9 141.2,192.2 " /></g><g id="bbox:-1.8_48.2_-1.7_48.3" ><polygon points="145.1,192.2 148.9,192.2 148.9,197.9 145.1,197.9 145.1,192.2 " /></g><g id="bbox:-1.7_48.2_-1.6_48.3" ><polygon points="148.9,192.2 152.8,192.2 152.8,197.9 148.9,197.9 148.9,192.2 " /></g><g id="bbox:-1.6_48.2_-1.5_48.3" ><polygon points="152.8,192.2 156.6,192.2 156.6,197.9 152.8,197.9 152.8,192.2 " /></g><g id="bbox:-1.5_48.2_-1.4_48.3" ><polygon points="156.6,192.2 160.5,192.2 160.5,197.9 156.6,197.9 156.6,192.2 " /></g><g id="bbox:-1.4_48.2_-1.3_48.3" ><polygon points="160.5,192.2 164.3,192.2 164.3,197.9 160.5,197.9 160.5,192.2 " /></g><g id="bbox:-1.3_48.2_-1.2_48.3" ><polygon points="164.3,192.2 168.2,192.2 168.2,197.9 164.3,197.9 164.3,192.2 " /></g><g id="bbox:-1.2_48.2_-1.1_48.3" ><polygon points="168.2,192.2 172.0,192.2 172.0,197.9 168.2,197.9 168.2,192.2 " /></g><g id="bbox:-1.1_48.2_-1_48.3" ><polygon points="172.0,192.2 175.9,192.2 175.9,197.9 172.0,197.9 172.0,192.2 " /></g><g id="bbox:-1_48.2_-0.9_48.3" ><polygon points="175.9,192.2 179.7,192.2 179.7,197.9 175.9,197.9 175.9,192.2 " /></g><g id="bbox:-0.9_48.2_-0.8_48.3" ><polygon points="179.7,192.2 183.6,192.2 183.6,197.9 179.7,197.9 179.7,192.2 " /></g><g id="bbox:-0.8_48.2_-0.7_48.3" ><polygon points="183.6,192.2 187.4,192.2 187.4,197.9 183.6,197.9 183.6,192.2 " /></g><g id="bbox:-0.7_48.2_-0.6_48.3" ><polygon points="187.4,192.2 191.3,192.2 191.3,197.9 187.4,197.9 187.4,192.2 " /></g><g id="bbox:-0.6_48.2_-0.5_48.3" ><polygon points="191.3,192.2 195.1,192.2 195.1,197.9 191.3,197.9 191.3,192.2 " /></g><g id="bbox:-0.5_48.2_-0.4_48.3" ><polygon points="195.1,192.2 198.9,192.2 198.9,197.9 195.1,197.9 195.1,192.2 " /></g><g id="bbox:-0.4_48.2_-0.3_48.3" ><polygon points="198.9,192.2 202.8,192.2 202.8,197.9 198.9,197.9 198.9,192.2 " /></g><g id="bbox:-0.3_48.2_-0.2_48.3" ><polygon points="202.8,192.2 206.6,192.2 206.6,197.9 202.8,197.9 202.8,192.2 " /></g><g id="bbox:-0.2_48.2_-0.1_48.3" ><polygon points="206.6,192.2 210.5,192.2 210.5,197.9 206.6,197.9 206.6,192.2 " /></g><g id="bbox:-0.1_48.2_0_48.3" ><polygon points="210.5,192.2 214.3,192.2 214.3,197.9 210.5,197.9 210.5,192.2 " /></g><g id="bbox:0_48.2_0.1_48.3" ><polygon points="214.3,192.2 218.2,192.2 218.2,197.9 214.3,197.9 214.3,192.2 " /></g><g id="bbox:0.1_48.2_0.2_48.3" ><polygon points="218.2,192.2 222.0,192.2 222.0,197.9 218.2,197.9 218.2,192.2 " /></g><g id="bbox:0.2_48.2_0.3_48.3" ><polygon points="222.0,192.2 225.9,192.2 225.9,197.9 222.0,197.9 222.0,192.2 " /></g><g id="bbox:0.3_48.2_0.4_48.3" ><polygon points="225.9,192.2 229.7,192.2 229.7,197.9 225.9,197.9 225.9,192.2 " /></g><g id="bbox:0.4_48.2_0.5_48.3" ><polygon points="229.7,192.2 233.6,192.2 233.6,197.9 229.7,197.9 229.7,192.2 " /></g><g id="bbox:0.5_48.2_0.6_48.3" ><polygon points="233.6,192.2 237.4,192.2 237.4,197.9 233.6,197.9 233.6,192.2 " /></g><g id="bbox:0.6_48.2_0.7_48.3" ><polygon points="237.4,192.2 241.3,192.2 241.3,197.9 237.4,197.9 237.4,192.2 " /></g><g id="bbox:0.7_48.2_0.8_48.3" ><polygon points="241.3,192.2 245.1,192.2 245.1,197.9 241.3,197.9 241.3,192.2 " /></g><g id="bbox:0.8_48.2_0.9_48.3" ><polygon points="245.1,192.2 249.0,192.2 249.0,197.9 245.1,197.9 245.1,192.2 " /></g><g id="bbox:0.9_48.2_1_48.3" ><polygon points="249.0,192.2 252.8,192.2 252.8,197.9 249.0,197.9 249.0,192.2 " /></g><g id="bbox:1_48.2_1.1_48.3" ><polygon points="252.8,192.2 256.7,192.2 256.7,197.9 252.8,197.9 252.8,192.2 " /></g><g id="bbox:1.1_48.2_1.2_48.3" ><polygon points="256.7,192.2 260.5,192.2 260.5,197.9 256.7,197.9 256.7,192.2 " /></g><g id="bbox:1.2_48.2_1.3_48.3" ><polygon points="260.5,192.2 264.4,192.2 264.4,197.9 260.5,197.9 260.5,192.2 " /></g><g id="bbox:1.3_48.2_1.4_48.3" ><polygon points="264.4,192.2 268.2,192.2 268.2,197.9 264.4,197.9 264.4,192.2 " /></g><g id="bbox:1.4_48.2_1.5_48.3" ><polygon points="268.2,192.2 272.1,192.2 272.1,197.9 268.2,197.9 268.2,192.2 " /></g><g id="bbox:1.5_48.2_1.6_48.3" ><polygon points="272.1,192.2 275.9,192.2 275.9,197.9 272.1,197.9 272.1,192.2 " /></g><g id="bbox:1.6_48.2_1.7_48.3" ><polygon points="275.9,192.2 279.8,192.2 279.8,197.9 275.9,197.9 275.9,192.2 " /></g><g id="bbox:1.7_48.2_1.8_48.3" ><polygon points="279.8,192.2 283.6,192.2 283.6,197.9 279.8,197.9 279.8,192.2 " /></g><g id="bbox:1.8_48.2_1.9_48.3" ><polygon points="283.6,192.2 287.5,192.2 287.5,197.9 283.6,197.9 283.6,192.2 " /></g><g id="bbox:1.9_48.2_2_48.3" ><polygon points="287.5,192.2 291.3,192.2 291.3,197.9 287.5,197.9 287.5,192.2 " /></g><g id="bbox:2_48.2_2.1_48.3" ><polygon points="291.3,192.2 295.2,192.2 295.2,197.9 291.3,197.9 291.3,192.2 " /></g><g id="bbox:2.1_48.2_2.2_48.3" ><polygon points="295.2,192.2 299.0,192.2 299.0,197.9 295.2,197.9 295.2,192.2 " /></g><g id="bbox:2.2_48.2_2.3_48.3" ><polygon points="299.0,192.2 302.8,192.2 302.8,197.9 299.0,197.9 299.0,192.2 " /></g><g id="bbox:2.3_48.2_2.4_48.3" ><polygon points="302.8,192.2 306.7,192.2 306.7,197.9 302.8,197.9 302.8,192.2 " /></g><g id="bbox:2.4_48.2_2.5_48.3" ><polygon points="306.7,192.2 310.5,192.2 310.5,197.9 306.7,197.9 306.7,192.2 " /></g><g id="bbox:2.5_48.2_2.6_48.3" ><polygon points="310.5,192.2 314.4,192.2 314.4,197.9 310.5,197.9 310.5,192.2 " /></g><g id="bbox:2.6_48.2_2.7_48.3" ><polygon points="314.4,192.2 318.2,192.2 318.2,197.9 314.4,197.9 314.4,192.2 " /></g><g id="bbox:2.7_48.2_2.8_48.3" ><polygon points="318.2,192.2 322.1,192.2 322.1,197.9 318.2,197.9 318.2,192.2 " /></g><g id="bbox:2.8_48.2_2.9_48.3" ><polygon points="322.1,192.2 325.9,192.2 325.9,197.9 322.1,197.9 322.1,192.2 " /></g><g id="bbox:2.9_48.2_3_48.3" ><polygon points="325.9,192.2 329.8,192.2 329.8,197.9 325.9,197.9 325.9,192.2 " /></g><g id="bbox:3_48.2_3.1_48.3" ><polygon points="329.8,192.2 333.6,192.2 333.6,197.9 329.8,197.9 329.8,192.2 " /></g><g id="bbox:3.1_48.2_3.2_48.3" ><polygon points="333.6,192.2 337.5,192.2 337.5,197.9 333.6,197.9 333.6,192.2 " /></g><g id="bbox:3.2_48.2_3.3_48.3" ><polygon points="337.5,192.2 341.3,192.2 341.3,197.9 337.5,197.9 337.5,192.2 " /></g><g id="bbox:3.3_48.2_3.4_48.3" ><polygon points="341.3,192.2 345.2,192.2 345.2,197.9 341.3,197.9 341.3,192.2 " /></g><g id="bbox:3.4_48.2_3.5_48.3" ><polygon points="345.2,192.2 349.0,192.2 349.0,197.9 345.2,197.9 345.2,192.2 " /></g><g id="bbox:3.5_48.2_3.6_48.3" ><polygon points="349.0,192.2 352.9,192.2 352.9,197.9 349.0,197.9 349.0,192.2 " /></g><g id="bbox:3.6_48.2_3.7_48.3" ><polygon points="352.9,192.2 356.7,192.2 356.7,197.9 352.9,197.9 352.9,192.2 " /></g><g id="bbox:3.7_48.2_3.8_48.3" ><polygon points="356.7,192.2 360.6,192.2 360.6,197.9 356.7,197.9 356.7,192.2 " /></g><g id="bbox:3.8_48.2_3.9_48.3" ><polygon points="360.6,192.2 364.4,192.2 364.4,197.9 360.6,197.9 360.6,192.2 " /></g><g id="bbox:3.9_48.2_4_48.3" ><polygon points="364.4,192.2 368.3,192.2 368.3,197.9 364.4,197.9 364.4,192.2 " /></g><g id="bbox:4_48.2_4.1_48.3" ><polygon points="368.3,192.2 372.1,192.2 372.1,197.9 368.3,197.9 368.3,192.2 " /></g><g id="bbox:4.1_48.2_4.2_48.3" ><polygon points="372.1,192.2 376.0,192.2 376.0,197.9 372.1,197.9 372.1,192.2 " /></g><g id="bbox:4.2_48.2_4.3_48.3" ><polygon points="376.0,192.2 379.8,192.2 379.8,197.9 376.0,197.9 376.0,192.2 " /></g><g id="bbox:4.3_48.2_4.4_48.3" ><polygon points="379.8,192.2 383.7,192.2 383.7,197.9 379.8,197.9 379.8,192.2 " /></g><g id="bbox:4.4_48.2_4.5_48.3" ><polygon points="383.7,192.2 387.5,192.2 387.5,197.9 383.7,197.9 383.7,192.2 " /></g><g id="bbox:4.5_48.2_4.6_48.3" ><polygon points="387.5,192.2 391.4,192.2 391.4,197.9 387.5,197.9 387.5,192.2 " /></g><g id="bbox:4.6_48.2_4.7_48.3" ><polygon points="391.4,192.2 395.2,192.2 395.2,197.9 391.4,197.9 391.4,192.2 " /></g><g id="bbox:4.7_48.2_4.8_48.3" ><polygon points="395.2,192.2 399.1,192.2 399.1,197.9 395.2,197.9 395.2,192.2 " /></g><g id="bbox:4.8_48.2_4.9_48.3" ><polygon points="399.1,192.2 402.9,192.2 402.9,197.9 399.1,197.9 399.1,192.2 " /></g><g id="bbox:4.9_48.2_5_48.3" ><polygon points="402.9,192.2 406.7,192.2 406.7,197.9 402.9,197.9 402.9,192.2 " /></g><g id="bbox:5_48.2_5.1_48.3" ><polygon points="406.7,192.2 410.6,192.2 410.6,197.9 406.7,197.9 406.7,192.2 " /></g><g id="bbox:5.1_48.2_5.2_48.3" ><polygon points="410.6,192.2 414.4,192.2 414.4,197.9 410.6,197.9 410.6,192.2 " /></g><g id="bbox:5.2_48.2_5.3_48.3" ><polygon points="414.4,192.2 418.3,192.2 418.3,197.9 414.4,197.9 414.4,192.2 " /></g><g id="bbox:5.3_48.2_5.4_48.3" ><polygon points="418.3,192.2 422.1,192.2 422.1,197.9 418.3,197.9 418.3,192.2 " /></g><g id="bbox:5.4_48.2_5.5_48.3" ><polygon points="422.1,192.2 426.0,192.2 426.0,197.9 422.1,197.9 422.1,192.2 " /></g><g id="bbox:5.5_48.2_5.6_48.3" ><polygon points="426.0,192.2 429.8,192.2 429.8,197.9 426.0,197.9 426.0,192.2 " /></g><g id="bbox:5.6_48.2_5.7_48.3" ><polygon points="429.8,192.2 433.7,192.2 433.7,197.9 429.8,197.9 429.8,192.2 " /></g><g id="bbox:5.7_48.2_5.8_48.3" ><polygon points="433.7,192.2 437.5,192.2 437.5,197.9 433.7,197.9 433.7,192.2 " /></g><g id="bbox:5.8_48.2_5.9_48.3" ><polygon points="437.5,192.2 441.4,192.2 441.4,197.9 437.5,197.9 437.5,192.2 " /></g><g id="bbox:5.9_48.2_6_48.3" ><polygon points="441.4,192.2 445.2,192.2 445.2,197.9 441.4,197.9 441.4,192.2 " /></g><g id="bbox:6_48.2_6.1_48.3" ><polygon points="445.2,192.2 449.1,192.2 449.1,197.9 445.2,197.9 445.2,192.2 " /></g><g id="bbox:6.1_48.2_6.2_48.3" ><polygon points="449.1,192.2 452.9,192.2 452.9,197.9 449.1,197.9 449.1,192.2 " /></g><g id="bbox:6.2_48.2_6.3_48.3" ><polygon points="452.9,192.2 456.8,192.2 456.8,197.9 452.9,197.9 452.9,192.2 " /></g><g id="bbox:6.3_48.2_6.4_48.3" ><polygon points="456.8,192.2 460.6,192.2 460.6,197.9 456.8,197.9 456.8,192.2 " /></g><g id="bbox:6.4_48.2_6.5_48.3" ><polygon points="460.6,192.2 464.5,192.2 464.5,197.9 460.6,197.9 460.6,192.2 " /></g><g id="bbox:6.5_48.2_6.6_48.3" ><polygon points="464.5,192.2 468.3,192.2 468.3,197.9 464.5,197.9 464.5,192.2 " /></g><g id="bbox:6.6_48.2_6.7_48.3" ><polygon points="468.3,192.2 472.2,192.2 472.2,197.9 468.3,197.9 468.3,192.2 " /></g><g id="bbox:6.7_48.2_6.8_48.3" ><polygon points="472.2,192.2 476.0,192.2 476.0,197.9 472.2,197.9 472.2,192.2 " /></g><g id="bbox:6.8_48.2_6.9_48.3" ><polygon points="476.0,192.2 479.9,192.2 479.9,197.9 476.0,197.9 476.0,192.2 " /></g><g id="bbox:6.9_48.2_7_48.3" ><polygon points="479.9,192.2 483.7,192.2 483.7,197.9 479.9,197.9 479.9,192.2 " /></g><g id="bbox:7_48.2_7.1_48.3" ><polygon points="483.7,192.2 487.6,192.2 487.6,197.9 483.7,197.9 483.7,192.2 " /></g><g id="bbox:7.1_48.2_7.2_48.3" ><polygon points="487.6,192.2 491.4,192.2 491.4,197.9 487.6,197.9 487.6,192.2 " /></g><g id="bbox:7.2_48.2_7.3_48.3" ><polygon points="491.4,192.2 495.3,192.2 495.3,197.9 491.4,197.9 491.4,192.2 " /></g><g id="bbox:7.3_48.2_7.4_48.3" ><polygon points="495.3,192.2 499.1,192.2 499.1,197.9 495.3,197.9 495.3,192.2 " /></g><g id="bbox:7.4_48.2_7.5_48.3" ><polygon points="499.1,192.2 503.0,192.2 503.0,197.9 499.1,197.9 499.1,192.2 " /></g><g id="bbox:7.5_48.2_7.6_48.3" ><polygon points="503.0,192.2 506.8,192.2 506.8,197.9 503.0,197.9 503.0,192.2 " /></g><g id="bbox:7.6_48.2_7.7_48.3" ><polygon points="506.8,192.2 510.6,192.2 510.6,197.9 506.8,197.9 506.8,192.2 " /></g><g id="bbox:-4.6_48.1_-4.5_48.2" ><polygon points="37.3,197.9 41.2,197.9 41.2,203.7 37.3,203.7 37.3,197.9 " /></g><g id="bbox:-4.5_48.1_-4.4_48.2" ><polygon points="41.2,197.9 45.0,197.9 45.0,203.7 41.2,203.7 41.2,197.9 " /></g><g id="bbox:-4.4_48.1_-4.3_48.2" ><polygon points="45.0,197.9 48.9,197.9 48.9,203.7 45.0,203.7 45.0,197.9 " /></g><g id="bbox:-4.3_48.1_-4.2_48.2" ><polygon points="48.9,197.9 52.7,197.9 52.7,203.7 48.9,203.7 48.9,197.9 " /></g><g id="bbox:-4.2_48.1_-4.1_48.2" ><polygon points="52.7,197.9 56.6,197.9 56.6,203.7 52.7,203.7 52.7,197.9 " /></g><g id="bbox:-4.1_48.1_-4_48.2" ><polygon points="56.6,197.9 60.4,197.9 60.4,203.7 56.6,203.7 56.6,197.9 " /></g><g id="bbox:-4_48.1_-3.9_48.2" ><polygon points="60.4,197.9 64.3,197.9 64.3,203.7 60.4,203.7 60.4,197.9 " /></g><g id="bbox:-3.9_48.1_-3.8_48.2" ><polygon points="64.3,197.9 68.1,197.9 68.1,203.7 64.3,203.7 64.3,197.9 " /></g><g id="bbox:-3.8_48.1_-3.7_48.2" ><polygon points="68.1,197.9 72.0,197.9 72.0,203.7 68.1,203.7 68.1,197.9 " /></g><g id="bbox:-3.7_48.1_-3.6_48.2" ><polygon points="72.0,197.9 75.8,197.9 75.8,203.7 72.0,203.7 72.0,197.9 " /></g><g id="bbox:-3.6_48.1_-3.5_48.2" ><polygon points="75.8,197.9 79.7,197.9 79.7,203.7 75.8,203.7 75.8,197.9 " /></g><g id="bbox:-3.5_48.1_-3.4_48.2" ><polygon points="79.7,197.9 83.5,197.9 83.5,203.7 79.7,203.7 79.7,197.9 " /></g><g id="bbox:-3.4_48.1_-3.3_48.2" ><polygon points="83.5,197.9 87.4,197.9 87.4,203.7 83.5,203.7 83.5,197.9 " /></g><g id="bbox:-3.3_48.1_-3.2_48.2" ><polygon points="87.4,197.9 91.2,197.9 91.2,203.7 87.4,203.7 87.4,197.9 " /></g><g id="bbox:-3.2_48.1_-3.1_48.2" ><polygon points="91.2,197.9 95.0,197.9 95.0,203.7 91.2,203.7 91.2,197.9 " /></g><g id="bbox:-3.1_48.1_-3_48.2" ><polygon points="95.0,197.9 98.9,197.9 98.9,203.7 95.0,203.7 95.0,197.9 " /></g><g id="bbox:-3_48.1_-2.9_48.2" ><polygon points="98.9,197.9 102.7,197.9 102.7,203.7 98.9,203.7 98.9,197.9 " /></g><g id="bbox:-2.9_48.1_-2.8_48.2" ><polygon points="102.7,197.9 106.6,197.9 106.6,203.7 102.7,203.7 102.7,197.9 " /></g><g id="bbox:-2.8_48.1_-2.7_48.2" ><polygon points="106.6,197.9 110.4,197.9 110.4,203.7 106.6,203.7 106.6,197.9 " /></g><g id="bbox:-2.7_48.1_-2.6_48.2" ><polygon points="110.4,197.9 114.3,197.9 114.3,203.7 110.4,203.7 110.4,197.9 " /></g><g id="bbox:-2.6_48.1_-2.5_48.2" ><polygon points="114.3,197.9 118.1,197.9 118.1,203.7 114.3,203.7 114.3,197.9 " /></g><g id="bbox:-2.5_48.1_-2.4_48.2" ><polygon points="118.1,197.9 122.0,197.9 122.0,203.7 118.1,203.7 118.1,197.9 " /></g><g id="bbox:-2.4_48.1_-2.3_48.2" ><polygon points="122.0,197.9 125.8,197.9 125.8,203.7 122.0,203.7 122.0,197.9 " /></g><g id="bbox:-2.3_48.1_-2.2_48.2" ><polygon points="125.8,197.9 129.7,197.9 129.7,203.7 125.8,203.7 125.8,197.9 " /></g><g id="bbox:-2.2_48.1_-2.1_48.2" ><polygon points="129.7,197.9 133.5,197.9 133.5,203.7 129.7,203.7 129.7,197.9 " /></g><g id="bbox:-2.1_48.1_-2_48.2" ><polygon points="133.5,197.9 137.4,197.9 137.4,203.7 133.5,203.7 133.5,197.9 " /></g><g id="bbox:-2_48.1_-1.9_48.2" ><polygon points="137.4,197.9 141.2,197.9 141.2,203.7 137.4,203.7 137.4,197.9 " /></g><g id="bbox:-1.9_48.1_-1.8_48.2" ><polygon points="141.2,197.9 145.1,197.9 145.1,203.7 141.2,203.7 141.2,197.9 " /></g><g id="bbox:-1.8_48.1_-1.7_48.2" ><polygon points="145.1,197.9 148.9,197.9 148.9,203.7 145.1,203.7 145.1,197.9 " /></g><g id="bbox:-1.7_48.1_-1.6_48.2" ><polygon points="148.9,197.9 152.8,197.9 152.8,203.7 148.9,203.7 148.9,197.9 " /></g><g id="bbox:-1.6_48.1_-1.5_48.2" ><polygon points="152.8,197.9 156.6,197.9 156.6,203.7 152.8,203.7 152.8,197.9 " /></g><g id="bbox:-1.5_48.1_-1.4_48.2" ><polygon points="156.6,197.9 160.5,197.9 160.5,203.7 156.6,203.7 156.6,197.9 " /></g><g id="bbox:-1.4_48.1_-1.3_48.2" ><polygon points="160.5,197.9 164.3,197.9 164.3,203.7 160.5,203.7 160.5,197.9 " /></g><g id="bbox:-1.3_48.1_-1.2_48.2" ><polygon points="164.3,197.9 168.2,197.9 168.2,203.7 164.3,203.7 164.3,197.9 " /></g><g id="bbox:-1.2_48.1_-1.1_48.2" ><polygon points="168.2,197.9 172.0,197.9 172.0,203.7 168.2,203.7 168.2,197.9 " /></g><g id="bbox:-1.1_48.1_-1_48.2" ><polygon points="172.0,197.9 175.9,197.9 175.9,203.7 172.0,203.7 172.0,197.9 " /></g><g id="bbox:-1_48.1_-0.9_48.2" ><polygon points="175.9,197.9 179.7,197.9 179.7,203.7 175.9,203.7 175.9,197.9 " /></g><g id="bbox:-0.9_48.1_-0.8_48.2" ><polygon points="179.7,197.9 183.6,197.9 183.6,203.7 179.7,203.7 179.7,197.9 " /></g><g id="bbox:-0.8_48.1_-0.7_48.2" ><polygon points="183.6,197.9 187.4,197.9 187.4,203.7 183.6,203.7 183.6,197.9 " /></g><g id="bbox:-0.7_48.1_-0.6_48.2" ><polygon points="187.4,197.9 191.3,197.9 191.3,203.7 187.4,203.7 187.4,197.9 " /></g><g id="bbox:-0.6_48.1_-0.5_48.2" ><polygon points="191.3,197.9 195.1,197.9 195.1,203.7 191.3,203.7 191.3,197.9 " /></g><g id="bbox:-0.5_48.1_-0.4_48.2" ><polygon points="195.1,197.9 198.9,197.9 198.9,203.7 195.1,203.7 195.1,197.9 " /></g><g id="bbox:-0.4_48.1_-0.3_48.2" ><polygon points="198.9,197.9 202.8,197.9 202.8,203.7 198.9,203.7 198.9,197.9 " /></g><g id="bbox:-0.3_48.1_-0.2_48.2" ><polygon points="202.8,197.9 206.6,197.9 206.6,203.7 202.8,203.7 202.8,197.9 " /></g><g id="bbox:-0.2_48.1_-0.1_48.2" ><polygon points="206.6,197.9 210.5,197.9 210.5,203.7 206.6,203.7 206.6,197.9 " /></g><g id="bbox:-0.1_48.1_0_48.2" ><polygon points="210.5,197.9 214.3,197.9 214.3,203.7 210.5,203.7 210.5,197.9 " /></g><g id="bbox:0_48.1_0.1_48.2" ><polygon points="214.3,197.9 218.2,197.9 218.2,203.7 214.3,203.7 214.3,197.9 " /></g><g id="bbox:0.1_48.1_0.2_48.2" ><polygon points="218.2,197.9 222.0,197.9 222.0,203.7 218.2,203.7 218.2,197.9 " /></g><g id="bbox:0.2_48.1_0.3_48.2" ><polygon points="222.0,197.9 225.9,197.9 225.9,203.7 222.0,203.7 222.0,197.9 " /></g><g id="bbox:0.3_48.1_0.4_48.2" ><polygon points="225.9,197.9 229.7,197.9 229.7,203.7 225.9,203.7 225.9,197.9 " /></g><g id="bbox:0.4_48.1_0.5_48.2" ><polygon points="229.7,197.9 233.6,197.9 233.6,203.7 229.7,203.7 229.7,197.9 " /></g><g id="bbox:0.5_48.1_0.6_48.2" ><polygon points="233.6,197.9 237.4,197.9 237.4,203.7 233.6,203.7 233.6,197.9 " /></g><g id="bbox:0.6_48.1_0.7_48.2" ><polygon points="237.4,197.9 241.3,197.9 241.3,203.7 237.4,203.7 237.4,197.9 " /></g><g id="bbox:0.7_48.1_0.8_48.2" ><polygon points="241.3,197.9 245.1,197.9 245.1,203.7 241.3,203.7 241.3,197.9 " /></g><g id="bbox:0.8_48.1_0.9_48.2" ><polygon points="245.1,197.9 249.0,197.9 249.0,203.7 245.1,203.7 245.1,197.9 " /></g><g id="bbox:0.9_48.1_1_48.2" ><polygon points="249.0,197.9 252.8,197.9 252.8,203.7 249.0,203.7 249.0,197.9 " /></g><g id="bbox:1_48.1_1.1_48.2" ><polygon points="252.8,197.9 256.7,197.9 256.7,203.7 252.8,203.7 252.8,197.9 " /></g><g id="bbox:1.1_48.1_1.2_48.2" ><polygon points="256.7,197.9 260.5,197.9 260.5,203.7 256.7,203.7 256.7,197.9 " /></g><g id="bbox:1.2_48.1_1.3_48.2" ><polygon points="260.5,197.9 264.4,197.9 264.4,203.7 260.5,203.7 260.5,197.9 " /></g><g id="bbox:1.3_48.1_1.4_48.2" ><polygon points="264.4,197.9 268.2,197.9 268.2,203.7 264.4,203.7 264.4,197.9 " /></g><g id="bbox:1.4_48.1_1.5_48.2" ><polygon points="268.2,197.9 272.1,197.9 272.1,203.7 268.2,203.7 268.2,197.9 " /></g><g id="bbox:1.5_48.1_1.6_48.2" ><polygon points="272.1,197.9 275.9,197.9 275.9,203.7 272.1,203.7 272.1,197.9 " /></g><g id="bbox:1.6_48.1_1.7_48.2" ><polygon points="275.9,197.9 279.8,197.9 279.8,203.7 275.9,203.7 275.9,197.9 " /></g><g id="bbox:1.7_48.1_1.8_48.2" ><polygon points="279.8,197.9 283.6,197.9 283.6,203.7 279.8,203.7 279.8,197.9 " /></g><g id="bbox:1.8_48.1_1.9_48.2" ><polygon points="283.6,197.9 287.5,197.9 287.5,203.7 283.6,203.7 283.6,197.9 " /></g><g id="bbox:1.9_48.1_2_48.2" ><polygon points="287.5,197.9 291.3,197.9 291.3,203.7 287.5,203.7 287.5,197.9 " /></g><g id="bbox:2_48.1_2.1_48.2" ><polygon points="291.3,197.9 295.2,197.9 295.2,203.7 291.3,203.7 291.3,197.9 " /></g><g id="bbox:2.1_48.1_2.2_48.2" ><polygon points="295.2,197.9 299.0,197.9 299.0,203.7 295.2,203.7 295.2,197.9 " /></g><g id="bbox:2.2_48.1_2.3_48.2" ><polygon points="299.0,197.9 302.8,197.9 302.8,203.7 299.0,203.7 299.0,197.9 " /></g><g id="bbox:2.3_48.1_2.4_48.2" ><polygon points="302.8,197.9 306.7,197.9 306.7,203.7 302.8,203.7 302.8,197.9 " /></g><g id="bbox:2.4_48.1_2.5_48.2" ><polygon points="306.7,197.9 310.5,197.9 310.5,203.7 306.7,203.7 306.7,197.9 " /></g><g id="bbox:2.5_48.1_2.6_48.2" ><polygon points="310.5,197.9 314.4,197.9 314.4,203.7 310.5,203.7 310.5,197.9 " /></g><g id="bbox:2.6_48.1_2.7_48.2" ><polygon points="314.4,197.9 318.2,197.9 318.2,203.7 314.4,203.7 314.4,197.9 " /></g><g id="bbox:2.7_48.1_2.8_48.2" ><polygon points="318.2,197.9 322.1,197.9 322.1,203.7 318.2,203.7 318.2,197.9 " /></g><g id="bbox:2.8_48.1_2.9_48.2" ><polygon points="322.1,197.9 325.9,197.9 325.9,203.7 322.1,203.7 322.1,197.9 " /></g><g id="bbox:2.9_48.1_3_48.2" ><polygon points="325.9,197.9 329.8,197.9 329.8,203.7 325.9,203.7 325.9,197.9 " /></g><g id="bbox:3_48.1_3.1_48.2" ><polygon points="329.8,197.9 333.6,197.9 333.6,203.7 329.8,203.7 329.8,197.9 " /></g><g id="bbox:3.1_48.1_3.2_48.2" ><polygon points="333.6,197.9 337.5,197.9 337.5,203.7 333.6,203.7 333.6,197.9 " /></g><g id="bbox:3.2_48.1_3.3_48.2" ><polygon points="337.5,197.9 341.3,197.9 341.3,203.7 337.5,203.7 337.5,197.9 " /></g><g id="bbox:3.3_48.1_3.4_48.2" ><polygon points="341.3,197.9 345.2,197.9 345.2,203.7 341.3,203.7 341.3,197.9 " /></g><g id="bbox:3.4_48.1_3.5_48.2" ><polygon points="345.2,197.9 349.0,197.9 349.0,203.7 345.2,203.7 345.2,197.9 " /></g><g id="bbox:3.5_48.1_3.6_48.2" ><polygon points="349.0,197.9 352.9,197.9 352.9,203.7 349.0,203.7 349.0,197.9 " /></g><g id="bbox:3.6_48.1_3.7_48.2" ><polygon points="352.9,197.9 356.7,197.9 356.7,203.7 352.9,203.7 352.9,197.9 " /></g><g id="bbox:3.7_48.1_3.8_48.2" ><polygon points="356.7,197.9 360.6,197.9 360.6,203.7 356.7,203.7 356.7,197.9 " /></g><g id="bbox:3.8_48.1_3.9_48.2" ><polygon points="360.6,197.9 364.4,197.9 364.4,203.7 360.6,203.7 360.6,197.9 " /></g><g id="bbox:3.9_48.1_4_48.2" ><polygon points="364.4,197.9 368.3,197.9 368.3,203.7 364.4,203.7 364.4,197.9 " /></g><g id="bbox:4_48.1_4.1_48.2" ><polygon points="368.3,197.9 372.1,197.9 372.1,203.7 368.3,203.7 368.3,197.9 " /></g><g id="bbox:4.1_48.1_4.2_48.2" ><polygon points="372.1,197.9 376.0,197.9 376.0,203.7 372.1,203.7 372.1,197.9 " /></g><g id="bbox:4.2_48.1_4.3_48.2" ><polygon points="376.0,197.9 379.8,197.9 379.8,203.7 376.0,203.7 376.0,197.9 " /></g><g id="bbox:4.3_48.1_4.4_48.2" ><polygon points="379.8,197.9 383.7,197.9 383.7,203.7 379.8,203.7 379.8,197.9 " /></g><g id="bbox:4.4_48.1_4.5_48.2" ><polygon points="383.7,197.9 387.5,197.9 387.5,203.7 383.7,203.7 383.7,197.9 " /></g><g id="bbox:4.5_48.1_4.6_48.2" ><polygon points="387.5,197.9 391.4,197.9 391.4,203.7 387.5,203.7 387.5,197.9 " /></g><g id="bbox:4.6_48.1_4.7_48.2" ><polygon points="391.4,197.9 395.2,197.9 395.2,203.7 391.4,203.7 391.4,197.9 " /></g><g id="bbox:4.7_48.1_4.8_48.2" ><polygon points="395.2,197.9 399.1,197.9 399.1,203.7 395.2,203.7 395.2,197.9 " /></g><g id="bbox:4.8_48.1_4.9_48.2" ><polygon points="399.1,197.9 402.9,197.9 402.9,203.7 399.1,203.7 399.1,197.9 " /></g><g id="bbox:4.9_48.1_5_48.2" ><polygon points="402.9,197.9 406.7,197.9 406.7,203.7 402.9,203.7 402.9,197.9 " /></g><g id="bbox:5_48.1_5.1_48.2" ><polygon points="406.7,197.9 410.6,197.9 410.6,203.7 406.7,203.7 406.7,197.9 " /></g><g id="bbox:5.1_48.1_5.2_48.2" ><polygon points="410.6,197.9 414.4,197.9 414.4,203.7 410.6,203.7 410.6,197.9 " /></g><g id="bbox:5.2_48.1_5.3_48.2" ><polygon points="414.4,197.9 418.3,197.9 418.3,203.7 414.4,203.7 414.4,197.9 " /></g><g id="bbox:5.3_48.1_5.4_48.2" ><polygon points="418.3,197.9 422.1,197.9 422.1,203.7 418.3,203.7 418.3,197.9 " /></g><g id="bbox:5.4_48.1_5.5_48.2" ><polygon points="422.1,197.9 426.0,197.9 426.0,203.7 422.1,203.7 422.1,197.9 " /></g><g id="bbox:5.5_48.1_5.6_48.2" ><polygon points="426.0,197.9 429.8,197.9 429.8,203.7 426.0,203.7 426.0,197.9 " /></g><g id="bbox:5.6_48.1_5.7_48.2" ><polygon points="429.8,197.9 433.7,197.9 433.7,203.7 429.8,203.7 429.8,197.9 " /></g><g id="bbox:5.7_48.1_5.8_48.2" ><polygon points="433.7,197.9 437.5,197.9 437.5,203.7 433.7,203.7 433.7,197.9 " /></g><g id="bbox:5.8_48.1_5.9_48.2" ><polygon points="437.5,197.9 441.4,197.9 441.4,203.7 437.5,203.7 437.5,197.9 " /></g><g id="bbox:5.9_48.1_6_48.2" ><polygon points="441.4,197.9 445.2,197.9 445.2,203.7 441.4,203.7 441.4,197.9 " /></g><g id="bbox:6_48.1_6.1_48.2" ><polygon points="445.2,197.9 449.1,197.9 449.1,203.7 445.2,203.7 445.2,197.9 " /></g><g id="bbox:6.1_48.1_6.2_48.2" ><polygon points="449.1,197.9 452.9,197.9 452.9,203.7 449.1,203.7 449.1,197.9 " /></g><g id="bbox:6.2_48.1_6.3_48.2" ><polygon points="452.9,197.9 456.8,197.9 456.8,203.7 452.9,203.7 452.9,197.9 " /></g><g id="bbox:6.3_48.1_6.4_48.2" ><polygon points="456.8,197.9 460.6,197.9 460.6,203.7 456.8,203.7 456.8,197.9 " /></g><g id="bbox:6.4_48.1_6.5_48.2" ><polygon points="460.6,197.9 464.5,197.9 464.5,203.7 460.6,203.7 460.6,197.9 " /></g><g id="bbox:6.5_48.1_6.6_48.2" ><polygon points="464.5,197.9 468.3,197.9 468.3,203.7 464.5,203.7 464.5,197.9 " /></g><g id="bbox:6.6_48.1_6.7_48.2" ><polygon points="468.3,197.9 472.2,197.9 472.2,203.7 468.3,203.7 468.3,197.9 " /></g><g id="bbox:6.7_48.1_6.8_48.2" ><polygon points="472.2,197.9 476.0,197.9 476.0,203.7 472.2,203.7 472.2,197.9 " /></g><g id="bbox:6.8_48.1_6.9_48.2" ><polygon points="476.0,197.9 479.9,197.9 479.9,203.7 476.0,203.7 476.0,197.9 " /></g><g id="bbox:6.9_48.1_7_48.2" ><polygon points="479.9,197.9 483.7,197.9 483.7,203.7 479.9,203.7 479.9,197.9 " /></g><g id="bbox:7_48.1_7.1_48.2" ><polygon points="483.7,197.9 487.6,197.9 487.6,203.7 483.7,203.7 483.7,197.9 " /></g><g id="bbox:7.1_48.1_7.2_48.2" ><polygon points="487.6,197.9 491.4,197.9 491.4,203.7 487.6,203.7 487.6,197.9 " /></g><g id="bbox:7.2_48.1_7.3_48.2" ><polygon points="491.4,197.9 495.3,197.9 495.3,203.7 491.4,203.7 491.4,197.9 " /></g><g id="bbox:7.3_48.1_7.4_48.2" ><polygon points="495.3,197.9 499.1,197.9 499.1,203.7 495.3,203.7 495.3,197.9 " /></g><g id="bbox:7.4_48.1_7.5_48.2" ><polygon points="499.1,197.9 503.0,197.9 503.0,203.7 499.1,203.7 499.1,197.9 " /></g><g id="bbox:7.5_48.1_7.6_48.2" ><polygon points="503.0,197.9 506.8,197.9 506.8,203.7 503.0,203.7 503.0,197.9 " /></g><g id="bbox:7.6_48.1_7.7_48.2" ><polygon points="506.8,197.9 510.6,197.9 510.6,203.7 506.8,203.7 506.8,197.9 " /></g><g id="bbox:-4.9_48_-4.8_48.1" ><polygon points="25.8,203.7 29.6,203.7 29.6,209.5 25.8,209.5 25.8,203.7 " /></g><g id="bbox:-4.8_48_-4.7_48.1" ><polygon points="29.6,203.7 33.5,203.7 33.5,209.5 29.6,209.5 29.6,203.7 " /></g><g id="bbox:-4.7_48_-4.6_48.1" ><polygon points="33.5,203.7 37.3,203.7 37.3,209.5 33.5,209.5 33.5,203.7 " /></g><g id="bbox:-4.6_48_-4.5_48.1" ><polygon points="37.3,203.7 41.2,203.7 41.2,209.5 37.3,209.5 37.3,203.7 " /></g><g id="bbox:-4.5_48_-4.4_48.1" ><polygon points="41.2,203.7 45.0,203.7 45.0,209.5 41.2,209.5 41.2,203.7 " /></g><g id="bbox:-4.4_48_-4.3_48.1" ><polygon points="45.0,203.7 48.9,203.7 48.9,209.5 45.0,209.5 45.0,203.7 " /></g><g id="bbox:-4.3_48_-4.2_48.1" ><polygon points="48.9,203.7 52.7,203.7 52.7,209.5 48.9,209.5 48.9,203.7 " /></g><g id="bbox:-4.2_48_-4.1_48.1" ><polygon points="52.7,203.7 56.6,203.7 56.6,209.5 52.7,209.5 52.7,203.7 " /></g><g id="bbox:-4.1_48_-4_48.1" ><polygon points="56.6,203.7 60.4,203.7 60.4,209.5 56.6,209.5 56.6,203.7 " /></g><g id="bbox:-4_48_-3.9_48.1" ><polygon points="60.4,203.7 64.3,203.7 64.3,209.5 60.4,209.5 60.4,203.7 " /></g><g id="bbox:-3.9_48_-3.8_48.1" ><polygon points="64.3,203.7 68.1,203.7 68.1,209.5 64.3,209.5 64.3,203.7 " /></g><g id="bbox:-3.8_48_-3.7_48.1" ><polygon points="68.1,203.7 72.0,203.7 72.0,209.5 68.1,209.5 68.1,203.7 " /></g><g id="bbox:-3.7_48_-3.6_48.1" ><polygon points="72.0,203.7 75.8,203.7 75.8,209.5 72.0,209.5 72.0,203.7 " /></g><g id="bbox:-3.6_48_-3.5_48.1" ><polygon points="75.8,203.7 79.7,203.7 79.7,209.5 75.8,209.5 75.8,203.7 " /></g><g id="bbox:-3.5_48_-3.4_48.1" ><polygon points="79.7,203.7 83.5,203.7 83.5,209.5 79.7,209.5 79.7,203.7 " /></g><g id="bbox:-3.4_48_-3.3_48.1" ><polygon points="83.5,203.7 87.4,203.7 87.4,209.5 83.5,209.5 83.5,203.7 " /></g><g id="bbox:-3.3_48_-3.2_48.1" ><polygon points="87.4,203.7 91.2,203.7 91.2,209.5 87.4,209.5 87.4,203.7 " /></g><g id="bbox:-3.2_48_-3.1_48.1" ><polygon points="91.2,203.7 95.0,203.7 95.0,209.5 91.2,209.5 91.2,203.7 " /></g><g id="bbox:-3.1_48_-3_48.1" ><polygon points="95.0,203.7 98.9,203.7 98.9,209.5 95.0,209.5 95.0,203.7 " /></g><g id="bbox:-3_48_-2.9_48.1" ><polygon points="98.9,203.7 102.7,203.7 102.7,209.5 98.9,209.5 98.9,203.7 " /></g><g id="bbox:-2.9_48_-2.8_48.1" ><polygon points="102.7,203.7 106.6,203.7 106.6,209.5 102.7,209.5 102.7,203.7 " /></g><g id="bbox:-2.8_48_-2.7_48.1" ><polygon points="106.6,203.7 110.4,203.7 110.4,209.5 106.6,209.5 106.6,203.7 " /></g><g id="bbox:-2.7_48_-2.6_48.1" ><polygon points="110.4,203.7 114.3,203.7 114.3,209.5 110.4,209.5 110.4,203.7 " /></g><g id="bbox:-2.6_48_-2.5_48.1" ><polygon points="114.3,203.7 118.1,203.7 118.1,209.5 114.3,209.5 114.3,203.7 " /></g><g id="bbox:-2.5_48_-2.4_48.1" ><polygon points="118.1,203.7 122.0,203.7 122.0,209.5 118.1,209.5 118.1,203.7 " /></g><g id="bbox:-2.4_48_-2.3_48.1" ><polygon points="122.0,203.7 125.8,203.7 125.8,209.5 122.0,209.5 122.0,203.7 " /></g><g id="bbox:-2.3_48_-2.2_48.1" ><polygon points="125.8,203.7 129.7,203.7 129.7,209.5 125.8,209.5 125.8,203.7 " /></g><g id="bbox:-2.2_48_-2.1_48.1" ><polygon points="129.7,203.7 133.5,203.7 133.5,209.5 129.7,209.5 129.7,203.7 " /></g><g id="bbox:-2.1_48_-2_48.1" ><polygon points="133.5,203.7 137.4,203.7 137.4,209.5 133.5,209.5 133.5,203.7 " /></g><g id="bbox:-2_48_-1.9_48.1" ><polygon points="137.4,203.7 141.2,203.7 141.2,209.5 137.4,209.5 137.4,203.7 " /></g><g id="bbox:-1.9_48_-1.8_48.1" ><polygon points="141.2,203.7 145.1,203.7 145.1,209.5 141.2,209.5 141.2,203.7 " /></g><g id="bbox:-1.8_48_-1.7_48.1" ><polygon points="145.1,203.7 148.9,203.7 148.9,209.5 145.1,209.5 145.1,203.7 " /></g><g id="bbox:-1.7_48_-1.6_48.1" ><polygon points="148.9,203.7 152.8,203.7 152.8,209.5 148.9,209.5 148.9,203.7 " /></g><g id="bbox:-1.6_48_-1.5_48.1" ><polygon points="152.8,203.7 156.6,203.7 156.6,209.5 152.8,209.5 152.8,203.7 " /></g><g id="bbox:-1.5_48_-1.4_48.1" ><polygon points="156.6,203.7 160.5,203.7 160.5,209.5 156.6,209.5 156.6,203.7 " /></g><g id="bbox:-1.4_48_-1.3_48.1" ><polygon points="160.5,203.7 164.3,203.7 164.3,209.5 160.5,209.5 160.5,203.7 " /></g><g id="bbox:-1.3_48_-1.2_48.1" ><polygon points="164.3,203.7 168.2,203.7 168.2,209.5 164.3,209.5 164.3,203.7 " /></g><g id="bbox:-1.2_48_-1.1_48.1" ><polygon points="168.2,203.7 172.0,203.7 172.0,209.5 168.2,209.5 168.2,203.7 " /></g><g id="bbox:-1.1_48_-1_48.1" ><polygon points="172.0,203.7 175.9,203.7 175.9,209.5 172.0,209.5 172.0,203.7 " /></g><g id="bbox:-1_48_-0.9_48.1" ><polygon points="175.9,203.7 179.7,203.7 179.7,209.5 175.9,209.5 175.9,203.7 " /></g><g id="bbox:-0.9_48_-0.8_48.1" ><polygon points="179.7,203.7 183.6,203.7 183.6,209.5 179.7,209.5 179.7,203.7 " /></g><g id="bbox:-0.8_48_-0.7_48.1" ><polygon points="183.6,203.7 187.4,203.7 187.4,209.5 183.6,209.5 183.6,203.7 " /></g><g id="bbox:-0.7_48_-0.6_48.1" ><polygon points="187.4,203.7 191.3,203.7 191.3,209.5 187.4,209.5 187.4,203.7 " /></g><g id="bbox:-0.6_48_-0.5_48.1" ><polygon points="191.3,203.7 195.1,203.7 195.1,209.5 191.3,209.5 191.3,203.7 " /></g><g id="bbox:-0.5_48_-0.4_48.1" ><polygon points="195.1,203.7 198.9,203.7 198.9,209.5 195.1,209.5 195.1,203.7 " /></g><g id="bbox:-0.4_48_-0.3_48.1" ><polygon points="198.9,203.7 202.8,203.7 202.8,209.5 198.9,209.5 198.9,203.7 " /></g><g id="bbox:-0.3_48_-0.2_48.1" ><polygon points="202.8,203.7 206.6,203.7 206.6,209.5 202.8,209.5 202.8,203.7 " /></g><g id="bbox:-0.2_48_-0.1_48.1" ><polygon points="206.6,203.7 210.5,203.7 210.5,209.5 206.6,209.5 206.6,203.7 " /></g><g id="bbox:-0.1_48_0_48.1" ><polygon points="210.5,203.7 214.3,203.7 214.3,209.5 210.5,209.5 210.5,203.7 " /></g><g id="bbox:0_48_0.1_48.1" ><polygon points="214.3,203.7 218.2,203.7 218.2,209.5 214.3,209.5 214.3,203.7 " /></g><g id="bbox:0.1_48_0.2_48.1" ><polygon points="218.2,203.7 222.0,203.7 222.0,209.5 218.2,209.5 218.2,203.7 " /></g><g id="bbox:0.2_48_0.3_48.1" ><polygon points="222.0,203.7 225.9,203.7 225.9,209.5 222.0,209.5 222.0,203.7 " /></g><g id="bbox:0.3_48_0.4_48.1" ><polygon points="225.9,203.7 229.7,203.7 229.7,209.5 225.9,209.5 225.9,203.7 " /></g><g id="bbox:0.4_48_0.5_48.1" ><polygon points="229.7,203.7 233.6,203.7 233.6,209.5 229.7,209.5 229.7,203.7 " /></g><g id="bbox:0.5_48_0.6_48.1" ><polygon points="233.6,203.7 237.4,203.7 237.4,209.5 233.6,209.5 233.6,203.7 " /></g><g id="bbox:0.6_48_0.7_48.1" ><polygon points="237.4,203.7 241.3,203.7 241.3,209.5 237.4,209.5 237.4,203.7 " /></g><g id="bbox:0.7_48_0.8_48.1" ><polygon points="241.3,203.7 245.1,203.7 245.1,209.5 241.3,209.5 241.3,203.7 " /></g><g id="bbox:0.8_48_0.9_48.1" ><polygon points="245.1,203.7 249.0,203.7 249.0,209.5 245.1,209.5 245.1,203.7 " /></g><g id="bbox:0.9_48_1_48.1" ><polygon points="249.0,203.7 252.8,203.7 252.8,209.5 249.0,209.5 249.0,203.7 " /></g><g id="bbox:1_48_1.1_48.1" ><polygon points="252.8,203.7 256.7,203.7 256.7,209.5 252.8,209.5 252.8,203.7 " /></g><g id="bbox:1.1_48_1.2_48.1" ><polygon points="256.7,203.7 260.5,203.7 260.5,209.5 256.7,209.5 256.7,203.7 " /></g><g id="bbox:1.2_48_1.3_48.1" ><polygon points="260.5,203.7 264.4,203.7 264.4,209.5 260.5,209.5 260.5,203.7 " /></g><g id="bbox:1.3_48_1.4_48.1" ><polygon points="264.4,203.7 268.2,203.7 268.2,209.5 264.4,209.5 264.4,203.7 " /></g><g id="bbox:1.4_48_1.5_48.1" ><polygon points="268.2,203.7 272.1,203.7 272.1,209.5 268.2,209.5 268.2,203.7 " /></g><g id="bbox:1.5_48_1.6_48.1" ><polygon points="272.1,203.7 275.9,203.7 275.9,209.5 272.1,209.5 272.1,203.7 " /></g><g id="bbox:1.6_48_1.7_48.1" ><polygon points="275.9,203.7 279.8,203.7 279.8,209.5 275.9,209.5 275.9,203.7 " /></g><g id="bbox:1.7_48_1.8_48.1" ><polygon points="279.8,203.7 283.6,203.7 283.6,209.5 279.8,209.5 279.8,203.7 " /></g><g id="bbox:1.8_48_1.9_48.1" ><polygon points="283.6,203.7 287.5,203.7 287.5,209.5 283.6,209.5 283.6,203.7 " /></g><g id="bbox:1.9_48_2_48.1" ><polygon points="287.5,203.7 291.3,203.7 291.3,209.5 287.5,209.5 287.5,203.7 " /></g><g id="bbox:2_48_2.1_48.1" ><polygon points="291.3,203.7 295.2,203.7 295.2,209.5 291.3,209.5 291.3,203.7 " /></g><g id="bbox:2.1_48_2.2_48.1" ><polygon points="295.2,203.7 299.0,203.7 299.0,209.5 295.2,209.5 295.2,203.7 " /></g><g id="bbox:2.2_48_2.3_48.1" ><polygon points="299.0,203.7 302.8,203.7 302.8,209.5 299.0,209.5 299.0,203.7 " /></g><g id="bbox:2.3_48_2.4_48.1" ><polygon points="302.8,203.7 306.7,203.7 306.7,209.5 302.8,209.5 302.8,203.7 " /></g><g id="bbox:2.4_48_2.5_48.1" ><polygon points="306.7,203.7 310.5,203.7 310.5,209.5 306.7,209.5 306.7,203.7 " /></g><g id="bbox:2.5_48_2.6_48.1" ><polygon points="310.5,203.7 314.4,203.7 314.4,209.5 310.5,209.5 310.5,203.7 " /></g><g id="bbox:2.6_48_2.7_48.1" ><polygon points="314.4,203.7 318.2,203.7 318.2,209.5 314.4,209.5 314.4,203.7 " /></g><g id="bbox:2.7_48_2.8_48.1" ><polygon points="318.2,203.7 322.1,203.7 322.1,209.5 318.2,209.5 318.2,203.7 " /></g><g id="bbox:2.8_48_2.9_48.1" ><polygon points="322.1,203.7 325.9,203.7 325.9,209.5 322.1,209.5 322.1,203.7 " /></g><g id="bbox:2.9_48_3_48.1" ><polygon points="325.9,203.7 329.8,203.7 329.8,209.5 325.9,209.5 325.9,203.7 " /></g><g id="bbox:3_48_3.1_48.1" ><polygon points="329.8,203.7 333.6,203.7 333.6,209.5 329.8,209.5 329.8,203.7 " /></g><g id="bbox:3.1_48_3.2_48.1" ><polygon points="333.6,203.7 337.5,203.7 337.5,209.5 333.6,209.5 333.6,203.7 " /></g><g id="bbox:3.2_48_3.3_48.1" ><polygon points="337.5,203.7 341.3,203.7 341.3,209.5 337.5,209.5 337.5,203.7 " /></g><g id="bbox:3.3_48_3.4_48.1" ><polygon points="341.3,203.7 345.2,203.7 345.2,209.5 341.3,209.5 341.3,203.7 " /></g><g id="bbox:3.4_48_3.5_48.1" ><polygon points="345.2,203.7 349.0,203.7 349.0,209.5 345.2,209.5 345.2,203.7 " /></g><g id="bbox:3.5_48_3.6_48.1" ><polygon points="349.0,203.7 352.9,203.7 352.9,209.5 349.0,209.5 349.0,203.7 " /></g><g id="bbox:3.6_48_3.7_48.1" ><polygon points="352.9,203.7 356.7,203.7 356.7,209.5 352.9,209.5 352.9,203.7 " /></g><g id="bbox:3.7_48_3.8_48.1" ><polygon points="356.7,203.7 360.6,203.7 360.6,209.5 356.7,209.5 356.7,203.7 " /></g><g id="bbox:3.8_48_3.9_48.1" ><polygon points="360.6,203.7 364.4,203.7 364.4,209.5 360.6,209.5 360.6,203.7 " /></g><g id="bbox:3.9_48_4_48.1" ><polygon points="364.4,203.7 368.3,203.7 368.3,209.5 364.4,209.5 364.4,203.7 " /></g><g id="bbox:4_48_4.1_48.1" ><polygon points="368.3,203.7 372.1,203.7 372.1,209.5 368.3,209.5 368.3,203.7 " /></g><g id="bbox:4.1_48_4.2_48.1" ><polygon points="372.1,203.7 376.0,203.7 376.0,209.5 372.1,209.5 372.1,203.7 " /></g><g id="bbox:4.2_48_4.3_48.1" ><polygon points="376.0,203.7 379.8,203.7 379.8,209.5 376.0,209.5 376.0,203.7 " /></g><g id="bbox:4.3_48_4.4_48.1" ><polygon points="379.8,203.7 383.7,203.7 383.7,209.5 379.8,209.5 379.8,203.7 " /></g><g id="bbox:4.4_48_4.5_48.1" ><polygon points="383.7,203.7 387.5,203.7 387.5,209.5 383.7,209.5 383.7,203.7 " /></g><g id="bbox:4.5_48_4.6_48.1" ><polygon points="387.5,203.7 391.4,203.7 391.4,209.5 387.5,209.5 387.5,203.7 " /></g><g id="bbox:4.6_48_4.7_48.1" ><polygon points="391.4,203.7 395.2,203.7 395.2,209.5 391.4,209.5 391.4,203.7 " /></g><g id="bbox:4.7_48_4.8_48.1" ><polygon points="395.2,203.7 399.1,203.7 399.1,209.5 395.2,209.5 395.2,203.7 " /></g><g id="bbox:4.8_48_4.9_48.1" ><polygon points="399.1,203.7 402.9,203.7 402.9,209.5 399.1,209.5 399.1,203.7 " /></g><g id="bbox:4.9_48_5_48.1" ><polygon points="402.9,203.7 406.7,203.7 406.7,209.5 402.9,209.5 402.9,203.7 " /></g><g id="bbox:5_48_5.1_48.1" ><polygon points="406.7,203.7 410.6,203.7 410.6,209.5 406.7,209.5 406.7,203.7 " /></g><g id="bbox:5.1_48_5.2_48.1" ><polygon points="410.6,203.7 414.4,203.7 414.4,209.5 410.6,209.5 410.6,203.7 " /></g><g id="bbox:5.2_48_5.3_48.1" ><polygon points="414.4,203.7 418.3,203.7 418.3,209.5 414.4,209.5 414.4,203.7 " /></g><g id="bbox:5.3_48_5.4_48.1" ><polygon points="418.3,203.7 422.1,203.7 422.1,209.5 418.3,209.5 418.3,203.7 " /></g><g id="bbox:5.4_48_5.5_48.1" ><polygon points="422.1,203.7 426.0,203.7 426.0,209.5 422.1,209.5 422.1,203.7 " /></g><g id="bbox:5.5_48_5.6_48.1" ><polygon points="426.0,203.7 429.8,203.7 429.8,209.5 426.0,209.5 426.0,203.7 " /></g><g id="bbox:5.6_48_5.7_48.1" ><polygon points="429.8,203.7 433.7,203.7 433.7,209.5 429.8,209.5 429.8,203.7 " /></g><g id="bbox:5.7_48_5.8_48.1" ><polygon points="433.7,203.7 437.5,203.7 437.5,209.5 433.7,209.5 433.7,203.7 " /></g><g id="bbox:5.8_48_5.9_48.1" ><polygon points="437.5,203.7 441.4,203.7 441.4,209.5 437.5,209.5 437.5,203.7 " /></g><g id="bbox:5.9_48_6_48.1" ><polygon points="441.4,203.7 445.2,203.7 445.2,209.5 441.4,209.5 441.4,203.7 " /></g><g id="bbox:6_48_6.1_48.1" ><polygon points="445.2,203.7 449.1,203.7 449.1,209.5 445.2,209.5 445.2,203.7 " /></g><g id="bbox:6.1_48_6.2_48.1" ><polygon points="449.1,203.7 452.9,203.7 452.9,209.5 449.1,209.5 449.1,203.7 " /></g><g id="bbox:6.2_48_6.3_48.1" ><polygon points="452.9,203.7 456.8,203.7 456.8,209.5 452.9,209.5 452.9,203.7 " /></g><g id="bbox:6.3_48_6.4_48.1" ><polygon points="456.8,203.7 460.6,203.7 460.6,209.5 456.8,209.5 456.8,203.7 " /></g><g id="bbox:6.4_48_6.5_48.1" ><polygon points="460.6,203.7 464.5,203.7 464.5,209.5 460.6,209.5 460.6,203.7 " /></g><g id="bbox:6.5_48_6.6_48.1" ><polygon points="464.5,203.7 468.3,203.7 468.3,209.5 464.5,209.5 464.5,203.7 " /></g><g id="bbox:6.6_48_6.7_48.1" ><polygon points="468.3,203.7 472.2,203.7 472.2,209.5 468.3,209.5 468.3,203.7 " /></g><g id="bbox:6.7_48_6.8_48.1" ><polygon points="472.2,203.7 476.0,203.7 476.0,209.5 472.2,209.5 472.2,203.7 " /></g><g id="bbox:6.8_48_6.9_48.1" ><polygon points="476.0,203.7 479.9,203.7 479.9,209.5 476.0,209.5 476.0,203.7 " /></g><g id="bbox:6.9_48_7_48.1" ><polygon points="479.9,203.7 483.7,203.7 483.7,209.5 479.9,209.5 479.9,203.7 " /></g><g id="bbox:7_48_7.1_48.1" ><polygon points="483.7,203.7 487.6,203.7 487.6,209.5 483.7,209.5 483.7,203.7 " /></g><g id="bbox:7.1_48_7.2_48.1" ><polygon points="487.6,203.7 491.4,203.7 491.4,209.5 487.6,209.5 487.6,203.7 " /></g><g id="bbox:7.2_48_7.3_48.1" ><polygon points="491.4,203.7 495.3,203.7 495.3,209.5 491.4,209.5 491.4,203.7 " /></g><g id="bbox:7.3_48_7.4_48.1" ><polygon points="495.3,203.7 499.1,203.7 499.1,209.5 495.3,209.5 495.3,203.7 " /></g><g id="bbox:7.4_48_7.5_48.1" ><polygon points="499.1,203.7 503.0,203.7 503.0,209.5 499.1,209.5 499.1,203.7 " /></g><g id="bbox:7.5_48_7.6_48.1" ><polygon points="503.0,203.7 506.8,203.7 506.8,209.5 503.0,209.5 503.0,203.7 " /></g><g id="bbox:7.6_48_7.7_48.1" ><polygon points="506.8,203.7 510.6,203.7 510.6,209.5 506.8,209.5 506.8,203.7 " /></g><g id="bbox:-4.6_47.9_-4.5_48" ><polygon points="37.3,209.5 41.2,209.5 41.2,215.2 37.3,215.2 37.3,209.5 " /></g><g id="bbox:-4.5_47.9_-4.4_48" ><polygon points="41.2,209.5 45.0,209.5 45.0,215.2 41.2,215.2 41.2,209.5 " /></g><g id="bbox:-4.4_47.9_-4.3_48" ><polygon points="45.0,209.5 48.9,209.5 48.9,215.2 45.0,215.2 45.0,209.5 " /></g><g id="bbox:-4.3_47.9_-4.2_48" ><polygon points="48.9,209.5 52.7,209.5 52.7,215.2 48.9,215.2 48.9,209.5 " /></g><g id="bbox:-4.2_47.9_-4.1_48" ><polygon points="52.7,209.5 56.6,209.5 56.6,215.2 52.7,215.2 52.7,209.5 " /></g><g id="bbox:-4.1_47.9_-4_48" ><polygon points="56.6,209.5 60.4,209.5 60.4,215.2 56.6,215.2 56.6,209.5 " /></g><g id="bbox:-4_47.9_-3.9_48" ><polygon points="60.4,209.5 64.3,209.5 64.3,215.2 60.4,215.2 60.4,209.5 " /></g><g id="bbox:-3.9_47.9_-3.8_48" ><polygon points="64.3,209.5 68.1,209.5 68.1,215.2 64.3,215.2 64.3,209.5 " /></g><g id="bbox:-3.8_47.9_-3.7_48" ><polygon points="68.1,209.5 72.0,209.5 72.0,215.2 68.1,215.2 68.1,209.5 " /></g><g id="bbox:-3.7_47.9_-3.6_48" ><polygon points="72.0,209.5 75.8,209.5 75.8,215.2 72.0,215.2 72.0,209.5 " /></g><g id="bbox:-3.6_47.9_-3.5_48" ><polygon points="75.8,209.5 79.7,209.5 79.7,215.2 75.8,215.2 75.8,209.5 " /></g><g id="bbox:-3.5_47.9_-3.4_48" ><polygon points="79.7,209.5 83.5,209.5 83.5,215.2 79.7,215.2 79.7,209.5 " /></g><g id="bbox:-3.4_47.9_-3.3_48" ><polygon points="83.5,209.5 87.4,209.5 87.4,215.2 83.5,215.2 83.5,209.5 " /></g><g id="bbox:-3.3_47.9_-3.2_48" ><polygon points="87.4,209.5 91.2,209.5 91.2,215.2 87.4,215.2 87.4,209.5 " /></g><g id="bbox:-3.2_47.9_-3.1_48" ><polygon points="91.2,209.5 95.0,209.5 95.0,215.2 91.2,215.2 91.2,209.5 " /></g><g id="bbox:-3.1_47.9_-3_48" ><polygon points="95.0,209.5 98.9,209.5 98.9,215.2 95.0,215.2 95.0,209.5 " /></g><g id="bbox:-3_47.9_-2.9_48" ><polygon points="98.9,209.5 102.7,209.5 102.7,215.2 98.9,215.2 98.9,209.5 " /></g><g id="bbox:-2.9_47.9_-2.8_48" ><polygon points="102.7,209.5 106.6,209.5 106.6,215.2 102.7,215.2 102.7,209.5 " /></g><g id="bbox:-2.8_47.9_-2.7_48" ><polygon points="106.6,209.5 110.4,209.5 110.4,215.2 106.6,215.2 106.6,209.5 " /></g><g id="bbox:-2.7_47.9_-2.6_48" ><polygon points="110.4,209.5 114.3,209.5 114.3,215.2 110.4,215.2 110.4,209.5 " /></g><g id="bbox:-2.6_47.9_-2.5_48" ><polygon points="114.3,209.5 118.1,209.5 118.1,215.2 114.3,215.2 114.3,209.5 " /></g><g id="bbox:-2.5_47.9_-2.4_48" ><polygon points="118.1,209.5 122.0,209.5 122.0,215.2 118.1,215.2 118.1,209.5 " /></g><g id="bbox:-2.4_47.9_-2.3_48" ><polygon points="122.0,209.5 125.8,209.5 125.8,215.2 122.0,215.2 122.0,209.5 " /></g><g id="bbox:-2.3_47.9_-2.2_48" ><polygon points="125.8,209.5 129.7,209.5 129.7,215.2 125.8,215.2 125.8,209.5 " /></g><g id="bbox:-2.2_47.9_-2.1_48" ><polygon points="129.7,209.5 133.5,209.5 133.5,215.2 129.7,215.2 129.7,209.5 " /></g><g id="bbox:-2.1_47.9_-2_48" ><polygon points="133.5,209.5 137.4,209.5 137.4,215.2 133.5,215.2 133.5,209.5 " /></g><g id="bbox:-2_47.9_-1.9_48" ><polygon points="137.4,209.5 141.2,209.5 141.2,215.2 137.4,215.2 137.4,209.5 " /></g><g id="bbox:-1.9_47.9_-1.8_48" ><polygon points="141.2,209.5 145.1,209.5 145.1,215.2 141.2,215.2 141.2,209.5 " /></g><g id="bbox:-1.8_47.9_-1.7_48" ><polygon points="145.1,209.5 148.9,209.5 148.9,215.2 145.1,215.2 145.1,209.5 " /></g><g id="bbox:-1.7_47.9_-1.6_48" ><polygon points="148.9,209.5 152.8,209.5 152.8,215.2 148.9,215.2 148.9,209.5 " /></g><g id="bbox:-1.6_47.9_-1.5_48" ><polygon points="152.8,209.5 156.6,209.5 156.6,215.2 152.8,215.2 152.8,209.5 " /></g><g id="bbox:-1.5_47.9_-1.4_48" ><polygon points="156.6,209.5 160.5,209.5 160.5,215.2 156.6,215.2 156.6,209.5 " /></g><g id="bbox:-1.4_47.9_-1.3_48" ><polygon points="160.5,209.5 164.3,209.5 164.3,215.2 160.5,215.2 160.5,209.5 " /></g><g id="bbox:-1.3_47.9_-1.2_48" ><polygon points="164.3,209.5 168.2,209.5 168.2,215.2 164.3,215.2 164.3,209.5 " /></g><g id="bbox:-1.2_47.9_-1.1_48" ><polygon points="168.2,209.5 172.0,209.5 172.0,215.2 168.2,215.2 168.2,209.5 " /></g><g id="bbox:-1.1_47.9_-1_48" ><polygon points="172.0,209.5 175.9,209.5 175.9,215.2 172.0,215.2 172.0,209.5 " /></g><g id="bbox:-1_47.9_-0.9_48" ><polygon points="175.9,209.5 179.7,209.5 179.7,215.2 175.9,215.2 175.9,209.5 " /></g><g id="bbox:-0.9_47.9_-0.8_48" ><polygon points="179.7,209.5 183.6,209.5 183.6,215.2 179.7,215.2 179.7,209.5 " /></g><g id="bbox:-0.8_47.9_-0.7_48" ><polygon points="183.6,209.5 187.4,209.5 187.4,215.2 183.6,215.2 183.6,209.5 " /></g><g id="bbox:-0.7_47.9_-0.6_48" ><polygon points="187.4,209.5 191.3,209.5 191.3,215.2 187.4,215.2 187.4,209.5 " /></g><g id="bbox:-0.6_47.9_-0.5_48" ><polygon points="191.3,209.5 195.1,209.5 195.1,215.2 191.3,215.2 191.3,209.5 " /></g><g id="bbox:-0.5_47.9_-0.4_48" ><polygon points="195.1,209.5 198.9,209.5 198.9,215.2 195.1,215.2 195.1,209.5 " /></g><g id="bbox:-0.4_47.9_-0.3_48" ><polygon points="198.9,209.5 202.8,209.5 202.8,215.2 198.9,215.2 198.9,209.5 " /></g><g id="bbox:-0.3_47.9_-0.2_48" ><polygon points="202.8,209.5 206.6,209.5 206.6,215.2 202.8,215.2 202.8,209.5 " /></g><g id="bbox:-0.2_47.9_-0.1_48" ><polygon points="206.6,209.5 210.5,209.5 210.5,215.2 206.6,215.2 206.6,209.5 " /></g><g id="bbox:-0.1_47.9_0_48" ><polygon points="210.5,209.5 214.3,209.5 214.3,215.2 210.5,215.2 210.5,209.5 " /></g><g id="bbox:0_47.9_0.1_48" ><polygon points="214.3,209.5 218.2,209.5 218.2,215.2 214.3,215.2 214.3,209.5 " /></g><g id="bbox:0.1_47.9_0.2_48" ><polygon points="218.2,209.5 222.0,209.5 222.0,215.2 218.2,215.2 218.2,209.5 " /></g><g id="bbox:0.2_47.9_0.3_48" ><polygon points="222.0,209.5 225.9,209.5 225.9,215.2 222.0,215.2 222.0,209.5 " /></g><g id="bbox:0.3_47.9_0.4_48" ><polygon points="225.9,209.5 229.7,209.5 229.7,215.2 225.9,215.2 225.9,209.5 " /></g><g id="bbox:0.4_47.9_0.5_48" ><polygon points="229.7,209.5 233.6,209.5 233.6,215.2 229.7,215.2 229.7,209.5 " /></g><g id="bbox:0.5_47.9_0.6_48" ><polygon points="233.6,209.5 237.4,209.5 237.4,215.2 233.6,215.2 233.6,209.5 " /></g><g id="bbox:0.6_47.9_0.7_48" ><polygon points="237.4,209.5 241.3,209.5 241.3,215.2 237.4,215.2 237.4,209.5 " /></g><g id="bbox:0.7_47.9_0.8_48" ><polygon points="241.3,209.5 245.1,209.5 245.1,215.2 241.3,215.2 241.3,209.5 " /></g><g id="bbox:0.8_47.9_0.9_48" ><polygon points="245.1,209.5 249.0,209.5 249.0,215.2 245.1,215.2 245.1,209.5 " /></g><g id="bbox:0.9_47.9_1_48" ><polygon points="249.0,209.5 252.8,209.5 252.8,215.2 249.0,215.2 249.0,209.5 " /></g><g id="bbox:1_47.9_1.1_48" ><polygon points="252.8,209.5 256.7,209.5 256.7,215.2 252.8,215.2 252.8,209.5 " /></g><g id="bbox:1.1_47.9_1.2_48" ><polygon points="256.7,209.5 260.5,209.5 260.5,215.2 256.7,215.2 256.7,209.5 " /></g><g id="bbox:1.2_47.9_1.3_48" ><polygon points="260.5,209.5 264.4,209.5 264.4,215.2 260.5,215.2 260.5,209.5 " /></g><g id="bbox:1.3_47.9_1.4_48" ><polygon points="264.4,209.5 268.2,209.5 268.2,215.2 264.4,215.2 264.4,209.5 " /></g><g id="bbox:1.4_47.9_1.5_48" ><polygon points="268.2,209.5 272.1,209.5 272.1,215.2 268.2,215.2 268.2,209.5 " /></g><g id="bbox:1.5_47.9_1.6_48" ><polygon points="272.1,209.5 275.9,209.5 275.9,215.2 272.1,215.2 272.1,209.5 " /></g><g id="bbox:1.6_47.9_1.7_48" ><polygon points="275.9,209.5 279.8,209.5 279.8,215.2 275.9,215.2 275.9,209.5 " /></g><g id="bbox:1.7_47.9_1.8_48" ><polygon points="279.8,209.5 283.6,209.5 283.6,215.2 279.8,215.2 279.8,209.5 " /></g><g id="bbox:1.8_47.9_1.9_48" ><polygon points="283.6,209.5 287.5,209.5 287.5,215.2 283.6,215.2 283.6,209.5 " /></g><g id="bbox:1.9_47.9_2_48" ><polygon points="287.5,209.5 291.3,209.5 291.3,215.2 287.5,215.2 287.5,209.5 " /></g><g id="bbox:2_47.9_2.1_48" ><polygon points="291.3,209.5 295.2,209.5 295.2,215.2 291.3,215.2 291.3,209.5 " /></g><g id="bbox:2.1_47.9_2.2_48" ><polygon points="295.2,209.5 299.0,209.5 299.0,215.2 295.2,215.2 295.2,209.5 " /></g><g id="bbox:2.2_47.9_2.3_48" ><polygon points="299.0,209.5 302.8,209.5 302.8,215.2 299.0,215.2 299.0,209.5 " /></g><g id="bbox:2.3_47.9_2.4_48" ><polygon points="302.8,209.5 306.7,209.5 306.7,215.2 302.8,215.2 302.8,209.5 " /></g><g id="bbox:2.4_47.9_2.5_48" ><polygon points="306.7,209.5 310.5,209.5 310.5,215.2 306.7,215.2 306.7,209.5 " /></g><g id="bbox:2.5_47.9_2.6_48" ><polygon points="310.5,209.5 314.4,209.5 314.4,215.2 310.5,215.2 310.5,209.5 " /></g><g id="bbox:2.6_47.9_2.7_48" ><polygon points="314.4,209.5 318.2,209.5 318.2,215.2 314.4,215.2 314.4,209.5 " /></g><g id="bbox:2.7_47.9_2.8_48" ><polygon points="318.2,209.5 322.1,209.5 322.1,215.2 318.2,215.2 318.2,209.5 " /></g><g id="bbox:2.8_47.9_2.9_48" ><polygon points="322.1,209.5 325.9,209.5 325.9,215.2 322.1,215.2 322.1,209.5 " /></g><g id="bbox:2.9_47.9_3_48" ><polygon points="325.9,209.5 329.8,209.5 329.8,215.2 325.9,215.2 325.9,209.5 " /></g><g id="bbox:3_47.9_3.1_48" ><polygon points="329.8,209.5 333.6,209.5 333.6,215.2 329.8,215.2 329.8,209.5 " /></g><g id="bbox:3.1_47.9_3.2_48" ><polygon points="333.6,209.5 337.5,209.5 337.5,215.2 333.6,215.2 333.6,209.5 " /></g><g id="bbox:3.2_47.9_3.3_48" ><polygon points="337.5,209.5 341.3,209.5 341.3,215.2 337.5,215.2 337.5,209.5 " /></g><g id="bbox:3.3_47.9_3.4_48" ><polygon points="341.3,209.5 345.2,209.5 345.2,215.2 341.3,215.2 341.3,209.5 " /></g><g id="bbox:3.4_47.9_3.5_48" ><polygon points="345.2,209.5 349.0,209.5 349.0,215.2 345.2,215.2 345.2,209.5 " /></g><g id="bbox:3.5_47.9_3.6_48" ><polygon points="349.0,209.5 352.9,209.5 352.9,215.2 349.0,215.2 349.0,209.5 " /></g><g id="bbox:3.6_47.9_3.7_48" ><polygon points="352.9,209.5 356.7,209.5 356.7,215.2 352.9,215.2 352.9,209.5 " /></g><g id="bbox:3.7_47.9_3.8_48" ><polygon points="356.7,209.5 360.6,209.5 360.6,215.2 356.7,215.2 356.7,209.5 " /></g><g id="bbox:3.8_47.9_3.9_48" ><polygon points="360.6,209.5 364.4,209.5 364.4,215.2 360.6,215.2 360.6,209.5 " /></g><g id="bbox:3.9_47.9_4_48" ><polygon points="364.4,209.5 368.3,209.5 368.3,215.2 364.4,215.2 364.4,209.5 " /></g><g id="bbox:4_47.9_4.1_48" ><polygon points="368.3,209.5 372.1,209.5 372.1,215.2 368.3,215.2 368.3,209.5 " /></g><g id="bbox:4.1_47.9_4.2_48" ><polygon points="372.1,209.5 376.0,209.5 376.0,215.2 372.1,215.2 372.1,209.5 " /></g><g id="bbox:4.2_47.9_4.3_48" ><polygon points="376.0,209.5 379.8,209.5 379.8,215.2 376.0,215.2 376.0,209.5 " /></g><g id="bbox:4.3_47.9_4.4_48" ><polygon points="379.8,209.5 383.7,209.5 383.7,215.2 379.8,215.2 379.8,209.5 " /></g><g id="bbox:4.4_47.9_4.5_48" ><polygon points="383.7,209.5 387.5,209.5 387.5,215.2 383.7,215.2 383.7,209.5 " /></g><g id="bbox:4.5_47.9_4.6_48" ><polygon points="387.5,209.5 391.4,209.5 391.4,215.2 387.5,215.2 387.5,209.5 " /></g><g id="bbox:4.6_47.9_4.7_48" ><polygon points="391.4,209.5 395.2,209.5 395.2,215.2 391.4,215.2 391.4,209.5 " /></g><g id="bbox:4.7_47.9_4.8_48" ><polygon points="395.2,209.5 399.1,209.5 399.1,215.2 395.2,215.2 395.2,209.5 " /></g><g id="bbox:4.8_47.9_4.9_48" ><polygon points="399.1,209.5 402.9,209.5 402.9,215.2 399.1,215.2 399.1,209.5 " /></g><g id="bbox:4.9_47.9_5_48" ><polygon points="402.9,209.5 406.7,209.5 406.7,215.2 402.9,215.2 402.9,209.5 " /></g><g id="bbox:5_47.9_5.1_48" ><polygon points="406.7,209.5 410.6,209.5 410.6,215.2 406.7,215.2 406.7,209.5 " /></g><g id="bbox:5.1_47.9_5.2_48" ><polygon points="410.6,209.5 414.4,209.5 414.4,215.2 410.6,215.2 410.6,209.5 " /></g><g id="bbox:5.2_47.9_5.3_48" ><polygon points="414.4,209.5 418.3,209.5 418.3,215.2 414.4,215.2 414.4,209.5 " /></g><g id="bbox:5.3_47.9_5.4_48" ><polygon points="418.3,209.5 422.1,209.5 422.1,215.2 418.3,215.2 418.3,209.5 " /></g><g id="bbox:5.4_47.9_5.5_48" ><polygon points="422.1,209.5 426.0,209.5 426.0,215.2 422.1,215.2 422.1,209.5 " /></g><g id="bbox:5.5_47.9_5.6_48" ><polygon points="426.0,209.5 429.8,209.5 429.8,215.2 426.0,215.2 426.0,209.5 " /></g><g id="bbox:5.6_47.9_5.7_48" ><polygon points="429.8,209.5 433.7,209.5 433.7,215.2 429.8,215.2 429.8,209.5 " /></g><g id="bbox:5.7_47.9_5.8_48" ><polygon points="433.7,209.5 437.5,209.5 437.5,215.2 433.7,215.2 433.7,209.5 " /></g><g id="bbox:5.8_47.9_5.9_48" ><polygon points="437.5,209.5 441.4,209.5 441.4,215.2 437.5,215.2 437.5,209.5 " /></g><g id="bbox:5.9_47.9_6_48" ><polygon points="441.4,209.5 445.2,209.5 445.2,215.2 441.4,215.2 441.4,209.5 " /></g><g id="bbox:6_47.9_6.1_48" ><polygon points="445.2,209.5 449.1,209.5 449.1,215.2 445.2,215.2 445.2,209.5 " /></g><g id="bbox:6.1_47.9_6.2_48" ><polygon points="449.1,209.5 452.9,209.5 452.9,215.2 449.1,215.2 449.1,209.5 " /></g><g id="bbox:6.2_47.9_6.3_48" ><polygon points="452.9,209.5 456.8,209.5 456.8,215.2 452.9,215.2 452.9,209.5 " /></g><g id="bbox:6.3_47.9_6.4_48" ><polygon points="456.8,209.5 460.6,209.5 460.6,215.2 456.8,215.2 456.8,209.5 " /></g><g id="bbox:6.4_47.9_6.5_48" ><polygon points="460.6,209.5 464.5,209.5 464.5,215.2 460.6,215.2 460.6,209.5 " /></g><g id="bbox:6.5_47.9_6.6_48" ><polygon points="464.5,209.5 468.3,209.5 468.3,215.2 464.5,215.2 464.5,209.5 " /></g><g id="bbox:6.6_47.9_6.7_48" ><polygon points="468.3,209.5 472.2,209.5 472.2,215.2 468.3,215.2 468.3,209.5 " /></g><g id="bbox:6.7_47.9_6.8_48" ><polygon points="472.2,209.5 476.0,209.5 476.0,215.2 472.2,215.2 472.2,209.5 " /></g><g id="bbox:6.8_47.9_6.9_48" ><polygon points="476.0,209.5 479.9,209.5 479.9,215.2 476.0,215.2 476.0,209.5 " /></g><g id="bbox:6.9_47.9_7_48" ><polygon points="479.9,209.5 483.7,209.5 483.7,215.2 479.9,215.2 479.9,209.5 " /></g><g id="bbox:7_47.9_7.1_48" ><polygon points="483.7,209.5 487.6,209.5 487.6,215.2 483.7,215.2 483.7,209.5 " /></g><g id="bbox:7.1_47.9_7.2_48" ><polygon points="487.6,209.5 491.4,209.5 491.4,215.2 487.6,215.2 487.6,209.5 " /></g><g id="bbox:7.2_47.9_7.3_48" ><polygon points="491.4,209.5 495.3,209.5 495.3,215.2 491.4,215.2 491.4,209.5 " /></g><g id="bbox:7.3_47.9_7.4_48" ><polygon points="495.3,209.5 499.1,209.5 499.1,215.2 495.3,215.2 495.3,209.5 " /></g><g id="bbox:7.4_47.9_7.5_48" ><polygon points="499.1,209.5 503.0,209.5 503.0,215.2 499.1,215.2 499.1,209.5 " /></g><g id="bbox:7.5_47.9_7.6_48" ><polygon points="503.0,209.5 506.8,209.5 506.8,215.2 503.0,215.2 503.0,209.5 " /></g><g id="bbox:7.6_47.9_7.7_48" ><polygon points="506.8,209.5 510.6,209.5 510.6,215.2 506.8,215.2 506.8,209.5 " /></g><g id="bbox:-4.4_47.8_-4.3_47.9" ><polygon points="45.0,215.2 48.9,215.2 48.9,220.9 45.0,220.9 45.0,215.2 " /></g><g id="bbox:-4.3_47.8_-4.2_47.9" ><polygon points="48.9,215.2 52.7,215.2 52.7,220.9 48.9,220.9 48.9,215.2 " /></g><g id="bbox:-4.2_47.8_-4.1_47.9" ><polygon points="52.7,215.2 56.6,215.2 56.6,220.9 52.7,220.9 52.7,215.2 " /></g><g id="bbox:-4.1_47.8_-4_47.9" ><polygon points="56.6,215.2 60.4,215.2 60.4,220.9 56.6,220.9 56.6,215.2 " /></g><g id="bbox:-4_47.8_-3.9_47.9" ><polygon points="60.4,215.2 64.3,215.2 64.3,220.9 60.4,220.9 60.4,215.2 " /></g><g id="bbox:-3.9_47.8_-3.8_47.9" ><polygon points="64.3,215.2 68.1,215.2 68.1,220.9 64.3,220.9 64.3,215.2 " /></g><g id="bbox:-3.8_47.8_-3.7_47.9" ><polygon points="68.1,215.2 72.0,215.2 72.0,220.9 68.1,220.9 68.1,215.2 " /></g><g id="bbox:-3.7_47.8_-3.6_47.9" ><polygon points="72.0,215.2 75.8,215.2 75.8,220.9 72.0,220.9 72.0,215.2 " /></g><g id="bbox:-3.6_47.8_-3.5_47.9" ><polygon points="75.8,215.2 79.7,215.2 79.7,220.9 75.8,220.9 75.8,215.2 " /></g><g id="bbox:-3.5_47.8_-3.4_47.9" ><polygon points="79.7,215.2 83.5,215.2 83.5,220.9 79.7,220.9 79.7,215.2 " /></g><g id="bbox:-3.4_47.8_-3.3_47.9" ><polygon points="83.5,215.2 87.4,215.2 87.4,220.9 83.5,220.9 83.5,215.2 " /></g><g id="bbox:-3.3_47.8_-3.2_47.9" ><polygon points="87.4,215.2 91.2,215.2 91.2,220.9 87.4,220.9 87.4,215.2 " /></g><g id="bbox:-3.2_47.8_-3.1_47.9" ><polygon points="91.2,215.2 95.0,215.2 95.0,220.9 91.2,220.9 91.2,215.2 " /></g><g id="bbox:-3.1_47.8_-3_47.9" ><polygon points="95.0,215.2 98.9,215.2 98.9,220.9 95.0,220.9 95.0,215.2 " /></g><g id="bbox:-3_47.8_-2.9_47.9" ><polygon points="98.9,215.2 102.7,215.2 102.7,220.9 98.9,220.9 98.9,215.2 " /></g><g id="bbox:-2.9_47.8_-2.8_47.9" ><polygon points="102.7,215.2 106.6,215.2 106.6,220.9 102.7,220.9 102.7,215.2 " /></g><g id="bbox:-2.8_47.8_-2.7_47.9" ><polygon points="106.6,215.2 110.4,215.2 110.4,220.9 106.6,220.9 106.6,215.2 " /></g><g id="bbox:-2.7_47.8_-2.6_47.9" ><polygon points="110.4,215.2 114.3,215.2 114.3,220.9 110.4,220.9 110.4,215.2 " /></g><g id="bbox:-2.6_47.8_-2.5_47.9" ><polygon points="114.3,215.2 118.1,215.2 118.1,220.9 114.3,220.9 114.3,215.2 " /></g><g id="bbox:-2.5_47.8_-2.4_47.9" ><polygon points="118.1,215.2 122.0,215.2 122.0,220.9 118.1,220.9 118.1,215.2 " /></g><g id="bbox:-2.4_47.8_-2.3_47.9" ><polygon points="122.0,215.2 125.8,215.2 125.8,220.9 122.0,220.9 122.0,215.2 " /></g><g id="bbox:-2.3_47.8_-2.2_47.9" ><polygon points="125.8,215.2 129.7,215.2 129.7,220.9 125.8,220.9 125.8,215.2 " /></g><g id="bbox:-2.2_47.8_-2.1_47.9" ><polygon points="129.7,215.2 133.5,215.2 133.5,220.9 129.7,220.9 129.7,215.2 " /></g><g id="bbox:-2.1_47.8_-2_47.9" ><polygon points="133.5,215.2 137.4,215.2 137.4,220.9 133.5,220.9 133.5,215.2 " /></g><g id="bbox:-2_47.8_-1.9_47.9" ><polygon points="137.4,215.2 141.2,215.2 141.2,220.9 137.4,220.9 137.4,215.2 " /></g><g id="bbox:-1.9_47.8_-1.8_47.9" ><polygon points="141.2,215.2 145.1,215.2 145.1,220.9 141.2,220.9 141.2,215.2 " /></g><g id="bbox:-1.8_47.8_-1.7_47.9" ><polygon points="145.1,215.2 148.9,215.2 148.9,220.9 145.1,220.9 145.1,215.2 " /></g><g id="bbox:-1.7_47.8_-1.6_47.9" ><polygon points="148.9,215.2 152.8,215.2 152.8,220.9 148.9,220.9 148.9,215.2 " /></g><g id="bbox:-1.6_47.8_-1.5_47.9" ><polygon points="152.8,215.2 156.6,215.2 156.6,220.9 152.8,220.9 152.8,215.2 " /></g><g id="bbox:-1.5_47.8_-1.4_47.9" ><polygon points="156.6,215.2 160.5,215.2 160.5,220.9 156.6,220.9 156.6,215.2 " /></g><g id="bbox:-1.4_47.8_-1.3_47.9" ><polygon points="160.5,215.2 164.3,215.2 164.3,220.9 160.5,220.9 160.5,215.2 " /></g><g id="bbox:-1.3_47.8_-1.2_47.9" ><polygon points="164.3,215.2 168.2,215.2 168.2,220.9 164.3,220.9 164.3,215.2 " /></g><g id="bbox:-1.2_47.8_-1.1_47.9" ><polygon points="168.2,215.2 172.0,215.2 172.0,220.9 168.2,220.9 168.2,215.2 " /></g><g id="bbox:-1.1_47.8_-1_47.9" ><polygon points="172.0,215.2 175.9,215.2 175.9,220.9 172.0,220.9 172.0,215.2 " /></g><g id="bbox:-1_47.8_-0.9_47.9" ><polygon points="175.9,215.2 179.7,215.2 179.7,220.9 175.9,220.9 175.9,215.2 " /></g><g id="bbox:-0.9_47.8_-0.8_47.9" ><polygon points="179.7,215.2 183.6,215.2 183.6,220.9 179.7,220.9 179.7,215.2 " /></g><g id="bbox:-0.8_47.8_-0.7_47.9" ><polygon points="183.6,215.2 187.4,215.2 187.4,220.9 183.6,220.9 183.6,215.2 " /></g><g id="bbox:-0.7_47.8_-0.6_47.9" ><polygon points="187.4,215.2 191.3,215.2 191.3,220.9 187.4,220.9 187.4,215.2 " /></g><g id="bbox:-0.6_47.8_-0.5_47.9" ><polygon points="191.3,215.2 195.1,215.2 195.1,220.9 191.3,220.9 191.3,215.2 " /></g><g id="bbox:-0.5_47.8_-0.4_47.9" ><polygon points="195.1,215.2 198.9,215.2 198.9,220.9 195.1,220.9 195.1,215.2 " /></g><g id="bbox:-0.4_47.8_-0.3_47.9" ><polygon points="198.9,215.2 202.8,215.2 202.8,220.9 198.9,220.9 198.9,215.2 " /></g><g id="bbox:-0.3_47.8_-0.2_47.9" ><polygon points="202.8,215.2 206.6,215.2 206.6,220.9 202.8,220.9 202.8,215.2 " /></g><g id="bbox:-0.2_47.8_-0.1_47.9" ><polygon points="206.6,215.2 210.5,215.2 210.5,220.9 206.6,220.9 206.6,215.2 " /></g><g id="bbox:-0.1_47.8_0_47.9" ><polygon points="210.5,215.2 214.3,215.2 214.3,220.9 210.5,220.9 210.5,215.2 " /></g><g id="bbox:0_47.8_0.1_47.9" ><polygon points="214.3,215.2 218.2,215.2 218.2,220.9 214.3,220.9 214.3,215.2 " /></g><g id="bbox:0.1_47.8_0.2_47.9" ><polygon points="218.2,215.2 222.0,215.2 222.0,220.9 218.2,220.9 218.2,215.2 " /></g><g id="bbox:0.2_47.8_0.3_47.9" ><polygon points="222.0,215.2 225.9,215.2 225.9,220.9 222.0,220.9 222.0,215.2 " /></g><g id="bbox:0.3_47.8_0.4_47.9" ><polygon points="225.9,215.2 229.7,215.2 229.7,220.9 225.9,220.9 225.9,215.2 " /></g><g id="bbox:0.4_47.8_0.5_47.9" ><polygon points="229.7,215.2 233.6,215.2 233.6,220.9 229.7,220.9 229.7,215.2 " /></g><g id="bbox:0.5_47.8_0.6_47.9" ><polygon points="233.6,215.2 237.4,215.2 237.4,220.9 233.6,220.9 233.6,215.2 " /></g><g id="bbox:0.6_47.8_0.7_47.9" ><polygon points="237.4,215.2 241.3,215.2 241.3,220.9 237.4,220.9 237.4,215.2 " /></g><g id="bbox:0.7_47.8_0.8_47.9" ><polygon points="241.3,215.2 245.1,215.2 245.1,220.9 241.3,220.9 241.3,215.2 " /></g><g id="bbox:0.8_47.8_0.9_47.9" ><polygon points="245.1,215.2 249.0,215.2 249.0,220.9 245.1,220.9 245.1,215.2 " /></g><g id="bbox:0.9_47.8_1_47.9" ><polygon points="249.0,215.2 252.8,215.2 252.8,220.9 249.0,220.9 249.0,215.2 " /></g><g id="bbox:1_47.8_1.1_47.9" ><polygon points="252.8,215.2 256.7,215.2 256.7,220.9 252.8,220.9 252.8,215.2 " /></g><g id="bbox:1.1_47.8_1.2_47.9" ><polygon points="256.7,215.2 260.5,215.2 260.5,220.9 256.7,220.9 256.7,215.2 " /></g><g id="bbox:1.2_47.8_1.3_47.9" ><polygon points="260.5,215.2 264.4,215.2 264.4,220.9 260.5,220.9 260.5,215.2 " /></g><g id="bbox:1.3_47.8_1.4_47.9" ><polygon points="264.4,215.2 268.2,215.2 268.2,220.9 264.4,220.9 264.4,215.2 " /></g><g id="bbox:1.4_47.8_1.5_47.9" ><polygon points="268.2,215.2 272.1,215.2 272.1,220.9 268.2,220.9 268.2,215.2 " /></g><g id="bbox:1.5_47.8_1.6_47.9" ><polygon points="272.1,215.2 275.9,215.2 275.9,220.9 272.1,220.9 272.1,215.2 " /></g><g id="bbox:1.6_47.8_1.7_47.9" ><polygon points="275.9,215.2 279.8,215.2 279.8,220.9 275.9,220.9 275.9,215.2 " /></g><g id="bbox:1.7_47.8_1.8_47.9" ><polygon points="279.8,215.2 283.6,215.2 283.6,220.9 279.8,220.9 279.8,215.2 " /></g><g id="bbox:1.8_47.8_1.9_47.9" ><polygon points="283.6,215.2 287.5,215.2 287.5,220.9 283.6,220.9 283.6,215.2 " /></g><g id="bbox:1.9_47.8_2_47.9" ><polygon points="287.5,215.2 291.3,215.2 291.3,220.9 287.5,220.9 287.5,215.2 " /></g><g id="bbox:2_47.8_2.1_47.9" ><polygon points="291.3,215.2 295.2,215.2 295.2,220.9 291.3,220.9 291.3,215.2 " /></g><g id="bbox:2.1_47.8_2.2_47.9" ><polygon points="295.2,215.2 299.0,215.2 299.0,220.9 295.2,220.9 295.2,215.2 " /></g><g id="bbox:2.2_47.8_2.3_47.9" ><polygon points="299.0,215.2 302.8,215.2 302.8,220.9 299.0,220.9 299.0,215.2 " /></g><g id="bbox:2.3_47.8_2.4_47.9" ><polygon points="302.8,215.2 306.7,215.2 306.7,220.9 302.8,220.9 302.8,215.2 " /></g><g id="bbox:2.4_47.8_2.5_47.9" ><polygon points="306.7,215.2 310.5,215.2 310.5,220.9 306.7,220.9 306.7,215.2 " /></g><g id="bbox:2.5_47.8_2.6_47.9" ><polygon points="310.5,215.2 314.4,215.2 314.4,220.9 310.5,220.9 310.5,215.2 " /></g><g id="bbox:2.6_47.8_2.7_47.9" ><polygon points="314.4,215.2 318.2,215.2 318.2,220.9 314.4,220.9 314.4,215.2 " /></g><g id="bbox:2.7_47.8_2.8_47.9" ><polygon points="318.2,215.2 322.1,215.2 322.1,220.9 318.2,220.9 318.2,215.2 " /></g><g id="bbox:2.8_47.8_2.9_47.9" ><polygon points="322.1,215.2 325.9,215.2 325.9,220.9 322.1,220.9 322.1,215.2 " /></g><g id="bbox:2.9_47.8_3_47.9" ><polygon points="325.9,215.2 329.8,215.2 329.8,220.9 325.9,220.9 325.9,215.2 " /></g><g id="bbox:3_47.8_3.1_47.9" ><polygon points="329.8,215.2 333.6,215.2 333.6,220.9 329.8,220.9 329.8,215.2 " /></g><g id="bbox:3.1_47.8_3.2_47.9" ><polygon points="333.6,215.2 337.5,215.2 337.5,220.9 333.6,220.9 333.6,215.2 " /></g><g id="bbox:3.2_47.8_3.3_47.9" ><polygon points="337.5,215.2 341.3,215.2 341.3,220.9 337.5,220.9 337.5,215.2 " /></g><g id="bbox:3.3_47.8_3.4_47.9" ><polygon points="341.3,215.2 345.2,215.2 345.2,220.9 341.3,220.9 341.3,215.2 " /></g><g id="bbox:3.4_47.8_3.5_47.9" ><polygon points="345.2,215.2 349.0,215.2 349.0,220.9 345.2,220.9 345.2,215.2 " /></g><g id="bbox:3.5_47.8_3.6_47.9" ><polygon points="349.0,215.2 352.9,215.2 352.9,220.9 349.0,220.9 349.0,215.2 " /></g><g id="bbox:3.6_47.8_3.7_47.9" ><polygon points="352.9,215.2 356.7,215.2 356.7,220.9 352.9,220.9 352.9,215.2 " /></g><g id="bbox:3.7_47.8_3.8_47.9" ><polygon points="356.7,215.2 360.6,215.2 360.6,220.9 356.7,220.9 356.7,215.2 " /></g><g id="bbox:3.8_47.8_3.9_47.9" ><polygon points="360.6,215.2 364.4,215.2 364.4,220.9 360.6,220.9 360.6,215.2 " /></g><g id="bbox:3.9_47.8_4_47.9" ><polygon points="364.4,215.2 368.3,215.2 368.3,220.9 364.4,220.9 364.4,215.2 " /></g><g id="bbox:4_47.8_4.1_47.9" ><polygon points="368.3,215.2 372.1,215.2 372.1,220.9 368.3,220.9 368.3,215.2 " /></g><g id="bbox:4.1_47.8_4.2_47.9" ><polygon points="372.1,215.2 376.0,215.2 376.0,220.9 372.1,220.9 372.1,215.2 " /></g><g id="bbox:4.2_47.8_4.3_47.9" ><polygon points="376.0,215.2 379.8,215.2 379.8,220.9 376.0,220.9 376.0,215.2 " /></g><g id="bbox:4.3_47.8_4.4_47.9" ><polygon points="379.8,215.2 383.7,215.2 383.7,220.9 379.8,220.9 379.8,215.2 " /></g><g id="bbox:4.4_47.8_4.5_47.9" ><polygon points="383.7,215.2 387.5,215.2 387.5,220.9 383.7,220.9 383.7,215.2 " /></g><g id="bbox:4.5_47.8_4.6_47.9" ><polygon points="387.5,215.2 391.4,215.2 391.4,220.9 387.5,220.9 387.5,215.2 " /></g><g id="bbox:4.6_47.8_4.7_47.9" ><polygon points="391.4,215.2 395.2,215.2 395.2,220.9 391.4,220.9 391.4,215.2 " /></g><g id="bbox:4.7_47.8_4.8_47.9" ><polygon points="395.2,215.2 399.1,215.2 399.1,220.9 395.2,220.9 395.2,215.2 " /></g><g id="bbox:4.8_47.8_4.9_47.9" ><polygon points="399.1,215.2 402.9,215.2 402.9,220.9 399.1,220.9 399.1,215.2 " /></g><g id="bbox:4.9_47.8_5_47.9" ><polygon points="402.9,215.2 406.7,215.2 406.7,220.9 402.9,220.9 402.9,215.2 " /></g><g id="bbox:5_47.8_5.1_47.9" ><polygon points="406.7,215.2 410.6,215.2 410.6,220.9 406.7,220.9 406.7,215.2 " /></g><g id="bbox:5.1_47.8_5.2_47.9" ><polygon points="410.6,215.2 414.4,215.2 414.4,220.9 410.6,220.9 410.6,215.2 " /></g><g id="bbox:5.2_47.8_5.3_47.9" ><polygon points="414.4,215.2 418.3,215.2 418.3,220.9 414.4,220.9 414.4,215.2 " /></g><g id="bbox:5.3_47.8_5.4_47.9" ><polygon points="418.3,215.2 422.1,215.2 422.1,220.9 418.3,220.9 418.3,215.2 " /></g><g id="bbox:5.4_47.8_5.5_47.9" ><polygon points="422.1,215.2 426.0,215.2 426.0,220.9 422.1,220.9 422.1,215.2 " /></g><g id="bbox:5.5_47.8_5.6_47.9" ><polygon points="426.0,215.2 429.8,215.2 429.8,220.9 426.0,220.9 426.0,215.2 " /></g><g id="bbox:5.6_47.8_5.7_47.9" ><polygon points="429.8,215.2 433.7,215.2 433.7,220.9 429.8,220.9 429.8,215.2 " /></g><g id="bbox:5.7_47.8_5.8_47.9" ><polygon points="433.7,215.2 437.5,215.2 437.5,220.9 433.7,220.9 433.7,215.2 " /></g><g id="bbox:5.8_47.8_5.9_47.9" ><polygon points="437.5,215.2 441.4,215.2 441.4,220.9 437.5,220.9 437.5,215.2 " /></g><g id="bbox:5.9_47.8_6_47.9" ><polygon points="441.4,215.2 445.2,215.2 445.2,220.9 441.4,220.9 441.4,215.2 " /></g><g id="bbox:6_47.8_6.1_47.9" ><polygon points="445.2,215.2 449.1,215.2 449.1,220.9 445.2,220.9 445.2,215.2 " /></g><g id="bbox:6.1_47.8_6.2_47.9" ><polygon points="449.1,215.2 452.9,215.2 452.9,220.9 449.1,220.9 449.1,215.2 " /></g><g id="bbox:6.2_47.8_6.3_47.9" ><polygon points="452.9,215.2 456.8,215.2 456.8,220.9 452.9,220.9 452.9,215.2 " /></g><g id="bbox:6.3_47.8_6.4_47.9" ><polygon points="456.8,215.2 460.6,215.2 460.6,220.9 456.8,220.9 456.8,215.2 " /></g><g id="bbox:6.4_47.8_6.5_47.9" ><polygon points="460.6,215.2 464.5,215.2 464.5,220.9 460.6,220.9 460.6,215.2 " /></g><g id="bbox:6.5_47.8_6.6_47.9" ><polygon points="464.5,215.2 468.3,215.2 468.3,220.9 464.5,220.9 464.5,215.2 " /></g><g id="bbox:6.6_47.8_6.7_47.9" ><polygon points="468.3,215.2 472.2,215.2 472.2,220.9 468.3,220.9 468.3,215.2 " /></g><g id="bbox:6.7_47.8_6.8_47.9" ><polygon points="472.2,215.2 476.0,215.2 476.0,220.9 472.2,220.9 472.2,215.2 " /></g><g id="bbox:6.8_47.8_6.9_47.9" ><polygon points="476.0,215.2 479.9,215.2 479.9,220.9 476.0,220.9 476.0,215.2 " /></g><g id="bbox:6.9_47.8_7_47.9" ><polygon points="479.9,215.2 483.7,215.2 483.7,220.9 479.9,220.9 479.9,215.2 " /></g><g id="bbox:7_47.8_7.1_47.9" ><polygon points="483.7,215.2 487.6,215.2 487.6,220.9 483.7,220.9 483.7,215.2 " /></g><g id="bbox:7.1_47.8_7.2_47.9" ><polygon points="487.6,215.2 491.4,215.2 491.4,220.9 487.6,220.9 487.6,215.2 " /></g><g id="bbox:7.2_47.8_7.3_47.9" ><polygon points="491.4,215.2 495.3,215.2 495.3,220.9 491.4,220.9 491.4,215.2 " /></g><g id="bbox:7.3_47.8_7.4_47.9" ><polygon points="495.3,215.2 499.1,215.2 499.1,220.9 495.3,220.9 495.3,215.2 " /></g><g id="bbox:7.4_47.8_7.5_47.9" ><polygon points="499.1,215.2 503.0,215.2 503.0,220.9 499.1,220.9 499.1,215.2 " /></g><g id="bbox:7.5_47.8_7.6_47.9" ><polygon points="503.0,215.2 506.8,215.2 506.8,220.9 503.0,220.9 503.0,215.2 " /></g><g id="bbox:-4.4_47.7_-4.3_47.8" ><polygon points="45.0,220.9 48.9,220.9 48.9,226.7 45.0,226.7 45.0,220.9 " /></g><g id="bbox:-4.3_47.7_-4.2_47.8" ><polygon points="48.9,220.9 52.7,220.9 52.7,226.7 48.9,226.7 48.9,220.9 " /></g><g id="bbox:-4.2_47.7_-4.1_47.8" ><polygon points="52.7,220.9 56.6,220.9 56.6,226.7 52.7,226.7 52.7,220.9 " /></g><g id="bbox:-4.1_47.7_-4_47.8" ><polygon points="56.6,220.9 60.4,220.9 60.4,226.7 56.6,226.7 56.6,220.9 " /></g><g id="bbox:-4_47.7_-3.9_47.8" ><polygon points="60.4,220.9 64.3,220.9 64.3,226.7 60.4,226.7 60.4,220.9 " /></g><g id="bbox:-3.9_47.7_-3.8_47.8" ><polygon points="64.3,220.9 68.1,220.9 68.1,226.7 64.3,226.7 64.3,220.9 " /></g><g id="bbox:-3.8_47.7_-3.7_47.8" ><polygon points="68.1,220.9 72.0,220.9 72.0,226.7 68.1,226.7 68.1,220.9 " /></g><g id="bbox:-3.7_47.7_-3.6_47.8" ><polygon points="72.0,220.9 75.8,220.9 75.8,226.7 72.0,226.7 72.0,220.9 " /></g><g id="bbox:-3.6_47.7_-3.5_47.8" ><polygon points="75.8,220.9 79.7,220.9 79.7,226.7 75.8,226.7 75.8,220.9 " /></g><g id="bbox:-3.5_47.7_-3.4_47.8" ><polygon points="79.7,220.9 83.5,220.9 83.5,226.7 79.7,226.7 79.7,220.9 " /></g><g id="bbox:-3.4_47.7_-3.3_47.8" ><polygon points="83.5,220.9 87.4,220.9 87.4,226.7 83.5,226.7 83.5,220.9 " /></g><g id="bbox:-3.3_47.7_-3.2_47.8" ><polygon points="87.4,220.9 91.2,220.9 91.2,226.7 87.4,226.7 87.4,220.9 " /></g><g id="bbox:-3.2_47.7_-3.1_47.8" ><polygon points="91.2,220.9 95.0,220.9 95.0,226.7 91.2,226.7 91.2,220.9 " /></g><g id="bbox:-3.1_47.7_-3_47.8" ><polygon points="95.0,220.9 98.9,220.9 98.9,226.7 95.0,226.7 95.0,220.9 " /></g><g id="bbox:-3_47.7_-2.9_47.8" ><polygon points="98.9,220.9 102.7,220.9 102.7,226.7 98.9,226.7 98.9,220.9 " /></g><g id="bbox:-2.9_47.7_-2.8_47.8" ><polygon points="102.7,220.9 106.6,220.9 106.6,226.7 102.7,226.7 102.7,220.9 " /></g><g id="bbox:-2.8_47.7_-2.7_47.8" ><polygon points="106.6,220.9 110.4,220.9 110.4,226.7 106.6,226.7 106.6,220.9 " /></g><g id="bbox:-2.7_47.7_-2.6_47.8" ><polygon points="110.4,220.9 114.3,220.9 114.3,226.7 110.4,226.7 110.4,220.9 " /></g><g id="bbox:-2.6_47.7_-2.5_47.8" ><polygon points="114.3,220.9 118.1,220.9 118.1,226.7 114.3,226.7 114.3,220.9 " /></g><g id="bbox:-2.5_47.7_-2.4_47.8" ><polygon points="118.1,220.9 122.0,220.9 122.0,226.7 118.1,226.7 118.1,220.9 " /></g><g id="bbox:-2.4_47.7_-2.3_47.8" ><polygon points="122.0,220.9 125.8,220.9 125.8,226.7 122.0,226.7 122.0,220.9 " /></g><g id="bbox:-2.3_47.7_-2.2_47.8" ><polygon points="125.8,220.9 129.7,220.9 129.7,226.7 125.8,226.7 125.8,220.9 " /></g><g id="bbox:-2.2_47.7_-2.1_47.8" ><polygon points="129.7,220.9 133.5,220.9 133.5,226.7 129.7,226.7 129.7,220.9 " /></g><g id="bbox:-2.1_47.7_-2_47.8" ><polygon points="133.5,220.9 137.4,220.9 137.4,226.7 133.5,226.7 133.5,220.9 " /></g><g id="bbox:-2_47.7_-1.9_47.8" ><polygon points="137.4,220.9 141.2,220.9 141.2,226.7 137.4,226.7 137.4,220.9 " /></g><g id="bbox:-1.9_47.7_-1.8_47.8" ><polygon points="141.2,220.9 145.1,220.9 145.1,226.7 141.2,226.7 141.2,220.9 " /></g><g id="bbox:-1.8_47.7_-1.7_47.8" ><polygon points="145.1,220.9 148.9,220.9 148.9,226.7 145.1,226.7 145.1,220.9 " /></g><g id="bbox:-1.7_47.7_-1.6_47.8" ><polygon points="148.9,220.9 152.8,220.9 152.8,226.7 148.9,226.7 148.9,220.9 " /></g><g id="bbox:-1.6_47.7_-1.5_47.8" ><polygon points="152.8,220.9 156.6,220.9 156.6,226.7 152.8,226.7 152.8,220.9 " /></g><g id="bbox:-1.5_47.7_-1.4_47.8" ><polygon points="156.6,220.9 160.5,220.9 160.5,226.7 156.6,226.7 156.6,220.9 " /></g><g id="bbox:-1.4_47.7_-1.3_47.8" ><polygon points="160.5,220.9 164.3,220.9 164.3,226.7 160.5,226.7 160.5,220.9 " /></g><g id="bbox:-1.3_47.7_-1.2_47.8" ><polygon points="164.3,220.9 168.2,220.9 168.2,226.7 164.3,226.7 164.3,220.9 " /></g><g id="bbox:-1.2_47.7_-1.1_47.8" ><polygon points="168.2,220.9 172.0,220.9 172.0,226.7 168.2,226.7 168.2,220.9 " /></g><g id="bbox:-1.1_47.7_-1_47.8" ><polygon points="172.0,220.9 175.9,220.9 175.9,226.7 172.0,226.7 172.0,220.9 " /></g><g id="bbox:-1_47.7_-0.9_47.8" ><polygon points="175.9,220.9 179.7,220.9 179.7,226.7 175.9,226.7 175.9,220.9 " /></g><g id="bbox:-0.9_47.7_-0.8_47.8" ><polygon points="179.7,220.9 183.6,220.9 183.6,226.7 179.7,226.7 179.7,220.9 " /></g><g id="bbox:-0.8_47.7_-0.7_47.8" ><polygon points="183.6,220.9 187.4,220.9 187.4,226.7 183.6,226.7 183.6,220.9 " /></g><g id="bbox:-0.7_47.7_-0.6_47.8" ><polygon points="187.4,220.9 191.3,220.9 191.3,226.7 187.4,226.7 187.4,220.9 " /></g><g id="bbox:-0.6_47.7_-0.5_47.8" ><polygon points="191.3,220.9 195.1,220.9 195.1,226.7 191.3,226.7 191.3,220.9 " /></g><g id="bbox:-0.5_47.7_-0.4_47.8" ><polygon points="195.1,220.9 198.9,220.9 198.9,226.7 195.1,226.7 195.1,220.9 " /></g><g id="bbox:-0.4_47.7_-0.3_47.8" ><polygon points="198.9,220.9 202.8,220.9 202.8,226.7 198.9,226.7 198.9,220.9 " /></g><g id="bbox:-0.3_47.7_-0.2_47.8" ><polygon points="202.8,220.9 206.6,220.9 206.6,226.7 202.8,226.7 202.8,220.9 " /></g><g id="bbox:-0.2_47.7_-0.1_47.8" ><polygon points="206.6,220.9 210.5,220.9 210.5,226.7 206.6,226.7 206.6,220.9 " /></g><g id="bbox:-0.1_47.7_0_47.8" ><polygon points="210.5,220.9 214.3,220.9 214.3,226.7 210.5,226.7 210.5,220.9 " /></g><g id="bbox:0_47.7_0.1_47.8" ><polygon points="214.3,220.9 218.2,220.9 218.2,226.7 214.3,226.7 214.3,220.9 " /></g><g id="bbox:0.1_47.7_0.2_47.8" ><polygon points="218.2,220.9 222.0,220.9 222.0,226.7 218.2,226.7 218.2,220.9 " /></g><g id="bbox:0.2_47.7_0.3_47.8" ><polygon points="222.0,220.9 225.9,220.9 225.9,226.7 222.0,226.7 222.0,220.9 " /></g><g id="bbox:0.3_47.7_0.4_47.8" ><polygon points="225.9,220.9 229.7,220.9 229.7,226.7 225.9,226.7 225.9,220.9 " /></g><g id="bbox:0.4_47.7_0.5_47.8" ><polygon points="229.7,220.9 233.6,220.9 233.6,226.7 229.7,226.7 229.7,220.9 " /></g><g id="bbox:0.5_47.7_0.6_47.8" ><polygon points="233.6,220.9 237.4,220.9 237.4,226.7 233.6,226.7 233.6,220.9 " /></g><g id="bbox:0.6_47.7_0.7_47.8" ><polygon points="237.4,220.9 241.3,220.9 241.3,226.7 237.4,226.7 237.4,220.9 " /></g><g id="bbox:0.7_47.7_0.8_47.8" ><polygon points="241.3,220.9 245.1,220.9 245.1,226.7 241.3,226.7 241.3,220.9 " /></g><g id="bbox:0.8_47.7_0.9_47.8" ><polygon points="245.1,220.9 249.0,220.9 249.0,226.7 245.1,226.7 245.1,220.9 " /></g><g id="bbox:0.9_47.7_1_47.8" ><polygon points="249.0,220.9 252.8,220.9 252.8,226.7 249.0,226.7 249.0,220.9 " /></g><g id="bbox:1_47.7_1.1_47.8" ><polygon points="252.8,220.9 256.7,220.9 256.7,226.7 252.8,226.7 252.8,220.9 " /></g><g id="bbox:1.1_47.7_1.2_47.8" ><polygon points="256.7,220.9 260.5,220.9 260.5,226.7 256.7,226.7 256.7,220.9 " /></g><g id="bbox:1.2_47.7_1.3_47.8" ><polygon points="260.5,220.9 264.4,220.9 264.4,226.7 260.5,226.7 260.5,220.9 " /></g><g id="bbox:1.3_47.7_1.4_47.8" ><polygon points="264.4,220.9 268.2,220.9 268.2,226.7 264.4,226.7 264.4,220.9 " /></g><g id="bbox:1.4_47.7_1.5_47.8" ><polygon points="268.2,220.9 272.1,220.9 272.1,226.7 268.2,226.7 268.2,220.9 " /></g><g id="bbox:1.5_47.7_1.6_47.8" ><polygon points="272.1,220.9 275.9,220.9 275.9,226.7 272.1,226.7 272.1,220.9 " /></g><g id="bbox:1.6_47.7_1.7_47.8" ><polygon points="275.9,220.9 279.8,220.9 279.8,226.7 275.9,226.7 275.9,220.9 " /></g><g id="bbox:1.7_47.7_1.8_47.8" ><polygon points="279.8,220.9 283.6,220.9 283.6,226.7 279.8,226.7 279.8,220.9 " /></g><g id="bbox:1.8_47.7_1.9_47.8" ><polygon points="283.6,220.9 287.5,220.9 287.5,226.7 283.6,226.7 283.6,220.9 " /></g><g id="bbox:1.9_47.7_2_47.8" ><polygon points="287.5,220.9 291.3,220.9 291.3,226.7 287.5,226.7 287.5,220.9 " /></g><g id="bbox:2_47.7_2.1_47.8" ><polygon points="291.3,220.9 295.2,220.9 295.2,226.7 291.3,226.7 291.3,220.9 " /></g><g id="bbox:2.1_47.7_2.2_47.8" ><polygon points="295.2,220.9 299.0,220.9 299.0,226.7 295.2,226.7 295.2,220.9 " /></g><g id="bbox:2.2_47.7_2.3_47.8" ><polygon points="299.0,220.9 302.8,220.9 302.8,226.7 299.0,226.7 299.0,220.9 " /></g><g id="bbox:2.3_47.7_2.4_47.8" ><polygon points="302.8,220.9 306.7,220.9 306.7,226.7 302.8,226.7 302.8,220.9 " /></g><g id="bbox:2.4_47.7_2.5_47.8" ><polygon points="306.7,220.9 310.5,220.9 310.5,226.7 306.7,226.7 306.7,220.9 " /></g><g id="bbox:2.5_47.7_2.6_47.8" ><polygon points="310.5,220.9 314.4,220.9 314.4,226.7 310.5,226.7 310.5,220.9 " /></g><g id="bbox:2.6_47.7_2.7_47.8" ><polygon points="314.4,220.9 318.2,220.9 318.2,226.7 314.4,226.7 314.4,220.9 " /></g><g id="bbox:2.7_47.7_2.8_47.8" ><polygon points="318.2,220.9 322.1,220.9 322.1,226.7 318.2,226.7 318.2,220.9 " /></g><g id="bbox:2.8_47.7_2.9_47.8" ><polygon points="322.1,220.9 325.9,220.9 325.9,226.7 322.1,226.7 322.1,220.9 " /></g><g id="bbox:2.9_47.7_3_47.8" ><polygon points="325.9,220.9 329.8,220.9 329.8,226.7 325.9,226.7 325.9,220.9 " /></g><g id="bbox:3_47.7_3.1_47.8" ><polygon points="329.8,220.9 333.6,220.9 333.6,226.7 329.8,226.7 329.8,220.9 " /></g><g id="bbox:3.1_47.7_3.2_47.8" ><polygon points="333.6,220.9 337.5,220.9 337.5,226.7 333.6,226.7 333.6,220.9 " /></g><g id="bbox:3.2_47.7_3.3_47.8" ><polygon points="337.5,220.9 341.3,220.9 341.3,226.7 337.5,226.7 337.5,220.9 " /></g><g id="bbox:3.3_47.7_3.4_47.8" ><polygon points="341.3,220.9 345.2,220.9 345.2,226.7 341.3,226.7 341.3,220.9 " /></g><g id="bbox:3.4_47.7_3.5_47.8" ><polygon points="345.2,220.9 349.0,220.9 349.0,226.7 345.2,226.7 345.2,220.9 " /></g><g id="bbox:3.5_47.7_3.6_47.8" ><polygon points="349.0,220.9 352.9,220.9 352.9,226.7 349.0,226.7 349.0,220.9 " /></g><g id="bbox:3.6_47.7_3.7_47.8" ><polygon points="352.9,220.9 356.7,220.9 356.7,226.7 352.9,226.7 352.9,220.9 " /></g><g id="bbox:3.7_47.7_3.8_47.8" ><polygon points="356.7,220.9 360.6,220.9 360.6,226.7 356.7,226.7 356.7,220.9 " /></g><g id="bbox:3.8_47.7_3.9_47.8" ><polygon points="360.6,220.9 364.4,220.9 364.4,226.7 360.6,226.7 360.6,220.9 " /></g><g id="bbox:3.9_47.7_4_47.8" ><polygon points="364.4,220.9 368.3,220.9 368.3,226.7 364.4,226.7 364.4,220.9 " /></g><g id="bbox:4_47.7_4.1_47.8" ><polygon points="368.3,220.9 372.1,220.9 372.1,226.7 368.3,226.7 368.3,220.9 " /></g><g id="bbox:4.1_47.7_4.2_47.8" ><polygon points="372.1,220.9 376.0,220.9 376.0,226.7 372.1,226.7 372.1,220.9 " /></g><g id="bbox:4.2_47.7_4.3_47.8" ><polygon points="376.0,220.9 379.8,220.9 379.8,226.7 376.0,226.7 376.0,220.9 " /></g><g id="bbox:4.3_47.7_4.4_47.8" ><polygon points="379.8,220.9 383.7,220.9 383.7,226.7 379.8,226.7 379.8,220.9 " /></g><g id="bbox:4.4_47.7_4.5_47.8" ><polygon points="383.7,220.9 387.5,220.9 387.5,226.7 383.7,226.7 383.7,220.9 " /></g><g id="bbox:4.5_47.7_4.6_47.8" ><polygon points="387.5,220.9 391.4,220.9 391.4,226.7 387.5,226.7 387.5,220.9 " /></g><g id="bbox:4.6_47.7_4.7_47.8" ><polygon points="391.4,220.9 395.2,220.9 395.2,226.7 391.4,226.7 391.4,220.9 " /></g><g id="bbox:4.7_47.7_4.8_47.8" ><polygon points="395.2,220.9 399.1,220.9 399.1,226.7 395.2,226.7 395.2,220.9 " /></g><g id="bbox:4.8_47.7_4.9_47.8" ><polygon points="399.1,220.9 402.9,220.9 402.9,226.7 399.1,226.7 399.1,220.9 " /></g><g id="bbox:4.9_47.7_5_47.8" ><polygon points="402.9,220.9 406.7,220.9 406.7,226.7 402.9,226.7 402.9,220.9 " /></g><g id="bbox:5_47.7_5.1_47.8" ><polygon points="406.7,220.9 410.6,220.9 410.6,226.7 406.7,226.7 406.7,220.9 " /></g><g id="bbox:5.1_47.7_5.2_47.8" ><polygon points="410.6,220.9 414.4,220.9 414.4,226.7 410.6,226.7 410.6,220.9 " /></g><g id="bbox:5.2_47.7_5.3_47.8" ><polygon points="414.4,220.9 418.3,220.9 418.3,226.7 414.4,226.7 414.4,220.9 " /></g><g id="bbox:5.3_47.7_5.4_47.8" ><polygon points="418.3,220.9 422.1,220.9 422.1,226.7 418.3,226.7 418.3,220.9 " /></g><g id="bbox:5.4_47.7_5.5_47.8" ><polygon points="422.1,220.9 426.0,220.9 426.0,226.7 422.1,226.7 422.1,220.9 " /></g><g id="bbox:5.5_47.7_5.6_47.8" ><polygon points="426.0,220.9 429.8,220.9 429.8,226.7 426.0,226.7 426.0,220.9 " /></g><g id="bbox:5.6_47.7_5.7_47.8" ><polygon points="429.8,220.9 433.7,220.9 433.7,226.7 429.8,226.7 429.8,220.9 " /></g><g id="bbox:5.7_47.7_5.8_47.8" ><polygon points="433.7,220.9 437.5,220.9 437.5,226.7 433.7,226.7 433.7,220.9 " /></g><g id="bbox:5.8_47.7_5.9_47.8" ><polygon points="437.5,220.9 441.4,220.9 441.4,226.7 437.5,226.7 437.5,220.9 " /></g><g id="bbox:5.9_47.7_6_47.8" ><polygon points="441.4,220.9 445.2,220.9 445.2,226.7 441.4,226.7 441.4,220.9 " /></g><g id="bbox:6_47.7_6.1_47.8" ><polygon points="445.2,220.9 449.1,220.9 449.1,226.7 445.2,226.7 445.2,220.9 " /></g><g id="bbox:6.1_47.7_6.2_47.8" ><polygon points="449.1,220.9 452.9,220.9 452.9,226.7 449.1,226.7 449.1,220.9 " /></g><g id="bbox:6.2_47.7_6.3_47.8" ><polygon points="452.9,220.9 456.8,220.9 456.8,226.7 452.9,226.7 452.9,220.9 " /></g><g id="bbox:6.3_47.7_6.4_47.8" ><polygon points="456.8,220.9 460.6,220.9 460.6,226.7 456.8,226.7 456.8,220.9 " /></g><g id="bbox:6.4_47.7_6.5_47.8" ><polygon points="460.6,220.9 464.5,220.9 464.5,226.7 460.6,226.7 460.6,220.9 " /></g><g id="bbox:6.5_47.7_6.6_47.8" ><polygon points="464.5,220.9 468.3,220.9 468.3,226.7 464.5,226.7 464.5,220.9 " /></g><g id="bbox:6.6_47.7_6.7_47.8" ><polygon points="468.3,220.9 472.2,220.9 472.2,226.7 468.3,226.7 468.3,220.9 " /></g><g id="bbox:6.7_47.7_6.8_47.8" ><polygon points="472.2,220.9 476.0,220.9 476.0,226.7 472.2,226.7 472.2,220.9 " /></g><g id="bbox:6.8_47.7_6.9_47.8" ><polygon points="476.0,220.9 479.9,220.9 479.9,226.7 476.0,226.7 476.0,220.9 " /></g><g id="bbox:6.9_47.7_7_47.8" ><polygon points="479.9,220.9 483.7,220.9 483.7,226.7 479.9,226.7 479.9,220.9 " /></g><g id="bbox:7_47.7_7.1_47.8" ><polygon points="483.7,220.9 487.6,220.9 487.6,226.7 483.7,226.7 483.7,220.9 " /></g><g id="bbox:7.1_47.7_7.2_47.8" ><polygon points="487.6,220.9 491.4,220.9 491.4,226.7 487.6,226.7 487.6,220.9 " /></g><g id="bbox:7.2_47.7_7.3_47.8" ><polygon points="491.4,220.9 495.3,220.9 495.3,226.7 491.4,226.7 491.4,220.9 " /></g><g id="bbox:7.3_47.7_7.4_47.8" ><polygon points="495.3,220.9 499.1,220.9 499.1,226.7 495.3,226.7 495.3,220.9 " /></g><g id="bbox:7.4_47.7_7.5_47.8" ><polygon points="499.1,220.9 503.0,220.9 503.0,226.7 499.1,226.7 499.1,220.9 " /></g><g id="bbox:7.5_47.7_7.6_47.8" ><polygon points="503.0,220.9 506.8,220.9 506.8,226.7 503.0,226.7 503.0,220.9 " /></g><g id="bbox:-3.6_47.6_-3.5_47.7" ><polygon points="75.8,226.7 79.7,226.7 79.7,232.4 75.8,232.4 75.8,226.7 " /></g><g id="bbox:-3.5_47.6_-3.4_47.7" ><polygon points="79.7,226.7 83.5,226.7 83.5,232.4 79.7,232.4 79.7,226.7 " /></g><g id="bbox:-3.4_47.6_-3.3_47.7" ><polygon points="83.5,226.7 87.4,226.7 87.4,232.4 83.5,232.4 83.5,226.7 " /></g><g id="bbox:-3.3_47.6_-3.2_47.7" ><polygon points="87.4,226.7 91.2,226.7 91.2,232.4 87.4,232.4 87.4,226.7 " /></g><g id="bbox:-3.2_47.6_-3.1_47.7" ><polygon points="91.2,226.7 95.0,226.7 95.0,232.4 91.2,232.4 91.2,226.7 " /></g><g id="bbox:-3.1_47.6_-3_47.7" ><polygon points="95.0,226.7 98.9,226.7 98.9,232.4 95.0,232.4 95.0,226.7 " /></g><g id="bbox:-3_47.6_-2.9_47.7" ><polygon points="98.9,226.7 102.7,226.7 102.7,232.4 98.9,232.4 98.9,226.7 " /></g><g id="bbox:-2.9_47.6_-2.8_47.7" ><polygon points="102.7,226.7 106.6,226.7 106.6,232.4 102.7,232.4 102.7,226.7 " /></g><g id="bbox:-2.8_47.6_-2.7_47.7" ><polygon points="106.6,226.7 110.4,226.7 110.4,232.4 106.6,232.4 106.6,226.7 " /></g><g id="bbox:-2.7_47.6_-2.6_47.7" ><polygon points="110.4,226.7 114.3,226.7 114.3,232.4 110.4,232.4 110.4,226.7 " /></g><g id="bbox:-2.6_47.6_-2.5_47.7" ><polygon points="114.3,226.7 118.1,226.7 118.1,232.4 114.3,232.4 114.3,226.7 " /></g><g id="bbox:-2.5_47.6_-2.4_47.7" ><polygon points="118.1,226.7 122.0,226.7 122.0,232.4 118.1,232.4 118.1,226.7 " /></g><g id="bbox:-2.4_47.6_-2.3_47.7" ><polygon points="122.0,226.7 125.8,226.7 125.8,232.4 122.0,232.4 122.0,226.7 " /></g><g id="bbox:-2.3_47.6_-2.2_47.7" ><polygon points="125.8,226.7 129.7,226.7 129.7,232.4 125.8,232.4 125.8,226.7 " /></g><g id="bbox:-2.2_47.6_-2.1_47.7" ><polygon points="129.7,226.7 133.5,226.7 133.5,232.4 129.7,232.4 129.7,226.7 " /></g><g id="bbox:-2.1_47.6_-2_47.7" ><polygon points="133.5,226.7 137.4,226.7 137.4,232.4 133.5,232.4 133.5,226.7 " /></g><g id="bbox:-2_47.6_-1.9_47.7" ><polygon points="137.4,226.7 141.2,226.7 141.2,232.4 137.4,232.4 137.4,226.7 " /></g><g id="bbox:-1.9_47.6_-1.8_47.7" ><polygon points="141.2,226.7 145.1,226.7 145.1,232.4 141.2,232.4 141.2,226.7 " /></g><g id="bbox:-1.8_47.6_-1.7_47.7" ><polygon points="145.1,226.7 148.9,226.7 148.9,232.4 145.1,232.4 145.1,226.7 " /></g><g id="bbox:-1.7_47.6_-1.6_47.7" ><polygon points="148.9,226.7 152.8,226.7 152.8,232.4 148.9,232.4 148.9,226.7 " /></g><g id="bbox:-1.6_47.6_-1.5_47.7" ><polygon points="152.8,226.7 156.6,226.7 156.6,232.4 152.8,232.4 152.8,226.7 " /></g><g id="bbox:-1.5_47.6_-1.4_47.7" ><polygon points="156.6,226.7 160.5,226.7 160.5,232.4 156.6,232.4 156.6,226.7 " /></g><g id="bbox:-1.4_47.6_-1.3_47.7" ><polygon points="160.5,226.7 164.3,226.7 164.3,232.4 160.5,232.4 160.5,226.7 " /></g><g id="bbox:-1.3_47.6_-1.2_47.7" ><polygon points="164.3,226.7 168.2,226.7 168.2,232.4 164.3,232.4 164.3,226.7 " /></g><g id="bbox:-1.2_47.6_-1.1_47.7" ><polygon points="168.2,226.7 172.0,226.7 172.0,232.4 168.2,232.4 168.2,226.7 " /></g><g id="bbox:-1.1_47.6_-1_47.7" ><polygon points="172.0,226.7 175.9,226.7 175.9,232.4 172.0,232.4 172.0,226.7 " /></g><g id="bbox:-1_47.6_-0.9_47.7" ><polygon points="175.9,226.7 179.7,226.7 179.7,232.4 175.9,232.4 175.9,226.7 " /></g><g id="bbox:-0.9_47.6_-0.8_47.7" ><polygon points="179.7,226.7 183.6,226.7 183.6,232.4 179.7,232.4 179.7,226.7 " /></g><g id="bbox:-0.8_47.6_-0.7_47.7" ><polygon points="183.6,226.7 187.4,226.7 187.4,232.4 183.6,232.4 183.6,226.7 " /></g><g id="bbox:-0.7_47.6_-0.6_47.7" ><polygon points="187.4,226.7 191.3,226.7 191.3,232.4 187.4,232.4 187.4,226.7 " /></g><g id="bbox:-0.6_47.6_-0.5_47.7" ><polygon points="191.3,226.7 195.1,226.7 195.1,232.4 191.3,232.4 191.3,226.7 " /></g><g id="bbox:-0.5_47.6_-0.4_47.7" ><polygon points="195.1,226.7 198.9,226.7 198.9,232.4 195.1,232.4 195.1,226.7 " /></g><g id="bbox:-0.4_47.6_-0.3_47.7" ><polygon points="198.9,226.7 202.8,226.7 202.8,232.4 198.9,232.4 198.9,226.7 " /></g><g id="bbox:-0.3_47.6_-0.2_47.7" ><polygon points="202.8,226.7 206.6,226.7 206.6,232.4 202.8,232.4 202.8,226.7 " /></g><g id="bbox:-0.2_47.6_-0.1_47.7" ><polygon points="206.6,226.7 210.5,226.7 210.5,232.4 206.6,232.4 206.6,226.7 " /></g><g id="bbox:-0.1_47.6_0_47.7" ><polygon points="210.5,226.7 214.3,226.7 214.3,232.4 210.5,232.4 210.5,226.7 " /></g><g id="bbox:0_47.6_0.1_47.7" ><polygon points="214.3,226.7 218.2,226.7 218.2,232.4 214.3,232.4 214.3,226.7 " /></g><g id="bbox:0.1_47.6_0.2_47.7" ><polygon points="218.2,226.7 222.0,226.7 222.0,232.4 218.2,232.4 218.2,226.7 " /></g><g id="bbox:0.2_47.6_0.3_47.7" ><polygon points="222.0,226.7 225.9,226.7 225.9,232.4 222.0,232.4 222.0,226.7 " /></g><g id="bbox:0.3_47.6_0.4_47.7" ><polygon points="225.9,226.7 229.7,226.7 229.7,232.4 225.9,232.4 225.9,226.7 " /></g><g id="bbox:0.4_47.6_0.5_47.7" ><polygon points="229.7,226.7 233.6,226.7 233.6,232.4 229.7,232.4 229.7,226.7 " /></g><g id="bbox:0.5_47.6_0.6_47.7" ><polygon points="233.6,226.7 237.4,226.7 237.4,232.4 233.6,232.4 233.6,226.7 " /></g><g id="bbox:0.6_47.6_0.7_47.7" ><polygon points="237.4,226.7 241.3,226.7 241.3,232.4 237.4,232.4 237.4,226.7 " /></g><g id="bbox:0.7_47.6_0.8_47.7" ><polygon points="241.3,226.7 245.1,226.7 245.1,232.4 241.3,232.4 241.3,226.7 " /></g><g id="bbox:0.8_47.6_0.9_47.7" ><polygon points="245.1,226.7 249.0,226.7 249.0,232.4 245.1,232.4 245.1,226.7 " /></g><g id="bbox:0.9_47.6_1_47.7" ><polygon points="249.0,226.7 252.8,226.7 252.8,232.4 249.0,232.4 249.0,226.7 " /></g><g id="bbox:1_47.6_1.1_47.7" ><polygon points="252.8,226.7 256.7,226.7 256.7,232.4 252.8,232.4 252.8,226.7 " /></g><g id="bbox:1.1_47.6_1.2_47.7" ><polygon points="256.7,226.7 260.5,226.7 260.5,232.4 256.7,232.4 256.7,226.7 " /></g><g id="bbox:1.2_47.6_1.3_47.7" ><polygon points="260.5,226.7 264.4,226.7 264.4,232.4 260.5,232.4 260.5,226.7 " /></g><g id="bbox:1.3_47.6_1.4_47.7" ><polygon points="264.4,226.7 268.2,226.7 268.2,232.4 264.4,232.4 264.4,226.7 " /></g><g id="bbox:1.4_47.6_1.5_47.7" ><polygon points="268.2,226.7 272.1,226.7 272.1,232.4 268.2,232.4 268.2,226.7 " /></g><g id="bbox:1.5_47.6_1.6_47.7" ><polygon points="272.1,226.7 275.9,226.7 275.9,232.4 272.1,232.4 272.1,226.7 " /></g><g id="bbox:1.6_47.6_1.7_47.7" ><polygon points="275.9,226.7 279.8,226.7 279.8,232.4 275.9,232.4 275.9,226.7 " /></g><g id="bbox:1.7_47.6_1.8_47.7" ><polygon points="279.8,226.7 283.6,226.7 283.6,232.4 279.8,232.4 279.8,226.7 " /></g><g id="bbox:1.8_47.6_1.9_47.7" ><polygon points="283.6,226.7 287.5,226.7 287.5,232.4 283.6,232.4 283.6,226.7 " /></g><g id="bbox:1.9_47.6_2_47.7" ><polygon points="287.5,226.7 291.3,226.7 291.3,232.4 287.5,232.4 287.5,226.7 " /></g><g id="bbox:2_47.6_2.1_47.7" ><polygon points="291.3,226.7 295.2,226.7 295.2,232.4 291.3,232.4 291.3,226.7 " /></g><g id="bbox:2.1_47.6_2.2_47.7" ><polygon points="295.2,226.7 299.0,226.7 299.0,232.4 295.2,232.4 295.2,226.7 " /></g><g id="bbox:2.2_47.6_2.3_47.7" ><polygon points="299.0,226.7 302.8,226.7 302.8,232.4 299.0,232.4 299.0,226.7 " /></g><g id="bbox:2.3_47.6_2.4_47.7" ><polygon points="302.8,226.7 306.7,226.7 306.7,232.4 302.8,232.4 302.8,226.7 " /></g><g id="bbox:2.4_47.6_2.5_47.7" ><polygon points="306.7,226.7 310.5,226.7 310.5,232.4 306.7,232.4 306.7,226.7 " /></g><g id="bbox:2.5_47.6_2.6_47.7" ><polygon points="310.5,226.7 314.4,226.7 314.4,232.4 310.5,232.4 310.5,226.7 " /></g><g id="bbox:2.6_47.6_2.7_47.7" ><polygon points="314.4,226.7 318.2,226.7 318.2,232.4 314.4,232.4 314.4,226.7 " /></g><g id="bbox:2.7_47.6_2.8_47.7" ><polygon points="318.2,226.7 322.1,226.7 322.1,232.4 318.2,232.4 318.2,226.7 " /></g><g id="bbox:2.8_47.6_2.9_47.7" ><polygon points="322.1,226.7 325.9,226.7 325.9,232.4 322.1,232.4 322.1,226.7 " /></g><g id="bbox:2.9_47.6_3_47.7" ><polygon points="325.9,226.7 329.8,226.7 329.8,232.4 325.9,232.4 325.9,226.7 " /></g><g id="bbox:3_47.6_3.1_47.7" ><polygon points="329.8,226.7 333.6,226.7 333.6,232.4 329.8,232.4 329.8,226.7 " /></g><g id="bbox:3.1_47.6_3.2_47.7" ><polygon points="333.6,226.7 337.5,226.7 337.5,232.4 333.6,232.4 333.6,226.7 " /></g><g id="bbox:3.2_47.6_3.3_47.7" ><polygon points="337.5,226.7 341.3,226.7 341.3,232.4 337.5,232.4 337.5,226.7 " /></g><g id="bbox:3.3_47.6_3.4_47.7" ><polygon points="341.3,226.7 345.2,226.7 345.2,232.4 341.3,232.4 341.3,226.7 " /></g><g id="bbox:3.4_47.6_3.5_47.7" ><polygon points="345.2,226.7 349.0,226.7 349.0,232.4 345.2,232.4 345.2,226.7 " /></g><g id="bbox:3.5_47.6_3.6_47.7" ><polygon points="349.0,226.7 352.9,226.7 352.9,232.4 349.0,232.4 349.0,226.7 " /></g><g id="bbox:3.6_47.6_3.7_47.7" ><polygon points="352.9,226.7 356.7,226.7 356.7,232.4 352.9,232.4 352.9,226.7 " /></g><g id="bbox:3.7_47.6_3.8_47.7" ><polygon points="356.7,226.7 360.6,226.7 360.6,232.4 356.7,232.4 356.7,226.7 " /></g><g id="bbox:3.8_47.6_3.9_47.7" ><polygon points="360.6,226.7 364.4,226.7 364.4,232.4 360.6,232.4 360.6,226.7 " /></g><g id="bbox:3.9_47.6_4_47.7" ><polygon points="364.4,226.7 368.3,226.7 368.3,232.4 364.4,232.4 364.4,226.7 " /></g><g id="bbox:4_47.6_4.1_47.7" ><polygon points="368.3,226.7 372.1,226.7 372.1,232.4 368.3,232.4 368.3,226.7 " /></g><g id="bbox:4.1_47.6_4.2_47.7" ><polygon points="372.1,226.7 376.0,226.7 376.0,232.4 372.1,232.4 372.1,226.7 " /></g><g id="bbox:4.2_47.6_4.3_47.7" ><polygon points="376.0,226.7 379.8,226.7 379.8,232.4 376.0,232.4 376.0,226.7 " /></g><g id="bbox:4.3_47.6_4.4_47.7" ><polygon points="379.8,226.7 383.7,226.7 383.7,232.4 379.8,232.4 379.8,226.7 " /></g><g id="bbox:4.4_47.6_4.5_47.7" ><polygon points="383.7,226.7 387.5,226.7 387.5,232.4 383.7,232.4 383.7,226.7 " /></g><g id="bbox:4.5_47.6_4.6_47.7" ><polygon points="387.5,226.7 391.4,226.7 391.4,232.4 387.5,232.4 387.5,226.7 " /></g><g id="bbox:4.6_47.6_4.7_47.7" ><polygon points="391.4,226.7 395.2,226.7 395.2,232.4 391.4,232.4 391.4,226.7 " /></g><g id="bbox:4.7_47.6_4.8_47.7" ><polygon points="395.2,226.7 399.1,226.7 399.1,232.4 395.2,232.4 395.2,226.7 " /></g><g id="bbox:4.8_47.6_4.9_47.7" ><polygon points="399.1,226.7 402.9,226.7 402.9,232.4 399.1,232.4 399.1,226.7 " /></g><g id="bbox:4.9_47.6_5_47.7" ><polygon points="402.9,226.7 406.7,226.7 406.7,232.4 402.9,232.4 402.9,226.7 " /></g><g id="bbox:5_47.6_5.1_47.7" ><polygon points="406.7,226.7 410.6,226.7 410.6,232.4 406.7,232.4 406.7,226.7 " /></g><g id="bbox:5.1_47.6_5.2_47.7" ><polygon points="410.6,226.7 414.4,226.7 414.4,232.4 410.6,232.4 410.6,226.7 " /></g><g id="bbox:5.2_47.6_5.3_47.7" ><polygon points="414.4,226.7 418.3,226.7 418.3,232.4 414.4,232.4 414.4,226.7 " /></g><g id="bbox:5.3_47.6_5.4_47.7" ><polygon points="418.3,226.7 422.1,226.7 422.1,232.4 418.3,232.4 418.3,226.7 " /></g><g id="bbox:5.4_47.6_5.5_47.7" ><polygon points="422.1,226.7 426.0,226.7 426.0,232.4 422.1,232.4 422.1,226.7 " /></g><g id="bbox:5.5_47.6_5.6_47.7" ><polygon points="426.0,226.7 429.8,226.7 429.8,232.4 426.0,232.4 426.0,226.7 " /></g><g id="bbox:5.6_47.6_5.7_47.7" ><polygon points="429.8,226.7 433.7,226.7 433.7,232.4 429.8,232.4 429.8,226.7 " /></g><g id="bbox:5.7_47.6_5.8_47.7" ><polygon points="433.7,226.7 437.5,226.7 437.5,232.4 433.7,232.4 433.7,226.7 " /></g><g id="bbox:5.8_47.6_5.9_47.7" ><polygon points="437.5,226.7 441.4,226.7 441.4,232.4 437.5,232.4 437.5,226.7 " /></g><g id="bbox:5.9_47.6_6_47.7" ><polygon points="441.4,226.7 445.2,226.7 445.2,232.4 441.4,232.4 441.4,226.7 " /></g><g id="bbox:6_47.6_6.1_47.7" ><polygon points="445.2,226.7 449.1,226.7 449.1,232.4 445.2,232.4 445.2,226.7 " /></g><g id="bbox:6.1_47.6_6.2_47.7" ><polygon points="449.1,226.7 452.9,226.7 452.9,232.4 449.1,232.4 449.1,226.7 " /></g><g id="bbox:6.2_47.6_6.3_47.7" ><polygon points="452.9,226.7 456.8,226.7 456.8,232.4 452.9,232.4 452.9,226.7 " /></g><g id="bbox:6.3_47.6_6.4_47.7" ><polygon points="456.8,226.7 460.6,226.7 460.6,232.4 456.8,232.4 456.8,226.7 " /></g><g id="bbox:6.4_47.6_6.5_47.7" ><polygon points="460.6,226.7 464.5,226.7 464.5,232.4 460.6,232.4 460.6,226.7 " /></g><g id="bbox:6.5_47.6_6.6_47.7" ><polygon points="464.5,226.7 468.3,226.7 468.3,232.4 464.5,232.4 464.5,226.7 " /></g><g id="bbox:6.6_47.6_6.7_47.7" ><polygon points="468.3,226.7 472.2,226.7 472.2,232.4 468.3,232.4 468.3,226.7 " /></g><g id="bbox:6.7_47.6_6.8_47.7" ><polygon points="472.2,226.7 476.0,226.7 476.0,232.4 472.2,232.4 472.2,226.7 " /></g><g id="bbox:6.8_47.6_6.9_47.7" ><polygon points="476.0,226.7 479.9,226.7 479.9,232.4 476.0,232.4 476.0,226.7 " /></g><g id="bbox:6.9_47.6_7_47.7" ><polygon points="479.9,226.7 483.7,226.7 483.7,232.4 479.9,232.4 479.9,226.7 " /></g><g id="bbox:7_47.6_7.1_47.7" ><polygon points="483.7,226.7 487.6,226.7 487.6,232.4 483.7,232.4 483.7,226.7 " /></g><g id="bbox:7.1_47.6_7.2_47.7" ><polygon points="487.6,226.7 491.4,226.7 491.4,232.4 487.6,232.4 487.6,226.7 " /></g><g id="bbox:7.2_47.6_7.3_47.7" ><polygon points="491.4,226.7 495.3,226.7 495.3,232.4 491.4,232.4 491.4,226.7 " /></g><g id="bbox:7.3_47.6_7.4_47.7" ><polygon points="495.3,226.7 499.1,226.7 499.1,232.4 495.3,232.4 495.3,226.7 " /></g><g id="bbox:7.4_47.6_7.5_47.7" ><polygon points="499.1,226.7 503.0,226.7 503.0,232.4 499.1,232.4 499.1,226.7 " /></g><g id="bbox:7.5_47.6_7.6_47.7" ><polygon points="503.0,226.7 506.8,226.7 506.8,232.4 503.0,232.4 503.0,226.7 " /></g><g id="bbox:-3.2_47.5_-3.1_47.6" ><polygon points="91.2,232.4 95.0,232.4 95.0,238.1 91.2,238.1 91.2,232.4 " /></g><g id="bbox:-3.1_47.5_-3_47.6" ><polygon points="95.0,232.4 98.9,232.4 98.9,238.1 95.0,238.1 95.0,232.4 " /></g><g id="bbox:-3_47.5_-2.9_47.6" ><polygon points="98.9,232.4 102.7,232.4 102.7,238.1 98.9,238.1 98.9,232.4 " /></g><g id="bbox:-2.9_47.5_-2.8_47.6" ><polygon points="102.7,232.4 106.6,232.4 106.6,238.1 102.7,238.1 102.7,232.4 " /></g><g id="bbox:-2.8_47.5_-2.7_47.6" ><polygon points="106.6,232.4 110.4,232.4 110.4,238.1 106.6,238.1 106.6,232.4 " /></g><g id="bbox:-2.7_47.5_-2.6_47.6" ><polygon points="110.4,232.4 114.3,232.4 114.3,238.1 110.4,238.1 110.4,232.4 " /></g><g id="bbox:-2.6_47.5_-2.5_47.6" ><polygon points="114.3,232.4 118.1,232.4 118.1,238.1 114.3,238.1 114.3,232.4 " /></g><g id="bbox:-2.5_47.5_-2.4_47.6" ><polygon points="118.1,232.4 122.0,232.4 122.0,238.1 118.1,238.1 118.1,232.4 " /></g><g id="bbox:-2.4_47.5_-2.3_47.6" ><polygon points="122.0,232.4 125.8,232.4 125.8,238.1 122.0,238.1 122.0,232.4 " /></g><g id="bbox:-2.3_47.5_-2.2_47.6" ><polygon points="125.8,232.4 129.7,232.4 129.7,238.1 125.8,238.1 125.8,232.4 " /></g><g id="bbox:-2.2_47.5_-2.1_47.6" ><polygon points="129.7,232.4 133.5,232.4 133.5,238.1 129.7,238.1 129.7,232.4 " /></g><g id="bbox:-2.1_47.5_-2_47.6" ><polygon points="133.5,232.4 137.4,232.4 137.4,238.1 133.5,238.1 133.5,232.4 " /></g><g id="bbox:-2_47.5_-1.9_47.6" ><polygon points="137.4,232.4 141.2,232.4 141.2,238.1 137.4,238.1 137.4,232.4 " /></g><g id="bbox:-1.9_47.5_-1.8_47.6" ><polygon points="141.2,232.4 145.1,232.4 145.1,238.1 141.2,238.1 141.2,232.4 " /></g><g id="bbox:-1.8_47.5_-1.7_47.6" ><polygon points="145.1,232.4 148.9,232.4 148.9,238.1 145.1,238.1 145.1,232.4 " /></g><g id="bbox:-1.7_47.5_-1.6_47.6" ><polygon points="148.9,232.4 152.8,232.4 152.8,238.1 148.9,238.1 148.9,232.4 " /></g><g id="bbox:-1.6_47.5_-1.5_47.6" ><polygon points="152.8,232.4 156.6,232.4 156.6,238.1 152.8,238.1 152.8,232.4 " /></g><g id="bbox:-1.5_47.5_-1.4_47.6" ><polygon points="156.6,232.4 160.5,232.4 160.5,238.1 156.6,238.1 156.6,232.4 " /></g><g id="bbox:-1.4_47.5_-1.3_47.6" ><polygon points="160.5,232.4 164.3,232.4 164.3,238.1 160.5,238.1 160.5,232.4 " /></g><g id="bbox:-1.3_47.5_-1.2_47.6" ><polygon points="164.3,232.4 168.2,232.4 168.2,238.1 164.3,238.1 164.3,232.4 " /></g><g id="bbox:-1.2_47.5_-1.1_47.6" ><polygon points="168.2,232.4 172.0,232.4 172.0,238.1 168.2,238.1 168.2,232.4 " /></g><g id="bbox:-1.1_47.5_-1_47.6" ><polygon points="172.0,232.4 175.9,232.4 175.9,238.1 172.0,238.1 172.0,232.4 " /></g><g id="bbox:-1_47.5_-0.9_47.6" ><polygon points="175.9,232.4 179.7,232.4 179.7,238.1 175.9,238.1 175.9,232.4 " /></g><g id="bbox:-0.9_47.5_-0.8_47.6" ><polygon points="179.7,232.4 183.6,232.4 183.6,238.1 179.7,238.1 179.7,232.4 " /></g><g id="bbox:-0.8_47.5_-0.7_47.6" ><polygon points="183.6,232.4 187.4,232.4 187.4,238.1 183.6,238.1 183.6,232.4 " /></g><g id="bbox:-0.7_47.5_-0.6_47.6" ><polygon points="187.4,232.4 191.3,232.4 191.3,238.1 187.4,238.1 187.4,232.4 " /></g><g id="bbox:-0.6_47.5_-0.5_47.6" ><polygon points="191.3,232.4 195.1,232.4 195.1,238.1 191.3,238.1 191.3,232.4 " /></g><g id="bbox:-0.5_47.5_-0.4_47.6" ><polygon points="195.1,232.4 198.9,232.4 198.9,238.1 195.1,238.1 195.1,232.4 " /></g><g id="bbox:-0.4_47.5_-0.3_47.6" ><polygon points="198.9,232.4 202.8,232.4 202.8,238.1 198.9,238.1 198.9,232.4 " /></g><g id="bbox:-0.3_47.5_-0.2_47.6" ><polygon points="202.8,232.4 206.6,232.4 206.6,238.1 202.8,238.1 202.8,232.4 " /></g><g id="bbox:-0.2_47.5_-0.1_47.6" ><polygon points="206.6,232.4 210.5,232.4 210.5,238.1 206.6,238.1 206.6,232.4 " /></g><g id="bbox:-0.1_47.5_0_47.6" ><polygon points="210.5,232.4 214.3,232.4 214.3,238.1 210.5,238.1 210.5,232.4 " /></g><g id="bbox:0_47.5_0.1_47.6" ><polygon points="214.3,232.4 218.2,232.4 218.2,238.1 214.3,238.1 214.3,232.4 " /></g><g id="bbox:0.1_47.5_0.2_47.6" ><polygon points="218.2,232.4 222.0,232.4 222.0,238.1 218.2,238.1 218.2,232.4 " /></g><g id="bbox:0.2_47.5_0.3_47.6" ><polygon points="222.0,232.4 225.9,232.4 225.9,238.1 222.0,238.1 222.0,232.4 " /></g><g id="bbox:0.3_47.5_0.4_47.6" ><polygon points="225.9,232.4 229.7,232.4 229.7,238.1 225.9,238.1 225.9,232.4 " /></g><g id="bbox:0.4_47.5_0.5_47.6" ><polygon points="229.7,232.4 233.6,232.4 233.6,238.1 229.7,238.1 229.7,232.4 " /></g><g id="bbox:0.5_47.5_0.6_47.6" ><polygon points="233.6,232.4 237.4,232.4 237.4,238.1 233.6,238.1 233.6,232.4 " /></g><g id="bbox:0.6_47.5_0.7_47.6" ><polygon points="237.4,232.4 241.3,232.4 241.3,238.1 237.4,238.1 237.4,232.4 " /></g><g id="bbox:0.7_47.5_0.8_47.6" ><polygon points="241.3,232.4 245.1,232.4 245.1,238.1 241.3,238.1 241.3,232.4 " /></g><g id="bbox:0.8_47.5_0.9_47.6" ><polygon points="245.1,232.4 249.0,232.4 249.0,238.1 245.1,238.1 245.1,232.4 " /></g><g id="bbox:0.9_47.5_1_47.6" ><polygon points="249.0,232.4 252.8,232.4 252.8,238.1 249.0,238.1 249.0,232.4 " /></g><g id="bbox:1_47.5_1.1_47.6" ><polygon points="252.8,232.4 256.7,232.4 256.7,238.1 252.8,238.1 252.8,232.4 " /></g><g id="bbox:1.1_47.5_1.2_47.6" ><polygon points="256.7,232.4 260.5,232.4 260.5,238.1 256.7,238.1 256.7,232.4 " /></g><g id="bbox:1.2_47.5_1.3_47.6" ><polygon points="260.5,232.4 264.4,232.4 264.4,238.1 260.5,238.1 260.5,232.4 " /></g><g id="bbox:1.3_47.5_1.4_47.6" ><polygon points="264.4,232.4 268.2,232.4 268.2,238.1 264.4,238.1 264.4,232.4 " /></g><g id="bbox:1.4_47.5_1.5_47.6" ><polygon points="268.2,232.4 272.1,232.4 272.1,238.1 268.2,238.1 268.2,232.4 " /></g><g id="bbox:1.5_47.5_1.6_47.6" ><polygon points="272.1,232.4 275.9,232.4 275.9,238.1 272.1,238.1 272.1,232.4 " /></g><g id="bbox:1.6_47.5_1.7_47.6" ><polygon points="275.9,232.4 279.8,232.4 279.8,238.1 275.9,238.1 275.9,232.4 " /></g><g id="bbox:1.7_47.5_1.8_47.6" ><polygon points="279.8,232.4 283.6,232.4 283.6,238.1 279.8,238.1 279.8,232.4 " /></g><g id="bbox:1.8_47.5_1.9_47.6" ><polygon points="283.6,232.4 287.5,232.4 287.5,238.1 283.6,238.1 283.6,232.4 " /></g><g id="bbox:1.9_47.5_2_47.6" ><polygon points="287.5,232.4 291.3,232.4 291.3,238.1 287.5,238.1 287.5,232.4 " /></g><g id="bbox:2_47.5_2.1_47.6" ><polygon points="291.3,232.4 295.2,232.4 295.2,238.1 291.3,238.1 291.3,232.4 " /></g><g id="bbox:2.1_47.5_2.2_47.6" ><polygon points="295.2,232.4 299.0,232.4 299.0,238.1 295.2,238.1 295.2,232.4 " /></g><g id="bbox:2.2_47.5_2.3_47.6" ><polygon points="299.0,232.4 302.8,232.4 302.8,238.1 299.0,238.1 299.0,232.4 " /></g><g id="bbox:2.3_47.5_2.4_47.6" ><polygon points="302.8,232.4 306.7,232.4 306.7,238.1 302.8,238.1 302.8,232.4 " /></g><g id="bbox:2.4_47.5_2.5_47.6" ><polygon points="306.7,232.4 310.5,232.4 310.5,238.1 306.7,238.1 306.7,232.4 " /></g><g id="bbox:2.5_47.5_2.6_47.6" ><polygon points="310.5,232.4 314.4,232.4 314.4,238.1 310.5,238.1 310.5,232.4 " /></g><g id="bbox:2.6_47.5_2.7_47.6" ><polygon points="314.4,232.4 318.2,232.4 318.2,238.1 314.4,238.1 314.4,232.4 " /></g><g id="bbox:2.7_47.5_2.8_47.6" ><polygon points="318.2,232.4 322.1,232.4 322.1,238.1 318.2,238.1 318.2,232.4 " /></g><g id="bbox:2.8_47.5_2.9_47.6" ><polygon points="322.1,232.4 325.9,232.4 325.9,238.1 322.1,238.1 322.1,232.4 " /></g><g id="bbox:2.9_47.5_3_47.6" ><polygon points="325.9,232.4 329.8,232.4 329.8,238.1 325.9,238.1 325.9,232.4 " /></g><g id="bbox:3_47.5_3.1_47.6" ><polygon points="329.8,232.4 333.6,232.4 333.6,238.1 329.8,238.1 329.8,232.4 " /></g><g id="bbox:3.1_47.5_3.2_47.6" ><polygon points="333.6,232.4 337.5,232.4 337.5,238.1 333.6,238.1 333.6,232.4 " /></g><g id="bbox:3.2_47.5_3.3_47.6" ><polygon points="337.5,232.4 341.3,232.4 341.3,238.1 337.5,238.1 337.5,232.4 " /></g><g id="bbox:3.3_47.5_3.4_47.6" ><polygon points="341.3,232.4 345.2,232.4 345.2,238.1 341.3,238.1 341.3,232.4 " /></g><g id="bbox:3.4_47.5_3.5_47.6" ><polygon points="345.2,232.4 349.0,232.4 349.0,238.1 345.2,238.1 345.2,232.4 " /></g><g id="bbox:3.5_47.5_3.6_47.6" ><polygon points="349.0,232.4 352.9,232.4 352.9,238.1 349.0,238.1 349.0,232.4 " /></g><g id="bbox:3.6_47.5_3.7_47.6" ><polygon points="352.9,232.4 356.7,232.4 356.7,238.1 352.9,238.1 352.9,232.4 " /></g><g id="bbox:3.7_47.5_3.8_47.6" ><polygon points="356.7,232.4 360.6,232.4 360.6,238.1 356.7,238.1 356.7,232.4 " /></g><g id="bbox:3.8_47.5_3.9_47.6" ><polygon points="360.6,232.4 364.4,232.4 364.4,238.1 360.6,238.1 360.6,232.4 " /></g><g id="bbox:3.9_47.5_4_47.6" ><polygon points="364.4,232.4 368.3,232.4 368.3,238.1 364.4,238.1 364.4,232.4 " /></g><g id="bbox:4_47.5_4.1_47.6" ><polygon points="368.3,232.4 372.1,232.4 372.1,238.1 368.3,238.1 368.3,232.4 " /></g><g id="bbox:4.1_47.5_4.2_47.6" ><polygon points="372.1,232.4 376.0,232.4 376.0,238.1 372.1,238.1 372.1,232.4 " /></g><g id="bbox:4.2_47.5_4.3_47.6" ><polygon points="376.0,232.4 379.8,232.4 379.8,238.1 376.0,238.1 376.0,232.4 " /></g><g id="bbox:4.3_47.5_4.4_47.6" ><polygon points="379.8,232.4 383.7,232.4 383.7,238.1 379.8,238.1 379.8,232.4 " /></g><g id="bbox:4.4_47.5_4.5_47.6" ><polygon points="383.7,232.4 387.5,232.4 387.5,238.1 383.7,238.1 383.7,232.4 " /></g><g id="bbox:4.5_47.5_4.6_47.6" ><polygon points="387.5,232.4 391.4,232.4 391.4,238.1 387.5,238.1 387.5,232.4 " /></g><g id="bbox:4.6_47.5_4.7_47.6" ><polygon points="391.4,232.4 395.2,232.4 395.2,238.1 391.4,238.1 391.4,232.4 " /></g><g id="bbox:4.7_47.5_4.8_47.6" ><polygon points="395.2,232.4 399.1,232.4 399.1,238.1 395.2,238.1 395.2,232.4 " /></g><g id="bbox:4.8_47.5_4.9_47.6" ><polygon points="399.1,232.4 402.9,232.4 402.9,238.1 399.1,238.1 399.1,232.4 " /></g><g id="bbox:4.9_47.5_5_47.6" ><polygon points="402.9,232.4 406.7,232.4 406.7,238.1 402.9,238.1 402.9,232.4 " /></g><g id="bbox:5_47.5_5.1_47.6" ><polygon points="406.7,232.4 410.6,232.4 410.6,238.1 406.7,238.1 406.7,232.4 " /></g><g id="bbox:5.1_47.5_5.2_47.6" ><polygon points="410.6,232.4 414.4,232.4 414.4,238.1 410.6,238.1 410.6,232.4 " /></g><g id="bbox:5.2_47.5_5.3_47.6" ><polygon points="414.4,232.4 418.3,232.4 418.3,238.1 414.4,238.1 414.4,232.4 " /></g><g id="bbox:5.3_47.5_5.4_47.6" ><polygon points="418.3,232.4 422.1,232.4 422.1,238.1 418.3,238.1 418.3,232.4 " /></g><g id="bbox:5.4_47.5_5.5_47.6" ><polygon points="422.1,232.4 426.0,232.4 426.0,238.1 422.1,238.1 422.1,232.4 " /></g><g id="bbox:5.5_47.5_5.6_47.6" ><polygon points="426.0,232.4 429.8,232.4 429.8,238.1 426.0,238.1 426.0,232.4 " /></g><g id="bbox:5.6_47.5_5.7_47.6" ><polygon points="429.8,232.4 433.7,232.4 433.7,238.1 429.8,238.1 429.8,232.4 " /></g><g id="bbox:5.7_47.5_5.8_47.6" ><polygon points="433.7,232.4 437.5,232.4 437.5,238.1 433.7,238.1 433.7,232.4 " /></g><g id="bbox:5.8_47.5_5.9_47.6" ><polygon points="437.5,232.4 441.4,232.4 441.4,238.1 437.5,238.1 437.5,232.4 " /></g><g id="bbox:5.9_47.5_6_47.6" ><polygon points="441.4,232.4 445.2,232.4 445.2,238.1 441.4,238.1 441.4,232.4 " /></g><g id="bbox:6_47.5_6.1_47.6" ><polygon points="445.2,232.4 449.1,232.4 449.1,238.1 445.2,238.1 445.2,232.4 " /></g><g id="bbox:6.1_47.5_6.2_47.6" ><polygon points="449.1,232.4 452.9,232.4 452.9,238.1 449.1,238.1 449.1,232.4 " /></g><g id="bbox:6.2_47.5_6.3_47.6" ><polygon points="452.9,232.4 456.8,232.4 456.8,238.1 452.9,238.1 452.9,232.4 " /></g><g id="bbox:6.3_47.5_6.4_47.6" ><polygon points="456.8,232.4 460.6,232.4 460.6,238.1 456.8,238.1 456.8,232.4 " /></g><g id="bbox:6.4_47.5_6.5_47.6" ><polygon points="460.6,232.4 464.5,232.4 464.5,238.1 460.6,238.1 460.6,232.4 " /></g><g id="bbox:6.5_47.5_6.6_47.6" ><polygon points="464.5,232.4 468.3,232.4 468.3,238.1 464.5,238.1 464.5,232.4 " /></g><g id="bbox:6.6_47.5_6.7_47.6" ><polygon points="468.3,232.4 472.2,232.4 472.2,238.1 468.3,238.1 468.3,232.4 " /></g><g id="bbox:6.7_47.5_6.8_47.6" ><polygon points="472.2,232.4 476.0,232.4 476.0,238.1 472.2,238.1 472.2,232.4 " /></g><g id="bbox:6.8_47.5_6.9_47.6" ><polygon points="476.0,232.4 479.9,232.4 479.9,238.1 476.0,238.1 476.0,232.4 " /></g><g id="bbox:6.9_47.5_7_47.6" ><polygon points="479.9,232.4 483.7,232.4 483.7,238.1 479.9,238.1 479.9,232.4 " /></g><g id="bbox:7_47.5_7.1_47.6" ><polygon points="483.7,232.4 487.6,232.4 487.6,238.1 483.7,238.1 483.7,232.4 " /></g><g id="bbox:7.1_47.5_7.2_47.6" ><polygon points="487.6,232.4 491.4,232.4 491.4,238.1 487.6,238.1 487.6,232.4 " /></g><g id="bbox:7.2_47.5_7.3_47.6" ><polygon points="491.4,232.4 495.3,232.4 495.3,238.1 491.4,238.1 491.4,232.4 " /></g><g id="bbox:7.3_47.5_7.4_47.6" ><polygon points="495.3,232.4 499.1,232.4 499.1,238.1 495.3,238.1 495.3,232.4 " /></g><g id="bbox:7.4_47.5_7.5_47.6" ><polygon points="499.1,232.4 503.0,232.4 503.0,238.1 499.1,238.1 499.1,232.4 " /></g><g id="bbox:7.5_47.5_7.6_47.6" ><polygon points="503.0,232.4 506.8,232.4 506.8,238.1 503.0,238.1 503.0,232.4 " /></g><g id="bbox:7.6_47.5_7.7_47.6" ><polygon points="506.8,232.4 510.6,232.4 510.6,238.1 506.8,238.1 506.8,232.4 " /></g><g id="bbox:-3.2_47.4_-3.1_47.5" ><polygon points="91.2,238.1 95.0,238.1 95.0,243.8 91.2,243.8 91.2,238.1 " /></g><g id="bbox:-3.1_47.4_-3_47.5" ><polygon points="95.0,238.1 98.9,238.1 98.9,243.8 95.0,243.8 95.0,238.1 " /></g><g id="bbox:-3_47.4_-2.9_47.5" ><polygon points="98.9,238.1 102.7,238.1 102.7,243.8 98.9,243.8 98.9,238.1 " /></g><g id="bbox:-2.9_47.4_-2.8_47.5" ><polygon points="102.7,238.1 106.6,238.1 106.6,243.8 102.7,243.8 102.7,238.1 " /></g><g id="bbox:-2.8_47.4_-2.7_47.5" ><polygon points="106.6,238.1 110.4,238.1 110.4,243.8 106.6,243.8 106.6,238.1 " /></g><g id="bbox:-2.7_47.4_-2.6_47.5" ><polygon points="110.4,238.1 114.3,238.1 114.3,243.8 110.4,243.8 110.4,238.1 " /></g><g id="bbox:-2.6_47.4_-2.5_47.5" ><polygon points="114.3,238.1 118.1,238.1 118.1,243.8 114.3,243.8 114.3,238.1 " /></g><g id="bbox:-2.5_47.4_-2.4_47.5" ><polygon points="118.1,238.1 122.0,238.1 122.0,243.8 118.1,243.8 118.1,238.1 " /></g><g id="bbox:-2.4_47.4_-2.3_47.5" ><polygon points="122.0,238.1 125.8,238.1 125.8,243.8 122.0,243.8 122.0,238.1 " /></g><g id="bbox:-2.3_47.4_-2.2_47.5" ><polygon points="125.8,238.1 129.7,238.1 129.7,243.8 125.8,243.8 125.8,238.1 " /></g><g id="bbox:-2.2_47.4_-2.1_47.5" ><polygon points="129.7,238.1 133.5,238.1 133.5,243.8 129.7,243.8 129.7,238.1 " /></g><g id="bbox:-2.1_47.4_-2_47.5" ><polygon points="133.5,238.1 137.4,238.1 137.4,243.8 133.5,243.8 133.5,238.1 " /></g><g id="bbox:-2_47.4_-1.9_47.5" ><polygon points="137.4,238.1 141.2,238.1 141.2,243.8 137.4,243.8 137.4,238.1 " /></g><g id="bbox:-1.9_47.4_-1.8_47.5" ><polygon points="141.2,238.1 145.1,238.1 145.1,243.8 141.2,243.8 141.2,238.1 " /></g><g id="bbox:-1.8_47.4_-1.7_47.5" ><polygon points="145.1,238.1 148.9,238.1 148.9,243.8 145.1,243.8 145.1,238.1 " /></g><g id="bbox:-1.7_47.4_-1.6_47.5" ><polygon points="148.9,238.1 152.8,238.1 152.8,243.8 148.9,243.8 148.9,238.1 " /></g><g id="bbox:-1.6_47.4_-1.5_47.5" ><polygon points="152.8,238.1 156.6,238.1 156.6,243.8 152.8,243.8 152.8,238.1 " /></g><g id="bbox:-1.5_47.4_-1.4_47.5" ><polygon points="156.6,238.1 160.5,238.1 160.5,243.8 156.6,243.8 156.6,238.1 " /></g><g id="bbox:-1.4_47.4_-1.3_47.5" ><polygon points="160.5,238.1 164.3,238.1 164.3,243.8 160.5,243.8 160.5,238.1 " /></g><g id="bbox:-1.3_47.4_-1.2_47.5" ><polygon points="164.3,238.1 168.2,238.1 168.2,243.8 164.3,243.8 164.3,238.1 " /></g><g id="bbox:-1.2_47.4_-1.1_47.5" ><polygon points="168.2,238.1 172.0,238.1 172.0,243.8 168.2,243.8 168.2,238.1 " /></g><g id="bbox:-1.1_47.4_-1_47.5" ><polygon points="172.0,238.1 175.9,238.1 175.9,243.8 172.0,243.8 172.0,238.1 " /></g><g id="bbox:-1_47.4_-0.9_47.5" ><polygon points="175.9,238.1 179.7,238.1 179.7,243.8 175.9,243.8 175.9,238.1 " /></g><g id="bbox:-0.9_47.4_-0.8_47.5" ><polygon points="179.7,238.1 183.6,238.1 183.6,243.8 179.7,243.8 179.7,238.1 " /></g><g id="bbox:-0.8_47.4_-0.7_47.5" ><polygon points="183.6,238.1 187.4,238.1 187.4,243.8 183.6,243.8 183.6,238.1 " /></g><g id="bbox:-0.7_47.4_-0.6_47.5" ><polygon points="187.4,238.1 191.3,238.1 191.3,243.8 187.4,243.8 187.4,238.1 " /></g><g id="bbox:-0.6_47.4_-0.5_47.5" ><polygon points="191.3,238.1 195.1,238.1 195.1,243.8 191.3,243.8 191.3,238.1 " /></g><g id="bbox:-0.5_47.4_-0.4_47.5" ><polygon points="195.1,238.1 198.9,238.1 198.9,243.8 195.1,243.8 195.1,238.1 " /></g><g id="bbox:-0.4_47.4_-0.3_47.5" ><polygon points="198.9,238.1 202.8,238.1 202.8,243.8 198.9,243.8 198.9,238.1 " /></g><g id="bbox:-0.3_47.4_-0.2_47.5" ><polygon points="202.8,238.1 206.6,238.1 206.6,243.8 202.8,243.8 202.8,238.1 " /></g><g id="bbox:-0.2_47.4_-0.1_47.5" ><polygon points="206.6,238.1 210.5,238.1 210.5,243.8 206.6,243.8 206.6,238.1 " /></g><g id="bbox:-0.1_47.4_0_47.5" ><polygon points="210.5,238.1 214.3,238.1 214.3,243.8 210.5,243.8 210.5,238.1 " /></g><g id="bbox:0_47.4_0.1_47.5" ><polygon points="214.3,238.1 218.2,238.1 218.2,243.8 214.3,243.8 214.3,238.1 " /></g><g id="bbox:0.1_47.4_0.2_47.5" ><polygon points="218.2,238.1 222.0,238.1 222.0,243.8 218.2,243.8 218.2,238.1 " /></g><g id="bbox:0.2_47.4_0.3_47.5" ><polygon points="222.0,238.1 225.9,238.1 225.9,243.8 222.0,243.8 222.0,238.1 " /></g><g id="bbox:0.3_47.4_0.4_47.5" ><polygon points="225.9,238.1 229.7,238.1 229.7,243.8 225.9,243.8 225.9,238.1 " /></g><g id="bbox:0.4_47.4_0.5_47.5" ><polygon points="229.7,238.1 233.6,238.1 233.6,243.8 229.7,243.8 229.7,238.1 " /></g><g id="bbox:0.5_47.4_0.6_47.5" ><polygon points="233.6,238.1 237.4,238.1 237.4,243.8 233.6,243.8 233.6,238.1 " /></g><g id="bbox:0.6_47.4_0.7_47.5" ><polygon points="237.4,238.1 241.3,238.1 241.3,243.8 237.4,243.8 237.4,238.1 " /></g><g id="bbox:0.7_47.4_0.8_47.5" ><polygon points="241.3,238.1 245.1,238.1 245.1,243.8 241.3,243.8 241.3,238.1 " /></g><g id="bbox:0.8_47.4_0.9_47.5" ><polygon points="245.1,238.1 249.0,238.1 249.0,243.8 245.1,243.8 245.1,238.1 " /></g><g id="bbox:0.9_47.4_1_47.5" ><polygon points="249.0,238.1 252.8,238.1 252.8,243.8 249.0,243.8 249.0,238.1 " /></g><g id="bbox:1_47.4_1.1_47.5" ><polygon points="252.8,238.1 256.7,238.1 256.7,243.8 252.8,243.8 252.8,238.1 " /></g><g id="bbox:1.1_47.4_1.2_47.5" ><polygon points="256.7,238.1 260.5,238.1 260.5,243.8 256.7,243.8 256.7,238.1 " /></g><g id="bbox:1.2_47.4_1.3_47.5" ><polygon points="260.5,238.1 264.4,238.1 264.4,243.8 260.5,243.8 260.5,238.1 " /></g><g id="bbox:1.3_47.4_1.4_47.5" ><polygon points="264.4,238.1 268.2,238.1 268.2,243.8 264.4,243.8 264.4,238.1 " /></g><g id="bbox:1.4_47.4_1.5_47.5" ><polygon points="268.2,238.1 272.1,238.1 272.1,243.8 268.2,243.8 268.2,238.1 " /></g><g id="bbox:1.5_47.4_1.6_47.5" ><polygon points="272.1,238.1 275.9,238.1 275.9,243.8 272.1,243.8 272.1,238.1 " /></g><g id="bbox:1.6_47.4_1.7_47.5" ><polygon points="275.9,238.1 279.8,238.1 279.8,243.8 275.9,243.8 275.9,238.1 " /></g><g id="bbox:1.7_47.4_1.8_47.5" ><polygon points="279.8,238.1 283.6,238.1 283.6,243.8 279.8,243.8 279.8,238.1 " /></g><g id="bbox:1.8_47.4_1.9_47.5" ><polygon points="283.6,238.1 287.5,238.1 287.5,243.8 283.6,243.8 283.6,238.1 " /></g><g id="bbox:1.9_47.4_2_47.5" ><polygon points="287.5,238.1 291.3,238.1 291.3,243.8 287.5,243.8 287.5,238.1 " /></g><g id="bbox:2_47.4_2.1_47.5" ><polygon points="291.3,238.1 295.2,238.1 295.2,243.8 291.3,243.8 291.3,238.1 " /></g><g id="bbox:2.1_47.4_2.2_47.5" ><polygon points="295.2,238.1 299.0,238.1 299.0,243.8 295.2,243.8 295.2,238.1 " /></g><g id="bbox:2.2_47.4_2.3_47.5" ><polygon points="299.0,238.1 302.8,238.1 302.8,243.8 299.0,243.8 299.0,238.1 " /></g><g id="bbox:2.3_47.4_2.4_47.5" ><polygon points="302.8,238.1 306.7,238.1 306.7,243.8 302.8,243.8 302.8,238.1 " /></g><g id="bbox:2.4_47.4_2.5_47.5" ><polygon points="306.7,238.1 310.5,238.1 310.5,243.8 306.7,243.8 306.7,238.1 " /></g><g id="bbox:2.5_47.4_2.6_47.5" ><polygon points="310.5,238.1 314.4,238.1 314.4,243.8 310.5,243.8 310.5,238.1 " /></g><g id="bbox:2.6_47.4_2.7_47.5" ><polygon points="314.4,238.1 318.2,238.1 318.2,243.8 314.4,243.8 314.4,238.1 " /></g><g id="bbox:2.7_47.4_2.8_47.5" ><polygon points="318.2,238.1 322.1,238.1 322.1,243.8 318.2,243.8 318.2,238.1 " /></g><g id="bbox:2.8_47.4_2.9_47.5" ><polygon points="322.1,238.1 325.9,238.1 325.9,243.8 322.1,243.8 322.1,238.1 " /></g><g id="bbox:2.9_47.4_3_47.5" ><polygon points="325.9,238.1 329.8,238.1 329.8,243.8 325.9,243.8 325.9,238.1 " /></g><g id="bbox:3_47.4_3.1_47.5" ><polygon points="329.8,238.1 333.6,238.1 333.6,243.8 329.8,243.8 329.8,238.1 " /></g><g id="bbox:3.1_47.4_3.2_47.5" ><polygon points="333.6,238.1 337.5,238.1 337.5,243.8 333.6,243.8 333.6,238.1 " /></g><g id="bbox:3.2_47.4_3.3_47.5" ><polygon points="337.5,238.1 341.3,238.1 341.3,243.8 337.5,243.8 337.5,238.1 " /></g><g id="bbox:3.3_47.4_3.4_47.5" ><polygon points="341.3,238.1 345.2,238.1 345.2,243.8 341.3,243.8 341.3,238.1 " /></g><g id="bbox:3.4_47.4_3.5_47.5" ><polygon points="345.2,238.1 349.0,238.1 349.0,243.8 345.2,243.8 345.2,238.1 " /></g><g id="bbox:3.5_47.4_3.6_47.5" ><polygon points="349.0,238.1 352.9,238.1 352.9,243.8 349.0,243.8 349.0,238.1 " /></g><g id="bbox:3.6_47.4_3.7_47.5" ><polygon points="352.9,238.1 356.7,238.1 356.7,243.8 352.9,243.8 352.9,238.1 " /></g><g id="bbox:3.7_47.4_3.8_47.5" ><polygon points="356.7,238.1 360.6,238.1 360.6,243.8 356.7,243.8 356.7,238.1 " /></g><g id="bbox:3.8_47.4_3.9_47.5" ><polygon points="360.6,238.1 364.4,238.1 364.4,243.8 360.6,243.8 360.6,238.1 " /></g><g id="bbox:3.9_47.4_4_47.5" ><polygon points="364.4,238.1 368.3,238.1 368.3,243.8 364.4,243.8 364.4,238.1 " /></g><g id="bbox:4_47.4_4.1_47.5" ><polygon points="368.3,238.1 372.1,238.1 372.1,243.8 368.3,243.8 368.3,238.1 " /></g><g id="bbox:4.1_47.4_4.2_47.5" ><polygon points="372.1,238.1 376.0,238.1 376.0,243.8 372.1,243.8 372.1,238.1 " /></g><g id="bbox:4.2_47.4_4.3_47.5" ><polygon points="376.0,238.1 379.8,238.1 379.8,243.8 376.0,243.8 376.0,238.1 " /></g><g id="bbox:4.3_47.4_4.4_47.5" ><polygon points="379.8,238.1 383.7,238.1 383.7,243.8 379.8,243.8 379.8,238.1 " /></g><g id="bbox:4.4_47.4_4.5_47.5" ><polygon points="383.7,238.1 387.5,238.1 387.5,243.8 383.7,243.8 383.7,238.1 " /></g><g id="bbox:4.5_47.4_4.6_47.5" ><polygon points="387.5,238.1 391.4,238.1 391.4,243.8 387.5,243.8 387.5,238.1 " /></g><g id="bbox:4.6_47.4_4.7_47.5" ><polygon points="391.4,238.1 395.2,238.1 395.2,243.8 391.4,243.8 391.4,238.1 " /></g><g id="bbox:4.7_47.4_4.8_47.5" ><polygon points="395.2,238.1 399.1,238.1 399.1,243.8 395.2,243.8 395.2,238.1 " /></g><g id="bbox:4.8_47.4_4.9_47.5" ><polygon points="399.1,238.1 402.9,238.1 402.9,243.8 399.1,243.8 399.1,238.1 " /></g><g id="bbox:4.9_47.4_5_47.5" ><polygon points="402.9,238.1 406.7,238.1 406.7,243.8 402.9,243.8 402.9,238.1 " /></g><g id="bbox:5_47.4_5.1_47.5" ><polygon points="406.7,238.1 410.6,238.1 410.6,243.8 406.7,243.8 406.7,238.1 " /></g><g id="bbox:5.1_47.4_5.2_47.5" ><polygon points="410.6,238.1 414.4,238.1 414.4,243.8 410.6,243.8 410.6,238.1 " /></g><g id="bbox:5.2_47.4_5.3_47.5" ><polygon points="414.4,238.1 418.3,238.1 418.3,243.8 414.4,243.8 414.4,238.1 " /></g><g id="bbox:5.3_47.4_5.4_47.5" ><polygon points="418.3,238.1 422.1,238.1 422.1,243.8 418.3,243.8 418.3,238.1 " /></g><g id="bbox:5.4_47.4_5.5_47.5" ><polygon points="422.1,238.1 426.0,238.1 426.0,243.8 422.1,243.8 422.1,238.1 " /></g><g id="bbox:5.5_47.4_5.6_47.5" ><polygon points="426.0,238.1 429.8,238.1 429.8,243.8 426.0,243.8 426.0,238.1 " /></g><g id="bbox:5.6_47.4_5.7_47.5" ><polygon points="429.8,238.1 433.7,238.1 433.7,243.8 429.8,243.8 429.8,238.1 " /></g><g id="bbox:5.7_47.4_5.8_47.5" ><polygon points="433.7,238.1 437.5,238.1 437.5,243.8 433.7,243.8 433.7,238.1 " /></g><g id="bbox:5.8_47.4_5.9_47.5" ><polygon points="437.5,238.1 441.4,238.1 441.4,243.8 437.5,243.8 437.5,238.1 " /></g><g id="bbox:5.9_47.4_6_47.5" ><polygon points="441.4,238.1 445.2,238.1 445.2,243.8 441.4,243.8 441.4,238.1 " /></g><g id="bbox:6_47.4_6.1_47.5" ><polygon points="445.2,238.1 449.1,238.1 449.1,243.8 445.2,243.8 445.2,238.1 " /></g><g id="bbox:6.1_47.4_6.2_47.5" ><polygon points="449.1,238.1 452.9,238.1 452.9,243.8 449.1,243.8 449.1,238.1 " /></g><g id="bbox:6.2_47.4_6.3_47.5" ><polygon points="452.9,238.1 456.8,238.1 456.8,243.8 452.9,243.8 452.9,238.1 " /></g><g id="bbox:6.3_47.4_6.4_47.5" ><polygon points="456.8,238.1 460.6,238.1 460.6,243.8 456.8,243.8 456.8,238.1 " /></g><g id="bbox:6.4_47.4_6.5_47.5" ><polygon points="460.6,238.1 464.5,238.1 464.5,243.8 460.6,243.8 460.6,238.1 " /></g><g id="bbox:6.5_47.4_6.6_47.5" ><polygon points="464.5,238.1 468.3,238.1 468.3,243.8 464.5,243.8 464.5,238.1 " /></g><g id="bbox:6.6_47.4_6.7_47.5" ><polygon points="468.3,238.1 472.2,238.1 472.2,243.8 468.3,243.8 468.3,238.1 " /></g><g id="bbox:6.7_47.4_6.8_47.5" ><polygon points="472.2,238.1 476.0,238.1 476.0,243.8 472.2,243.8 472.2,238.1 " /></g><g id="bbox:6.8_47.4_6.9_47.5" ><polygon points="476.0,238.1 479.9,238.1 479.9,243.8 476.0,243.8 476.0,238.1 " /></g><g id="bbox:6.9_47.4_7_47.5" ><polygon points="479.9,238.1 483.7,238.1 483.7,243.8 479.9,243.8 479.9,238.1 " /></g><g id="bbox:7_47.4_7.1_47.5" ><polygon points="483.7,238.1 487.6,238.1 487.6,243.8 483.7,243.8 483.7,238.1 " /></g><g id="bbox:7.1_47.4_7.2_47.5" ><polygon points="487.6,238.1 491.4,238.1 491.4,243.8 487.6,243.8 487.6,238.1 " /></g><g id="bbox:7.2_47.4_7.3_47.5" ><polygon points="491.4,238.1 495.3,238.1 495.3,243.8 491.4,243.8 491.4,238.1 " /></g><g id="bbox:7.3_47.4_7.4_47.5" ><polygon points="495.3,238.1 499.1,238.1 499.1,243.8 495.3,243.8 495.3,238.1 " /></g><g id="bbox:7.4_47.4_7.5_47.5" ><polygon points="499.1,238.1 503.0,238.1 503.0,243.8 499.1,243.8 499.1,238.1 " /></g><g id="bbox:7.5_47.4_7.6_47.5" ><polygon points="503.0,238.1 506.8,238.1 506.8,243.8 503.0,243.8 503.0,238.1 " /></g><g id="bbox:-3.3_47.3_-3.2_47.4" ><polygon points="87.4,243.8 91.2,243.8 91.2,249.5 87.4,249.5 87.4,243.8 " /></g><g id="bbox:-3.2_47.3_-3.1_47.4" ><polygon points="91.2,243.8 95.0,243.8 95.0,249.5 91.2,249.5 91.2,243.8 " /></g><g id="bbox:-3.1_47.3_-3_47.4" ><polygon points="95.0,243.8 98.9,243.8 98.9,249.5 95.0,249.5 95.0,243.8 " /></g><g id="bbox:-3_47.3_-2.9_47.4" ><polygon points="98.9,243.8 102.7,243.8 102.7,249.5 98.9,249.5 98.9,243.8 " /></g><g id="bbox:-2.9_47.3_-2.8_47.4" ><polygon points="102.7,243.8 106.6,243.8 106.6,249.5 102.7,249.5 102.7,243.8 " /></g><g id="bbox:-2.6_47.3_-2.5_47.4" ><polygon points="114.3,243.8 118.1,243.8 118.1,249.5 114.3,249.5 114.3,243.8 " /></g><g id="bbox:-2.5_47.3_-2.4_47.4" ><polygon points="118.1,243.8 122.0,243.8 122.0,249.5 118.1,249.5 118.1,243.8 " /></g><g id="bbox:-2.4_47.3_-2.3_47.4" ><polygon points="122.0,243.8 125.8,243.8 125.8,249.5 122.0,249.5 122.0,243.8 " /></g><g id="bbox:-2.3_47.3_-2.2_47.4" ><polygon points="125.8,243.8 129.7,243.8 129.7,249.5 125.8,249.5 125.8,243.8 " /></g><g id="bbox:-2.2_47.3_-2.1_47.4" ><polygon points="129.7,243.8 133.5,243.8 133.5,249.5 129.7,249.5 129.7,243.8 " /></g><g id="bbox:-2.1_47.3_-2_47.4" ><polygon points="133.5,243.8 137.4,243.8 137.4,249.5 133.5,249.5 133.5,243.8 " /></g><g id="bbox:-2_47.3_-1.9_47.4" ><polygon points="137.4,243.8 141.2,243.8 141.2,249.5 137.4,249.5 137.4,243.8 " /></g><g id="bbox:-1.9_47.3_-1.8_47.4" ><polygon points="141.2,243.8 145.1,243.8 145.1,249.5 141.2,249.5 141.2,243.8 " /></g><g id="bbox:-1.8_47.3_-1.7_47.4" ><polygon points="145.1,243.8 148.9,243.8 148.9,249.5 145.1,249.5 145.1,243.8 " /></g><g id="bbox:-1.7_47.3_-1.6_47.4" ><polygon points="148.9,243.8 152.8,243.8 152.8,249.5 148.9,249.5 148.9,243.8 " /></g><g id="bbox:-1.6_47.3_-1.5_47.4" ><polygon points="152.8,243.8 156.6,243.8 156.6,249.5 152.8,249.5 152.8,243.8 " /></g><g id="bbox:-1.5_47.3_-1.4_47.4" ><polygon points="156.6,243.8 160.5,243.8 160.5,249.5 156.6,249.5 156.6,243.8 " /></g><g id="bbox:-1.4_47.3_-1.3_47.4" ><polygon points="160.5,243.8 164.3,243.8 164.3,249.5 160.5,249.5 160.5,243.8 " /></g><g id="bbox:-1.3_47.3_-1.2_47.4" ><polygon points="164.3,243.8 168.2,243.8 168.2,249.5 164.3,249.5 164.3,243.8 " /></g><g id="bbox:-1.2_47.3_-1.1_47.4" ><polygon points="168.2,243.8 172.0,243.8 172.0,249.5 168.2,249.5 168.2,243.8 " /></g><g id="bbox:-1.1_47.3_-1_47.4" ><polygon points="172.0,243.8 175.9,243.8 175.9,249.5 172.0,249.5 172.0,243.8 " /></g><g id="bbox:-1_47.3_-0.9_47.4" ><polygon points="175.9,243.8 179.7,243.8 179.7,249.5 175.9,249.5 175.9,243.8 " /></g><g id="bbox:-0.9_47.3_-0.8_47.4" ><polygon points="179.7,243.8 183.6,243.8 183.6,249.5 179.7,249.5 179.7,243.8 " /></g><g id="bbox:-0.8_47.3_-0.7_47.4" ><polygon points="183.6,243.8 187.4,243.8 187.4,249.5 183.6,249.5 183.6,243.8 " /></g><g id="bbox:-0.7_47.3_-0.6_47.4" ><polygon points="187.4,243.8 191.3,243.8 191.3,249.5 187.4,249.5 187.4,243.8 " /></g><g id="bbox:-0.6_47.3_-0.5_47.4" ><polygon points="191.3,243.8 195.1,243.8 195.1,249.5 191.3,249.5 191.3,243.8 " /></g><g id="bbox:-0.5_47.3_-0.4_47.4" ><polygon points="195.1,243.8 198.9,243.8 198.9,249.5 195.1,249.5 195.1,243.8 " /></g><g id="bbox:-0.4_47.3_-0.3_47.4" ><polygon points="198.9,243.8 202.8,243.8 202.8,249.5 198.9,249.5 198.9,243.8 " /></g><g id="bbox:-0.3_47.3_-0.2_47.4" ><polygon points="202.8,243.8 206.6,243.8 206.6,249.5 202.8,249.5 202.8,243.8 " /></g><g id="bbox:-0.2_47.3_-0.1_47.4" ><polygon points="206.6,243.8 210.5,243.8 210.5,249.5 206.6,249.5 206.6,243.8 " /></g><g id="bbox:-0.1_47.3_0_47.4" ><polygon points="210.5,243.8 214.3,243.8 214.3,249.5 210.5,249.5 210.5,243.8 " /></g><g id="bbox:0_47.3_0.1_47.4" ><polygon points="214.3,243.8 218.2,243.8 218.2,249.5 214.3,249.5 214.3,243.8 " /></g><g id="bbox:0.1_47.3_0.2_47.4" ><polygon points="218.2,243.8 222.0,243.8 222.0,249.5 218.2,249.5 218.2,243.8 " /></g><g id="bbox:0.2_47.3_0.3_47.4" ><polygon points="222.0,243.8 225.9,243.8 225.9,249.5 222.0,249.5 222.0,243.8 " /></g><g id="bbox:0.3_47.3_0.4_47.4" ><polygon points="225.9,243.8 229.7,243.8 229.7,249.5 225.9,249.5 225.9,243.8 " /></g><g id="bbox:0.4_47.3_0.5_47.4" ><polygon points="229.7,243.8 233.6,243.8 233.6,249.5 229.7,249.5 229.7,243.8 " /></g><g id="bbox:0.5_47.3_0.6_47.4" ><polygon points="233.6,243.8 237.4,243.8 237.4,249.5 233.6,249.5 233.6,243.8 " /></g><g id="bbox:0.6_47.3_0.7_47.4" ><polygon points="237.4,243.8 241.3,243.8 241.3,249.5 237.4,249.5 237.4,243.8 " /></g><g id="bbox:0.7_47.3_0.8_47.4" ><polygon points="241.3,243.8 245.1,243.8 245.1,249.5 241.3,249.5 241.3,243.8 " /></g><g id="bbox:0.8_47.3_0.9_47.4" ><polygon points="245.1,243.8 249.0,243.8 249.0,249.5 245.1,249.5 245.1,243.8 " /></g><g id="bbox:0.9_47.3_1_47.4" ><polygon points="249.0,243.8 252.8,243.8 252.8,249.5 249.0,249.5 249.0,243.8 " /></g><g id="bbox:1_47.3_1.1_47.4" ><polygon points="252.8,243.8 256.7,243.8 256.7,249.5 252.8,249.5 252.8,243.8 " /></g><g id="bbox:1.1_47.3_1.2_47.4" ><polygon points="256.7,243.8 260.5,243.8 260.5,249.5 256.7,249.5 256.7,243.8 " /></g><g id="bbox:1.2_47.3_1.3_47.4" ><polygon points="260.5,243.8 264.4,243.8 264.4,249.5 260.5,249.5 260.5,243.8 " /></g><g id="bbox:1.3_47.3_1.4_47.4" ><polygon points="264.4,243.8 268.2,243.8 268.2,249.5 264.4,249.5 264.4,243.8 " /></g><g id="bbox:1.4_47.3_1.5_47.4" ><polygon points="268.2,243.8 272.1,243.8 272.1,249.5 268.2,249.5 268.2,243.8 " /></g><g id="bbox:1.5_47.3_1.6_47.4" ><polygon points="272.1,243.8 275.9,243.8 275.9,249.5 272.1,249.5 272.1,243.8 " /></g><g id="bbox:1.6_47.3_1.7_47.4" ><polygon points="275.9,243.8 279.8,243.8 279.8,249.5 275.9,249.5 275.9,243.8 " /></g><g id="bbox:1.7_47.3_1.8_47.4" ><polygon points="279.8,243.8 283.6,243.8 283.6,249.5 279.8,249.5 279.8,243.8 " /></g><g id="bbox:1.8_47.3_1.9_47.4" ><polygon points="283.6,243.8 287.5,243.8 287.5,249.5 283.6,249.5 283.6,243.8 " /></g><g id="bbox:1.9_47.3_2_47.4" ><polygon points="287.5,243.8 291.3,243.8 291.3,249.5 287.5,249.5 287.5,243.8 " /></g><g id="bbox:2_47.3_2.1_47.4" ><polygon points="291.3,243.8 295.2,243.8 295.2,249.5 291.3,249.5 291.3,243.8 " /></g><g id="bbox:2.1_47.3_2.2_47.4" ><polygon points="295.2,243.8 299.0,243.8 299.0,249.5 295.2,249.5 295.2,243.8 " /></g><g id="bbox:2.2_47.3_2.3_47.4" ><polygon points="299.0,243.8 302.8,243.8 302.8,249.5 299.0,249.5 299.0,243.8 " /></g><g id="bbox:2.3_47.3_2.4_47.4" ><polygon points="302.8,243.8 306.7,243.8 306.7,249.5 302.8,249.5 302.8,243.8 " /></g><g id="bbox:2.4_47.3_2.5_47.4" ><polygon points="306.7,243.8 310.5,243.8 310.5,249.5 306.7,249.5 306.7,243.8 " /></g><g id="bbox:2.5_47.3_2.6_47.4" ><polygon points="310.5,243.8 314.4,243.8 314.4,249.5 310.5,249.5 310.5,243.8 " /></g><g id="bbox:2.6_47.3_2.7_47.4" ><polygon points="314.4,243.8 318.2,243.8 318.2,249.5 314.4,249.5 314.4,243.8 " /></g><g id="bbox:2.7_47.3_2.8_47.4" ><polygon points="318.2,243.8 322.1,243.8 322.1,249.5 318.2,249.5 318.2,243.8 " /></g><g id="bbox:2.8_47.3_2.9_47.4" ><polygon points="322.1,243.8 325.9,243.8 325.9,249.5 322.1,249.5 322.1,243.8 " /></g><g id="bbox:2.9_47.3_3_47.4" ><polygon points="325.9,243.8 329.8,243.8 329.8,249.5 325.9,249.5 325.9,243.8 " /></g><g id="bbox:3_47.3_3.1_47.4" ><polygon points="329.8,243.8 333.6,243.8 333.6,249.5 329.8,249.5 329.8,243.8 " /></g><g id="bbox:3.1_47.3_3.2_47.4" ><polygon points="333.6,243.8 337.5,243.8 337.5,249.5 333.6,249.5 333.6,243.8 " /></g><g id="bbox:3.2_47.3_3.3_47.4" ><polygon points="337.5,243.8 341.3,243.8 341.3,249.5 337.5,249.5 337.5,243.8 " /></g><g id="bbox:3.3_47.3_3.4_47.4" ><polygon points="341.3,243.8 345.2,243.8 345.2,249.5 341.3,249.5 341.3,243.8 " /></g><g id="bbox:3.4_47.3_3.5_47.4" ><polygon points="345.2,243.8 349.0,243.8 349.0,249.5 345.2,249.5 345.2,243.8 " /></g><g id="bbox:3.5_47.3_3.6_47.4" ><polygon points="349.0,243.8 352.9,243.8 352.9,249.5 349.0,249.5 349.0,243.8 " /></g><g id="bbox:3.6_47.3_3.7_47.4" ><polygon points="352.9,243.8 356.7,243.8 356.7,249.5 352.9,249.5 352.9,243.8 " /></g><g id="bbox:3.7_47.3_3.8_47.4" ><polygon points="356.7,243.8 360.6,243.8 360.6,249.5 356.7,249.5 356.7,243.8 " /></g><g id="bbox:3.8_47.3_3.9_47.4" ><polygon points="360.6,243.8 364.4,243.8 364.4,249.5 360.6,249.5 360.6,243.8 " /></g><g id="bbox:3.9_47.3_4_47.4" ><polygon points="364.4,243.8 368.3,243.8 368.3,249.5 364.4,249.5 364.4,243.8 " /></g><g id="bbox:4_47.3_4.1_47.4" ><polygon points="368.3,243.8 372.1,243.8 372.1,249.5 368.3,249.5 368.3,243.8 " /></g><g id="bbox:4.1_47.3_4.2_47.4" ><polygon points="372.1,243.8 376.0,243.8 376.0,249.5 372.1,249.5 372.1,243.8 " /></g><g id="bbox:4.2_47.3_4.3_47.4" ><polygon points="376.0,243.8 379.8,243.8 379.8,249.5 376.0,249.5 376.0,243.8 " /></g><g id="bbox:4.3_47.3_4.4_47.4" ><polygon points="379.8,243.8 383.7,243.8 383.7,249.5 379.8,249.5 379.8,243.8 " /></g><g id="bbox:4.4_47.3_4.5_47.4" ><polygon points="383.7,243.8 387.5,243.8 387.5,249.5 383.7,249.5 383.7,243.8 " /></g><g id="bbox:4.5_47.3_4.6_47.4" ><polygon points="387.5,243.8 391.4,243.8 391.4,249.5 387.5,249.5 387.5,243.8 " /></g><g id="bbox:4.6_47.3_4.7_47.4" ><polygon points="391.4,243.8 395.2,243.8 395.2,249.5 391.4,249.5 391.4,243.8 " /></g><g id="bbox:4.7_47.3_4.8_47.4" ><polygon points="395.2,243.8 399.1,243.8 399.1,249.5 395.2,249.5 395.2,243.8 " /></g><g id="bbox:4.8_47.3_4.9_47.4" ><polygon points="399.1,243.8 402.9,243.8 402.9,249.5 399.1,249.5 399.1,243.8 " /></g><g id="bbox:4.9_47.3_5_47.4" ><polygon points="402.9,243.8 406.7,243.8 406.7,249.5 402.9,249.5 402.9,243.8 " /></g><g id="bbox:5_47.3_5.1_47.4" ><polygon points="406.7,243.8 410.6,243.8 410.6,249.5 406.7,249.5 406.7,243.8 " /></g><g id="bbox:5.1_47.3_5.2_47.4" ><polygon points="410.6,243.8 414.4,243.8 414.4,249.5 410.6,249.5 410.6,243.8 " /></g><g id="bbox:5.2_47.3_5.3_47.4" ><polygon points="414.4,243.8 418.3,243.8 418.3,249.5 414.4,249.5 414.4,243.8 " /></g><g id="bbox:5.3_47.3_5.4_47.4" ><polygon points="418.3,243.8 422.1,243.8 422.1,249.5 418.3,249.5 418.3,243.8 " /></g><g id="bbox:5.4_47.3_5.5_47.4" ><polygon points="422.1,243.8 426.0,243.8 426.0,249.5 422.1,249.5 422.1,243.8 " /></g><g id="bbox:5.5_47.3_5.6_47.4" ><polygon points="426.0,243.8 429.8,243.8 429.8,249.5 426.0,249.5 426.0,243.8 " /></g><g id="bbox:5.6_47.3_5.7_47.4" ><polygon points="429.8,243.8 433.7,243.8 433.7,249.5 429.8,249.5 429.8,243.8 " /></g><g id="bbox:5.7_47.3_5.8_47.4" ><polygon points="433.7,243.8 437.5,243.8 437.5,249.5 433.7,249.5 433.7,243.8 " /></g><g id="bbox:5.8_47.3_5.9_47.4" ><polygon points="437.5,243.8 441.4,243.8 441.4,249.5 437.5,249.5 437.5,243.8 " /></g><g id="bbox:5.9_47.3_6_47.4" ><polygon points="441.4,243.8 445.2,243.8 445.2,249.5 441.4,249.5 441.4,243.8 " /></g><g id="bbox:6_47.3_6.1_47.4" ><polygon points="445.2,243.8 449.1,243.8 449.1,249.5 445.2,249.5 445.2,243.8 " /></g><g id="bbox:6.1_47.3_6.2_47.4" ><polygon points="449.1,243.8 452.9,243.8 452.9,249.5 449.1,249.5 449.1,243.8 " /></g><g id="bbox:6.2_47.3_6.3_47.4" ><polygon points="452.9,243.8 456.8,243.8 456.8,249.5 452.9,249.5 452.9,243.8 " /></g><g id="bbox:6.3_47.3_6.4_47.4" ><polygon points="456.8,243.8 460.6,243.8 460.6,249.5 456.8,249.5 456.8,243.8 " /></g><g id="bbox:6.4_47.3_6.5_47.4" ><polygon points="460.6,243.8 464.5,243.8 464.5,249.5 460.6,249.5 460.6,243.8 " /></g><g id="bbox:6.5_47.3_6.6_47.4" ><polygon points="464.5,243.8 468.3,243.8 468.3,249.5 464.5,249.5 464.5,243.8 " /></g><g id="bbox:6.6_47.3_6.7_47.4" ><polygon points="468.3,243.8 472.2,243.8 472.2,249.5 468.3,249.5 468.3,243.8 " /></g><g id="bbox:6.7_47.3_6.8_47.4" ><polygon points="472.2,243.8 476.0,243.8 476.0,249.5 472.2,249.5 472.2,243.8 " /></g><g id="bbox:6.8_47.3_6.9_47.4" ><polygon points="476.0,243.8 479.9,243.8 479.9,249.5 476.0,249.5 476.0,243.8 " /></g><g id="bbox:6.9_47.3_7_47.4" ><polygon points="479.9,243.8 483.7,243.8 483.7,249.5 479.9,249.5 479.9,243.8 " /></g><g id="bbox:7_47.3_7.1_47.4" ><polygon points="483.7,243.8 487.6,243.8 487.6,249.5 483.7,249.5 483.7,243.8 " /></g><g id="bbox:-3.3_47.2_-3.2_47.3" ><polygon points="87.4,249.5 91.2,249.5 91.2,255.1 87.4,255.1 87.4,249.5 " /></g><g id="bbox:-3.2_47.2_-3.1_47.3" ><polygon points="91.2,249.5 95.0,249.5 95.0,255.1 91.2,255.1 91.2,249.5 " /></g><g id="bbox:-3.1_47.2_-3_47.3" ><polygon points="95.0,249.5 98.9,249.5 98.9,255.1 95.0,255.1 95.0,249.5 " /></g><g id="bbox:-2.6_47.2_-2.5_47.3" ><polygon points="114.3,249.5 118.1,249.5 118.1,255.1 114.3,255.1 114.3,249.5 " /></g><g id="bbox:-2.5_47.2_-2.4_47.3" ><polygon points="118.1,249.5 122.0,249.5 122.0,255.1 118.1,255.1 118.1,249.5 " /></g><g id="bbox:-2.4_47.2_-2.3_47.3" ><polygon points="122.0,249.5 125.8,249.5 125.8,255.1 122.0,255.1 122.0,249.5 " /></g><g id="bbox:-2.3_47.2_-2.2_47.3" ><polygon points="125.8,249.5 129.7,249.5 129.7,255.1 125.8,255.1 125.8,249.5 " /></g><g id="bbox:-2.2_47.2_-2.1_47.3" ><polygon points="129.7,249.5 133.5,249.5 133.5,255.1 129.7,255.1 129.7,249.5 " /></g><g id="bbox:-2.1_47.2_-2_47.3" ><polygon points="133.5,249.5 137.4,249.5 137.4,255.1 133.5,255.1 133.5,249.5 " /></g><g id="bbox:-2_47.2_-1.9_47.3" ><polygon points="137.4,249.5 141.2,249.5 141.2,255.1 137.4,255.1 137.4,249.5 " /></g><g id="bbox:-1.9_47.2_-1.8_47.3" ><polygon points="141.2,249.5 145.1,249.5 145.1,255.1 141.2,255.1 141.2,249.5 " /></g><g id="bbox:-1.8_47.2_-1.7_47.3" ><polygon points="145.1,249.5 148.9,249.5 148.9,255.1 145.1,255.1 145.1,249.5 " /></g><g id="bbox:-1.7_47.2_-1.6_47.3" ><polygon points="148.9,249.5 152.8,249.5 152.8,255.1 148.9,255.1 148.9,249.5 " /></g><g id="bbox:-1.6_47.2_-1.5_47.3" ><polygon points="152.8,249.5 156.6,249.5 156.6,255.1 152.8,255.1 152.8,249.5 " /></g><g id="bbox:-1.5_47.2_-1.4_47.3" ><polygon points="156.6,249.5 160.5,249.5 160.5,255.1 156.6,255.1 156.6,249.5 " /></g><g id="bbox:-1.4_47.2_-1.3_47.3" ><polygon points="160.5,249.5 164.3,249.5 164.3,255.1 160.5,255.1 160.5,249.5 " /></g><g id="bbox:-1.3_47.2_-1.2_47.3" ><polygon points="164.3,249.5 168.2,249.5 168.2,255.1 164.3,255.1 164.3,249.5 " /></g><g id="bbox:-1.2_47.2_-1.1_47.3" ><polygon points="168.2,249.5 172.0,249.5 172.0,255.1 168.2,255.1 168.2,249.5 " /></g><g id="bbox:-1.1_47.2_-1_47.3" ><polygon points="172.0,249.5 175.9,249.5 175.9,255.1 172.0,255.1 172.0,249.5 " /></g><g id="bbox:-1_47.2_-0.9_47.3" ><polygon points="175.9,249.5 179.7,249.5 179.7,255.1 175.9,255.1 175.9,249.5 " /></g><g id="bbox:-0.9_47.2_-0.8_47.3" ><polygon points="179.7,249.5 183.6,249.5 183.6,255.1 179.7,255.1 179.7,249.5 " /></g><g id="bbox:-0.8_47.2_-0.7_47.3" ><polygon points="183.6,249.5 187.4,249.5 187.4,255.1 183.6,255.1 183.6,249.5 " /></g><g id="bbox:-0.7_47.2_-0.6_47.3" ><polygon points="187.4,249.5 191.3,249.5 191.3,255.1 187.4,255.1 187.4,249.5 " /></g><g id="bbox:-0.6_47.2_-0.5_47.3" ><polygon points="191.3,249.5 195.1,249.5 195.1,255.1 191.3,255.1 191.3,249.5 " /></g><g id="bbox:-0.5_47.2_-0.4_47.3" ><polygon points="195.1,249.5 198.9,249.5 198.9,255.1 195.1,255.1 195.1,249.5 " /></g><g id="bbox:-0.4_47.2_-0.3_47.3" ><polygon points="198.9,249.5 202.8,249.5 202.8,255.1 198.9,255.1 198.9,249.5 " /></g><g id="bbox:-0.3_47.2_-0.2_47.3" ><polygon points="202.8,249.5 206.6,249.5 206.6,255.1 202.8,255.1 202.8,249.5 " /></g><g id="bbox:-0.2_47.2_-0.1_47.3" ><polygon points="206.6,249.5 210.5,249.5 210.5,255.1 206.6,255.1 206.6,249.5 " /></g><g id="bbox:-0.1_47.2_0_47.3" ><polygon points="210.5,249.5 214.3,249.5 214.3,255.1 210.5,255.1 210.5,249.5 " /></g><g id="bbox:0_47.2_0.1_47.3" ><polygon points="214.3,249.5 218.2,249.5 218.2,255.1 214.3,255.1 214.3,249.5 " /></g><g id="bbox:0.1_47.2_0.2_47.3" ><polygon points="218.2,249.5 222.0,249.5 222.0,255.1 218.2,255.1 218.2,249.5 " /></g><g id="bbox:0.2_47.2_0.3_47.3" ><polygon points="222.0,249.5 225.9,249.5 225.9,255.1 222.0,255.1 222.0,249.5 " /></g><g id="bbox:0.3_47.2_0.4_47.3" ><polygon points="225.9,249.5 229.7,249.5 229.7,255.1 225.9,255.1 225.9,249.5 " /></g><g id="bbox:0.4_47.2_0.5_47.3" ><polygon points="229.7,249.5 233.6,249.5 233.6,255.1 229.7,255.1 229.7,249.5 " /></g><g id="bbox:0.5_47.2_0.6_47.3" ><polygon points="233.6,249.5 237.4,249.5 237.4,255.1 233.6,255.1 233.6,249.5 " /></g><g id="bbox:0.6_47.2_0.7_47.3" ><polygon points="237.4,249.5 241.3,249.5 241.3,255.1 237.4,255.1 237.4,249.5 " /></g><g id="bbox:0.7_47.2_0.8_47.3" ><polygon points="241.3,249.5 245.1,249.5 245.1,255.1 241.3,255.1 241.3,249.5 " /></g><g id="bbox:0.8_47.2_0.9_47.3" ><polygon points="245.1,249.5 249.0,249.5 249.0,255.1 245.1,255.1 245.1,249.5 " /></g><g id="bbox:0.9_47.2_1_47.3" ><polygon points="249.0,249.5 252.8,249.5 252.8,255.1 249.0,255.1 249.0,249.5 " /></g><g id="bbox:1_47.2_1.1_47.3" ><polygon points="252.8,249.5 256.7,249.5 256.7,255.1 252.8,255.1 252.8,249.5 " /></g><g id="bbox:1.1_47.2_1.2_47.3" ><polygon points="256.7,249.5 260.5,249.5 260.5,255.1 256.7,255.1 256.7,249.5 " /></g><g id="bbox:1.2_47.2_1.3_47.3" ><polygon points="260.5,249.5 264.4,249.5 264.4,255.1 260.5,255.1 260.5,249.5 " /></g><g id="bbox:1.3_47.2_1.4_47.3" ><polygon points="264.4,249.5 268.2,249.5 268.2,255.1 264.4,255.1 264.4,249.5 " /></g><g id="bbox:1.4_47.2_1.5_47.3" ><polygon points="268.2,249.5 272.1,249.5 272.1,255.1 268.2,255.1 268.2,249.5 " /></g><g id="bbox:1.5_47.2_1.6_47.3" ><polygon points="272.1,249.5 275.9,249.5 275.9,255.1 272.1,255.1 272.1,249.5 " /></g><g id="bbox:1.6_47.2_1.7_47.3" ><polygon points="275.9,249.5 279.8,249.5 279.8,255.1 275.9,255.1 275.9,249.5 " /></g><g id="bbox:1.7_47.2_1.8_47.3" ><polygon points="279.8,249.5 283.6,249.5 283.6,255.1 279.8,255.1 279.8,249.5 " /></g><g id="bbox:1.8_47.2_1.9_47.3" ><polygon points="283.6,249.5 287.5,249.5 287.5,255.1 283.6,255.1 283.6,249.5 " /></g><g id="bbox:1.9_47.2_2_47.3" ><polygon points="287.5,249.5 291.3,249.5 291.3,255.1 287.5,255.1 287.5,249.5 " /></g><g id="bbox:2_47.2_2.1_47.3" ><polygon points="291.3,249.5 295.2,249.5 295.2,255.1 291.3,255.1 291.3,249.5 " /></g><g id="bbox:2.1_47.2_2.2_47.3" ><polygon points="295.2,249.5 299.0,249.5 299.0,255.1 295.2,255.1 295.2,249.5 " /></g><g id="bbox:2.2_47.2_2.3_47.3" ><polygon points="299.0,249.5 302.8,249.5 302.8,255.1 299.0,255.1 299.0,249.5 " /></g><g id="bbox:2.3_47.2_2.4_47.3" ><polygon points="302.8,249.5 306.7,249.5 306.7,255.1 302.8,255.1 302.8,249.5 " /></g><g id="bbox:2.4_47.2_2.5_47.3" ><polygon points="306.7,249.5 310.5,249.5 310.5,255.1 306.7,255.1 306.7,249.5 " /></g><g id="bbox:2.5_47.2_2.6_47.3" ><polygon points="310.5,249.5 314.4,249.5 314.4,255.1 310.5,255.1 310.5,249.5 " /></g><g id="bbox:2.6_47.2_2.7_47.3" ><polygon points="314.4,249.5 318.2,249.5 318.2,255.1 314.4,255.1 314.4,249.5 " /></g><g id="bbox:2.7_47.2_2.8_47.3" ><polygon points="318.2,249.5 322.1,249.5 322.1,255.1 318.2,255.1 318.2,249.5 " /></g><g id="bbox:2.8_47.2_2.9_47.3" ><polygon points="322.1,249.5 325.9,249.5 325.9,255.1 322.1,255.1 322.1,249.5 " /></g><g id="bbox:2.9_47.2_3_47.3" ><polygon points="325.9,249.5 329.8,249.5 329.8,255.1 325.9,255.1 325.9,249.5 " /></g><g id="bbox:3_47.2_3.1_47.3" ><polygon points="329.8,249.5 333.6,249.5 333.6,255.1 329.8,255.1 329.8,249.5 " /></g><g id="bbox:3.1_47.2_3.2_47.3" ><polygon points="333.6,249.5 337.5,249.5 337.5,255.1 333.6,255.1 333.6,249.5 " /></g><g id="bbox:3.2_47.2_3.3_47.3" ><polygon points="337.5,249.5 341.3,249.5 341.3,255.1 337.5,255.1 337.5,249.5 " /></g><g id="bbox:3.3_47.2_3.4_47.3" ><polygon points="341.3,249.5 345.2,249.5 345.2,255.1 341.3,255.1 341.3,249.5 " /></g><g id="bbox:3.4_47.2_3.5_47.3" ><polygon points="345.2,249.5 349.0,249.5 349.0,255.1 345.2,255.1 345.2,249.5 " /></g><g id="bbox:3.5_47.2_3.6_47.3" ><polygon points="349.0,249.5 352.9,249.5 352.9,255.1 349.0,255.1 349.0,249.5 " /></g><g id="bbox:3.6_47.2_3.7_47.3" ><polygon points="352.9,249.5 356.7,249.5 356.7,255.1 352.9,255.1 352.9,249.5 " /></g><g id="bbox:3.7_47.2_3.8_47.3" ><polygon points="356.7,249.5 360.6,249.5 360.6,255.1 356.7,255.1 356.7,249.5 " /></g><g id="bbox:3.8_47.2_3.9_47.3" ><polygon points="360.6,249.5 364.4,249.5 364.4,255.1 360.6,255.1 360.6,249.5 " /></g><g id="bbox:3.9_47.2_4_47.3" ><polygon points="364.4,249.5 368.3,249.5 368.3,255.1 364.4,255.1 364.4,249.5 " /></g><g id="bbox:4_47.2_4.1_47.3" ><polygon points="368.3,249.5 372.1,249.5 372.1,255.1 368.3,255.1 368.3,249.5 " /></g><g id="bbox:4.1_47.2_4.2_47.3" ><polygon points="372.1,249.5 376.0,249.5 376.0,255.1 372.1,255.1 372.1,249.5 " /></g><g id="bbox:4.2_47.2_4.3_47.3" ><polygon points="376.0,249.5 379.8,249.5 379.8,255.1 376.0,255.1 376.0,249.5 " /></g><g id="bbox:4.3_47.2_4.4_47.3" ><polygon points="379.8,249.5 383.7,249.5 383.7,255.1 379.8,255.1 379.8,249.5 " /></g><g id="bbox:4.4_47.2_4.5_47.3" ><polygon points="383.7,249.5 387.5,249.5 387.5,255.1 383.7,255.1 383.7,249.5 " /></g><g id="bbox:4.5_47.2_4.6_47.3" ><polygon points="387.5,249.5 391.4,249.5 391.4,255.1 387.5,255.1 387.5,249.5 " /></g><g id="bbox:4.6_47.2_4.7_47.3" ><polygon points="391.4,249.5 395.2,249.5 395.2,255.1 391.4,255.1 391.4,249.5 " /></g><g id="bbox:4.7_47.2_4.8_47.3" ><polygon points="395.2,249.5 399.1,249.5 399.1,255.1 395.2,255.1 395.2,249.5 " /></g><g id="bbox:4.8_47.2_4.9_47.3" ><polygon points="399.1,249.5 402.9,249.5 402.9,255.1 399.1,255.1 399.1,249.5 " /></g><g id="bbox:4.9_47.2_5_47.3" ><polygon points="402.9,249.5 406.7,249.5 406.7,255.1 402.9,255.1 402.9,249.5 " /></g><g id="bbox:5_47.2_5.1_47.3" ><polygon points="406.7,249.5 410.6,249.5 410.6,255.1 406.7,255.1 406.7,249.5 " /></g><g id="bbox:5.1_47.2_5.2_47.3" ><polygon points="410.6,249.5 414.4,249.5 414.4,255.1 410.6,255.1 410.6,249.5 " /></g><g id="bbox:5.2_47.2_5.3_47.3" ><polygon points="414.4,249.5 418.3,249.5 418.3,255.1 414.4,255.1 414.4,249.5 " /></g><g id="bbox:5.3_47.2_5.4_47.3" ><polygon points="418.3,249.5 422.1,249.5 422.1,255.1 418.3,255.1 418.3,249.5 " /></g><g id="bbox:5.4_47.2_5.5_47.3" ><polygon points="422.1,249.5 426.0,249.5 426.0,255.1 422.1,255.1 422.1,249.5 " /></g><g id="bbox:5.5_47.2_5.6_47.3" ><polygon points="426.0,249.5 429.8,249.5 429.8,255.1 426.0,255.1 426.0,249.5 " /></g><g id="bbox:5.6_47.2_5.7_47.3" ><polygon points="429.8,249.5 433.7,249.5 433.7,255.1 429.8,255.1 429.8,249.5 " /></g><g id="bbox:5.7_47.2_5.8_47.3" ><polygon points="433.7,249.5 437.5,249.5 437.5,255.1 433.7,255.1 433.7,249.5 " /></g><g id="bbox:5.8_47.2_5.9_47.3" ><polygon points="437.5,249.5 441.4,249.5 441.4,255.1 437.5,255.1 437.5,249.5 " /></g><g id="bbox:5.9_47.2_6_47.3" ><polygon points="441.4,249.5 445.2,249.5 445.2,255.1 441.4,255.1 441.4,249.5 " /></g><g id="bbox:6_47.2_6.1_47.3" ><polygon points="445.2,249.5 449.1,249.5 449.1,255.1 445.2,255.1 445.2,249.5 " /></g><g id="bbox:6.1_47.2_6.2_47.3" ><polygon points="449.1,249.5 452.9,249.5 452.9,255.1 449.1,255.1 449.1,249.5 " /></g><g id="bbox:6.2_47.2_6.3_47.3" ><polygon points="452.9,249.5 456.8,249.5 456.8,255.1 452.9,255.1 452.9,249.5 " /></g><g id="bbox:6.3_47.2_6.4_47.3" ><polygon points="456.8,249.5 460.6,249.5 460.6,255.1 456.8,255.1 456.8,249.5 " /></g><g id="bbox:6.4_47.2_6.5_47.3" ><polygon points="460.6,249.5 464.5,249.5 464.5,255.1 460.6,255.1 460.6,249.5 " /></g><g id="bbox:6.5_47.2_6.6_47.3" ><polygon points="464.5,249.5 468.3,249.5 468.3,255.1 464.5,255.1 464.5,249.5 " /></g><g id="bbox:6.6_47.2_6.7_47.3" ><polygon points="468.3,249.5 472.2,249.5 472.2,255.1 468.3,255.1 468.3,249.5 " /></g><g id="bbox:6.7_47.2_6.8_47.3" ><polygon points="472.2,249.5 476.0,249.5 476.0,255.1 472.2,255.1 472.2,249.5 " /></g><g id="bbox:6.8_47.2_6.9_47.3" ><polygon points="476.0,249.5 479.9,249.5 479.9,255.1 476.0,255.1 476.0,249.5 " /></g><g id="bbox:6.9_47.2_7_47.3" ><polygon points="479.9,249.5 483.7,249.5 483.7,255.1 479.9,255.1 479.9,249.5 " /></g><g id="bbox:7_47.2_7.1_47.3" ><polygon points="483.7,249.5 487.6,249.5 487.6,255.1 483.7,255.1 483.7,249.5 " /></g><g id="bbox:-2.3_47.1_-2.2_47.2" ><polygon points="125.8,255.1 129.7,255.1 129.7,260.8 125.8,260.8 125.8,255.1 " /></g><g id="bbox:-2.2_47.1_-2.1_47.2" ><polygon points="129.7,255.1 133.5,255.1 133.5,260.8 129.7,260.8 129.7,255.1 " /></g><g id="bbox:-2.1_47.1_-2_47.2" ><polygon points="133.5,255.1 137.4,255.1 137.4,260.8 133.5,260.8 133.5,255.1 " /></g><g id="bbox:-2_47.1_-1.9_47.2" ><polygon points="137.4,255.1 141.2,255.1 141.2,260.8 137.4,260.8 137.4,255.1 " /></g><g id="bbox:-1.9_47.1_-1.8_47.2" ><polygon points="141.2,255.1 145.1,255.1 145.1,260.8 141.2,260.8 141.2,255.1 " /></g><g id="bbox:-1.8_47.1_-1.7_47.2" ><polygon points="145.1,255.1 148.9,255.1 148.9,260.8 145.1,260.8 145.1,255.1 " /></g><g id="bbox:-1.7_47.1_-1.6_47.2" ><polygon points="148.9,255.1 152.8,255.1 152.8,260.8 148.9,260.8 148.9,255.1 " /></g><g id="bbox:-1.6_47.1_-1.5_47.2" ><polygon points="152.8,255.1 156.6,255.1 156.6,260.8 152.8,260.8 152.8,255.1 " /></g><g id="bbox:-1.5_47.1_-1.4_47.2" ><polygon points="156.6,255.1 160.5,255.1 160.5,260.8 156.6,260.8 156.6,255.1 " /></g><g id="bbox:-1.4_47.1_-1.3_47.2" ><polygon points="160.5,255.1 164.3,255.1 164.3,260.8 160.5,260.8 160.5,255.1 " /></g><g id="bbox:-1.3_47.1_-1.2_47.2" ><polygon points="164.3,255.1 168.2,255.1 168.2,260.8 164.3,260.8 164.3,255.1 " /></g><g id="bbox:-1.2_47.1_-1.1_47.2" ><polygon points="168.2,255.1 172.0,255.1 172.0,260.8 168.2,260.8 168.2,255.1 " /></g><g id="bbox:-1.1_47.1_-1_47.2" ><polygon points="172.0,255.1 175.9,255.1 175.9,260.8 172.0,260.8 172.0,255.1 " /></g><g id="bbox:-1_47.1_-0.9_47.2" ><polygon points="175.9,255.1 179.7,255.1 179.7,260.8 175.9,260.8 175.9,255.1 " /></g><g id="bbox:-0.9_47.1_-0.8_47.2" ><polygon points="179.7,255.1 183.6,255.1 183.6,260.8 179.7,260.8 179.7,255.1 " /></g><g id="bbox:-0.8_47.1_-0.7_47.2" ><polygon points="183.6,255.1 187.4,255.1 187.4,260.8 183.6,260.8 183.6,255.1 " /></g><g id="bbox:-0.7_47.1_-0.6_47.2" ><polygon points="187.4,255.1 191.3,255.1 191.3,260.8 187.4,260.8 187.4,255.1 " /></g><g id="bbox:-0.6_47.1_-0.5_47.2" ><polygon points="191.3,255.1 195.1,255.1 195.1,260.8 191.3,260.8 191.3,255.1 " /></g><g id="bbox:-0.5_47.1_-0.4_47.2" ><polygon points="195.1,255.1 198.9,255.1 198.9,260.8 195.1,260.8 195.1,255.1 " /></g><g id="bbox:-0.4_47.1_-0.3_47.2" ><polygon points="198.9,255.1 202.8,255.1 202.8,260.8 198.9,260.8 198.9,255.1 " /></g><g id="bbox:-0.3_47.1_-0.2_47.2" ><polygon points="202.8,255.1 206.6,255.1 206.6,260.8 202.8,260.8 202.8,255.1 " /></g><g id="bbox:-0.2_47.1_-0.1_47.2" ><polygon points="206.6,255.1 210.5,255.1 210.5,260.8 206.6,260.8 206.6,255.1 " /></g><g id="bbox:-0.1_47.1_0_47.2" ><polygon points="210.5,255.1 214.3,255.1 214.3,260.8 210.5,260.8 210.5,255.1 " /></g><g id="bbox:0_47.1_0.1_47.2" ><polygon points="214.3,255.1 218.2,255.1 218.2,260.8 214.3,260.8 214.3,255.1 " /></g><g id="bbox:0.1_47.1_0.2_47.2" ><polygon points="218.2,255.1 222.0,255.1 222.0,260.8 218.2,260.8 218.2,255.1 " /></g><g id="bbox:0.2_47.1_0.3_47.2" ><polygon points="222.0,255.1 225.9,255.1 225.9,260.8 222.0,260.8 222.0,255.1 " /></g><g id="bbox:0.3_47.1_0.4_47.2" ><polygon points="225.9,255.1 229.7,255.1 229.7,260.8 225.9,260.8 225.9,255.1 " /></g><g id="bbox:0.4_47.1_0.5_47.2" ><polygon points="229.7,255.1 233.6,255.1 233.6,260.8 229.7,260.8 229.7,255.1 " /></g><g id="bbox:0.5_47.1_0.6_47.2" ><polygon points="233.6,255.1 237.4,255.1 237.4,260.8 233.6,260.8 233.6,255.1 " /></g><g id="bbox:0.6_47.1_0.7_47.2" ><polygon points="237.4,255.1 241.3,255.1 241.3,260.8 237.4,260.8 237.4,255.1 " /></g><g id="bbox:0.7_47.1_0.8_47.2" ><polygon points="241.3,255.1 245.1,255.1 245.1,260.8 241.3,260.8 241.3,255.1 " /></g><g id="bbox:0.8_47.1_0.9_47.2" ><polygon points="245.1,255.1 249.0,255.1 249.0,260.8 245.1,260.8 245.1,255.1 " /></g><g id="bbox:0.9_47.1_1_47.2" ><polygon points="249.0,255.1 252.8,255.1 252.8,260.8 249.0,260.8 249.0,255.1 " /></g><g id="bbox:1_47.1_1.1_47.2" ><polygon points="252.8,255.1 256.7,255.1 256.7,260.8 252.8,260.8 252.8,255.1 " /></g><g id="bbox:1.1_47.1_1.2_47.2" ><polygon points="256.7,255.1 260.5,255.1 260.5,260.8 256.7,260.8 256.7,255.1 " /></g><g id="bbox:1.2_47.1_1.3_47.2" ><polygon points="260.5,255.1 264.4,255.1 264.4,260.8 260.5,260.8 260.5,255.1 " /></g><g id="bbox:1.3_47.1_1.4_47.2" ><polygon points="264.4,255.1 268.2,255.1 268.2,260.8 264.4,260.8 264.4,255.1 " /></g><g id="bbox:1.4_47.1_1.5_47.2" ><polygon points="268.2,255.1 272.1,255.1 272.1,260.8 268.2,260.8 268.2,255.1 " /></g><g id="bbox:1.5_47.1_1.6_47.2" ><polygon points="272.1,255.1 275.9,255.1 275.9,260.8 272.1,260.8 272.1,255.1 " /></g><g id="bbox:1.6_47.1_1.7_47.2" ><polygon points="275.9,255.1 279.8,255.1 279.8,260.8 275.9,260.8 275.9,255.1 " /></g><g id="bbox:1.7_47.1_1.8_47.2" ><polygon points="279.8,255.1 283.6,255.1 283.6,260.8 279.8,260.8 279.8,255.1 " /></g><g id="bbox:1.8_47.1_1.9_47.2" ><polygon points="283.6,255.1 287.5,255.1 287.5,260.8 283.6,260.8 283.6,255.1 " /></g><g id="bbox:1.9_47.1_2_47.2" ><polygon points="287.5,255.1 291.3,255.1 291.3,260.8 287.5,260.8 287.5,255.1 " /></g><g id="bbox:2_47.1_2.1_47.2" ><polygon points="291.3,255.1 295.2,255.1 295.2,260.8 291.3,260.8 291.3,255.1 " /></g><g id="bbox:2.1_47.1_2.2_47.2" ><polygon points="295.2,255.1 299.0,255.1 299.0,260.8 295.2,260.8 295.2,255.1 " /></g><g id="bbox:2.2_47.1_2.3_47.2" ><polygon points="299.0,255.1 302.8,255.1 302.8,260.8 299.0,260.8 299.0,255.1 " /></g><g id="bbox:2.3_47.1_2.4_47.2" ><polygon points="302.8,255.1 306.7,255.1 306.7,260.8 302.8,260.8 302.8,255.1 " /></g><g id="bbox:2.4_47.1_2.5_47.2" ><polygon points="306.7,255.1 310.5,255.1 310.5,260.8 306.7,260.8 306.7,255.1 " /></g><g id="bbox:2.5_47.1_2.6_47.2" ><polygon points="310.5,255.1 314.4,255.1 314.4,260.8 310.5,260.8 310.5,255.1 " /></g><g id="bbox:2.6_47.1_2.7_47.2" ><polygon points="314.4,255.1 318.2,255.1 318.2,260.8 314.4,260.8 314.4,255.1 " /></g><g id="bbox:2.7_47.1_2.8_47.2" ><polygon points="318.2,255.1 322.1,255.1 322.1,260.8 318.2,260.8 318.2,255.1 " /></g><g id="bbox:2.8_47.1_2.9_47.2" ><polygon points="322.1,255.1 325.9,255.1 325.9,260.8 322.1,260.8 322.1,255.1 " /></g><g id="bbox:2.9_47.1_3_47.2" ><polygon points="325.9,255.1 329.8,255.1 329.8,260.8 325.9,260.8 325.9,255.1 " /></g><g id="bbox:3_47.1_3.1_47.2" ><polygon points="329.8,255.1 333.6,255.1 333.6,260.8 329.8,260.8 329.8,255.1 " /></g><g id="bbox:3.1_47.1_3.2_47.2" ><polygon points="333.6,255.1 337.5,255.1 337.5,260.8 333.6,260.8 333.6,255.1 " /></g><g id="bbox:3.2_47.1_3.3_47.2" ><polygon points="337.5,255.1 341.3,255.1 341.3,260.8 337.5,260.8 337.5,255.1 " /></g><g id="bbox:3.3_47.1_3.4_47.2" ><polygon points="341.3,255.1 345.2,255.1 345.2,260.8 341.3,260.8 341.3,255.1 " /></g><g id="bbox:3.4_47.1_3.5_47.2" ><polygon points="345.2,255.1 349.0,255.1 349.0,260.8 345.2,260.8 345.2,255.1 " /></g><g id="bbox:3.5_47.1_3.6_47.2" ><polygon points="349.0,255.1 352.9,255.1 352.9,260.8 349.0,260.8 349.0,255.1 " /></g><g id="bbox:3.6_47.1_3.7_47.2" ><polygon points="352.9,255.1 356.7,255.1 356.7,260.8 352.9,260.8 352.9,255.1 " /></g><g id="bbox:3.7_47.1_3.8_47.2" ><polygon points="356.7,255.1 360.6,255.1 360.6,260.8 356.7,260.8 356.7,255.1 " /></g><g id="bbox:3.8_47.1_3.9_47.2" ><polygon points="360.6,255.1 364.4,255.1 364.4,260.8 360.6,260.8 360.6,255.1 " /></g><g id="bbox:3.9_47.1_4_47.2" ><polygon points="364.4,255.1 368.3,255.1 368.3,260.8 364.4,260.8 364.4,255.1 " /></g><g id="bbox:4_47.1_4.1_47.2" ><polygon points="368.3,255.1 372.1,255.1 372.1,260.8 368.3,260.8 368.3,255.1 " /></g><g id="bbox:4.1_47.1_4.2_47.2" ><polygon points="372.1,255.1 376.0,255.1 376.0,260.8 372.1,260.8 372.1,255.1 " /></g><g id="bbox:4.2_47.1_4.3_47.2" ><polygon points="376.0,255.1 379.8,255.1 379.8,260.8 376.0,260.8 376.0,255.1 " /></g><g id="bbox:4.3_47.1_4.4_47.2" ><polygon points="379.8,255.1 383.7,255.1 383.7,260.8 379.8,260.8 379.8,255.1 " /></g><g id="bbox:4.4_47.1_4.5_47.2" ><polygon points="383.7,255.1 387.5,255.1 387.5,260.8 383.7,260.8 383.7,255.1 " /></g><g id="bbox:4.5_47.1_4.6_47.2" ><polygon points="387.5,255.1 391.4,255.1 391.4,260.8 387.5,260.8 387.5,255.1 " /></g><g id="bbox:4.6_47.1_4.7_47.2" ><polygon points="391.4,255.1 395.2,255.1 395.2,260.8 391.4,260.8 391.4,255.1 " /></g><g id="bbox:4.7_47.1_4.8_47.2" ><polygon points="395.2,255.1 399.1,255.1 399.1,260.8 395.2,260.8 395.2,255.1 " /></g><g id="bbox:4.8_47.1_4.9_47.2" ><polygon points="399.1,255.1 402.9,255.1 402.9,260.8 399.1,260.8 399.1,255.1 " /></g><g id="bbox:4.9_47.1_5_47.2" ><polygon points="402.9,255.1 406.7,255.1 406.7,260.8 402.9,260.8 402.9,255.1 " /></g><g id="bbox:5_47.1_5.1_47.2" ><polygon points="406.7,255.1 410.6,255.1 410.6,260.8 406.7,260.8 406.7,255.1 " /></g><g id="bbox:5.1_47.1_5.2_47.2" ><polygon points="410.6,255.1 414.4,255.1 414.4,260.8 410.6,260.8 410.6,255.1 " /></g><g id="bbox:5.2_47.1_5.3_47.2" ><polygon points="414.4,255.1 418.3,255.1 418.3,260.8 414.4,260.8 414.4,255.1 " /></g><g id="bbox:5.3_47.1_5.4_47.2" ><polygon points="418.3,255.1 422.1,255.1 422.1,260.8 418.3,260.8 418.3,255.1 " /></g><g id="bbox:5.4_47.1_5.5_47.2" ><polygon points="422.1,255.1 426.0,255.1 426.0,260.8 422.1,260.8 422.1,255.1 " /></g><g id="bbox:5.5_47.1_5.6_47.2" ><polygon points="426.0,255.1 429.8,255.1 429.8,260.8 426.0,260.8 426.0,255.1 " /></g><g id="bbox:5.6_47.1_5.7_47.2" ><polygon points="429.8,255.1 433.7,255.1 433.7,260.8 429.8,260.8 429.8,255.1 " /></g><g id="bbox:5.7_47.1_5.8_47.2" ><polygon points="433.7,255.1 437.5,255.1 437.5,260.8 433.7,260.8 433.7,255.1 " /></g><g id="bbox:5.8_47.1_5.9_47.2" ><polygon points="437.5,255.1 441.4,255.1 441.4,260.8 437.5,260.8 437.5,255.1 " /></g><g id="bbox:5.9_47.1_6_47.2" ><polygon points="441.4,255.1 445.2,255.1 445.2,260.8 441.4,260.8 441.4,255.1 " /></g><g id="bbox:6_47.1_6.1_47.2" ><polygon points="445.2,255.1 449.1,255.1 449.1,260.8 445.2,260.8 445.2,255.1 " /></g><g id="bbox:6.1_47.1_6.2_47.2" ><polygon points="449.1,255.1 452.9,255.1 452.9,260.8 449.1,260.8 449.1,255.1 " /></g><g id="bbox:6.2_47.1_6.3_47.2" ><polygon points="452.9,255.1 456.8,255.1 456.8,260.8 452.9,260.8 452.9,255.1 " /></g><g id="bbox:6.3_47.1_6.4_47.2" ><polygon points="456.8,255.1 460.6,255.1 460.6,260.8 456.8,260.8 456.8,255.1 " /></g><g id="bbox:6.4_47.1_6.5_47.2" ><polygon points="460.6,255.1 464.5,255.1 464.5,260.8 460.6,260.8 460.6,255.1 " /></g><g id="bbox:6.5_47.1_6.6_47.2" ><polygon points="464.5,255.1 468.3,255.1 468.3,260.8 464.5,260.8 464.5,255.1 " /></g><g id="bbox:6.6_47.1_6.7_47.2" ><polygon points="468.3,255.1 472.2,255.1 472.2,260.8 468.3,260.8 468.3,255.1 " /></g><g id="bbox:6.7_47.1_6.8_47.2" ><polygon points="472.2,255.1 476.0,255.1 476.0,260.8 472.2,260.8 472.2,255.1 " /></g><g id="bbox:6.8_47.1_6.9_47.2" ><polygon points="476.0,255.1 479.9,255.1 479.9,260.8 476.0,260.8 476.0,255.1 " /></g><g id="bbox:-2.4_47_-2.3_47.1" ><polygon points="122.0,260.8 125.8,260.8 125.8,266.4 122.0,266.4 122.0,260.8 " /></g><g id="bbox:-2.3_47_-2.2_47.1" ><polygon points="125.8,260.8 129.7,260.8 129.7,266.4 125.8,266.4 125.8,260.8 " /></g><g id="bbox:-2.1_47_-2_47.1" ><polygon points="133.5,260.8 137.4,260.8 137.4,266.4 133.5,266.4 133.5,260.8 " /></g><g id="bbox:-2_47_-1.9_47.1" ><polygon points="137.4,260.8 141.2,260.8 141.2,266.4 137.4,266.4 137.4,260.8 " /></g><g id="bbox:-1.9_47_-1.8_47.1" ><polygon points="141.2,260.8 145.1,260.8 145.1,266.4 141.2,266.4 141.2,260.8 " /></g><g id="bbox:-1.8_47_-1.7_47.1" ><polygon points="145.1,260.8 148.9,260.8 148.9,266.4 145.1,266.4 145.1,260.8 " /></g><g id="bbox:-1.7_47_-1.6_47.1" ><polygon points="148.9,260.8 152.8,260.8 152.8,266.4 148.9,266.4 148.9,260.8 " /></g><g id="bbox:-1.6_47_-1.5_47.1" ><polygon points="152.8,260.8 156.6,260.8 156.6,266.4 152.8,266.4 152.8,260.8 " /></g><g id="bbox:-1.5_47_-1.4_47.1" ><polygon points="156.6,260.8 160.5,260.8 160.5,266.4 156.6,266.4 156.6,260.8 " /></g><g id="bbox:-1.4_47_-1.3_47.1" ><polygon points="160.5,260.8 164.3,260.8 164.3,266.4 160.5,266.4 160.5,260.8 " /></g><g id="bbox:-1.3_47_-1.2_47.1" ><polygon points="164.3,260.8 168.2,260.8 168.2,266.4 164.3,266.4 164.3,260.8 " /></g><g id="bbox:-1.2_47_-1.1_47.1" ><polygon points="168.2,260.8 172.0,260.8 172.0,266.4 168.2,266.4 168.2,260.8 " /></g><g id="bbox:-1.1_47_-1_47.1" ><polygon points="172.0,260.8 175.9,260.8 175.9,266.4 172.0,266.4 172.0,260.8 " /></g><g id="bbox:-1_47_-0.9_47.1" ><polygon points="175.9,260.8 179.7,260.8 179.7,266.4 175.9,266.4 175.9,260.8 " /></g><g id="bbox:-0.9_47_-0.8_47.1" ><polygon points="179.7,260.8 183.6,260.8 183.6,266.4 179.7,266.4 179.7,260.8 " /></g><g id="bbox:-0.8_47_-0.7_47.1" ><polygon points="183.6,260.8 187.4,260.8 187.4,266.4 183.6,266.4 183.6,260.8 " /></g><g id="bbox:-0.7_47_-0.6_47.1" ><polygon points="187.4,260.8 191.3,260.8 191.3,266.4 187.4,266.4 187.4,260.8 " /></g><g id="bbox:-0.6_47_-0.5_47.1" ><polygon points="191.3,260.8 195.1,260.8 195.1,266.4 191.3,266.4 191.3,260.8 " /></g><g id="bbox:-0.5_47_-0.4_47.1" ><polygon points="195.1,260.8 198.9,260.8 198.9,266.4 195.1,266.4 195.1,260.8 " /></g><g id="bbox:-0.4_47_-0.3_47.1" ><polygon points="198.9,260.8 202.8,260.8 202.8,266.4 198.9,266.4 198.9,260.8 " /></g><g id="bbox:-0.3_47_-0.2_47.1" ><polygon points="202.8,260.8 206.6,260.8 206.6,266.4 202.8,266.4 202.8,260.8 " /></g><g id="bbox:-0.2_47_-0.1_47.1" ><polygon points="206.6,260.8 210.5,260.8 210.5,266.4 206.6,266.4 206.6,260.8 " /></g><g id="bbox:-0.1_47_0_47.1" ><polygon points="210.5,260.8 214.3,260.8 214.3,266.4 210.5,266.4 210.5,260.8 " /></g><g id="bbox:0_47_0.1_47.1" ><polygon points="214.3,260.8 218.2,260.8 218.2,266.4 214.3,266.4 214.3,260.8 " /></g><g id="bbox:0.1_47_0.2_47.1" ><polygon points="218.2,260.8 222.0,260.8 222.0,266.4 218.2,266.4 218.2,260.8 " /></g><g id="bbox:0.2_47_0.3_47.1" ><polygon points="222.0,260.8 225.9,260.8 225.9,266.4 222.0,266.4 222.0,260.8 " /></g><g id="bbox:0.3_47_0.4_47.1" ><polygon points="225.9,260.8 229.7,260.8 229.7,266.4 225.9,266.4 225.9,260.8 " /></g><g id="bbox:0.4_47_0.5_47.1" ><polygon points="229.7,260.8 233.6,260.8 233.6,266.4 229.7,266.4 229.7,260.8 " /></g><g id="bbox:0.5_47_0.6_47.1" ><polygon points="233.6,260.8 237.4,260.8 237.4,266.4 233.6,266.4 233.6,260.8 " /></g><g id="bbox:0.6_47_0.7_47.1" ><polygon points="237.4,260.8 241.3,260.8 241.3,266.4 237.4,266.4 237.4,260.8 " /></g><g id="bbox:0.7_47_0.8_47.1" ><polygon points="241.3,260.8 245.1,260.8 245.1,266.4 241.3,266.4 241.3,260.8 " /></g><g id="bbox:0.8_47_0.9_47.1" ><polygon points="245.1,260.8 249.0,260.8 249.0,266.4 245.1,266.4 245.1,260.8 " /></g><g id="bbox:0.9_47_1_47.1" ><polygon points="249.0,260.8 252.8,260.8 252.8,266.4 249.0,266.4 249.0,260.8 " /></g><g id="bbox:1_47_1.1_47.1" ><polygon points="252.8,260.8 256.7,260.8 256.7,266.4 252.8,266.4 252.8,260.8 " /></g><g id="bbox:1.1_47_1.2_47.1" ><polygon points="256.7,260.8 260.5,260.8 260.5,266.4 256.7,266.4 256.7,260.8 " /></g><g id="bbox:1.2_47_1.3_47.1" ><polygon points="260.5,260.8 264.4,260.8 264.4,266.4 260.5,266.4 260.5,260.8 " /></g><g id="bbox:1.3_47_1.4_47.1" ><polygon points="264.4,260.8 268.2,260.8 268.2,266.4 264.4,266.4 264.4,260.8 " /></g><g id="bbox:1.4_47_1.5_47.1" ><polygon points="268.2,260.8 272.1,260.8 272.1,266.4 268.2,266.4 268.2,260.8 " /></g><g id="bbox:1.5_47_1.6_47.1" ><polygon points="272.1,260.8 275.9,260.8 275.9,266.4 272.1,266.4 272.1,260.8 " /></g><g id="bbox:1.6_47_1.7_47.1" ><polygon points="275.9,260.8 279.8,260.8 279.8,266.4 275.9,266.4 275.9,260.8 " /></g><g id="bbox:1.7_47_1.8_47.1" ><polygon points="279.8,260.8 283.6,260.8 283.6,266.4 279.8,266.4 279.8,260.8 " /></g><g id="bbox:1.8_47_1.9_47.1" ><polygon points="283.6,260.8 287.5,260.8 287.5,266.4 283.6,266.4 283.6,260.8 " /></g><g id="bbox:1.9_47_2_47.1" ><polygon points="287.5,260.8 291.3,260.8 291.3,266.4 287.5,266.4 287.5,260.8 " /></g><g id="bbox:2_47_2.1_47.1" ><polygon points="291.3,260.8 295.2,260.8 295.2,266.4 291.3,266.4 291.3,260.8 " /></g><g id="bbox:2.1_47_2.2_47.1" ><polygon points="295.2,260.8 299.0,260.8 299.0,266.4 295.2,266.4 295.2,260.8 " /></g><g id="bbox:2.2_47_2.3_47.1" ><polygon points="299.0,260.8 302.8,260.8 302.8,266.4 299.0,266.4 299.0,260.8 " /></g><g id="bbox:2.3_47_2.4_47.1" ><polygon points="302.8,260.8 306.7,260.8 306.7,266.4 302.8,266.4 302.8,260.8 " /></g><g id="bbox:2.4_47_2.5_47.1" ><polygon points="306.7,260.8 310.5,260.8 310.5,266.4 306.7,266.4 306.7,260.8 " /></g><g id="bbox:2.5_47_2.6_47.1" ><polygon points="310.5,260.8 314.4,260.8 314.4,266.4 310.5,266.4 310.5,260.8 " /></g><g id="bbox:2.6_47_2.7_47.1" ><polygon points="314.4,260.8 318.2,260.8 318.2,266.4 314.4,266.4 314.4,260.8 " /></g><g id="bbox:2.7_47_2.8_47.1" ><polygon points="318.2,260.8 322.1,260.8 322.1,266.4 318.2,266.4 318.2,260.8 " /></g><g id="bbox:2.8_47_2.9_47.1" ><polygon points="322.1,260.8 325.9,260.8 325.9,266.4 322.1,266.4 322.1,260.8 " /></g><g id="bbox:2.9_47_3_47.1" ><polygon points="325.9,260.8 329.8,260.8 329.8,266.4 325.9,266.4 325.9,260.8 " /></g><g id="bbox:3_47_3.1_47.1" ><polygon points="329.8,260.8 333.6,260.8 333.6,266.4 329.8,266.4 329.8,260.8 " /></g><g id="bbox:3.1_47_3.2_47.1" ><polygon points="333.6,260.8 337.5,260.8 337.5,266.4 333.6,266.4 333.6,260.8 " /></g><g id="bbox:3.2_47_3.3_47.1" ><polygon points="337.5,260.8 341.3,260.8 341.3,266.4 337.5,266.4 337.5,260.8 " /></g><g id="bbox:3.3_47_3.4_47.1" ><polygon points="341.3,260.8 345.2,260.8 345.2,266.4 341.3,266.4 341.3,260.8 " /></g><g id="bbox:3.4_47_3.5_47.1" ><polygon points="345.2,260.8 349.0,260.8 349.0,266.4 345.2,266.4 345.2,260.8 " /></g><g id="bbox:3.5_47_3.6_47.1" ><polygon points="349.0,260.8 352.9,260.8 352.9,266.4 349.0,266.4 349.0,260.8 " /></g><g id="bbox:3.6_47_3.7_47.1" ><polygon points="352.9,260.8 356.7,260.8 356.7,266.4 352.9,266.4 352.9,260.8 " /></g><g id="bbox:3.7_47_3.8_47.1" ><polygon points="356.7,260.8 360.6,260.8 360.6,266.4 356.7,266.4 356.7,260.8 " /></g><g id="bbox:3.8_47_3.9_47.1" ><polygon points="360.6,260.8 364.4,260.8 364.4,266.4 360.6,266.4 360.6,260.8 " /></g><g id="bbox:3.9_47_4_47.1" ><polygon points="364.4,260.8 368.3,260.8 368.3,266.4 364.4,266.4 364.4,260.8 " /></g><g id="bbox:4_47_4.1_47.1" ><polygon points="368.3,260.8 372.1,260.8 372.1,266.4 368.3,266.4 368.3,260.8 " /></g><g id="bbox:4.1_47_4.2_47.1" ><polygon points="372.1,260.8 376.0,260.8 376.0,266.4 372.1,266.4 372.1,260.8 " /></g><g id="bbox:4.2_47_4.3_47.1" ><polygon points="376.0,260.8 379.8,260.8 379.8,266.4 376.0,266.4 376.0,260.8 " /></g><g id="bbox:4.3_47_4.4_47.1" ><polygon points="379.8,260.8 383.7,260.8 383.7,266.4 379.8,266.4 379.8,260.8 " /></g><g id="bbox:4.4_47_4.5_47.1" ><polygon points="383.7,260.8 387.5,260.8 387.5,266.4 383.7,266.4 383.7,260.8 " /></g><g id="bbox:4.5_47_4.6_47.1" ><polygon points="387.5,260.8 391.4,260.8 391.4,266.4 387.5,266.4 387.5,260.8 " /></g><g id="bbox:4.6_47_4.7_47.1" ><polygon points="391.4,260.8 395.2,260.8 395.2,266.4 391.4,266.4 391.4,260.8 " /></g><g id="bbox:4.7_47_4.8_47.1" ><polygon points="395.2,260.8 399.1,260.8 399.1,266.4 395.2,266.4 395.2,260.8 " /></g><g id="bbox:4.8_47_4.9_47.1" ><polygon points="399.1,260.8 402.9,260.8 402.9,266.4 399.1,266.4 399.1,260.8 " /></g><g id="bbox:4.9_47_5_47.1" ><polygon points="402.9,260.8 406.7,260.8 406.7,266.4 402.9,266.4 402.9,260.8 " /></g><g id="bbox:5_47_5.1_47.1" ><polygon points="406.7,260.8 410.6,260.8 410.6,266.4 406.7,266.4 406.7,260.8 " /></g><g id="bbox:5.1_47_5.2_47.1" ><polygon points="410.6,260.8 414.4,260.8 414.4,266.4 410.6,266.4 410.6,260.8 " /></g><g id="bbox:5.2_47_5.3_47.1" ><polygon points="414.4,260.8 418.3,260.8 418.3,266.4 414.4,266.4 414.4,260.8 " /></g><g id="bbox:5.3_47_5.4_47.1" ><polygon points="418.3,260.8 422.1,260.8 422.1,266.4 418.3,266.4 418.3,260.8 " /></g><g id="bbox:5.4_47_5.5_47.1" ><polygon points="422.1,260.8 426.0,260.8 426.0,266.4 422.1,266.4 422.1,260.8 " /></g><g id="bbox:5.5_47_5.6_47.1" ><polygon points="426.0,260.8 429.8,260.8 429.8,266.4 426.0,266.4 426.0,260.8 " /></g><g id="bbox:5.6_47_5.7_47.1" ><polygon points="429.8,260.8 433.7,260.8 433.7,266.4 429.8,266.4 429.8,260.8 " /></g><g id="bbox:5.7_47_5.8_47.1" ><polygon points="433.7,260.8 437.5,260.8 437.5,266.4 433.7,266.4 433.7,260.8 " /></g><g id="bbox:5.8_47_5.9_47.1" ><polygon points="437.5,260.8 441.4,260.8 441.4,266.4 437.5,266.4 437.5,260.8 " /></g><g id="bbox:5.9_47_6_47.1" ><polygon points="441.4,260.8 445.2,260.8 445.2,266.4 441.4,266.4 441.4,260.8 " /></g><g id="bbox:6_47_6.1_47.1" ><polygon points="445.2,260.8 449.1,260.8 449.1,266.4 445.2,266.4 445.2,260.8 " /></g><g id="bbox:6.1_47_6.2_47.1" ><polygon points="449.1,260.8 452.9,260.8 452.9,266.4 449.1,266.4 449.1,260.8 " /></g><g id="bbox:6.2_47_6.3_47.1" ><polygon points="452.9,260.8 456.8,260.8 456.8,266.4 452.9,266.4 452.9,260.8 " /></g><g id="bbox:6.3_47_6.4_47.1" ><polygon points="456.8,260.8 460.6,260.8 460.6,266.4 456.8,266.4 456.8,260.8 " /></g><g id="bbox:6.4_47_6.5_47.1" ><polygon points="460.6,260.8 464.5,260.8 464.5,266.4 460.6,266.4 460.6,260.8 " /></g><g id="bbox:6.5_47_6.6_47.1" ><polygon points="464.5,260.8 468.3,260.8 468.3,266.4 464.5,266.4 464.5,260.8 " /></g><g id="bbox:6.6_47_6.7_47.1" ><polygon points="468.3,260.8 472.2,260.8 472.2,266.4 468.3,266.4 468.3,260.8 " /></g><g id="bbox:6.7_47_6.8_47.1" ><polygon points="472.2,260.8 476.0,260.8 476.0,266.4 472.2,266.4 472.2,260.8 " /></g><g id="bbox:-2.4_46.9_-2.3_47" ><polygon points="122.0,266.4 125.8,266.4 125.8,272.1 122.0,272.1 122.0,266.4 " /></g><g id="bbox:-2.3_46.9_-2.2_47" ><polygon points="125.8,266.4 129.7,266.4 129.7,272.1 125.8,272.1 125.8,266.4 " /></g><g id="bbox:-2.2_46.9_-2.1_47" ><polygon points="129.7,266.4 133.5,266.4 133.5,272.1 129.7,272.1 129.7,266.4 " /></g><g id="bbox:-2.1_46.9_-2_47" ><polygon points="133.5,266.4 137.4,266.4 137.4,272.1 133.5,272.1 133.5,266.4 " /></g><g id="bbox:-2_46.9_-1.9_47" ><polygon points="137.4,266.4 141.2,266.4 141.2,272.1 137.4,272.1 137.4,266.4 " /></g><g id="bbox:-1.9_46.9_-1.8_47" ><polygon points="141.2,266.4 145.1,266.4 145.1,272.1 141.2,272.1 141.2,266.4 " /></g><g id="bbox:-1.8_46.9_-1.7_47" ><polygon points="145.1,266.4 148.9,266.4 148.9,272.1 145.1,272.1 145.1,266.4 " /></g><g id="bbox:-1.7_46.9_-1.6_47" ><polygon points="148.9,266.4 152.8,266.4 152.8,272.1 148.9,272.1 148.9,266.4 " /></g><g id="bbox:-1.6_46.9_-1.5_47" ><polygon points="152.8,266.4 156.6,266.4 156.6,272.1 152.8,272.1 152.8,266.4 " /></g><g id="bbox:-1.5_46.9_-1.4_47" ><polygon points="156.6,266.4 160.5,266.4 160.5,272.1 156.6,272.1 156.6,266.4 " /></g><g id="bbox:-1.4_46.9_-1.3_47" ><polygon points="160.5,266.4 164.3,266.4 164.3,272.1 160.5,272.1 160.5,266.4 " /></g><g id="bbox:-1.3_46.9_-1.2_47" ><polygon points="164.3,266.4 168.2,266.4 168.2,272.1 164.3,272.1 164.3,266.4 " /></g><g id="bbox:-1.2_46.9_-1.1_47" ><polygon points="168.2,266.4 172.0,266.4 172.0,272.1 168.2,272.1 168.2,266.4 " /></g><g id="bbox:-1.1_46.9_-1_47" ><polygon points="172.0,266.4 175.9,266.4 175.9,272.1 172.0,272.1 172.0,266.4 " /></g><g id="bbox:-1_46.9_-0.9_47" ><polygon points="175.9,266.4 179.7,266.4 179.7,272.1 175.9,272.1 175.9,266.4 " /></g><g id="bbox:-0.9_46.9_-0.8_47" ><polygon points="179.7,266.4 183.6,266.4 183.6,272.1 179.7,272.1 179.7,266.4 " /></g><g id="bbox:-0.8_46.9_-0.7_47" ><polygon points="183.6,266.4 187.4,266.4 187.4,272.1 183.6,272.1 183.6,266.4 " /></g><g id="bbox:-0.7_46.9_-0.6_47" ><polygon points="187.4,266.4 191.3,266.4 191.3,272.1 187.4,272.1 187.4,266.4 " /></g><g id="bbox:-0.6_46.9_-0.5_47" ><polygon points="191.3,266.4 195.1,266.4 195.1,272.1 191.3,272.1 191.3,266.4 " /></g><g id="bbox:-0.5_46.9_-0.4_47" ><polygon points="195.1,266.4 198.9,266.4 198.9,272.1 195.1,272.1 195.1,266.4 " /></g><g id="bbox:-0.4_46.9_-0.3_47" ><polygon points="198.9,266.4 202.8,266.4 202.8,272.1 198.9,272.1 198.9,266.4 " /></g><g id="bbox:-0.3_46.9_-0.2_47" ><polygon points="202.8,266.4 206.6,266.4 206.6,272.1 202.8,272.1 202.8,266.4 " /></g><g id="bbox:-0.2_46.9_-0.1_47" ><polygon points="206.6,266.4 210.5,266.4 210.5,272.1 206.6,272.1 206.6,266.4 " /></g><g id="bbox:-0.1_46.9_0_47" ><polygon points="210.5,266.4 214.3,266.4 214.3,272.1 210.5,272.1 210.5,266.4 " /></g><g id="bbox:0_46.9_0.1_47" ><polygon points="214.3,266.4 218.2,266.4 218.2,272.1 214.3,272.1 214.3,266.4 " /></g><g id="bbox:0.1_46.9_0.2_47" ><polygon points="218.2,266.4 222.0,266.4 222.0,272.1 218.2,272.1 218.2,266.4 " /></g><g id="bbox:0.2_46.9_0.3_47" ><polygon points="222.0,266.4 225.9,266.4 225.9,272.1 222.0,272.1 222.0,266.4 " /></g><g id="bbox:0.3_46.9_0.4_47" ><polygon points="225.9,266.4 229.7,266.4 229.7,272.1 225.9,272.1 225.9,266.4 " /></g><g id="bbox:0.4_46.9_0.5_47" ><polygon points="229.7,266.4 233.6,266.4 233.6,272.1 229.7,272.1 229.7,266.4 " /></g><g id="bbox:0.5_46.9_0.6_47" ><polygon points="233.6,266.4 237.4,266.4 237.4,272.1 233.6,272.1 233.6,266.4 " /></g><g id="bbox:0.6_46.9_0.7_47" ><polygon points="237.4,266.4 241.3,266.4 241.3,272.1 237.4,272.1 237.4,266.4 " /></g><g id="bbox:0.7_46.9_0.8_47" ><polygon points="241.3,266.4 245.1,266.4 245.1,272.1 241.3,272.1 241.3,266.4 " /></g><g id="bbox:0.8_46.9_0.9_47" ><polygon points="245.1,266.4 249.0,266.4 249.0,272.1 245.1,272.1 245.1,266.4 " /></g><g id="bbox:0.9_46.9_1_47" ><polygon points="249.0,266.4 252.8,266.4 252.8,272.1 249.0,272.1 249.0,266.4 " /></g><g id="bbox:1_46.9_1.1_47" ><polygon points="252.8,266.4 256.7,266.4 256.7,272.1 252.8,272.1 252.8,266.4 " /></g><g id="bbox:1.1_46.9_1.2_47" ><polygon points="256.7,266.4 260.5,266.4 260.5,272.1 256.7,272.1 256.7,266.4 " /></g><g id="bbox:1.2_46.9_1.3_47" ><polygon points="260.5,266.4 264.4,266.4 264.4,272.1 260.5,272.1 260.5,266.4 " /></g><g id="bbox:1.3_46.9_1.4_47" ><polygon points="264.4,266.4 268.2,266.4 268.2,272.1 264.4,272.1 264.4,266.4 " /></g><g id="bbox:1.4_46.9_1.5_47" ><polygon points="268.2,266.4 272.1,266.4 272.1,272.1 268.2,272.1 268.2,266.4 " /></g><g id="bbox:1.5_46.9_1.6_47" ><polygon points="272.1,266.4 275.9,266.4 275.9,272.1 272.1,272.1 272.1,266.4 " /></g><g id="bbox:1.6_46.9_1.7_47" ><polygon points="275.9,266.4 279.8,266.4 279.8,272.1 275.9,272.1 275.9,266.4 " /></g><g id="bbox:1.7_46.9_1.8_47" ><polygon points="279.8,266.4 283.6,266.4 283.6,272.1 279.8,272.1 279.8,266.4 " /></g><g id="bbox:1.8_46.9_1.9_47" ><polygon points="283.6,266.4 287.5,266.4 287.5,272.1 283.6,272.1 283.6,266.4 " /></g><g id="bbox:1.9_46.9_2_47" ><polygon points="287.5,266.4 291.3,266.4 291.3,272.1 287.5,272.1 287.5,266.4 " /></g><g id="bbox:2_46.9_2.1_47" ><polygon points="291.3,266.4 295.2,266.4 295.2,272.1 291.3,272.1 291.3,266.4 " /></g><g id="bbox:2.1_46.9_2.2_47" ><polygon points="295.2,266.4 299.0,266.4 299.0,272.1 295.2,272.1 295.2,266.4 " /></g><g id="bbox:2.2_46.9_2.3_47" ><polygon points="299.0,266.4 302.8,266.4 302.8,272.1 299.0,272.1 299.0,266.4 " /></g><g id="bbox:2.3_46.9_2.4_47" ><polygon points="302.8,266.4 306.7,266.4 306.7,272.1 302.8,272.1 302.8,266.4 " /></g><g id="bbox:2.4_46.9_2.5_47" ><polygon points="306.7,266.4 310.5,266.4 310.5,272.1 306.7,272.1 306.7,266.4 " /></g><g id="bbox:2.5_46.9_2.6_47" ><polygon points="310.5,266.4 314.4,266.4 314.4,272.1 310.5,272.1 310.5,266.4 " /></g><g id="bbox:2.6_46.9_2.7_47" ><polygon points="314.4,266.4 318.2,266.4 318.2,272.1 314.4,272.1 314.4,266.4 " /></g><g id="bbox:2.7_46.9_2.8_47" ><polygon points="318.2,266.4 322.1,266.4 322.1,272.1 318.2,272.1 318.2,266.4 " /></g><g id="bbox:2.8_46.9_2.9_47" ><polygon points="322.1,266.4 325.9,266.4 325.9,272.1 322.1,272.1 322.1,266.4 " /></g><g id="bbox:2.9_46.9_3_47" ><polygon points="325.9,266.4 329.8,266.4 329.8,272.1 325.9,272.1 325.9,266.4 " /></g><g id="bbox:3_46.9_3.1_47" ><polygon points="329.8,266.4 333.6,266.4 333.6,272.1 329.8,272.1 329.8,266.4 " /></g><g id="bbox:3.1_46.9_3.2_47" ><polygon points="333.6,266.4 337.5,266.4 337.5,272.1 333.6,272.1 333.6,266.4 " /></g><g id="bbox:3.2_46.9_3.3_47" ><polygon points="337.5,266.4 341.3,266.4 341.3,272.1 337.5,272.1 337.5,266.4 " /></g><g id="bbox:3.3_46.9_3.4_47" ><polygon points="341.3,266.4 345.2,266.4 345.2,272.1 341.3,272.1 341.3,266.4 " /></g><g id="bbox:3.4_46.9_3.5_47" ><polygon points="345.2,266.4 349.0,266.4 349.0,272.1 345.2,272.1 345.2,266.4 " /></g><g id="bbox:3.5_46.9_3.6_47" ><polygon points="349.0,266.4 352.9,266.4 352.9,272.1 349.0,272.1 349.0,266.4 " /></g><g id="bbox:3.6_46.9_3.7_47" ><polygon points="352.9,266.4 356.7,266.4 356.7,272.1 352.9,272.1 352.9,266.4 " /></g><g id="bbox:3.7_46.9_3.8_47" ><polygon points="356.7,266.4 360.6,266.4 360.6,272.1 356.7,272.1 356.7,266.4 " /></g><g id="bbox:3.8_46.9_3.9_47" ><polygon points="360.6,266.4 364.4,266.4 364.4,272.1 360.6,272.1 360.6,266.4 " /></g><g id="bbox:3.9_46.9_4_47" ><polygon points="364.4,266.4 368.3,266.4 368.3,272.1 364.4,272.1 364.4,266.4 " /></g><g id="bbox:4_46.9_4.1_47" ><polygon points="368.3,266.4 372.1,266.4 372.1,272.1 368.3,272.1 368.3,266.4 " /></g><g id="bbox:4.1_46.9_4.2_47" ><polygon points="372.1,266.4 376.0,266.4 376.0,272.1 372.1,272.1 372.1,266.4 " /></g><g id="bbox:4.2_46.9_4.3_47" ><polygon points="376.0,266.4 379.8,266.4 379.8,272.1 376.0,272.1 376.0,266.4 " /></g><g id="bbox:4.3_46.9_4.4_47" ><polygon points="379.8,266.4 383.7,266.4 383.7,272.1 379.8,272.1 379.8,266.4 " /></g><g id="bbox:4.4_46.9_4.5_47" ><polygon points="383.7,266.4 387.5,266.4 387.5,272.1 383.7,272.1 383.7,266.4 " /></g><g id="bbox:4.5_46.9_4.6_47" ><polygon points="387.5,266.4 391.4,266.4 391.4,272.1 387.5,272.1 387.5,266.4 " /></g><g id="bbox:4.6_46.9_4.7_47" ><polygon points="391.4,266.4 395.2,266.4 395.2,272.1 391.4,272.1 391.4,266.4 " /></g><g id="bbox:4.7_46.9_4.8_47" ><polygon points="395.2,266.4 399.1,266.4 399.1,272.1 395.2,272.1 395.2,266.4 " /></g><g id="bbox:4.8_46.9_4.9_47" ><polygon points="399.1,266.4 402.9,266.4 402.9,272.1 399.1,272.1 399.1,266.4 " /></g><g id="bbox:4.9_46.9_5_47" ><polygon points="402.9,266.4 406.7,266.4 406.7,272.1 402.9,272.1 402.9,266.4 " /></g><g id="bbox:5_46.9_5.1_47" ><polygon points="406.7,266.4 410.6,266.4 410.6,272.1 406.7,272.1 406.7,266.4 " /></g><g id="bbox:5.1_46.9_5.2_47" ><polygon points="410.6,266.4 414.4,266.4 414.4,272.1 410.6,272.1 410.6,266.4 " /></g><g id="bbox:5.2_46.9_5.3_47" ><polygon points="414.4,266.4 418.3,266.4 418.3,272.1 414.4,272.1 414.4,266.4 " /></g><g id="bbox:5.3_46.9_5.4_47" ><polygon points="418.3,266.4 422.1,266.4 422.1,272.1 418.3,272.1 418.3,266.4 " /></g><g id="bbox:5.4_46.9_5.5_47" ><polygon points="422.1,266.4 426.0,266.4 426.0,272.1 422.1,272.1 422.1,266.4 " /></g><g id="bbox:5.5_46.9_5.6_47" ><polygon points="426.0,266.4 429.8,266.4 429.8,272.1 426.0,272.1 426.0,266.4 " /></g><g id="bbox:5.6_46.9_5.7_47" ><polygon points="429.8,266.4 433.7,266.4 433.7,272.1 429.8,272.1 429.8,266.4 " /></g><g id="bbox:5.7_46.9_5.8_47" ><polygon points="433.7,266.4 437.5,266.4 437.5,272.1 433.7,272.1 433.7,266.4 " /></g><g id="bbox:5.8_46.9_5.9_47" ><polygon points="437.5,266.4 441.4,266.4 441.4,272.1 437.5,272.1 437.5,266.4 " /></g><g id="bbox:5.9_46.9_6_47" ><polygon points="441.4,266.4 445.2,266.4 445.2,272.1 441.4,272.1 441.4,266.4 " /></g><g id="bbox:6_46.9_6.1_47" ><polygon points="445.2,266.4 449.1,266.4 449.1,272.1 445.2,272.1 445.2,266.4 " /></g><g id="bbox:6.1_46.9_6.2_47" ><polygon points="449.1,266.4 452.9,266.4 452.9,272.1 449.1,272.1 449.1,266.4 " /></g><g id="bbox:6.2_46.9_6.3_47" ><polygon points="452.9,266.4 456.8,266.4 456.8,272.1 452.9,272.1 452.9,266.4 " /></g><g id="bbox:6.3_46.9_6.4_47" ><polygon points="456.8,266.4 460.6,266.4 460.6,272.1 456.8,272.1 456.8,266.4 " /></g><g id="bbox:6.4_46.9_6.5_47" ><polygon points="460.6,266.4 464.5,266.4 464.5,272.1 460.6,272.1 460.6,266.4 " /></g><g id="bbox:6.5_46.9_6.6_47" ><polygon points="464.5,266.4 468.3,266.4 468.3,272.1 464.5,272.1 464.5,266.4 " /></g><g id="bbox:6.6_46.9_6.7_47" ><polygon points="468.3,266.4 472.2,266.4 472.2,272.1 468.3,272.1 468.3,266.4 " /></g><g id="bbox:-2.2_46.8_-2.1_46.9" ><polygon points="129.7,272.1 133.5,272.1 133.5,277.7 129.7,277.7 129.7,272.1 " /></g><g id="bbox:-2.1_46.8_-2_46.9" ><polygon points="133.5,272.1 137.4,272.1 137.4,277.7 133.5,277.7 133.5,272.1 " /></g><g id="bbox:-2_46.8_-1.9_46.9" ><polygon points="137.4,272.1 141.2,272.1 141.2,277.7 137.4,277.7 137.4,272.1 " /></g><g id="bbox:-1.9_46.8_-1.8_46.9" ><polygon points="141.2,272.1 145.1,272.1 145.1,277.7 141.2,277.7 141.2,272.1 " /></g><g id="bbox:-1.8_46.8_-1.7_46.9" ><polygon points="145.1,272.1 148.9,272.1 148.9,277.7 145.1,277.7 145.1,272.1 " /></g><g id="bbox:-1.7_46.8_-1.6_46.9" ><polygon points="148.9,272.1 152.8,272.1 152.8,277.7 148.9,277.7 148.9,272.1 " /></g><g id="bbox:-1.6_46.8_-1.5_46.9" ><polygon points="152.8,272.1 156.6,272.1 156.6,277.7 152.8,277.7 152.8,272.1 " /></g><g id="bbox:-1.5_46.8_-1.4_46.9" ><polygon points="156.6,272.1 160.5,272.1 160.5,277.7 156.6,277.7 156.6,272.1 " /></g><g id="bbox:-1.4_46.8_-1.3_46.9" ><polygon points="160.5,272.1 164.3,272.1 164.3,277.7 160.5,277.7 160.5,272.1 " /></g><g id="bbox:-1.3_46.8_-1.2_46.9" ><polygon points="164.3,272.1 168.2,272.1 168.2,277.7 164.3,277.7 164.3,272.1 " /></g><g id="bbox:-1.2_46.8_-1.1_46.9" ><polygon points="168.2,272.1 172.0,272.1 172.0,277.7 168.2,277.7 168.2,272.1 " /></g><g id="bbox:-1.1_46.8_-1_46.9" ><polygon points="172.0,272.1 175.9,272.1 175.9,277.7 172.0,277.7 172.0,272.1 " /></g><g id="bbox:-1_46.8_-0.9_46.9" ><polygon points="175.9,272.1 179.7,272.1 179.7,277.7 175.9,277.7 175.9,272.1 " /></g><g id="bbox:-0.9_46.8_-0.8_46.9" ><polygon points="179.7,272.1 183.6,272.1 183.6,277.7 179.7,277.7 179.7,272.1 " /></g><g id="bbox:-0.8_46.8_-0.7_46.9" ><polygon points="183.6,272.1 187.4,272.1 187.4,277.7 183.6,277.7 183.6,272.1 " /></g><g id="bbox:-0.7_46.8_-0.6_46.9" ><polygon points="187.4,272.1 191.3,272.1 191.3,277.7 187.4,277.7 187.4,272.1 " /></g><g id="bbox:-0.6_46.8_-0.5_46.9" ><polygon points="191.3,272.1 195.1,272.1 195.1,277.7 191.3,277.7 191.3,272.1 " /></g><g id="bbox:-0.5_46.8_-0.4_46.9" ><polygon points="195.1,272.1 198.9,272.1 198.9,277.7 195.1,277.7 195.1,272.1 " /></g><g id="bbox:-0.4_46.8_-0.3_46.9" ><polygon points="198.9,272.1 202.8,272.1 202.8,277.7 198.9,277.7 198.9,272.1 " /></g><g id="bbox:-0.3_46.8_-0.2_46.9" ><polygon points="202.8,272.1 206.6,272.1 206.6,277.7 202.8,277.7 202.8,272.1 " /></g><g id="bbox:-0.2_46.8_-0.1_46.9" ><polygon points="206.6,272.1 210.5,272.1 210.5,277.7 206.6,277.7 206.6,272.1 " /></g><g id="bbox:-0.1_46.8_0_46.9" ><polygon points="210.5,272.1 214.3,272.1 214.3,277.7 210.5,277.7 210.5,272.1 " /></g><g id="bbox:0_46.8_0.1_46.9" ><polygon points="214.3,272.1 218.2,272.1 218.2,277.7 214.3,277.7 214.3,272.1 " /></g><g id="bbox:0.1_46.8_0.2_46.9" ><polygon points="218.2,272.1 222.0,272.1 222.0,277.7 218.2,277.7 218.2,272.1 " /></g><g id="bbox:0.2_46.8_0.3_46.9" ><polygon points="222.0,272.1 225.9,272.1 225.9,277.7 222.0,277.7 222.0,272.1 " /></g><g id="bbox:0.3_46.8_0.4_46.9" ><polygon points="225.9,272.1 229.7,272.1 229.7,277.7 225.9,277.7 225.9,272.1 " /></g><g id="bbox:0.4_46.8_0.5_46.9" ><polygon points="229.7,272.1 233.6,272.1 233.6,277.7 229.7,277.7 229.7,272.1 " /></g><g id="bbox:0.5_46.8_0.6_46.9" ><polygon points="233.6,272.1 237.4,272.1 237.4,277.7 233.6,277.7 233.6,272.1 " /></g><g id="bbox:0.6_46.8_0.7_46.9" ><polygon points="237.4,272.1 241.3,272.1 241.3,277.7 237.4,277.7 237.4,272.1 " /></g><g id="bbox:0.7_46.8_0.8_46.9" ><polygon points="241.3,272.1 245.1,272.1 245.1,277.7 241.3,277.7 241.3,272.1 " /></g><g id="bbox:0.8_46.8_0.9_46.9" ><polygon points="245.1,272.1 249.0,272.1 249.0,277.7 245.1,277.7 245.1,272.1 " /></g><g id="bbox:0.9_46.8_1_46.9" ><polygon points="249.0,272.1 252.8,272.1 252.8,277.7 249.0,277.7 249.0,272.1 " /></g><g id="bbox:1_46.8_1.1_46.9" ><polygon points="252.8,272.1 256.7,272.1 256.7,277.7 252.8,277.7 252.8,272.1 " /></g><g id="bbox:1.1_46.8_1.2_46.9" ><polygon points="256.7,272.1 260.5,272.1 260.5,277.7 256.7,277.7 256.7,272.1 " /></g><g id="bbox:1.2_46.8_1.3_46.9" ><polygon points="260.5,272.1 264.4,272.1 264.4,277.7 260.5,277.7 260.5,272.1 " /></g><g id="bbox:1.3_46.8_1.4_46.9" ><polygon points="264.4,272.1 268.2,272.1 268.2,277.7 264.4,277.7 264.4,272.1 " /></g><g id="bbox:1.4_46.8_1.5_46.9" ><polygon points="268.2,272.1 272.1,272.1 272.1,277.7 268.2,277.7 268.2,272.1 " /></g><g id="bbox:1.5_46.8_1.6_46.9" ><polygon points="272.1,272.1 275.9,272.1 275.9,277.7 272.1,277.7 272.1,272.1 " /></g><g id="bbox:1.6_46.8_1.7_46.9" ><polygon points="275.9,272.1 279.8,272.1 279.8,277.7 275.9,277.7 275.9,272.1 " /></g><g id="bbox:1.7_46.8_1.8_46.9" ><polygon points="279.8,272.1 283.6,272.1 283.6,277.7 279.8,277.7 279.8,272.1 " /></g><g id="bbox:1.8_46.8_1.9_46.9" ><polygon points="283.6,272.1 287.5,272.1 287.5,277.7 283.6,277.7 283.6,272.1 " /></g><g id="bbox:1.9_46.8_2_46.9" ><polygon points="287.5,272.1 291.3,272.1 291.3,277.7 287.5,277.7 287.5,272.1 " /></g><g id="bbox:2_46.8_2.1_46.9" ><polygon points="291.3,272.1 295.2,272.1 295.2,277.7 291.3,277.7 291.3,272.1 " /></g><g id="bbox:2.1_46.8_2.2_46.9" ><polygon points="295.2,272.1 299.0,272.1 299.0,277.7 295.2,277.7 295.2,272.1 " /></g><g id="bbox:2.2_46.8_2.3_46.9" ><polygon points="299.0,272.1 302.8,272.1 302.8,277.7 299.0,277.7 299.0,272.1 " /></g><g id="bbox:2.3_46.8_2.4_46.9" ><polygon points="302.8,272.1 306.7,272.1 306.7,277.7 302.8,277.7 302.8,272.1 " /></g><g id="bbox:2.4_46.8_2.5_46.9" ><polygon points="306.7,272.1 310.5,272.1 310.5,277.7 306.7,277.7 306.7,272.1 " /></g><g id="bbox:2.5_46.8_2.6_46.9" ><polygon points="310.5,272.1 314.4,272.1 314.4,277.7 310.5,277.7 310.5,272.1 " /></g><g id="bbox:2.6_46.8_2.7_46.9" ><polygon points="314.4,272.1 318.2,272.1 318.2,277.7 314.4,277.7 314.4,272.1 " /></g><g id="bbox:2.7_46.8_2.8_46.9" ><polygon points="318.2,272.1 322.1,272.1 322.1,277.7 318.2,277.7 318.2,272.1 " /></g><g id="bbox:2.8_46.8_2.9_46.9" ><polygon points="322.1,272.1 325.9,272.1 325.9,277.7 322.1,277.7 322.1,272.1 " /></g><g id="bbox:2.9_46.8_3_46.9" ><polygon points="325.9,272.1 329.8,272.1 329.8,277.7 325.9,277.7 325.9,272.1 " /></g><g id="bbox:3_46.8_3.1_46.9" ><polygon points="329.8,272.1 333.6,272.1 333.6,277.7 329.8,277.7 329.8,272.1 " /></g><g id="bbox:3.1_46.8_3.2_46.9" ><polygon points="333.6,272.1 337.5,272.1 337.5,277.7 333.6,277.7 333.6,272.1 " /></g><g id="bbox:3.2_46.8_3.3_46.9" ><polygon points="337.5,272.1 341.3,272.1 341.3,277.7 337.5,277.7 337.5,272.1 " /></g><g id="bbox:3.3_46.8_3.4_46.9" ><polygon points="341.3,272.1 345.2,272.1 345.2,277.7 341.3,277.7 341.3,272.1 " /></g><g id="bbox:3.4_46.8_3.5_46.9" ><polygon points="345.2,272.1 349.0,272.1 349.0,277.7 345.2,277.7 345.2,272.1 " /></g><g id="bbox:3.5_46.8_3.6_46.9" ><polygon points="349.0,272.1 352.9,272.1 352.9,277.7 349.0,277.7 349.0,272.1 " /></g><g id="bbox:3.6_46.8_3.7_46.9" ><polygon points="352.9,272.1 356.7,272.1 356.7,277.7 352.9,277.7 352.9,272.1 " /></g><g id="bbox:3.7_46.8_3.8_46.9" ><polygon points="356.7,272.1 360.6,272.1 360.6,277.7 356.7,277.7 356.7,272.1 " /></g><g id="bbox:3.8_46.8_3.9_46.9" ><polygon points="360.6,272.1 364.4,272.1 364.4,277.7 360.6,277.7 360.6,272.1 " /></g><g id="bbox:3.9_46.8_4_46.9" ><polygon points="364.4,272.1 368.3,272.1 368.3,277.7 364.4,277.7 364.4,272.1 " /></g><g id="bbox:4_46.8_4.1_46.9" ><polygon points="368.3,272.1 372.1,272.1 372.1,277.7 368.3,277.7 368.3,272.1 " /></g><g id="bbox:4.1_46.8_4.2_46.9" ><polygon points="372.1,272.1 376.0,272.1 376.0,277.7 372.1,277.7 372.1,272.1 " /></g><g id="bbox:4.2_46.8_4.3_46.9" ><polygon points="376.0,272.1 379.8,272.1 379.8,277.7 376.0,277.7 376.0,272.1 " /></g><g id="bbox:4.3_46.8_4.4_46.9" ><polygon points="379.8,272.1 383.7,272.1 383.7,277.7 379.8,277.7 379.8,272.1 " /></g><g id="bbox:4.4_46.8_4.5_46.9" ><polygon points="383.7,272.1 387.5,272.1 387.5,277.7 383.7,277.7 383.7,272.1 " /></g><g id="bbox:4.5_46.8_4.6_46.9" ><polygon points="387.5,272.1 391.4,272.1 391.4,277.7 387.5,277.7 387.5,272.1 " /></g><g id="bbox:4.6_46.8_4.7_46.9" ><polygon points="391.4,272.1 395.2,272.1 395.2,277.7 391.4,277.7 391.4,272.1 " /></g><g id="bbox:4.7_46.8_4.8_46.9" ><polygon points="395.2,272.1 399.1,272.1 399.1,277.7 395.2,277.7 395.2,272.1 " /></g><g id="bbox:4.8_46.8_4.9_46.9" ><polygon points="399.1,272.1 402.9,272.1 402.9,277.7 399.1,277.7 399.1,272.1 " /></g><g id="bbox:4.9_46.8_5_46.9" ><polygon points="402.9,272.1 406.7,272.1 406.7,277.7 402.9,277.7 402.9,272.1 " /></g><g id="bbox:5_46.8_5.1_46.9" ><polygon points="406.7,272.1 410.6,272.1 410.6,277.7 406.7,277.7 406.7,272.1 " /></g><g id="bbox:5.1_46.8_5.2_46.9" ><polygon points="410.6,272.1 414.4,272.1 414.4,277.7 410.6,277.7 410.6,272.1 " /></g><g id="bbox:5.2_46.8_5.3_46.9" ><polygon points="414.4,272.1 418.3,272.1 418.3,277.7 414.4,277.7 414.4,272.1 " /></g><g id="bbox:5.3_46.8_5.4_46.9" ><polygon points="418.3,272.1 422.1,272.1 422.1,277.7 418.3,277.7 418.3,272.1 " /></g><g id="bbox:5.4_46.8_5.5_46.9" ><polygon points="422.1,272.1 426.0,272.1 426.0,277.7 422.1,277.7 422.1,272.1 " /></g><g id="bbox:5.5_46.8_5.6_46.9" ><polygon points="426.0,272.1 429.8,272.1 429.8,277.7 426.0,277.7 426.0,272.1 " /></g><g id="bbox:5.6_46.8_5.7_46.9" ><polygon points="429.8,272.1 433.7,272.1 433.7,277.7 429.8,277.7 429.8,272.1 " /></g><g id="bbox:5.7_46.8_5.8_46.9" ><polygon points="433.7,272.1 437.5,272.1 437.5,277.7 433.7,277.7 433.7,272.1 " /></g><g id="bbox:5.8_46.8_5.9_46.9" ><polygon points="437.5,272.1 441.4,272.1 441.4,277.7 437.5,277.7 437.5,272.1 " /></g><g id="bbox:5.9_46.8_6_46.9" ><polygon points="441.4,272.1 445.2,272.1 445.2,277.7 441.4,277.7 441.4,272.1 " /></g><g id="bbox:6_46.8_6.1_46.9" ><polygon points="445.2,272.1 449.1,272.1 449.1,277.7 445.2,277.7 445.2,272.1 " /></g><g id="bbox:6.1_46.8_6.2_46.9" ><polygon points="449.1,272.1 452.9,272.1 452.9,277.7 449.1,277.7 449.1,272.1 " /></g><g id="bbox:6.2_46.8_6.3_46.9" ><polygon points="452.9,272.1 456.8,272.1 456.8,277.7 452.9,277.7 452.9,272.1 " /></g><g id="bbox:6.3_46.8_6.4_46.9" ><polygon points="456.8,272.1 460.6,272.1 460.6,277.7 456.8,277.7 456.8,272.1 " /></g><g id="bbox:6.4_46.8_6.5_46.9" ><polygon points="460.6,272.1 464.5,272.1 464.5,277.7 460.6,277.7 460.6,272.1 " /></g><g id="bbox:-2.5_46.7_-2.4_46.8" ><polygon points="118.1,277.7 122.0,277.7 122.0,283.3 118.1,283.3 118.1,277.7 " /></g><g id="bbox:-2.4_46.7_-2.3_46.8" ><polygon points="122.0,277.7 125.8,277.7 125.8,283.3 122.0,283.3 122.0,277.7 " /></g><g id="bbox:-2.3_46.7_-2.2_46.8" ><polygon points="125.8,277.7 129.7,277.7 129.7,283.3 125.8,283.3 125.8,277.7 " /></g><g id="bbox:-2.2_46.7_-2.1_46.8" ><polygon points="129.7,277.7 133.5,277.7 133.5,283.3 129.7,283.3 129.7,277.7 " /></g><g id="bbox:-2.1_46.7_-2_46.8" ><polygon points="133.5,277.7 137.4,277.7 137.4,283.3 133.5,283.3 133.5,277.7 " /></g><g id="bbox:-2_46.7_-1.9_46.8" ><polygon points="137.4,277.7 141.2,277.7 141.2,283.3 137.4,283.3 137.4,277.7 " /></g><g id="bbox:-1.9_46.7_-1.8_46.8" ><polygon points="141.2,277.7 145.1,277.7 145.1,283.3 141.2,283.3 141.2,277.7 " /></g><g id="bbox:-1.8_46.7_-1.7_46.8" ><polygon points="145.1,277.7 148.9,277.7 148.9,283.3 145.1,283.3 145.1,277.7 " /></g><g id="bbox:-1.7_46.7_-1.6_46.8" ><polygon points="148.9,277.7 152.8,277.7 152.8,283.3 148.9,283.3 148.9,277.7 " /></g><g id="bbox:-1.6_46.7_-1.5_46.8" ><polygon points="152.8,277.7 156.6,277.7 156.6,283.3 152.8,283.3 152.8,277.7 " /></g><g id="bbox:-1.5_46.7_-1.4_46.8" ><polygon points="156.6,277.7 160.5,277.7 160.5,283.3 156.6,283.3 156.6,277.7 " /></g><g id="bbox:-1.4_46.7_-1.3_46.8" ><polygon points="160.5,277.7 164.3,277.7 164.3,283.3 160.5,283.3 160.5,277.7 " /></g><g id="bbox:-1.3_46.7_-1.2_46.8" ><polygon points="164.3,277.7 168.2,277.7 168.2,283.3 164.3,283.3 164.3,277.7 " /></g><g id="bbox:-1.2_46.7_-1.1_46.8" ><polygon points="168.2,277.7 172.0,277.7 172.0,283.3 168.2,283.3 168.2,277.7 " /></g><g id="bbox:-1.1_46.7_-1_46.8" ><polygon points="172.0,277.7 175.9,277.7 175.9,283.3 172.0,283.3 172.0,277.7 " /></g><g id="bbox:-1_46.7_-0.9_46.8" ><polygon points="175.9,277.7 179.7,277.7 179.7,283.3 175.9,283.3 175.9,277.7 " /></g><g id="bbox:-0.9_46.7_-0.8_46.8" ><polygon points="179.7,277.7 183.6,277.7 183.6,283.3 179.7,283.3 179.7,277.7 " /></g><g id="bbox:-0.8_46.7_-0.7_46.8" ><polygon points="183.6,277.7 187.4,277.7 187.4,283.3 183.6,283.3 183.6,277.7 " /></g><g id="bbox:-0.7_46.7_-0.6_46.8" ><polygon points="187.4,277.7 191.3,277.7 191.3,283.3 187.4,283.3 187.4,277.7 " /></g><g id="bbox:-0.6_46.7_-0.5_46.8" ><polygon points="191.3,277.7 195.1,277.7 195.1,283.3 191.3,283.3 191.3,277.7 " /></g><g id="bbox:-0.5_46.7_-0.4_46.8" ><polygon points="195.1,277.7 198.9,277.7 198.9,283.3 195.1,283.3 195.1,277.7 " /></g><g id="bbox:-0.4_46.7_-0.3_46.8" ><polygon points="198.9,277.7 202.8,277.7 202.8,283.3 198.9,283.3 198.9,277.7 " /></g><g id="bbox:-0.3_46.7_-0.2_46.8" ><polygon points="202.8,277.7 206.6,277.7 206.6,283.3 202.8,283.3 202.8,277.7 " /></g><g id="bbox:-0.2_46.7_-0.1_46.8" ><polygon points="206.6,277.7 210.5,277.7 210.5,283.3 206.6,283.3 206.6,277.7 " /></g><g id="bbox:-0.1_46.7_0_46.8" ><polygon points="210.5,277.7 214.3,277.7 214.3,283.3 210.5,283.3 210.5,277.7 " /></g><g id="bbox:0_46.7_0.1_46.8" ><polygon points="214.3,277.7 218.2,277.7 218.2,283.3 214.3,283.3 214.3,277.7 " /></g><g id="bbox:0.1_46.7_0.2_46.8" ><polygon points="218.2,277.7 222.0,277.7 222.0,283.3 218.2,283.3 218.2,277.7 " /></g><g id="bbox:0.2_46.7_0.3_46.8" ><polygon points="222.0,277.7 225.9,277.7 225.9,283.3 222.0,283.3 222.0,277.7 " /></g><g id="bbox:0.3_46.7_0.4_46.8" ><polygon points="225.9,277.7 229.7,277.7 229.7,283.3 225.9,283.3 225.9,277.7 " /></g><g id="bbox:0.4_46.7_0.5_46.8" ><polygon points="229.7,277.7 233.6,277.7 233.6,283.3 229.7,283.3 229.7,277.7 " /></g><g id="bbox:0.5_46.7_0.6_46.8" ><polygon points="233.6,277.7 237.4,277.7 237.4,283.3 233.6,283.3 233.6,277.7 " /></g><g id="bbox:0.6_46.7_0.7_46.8" ><polygon points="237.4,277.7 241.3,277.7 241.3,283.3 237.4,283.3 237.4,277.7 " /></g><g id="bbox:0.7_46.7_0.8_46.8" ><polygon points="241.3,277.7 245.1,277.7 245.1,283.3 241.3,283.3 241.3,277.7 " /></g><g id="bbox:0.8_46.7_0.9_46.8" ><polygon points="245.1,277.7 249.0,277.7 249.0,283.3 245.1,283.3 245.1,277.7 " /></g><g id="bbox:0.9_46.7_1_46.8" ><polygon points="249.0,277.7 252.8,277.7 252.8,283.3 249.0,283.3 249.0,277.7 " /></g><g id="bbox:1_46.7_1.1_46.8" ><polygon points="252.8,277.7 256.7,277.7 256.7,283.3 252.8,283.3 252.8,277.7 " /></g><g id="bbox:1.1_46.7_1.2_46.8" ><polygon points="256.7,277.7 260.5,277.7 260.5,283.3 256.7,283.3 256.7,277.7 " /></g><g id="bbox:1.2_46.7_1.3_46.8" ><polygon points="260.5,277.7 264.4,277.7 264.4,283.3 260.5,283.3 260.5,277.7 " /></g><g id="bbox:1.3_46.7_1.4_46.8" ><polygon points="264.4,277.7 268.2,277.7 268.2,283.3 264.4,283.3 264.4,277.7 " /></g><g id="bbox:1.4_46.7_1.5_46.8" ><polygon points="268.2,277.7 272.1,277.7 272.1,283.3 268.2,283.3 268.2,277.7 " /></g><g id="bbox:1.5_46.7_1.6_46.8" ><polygon points="272.1,277.7 275.9,277.7 275.9,283.3 272.1,283.3 272.1,277.7 " /></g><g id="bbox:1.6_46.7_1.7_46.8" ><polygon points="275.9,277.7 279.8,277.7 279.8,283.3 275.9,283.3 275.9,277.7 " /></g><g id="bbox:1.7_46.7_1.8_46.8" ><polygon points="279.8,277.7 283.6,277.7 283.6,283.3 279.8,283.3 279.8,277.7 " /></g><g id="bbox:1.8_46.7_1.9_46.8" ><polygon points="283.6,277.7 287.5,277.7 287.5,283.3 283.6,283.3 283.6,277.7 " /></g><g id="bbox:1.9_46.7_2_46.8" ><polygon points="287.5,277.7 291.3,277.7 291.3,283.3 287.5,283.3 287.5,277.7 " /></g><g id="bbox:2_46.7_2.1_46.8" ><polygon points="291.3,277.7 295.2,277.7 295.2,283.3 291.3,283.3 291.3,277.7 " /></g><g id="bbox:2.1_46.7_2.2_46.8" ><polygon points="295.2,277.7 299.0,277.7 299.0,283.3 295.2,283.3 295.2,277.7 " /></g><g id="bbox:2.2_46.7_2.3_46.8" ><polygon points="299.0,277.7 302.8,277.7 302.8,283.3 299.0,283.3 299.0,277.7 " /></g><g id="bbox:2.3_46.7_2.4_46.8" ><polygon points="302.8,277.7 306.7,277.7 306.7,283.3 302.8,283.3 302.8,277.7 " /></g><g id="bbox:2.4_46.7_2.5_46.8" ><polygon points="306.7,277.7 310.5,277.7 310.5,283.3 306.7,283.3 306.7,277.7 " /></g><g id="bbox:2.5_46.7_2.6_46.8" ><polygon points="310.5,277.7 314.4,277.7 314.4,283.3 310.5,283.3 310.5,277.7 " /></g><g id="bbox:2.6_46.7_2.7_46.8" ><polygon points="314.4,277.7 318.2,277.7 318.2,283.3 314.4,283.3 314.4,277.7 " /></g><g id="bbox:2.7_46.7_2.8_46.8" ><polygon points="318.2,277.7 322.1,277.7 322.1,283.3 318.2,283.3 318.2,277.7 " /></g><g id="bbox:2.8_46.7_2.9_46.8" ><polygon points="322.1,277.7 325.9,277.7 325.9,283.3 322.1,283.3 322.1,277.7 " /></g><g id="bbox:2.9_46.7_3_46.8" ><polygon points="325.9,277.7 329.8,277.7 329.8,283.3 325.9,283.3 325.9,277.7 " /></g><g id="bbox:3_46.7_3.1_46.8" ><polygon points="329.8,277.7 333.6,277.7 333.6,283.3 329.8,283.3 329.8,277.7 " /></g><g id="bbox:3.1_46.7_3.2_46.8" ><polygon points="333.6,277.7 337.5,277.7 337.5,283.3 333.6,283.3 333.6,277.7 " /></g><g id="bbox:3.2_46.7_3.3_46.8" ><polygon points="337.5,277.7 341.3,277.7 341.3,283.3 337.5,283.3 337.5,277.7 " /></g><g id="bbox:3.3_46.7_3.4_46.8" ><polygon points="341.3,277.7 345.2,277.7 345.2,283.3 341.3,283.3 341.3,277.7 " /></g><g id="bbox:3.4_46.7_3.5_46.8" ><polygon points="345.2,277.7 349.0,277.7 349.0,283.3 345.2,283.3 345.2,277.7 " /></g><g id="bbox:3.5_46.7_3.6_46.8" ><polygon points="349.0,277.7 352.9,277.7 352.9,283.3 349.0,283.3 349.0,277.7 " /></g><g id="bbox:3.6_46.7_3.7_46.8" ><polygon points="352.9,277.7 356.7,277.7 356.7,283.3 352.9,283.3 352.9,277.7 " /></g><g id="bbox:3.7_46.7_3.8_46.8" ><polygon points="356.7,277.7 360.6,277.7 360.6,283.3 356.7,283.3 356.7,277.7 " /></g><g id="bbox:3.8_46.7_3.9_46.8" ><polygon points="360.6,277.7 364.4,277.7 364.4,283.3 360.6,283.3 360.6,277.7 " /></g><g id="bbox:3.9_46.7_4_46.8" ><polygon points="364.4,277.7 368.3,277.7 368.3,283.3 364.4,283.3 364.4,277.7 " /></g><g id="bbox:4_46.7_4.1_46.8" ><polygon points="368.3,277.7 372.1,277.7 372.1,283.3 368.3,283.3 368.3,277.7 " /></g><g id="bbox:4.1_46.7_4.2_46.8" ><polygon points="372.1,277.7 376.0,277.7 376.0,283.3 372.1,283.3 372.1,277.7 " /></g><g id="bbox:4.2_46.7_4.3_46.8" ><polygon points="376.0,277.7 379.8,277.7 379.8,283.3 376.0,283.3 376.0,277.7 " /></g><g id="bbox:4.3_46.7_4.4_46.8" ><polygon points="379.8,277.7 383.7,277.7 383.7,283.3 379.8,283.3 379.8,277.7 " /></g><g id="bbox:4.4_46.7_4.5_46.8" ><polygon points="383.7,277.7 387.5,277.7 387.5,283.3 383.7,283.3 383.7,277.7 " /></g><g id="bbox:4.5_46.7_4.6_46.8" ><polygon points="387.5,277.7 391.4,277.7 391.4,283.3 387.5,283.3 387.5,277.7 " /></g><g id="bbox:4.6_46.7_4.7_46.8" ><polygon points="391.4,277.7 395.2,277.7 395.2,283.3 391.4,283.3 391.4,277.7 " /></g><g id="bbox:4.7_46.7_4.8_46.8" ><polygon points="395.2,277.7 399.1,277.7 399.1,283.3 395.2,283.3 395.2,277.7 " /></g><g id="bbox:4.8_46.7_4.9_46.8" ><polygon points="399.1,277.7 402.9,277.7 402.9,283.3 399.1,283.3 399.1,277.7 " /></g><g id="bbox:4.9_46.7_5_46.8" ><polygon points="402.9,277.7 406.7,277.7 406.7,283.3 402.9,283.3 402.9,277.7 " /></g><g id="bbox:5_46.7_5.1_46.8" ><polygon points="406.7,277.7 410.6,277.7 410.6,283.3 406.7,283.3 406.7,277.7 " /></g><g id="bbox:5.1_46.7_5.2_46.8" ><polygon points="410.6,277.7 414.4,277.7 414.4,283.3 410.6,283.3 410.6,277.7 " /></g><g id="bbox:5.2_46.7_5.3_46.8" ><polygon points="414.4,277.7 418.3,277.7 418.3,283.3 414.4,283.3 414.4,277.7 " /></g><g id="bbox:5.3_46.7_5.4_46.8" ><polygon points="418.3,277.7 422.1,277.7 422.1,283.3 418.3,283.3 418.3,277.7 " /></g><g id="bbox:5.4_46.7_5.5_46.8" ><polygon points="422.1,277.7 426.0,277.7 426.0,283.3 422.1,283.3 422.1,277.7 " /></g><g id="bbox:5.5_46.7_5.6_46.8" ><polygon points="426.0,277.7 429.8,277.7 429.8,283.3 426.0,283.3 426.0,277.7 " /></g><g id="bbox:5.6_46.7_5.7_46.8" ><polygon points="429.8,277.7 433.7,277.7 433.7,283.3 429.8,283.3 429.8,277.7 " /></g><g id="bbox:5.7_46.7_5.8_46.8" ><polygon points="433.7,277.7 437.5,277.7 437.5,283.3 433.7,283.3 433.7,277.7 " /></g><g id="bbox:5.8_46.7_5.9_46.8" ><polygon points="437.5,277.7 441.4,277.7 441.4,283.3 437.5,283.3 437.5,277.7 " /></g><g id="bbox:5.9_46.7_6_46.8" ><polygon points="441.4,277.7 445.2,277.7 445.2,283.3 441.4,283.3 441.4,277.7 " /></g><g id="bbox:6_46.7_6.1_46.8" ><polygon points="445.2,277.7 449.1,277.7 449.1,283.3 445.2,283.3 445.2,277.7 " /></g><g id="bbox:6.1_46.7_6.2_46.8" ><polygon points="449.1,277.7 452.9,277.7 452.9,283.3 449.1,283.3 449.1,277.7 " /></g><g id="bbox:6.2_46.7_6.3_46.8" ><polygon points="452.9,277.7 456.8,277.7 456.8,283.3 452.9,283.3 452.9,277.7 " /></g><g id="bbox:6.3_46.7_6.4_46.8" ><polygon points="456.8,277.7 460.6,277.7 460.6,283.3 456.8,283.3 456.8,277.7 " /></g><g id="bbox:6.4_46.7_6.5_46.8" ><polygon points="460.6,277.7 464.5,277.7 464.5,283.3 460.6,283.3 460.6,277.7 " /></g><g id="bbox:-2.4_46.6_-2.3_46.7" ><polygon points="122.0,283.3 125.8,283.3 125.8,288.9 122.0,288.9 122.0,283.3 " /></g><g id="bbox:-2.3_46.6_-2.2_46.7" ><polygon points="125.8,283.3 129.7,283.3 129.7,288.9 125.8,288.9 125.8,283.3 " /></g><g id="bbox:-2_46.6_-1.9_46.7" ><polygon points="137.4,283.3 141.2,283.3 141.2,288.9 137.4,288.9 137.4,283.3 " /></g><g id="bbox:-1.9_46.6_-1.8_46.7" ><polygon points="141.2,283.3 145.1,283.3 145.1,288.9 141.2,288.9 141.2,283.3 " /></g><g id="bbox:-1.8_46.6_-1.7_46.7" ><polygon points="145.1,283.3 148.9,283.3 148.9,288.9 145.1,288.9 145.1,283.3 " /></g><g id="bbox:-1.7_46.6_-1.6_46.7" ><polygon points="148.9,283.3 152.8,283.3 152.8,288.9 148.9,288.9 148.9,283.3 " /></g><g id="bbox:-1.6_46.6_-1.5_46.7" ><polygon points="152.8,283.3 156.6,283.3 156.6,288.9 152.8,288.9 152.8,283.3 " /></g><g id="bbox:-1.5_46.6_-1.4_46.7" ><polygon points="156.6,283.3 160.5,283.3 160.5,288.9 156.6,288.9 156.6,283.3 " /></g><g id="bbox:-1.4_46.6_-1.3_46.7" ><polygon points="160.5,283.3 164.3,283.3 164.3,288.9 160.5,288.9 160.5,283.3 " /></g><g id="bbox:-1.3_46.6_-1.2_46.7" ><polygon points="164.3,283.3 168.2,283.3 168.2,288.9 164.3,288.9 164.3,283.3 " /></g><g id="bbox:-1.2_46.6_-1.1_46.7" ><polygon points="168.2,283.3 172.0,283.3 172.0,288.9 168.2,288.9 168.2,283.3 " /></g><g id="bbox:-1.1_46.6_-1_46.7" ><polygon points="172.0,283.3 175.9,283.3 175.9,288.9 172.0,288.9 172.0,283.3 " /></g><g id="bbox:-1_46.6_-0.9_46.7" ><polygon points="175.9,283.3 179.7,283.3 179.7,288.9 175.9,288.9 175.9,283.3 " /></g><g id="bbox:-0.9_46.6_-0.8_46.7" ><polygon points="179.7,283.3 183.6,283.3 183.6,288.9 179.7,288.9 179.7,283.3 " /></g><g id="bbox:-0.8_46.6_-0.7_46.7" ><polygon points="183.6,283.3 187.4,283.3 187.4,288.9 183.6,288.9 183.6,283.3 " /></g><g id="bbox:-0.7_46.6_-0.6_46.7" ><polygon points="187.4,283.3 191.3,283.3 191.3,288.9 187.4,288.9 187.4,283.3 " /></g><g id="bbox:-0.6_46.6_-0.5_46.7" ><polygon points="191.3,283.3 195.1,283.3 195.1,288.9 191.3,288.9 191.3,283.3 " /></g><g id="bbox:-0.5_46.6_-0.4_46.7" ><polygon points="195.1,283.3 198.9,283.3 198.9,288.9 195.1,288.9 195.1,283.3 " /></g><g id="bbox:-0.4_46.6_-0.3_46.7" ><polygon points="198.9,283.3 202.8,283.3 202.8,288.9 198.9,288.9 198.9,283.3 " /></g><g id="bbox:-0.3_46.6_-0.2_46.7" ><polygon points="202.8,283.3 206.6,283.3 206.6,288.9 202.8,288.9 202.8,283.3 " /></g><g id="bbox:-0.2_46.6_-0.1_46.7" ><polygon points="206.6,283.3 210.5,283.3 210.5,288.9 206.6,288.9 206.6,283.3 " /></g><g id="bbox:-0.1_46.6_0_46.7" ><polygon points="210.5,283.3 214.3,283.3 214.3,288.9 210.5,288.9 210.5,283.3 " /></g><g id="bbox:0_46.6_0.1_46.7" ><polygon points="214.3,283.3 218.2,283.3 218.2,288.9 214.3,288.9 214.3,283.3 " /></g><g id="bbox:0.1_46.6_0.2_46.7" ><polygon points="218.2,283.3 222.0,283.3 222.0,288.9 218.2,288.9 218.2,283.3 " /></g><g id="bbox:0.2_46.6_0.3_46.7" ><polygon points="222.0,283.3 225.9,283.3 225.9,288.9 222.0,288.9 222.0,283.3 " /></g><g id="bbox:0.3_46.6_0.4_46.7" ><polygon points="225.9,283.3 229.7,283.3 229.7,288.9 225.9,288.9 225.9,283.3 " /></g><g id="bbox:0.4_46.6_0.5_46.7" ><polygon points="229.7,283.3 233.6,283.3 233.6,288.9 229.7,288.9 229.7,283.3 " /></g><g id="bbox:0.5_46.6_0.6_46.7" ><polygon points="233.6,283.3 237.4,283.3 237.4,288.9 233.6,288.9 233.6,283.3 " /></g><g id="bbox:0.6_46.6_0.7_46.7" ><polygon points="237.4,283.3 241.3,283.3 241.3,288.9 237.4,288.9 237.4,283.3 " /></g><g id="bbox:0.7_46.6_0.8_46.7" ><polygon points="241.3,283.3 245.1,283.3 245.1,288.9 241.3,288.9 241.3,283.3 " /></g><g id="bbox:0.8_46.6_0.9_46.7" ><polygon points="245.1,283.3 249.0,283.3 249.0,288.9 245.1,288.9 245.1,283.3 " /></g><g id="bbox:0.9_46.6_1_46.7" ><polygon points="249.0,283.3 252.8,283.3 252.8,288.9 249.0,288.9 249.0,283.3 " /></g><g id="bbox:1_46.6_1.1_46.7" ><polygon points="252.8,283.3 256.7,283.3 256.7,288.9 252.8,288.9 252.8,283.3 " /></g><g id="bbox:1.1_46.6_1.2_46.7" ><polygon points="256.7,283.3 260.5,283.3 260.5,288.9 256.7,288.9 256.7,283.3 " /></g><g id="bbox:1.2_46.6_1.3_46.7" ><polygon points="260.5,283.3 264.4,283.3 264.4,288.9 260.5,288.9 260.5,283.3 " /></g><g id="bbox:1.3_46.6_1.4_46.7" ><polygon points="264.4,283.3 268.2,283.3 268.2,288.9 264.4,288.9 264.4,283.3 " /></g><g id="bbox:1.4_46.6_1.5_46.7" ><polygon points="268.2,283.3 272.1,283.3 272.1,288.9 268.2,288.9 268.2,283.3 " /></g><g id="bbox:1.5_46.6_1.6_46.7" ><polygon points="272.1,283.3 275.9,283.3 275.9,288.9 272.1,288.9 272.1,283.3 " /></g><g id="bbox:1.6_46.6_1.7_46.7" ><polygon points="275.9,283.3 279.8,283.3 279.8,288.9 275.9,288.9 275.9,283.3 " /></g><g id="bbox:1.7_46.6_1.8_46.7" ><polygon points="279.8,283.3 283.6,283.3 283.6,288.9 279.8,288.9 279.8,283.3 " /></g><g id="bbox:1.8_46.6_1.9_46.7" ><polygon points="283.6,283.3 287.5,283.3 287.5,288.9 283.6,288.9 283.6,283.3 " /></g><g id="bbox:1.9_46.6_2_46.7" ><polygon points="287.5,283.3 291.3,283.3 291.3,288.9 287.5,288.9 287.5,283.3 " /></g><g id="bbox:2_46.6_2.1_46.7" ><polygon points="291.3,283.3 295.2,283.3 295.2,288.9 291.3,288.9 291.3,283.3 " /></g><g id="bbox:2.1_46.6_2.2_46.7" ><polygon points="295.2,283.3 299.0,283.3 299.0,288.9 295.2,288.9 295.2,283.3 " /></g><g id="bbox:2.2_46.6_2.3_46.7" ><polygon points="299.0,283.3 302.8,283.3 302.8,288.9 299.0,288.9 299.0,283.3 " /></g><g id="bbox:2.3_46.6_2.4_46.7" ><polygon points="302.8,283.3 306.7,283.3 306.7,288.9 302.8,288.9 302.8,283.3 " /></g><g id="bbox:2.4_46.6_2.5_46.7" ><polygon points="306.7,283.3 310.5,283.3 310.5,288.9 306.7,288.9 306.7,283.3 " /></g><g id="bbox:2.5_46.6_2.6_46.7" ><polygon points="310.5,283.3 314.4,283.3 314.4,288.9 310.5,288.9 310.5,283.3 " /></g><g id="bbox:2.6_46.6_2.7_46.7" ><polygon points="314.4,283.3 318.2,283.3 318.2,288.9 314.4,288.9 314.4,283.3 " /></g><g id="bbox:2.7_46.6_2.8_46.7" ><polygon points="318.2,283.3 322.1,283.3 322.1,288.9 318.2,288.9 318.2,283.3 " /></g><g id="bbox:2.8_46.6_2.9_46.7" ><polygon points="322.1,283.3 325.9,283.3 325.9,288.9 322.1,288.9 322.1,283.3 " /></g><g id="bbox:2.9_46.6_3_46.7" ><polygon points="325.9,283.3 329.8,283.3 329.8,288.9 325.9,288.9 325.9,283.3 " /></g><g id="bbox:3_46.6_3.1_46.7" ><polygon points="329.8,283.3 333.6,283.3 333.6,288.9 329.8,288.9 329.8,283.3 " /></g><g id="bbox:3.1_46.6_3.2_46.7" ><polygon points="333.6,283.3 337.5,283.3 337.5,288.9 333.6,288.9 333.6,283.3 " /></g><g id="bbox:3.2_46.6_3.3_46.7" ><polygon points="337.5,283.3 341.3,283.3 341.3,288.9 337.5,288.9 337.5,283.3 " /></g><g id="bbox:3.3_46.6_3.4_46.7" ><polygon points="341.3,283.3 345.2,283.3 345.2,288.9 341.3,288.9 341.3,283.3 " /></g><g id="bbox:3.4_46.6_3.5_46.7" ><polygon points="345.2,283.3 349.0,283.3 349.0,288.9 345.2,288.9 345.2,283.3 " /></g><g id="bbox:3.5_46.6_3.6_46.7" ><polygon points="349.0,283.3 352.9,283.3 352.9,288.9 349.0,288.9 349.0,283.3 " /></g><g id="bbox:3.6_46.6_3.7_46.7" ><polygon points="352.9,283.3 356.7,283.3 356.7,288.9 352.9,288.9 352.9,283.3 " /></g><g id="bbox:3.7_46.6_3.8_46.7" ><polygon points="356.7,283.3 360.6,283.3 360.6,288.9 356.7,288.9 356.7,283.3 " /></g><g id="bbox:3.8_46.6_3.9_46.7" ><polygon points="360.6,283.3 364.4,283.3 364.4,288.9 360.6,288.9 360.6,283.3 " /></g><g id="bbox:3.9_46.6_4_46.7" ><polygon points="364.4,283.3 368.3,283.3 368.3,288.9 364.4,288.9 364.4,283.3 " /></g><g id="bbox:4_46.6_4.1_46.7" ><polygon points="368.3,283.3 372.1,283.3 372.1,288.9 368.3,288.9 368.3,283.3 " /></g><g id="bbox:4.1_46.6_4.2_46.7" ><polygon points="372.1,283.3 376.0,283.3 376.0,288.9 372.1,288.9 372.1,283.3 " /></g><g id="bbox:4.2_46.6_4.3_46.7" ><polygon points="376.0,283.3 379.8,283.3 379.8,288.9 376.0,288.9 376.0,283.3 " /></g><g id="bbox:4.3_46.6_4.4_46.7" ><polygon points="379.8,283.3 383.7,283.3 383.7,288.9 379.8,288.9 379.8,283.3 " /></g><g id="bbox:4.4_46.6_4.5_46.7" ><polygon points="383.7,283.3 387.5,283.3 387.5,288.9 383.7,288.9 383.7,283.3 " /></g><g id="bbox:4.5_46.6_4.6_46.7" ><polygon points="387.5,283.3 391.4,283.3 391.4,288.9 387.5,288.9 387.5,283.3 " /></g><g id="bbox:4.6_46.6_4.7_46.7" ><polygon points="391.4,283.3 395.2,283.3 395.2,288.9 391.4,288.9 391.4,283.3 " /></g><g id="bbox:4.7_46.6_4.8_46.7" ><polygon points="395.2,283.3 399.1,283.3 399.1,288.9 395.2,288.9 395.2,283.3 " /></g><g id="bbox:4.8_46.6_4.9_46.7" ><polygon points="399.1,283.3 402.9,283.3 402.9,288.9 399.1,288.9 399.1,283.3 " /></g><g id="bbox:4.9_46.6_5_46.7" ><polygon points="402.9,283.3 406.7,283.3 406.7,288.9 402.9,288.9 402.9,283.3 " /></g><g id="bbox:5_46.6_5.1_46.7" ><polygon points="406.7,283.3 410.6,283.3 410.6,288.9 406.7,288.9 406.7,283.3 " /></g><g id="bbox:5.1_46.6_5.2_46.7" ><polygon points="410.6,283.3 414.4,283.3 414.4,288.9 410.6,288.9 410.6,283.3 " /></g><g id="bbox:5.2_46.6_5.3_46.7" ><polygon points="414.4,283.3 418.3,283.3 418.3,288.9 414.4,288.9 414.4,283.3 " /></g><g id="bbox:5.3_46.6_5.4_46.7" ><polygon points="418.3,283.3 422.1,283.3 422.1,288.9 418.3,288.9 418.3,283.3 " /></g><g id="bbox:5.4_46.6_5.5_46.7" ><polygon points="422.1,283.3 426.0,283.3 426.0,288.9 422.1,288.9 422.1,283.3 " /></g><g id="bbox:5.5_46.6_5.6_46.7" ><polygon points="426.0,283.3 429.8,283.3 429.8,288.9 426.0,288.9 426.0,283.3 " /></g><g id="bbox:5.6_46.6_5.7_46.7" ><polygon points="429.8,283.3 433.7,283.3 433.7,288.9 429.8,288.9 429.8,283.3 " /></g><g id="bbox:5.7_46.6_5.8_46.7" ><polygon points="433.7,283.3 437.5,283.3 437.5,288.9 433.7,288.9 433.7,283.3 " /></g><g id="bbox:5.8_46.6_5.9_46.7" ><polygon points="437.5,283.3 441.4,283.3 441.4,288.9 437.5,288.9 437.5,283.3 " /></g><g id="bbox:5.9_46.6_6_46.7" ><polygon points="441.4,283.3 445.2,283.3 445.2,288.9 441.4,288.9 441.4,283.3 " /></g><g id="bbox:6_46.6_6.1_46.7" ><polygon points="445.2,283.3 449.1,283.3 449.1,288.9 445.2,288.9 445.2,283.3 " /></g><g id="bbox:6.1_46.6_6.2_46.7" ><polygon points="449.1,283.3 452.9,283.3 452.9,288.9 449.1,288.9 449.1,283.3 " /></g><g id="bbox:6.2_46.6_6.3_46.7" ><polygon points="452.9,283.3 456.8,283.3 456.8,288.9 452.9,288.9 452.9,283.3 " /></g><g id="bbox:6.3_46.6_6.4_46.7" ><polygon points="456.8,283.3 460.6,283.3 460.6,288.9 456.8,288.9 456.8,283.3 " /></g><g id="bbox:-1.9_46.5_-1.8_46.6" ><polygon points="141.2,288.9 145.1,288.9 145.1,294.5 141.2,294.5 141.2,288.9 " /></g><g id="bbox:-1.8_46.5_-1.7_46.6" ><polygon points="145.1,288.9 148.9,288.9 148.9,294.5 145.1,294.5 145.1,288.9 " /></g><g id="bbox:-1.7_46.5_-1.6_46.6" ><polygon points="148.9,288.9 152.8,288.9 152.8,294.5 148.9,294.5 148.9,288.9 " /></g><g id="bbox:-1.6_46.5_-1.5_46.6" ><polygon points="152.8,288.9 156.6,288.9 156.6,294.5 152.8,294.5 152.8,288.9 " /></g><g id="bbox:-1.5_46.5_-1.4_46.6" ><polygon points="156.6,288.9 160.5,288.9 160.5,294.5 156.6,294.5 156.6,288.9 " /></g><g id="bbox:-1.4_46.5_-1.3_46.6" ><polygon points="160.5,288.9 164.3,288.9 164.3,294.5 160.5,294.5 160.5,288.9 " /></g><g id="bbox:-1.3_46.5_-1.2_46.6" ><polygon points="164.3,288.9 168.2,288.9 168.2,294.5 164.3,294.5 164.3,288.9 " /></g><g id="bbox:-1.2_46.5_-1.1_46.6" ><polygon points="168.2,288.9 172.0,288.9 172.0,294.5 168.2,294.5 168.2,288.9 " /></g><g id="bbox:-1.1_46.5_-1_46.6" ><polygon points="172.0,288.9 175.9,288.9 175.9,294.5 172.0,294.5 172.0,288.9 " /></g><g id="bbox:-1_46.5_-0.9_46.6" ><polygon points="175.9,288.9 179.7,288.9 179.7,294.5 175.9,294.5 175.9,288.9 " /></g><g id="bbox:-0.9_46.5_-0.8_46.6" ><polygon points="179.7,288.9 183.6,288.9 183.6,294.5 179.7,294.5 179.7,288.9 " /></g><g id="bbox:-0.8_46.5_-0.7_46.6" ><polygon points="183.6,288.9 187.4,288.9 187.4,294.5 183.6,294.5 183.6,288.9 " /></g><g id="bbox:-0.7_46.5_-0.6_46.6" ><polygon points="187.4,288.9 191.3,288.9 191.3,294.5 187.4,294.5 187.4,288.9 " /></g><g id="bbox:-0.6_46.5_-0.5_46.6" ><polygon points="191.3,288.9 195.1,288.9 195.1,294.5 191.3,294.5 191.3,288.9 " /></g><g id="bbox:-0.5_46.5_-0.4_46.6" ><polygon points="195.1,288.9 198.9,288.9 198.9,294.5 195.1,294.5 195.1,288.9 " /></g><g id="bbox:-0.4_46.5_-0.3_46.6" ><polygon points="198.9,288.9 202.8,288.9 202.8,294.5 198.9,294.5 198.9,288.9 " /></g><g id="bbox:-0.3_46.5_-0.2_46.6" ><polygon points="202.8,288.9 206.6,288.9 206.6,294.5 202.8,294.5 202.8,288.9 " /></g><g id="bbox:-0.2_46.5_-0.1_46.6" ><polygon points="206.6,288.9 210.5,288.9 210.5,294.5 206.6,294.5 206.6,288.9 " /></g><g id="bbox:-0.1_46.5_0_46.6" ><polygon points="210.5,288.9 214.3,288.9 214.3,294.5 210.5,294.5 210.5,288.9 " /></g><g id="bbox:0_46.5_0.1_46.6" ><polygon points="214.3,288.9 218.2,288.9 218.2,294.5 214.3,294.5 214.3,288.9 " /></g><g id="bbox:0.1_46.5_0.2_46.6" ><polygon points="218.2,288.9 222.0,288.9 222.0,294.5 218.2,294.5 218.2,288.9 " /></g><g id="bbox:0.2_46.5_0.3_46.6" ><polygon points="222.0,288.9 225.9,288.9 225.9,294.5 222.0,294.5 222.0,288.9 " /></g><g id="bbox:0.3_46.5_0.4_46.6" ><polygon points="225.9,288.9 229.7,288.9 229.7,294.5 225.9,294.5 225.9,288.9 " /></g><g id="bbox:0.4_46.5_0.5_46.6" ><polygon points="229.7,288.9 233.6,288.9 233.6,294.5 229.7,294.5 229.7,288.9 " /></g><g id="bbox:0.5_46.5_0.6_46.6" ><polygon points="233.6,288.9 237.4,288.9 237.4,294.5 233.6,294.5 233.6,288.9 " /></g><g id="bbox:0.6_46.5_0.7_46.6" ><polygon points="237.4,288.9 241.3,288.9 241.3,294.5 237.4,294.5 237.4,288.9 " /></g><g id="bbox:0.7_46.5_0.8_46.6" ><polygon points="241.3,288.9 245.1,288.9 245.1,294.5 241.3,294.5 241.3,288.9 " /></g><g id="bbox:0.8_46.5_0.9_46.6" ><polygon points="245.1,288.9 249.0,288.9 249.0,294.5 245.1,294.5 245.1,288.9 " /></g><g id="bbox:0.9_46.5_1_46.6" ><polygon points="249.0,288.9 252.8,288.9 252.8,294.5 249.0,294.5 249.0,288.9 " /></g><g id="bbox:1_46.5_1.1_46.6" ><polygon points="252.8,288.9 256.7,288.9 256.7,294.5 252.8,294.5 252.8,288.9 " /></g><g id="bbox:1.1_46.5_1.2_46.6" ><polygon points="256.7,288.9 260.5,288.9 260.5,294.5 256.7,294.5 256.7,288.9 " /></g><g id="bbox:1.2_46.5_1.3_46.6" ><polygon points="260.5,288.9 264.4,288.9 264.4,294.5 260.5,294.5 260.5,288.9 " /></g><g id="bbox:1.3_46.5_1.4_46.6" ><polygon points="264.4,288.9 268.2,288.9 268.2,294.5 264.4,294.5 264.4,288.9 " /></g><g id="bbox:1.4_46.5_1.5_46.6" ><polygon points="268.2,288.9 272.1,288.9 272.1,294.5 268.2,294.5 268.2,288.9 " /></g><g id="bbox:1.5_46.5_1.6_46.6" ><polygon points="272.1,288.9 275.9,288.9 275.9,294.5 272.1,294.5 272.1,288.9 " /></g><g id="bbox:1.6_46.5_1.7_46.6" ><polygon points="275.9,288.9 279.8,288.9 279.8,294.5 275.9,294.5 275.9,288.9 " /></g><g id="bbox:1.7_46.5_1.8_46.6" ><polygon points="279.8,288.9 283.6,288.9 283.6,294.5 279.8,294.5 279.8,288.9 " /></g><g id="bbox:1.8_46.5_1.9_46.6" ><polygon points="283.6,288.9 287.5,288.9 287.5,294.5 283.6,294.5 283.6,288.9 " /></g><g id="bbox:1.9_46.5_2_46.6" ><polygon points="287.5,288.9 291.3,288.9 291.3,294.5 287.5,294.5 287.5,288.9 " /></g><g id="bbox:2_46.5_2.1_46.6" ><polygon points="291.3,288.9 295.2,288.9 295.2,294.5 291.3,294.5 291.3,288.9 " /></g><g id="bbox:2.1_46.5_2.2_46.6" ><polygon points="295.2,288.9 299.0,288.9 299.0,294.5 295.2,294.5 295.2,288.9 " /></g><g id="bbox:2.2_46.5_2.3_46.6" ><polygon points="299.0,288.9 302.8,288.9 302.8,294.5 299.0,294.5 299.0,288.9 " /></g><g id="bbox:2.3_46.5_2.4_46.6" ><polygon points="302.8,288.9 306.7,288.9 306.7,294.5 302.8,294.5 302.8,288.9 " /></g><g id="bbox:2.4_46.5_2.5_46.6" ><polygon points="306.7,288.9 310.5,288.9 310.5,294.5 306.7,294.5 306.7,288.9 " /></g><g id="bbox:2.5_46.5_2.6_46.6" ><polygon points="310.5,288.9 314.4,288.9 314.4,294.5 310.5,294.5 310.5,288.9 " /></g><g id="bbox:2.6_46.5_2.7_46.6" ><polygon points="314.4,288.9 318.2,288.9 318.2,294.5 314.4,294.5 314.4,288.9 " /></g><g id="bbox:2.7_46.5_2.8_46.6" ><polygon points="318.2,288.9 322.1,288.9 322.1,294.5 318.2,294.5 318.2,288.9 " /></g><g id="bbox:2.8_46.5_2.9_46.6" ><polygon points="322.1,288.9 325.9,288.9 325.9,294.5 322.1,294.5 322.1,288.9 " /></g><g id="bbox:2.9_46.5_3_46.6" ><polygon points="325.9,288.9 329.8,288.9 329.8,294.5 325.9,294.5 325.9,288.9 " /></g><g id="bbox:3_46.5_3.1_46.6" ><polygon points="329.8,288.9 333.6,288.9 333.6,294.5 329.8,294.5 329.8,288.9 " /></g><g id="bbox:3.1_46.5_3.2_46.6" ><polygon points="333.6,288.9 337.5,288.9 337.5,294.5 333.6,294.5 333.6,288.9 " /></g><g id="bbox:3.2_46.5_3.3_46.6" ><polygon points="337.5,288.9 341.3,288.9 341.3,294.5 337.5,294.5 337.5,288.9 " /></g><g id="bbox:3.3_46.5_3.4_46.6" ><polygon points="341.3,288.9 345.2,288.9 345.2,294.5 341.3,294.5 341.3,288.9 " /></g><g id="bbox:3.4_46.5_3.5_46.6" ><polygon points="345.2,288.9 349.0,288.9 349.0,294.5 345.2,294.5 345.2,288.9 " /></g><g id="bbox:3.5_46.5_3.6_46.6" ><polygon points="349.0,288.9 352.9,288.9 352.9,294.5 349.0,294.5 349.0,288.9 " /></g><g id="bbox:3.6_46.5_3.7_46.6" ><polygon points="352.9,288.9 356.7,288.9 356.7,294.5 352.9,294.5 352.9,288.9 " /></g><g id="bbox:3.7_46.5_3.8_46.6" ><polygon points="356.7,288.9 360.6,288.9 360.6,294.5 356.7,294.5 356.7,288.9 " /></g><g id="bbox:3.8_46.5_3.9_46.6" ><polygon points="360.6,288.9 364.4,288.9 364.4,294.5 360.6,294.5 360.6,288.9 " /></g><g id="bbox:3.9_46.5_4_46.6" ><polygon points="364.4,288.9 368.3,288.9 368.3,294.5 364.4,294.5 364.4,288.9 " /></g><g id="bbox:4_46.5_4.1_46.6" ><polygon points="368.3,288.9 372.1,288.9 372.1,294.5 368.3,294.5 368.3,288.9 " /></g><g id="bbox:4.1_46.5_4.2_46.6" ><polygon points="372.1,288.9 376.0,288.9 376.0,294.5 372.1,294.5 372.1,288.9 " /></g><g id="bbox:4.2_46.5_4.3_46.6" ><polygon points="376.0,288.9 379.8,288.9 379.8,294.5 376.0,294.5 376.0,288.9 " /></g><g id="bbox:4.3_46.5_4.4_46.6" ><polygon points="379.8,288.9 383.7,288.9 383.7,294.5 379.8,294.5 379.8,288.9 " /></g><g id="bbox:4.4_46.5_4.5_46.6" ><polygon points="383.7,288.9 387.5,288.9 387.5,294.5 383.7,294.5 383.7,288.9 " /></g><g id="bbox:4.5_46.5_4.6_46.6" ><polygon points="387.5,288.9 391.4,288.9 391.4,294.5 387.5,294.5 387.5,288.9 " /></g><g id="bbox:4.6_46.5_4.7_46.6" ><polygon points="391.4,288.9 395.2,288.9 395.2,294.5 391.4,294.5 391.4,288.9 " /></g><g id="bbox:4.7_46.5_4.8_46.6" ><polygon points="395.2,288.9 399.1,288.9 399.1,294.5 395.2,294.5 395.2,288.9 " /></g><g id="bbox:4.8_46.5_4.9_46.6" ><polygon points="399.1,288.9 402.9,288.9 402.9,294.5 399.1,294.5 399.1,288.9 " /></g><g id="bbox:4.9_46.5_5_46.6" ><polygon points="402.9,288.9 406.7,288.9 406.7,294.5 402.9,294.5 402.9,288.9 " /></g><g id="bbox:5_46.5_5.1_46.6" ><polygon points="406.7,288.9 410.6,288.9 410.6,294.5 406.7,294.5 406.7,288.9 " /></g><g id="bbox:5.1_46.5_5.2_46.6" ><polygon points="410.6,288.9 414.4,288.9 414.4,294.5 410.6,294.5 410.6,288.9 " /></g><g id="bbox:5.2_46.5_5.3_46.6" ><polygon points="414.4,288.9 418.3,288.9 418.3,294.5 414.4,294.5 414.4,288.9 " /></g><g id="bbox:5.3_46.5_5.4_46.6" ><polygon points="418.3,288.9 422.1,288.9 422.1,294.5 418.3,294.5 418.3,288.9 " /></g><g id="bbox:5.4_46.5_5.5_46.6" ><polygon points="422.1,288.9 426.0,288.9 426.0,294.5 422.1,294.5 422.1,288.9 " /></g><g id="bbox:5.5_46.5_5.6_46.6" ><polygon points="426.0,288.9 429.8,288.9 429.8,294.5 426.0,294.5 426.0,288.9 " /></g><g id="bbox:5.6_46.5_5.7_46.6" ><polygon points="429.8,288.9 433.7,288.9 433.7,294.5 429.8,294.5 429.8,288.9 " /></g><g id="bbox:5.7_46.5_5.8_46.6" ><polygon points="433.7,288.9 437.5,288.9 437.5,294.5 433.7,294.5 433.7,288.9 " /></g><g id="bbox:5.8_46.5_5.9_46.6" ><polygon points="437.5,288.9 441.4,288.9 441.4,294.5 437.5,294.5 437.5,288.9 " /></g><g id="bbox:5.9_46.5_6_46.6" ><polygon points="441.4,288.9 445.2,288.9 445.2,294.5 441.4,294.5 441.4,288.9 " /></g><g id="bbox:6_46.5_6.1_46.6" ><polygon points="445.2,288.9 449.1,288.9 449.1,294.5 445.2,294.5 445.2,288.9 " /></g><g id="bbox:6.1_46.5_6.2_46.6" ><polygon points="449.1,288.9 452.9,288.9 452.9,294.5 449.1,294.5 449.1,288.9 " /></g><g id="bbox:-1.9_46.4_-1.8_46.5" ><polygon points="141.2,294.5 145.1,294.5 145.1,300.1 141.2,300.1 141.2,294.5 " /></g><g id="bbox:-1.8_46.4_-1.7_46.5" ><polygon points="145.1,294.5 148.9,294.5 148.9,300.1 145.1,300.1 145.1,294.5 " /></g><g id="bbox:-1.7_46.4_-1.6_46.5" ><polygon points="148.9,294.5 152.8,294.5 152.8,300.1 148.9,300.1 148.9,294.5 " /></g><g id="bbox:-1.6_46.4_-1.5_46.5" ><polygon points="152.8,294.5 156.6,294.5 156.6,300.1 152.8,300.1 152.8,294.5 " /></g><g id="bbox:-1.5_46.4_-1.4_46.5" ><polygon points="156.6,294.5 160.5,294.5 160.5,300.1 156.6,300.1 156.6,294.5 " /></g><g id="bbox:-1.4_46.4_-1.3_46.5" ><polygon points="160.5,294.5 164.3,294.5 164.3,300.1 160.5,300.1 160.5,294.5 " /></g><g id="bbox:-1.3_46.4_-1.2_46.5" ><polygon points="164.3,294.5 168.2,294.5 168.2,300.1 164.3,300.1 164.3,294.5 " /></g><g id="bbox:-1.2_46.4_-1.1_46.5" ><polygon points="168.2,294.5 172.0,294.5 172.0,300.1 168.2,300.1 168.2,294.5 " /></g><g id="bbox:-1.1_46.4_-1_46.5" ><polygon points="172.0,294.5 175.9,294.5 175.9,300.1 172.0,300.1 172.0,294.5 " /></g><g id="bbox:-1_46.4_-0.9_46.5" ><polygon points="175.9,294.5 179.7,294.5 179.7,300.1 175.9,300.1 175.9,294.5 " /></g><g id="bbox:-0.9_46.4_-0.8_46.5" ><polygon points="179.7,294.5 183.6,294.5 183.6,300.1 179.7,300.1 179.7,294.5 " /></g><g id="bbox:-0.8_46.4_-0.7_46.5" ><polygon points="183.6,294.5 187.4,294.5 187.4,300.1 183.6,300.1 183.6,294.5 " /></g><g id="bbox:-0.7_46.4_-0.6_46.5" ><polygon points="187.4,294.5 191.3,294.5 191.3,300.1 187.4,300.1 187.4,294.5 " /></g><g id="bbox:-0.6_46.4_-0.5_46.5" ><polygon points="191.3,294.5 195.1,294.5 195.1,300.1 191.3,300.1 191.3,294.5 " /></g><g id="bbox:-0.5_46.4_-0.4_46.5" ><polygon points="195.1,294.5 198.9,294.5 198.9,300.1 195.1,300.1 195.1,294.5 " /></g><g id="bbox:-0.4_46.4_-0.3_46.5" ><polygon points="198.9,294.5 202.8,294.5 202.8,300.1 198.9,300.1 198.9,294.5 " /></g><g id="bbox:-0.3_46.4_-0.2_46.5" ><polygon points="202.8,294.5 206.6,294.5 206.6,300.1 202.8,300.1 202.8,294.5 " /></g><g id="bbox:-0.2_46.4_-0.1_46.5" ><polygon points="206.6,294.5 210.5,294.5 210.5,300.1 206.6,300.1 206.6,294.5 " /></g><g id="bbox:-0.1_46.4_0_46.5" ><polygon points="210.5,294.5 214.3,294.5 214.3,300.1 210.5,300.1 210.5,294.5 " /></g><g id="bbox:0_46.4_0.1_46.5" ><polygon points="214.3,294.5 218.2,294.5 218.2,300.1 214.3,300.1 214.3,294.5 " /></g><g id="bbox:0.1_46.4_0.2_46.5" ><polygon points="218.2,294.5 222.0,294.5 222.0,300.1 218.2,300.1 218.2,294.5 " /></g><g id="bbox:0.2_46.4_0.3_46.5" ><polygon points="222.0,294.5 225.9,294.5 225.9,300.1 222.0,300.1 222.0,294.5 " /></g><g id="bbox:0.3_46.4_0.4_46.5" ><polygon points="225.9,294.5 229.7,294.5 229.7,300.1 225.9,300.1 225.9,294.5 " /></g><g id="bbox:0.4_46.4_0.5_46.5" ><polygon points="229.7,294.5 233.6,294.5 233.6,300.1 229.7,300.1 229.7,294.5 " /></g><g id="bbox:0.5_46.4_0.6_46.5" ><polygon points="233.6,294.5 237.4,294.5 237.4,300.1 233.6,300.1 233.6,294.5 " /></g><g id="bbox:0.6_46.4_0.7_46.5" ><polygon points="237.4,294.5 241.3,294.5 241.3,300.1 237.4,300.1 237.4,294.5 " /></g><g id="bbox:0.7_46.4_0.8_46.5" ><polygon points="241.3,294.5 245.1,294.5 245.1,300.1 241.3,300.1 241.3,294.5 " /></g><g id="bbox:0.8_46.4_0.9_46.5" ><polygon points="245.1,294.5 249.0,294.5 249.0,300.1 245.1,300.1 245.1,294.5 " /></g><g id="bbox:0.9_46.4_1_46.5" ><polygon points="249.0,294.5 252.8,294.5 252.8,300.1 249.0,300.1 249.0,294.5 " /></g><g id="bbox:1_46.4_1.1_46.5" ><polygon points="252.8,294.5 256.7,294.5 256.7,300.1 252.8,300.1 252.8,294.5 " /></g><g id="bbox:1.1_46.4_1.2_46.5" ><polygon points="256.7,294.5 260.5,294.5 260.5,300.1 256.7,300.1 256.7,294.5 " /></g><g id="bbox:1.2_46.4_1.3_46.5" ><polygon points="260.5,294.5 264.4,294.5 264.4,300.1 260.5,300.1 260.5,294.5 " /></g><g id="bbox:1.3_46.4_1.4_46.5" ><polygon points="264.4,294.5 268.2,294.5 268.2,300.1 264.4,300.1 264.4,294.5 " /></g><g id="bbox:1.4_46.4_1.5_46.5" ><polygon points="268.2,294.5 272.1,294.5 272.1,300.1 268.2,300.1 268.2,294.5 " /></g><g id="bbox:1.5_46.4_1.6_46.5" ><polygon points="272.1,294.5 275.9,294.5 275.9,300.1 272.1,300.1 272.1,294.5 " /></g><g id="bbox:1.6_46.4_1.7_46.5" ><polygon points="275.9,294.5 279.8,294.5 279.8,300.1 275.9,300.1 275.9,294.5 " /></g><g id="bbox:1.7_46.4_1.8_46.5" ><polygon points="279.8,294.5 283.6,294.5 283.6,300.1 279.8,300.1 279.8,294.5 " /></g><g id="bbox:1.8_46.4_1.9_46.5" ><polygon points="283.6,294.5 287.5,294.5 287.5,300.1 283.6,300.1 283.6,294.5 " /></g><g id="bbox:1.9_46.4_2_46.5" ><polygon points="287.5,294.5 291.3,294.5 291.3,300.1 287.5,300.1 287.5,294.5 " /></g><g id="bbox:2_46.4_2.1_46.5" ><polygon points="291.3,294.5 295.2,294.5 295.2,300.1 291.3,300.1 291.3,294.5 " /></g><g id="bbox:2.1_46.4_2.2_46.5" ><polygon points="295.2,294.5 299.0,294.5 299.0,300.1 295.2,300.1 295.2,294.5 " /></g><g id="bbox:2.2_46.4_2.3_46.5" ><polygon points="299.0,294.5 302.8,294.5 302.8,300.1 299.0,300.1 299.0,294.5 " /></g><g id="bbox:2.3_46.4_2.4_46.5" ><polygon points="302.8,294.5 306.7,294.5 306.7,300.1 302.8,300.1 302.8,294.5 " /></g><g id="bbox:2.4_46.4_2.5_46.5" ><polygon points="306.7,294.5 310.5,294.5 310.5,300.1 306.7,300.1 306.7,294.5 " /></g><g id="bbox:2.5_46.4_2.6_46.5" ><polygon points="310.5,294.5 314.4,294.5 314.4,300.1 310.5,300.1 310.5,294.5 " /></g><g id="bbox:2.6_46.4_2.7_46.5" ><polygon points="314.4,294.5 318.2,294.5 318.2,300.1 314.4,300.1 314.4,294.5 " /></g><g id="bbox:2.7_46.4_2.8_46.5" ><polygon points="318.2,294.5 322.1,294.5 322.1,300.1 318.2,300.1 318.2,294.5 " /></g><g id="bbox:2.8_46.4_2.9_46.5" ><polygon points="322.1,294.5 325.9,294.5 325.9,300.1 322.1,300.1 322.1,294.5 " /></g><g id="bbox:2.9_46.4_3_46.5" ><polygon points="325.9,294.5 329.8,294.5 329.8,300.1 325.9,300.1 325.9,294.5 " /></g><g id="bbox:3_46.4_3.1_46.5" ><polygon points="329.8,294.5 333.6,294.5 333.6,300.1 329.8,300.1 329.8,294.5 " /></g><g id="bbox:3.1_46.4_3.2_46.5" ><polygon points="333.6,294.5 337.5,294.5 337.5,300.1 333.6,300.1 333.6,294.5 " /></g><g id="bbox:3.2_46.4_3.3_46.5" ><polygon points="337.5,294.5 341.3,294.5 341.3,300.1 337.5,300.1 337.5,294.5 " /></g><g id="bbox:3.3_46.4_3.4_46.5" ><polygon points="341.3,294.5 345.2,294.5 345.2,300.1 341.3,300.1 341.3,294.5 " /></g><g id="bbox:3.4_46.4_3.5_46.5" ><polygon points="345.2,294.5 349.0,294.5 349.0,300.1 345.2,300.1 345.2,294.5 " /></g><g id="bbox:3.5_46.4_3.6_46.5" ><polygon points="349.0,294.5 352.9,294.5 352.9,300.1 349.0,300.1 349.0,294.5 " /></g><g id="bbox:3.6_46.4_3.7_46.5" ><polygon points="352.9,294.5 356.7,294.5 356.7,300.1 352.9,300.1 352.9,294.5 " /></g><g id="bbox:3.7_46.4_3.8_46.5" ><polygon points="356.7,294.5 360.6,294.5 360.6,300.1 356.7,300.1 356.7,294.5 " /></g><g id="bbox:3.8_46.4_3.9_46.5" ><polygon points="360.6,294.5 364.4,294.5 364.4,300.1 360.6,300.1 360.6,294.5 " /></g><g id="bbox:3.9_46.4_4_46.5" ><polygon points="364.4,294.5 368.3,294.5 368.3,300.1 364.4,300.1 364.4,294.5 " /></g><g id="bbox:4_46.4_4.1_46.5" ><polygon points="368.3,294.5 372.1,294.5 372.1,300.1 368.3,300.1 368.3,294.5 " /></g><g id="bbox:4.1_46.4_4.2_46.5" ><polygon points="372.1,294.5 376.0,294.5 376.0,300.1 372.1,300.1 372.1,294.5 " /></g><g id="bbox:4.2_46.4_4.3_46.5" ><polygon points="376.0,294.5 379.8,294.5 379.8,300.1 376.0,300.1 376.0,294.5 " /></g><g id="bbox:4.3_46.4_4.4_46.5" ><polygon points="379.8,294.5 383.7,294.5 383.7,300.1 379.8,300.1 379.8,294.5 " /></g><g id="bbox:4.4_46.4_4.5_46.5" ><polygon points="383.7,294.5 387.5,294.5 387.5,300.1 383.7,300.1 383.7,294.5 " /></g><g id="bbox:4.5_46.4_4.6_46.5" ><polygon points="387.5,294.5 391.4,294.5 391.4,300.1 387.5,300.1 387.5,294.5 " /></g><g id="bbox:4.6_46.4_4.7_46.5" ><polygon points="391.4,294.5 395.2,294.5 395.2,300.1 391.4,300.1 391.4,294.5 " /></g><g id="bbox:4.7_46.4_4.8_46.5" ><polygon points="395.2,294.5 399.1,294.5 399.1,300.1 395.2,300.1 395.2,294.5 " /></g><g id="bbox:4.8_46.4_4.9_46.5" ><polygon points="399.1,294.5 402.9,294.5 402.9,300.1 399.1,300.1 399.1,294.5 " /></g><g id="bbox:4.9_46.4_5_46.5" ><polygon points="402.9,294.5 406.7,294.5 406.7,300.1 402.9,300.1 402.9,294.5 " /></g><g id="bbox:5_46.4_5.1_46.5" ><polygon points="406.7,294.5 410.6,294.5 410.6,300.1 406.7,300.1 406.7,294.5 " /></g><g id="bbox:5.1_46.4_5.2_46.5" ><polygon points="410.6,294.5 414.4,294.5 414.4,300.1 410.6,300.1 410.6,294.5 " /></g><g id="bbox:5.2_46.4_5.3_46.5" ><polygon points="414.4,294.5 418.3,294.5 418.3,300.1 414.4,300.1 414.4,294.5 " /></g><g id="bbox:5.3_46.4_5.4_46.5" ><polygon points="418.3,294.5 422.1,294.5 422.1,300.1 418.3,300.1 418.3,294.5 " /></g><g id="bbox:5.4_46.4_5.5_46.5" ><polygon points="422.1,294.5 426.0,294.5 426.0,300.1 422.1,300.1 422.1,294.5 " /></g><g id="bbox:5.5_46.4_5.6_46.5" ><polygon points="426.0,294.5 429.8,294.5 429.8,300.1 426.0,300.1 426.0,294.5 " /></g><g id="bbox:5.6_46.4_5.7_46.5" ><polygon points="429.8,294.5 433.7,294.5 433.7,300.1 429.8,300.1 429.8,294.5 " /></g><g id="bbox:5.7_46.4_5.8_46.5" ><polygon points="433.7,294.5 437.5,294.5 437.5,300.1 433.7,300.1 433.7,294.5 " /></g><g id="bbox:5.8_46.4_5.9_46.5" ><polygon points="437.5,294.5 441.4,294.5 441.4,300.1 437.5,300.1 437.5,294.5 " /></g><g id="bbox:5.9_46.4_6_46.5" ><polygon points="441.4,294.5 445.2,294.5 445.2,300.1 441.4,300.1 441.4,294.5 " /></g><g id="bbox:6_46.4_6.1_46.5" ><polygon points="445.2,294.5 449.1,294.5 449.1,300.1 445.2,300.1 445.2,294.5 " /></g><g id="bbox:6.1_46.4_6.2_46.5" ><polygon points="449.1,294.5 452.9,294.5 452.9,300.1 449.1,300.1 449.1,294.5 " /></g><g id="bbox:6.3_46.4_6.4_46.5" ><polygon points="456.8,294.5 460.6,294.5 460.6,300.1 456.8,300.1 456.8,294.5 " /></g><g id="bbox:6.4_46.4_6.5_46.5" ><polygon points="460.6,294.5 464.5,294.5 464.5,300.1 460.6,300.1 460.6,294.5 " /></g><g id="bbox:6.5_46.4_6.6_46.5" ><polygon points="464.5,294.5 468.3,294.5 468.3,300.1 464.5,300.1 464.5,294.5 " /></g><g id="bbox:6.6_46.4_6.7_46.5" ><polygon points="468.3,294.5 472.2,294.5 472.2,300.1 468.3,300.1 468.3,294.5 " /></g><g id="bbox:6.7_46.4_6.8_46.5" ><polygon points="472.2,294.5 476.0,294.5 476.0,300.1 472.2,300.1 472.2,294.5 " /></g><g id="bbox:6.8_46.4_6.9_46.5" ><polygon points="476.0,294.5 479.9,294.5 479.9,300.1 476.0,300.1 476.0,294.5 " /></g><g id="bbox:-1.6_46.3_-1.5_46.4" ><polygon points="152.8,300.1 156.6,300.1 156.6,305.7 152.8,305.7 152.8,300.1 " /></g><g id="bbox:-1.5_46.3_-1.4_46.4" ><polygon points="156.6,300.1 160.5,300.1 160.5,305.7 156.6,305.7 156.6,300.1 " /></g><g id="bbox:-1.4_46.3_-1.3_46.4" ><polygon points="160.5,300.1 164.3,300.1 164.3,305.7 160.5,305.7 160.5,300.1 " /></g><g id="bbox:-1.3_46.3_-1.2_46.4" ><polygon points="164.3,300.1 168.2,300.1 168.2,305.7 164.3,305.7 164.3,300.1 " /></g><g id="bbox:-1.2_46.3_-1.1_46.4" ><polygon points="168.2,300.1 172.0,300.1 172.0,305.7 168.2,305.7 168.2,300.1 " /></g><g id="bbox:-1.1_46.3_-1_46.4" ><polygon points="172.0,300.1 175.9,300.1 175.9,305.7 172.0,305.7 172.0,300.1 " /></g><g id="bbox:-1_46.3_-0.9_46.4" ><polygon points="175.9,300.1 179.7,300.1 179.7,305.7 175.9,305.7 175.9,300.1 " /></g><g id="bbox:-0.9_46.3_-0.8_46.4" ><polygon points="179.7,300.1 183.6,300.1 183.6,305.7 179.7,305.7 179.7,300.1 " /></g><g id="bbox:-0.8_46.3_-0.7_46.4" ><polygon points="183.6,300.1 187.4,300.1 187.4,305.7 183.6,305.7 183.6,300.1 " /></g><g id="bbox:-0.7_46.3_-0.6_46.4" ><polygon points="187.4,300.1 191.3,300.1 191.3,305.7 187.4,305.7 187.4,300.1 " /></g><g id="bbox:-0.6_46.3_-0.5_46.4" ><polygon points="191.3,300.1 195.1,300.1 195.1,305.7 191.3,305.7 191.3,300.1 " /></g><g id="bbox:-0.5_46.3_-0.4_46.4" ><polygon points="195.1,300.1 198.9,300.1 198.9,305.7 195.1,305.7 195.1,300.1 " /></g><g id="bbox:-0.4_46.3_-0.3_46.4" ><polygon points="198.9,300.1 202.8,300.1 202.8,305.7 198.9,305.7 198.9,300.1 " /></g><g id="bbox:-0.3_46.3_-0.2_46.4" ><polygon points="202.8,300.1 206.6,300.1 206.6,305.7 202.8,305.7 202.8,300.1 " /></g><g id="bbox:-0.2_46.3_-0.1_46.4" ><polygon points="206.6,300.1 210.5,300.1 210.5,305.7 206.6,305.7 206.6,300.1 " /></g><g id="bbox:-0.1_46.3_0_46.4" ><polygon points="210.5,300.1 214.3,300.1 214.3,305.7 210.5,305.7 210.5,300.1 " /></g><g id="bbox:0_46.3_0.1_46.4" ><polygon points="214.3,300.1 218.2,300.1 218.2,305.7 214.3,305.7 214.3,300.1 " /></g><g id="bbox:0.1_46.3_0.2_46.4" ><polygon points="218.2,300.1 222.0,300.1 222.0,305.7 218.2,305.7 218.2,300.1 " /></g><g id="bbox:0.2_46.3_0.3_46.4" ><polygon points="222.0,300.1 225.9,300.1 225.9,305.7 222.0,305.7 222.0,300.1 " /></g><g id="bbox:0.3_46.3_0.4_46.4" ><polygon points="225.9,300.1 229.7,300.1 229.7,305.7 225.9,305.7 225.9,300.1 " /></g><g id="bbox:0.4_46.3_0.5_46.4" ><polygon points="229.7,300.1 233.6,300.1 233.6,305.7 229.7,305.7 229.7,300.1 " /></g><g id="bbox:0.5_46.3_0.6_46.4" ><polygon points="233.6,300.1 237.4,300.1 237.4,305.7 233.6,305.7 233.6,300.1 " /></g><g id="bbox:0.6_46.3_0.7_46.4" ><polygon points="237.4,300.1 241.3,300.1 241.3,305.7 237.4,305.7 237.4,300.1 " /></g><g id="bbox:0.7_46.3_0.8_46.4" ><polygon points="241.3,300.1 245.1,300.1 245.1,305.7 241.3,305.7 241.3,300.1 " /></g><g id="bbox:0.8_46.3_0.9_46.4" ><polygon points="245.1,300.1 249.0,300.1 249.0,305.7 245.1,305.7 245.1,300.1 " /></g><g id="bbox:0.9_46.3_1_46.4" ><polygon points="249.0,300.1 252.8,300.1 252.8,305.7 249.0,305.7 249.0,300.1 " /></g><g id="bbox:1_46.3_1.1_46.4" ><polygon points="252.8,300.1 256.7,300.1 256.7,305.7 252.8,305.7 252.8,300.1 " /></g><g id="bbox:1.1_46.3_1.2_46.4" ><polygon points="256.7,300.1 260.5,300.1 260.5,305.7 256.7,305.7 256.7,300.1 " /></g><g id="bbox:1.2_46.3_1.3_46.4" ><polygon points="260.5,300.1 264.4,300.1 264.4,305.7 260.5,305.7 260.5,300.1 " /></g><g id="bbox:1.3_46.3_1.4_46.4" ><polygon points="264.4,300.1 268.2,300.1 268.2,305.7 264.4,305.7 264.4,300.1 " /></g><g id="bbox:1.4_46.3_1.5_46.4" ><polygon points="268.2,300.1 272.1,300.1 272.1,305.7 268.2,305.7 268.2,300.1 " /></g><g id="bbox:1.5_46.3_1.6_46.4" ><polygon points="272.1,300.1 275.9,300.1 275.9,305.7 272.1,305.7 272.1,300.1 " /></g><g id="bbox:1.6_46.3_1.7_46.4" ><polygon points="275.9,300.1 279.8,300.1 279.8,305.7 275.9,305.7 275.9,300.1 " /></g><g id="bbox:1.7_46.3_1.8_46.4" ><polygon points="279.8,300.1 283.6,300.1 283.6,305.7 279.8,305.7 279.8,300.1 " /></g><g id="bbox:1.8_46.3_1.9_46.4" ><polygon points="283.6,300.1 287.5,300.1 287.5,305.7 283.6,305.7 283.6,300.1 " /></g><g id="bbox:1.9_46.3_2_46.4" ><polygon points="287.5,300.1 291.3,300.1 291.3,305.7 287.5,305.7 287.5,300.1 " /></g><g id="bbox:2_46.3_2.1_46.4" ><polygon points="291.3,300.1 295.2,300.1 295.2,305.7 291.3,305.7 291.3,300.1 " /></g><g id="bbox:2.1_46.3_2.2_46.4" ><polygon points="295.2,300.1 299.0,300.1 299.0,305.7 295.2,305.7 295.2,300.1 " /></g><g id="bbox:2.2_46.3_2.3_46.4" ><polygon points="299.0,300.1 302.8,300.1 302.8,305.7 299.0,305.7 299.0,300.1 " /></g><g id="bbox:2.3_46.3_2.4_46.4" ><polygon points="302.8,300.1 306.7,300.1 306.7,305.7 302.8,305.7 302.8,300.1 " /></g><g id="bbox:2.4_46.3_2.5_46.4" ><polygon points="306.7,300.1 310.5,300.1 310.5,305.7 306.7,305.7 306.7,300.1 " /></g><g id="bbox:2.5_46.3_2.6_46.4" ><polygon points="310.5,300.1 314.4,300.1 314.4,305.7 310.5,305.7 310.5,300.1 " /></g><g id="bbox:2.6_46.3_2.7_46.4" ><polygon points="314.4,300.1 318.2,300.1 318.2,305.7 314.4,305.7 314.4,300.1 " /></g><g id="bbox:2.7_46.3_2.8_46.4" ><polygon points="318.2,300.1 322.1,300.1 322.1,305.7 318.2,305.7 318.2,300.1 " /></g><g id="bbox:2.8_46.3_2.9_46.4" ><polygon points="322.1,300.1 325.9,300.1 325.9,305.7 322.1,305.7 322.1,300.1 " /></g><g id="bbox:2.9_46.3_3_46.4" ><polygon points="325.9,300.1 329.8,300.1 329.8,305.7 325.9,305.7 325.9,300.1 " /></g><g id="bbox:3_46.3_3.1_46.4" ><polygon points="329.8,300.1 333.6,300.1 333.6,305.7 329.8,305.7 329.8,300.1 " /></g><g id="bbox:3.1_46.3_3.2_46.4" ><polygon points="333.6,300.1 337.5,300.1 337.5,305.7 333.6,305.7 333.6,300.1 " /></g><g id="bbox:3.2_46.3_3.3_46.4" ><polygon points="337.5,300.1 341.3,300.1 341.3,305.7 337.5,305.7 337.5,300.1 " /></g><g id="bbox:3.3_46.3_3.4_46.4" ><polygon points="341.3,300.1 345.2,300.1 345.2,305.7 341.3,305.7 341.3,300.1 " /></g><g id="bbox:3.4_46.3_3.5_46.4" ><polygon points="345.2,300.1 349.0,300.1 349.0,305.7 345.2,305.7 345.2,300.1 " /></g><g id="bbox:3.5_46.3_3.6_46.4" ><polygon points="349.0,300.1 352.9,300.1 352.9,305.7 349.0,305.7 349.0,300.1 " /></g><g id="bbox:3.6_46.3_3.7_46.4" ><polygon points="352.9,300.1 356.7,300.1 356.7,305.7 352.9,305.7 352.9,300.1 " /></g><g id="bbox:3.7_46.3_3.8_46.4" ><polygon points="356.7,300.1 360.6,300.1 360.6,305.7 356.7,305.7 356.7,300.1 " /></g><g id="bbox:3.8_46.3_3.9_46.4" ><polygon points="360.6,300.1 364.4,300.1 364.4,305.7 360.6,305.7 360.6,300.1 " /></g><g id="bbox:3.9_46.3_4_46.4" ><polygon points="364.4,300.1 368.3,300.1 368.3,305.7 364.4,305.7 364.4,300.1 " /></g><g id="bbox:4_46.3_4.1_46.4" ><polygon points="368.3,300.1 372.1,300.1 372.1,305.7 368.3,305.7 368.3,300.1 " /></g><g id="bbox:4.1_46.3_4.2_46.4" ><polygon points="372.1,300.1 376.0,300.1 376.0,305.7 372.1,305.7 372.1,300.1 " /></g><g id="bbox:4.2_46.3_4.3_46.4" ><polygon points="376.0,300.1 379.8,300.1 379.8,305.7 376.0,305.7 376.0,300.1 " /></g><g id="bbox:4.3_46.3_4.4_46.4" ><polygon points="379.8,300.1 383.7,300.1 383.7,305.7 379.8,305.7 379.8,300.1 " /></g><g id="bbox:4.4_46.3_4.5_46.4" ><polygon points="383.7,300.1 387.5,300.1 387.5,305.7 383.7,305.7 383.7,300.1 " /></g><g id="bbox:4.5_46.3_4.6_46.4" ><polygon points="387.5,300.1 391.4,300.1 391.4,305.7 387.5,305.7 387.5,300.1 " /></g><g id="bbox:4.6_46.3_4.7_46.4" ><polygon points="391.4,300.1 395.2,300.1 395.2,305.7 391.4,305.7 391.4,300.1 " /></g><g id="bbox:4.7_46.3_4.8_46.4" ><polygon points="395.2,300.1 399.1,300.1 399.1,305.7 395.2,305.7 395.2,300.1 " /></g><g id="bbox:4.8_46.3_4.9_46.4" ><polygon points="399.1,300.1 402.9,300.1 402.9,305.7 399.1,305.7 399.1,300.1 " /></g><g id="bbox:4.9_46.3_5_46.4" ><polygon points="402.9,300.1 406.7,300.1 406.7,305.7 402.9,305.7 402.9,300.1 " /></g><g id="bbox:5_46.3_5.1_46.4" ><polygon points="406.7,300.1 410.6,300.1 410.6,305.7 406.7,305.7 406.7,300.1 " /></g><g id="bbox:5.1_46.3_5.2_46.4" ><polygon points="410.6,300.1 414.4,300.1 414.4,305.7 410.6,305.7 410.6,300.1 " /></g><g id="bbox:5.2_46.3_5.3_46.4" ><polygon points="414.4,300.1 418.3,300.1 418.3,305.7 414.4,305.7 414.4,300.1 " /></g><g id="bbox:5.3_46.3_5.4_46.4" ><polygon points="418.3,300.1 422.1,300.1 422.1,305.7 418.3,305.7 418.3,300.1 " /></g><g id="bbox:5.4_46.3_5.5_46.4" ><polygon points="422.1,300.1 426.0,300.1 426.0,305.7 422.1,305.7 422.1,300.1 " /></g><g id="bbox:5.5_46.3_5.6_46.4" ><polygon points="426.0,300.1 429.8,300.1 429.8,305.7 426.0,305.7 426.0,300.1 " /></g><g id="bbox:5.6_46.3_5.7_46.4" ><polygon points="429.8,300.1 433.7,300.1 433.7,305.7 429.8,305.7 429.8,300.1 " /></g><g id="bbox:5.7_46.3_5.8_46.4" ><polygon points="433.7,300.1 437.5,300.1 437.5,305.7 433.7,305.7 433.7,300.1 " /></g><g id="bbox:5.8_46.3_5.9_46.4" ><polygon points="437.5,300.1 441.4,300.1 441.4,305.7 437.5,305.7 437.5,300.1 " /></g><g id="bbox:5.9_46.3_6_46.4" ><polygon points="441.4,300.1 445.2,300.1 445.2,305.7 441.4,305.7 441.4,300.1 " /></g><g id="bbox:6_46.3_6.1_46.4" ><polygon points="445.2,300.1 449.1,300.1 449.1,305.7 445.2,305.7 445.2,300.1 " /></g><g id="bbox:6.1_46.3_6.2_46.4" ><polygon points="449.1,300.1 452.9,300.1 452.9,305.7 449.1,305.7 449.1,300.1 " /></g><g id="bbox:6.2_46.3_6.3_46.4" ><polygon points="452.9,300.1 456.8,300.1 456.8,305.7 452.9,305.7 452.9,300.1 " /></g><g id="bbox:6.3_46.3_6.4_46.4" ><polygon points="456.8,300.1 460.6,300.1 460.6,305.7 456.8,305.7 456.8,300.1 " /></g><g id="bbox:6.4_46.3_6.5_46.4" ><polygon points="460.6,300.1 464.5,300.1 464.5,305.7 460.6,305.7 460.6,300.1 " /></g><g id="bbox:6.5_46.3_6.6_46.4" ><polygon points="464.5,300.1 468.3,300.1 468.3,305.7 464.5,305.7 464.5,300.1 " /></g><g id="bbox:6.6_46.3_6.7_46.4" ><polygon points="468.3,300.1 472.2,300.1 472.2,305.7 468.3,305.7 468.3,300.1 " /></g><g id="bbox:6.7_46.3_6.8_46.4" ><polygon points="472.2,300.1 476.0,300.1 476.0,305.7 472.2,305.7 472.2,300.1 " /></g><g id="bbox:6.8_46.3_6.9_46.4" ><polygon points="476.0,300.1 479.9,300.1 479.9,305.7 476.0,305.7 476.0,300.1 " /></g><g id="bbox:-1.6_46.2_-1.5_46.3" ><polygon points="152.8,305.7 156.6,305.7 156.6,311.2 152.8,311.2 152.8,305.7 " /></g><g id="bbox:-1.5_46.2_-1.4_46.3" ><polygon points="156.6,305.7 160.5,305.7 160.5,311.2 156.6,311.2 156.6,305.7 " /></g><g id="bbox:-1.4_46.2_-1.3_46.3" ><polygon points="160.5,305.7 164.3,305.7 164.3,311.2 160.5,311.2 160.5,305.7 " /></g><g id="bbox:-1.3_46.2_-1.2_46.3" ><polygon points="164.3,305.7 168.2,305.7 168.2,311.2 164.3,311.2 164.3,305.7 " /></g><g id="bbox:-1.2_46.2_-1.1_46.3" ><polygon points="168.2,305.7 172.0,305.7 172.0,311.2 168.2,311.2 168.2,305.7 " /></g><g id="bbox:-1.1_46.2_-1_46.3" ><polygon points="172.0,305.7 175.9,305.7 175.9,311.2 172.0,311.2 172.0,305.7 " /></g><g id="bbox:-1_46.2_-0.9_46.3" ><polygon points="175.9,305.7 179.7,305.7 179.7,311.2 175.9,311.2 175.9,305.7 " /></g><g id="bbox:-0.9_46.2_-0.8_46.3" ><polygon points="179.7,305.7 183.6,305.7 183.6,311.2 179.7,311.2 179.7,305.7 " /></g><g id="bbox:-0.8_46.2_-0.7_46.3" ><polygon points="183.6,305.7 187.4,305.7 187.4,311.2 183.6,311.2 183.6,305.7 " /></g><g id="bbox:-0.7_46.2_-0.6_46.3" ><polygon points="187.4,305.7 191.3,305.7 191.3,311.2 187.4,311.2 187.4,305.7 " /></g><g id="bbox:-0.6_46.2_-0.5_46.3" ><polygon points="191.3,305.7 195.1,305.7 195.1,311.2 191.3,311.2 191.3,305.7 " /></g><g id="bbox:-0.5_46.2_-0.4_46.3" ><polygon points="195.1,305.7 198.9,305.7 198.9,311.2 195.1,311.2 195.1,305.7 " /></g><g id="bbox:-0.4_46.2_-0.3_46.3" ><polygon points="198.9,305.7 202.8,305.7 202.8,311.2 198.9,311.2 198.9,305.7 " /></g><g id="bbox:-0.3_46.2_-0.2_46.3" ><polygon points="202.8,305.7 206.6,305.7 206.6,311.2 202.8,311.2 202.8,305.7 " /></g><g id="bbox:-0.2_46.2_-0.1_46.3" ><polygon points="206.6,305.7 210.5,305.7 210.5,311.2 206.6,311.2 206.6,305.7 " /></g><g id="bbox:-0.1_46.2_0_46.3" ><polygon points="210.5,305.7 214.3,305.7 214.3,311.2 210.5,311.2 210.5,305.7 " /></g><g id="bbox:0_46.2_0.1_46.3" ><polygon points="214.3,305.7 218.2,305.7 218.2,311.2 214.3,311.2 214.3,305.7 " /></g><g id="bbox:0.1_46.2_0.2_46.3" ><polygon points="218.2,305.7 222.0,305.7 222.0,311.2 218.2,311.2 218.2,305.7 " /></g><g id="bbox:0.2_46.2_0.3_46.3" ><polygon points="222.0,305.7 225.9,305.7 225.9,311.2 222.0,311.2 222.0,305.7 " /></g><g id="bbox:0.3_46.2_0.4_46.3" ><polygon points="225.9,305.7 229.7,305.7 229.7,311.2 225.9,311.2 225.9,305.7 " /></g><g id="bbox:0.4_46.2_0.5_46.3" ><polygon points="229.7,305.7 233.6,305.7 233.6,311.2 229.7,311.2 229.7,305.7 " /></g><g id="bbox:0.5_46.2_0.6_46.3" ><polygon points="233.6,305.7 237.4,305.7 237.4,311.2 233.6,311.2 233.6,305.7 " /></g><g id="bbox:0.6_46.2_0.7_46.3" ><polygon points="237.4,305.7 241.3,305.7 241.3,311.2 237.4,311.2 237.4,305.7 " /></g><g id="bbox:0.7_46.2_0.8_46.3" ><polygon points="241.3,305.7 245.1,305.7 245.1,311.2 241.3,311.2 241.3,305.7 " /></g><g id="bbox:0.8_46.2_0.9_46.3" ><polygon points="245.1,305.7 249.0,305.7 249.0,311.2 245.1,311.2 245.1,305.7 " /></g><g id="bbox:0.9_46.2_1_46.3" ><polygon points="249.0,305.7 252.8,305.7 252.8,311.2 249.0,311.2 249.0,305.7 " /></g><g id="bbox:1_46.2_1.1_46.3" ><polygon points="252.8,305.7 256.7,305.7 256.7,311.2 252.8,311.2 252.8,305.7 " /></g><g id="bbox:1.1_46.2_1.2_46.3" ><polygon points="256.7,305.7 260.5,305.7 260.5,311.2 256.7,311.2 256.7,305.7 " /></g><g id="bbox:1.2_46.2_1.3_46.3" ><polygon points="260.5,305.7 264.4,305.7 264.4,311.2 260.5,311.2 260.5,305.7 " /></g><g id="bbox:1.3_46.2_1.4_46.3" ><polygon points="264.4,305.7 268.2,305.7 268.2,311.2 264.4,311.2 264.4,305.7 " /></g><g id="bbox:1.4_46.2_1.5_46.3" ><polygon points="268.2,305.7 272.1,305.7 272.1,311.2 268.2,311.2 268.2,305.7 " /></g><g id="bbox:1.5_46.2_1.6_46.3" ><polygon points="272.1,305.7 275.9,305.7 275.9,311.2 272.1,311.2 272.1,305.7 " /></g><g id="bbox:1.6_46.2_1.7_46.3" ><polygon points="275.9,305.7 279.8,305.7 279.8,311.2 275.9,311.2 275.9,305.7 " /></g><g id="bbox:1.7_46.2_1.8_46.3" ><polygon points="279.8,305.7 283.6,305.7 283.6,311.2 279.8,311.2 279.8,305.7 " /></g><g id="bbox:1.8_46.2_1.9_46.3" ><polygon points="283.6,305.7 287.5,305.7 287.5,311.2 283.6,311.2 283.6,305.7 " /></g><g id="bbox:1.9_46.2_2_46.3" ><polygon points="287.5,305.7 291.3,305.7 291.3,311.2 287.5,311.2 287.5,305.7 " /></g><g id="bbox:2_46.2_2.1_46.3" ><polygon points="291.3,305.7 295.2,305.7 295.2,311.2 291.3,311.2 291.3,305.7 " /></g><g id="bbox:2.1_46.2_2.2_46.3" ><polygon points="295.2,305.7 299.0,305.7 299.0,311.2 295.2,311.2 295.2,305.7 " /></g><g id="bbox:2.2_46.2_2.3_46.3" ><polygon points="299.0,305.7 302.8,305.7 302.8,311.2 299.0,311.2 299.0,305.7 " /></g><g id="bbox:2.3_46.2_2.4_46.3" ><polygon points="302.8,305.7 306.7,305.7 306.7,311.2 302.8,311.2 302.8,305.7 " /></g><g id="bbox:2.4_46.2_2.5_46.3" ><polygon points="306.7,305.7 310.5,305.7 310.5,311.2 306.7,311.2 306.7,305.7 " /></g><g id="bbox:2.5_46.2_2.6_46.3" ><polygon points="310.5,305.7 314.4,305.7 314.4,311.2 310.5,311.2 310.5,305.7 " /></g><g id="bbox:2.6_46.2_2.7_46.3" ><polygon points="314.4,305.7 318.2,305.7 318.2,311.2 314.4,311.2 314.4,305.7 " /></g><g id="bbox:2.7_46.2_2.8_46.3" ><polygon points="318.2,305.7 322.1,305.7 322.1,311.2 318.2,311.2 318.2,305.7 " /></g><g id="bbox:2.8_46.2_2.9_46.3" ><polygon points="322.1,305.7 325.9,305.7 325.9,311.2 322.1,311.2 322.1,305.7 " /></g><g id="bbox:2.9_46.2_3_46.3" ><polygon points="325.9,305.7 329.8,305.7 329.8,311.2 325.9,311.2 325.9,305.7 " /></g><g id="bbox:3_46.2_3.1_46.3" ><polygon points="329.8,305.7 333.6,305.7 333.6,311.2 329.8,311.2 329.8,305.7 " /></g><g id="bbox:3.1_46.2_3.2_46.3" ><polygon points="333.6,305.7 337.5,305.7 337.5,311.2 333.6,311.2 333.6,305.7 " /></g><g id="bbox:3.2_46.2_3.3_46.3" ><polygon points="337.5,305.7 341.3,305.7 341.3,311.2 337.5,311.2 337.5,305.7 " /></g><g id="bbox:3.3_46.2_3.4_46.3" ><polygon points="341.3,305.7 345.2,305.7 345.2,311.2 341.3,311.2 341.3,305.7 " /></g><g id="bbox:3.4_46.2_3.5_46.3" ><polygon points="345.2,305.7 349.0,305.7 349.0,311.2 345.2,311.2 345.2,305.7 " /></g><g id="bbox:3.5_46.2_3.6_46.3" ><polygon points="349.0,305.7 352.9,305.7 352.9,311.2 349.0,311.2 349.0,305.7 " /></g><g id="bbox:3.6_46.2_3.7_46.3" ><polygon points="352.9,305.7 356.7,305.7 356.7,311.2 352.9,311.2 352.9,305.7 " /></g><g id="bbox:3.7_46.2_3.8_46.3" ><polygon points="356.7,305.7 360.6,305.7 360.6,311.2 356.7,311.2 356.7,305.7 " /></g><g id="bbox:3.8_46.2_3.9_46.3" ><polygon points="360.6,305.7 364.4,305.7 364.4,311.2 360.6,311.2 360.6,305.7 " /></g><g id="bbox:3.9_46.2_4_46.3" ><polygon points="364.4,305.7 368.3,305.7 368.3,311.2 364.4,311.2 364.4,305.7 " /></g><g id="bbox:4_46.2_4.1_46.3" ><polygon points="368.3,305.7 372.1,305.7 372.1,311.2 368.3,311.2 368.3,305.7 " /></g><g id="bbox:4.1_46.2_4.2_46.3" ><polygon points="372.1,305.7 376.0,305.7 376.0,311.2 372.1,311.2 372.1,305.7 " /></g><g id="bbox:4.2_46.2_4.3_46.3" ><polygon points="376.0,305.7 379.8,305.7 379.8,311.2 376.0,311.2 376.0,305.7 " /></g><g id="bbox:4.3_46.2_4.4_46.3" ><polygon points="379.8,305.7 383.7,305.7 383.7,311.2 379.8,311.2 379.8,305.7 " /></g><g id="bbox:4.4_46.2_4.5_46.3" ><polygon points="383.7,305.7 387.5,305.7 387.5,311.2 383.7,311.2 383.7,305.7 " /></g><g id="bbox:4.5_46.2_4.6_46.3" ><polygon points="387.5,305.7 391.4,305.7 391.4,311.2 387.5,311.2 387.5,305.7 " /></g><g id="bbox:4.6_46.2_4.7_46.3" ><polygon points="391.4,305.7 395.2,305.7 395.2,311.2 391.4,311.2 391.4,305.7 " /></g><g id="bbox:4.7_46.2_4.8_46.3" ><polygon points="395.2,305.7 399.1,305.7 399.1,311.2 395.2,311.2 395.2,305.7 " /></g><g id="bbox:4.8_46.2_4.9_46.3" ><polygon points="399.1,305.7 402.9,305.7 402.9,311.2 399.1,311.2 399.1,305.7 " /></g><g id="bbox:4.9_46.2_5_46.3" ><polygon points="402.9,305.7 406.7,305.7 406.7,311.2 402.9,311.2 402.9,305.7 " /></g><g id="bbox:5_46.2_5.1_46.3" ><polygon points="406.7,305.7 410.6,305.7 410.6,311.2 406.7,311.2 406.7,305.7 " /></g><g id="bbox:5.1_46.2_5.2_46.3" ><polygon points="410.6,305.7 414.4,305.7 414.4,311.2 410.6,311.2 410.6,305.7 " /></g><g id="bbox:5.2_46.2_5.3_46.3" ><polygon points="414.4,305.7 418.3,305.7 418.3,311.2 414.4,311.2 414.4,305.7 " /></g><g id="bbox:5.3_46.2_5.4_46.3" ><polygon points="418.3,305.7 422.1,305.7 422.1,311.2 418.3,311.2 418.3,305.7 " /></g><g id="bbox:5.4_46.2_5.5_46.3" ><polygon points="422.1,305.7 426.0,305.7 426.0,311.2 422.1,311.2 422.1,305.7 " /></g><g id="bbox:5.5_46.2_5.6_46.3" ><polygon points="426.0,305.7 429.8,305.7 429.8,311.2 426.0,311.2 426.0,305.7 " /></g><g id="bbox:5.6_46.2_5.7_46.3" ><polygon points="429.8,305.7 433.7,305.7 433.7,311.2 429.8,311.2 429.8,305.7 " /></g><g id="bbox:5.7_46.2_5.8_46.3" ><polygon points="433.7,305.7 437.5,305.7 437.5,311.2 433.7,311.2 433.7,305.7 " /></g><g id="bbox:5.8_46.2_5.9_46.3" ><polygon points="437.5,305.7 441.4,305.7 441.4,311.2 437.5,311.2 437.5,305.7 " /></g><g id="bbox:5.9_46.2_6_46.3" ><polygon points="441.4,305.7 445.2,305.7 445.2,311.2 441.4,311.2 441.4,305.7 " /></g><g id="bbox:6_46.2_6.1_46.3" ><polygon points="445.2,305.7 449.1,305.7 449.1,311.2 445.2,311.2 445.2,305.7 " /></g><g id="bbox:6.1_46.2_6.2_46.3" ><polygon points="449.1,305.7 452.9,305.7 452.9,311.2 449.1,311.2 449.1,305.7 " /></g><g id="bbox:6.2_46.2_6.3_46.3" ><polygon points="452.9,305.7 456.8,305.7 456.8,311.2 452.9,311.2 452.9,305.7 " /></g><g id="bbox:6.3_46.2_6.4_46.3" ><polygon points="456.8,305.7 460.6,305.7 460.6,311.2 456.8,311.2 456.8,305.7 " /></g><g id="bbox:6.4_46.2_6.5_46.3" ><polygon points="460.6,305.7 464.5,305.7 464.5,311.2 460.6,311.2 460.6,305.7 " /></g><g id="bbox:6.5_46.2_6.6_46.3" ><polygon points="464.5,305.7 468.3,305.7 468.3,311.2 464.5,311.2 464.5,305.7 " /></g><g id="bbox:6.6_46.2_6.7_46.3" ><polygon points="468.3,305.7 472.2,305.7 472.2,311.2 468.3,311.2 468.3,305.7 " /></g><g id="bbox:6.7_46.2_6.8_46.3" ><polygon points="472.2,305.7 476.0,305.7 476.0,311.2 472.2,311.2 472.2,305.7 " /></g><g id="bbox:6.8_46.2_6.9_46.3" ><polygon points="476.0,305.7 479.9,305.7 479.9,311.2 476.0,311.2 476.0,305.7 " /></g><g id="bbox:-1.6_46.1_-1.5_46.2" ><polygon points="152.8,311.2 156.6,311.2 156.6,316.8 152.8,316.8 152.8,311.2 " /></g><g id="bbox:-1.5_46.1_-1.4_46.2" ><polygon points="156.6,311.2 160.5,311.2 160.5,316.8 156.6,316.8 156.6,311.2 " /></g><g id="bbox:-1.4_46.1_-1.3_46.2" ><polygon points="160.5,311.2 164.3,311.2 164.3,316.8 160.5,316.8 160.5,311.2 " /></g><g id="bbox:-1.3_46.1_-1.2_46.2" ><polygon points="164.3,311.2 168.2,311.2 168.2,316.8 164.3,316.8 164.3,311.2 " /></g><g id="bbox:-1.2_46.1_-1.1_46.2" ><polygon points="168.2,311.2 172.0,311.2 172.0,316.8 168.2,316.8 168.2,311.2 " /></g><g id="bbox:-1.1_46.1_-1_46.2" ><polygon points="172.0,311.2 175.9,311.2 175.9,316.8 172.0,316.8 172.0,311.2 " /></g><g id="bbox:-1_46.1_-0.9_46.2" ><polygon points="175.9,311.2 179.7,311.2 179.7,316.8 175.9,316.8 175.9,311.2 " /></g><g id="bbox:-0.9_46.1_-0.8_46.2" ><polygon points="179.7,311.2 183.6,311.2 183.6,316.8 179.7,316.8 179.7,311.2 " /></g><g id="bbox:-0.8_46.1_-0.7_46.2" ><polygon points="183.6,311.2 187.4,311.2 187.4,316.8 183.6,316.8 183.6,311.2 " /></g><g id="bbox:-0.7_46.1_-0.6_46.2" ><polygon points="187.4,311.2 191.3,311.2 191.3,316.8 187.4,316.8 187.4,311.2 " /></g><g id="bbox:-0.6_46.1_-0.5_46.2" ><polygon points="191.3,311.2 195.1,311.2 195.1,316.8 191.3,316.8 191.3,311.2 " /></g><g id="bbox:-0.5_46.1_-0.4_46.2" ><polygon points="195.1,311.2 198.9,311.2 198.9,316.8 195.1,316.8 195.1,311.2 " /></g><g id="bbox:-0.4_46.1_-0.3_46.2" ><polygon points="198.9,311.2 202.8,311.2 202.8,316.8 198.9,316.8 198.9,311.2 " /></g><g id="bbox:-0.3_46.1_-0.2_46.2" ><polygon points="202.8,311.2 206.6,311.2 206.6,316.8 202.8,316.8 202.8,311.2 " /></g><g id="bbox:-0.2_46.1_-0.1_46.2" ><polygon points="206.6,311.2 210.5,311.2 210.5,316.8 206.6,316.8 206.6,311.2 " /></g><g id="bbox:-0.1_46.1_0_46.2" ><polygon points="210.5,311.2 214.3,311.2 214.3,316.8 210.5,316.8 210.5,311.2 " /></g><g id="bbox:0_46.1_0.1_46.2" ><polygon points="214.3,311.2 218.2,311.2 218.2,316.8 214.3,316.8 214.3,311.2 " /></g><g id="bbox:0.1_46.1_0.2_46.2" ><polygon points="218.2,311.2 222.0,311.2 222.0,316.8 218.2,316.8 218.2,311.2 " /></g><g id="bbox:0.2_46.1_0.3_46.2" ><polygon points="222.0,311.2 225.9,311.2 225.9,316.8 222.0,316.8 222.0,311.2 " /></g><g id="bbox:0.3_46.1_0.4_46.2" ><polygon points="225.9,311.2 229.7,311.2 229.7,316.8 225.9,316.8 225.9,311.2 " /></g><g id="bbox:0.4_46.1_0.5_46.2" ><polygon points="229.7,311.2 233.6,311.2 233.6,316.8 229.7,316.8 229.7,311.2 " /></g><g id="bbox:0.5_46.1_0.6_46.2" ><polygon points="233.6,311.2 237.4,311.2 237.4,316.8 233.6,316.8 233.6,311.2 " /></g><g id="bbox:0.6_46.1_0.7_46.2" ><polygon points="237.4,311.2 241.3,311.2 241.3,316.8 237.4,316.8 237.4,311.2 " /></g><g id="bbox:0.7_46.1_0.8_46.2" ><polygon points="241.3,311.2 245.1,311.2 245.1,316.8 241.3,316.8 241.3,311.2 " /></g><g id="bbox:0.8_46.1_0.9_46.2" ><polygon points="245.1,311.2 249.0,311.2 249.0,316.8 245.1,316.8 245.1,311.2 " /></g><g id="bbox:0.9_46.1_1_46.2" ><polygon points="249.0,311.2 252.8,311.2 252.8,316.8 249.0,316.8 249.0,311.2 " /></g><g id="bbox:1_46.1_1.1_46.2" ><polygon points="252.8,311.2 256.7,311.2 256.7,316.8 252.8,316.8 252.8,311.2 " /></g><g id="bbox:1.1_46.1_1.2_46.2" ><polygon points="256.7,311.2 260.5,311.2 260.5,316.8 256.7,316.8 256.7,311.2 " /></g><g id="bbox:1.2_46.1_1.3_46.2" ><polygon points="260.5,311.2 264.4,311.2 264.4,316.8 260.5,316.8 260.5,311.2 " /></g><g id="bbox:1.3_46.1_1.4_46.2" ><polygon points="264.4,311.2 268.2,311.2 268.2,316.8 264.4,316.8 264.4,311.2 " /></g><g id="bbox:1.4_46.1_1.5_46.2" ><polygon points="268.2,311.2 272.1,311.2 272.1,316.8 268.2,316.8 268.2,311.2 " /></g><g id="bbox:1.5_46.1_1.6_46.2" ><polygon points="272.1,311.2 275.9,311.2 275.9,316.8 272.1,316.8 272.1,311.2 " /></g><g id="bbox:1.6_46.1_1.7_46.2" ><polygon points="275.9,311.2 279.8,311.2 279.8,316.8 275.9,316.8 275.9,311.2 " /></g><g id="bbox:1.7_46.1_1.8_46.2" ><polygon points="279.8,311.2 283.6,311.2 283.6,316.8 279.8,316.8 279.8,311.2 " /></g><g id="bbox:1.8_46.1_1.9_46.2" ><polygon points="283.6,311.2 287.5,311.2 287.5,316.8 283.6,316.8 283.6,311.2 " /></g><g id="bbox:1.9_46.1_2_46.2" ><polygon points="287.5,311.2 291.3,311.2 291.3,316.8 287.5,316.8 287.5,311.2 " /></g><g id="bbox:2_46.1_2.1_46.2" ><polygon points="291.3,311.2 295.2,311.2 295.2,316.8 291.3,316.8 291.3,311.2 " /></g><g id="bbox:2.1_46.1_2.2_46.2" ><polygon points="295.2,311.2 299.0,311.2 299.0,316.8 295.2,316.8 295.2,311.2 " /></g><g id="bbox:2.2_46.1_2.3_46.2" ><polygon points="299.0,311.2 302.8,311.2 302.8,316.8 299.0,316.8 299.0,311.2 " /></g><g id="bbox:2.3_46.1_2.4_46.2" ><polygon points="302.8,311.2 306.7,311.2 306.7,316.8 302.8,316.8 302.8,311.2 " /></g><g id="bbox:2.4_46.1_2.5_46.2" ><polygon points="306.7,311.2 310.5,311.2 310.5,316.8 306.7,316.8 306.7,311.2 " /></g><g id="bbox:2.5_46.1_2.6_46.2" ><polygon points="310.5,311.2 314.4,311.2 314.4,316.8 310.5,316.8 310.5,311.2 " /></g><g id="bbox:2.6_46.1_2.7_46.2" ><polygon points="314.4,311.2 318.2,311.2 318.2,316.8 314.4,316.8 314.4,311.2 " /></g><g id="bbox:2.7_46.1_2.8_46.2" ><polygon points="318.2,311.2 322.1,311.2 322.1,316.8 318.2,316.8 318.2,311.2 " /></g><g id="bbox:2.8_46.1_2.9_46.2" ><polygon points="322.1,311.2 325.9,311.2 325.9,316.8 322.1,316.8 322.1,311.2 " /></g><g id="bbox:2.9_46.1_3_46.2" ><polygon points="325.9,311.2 329.8,311.2 329.8,316.8 325.9,316.8 325.9,311.2 " /></g><g id="bbox:3_46.1_3.1_46.2" ><polygon points="329.8,311.2 333.6,311.2 333.6,316.8 329.8,316.8 329.8,311.2 " /></g><g id="bbox:3.1_46.1_3.2_46.2" ><polygon points="333.6,311.2 337.5,311.2 337.5,316.8 333.6,316.8 333.6,311.2 " /></g><g id="bbox:3.2_46.1_3.3_46.2" ><polygon points="337.5,311.2 341.3,311.2 341.3,316.8 337.5,316.8 337.5,311.2 " /></g><g id="bbox:3.3_46.1_3.4_46.2" ><polygon points="341.3,311.2 345.2,311.2 345.2,316.8 341.3,316.8 341.3,311.2 " /></g><g id="bbox:3.4_46.1_3.5_46.2" ><polygon points="345.2,311.2 349.0,311.2 349.0,316.8 345.2,316.8 345.2,311.2 " /></g><g id="bbox:3.5_46.1_3.6_46.2" ><polygon points="349.0,311.2 352.9,311.2 352.9,316.8 349.0,316.8 349.0,311.2 " /></g><g id="bbox:3.6_46.1_3.7_46.2" ><polygon points="352.9,311.2 356.7,311.2 356.7,316.8 352.9,316.8 352.9,311.2 " /></g><g id="bbox:3.7_46.1_3.8_46.2" ><polygon points="356.7,311.2 360.6,311.2 360.6,316.8 356.7,316.8 356.7,311.2 " /></g><g id="bbox:3.8_46.1_3.9_46.2" ><polygon points="360.6,311.2 364.4,311.2 364.4,316.8 360.6,316.8 360.6,311.2 " /></g><g id="bbox:3.9_46.1_4_46.2" ><polygon points="364.4,311.2 368.3,311.2 368.3,316.8 364.4,316.8 364.4,311.2 " /></g><g id="bbox:4_46.1_4.1_46.2" ><polygon points="368.3,311.2 372.1,311.2 372.1,316.8 368.3,316.8 368.3,311.2 " /></g><g id="bbox:4.1_46.1_4.2_46.2" ><polygon points="372.1,311.2 376.0,311.2 376.0,316.8 372.1,316.8 372.1,311.2 " /></g><g id="bbox:4.2_46.1_4.3_46.2" ><polygon points="376.0,311.2 379.8,311.2 379.8,316.8 376.0,316.8 376.0,311.2 " /></g><g id="bbox:4.3_46.1_4.4_46.2" ><polygon points="379.8,311.2 383.7,311.2 383.7,316.8 379.8,316.8 379.8,311.2 " /></g><g id="bbox:4.4_46.1_4.5_46.2" ><polygon points="383.7,311.2 387.5,311.2 387.5,316.8 383.7,316.8 383.7,311.2 " /></g><g id="bbox:4.5_46.1_4.6_46.2" ><polygon points="387.5,311.2 391.4,311.2 391.4,316.8 387.5,316.8 387.5,311.2 " /></g><g id="bbox:4.6_46.1_4.7_46.2" ><polygon points="391.4,311.2 395.2,311.2 395.2,316.8 391.4,316.8 391.4,311.2 " /></g><g id="bbox:4.7_46.1_4.8_46.2" ><polygon points="395.2,311.2 399.1,311.2 399.1,316.8 395.2,316.8 395.2,311.2 " /></g><g id="bbox:4.8_46.1_4.9_46.2" ><polygon points="399.1,311.2 402.9,311.2 402.9,316.8 399.1,316.8 399.1,311.2 " /></g><g id="bbox:4.9_46.1_5_46.2" ><polygon points="402.9,311.2 406.7,311.2 406.7,316.8 402.9,316.8 402.9,311.2 " /></g><g id="bbox:5_46.1_5.1_46.2" ><polygon points="406.7,311.2 410.6,311.2 410.6,316.8 406.7,316.8 406.7,311.2 " /></g><g id="bbox:5.1_46.1_5.2_46.2" ><polygon points="410.6,311.2 414.4,311.2 414.4,316.8 410.6,316.8 410.6,311.2 " /></g><g id="bbox:5.2_46.1_5.3_46.2" ><polygon points="414.4,311.2 418.3,311.2 418.3,316.8 414.4,316.8 414.4,311.2 " /></g><g id="bbox:5.3_46.1_5.4_46.2" ><polygon points="418.3,311.2 422.1,311.2 422.1,316.8 418.3,316.8 418.3,311.2 " /></g><g id="bbox:5.4_46.1_5.5_46.2" ><polygon points="422.1,311.2 426.0,311.2 426.0,316.8 422.1,316.8 422.1,311.2 " /></g><g id="bbox:5.5_46.1_5.6_46.2" ><polygon points="426.0,311.2 429.8,311.2 429.8,316.8 426.0,316.8 426.0,311.2 " /></g><g id="bbox:5.6_46.1_5.7_46.2" ><polygon points="429.8,311.2 433.7,311.2 433.7,316.8 429.8,316.8 429.8,311.2 " /></g><g id="bbox:5.7_46.1_5.8_46.2" ><polygon points="433.7,311.2 437.5,311.2 437.5,316.8 433.7,316.8 433.7,311.2 " /></g><g id="bbox:5.8_46.1_5.9_46.2" ><polygon points="437.5,311.2 441.4,311.2 441.4,316.8 437.5,316.8 437.5,311.2 " /></g><g id="bbox:5.9_46.1_6_46.2" ><polygon points="441.4,311.2 445.2,311.2 445.2,316.8 441.4,316.8 441.4,311.2 " /></g><g id="bbox:6_46.1_6.1_46.2" ><polygon points="445.2,311.2 449.1,311.2 449.1,316.8 445.2,316.8 445.2,311.2 " /></g><g id="bbox:6.1_46.1_6.2_46.2" ><polygon points="449.1,311.2 452.9,311.2 452.9,316.8 449.1,316.8 449.1,311.2 " /></g><g id="bbox:6.2_46.1_6.3_46.2" ><polygon points="452.9,311.2 456.8,311.2 456.8,316.8 452.9,316.8 452.9,311.2 " /></g><g id="bbox:6.3_46.1_6.4_46.2" ><polygon points="456.8,311.2 460.6,311.2 460.6,316.8 456.8,316.8 456.8,311.2 " /></g><g id="bbox:6.4_46.1_6.5_46.2" ><polygon points="460.6,311.2 464.5,311.2 464.5,316.8 460.6,316.8 460.6,311.2 " /></g><g id="bbox:6.5_46.1_6.6_46.2" ><polygon points="464.5,311.2 468.3,311.2 468.3,316.8 464.5,316.8 464.5,311.2 " /></g><g id="bbox:6.6_46.1_6.7_46.2" ><polygon points="468.3,311.2 472.2,311.2 472.2,316.8 468.3,316.8 468.3,311.2 " /></g><g id="bbox:6.7_46.1_6.8_46.2" ><polygon points="472.2,311.2 476.0,311.2 476.0,316.8 472.2,316.8 472.2,311.2 " /></g><g id="bbox:6.8_46.1_6.9_46.2" ><polygon points="476.0,311.2 479.9,311.2 479.9,316.8 476.0,316.8 476.0,311.2 " /></g><g id="bbox:6.9_46.1_7_46.2" ><polygon points="479.9,311.2 483.7,311.2 483.7,316.8 479.9,316.8 479.9,311.2 " /></g><g id="bbox:-1.5_46_-1.4_46.1" ><polygon points="156.6,316.8 160.5,316.8 160.5,322.3 156.6,322.3 156.6,316.8 " /></g><g id="bbox:-1.4_46_-1.3_46.1" ><polygon points="160.5,316.8 164.3,316.8 164.3,322.3 160.5,322.3 160.5,316.8 " /></g><g id="bbox:-1.2_46_-1.1_46.1" ><polygon points="168.2,316.8 172.0,316.8 172.0,322.3 168.2,322.3 168.2,316.8 " /></g><g id="bbox:-1.1_46_-1_46.1" ><polygon points="172.0,316.8 175.9,316.8 175.9,322.3 172.0,322.3 172.0,316.8 " /></g><g id="bbox:-1_46_-0.9_46.1" ><polygon points="175.9,316.8 179.7,316.8 179.7,322.3 175.9,322.3 175.9,316.8 " /></g><g id="bbox:-0.9_46_-0.8_46.1" ><polygon points="179.7,316.8 183.6,316.8 183.6,322.3 179.7,322.3 179.7,316.8 " /></g><g id="bbox:-0.8_46_-0.7_46.1" ><polygon points="183.6,316.8 187.4,316.8 187.4,322.3 183.6,322.3 183.6,316.8 " /></g><g id="bbox:-0.7_46_-0.6_46.1" ><polygon points="187.4,316.8 191.3,316.8 191.3,322.3 187.4,322.3 187.4,316.8 " /></g><g id="bbox:-0.6_46_-0.5_46.1" ><polygon points="191.3,316.8 195.1,316.8 195.1,322.3 191.3,322.3 191.3,316.8 " /></g><g id="bbox:-0.5_46_-0.4_46.1" ><polygon points="195.1,316.8 198.9,316.8 198.9,322.3 195.1,322.3 195.1,316.8 " /></g><g id="bbox:-0.4_46_-0.3_46.1" ><polygon points="198.9,316.8 202.8,316.8 202.8,322.3 198.9,322.3 198.9,316.8 " /></g><g id="bbox:-0.3_46_-0.2_46.1" ><polygon points="202.8,316.8 206.6,316.8 206.6,322.3 202.8,322.3 202.8,316.8 " /></g><g id="bbox:-0.2_46_-0.1_46.1" ><polygon points="206.6,316.8 210.5,316.8 210.5,322.3 206.6,322.3 206.6,316.8 " /></g><g id="bbox:-0.1_46_0_46.1" ><polygon points="210.5,316.8 214.3,316.8 214.3,322.3 210.5,322.3 210.5,316.8 " /></g><g id="bbox:0_46_0.1_46.1" ><polygon points="214.3,316.8 218.2,316.8 218.2,322.3 214.3,322.3 214.3,316.8 " /></g><g id="bbox:0.1_46_0.2_46.1" ><polygon points="218.2,316.8 222.0,316.8 222.0,322.3 218.2,322.3 218.2,316.8 " /></g><g id="bbox:0.2_46_0.3_46.1" ><polygon points="222.0,316.8 225.9,316.8 225.9,322.3 222.0,322.3 222.0,316.8 " /></g><g id="bbox:0.3_46_0.4_46.1" ><polygon points="225.9,316.8 229.7,316.8 229.7,322.3 225.9,322.3 225.9,316.8 " /></g><g id="bbox:0.4_46_0.5_46.1" ><polygon points="229.7,316.8 233.6,316.8 233.6,322.3 229.7,322.3 229.7,316.8 " /></g><g id="bbox:0.5_46_0.6_46.1" ><polygon points="233.6,316.8 237.4,316.8 237.4,322.3 233.6,322.3 233.6,316.8 " /></g><g id="bbox:0.6_46_0.7_46.1" ><polygon points="237.4,316.8 241.3,316.8 241.3,322.3 237.4,322.3 237.4,316.8 " /></g><g id="bbox:0.7_46_0.8_46.1" ><polygon points="241.3,316.8 245.1,316.8 245.1,322.3 241.3,322.3 241.3,316.8 " /></g><g id="bbox:0.8_46_0.9_46.1" ><polygon points="245.1,316.8 249.0,316.8 249.0,322.3 245.1,322.3 245.1,316.8 " /></g><g id="bbox:0.9_46_1_46.1" ><polygon points="249.0,316.8 252.8,316.8 252.8,322.3 249.0,322.3 249.0,316.8 " /></g><g id="bbox:1_46_1.1_46.1" ><polygon points="252.8,316.8 256.7,316.8 256.7,322.3 252.8,322.3 252.8,316.8 " /></g><g id="bbox:1.1_46_1.2_46.1" ><polygon points="256.7,316.8 260.5,316.8 260.5,322.3 256.7,322.3 256.7,316.8 " /></g><g id="bbox:1.2_46_1.3_46.1" ><polygon points="260.5,316.8 264.4,316.8 264.4,322.3 260.5,322.3 260.5,316.8 " /></g><g id="bbox:1.3_46_1.4_46.1" ><polygon points="264.4,316.8 268.2,316.8 268.2,322.3 264.4,322.3 264.4,316.8 " /></g><g id="bbox:1.4_46_1.5_46.1" ><polygon points="268.2,316.8 272.1,316.8 272.1,322.3 268.2,322.3 268.2,316.8 " /></g><g id="bbox:1.5_46_1.6_46.1" ><polygon points="272.1,316.8 275.9,316.8 275.9,322.3 272.1,322.3 272.1,316.8 " /></g><g id="bbox:1.6_46_1.7_46.1" ><polygon points="275.9,316.8 279.8,316.8 279.8,322.3 275.9,322.3 275.9,316.8 " /></g><g id="bbox:1.7_46_1.8_46.1" ><polygon points="279.8,316.8 283.6,316.8 283.6,322.3 279.8,322.3 279.8,316.8 " /></g><g id="bbox:1.8_46_1.9_46.1" ><polygon points="283.6,316.8 287.5,316.8 287.5,322.3 283.6,322.3 283.6,316.8 " /></g><g id="bbox:1.9_46_2_46.1" ><polygon points="287.5,316.8 291.3,316.8 291.3,322.3 287.5,322.3 287.5,316.8 " /></g><g id="bbox:2_46_2.1_46.1" ><polygon points="291.3,316.8 295.2,316.8 295.2,322.3 291.3,322.3 291.3,316.8 " /></g><g id="bbox:2.1_46_2.2_46.1" ><polygon points="295.2,316.8 299.0,316.8 299.0,322.3 295.2,322.3 295.2,316.8 " /></g><g id="bbox:2.2_46_2.3_46.1" ><polygon points="299.0,316.8 302.8,316.8 302.8,322.3 299.0,322.3 299.0,316.8 " /></g><g id="bbox:2.3_46_2.4_46.1" ><polygon points="302.8,316.8 306.7,316.8 306.7,322.3 302.8,322.3 302.8,316.8 " /></g><g id="bbox:2.4_46_2.5_46.1" ><polygon points="306.7,316.8 310.5,316.8 310.5,322.3 306.7,322.3 306.7,316.8 " /></g><g id="bbox:2.5_46_2.6_46.1" ><polygon points="310.5,316.8 314.4,316.8 314.4,322.3 310.5,322.3 310.5,316.8 " /></g><g id="bbox:2.6_46_2.7_46.1" ><polygon points="314.4,316.8 318.2,316.8 318.2,322.3 314.4,322.3 314.4,316.8 " /></g><g id="bbox:2.7_46_2.8_46.1" ><polygon points="318.2,316.8 322.1,316.8 322.1,322.3 318.2,322.3 318.2,316.8 " /></g><g id="bbox:2.8_46_2.9_46.1" ><polygon points="322.1,316.8 325.9,316.8 325.9,322.3 322.1,322.3 322.1,316.8 " /></g><g id="bbox:2.9_46_3_46.1" ><polygon points="325.9,316.8 329.8,316.8 329.8,322.3 325.9,322.3 325.9,316.8 " /></g><g id="bbox:3_46_3.1_46.1" ><polygon points="329.8,316.8 333.6,316.8 333.6,322.3 329.8,322.3 329.8,316.8 " /></g><g id="bbox:3.1_46_3.2_46.1" ><polygon points="333.6,316.8 337.5,316.8 337.5,322.3 333.6,322.3 333.6,316.8 " /></g><g id="bbox:3.2_46_3.3_46.1" ><polygon points="337.5,316.8 341.3,316.8 341.3,322.3 337.5,322.3 337.5,316.8 " /></g><g id="bbox:3.3_46_3.4_46.1" ><polygon points="341.3,316.8 345.2,316.8 345.2,322.3 341.3,322.3 341.3,316.8 " /></g><g id="bbox:3.4_46_3.5_46.1" ><polygon points="345.2,316.8 349.0,316.8 349.0,322.3 345.2,322.3 345.2,316.8 " /></g><g id="bbox:3.5_46_3.6_46.1" ><polygon points="349.0,316.8 352.9,316.8 352.9,322.3 349.0,322.3 349.0,316.8 " /></g><g id="bbox:3.6_46_3.7_46.1" ><polygon points="352.9,316.8 356.7,316.8 356.7,322.3 352.9,322.3 352.9,316.8 " /></g><g id="bbox:3.7_46_3.8_46.1" ><polygon points="356.7,316.8 360.6,316.8 360.6,322.3 356.7,322.3 356.7,316.8 " /></g><g id="bbox:3.8_46_3.9_46.1" ><polygon points="360.6,316.8 364.4,316.8 364.4,322.3 360.6,322.3 360.6,316.8 " /></g><g id="bbox:3.9_46_4_46.1" ><polygon points="364.4,316.8 368.3,316.8 368.3,322.3 364.4,322.3 364.4,316.8 " /></g><g id="bbox:4_46_4.1_46.1" ><polygon points="368.3,316.8 372.1,316.8 372.1,322.3 368.3,322.3 368.3,316.8 " /></g><g id="bbox:4.1_46_4.2_46.1" ><polygon points="372.1,316.8 376.0,316.8 376.0,322.3 372.1,322.3 372.1,316.8 " /></g><g id="bbox:4.2_46_4.3_46.1" ><polygon points="376.0,316.8 379.8,316.8 379.8,322.3 376.0,322.3 376.0,316.8 " /></g><g id="bbox:4.3_46_4.4_46.1" ><polygon points="379.8,316.8 383.7,316.8 383.7,322.3 379.8,322.3 379.8,316.8 " /></g><g id="bbox:4.4_46_4.5_46.1" ><polygon points="383.7,316.8 387.5,316.8 387.5,322.3 383.7,322.3 383.7,316.8 " /></g><g id="bbox:4.5_46_4.6_46.1" ><polygon points="387.5,316.8 391.4,316.8 391.4,322.3 387.5,322.3 387.5,316.8 " /></g><g id="bbox:4.6_46_4.7_46.1" ><polygon points="391.4,316.8 395.2,316.8 395.2,322.3 391.4,322.3 391.4,316.8 " /></g><g id="bbox:4.7_46_4.8_46.1" ><polygon points="395.2,316.8 399.1,316.8 399.1,322.3 395.2,322.3 395.2,316.8 " /></g><g id="bbox:4.8_46_4.9_46.1" ><polygon points="399.1,316.8 402.9,316.8 402.9,322.3 399.1,322.3 399.1,316.8 " /></g><g id="bbox:4.9_46_5_46.1" ><polygon points="402.9,316.8 406.7,316.8 406.7,322.3 402.9,322.3 402.9,316.8 " /></g><g id="bbox:5_46_5.1_46.1" ><polygon points="406.7,316.8 410.6,316.8 410.6,322.3 406.7,322.3 406.7,316.8 " /></g><g id="bbox:5.1_46_5.2_46.1" ><polygon points="410.6,316.8 414.4,316.8 414.4,322.3 410.6,322.3 410.6,316.8 " /></g><g id="bbox:5.2_46_5.3_46.1" ><polygon points="414.4,316.8 418.3,316.8 418.3,322.3 414.4,322.3 414.4,316.8 " /></g><g id="bbox:5.3_46_5.4_46.1" ><polygon points="418.3,316.8 422.1,316.8 422.1,322.3 418.3,322.3 418.3,316.8 " /></g><g id="bbox:5.4_46_5.5_46.1" ><polygon points="422.1,316.8 426.0,316.8 426.0,322.3 422.1,322.3 422.1,316.8 " /></g><g id="bbox:5.5_46_5.6_46.1" ><polygon points="426.0,316.8 429.8,316.8 429.8,322.3 426.0,322.3 426.0,316.8 " /></g><g id="bbox:5.6_46_5.7_46.1" ><polygon points="429.8,316.8 433.7,316.8 433.7,322.3 429.8,322.3 429.8,316.8 " /></g><g id="bbox:5.7_46_5.8_46.1" ><polygon points="433.7,316.8 437.5,316.8 437.5,322.3 433.7,322.3 433.7,316.8 " /></g><g id="bbox:5.8_46_5.9_46.1" ><polygon points="437.5,316.8 441.4,316.8 441.4,322.3 437.5,322.3 437.5,316.8 " /></g><g id="bbox:5.9_46_6_46.1" ><polygon points="441.4,316.8 445.2,316.8 445.2,322.3 441.4,322.3 441.4,316.8 " /></g><g id="bbox:6_46_6.1_46.1" ><polygon points="445.2,316.8 449.1,316.8 449.1,322.3 445.2,322.3 445.2,316.8 " /></g><g id="bbox:6.1_46_6.2_46.1" ><polygon points="449.1,316.8 452.9,316.8 452.9,322.3 449.1,322.3 449.1,316.8 " /></g><g id="bbox:6.2_46_6.3_46.1" ><polygon points="452.9,316.8 456.8,316.8 456.8,322.3 452.9,322.3 452.9,316.8 " /></g><g id="bbox:6.3_46_6.4_46.1" ><polygon points="456.8,316.8 460.6,316.8 460.6,322.3 456.8,322.3 456.8,316.8 " /></g><g id="bbox:6.4_46_6.5_46.1" ><polygon points="460.6,316.8 464.5,316.8 464.5,322.3 460.6,322.3 460.6,316.8 " /></g><g id="bbox:6.5_46_6.6_46.1" ><polygon points="464.5,316.8 468.3,316.8 468.3,322.3 464.5,322.3 464.5,316.8 " /></g><g id="bbox:6.6_46_6.7_46.1" ><polygon points="468.3,316.8 472.2,316.8 472.2,322.3 468.3,322.3 468.3,316.8 " /></g><g id="bbox:6.7_46_6.8_46.1" ><polygon points="472.2,316.8 476.0,316.8 476.0,322.3 472.2,322.3 472.2,316.8 " /></g><g id="bbox:6.8_46_6.9_46.1" ><polygon points="476.0,316.8 479.9,316.8 479.9,322.3 476.0,322.3 476.0,316.8 " /></g><g id="bbox:6.9_46_7_46.1" ><polygon points="479.9,316.8 483.7,316.8 483.7,322.3 479.9,322.3 479.9,316.8 " /></g><g id="bbox:7_46_7.1_46.1" ><polygon points="483.7,316.8 487.6,316.8 487.6,322.3 483.7,322.3 483.7,316.8 " /></g><g id="bbox:-1.4_45.9_-1.3_46" ><polygon points="160.5,322.3 164.3,322.3 164.3,327.9 160.5,327.9 160.5,322.3 " /></g><g id="bbox:-1.3_45.9_-1.2_46" ><polygon points="164.3,322.3 168.2,322.3 168.2,327.9 164.3,327.9 164.3,322.3 " /></g><g id="bbox:-1.2_45.9_-1.1_46" ><polygon points="168.2,322.3 172.0,322.3 172.0,327.9 168.2,327.9 168.2,322.3 " /></g><g id="bbox:-1.1_45.9_-1_46" ><polygon points="172.0,322.3 175.9,322.3 175.9,327.9 172.0,327.9 172.0,322.3 " /></g><g id="bbox:-1_45.9_-0.9_46" ><polygon points="175.9,322.3 179.7,322.3 179.7,327.9 175.9,327.9 175.9,322.3 " /></g><g id="bbox:-0.9_45.9_-0.8_46" ><polygon points="179.7,322.3 183.6,322.3 183.6,327.9 179.7,327.9 179.7,322.3 " /></g><g id="bbox:-0.8_45.9_-0.7_46" ><polygon points="183.6,322.3 187.4,322.3 187.4,327.9 183.6,327.9 183.6,322.3 " /></g><g id="bbox:-0.7_45.9_-0.6_46" ><polygon points="187.4,322.3 191.3,322.3 191.3,327.9 187.4,327.9 187.4,322.3 " /></g><g id="bbox:-0.6_45.9_-0.5_46" ><polygon points="191.3,322.3 195.1,322.3 195.1,327.9 191.3,327.9 191.3,322.3 " /></g><g id="bbox:-0.5_45.9_-0.4_46" ><polygon points="195.1,322.3 198.9,322.3 198.9,327.9 195.1,327.9 195.1,322.3 " /></g><g id="bbox:-0.4_45.9_-0.3_46" ><polygon points="198.9,322.3 202.8,322.3 202.8,327.9 198.9,327.9 198.9,322.3 " /></g><g id="bbox:-0.3_45.9_-0.2_46" ><polygon points="202.8,322.3 206.6,322.3 206.6,327.9 202.8,327.9 202.8,322.3 " /></g><g id="bbox:-0.2_45.9_-0.1_46" ><polygon points="206.6,322.3 210.5,322.3 210.5,327.9 206.6,327.9 206.6,322.3 " /></g><g id="bbox:-0.1_45.9_0_46" ><polygon points="210.5,322.3 214.3,322.3 214.3,327.9 210.5,327.9 210.5,322.3 " /></g><g id="bbox:0_45.9_0.1_46" ><polygon points="214.3,322.3 218.2,322.3 218.2,327.9 214.3,327.9 214.3,322.3 " /></g><g id="bbox:0.1_45.9_0.2_46" ><polygon points="218.2,322.3 222.0,322.3 222.0,327.9 218.2,327.9 218.2,322.3 " /></g><g id="bbox:0.2_45.9_0.3_46" ><polygon points="222.0,322.3 225.9,322.3 225.9,327.9 222.0,327.9 222.0,322.3 " /></g><g id="bbox:0.3_45.9_0.4_46" ><polygon points="225.9,322.3 229.7,322.3 229.7,327.9 225.9,327.9 225.9,322.3 " /></g><g id="bbox:0.4_45.9_0.5_46" ><polygon points="229.7,322.3 233.6,322.3 233.6,327.9 229.7,327.9 229.7,322.3 " /></g><g id="bbox:0.5_45.9_0.6_46" ><polygon points="233.6,322.3 237.4,322.3 237.4,327.9 233.6,327.9 233.6,322.3 " /></g><g id="bbox:0.6_45.9_0.7_46" ><polygon points="237.4,322.3 241.3,322.3 241.3,327.9 237.4,327.9 237.4,322.3 " /></g><g id="bbox:0.7_45.9_0.8_46" ><polygon points="241.3,322.3 245.1,322.3 245.1,327.9 241.3,327.9 241.3,322.3 " /></g><g id="bbox:0.8_45.9_0.9_46" ><polygon points="245.1,322.3 249.0,322.3 249.0,327.9 245.1,327.9 245.1,322.3 " /></g><g id="bbox:0.9_45.9_1_46" ><polygon points="249.0,322.3 252.8,322.3 252.8,327.9 249.0,327.9 249.0,322.3 " /></g><g id="bbox:1_45.9_1.1_46" ><polygon points="252.8,322.3 256.7,322.3 256.7,327.9 252.8,327.9 252.8,322.3 " /></g><g id="bbox:1.1_45.9_1.2_46" ><polygon points="256.7,322.3 260.5,322.3 260.5,327.9 256.7,327.9 256.7,322.3 " /></g><g id="bbox:1.2_45.9_1.3_46" ><polygon points="260.5,322.3 264.4,322.3 264.4,327.9 260.5,327.9 260.5,322.3 " /></g><g id="bbox:1.3_45.9_1.4_46" ><polygon points="264.4,322.3 268.2,322.3 268.2,327.9 264.4,327.9 264.4,322.3 " /></g><g id="bbox:1.4_45.9_1.5_46" ><polygon points="268.2,322.3 272.1,322.3 272.1,327.9 268.2,327.9 268.2,322.3 " /></g><g id="bbox:1.5_45.9_1.6_46" ><polygon points="272.1,322.3 275.9,322.3 275.9,327.9 272.1,327.9 272.1,322.3 " /></g><g id="bbox:1.6_45.9_1.7_46" ><polygon points="275.9,322.3 279.8,322.3 279.8,327.9 275.9,327.9 275.9,322.3 " /></g><g id="bbox:1.7_45.9_1.8_46" ><polygon points="279.8,322.3 283.6,322.3 283.6,327.9 279.8,327.9 279.8,322.3 " /></g><g id="bbox:1.8_45.9_1.9_46" ><polygon points="283.6,322.3 287.5,322.3 287.5,327.9 283.6,327.9 283.6,322.3 " /></g><g id="bbox:1.9_45.9_2_46" ><polygon points="287.5,322.3 291.3,322.3 291.3,327.9 287.5,327.9 287.5,322.3 " /></g><g id="bbox:2_45.9_2.1_46" ><polygon points="291.3,322.3 295.2,322.3 295.2,327.9 291.3,327.9 291.3,322.3 " /></g><g id="bbox:2.1_45.9_2.2_46" ><polygon points="295.2,322.3 299.0,322.3 299.0,327.9 295.2,327.9 295.2,322.3 " /></g><g id="bbox:2.2_45.9_2.3_46" ><polygon points="299.0,322.3 302.8,322.3 302.8,327.9 299.0,327.9 299.0,322.3 " /></g><g id="bbox:2.3_45.9_2.4_46" ><polygon points="302.8,322.3 306.7,322.3 306.7,327.9 302.8,327.9 302.8,322.3 " /></g><g id="bbox:2.4_45.9_2.5_46" ><polygon points="306.7,322.3 310.5,322.3 310.5,327.9 306.7,327.9 306.7,322.3 " /></g><g id="bbox:2.5_45.9_2.6_46" ><polygon points="310.5,322.3 314.4,322.3 314.4,327.9 310.5,327.9 310.5,322.3 " /></g><g id="bbox:2.6_45.9_2.7_46" ><polygon points="314.4,322.3 318.2,322.3 318.2,327.9 314.4,327.9 314.4,322.3 " /></g><g id="bbox:2.7_45.9_2.8_46" ><polygon points="318.2,322.3 322.1,322.3 322.1,327.9 318.2,327.9 318.2,322.3 " /></g><g id="bbox:2.8_45.9_2.9_46" ><polygon points="322.1,322.3 325.9,322.3 325.9,327.9 322.1,327.9 322.1,322.3 " /></g><g id="bbox:2.9_45.9_3_46" ><polygon points="325.9,322.3 329.8,322.3 329.8,327.9 325.9,327.9 325.9,322.3 " /></g><g id="bbox:3_45.9_3.1_46" ><polygon points="329.8,322.3 333.6,322.3 333.6,327.9 329.8,327.9 329.8,322.3 " /></g><g id="bbox:3.1_45.9_3.2_46" ><polygon points="333.6,322.3 337.5,322.3 337.5,327.9 333.6,327.9 333.6,322.3 " /></g><g id="bbox:3.2_45.9_3.3_46" ><polygon points="337.5,322.3 341.3,322.3 341.3,327.9 337.5,327.9 337.5,322.3 " /></g><g id="bbox:3.3_45.9_3.4_46" ><polygon points="341.3,322.3 345.2,322.3 345.2,327.9 341.3,327.9 341.3,322.3 " /></g><g id="bbox:3.4_45.9_3.5_46" ><polygon points="345.2,322.3 349.0,322.3 349.0,327.9 345.2,327.9 345.2,322.3 " /></g><g id="bbox:3.5_45.9_3.6_46" ><polygon points="349.0,322.3 352.9,322.3 352.9,327.9 349.0,327.9 349.0,322.3 " /></g><g id="bbox:3.6_45.9_3.7_46" ><polygon points="352.9,322.3 356.7,322.3 356.7,327.9 352.9,327.9 352.9,322.3 " /></g><g id="bbox:3.7_45.9_3.8_46" ><polygon points="356.7,322.3 360.6,322.3 360.6,327.9 356.7,327.9 356.7,322.3 " /></g><g id="bbox:3.8_45.9_3.9_46" ><polygon points="360.6,322.3 364.4,322.3 364.4,327.9 360.6,327.9 360.6,322.3 " /></g><g id="bbox:3.9_45.9_4_46" ><polygon points="364.4,322.3 368.3,322.3 368.3,327.9 364.4,327.9 364.4,322.3 " /></g><g id="bbox:4_45.9_4.1_46" ><polygon points="368.3,322.3 372.1,322.3 372.1,327.9 368.3,327.9 368.3,322.3 " /></g><g id="bbox:4.1_45.9_4.2_46" ><polygon points="372.1,322.3 376.0,322.3 376.0,327.9 372.1,327.9 372.1,322.3 " /></g><g id="bbox:4.2_45.9_4.3_46" ><polygon points="376.0,322.3 379.8,322.3 379.8,327.9 376.0,327.9 376.0,322.3 " /></g><g id="bbox:4.3_45.9_4.4_46" ><polygon points="379.8,322.3 383.7,322.3 383.7,327.9 379.8,327.9 379.8,322.3 " /></g><g id="bbox:4.4_45.9_4.5_46" ><polygon points="383.7,322.3 387.5,322.3 387.5,327.9 383.7,327.9 383.7,322.3 " /></g><g id="bbox:4.5_45.9_4.6_46" ><polygon points="387.5,322.3 391.4,322.3 391.4,327.9 387.5,327.9 387.5,322.3 " /></g><g id="bbox:4.6_45.9_4.7_46" ><polygon points="391.4,322.3 395.2,322.3 395.2,327.9 391.4,327.9 391.4,322.3 " /></g><g id="bbox:4.7_45.9_4.8_46" ><polygon points="395.2,322.3 399.1,322.3 399.1,327.9 395.2,327.9 395.2,322.3 " /></g><g id="bbox:4.8_45.9_4.9_46" ><polygon points="399.1,322.3 402.9,322.3 402.9,327.9 399.1,327.9 399.1,322.3 " /></g><g id="bbox:4.9_45.9_5_46" ><polygon points="402.9,322.3 406.7,322.3 406.7,327.9 402.9,327.9 402.9,322.3 " /></g><g id="bbox:5_45.9_5.1_46" ><polygon points="406.7,322.3 410.6,322.3 410.6,327.9 406.7,327.9 406.7,322.3 " /></g><g id="bbox:5.1_45.9_5.2_46" ><polygon points="410.6,322.3 414.4,322.3 414.4,327.9 410.6,327.9 410.6,322.3 " /></g><g id="bbox:5.2_45.9_5.3_46" ><polygon points="414.4,322.3 418.3,322.3 418.3,327.9 414.4,327.9 414.4,322.3 " /></g><g id="bbox:5.3_45.9_5.4_46" ><polygon points="418.3,322.3 422.1,322.3 422.1,327.9 418.3,327.9 418.3,322.3 " /></g><g id="bbox:5.4_45.9_5.5_46" ><polygon points="422.1,322.3 426.0,322.3 426.0,327.9 422.1,327.9 422.1,322.3 " /></g><g id="bbox:5.5_45.9_5.6_46" ><polygon points="426.0,322.3 429.8,322.3 429.8,327.9 426.0,327.9 426.0,322.3 " /></g><g id="bbox:5.6_45.9_5.7_46" ><polygon points="429.8,322.3 433.7,322.3 433.7,327.9 429.8,327.9 429.8,322.3 " /></g><g id="bbox:5.7_45.9_5.8_46" ><polygon points="433.7,322.3 437.5,322.3 437.5,327.9 433.7,327.9 433.7,322.3 " /></g><g id="bbox:5.8_45.9_5.9_46" ><polygon points="437.5,322.3 441.4,322.3 441.4,327.9 437.5,327.9 437.5,322.3 " /></g><g id="bbox:5.9_45.9_6_46" ><polygon points="441.4,322.3 445.2,322.3 445.2,327.9 441.4,327.9 441.4,322.3 " /></g><g id="bbox:6_45.9_6.1_46" ><polygon points="445.2,322.3 449.1,322.3 449.1,327.9 445.2,327.9 445.2,322.3 " /></g><g id="bbox:6.1_45.9_6.2_46" ><polygon points="449.1,322.3 452.9,322.3 452.9,327.9 449.1,327.9 449.1,322.3 " /></g><g id="bbox:6.2_45.9_6.3_46" ><polygon points="452.9,322.3 456.8,322.3 456.8,327.9 452.9,327.9 452.9,322.3 " /></g><g id="bbox:6.3_45.9_6.4_46" ><polygon points="456.8,322.3 460.6,322.3 460.6,327.9 456.8,327.9 456.8,322.3 " /></g><g id="bbox:6.4_45.9_6.5_46" ><polygon points="460.6,322.3 464.5,322.3 464.5,327.9 460.6,327.9 460.6,322.3 " /></g><g id="bbox:6.5_45.9_6.6_46" ><polygon points="464.5,322.3 468.3,322.3 468.3,327.9 464.5,327.9 464.5,322.3 " /></g><g id="bbox:6.6_45.9_6.7_46" ><polygon points="468.3,322.3 472.2,322.3 472.2,327.9 468.3,327.9 468.3,322.3 " /></g><g id="bbox:6.7_45.9_6.8_46" ><polygon points="472.2,322.3 476.0,322.3 476.0,327.9 472.2,327.9 472.2,322.3 " /></g><g id="bbox:6.8_45.9_6.9_46" ><polygon points="476.0,322.3 479.9,322.3 479.9,327.9 476.0,327.9 476.0,322.3 " /></g><g id="bbox:6.9_45.9_7_46" ><polygon points="479.9,322.3 483.7,322.3 483.7,327.9 479.9,327.9 479.9,322.3 " /></g><g id="bbox:7_45.9_7.1_46" ><polygon points="483.7,322.3 487.6,322.3 487.6,327.9 483.7,327.9 483.7,322.3 " /></g><g id="bbox:-1.4_45.8_-1.3_45.9" ><polygon points="160.5,327.9 164.3,327.9 164.3,333.4 160.5,333.4 160.5,327.9 " /></g><g id="bbox:-1.3_45.8_-1.2_45.9" ><polygon points="164.3,327.9 168.2,327.9 168.2,333.4 164.3,333.4 164.3,327.9 " /></g><g id="bbox:-1.2_45.8_-1.1_45.9" ><polygon points="168.2,327.9 172.0,327.9 172.0,333.4 168.2,333.4 168.2,327.9 " /></g><g id="bbox:-1.1_45.8_-1_45.9" ><polygon points="172.0,327.9 175.9,327.9 175.9,333.4 172.0,333.4 172.0,327.9 " /></g><g id="bbox:-1_45.8_-0.9_45.9" ><polygon points="175.9,327.9 179.7,327.9 179.7,333.4 175.9,333.4 175.9,327.9 " /></g><g id="bbox:-0.9_45.8_-0.8_45.9" ><polygon points="179.7,327.9 183.6,327.9 183.6,333.4 179.7,333.4 179.7,327.9 " /></g><g id="bbox:-0.8_45.8_-0.7_45.9" ><polygon points="183.6,327.9 187.4,327.9 187.4,333.4 183.6,333.4 183.6,327.9 " /></g><g id="bbox:-0.7_45.8_-0.6_45.9" ><polygon points="187.4,327.9 191.3,327.9 191.3,333.4 187.4,333.4 187.4,327.9 " /></g><g id="bbox:-0.6_45.8_-0.5_45.9" ><polygon points="191.3,327.9 195.1,327.9 195.1,333.4 191.3,333.4 191.3,327.9 " /></g><g id="bbox:-0.5_45.8_-0.4_45.9" ><polygon points="195.1,327.9 198.9,327.9 198.9,333.4 195.1,333.4 195.1,327.9 " /></g><g id="bbox:-0.4_45.8_-0.3_45.9" ><polygon points="198.9,327.9 202.8,327.9 202.8,333.4 198.9,333.4 198.9,327.9 " /></g><g id="bbox:-0.3_45.8_-0.2_45.9" ><polygon points="202.8,327.9 206.6,327.9 206.6,333.4 202.8,333.4 202.8,327.9 " /></g><g id="bbox:-0.2_45.8_-0.1_45.9" ><polygon points="206.6,327.9 210.5,327.9 210.5,333.4 206.6,333.4 206.6,327.9 " /></g><g id="bbox:-0.1_45.8_0_45.9" ><polygon points="210.5,327.9 214.3,327.9 214.3,333.4 210.5,333.4 210.5,327.9 " /></g><g id="bbox:0_45.8_0.1_45.9" ><polygon points="214.3,327.9 218.2,327.9 218.2,333.4 214.3,333.4 214.3,327.9 " /></g><g id="bbox:0.1_45.8_0.2_45.9" ><polygon points="218.2,327.9 222.0,327.9 222.0,333.4 218.2,333.4 218.2,327.9 " /></g><g id="bbox:0.2_45.8_0.3_45.9" ><polygon points="222.0,327.9 225.9,327.9 225.9,333.4 222.0,333.4 222.0,327.9 " /></g><g id="bbox:0.3_45.8_0.4_45.9" ><polygon points="225.9,327.9 229.7,327.9 229.7,333.4 225.9,333.4 225.9,327.9 " /></g><g id="bbox:0.4_45.8_0.5_45.9" ><polygon points="229.7,327.9 233.6,327.9 233.6,333.4 229.7,333.4 229.7,327.9 " /></g><g id="bbox:0.5_45.8_0.6_45.9" ><polygon points="233.6,327.9 237.4,327.9 237.4,333.4 233.6,333.4 233.6,327.9 " /></g><g id="bbox:0.6_45.8_0.7_45.9" ><polygon points="237.4,327.9 241.3,327.9 241.3,333.4 237.4,333.4 237.4,327.9 " /></g><g id="bbox:0.7_45.8_0.8_45.9" ><polygon points="241.3,327.9 245.1,327.9 245.1,333.4 241.3,333.4 241.3,327.9 " /></g><g id="bbox:0.8_45.8_0.9_45.9" ><polygon points="245.1,327.9 249.0,327.9 249.0,333.4 245.1,333.4 245.1,327.9 " /></g><g id="bbox:0.9_45.8_1_45.9" ><polygon points="249.0,327.9 252.8,327.9 252.8,333.4 249.0,333.4 249.0,327.9 " /></g><g id="bbox:1_45.8_1.1_45.9" ><polygon points="252.8,327.9 256.7,327.9 256.7,333.4 252.8,333.4 252.8,327.9 " /></g><g id="bbox:1.1_45.8_1.2_45.9" ><polygon points="256.7,327.9 260.5,327.9 260.5,333.4 256.7,333.4 256.7,327.9 " /></g><g id="bbox:1.2_45.8_1.3_45.9" ><polygon points="260.5,327.9 264.4,327.9 264.4,333.4 260.5,333.4 260.5,327.9 " /></g><g id="bbox:1.3_45.8_1.4_45.9" ><polygon points="264.4,327.9 268.2,327.9 268.2,333.4 264.4,333.4 264.4,327.9 " /></g><g id="bbox:1.4_45.8_1.5_45.9" ><polygon points="268.2,327.9 272.1,327.9 272.1,333.4 268.2,333.4 268.2,327.9 " /></g><g id="bbox:1.5_45.8_1.6_45.9" ><polygon points="272.1,327.9 275.9,327.9 275.9,333.4 272.1,333.4 272.1,327.9 " /></g><g id="bbox:1.6_45.8_1.7_45.9" ><polygon points="275.9,327.9 279.8,327.9 279.8,333.4 275.9,333.4 275.9,327.9 " /></g><g id="bbox:1.7_45.8_1.8_45.9" ><polygon points="279.8,327.9 283.6,327.9 283.6,333.4 279.8,333.4 279.8,327.9 " /></g><g id="bbox:1.8_45.8_1.9_45.9" ><polygon points="283.6,327.9 287.5,327.9 287.5,333.4 283.6,333.4 283.6,327.9 " /></g><g id="bbox:1.9_45.8_2_45.9" ><polygon points="287.5,327.9 291.3,327.9 291.3,333.4 287.5,333.4 287.5,327.9 " /></g><g id="bbox:2_45.8_2.1_45.9" ><polygon points="291.3,327.9 295.2,327.9 295.2,333.4 291.3,333.4 291.3,327.9 " /></g><g id="bbox:2.1_45.8_2.2_45.9" ><polygon points="295.2,327.9 299.0,327.9 299.0,333.4 295.2,333.4 295.2,327.9 " /></g><g id="bbox:2.2_45.8_2.3_45.9" ><polygon points="299.0,327.9 302.8,327.9 302.8,333.4 299.0,333.4 299.0,327.9 " /></g><g id="bbox:2.3_45.8_2.4_45.9" ><polygon points="302.8,327.9 306.7,327.9 306.7,333.4 302.8,333.4 302.8,327.9 " /></g><g id="bbox:2.4_45.8_2.5_45.9" ><polygon points="306.7,327.9 310.5,327.9 310.5,333.4 306.7,333.4 306.7,327.9 " /></g><g id="bbox:2.5_45.8_2.6_45.9" ><polygon points="310.5,327.9 314.4,327.9 314.4,333.4 310.5,333.4 310.5,327.9 " /></g><g id="bbox:2.6_45.8_2.7_45.9" ><polygon points="314.4,327.9 318.2,327.9 318.2,333.4 314.4,333.4 314.4,327.9 " /></g><g id="bbox:2.7_45.8_2.8_45.9" ><polygon points="318.2,327.9 322.1,327.9 322.1,333.4 318.2,333.4 318.2,327.9 " /></g><g id="bbox:2.8_45.8_2.9_45.9" ><polygon points="322.1,327.9 325.9,327.9 325.9,333.4 322.1,333.4 322.1,327.9 " /></g><g id="bbox:2.9_45.8_3_45.9" ><polygon points="325.9,327.9 329.8,327.9 329.8,333.4 325.9,333.4 325.9,327.9 " /></g><g id="bbox:3_45.8_3.1_45.9" ><polygon points="329.8,327.9 333.6,327.9 333.6,333.4 329.8,333.4 329.8,327.9 " /></g><g id="bbox:3.1_45.8_3.2_45.9" ><polygon points="333.6,327.9 337.5,327.9 337.5,333.4 333.6,333.4 333.6,327.9 " /></g><g id="bbox:3.2_45.8_3.3_45.9" ><polygon points="337.5,327.9 341.3,327.9 341.3,333.4 337.5,333.4 337.5,327.9 " /></g><g id="bbox:3.3_45.8_3.4_45.9" ><polygon points="341.3,327.9 345.2,327.9 345.2,333.4 341.3,333.4 341.3,327.9 " /></g><g id="bbox:3.4_45.8_3.5_45.9" ><polygon points="345.2,327.9 349.0,327.9 349.0,333.4 345.2,333.4 345.2,327.9 " /></g><g id="bbox:3.5_45.8_3.6_45.9" ><polygon points="349.0,327.9 352.9,327.9 352.9,333.4 349.0,333.4 349.0,327.9 " /></g><g id="bbox:3.6_45.8_3.7_45.9" ><polygon points="352.9,327.9 356.7,327.9 356.7,333.4 352.9,333.4 352.9,327.9 " /></g><g id="bbox:3.7_45.8_3.8_45.9" ><polygon points="356.7,327.9 360.6,327.9 360.6,333.4 356.7,333.4 356.7,327.9 " /></g><g id="bbox:3.8_45.8_3.9_45.9" ><polygon points="360.6,327.9 364.4,327.9 364.4,333.4 360.6,333.4 360.6,327.9 " /></g><g id="bbox:3.9_45.8_4_45.9" ><polygon points="364.4,327.9 368.3,327.9 368.3,333.4 364.4,333.4 364.4,327.9 " /></g><g id="bbox:4_45.8_4.1_45.9" ><polygon points="368.3,327.9 372.1,327.9 372.1,333.4 368.3,333.4 368.3,327.9 " /></g><g id="bbox:4.1_45.8_4.2_45.9" ><polygon points="372.1,327.9 376.0,327.9 376.0,333.4 372.1,333.4 372.1,327.9 " /></g><g id="bbox:4.2_45.8_4.3_45.9" ><polygon points="376.0,327.9 379.8,327.9 379.8,333.4 376.0,333.4 376.0,327.9 " /></g><g id="bbox:4.3_45.8_4.4_45.9" ><polygon points="379.8,327.9 383.7,327.9 383.7,333.4 379.8,333.4 379.8,327.9 " /></g><g id="bbox:4.4_45.8_4.5_45.9" ><polygon points="383.7,327.9 387.5,327.9 387.5,333.4 383.7,333.4 383.7,327.9 " /></g><g id="bbox:4.5_45.8_4.6_45.9" ><polygon points="387.5,327.9 391.4,327.9 391.4,333.4 387.5,333.4 387.5,327.9 " /></g><g id="bbox:4.6_45.8_4.7_45.9" ><polygon points="391.4,327.9 395.2,327.9 395.2,333.4 391.4,333.4 391.4,327.9 " /></g><g id="bbox:4.7_45.8_4.8_45.9" ><polygon points="395.2,327.9 399.1,327.9 399.1,333.4 395.2,333.4 395.2,327.9 " /></g><g id="bbox:4.8_45.8_4.9_45.9" ><polygon points="399.1,327.9 402.9,327.9 402.9,333.4 399.1,333.4 399.1,327.9 " /></g><g id="bbox:4.9_45.8_5_45.9" ><polygon points="402.9,327.9 406.7,327.9 406.7,333.4 402.9,333.4 402.9,327.9 " /></g><g id="bbox:5_45.8_5.1_45.9" ><polygon points="406.7,327.9 410.6,327.9 410.6,333.4 406.7,333.4 406.7,327.9 " /></g><g id="bbox:5.1_45.8_5.2_45.9" ><polygon points="410.6,327.9 414.4,327.9 414.4,333.4 410.6,333.4 410.6,327.9 " /></g><g id="bbox:5.2_45.8_5.3_45.9" ><polygon points="414.4,327.9 418.3,327.9 418.3,333.4 414.4,333.4 414.4,327.9 " /></g><g id="bbox:5.3_45.8_5.4_45.9" ><polygon points="418.3,327.9 422.1,327.9 422.1,333.4 418.3,333.4 418.3,327.9 " /></g><g id="bbox:5.4_45.8_5.5_45.9" ><polygon points="422.1,327.9 426.0,327.9 426.0,333.4 422.1,333.4 422.1,327.9 " /></g><g id="bbox:5.5_45.8_5.6_45.9" ><polygon points="426.0,327.9 429.8,327.9 429.8,333.4 426.0,333.4 426.0,327.9 " /></g><g id="bbox:5.6_45.8_5.7_45.9" ><polygon points="429.8,327.9 433.7,327.9 433.7,333.4 429.8,333.4 429.8,327.9 " /></g><g id="bbox:5.7_45.8_5.8_45.9" ><polygon points="433.7,327.9 437.5,327.9 437.5,333.4 433.7,333.4 433.7,327.9 " /></g><g id="bbox:5.8_45.8_5.9_45.9" ><polygon points="437.5,327.9 441.4,327.9 441.4,333.4 437.5,333.4 437.5,327.9 " /></g><g id="bbox:5.9_45.8_6_45.9" ><polygon points="441.4,327.9 445.2,327.9 445.2,333.4 441.4,333.4 441.4,327.9 " /></g><g id="bbox:6_45.8_6.1_45.9" ><polygon points="445.2,327.9 449.1,327.9 449.1,333.4 445.2,333.4 445.2,327.9 " /></g><g id="bbox:6.1_45.8_6.2_45.9" ><polygon points="449.1,327.9 452.9,327.9 452.9,333.4 449.1,333.4 449.1,327.9 " /></g><g id="bbox:6.2_45.8_6.3_45.9" ><polygon points="452.9,327.9 456.8,327.9 456.8,333.4 452.9,333.4 452.9,327.9 " /></g><g id="bbox:6.3_45.8_6.4_45.9" ><polygon points="456.8,327.9 460.6,327.9 460.6,333.4 456.8,333.4 456.8,327.9 " /></g><g id="bbox:6.4_45.8_6.5_45.9" ><polygon points="460.6,327.9 464.5,327.9 464.5,333.4 460.6,333.4 460.6,327.9 " /></g><g id="bbox:6.5_45.8_6.6_45.9" ><polygon points="464.5,327.9 468.3,327.9 468.3,333.4 464.5,333.4 464.5,327.9 " /></g><g id="bbox:6.6_45.8_6.7_45.9" ><polygon points="468.3,327.9 472.2,327.9 472.2,333.4 468.3,333.4 468.3,327.9 " /></g><g id="bbox:6.7_45.8_6.8_45.9" ><polygon points="472.2,327.9 476.0,327.9 476.0,333.4 472.2,333.4 472.2,327.9 " /></g><g id="bbox:6.8_45.8_6.9_45.9" ><polygon points="476.0,327.9 479.9,327.9 479.9,333.4 476.0,333.4 476.0,327.9 " /></g><g id="bbox:6.9_45.8_7_45.9" ><polygon points="479.9,327.9 483.7,327.9 483.7,333.4 479.9,333.4 479.9,327.9 " /></g><g id="bbox:7_45.8_7.1_45.9" ><polygon points="483.7,327.9 487.6,327.9 487.6,333.4 483.7,333.4 483.7,327.9 " /></g><g id="bbox:-1.3_45.7_-1.2_45.8" ><polygon points="164.3,333.4 168.2,333.4 168.2,338.9 164.3,338.9 164.3,333.4 " /></g><g id="bbox:-1.2_45.7_-1.1_45.8" ><polygon points="168.2,333.4 172.0,333.4 172.0,338.9 168.2,338.9 168.2,333.4 " /></g><g id="bbox:-1.1_45.7_-1_45.8" ><polygon points="172.0,333.4 175.9,333.4 175.9,338.9 172.0,338.9 172.0,333.4 " /></g><g id="bbox:-1_45.7_-0.9_45.8" ><polygon points="175.9,333.4 179.7,333.4 179.7,338.9 175.9,338.9 175.9,333.4 " /></g><g id="bbox:-0.9_45.7_-0.8_45.8" ><polygon points="179.7,333.4 183.6,333.4 183.6,338.9 179.7,338.9 179.7,333.4 " /></g><g id="bbox:-0.8_45.7_-0.7_45.8" ><polygon points="183.6,333.4 187.4,333.4 187.4,338.9 183.6,338.9 183.6,333.4 " /></g><g id="bbox:-0.7_45.7_-0.6_45.8" ><polygon points="187.4,333.4 191.3,333.4 191.3,338.9 187.4,338.9 187.4,333.4 " /></g><g id="bbox:-0.6_45.7_-0.5_45.8" ><polygon points="191.3,333.4 195.1,333.4 195.1,338.9 191.3,338.9 191.3,333.4 " /></g><g id="bbox:-0.5_45.7_-0.4_45.8" ><polygon points="195.1,333.4 198.9,333.4 198.9,338.9 195.1,338.9 195.1,333.4 " /></g><g id="bbox:-0.4_45.7_-0.3_45.8" ><polygon points="198.9,333.4 202.8,333.4 202.8,338.9 198.9,338.9 198.9,333.4 " /></g><g id="bbox:-0.3_45.7_-0.2_45.8" ><polygon points="202.8,333.4 206.6,333.4 206.6,338.9 202.8,338.9 202.8,333.4 " /></g><g id="bbox:-0.2_45.7_-0.1_45.8" ><polygon points="206.6,333.4 210.5,333.4 210.5,338.9 206.6,338.9 206.6,333.4 " /></g><g id="bbox:-0.1_45.7_0_45.8" ><polygon points="210.5,333.4 214.3,333.4 214.3,338.9 210.5,338.9 210.5,333.4 " /></g><g id="bbox:0_45.7_0.1_45.8" ><polygon points="214.3,333.4 218.2,333.4 218.2,338.9 214.3,338.9 214.3,333.4 " /></g><g id="bbox:0.1_45.7_0.2_45.8" ><polygon points="218.2,333.4 222.0,333.4 222.0,338.9 218.2,338.9 218.2,333.4 " /></g><g id="bbox:0.2_45.7_0.3_45.8" ><polygon points="222.0,333.4 225.9,333.4 225.9,338.9 222.0,338.9 222.0,333.4 " /></g><g id="bbox:0.3_45.7_0.4_45.8" ><polygon points="225.9,333.4 229.7,333.4 229.7,338.9 225.9,338.9 225.9,333.4 " /></g><g id="bbox:0.4_45.7_0.5_45.8" ><polygon points="229.7,333.4 233.6,333.4 233.6,338.9 229.7,338.9 229.7,333.4 " /></g><g id="bbox:0.5_45.7_0.6_45.8" ><polygon points="233.6,333.4 237.4,333.4 237.4,338.9 233.6,338.9 233.6,333.4 " /></g><g id="bbox:0.6_45.7_0.7_45.8" ><polygon points="237.4,333.4 241.3,333.4 241.3,338.9 237.4,338.9 237.4,333.4 " /></g><g id="bbox:0.7_45.7_0.8_45.8" ><polygon points="241.3,333.4 245.1,333.4 245.1,338.9 241.3,338.9 241.3,333.4 " /></g><g id="bbox:0.8_45.7_0.9_45.8" ><polygon points="245.1,333.4 249.0,333.4 249.0,338.9 245.1,338.9 245.1,333.4 " /></g><g id="bbox:0.9_45.7_1_45.8" ><polygon points="249.0,333.4 252.8,333.4 252.8,338.9 249.0,338.9 249.0,333.4 " /></g><g id="bbox:1_45.7_1.1_45.8" ><polygon points="252.8,333.4 256.7,333.4 256.7,338.9 252.8,338.9 252.8,333.4 " /></g><g id="bbox:1.1_45.7_1.2_45.8" ><polygon points="256.7,333.4 260.5,333.4 260.5,338.9 256.7,338.9 256.7,333.4 " /></g><g id="bbox:1.2_45.7_1.3_45.8" ><polygon points="260.5,333.4 264.4,333.4 264.4,338.9 260.5,338.9 260.5,333.4 " /></g><g id="bbox:1.3_45.7_1.4_45.8" ><polygon points="264.4,333.4 268.2,333.4 268.2,338.9 264.4,338.9 264.4,333.4 " /></g><g id="bbox:1.4_45.7_1.5_45.8" ><polygon points="268.2,333.4 272.1,333.4 272.1,338.9 268.2,338.9 268.2,333.4 " /></g><g id="bbox:1.5_45.7_1.6_45.8" ><polygon points="272.1,333.4 275.9,333.4 275.9,338.9 272.1,338.9 272.1,333.4 " /></g><g id="bbox:1.6_45.7_1.7_45.8" ><polygon points="275.9,333.4 279.8,333.4 279.8,338.9 275.9,338.9 275.9,333.4 " /></g><g id="bbox:1.7_45.7_1.8_45.8" ><polygon points="279.8,333.4 283.6,333.4 283.6,338.9 279.8,338.9 279.8,333.4 " /></g><g id="bbox:1.8_45.7_1.9_45.8" ><polygon points="283.6,333.4 287.5,333.4 287.5,338.9 283.6,338.9 283.6,333.4 " /></g><g id="bbox:1.9_45.7_2_45.8" ><polygon points="287.5,333.4 291.3,333.4 291.3,338.9 287.5,338.9 287.5,333.4 " /></g><g id="bbox:2_45.7_2.1_45.8" ><polygon points="291.3,333.4 295.2,333.4 295.2,338.9 291.3,338.9 291.3,333.4 " /></g><g id="bbox:2.1_45.7_2.2_45.8" ><polygon points="295.2,333.4 299.0,333.4 299.0,338.9 295.2,338.9 295.2,333.4 " /></g><g id="bbox:2.2_45.7_2.3_45.8" ><polygon points="299.0,333.4 302.8,333.4 302.8,338.9 299.0,338.9 299.0,333.4 " /></g><g id="bbox:2.3_45.7_2.4_45.8" ><polygon points="302.8,333.4 306.7,333.4 306.7,338.9 302.8,338.9 302.8,333.4 " /></g><g id="bbox:2.4_45.7_2.5_45.8" ><polygon points="306.7,333.4 310.5,333.4 310.5,338.9 306.7,338.9 306.7,333.4 " /></g><g id="bbox:2.5_45.7_2.6_45.8" ><polygon points="310.5,333.4 314.4,333.4 314.4,338.9 310.5,338.9 310.5,333.4 " /></g><g id="bbox:2.6_45.7_2.7_45.8" ><polygon points="314.4,333.4 318.2,333.4 318.2,338.9 314.4,338.9 314.4,333.4 " /></g><g id="bbox:2.7_45.7_2.8_45.8" ><polygon points="318.2,333.4 322.1,333.4 322.1,338.9 318.2,338.9 318.2,333.4 " /></g><g id="bbox:2.8_45.7_2.9_45.8" ><polygon points="322.1,333.4 325.9,333.4 325.9,338.9 322.1,338.9 322.1,333.4 " /></g><g id="bbox:2.9_45.7_3_45.8" ><polygon points="325.9,333.4 329.8,333.4 329.8,338.9 325.9,338.9 325.9,333.4 " /></g><g id="bbox:3_45.7_3.1_45.8" ><polygon points="329.8,333.4 333.6,333.4 333.6,338.9 329.8,338.9 329.8,333.4 " /></g><g id="bbox:3.1_45.7_3.2_45.8" ><polygon points="333.6,333.4 337.5,333.4 337.5,338.9 333.6,338.9 333.6,333.4 " /></g><g id="bbox:3.2_45.7_3.3_45.8" ><polygon points="337.5,333.4 341.3,333.4 341.3,338.9 337.5,338.9 337.5,333.4 " /></g><g id="bbox:3.3_45.7_3.4_45.8" ><polygon points="341.3,333.4 345.2,333.4 345.2,338.9 341.3,338.9 341.3,333.4 " /></g><g id="bbox:3.4_45.7_3.5_45.8" ><polygon points="345.2,333.4 349.0,333.4 349.0,338.9 345.2,338.9 345.2,333.4 " /></g><g id="bbox:3.5_45.7_3.6_45.8" ><polygon points="349.0,333.4 352.9,333.4 352.9,338.9 349.0,338.9 349.0,333.4 " /></g><g id="bbox:3.6_45.7_3.7_45.8" ><polygon points="352.9,333.4 356.7,333.4 356.7,338.9 352.9,338.9 352.9,333.4 " /></g><g id="bbox:3.7_45.7_3.8_45.8" ><polygon points="356.7,333.4 360.6,333.4 360.6,338.9 356.7,338.9 356.7,333.4 " /></g><g id="bbox:3.8_45.7_3.9_45.8" ><polygon points="360.6,333.4 364.4,333.4 364.4,338.9 360.6,338.9 360.6,333.4 " /></g><g id="bbox:3.9_45.7_4_45.8" ><polygon points="364.4,333.4 368.3,333.4 368.3,338.9 364.4,338.9 364.4,333.4 " /></g><g id="bbox:4_45.7_4.1_45.8" ><polygon points="368.3,333.4 372.1,333.4 372.1,338.9 368.3,338.9 368.3,333.4 " /></g><g id="bbox:4.1_45.7_4.2_45.8" ><polygon points="372.1,333.4 376.0,333.4 376.0,338.9 372.1,338.9 372.1,333.4 " /></g><g id="bbox:4.2_45.7_4.3_45.8" ><polygon points="376.0,333.4 379.8,333.4 379.8,338.9 376.0,338.9 376.0,333.4 " /></g><g id="bbox:4.3_45.7_4.4_45.8" ><polygon points="379.8,333.4 383.7,333.4 383.7,338.9 379.8,338.9 379.8,333.4 " /></g><g id="bbox:4.4_45.7_4.5_45.8" ><polygon points="383.7,333.4 387.5,333.4 387.5,338.9 383.7,338.9 383.7,333.4 " /></g><g id="bbox:4.5_45.7_4.6_45.8" ><polygon points="387.5,333.4 391.4,333.4 391.4,338.9 387.5,338.9 387.5,333.4 " /></g><g id="bbox:4.6_45.7_4.7_45.8" ><polygon points="391.4,333.4 395.2,333.4 395.2,338.9 391.4,338.9 391.4,333.4 " /></g><g id="bbox:4.7_45.7_4.8_45.8" ><polygon points="395.2,333.4 399.1,333.4 399.1,338.9 395.2,338.9 395.2,333.4 " /></g><g id="bbox:4.8_45.7_4.9_45.8" ><polygon points="399.1,333.4 402.9,333.4 402.9,338.9 399.1,338.9 399.1,333.4 " /></g><g id="bbox:4.9_45.7_5_45.8" ><polygon points="402.9,333.4 406.7,333.4 406.7,338.9 402.9,338.9 402.9,333.4 " /></g><g id="bbox:5_45.7_5.1_45.8" ><polygon points="406.7,333.4 410.6,333.4 410.6,338.9 406.7,338.9 406.7,333.4 " /></g><g id="bbox:5.1_45.7_5.2_45.8" ><polygon points="410.6,333.4 414.4,333.4 414.4,338.9 410.6,338.9 410.6,333.4 " /></g><g id="bbox:5.2_45.7_5.3_45.8" ><polygon points="414.4,333.4 418.3,333.4 418.3,338.9 414.4,338.9 414.4,333.4 " /></g><g id="bbox:5.3_45.7_5.4_45.8" ><polygon points="418.3,333.4 422.1,333.4 422.1,338.9 418.3,338.9 418.3,333.4 " /></g><g id="bbox:5.4_45.7_5.5_45.8" ><polygon points="422.1,333.4 426.0,333.4 426.0,338.9 422.1,338.9 422.1,333.4 " /></g><g id="bbox:5.5_45.7_5.6_45.8" ><polygon points="426.0,333.4 429.8,333.4 429.8,338.9 426.0,338.9 426.0,333.4 " /></g><g id="bbox:5.6_45.7_5.7_45.8" ><polygon points="429.8,333.4 433.7,333.4 433.7,338.9 429.8,338.9 429.8,333.4 " /></g><g id="bbox:5.7_45.7_5.8_45.8" ><polygon points="433.7,333.4 437.5,333.4 437.5,338.9 433.7,338.9 433.7,333.4 " /></g><g id="bbox:5.8_45.7_5.9_45.8" ><polygon points="437.5,333.4 441.4,333.4 441.4,338.9 437.5,338.9 437.5,333.4 " /></g><g id="bbox:5.9_45.7_6_45.8" ><polygon points="441.4,333.4 445.2,333.4 445.2,338.9 441.4,338.9 441.4,333.4 " /></g><g id="bbox:6_45.7_6.1_45.8" ><polygon points="445.2,333.4 449.1,333.4 449.1,338.9 445.2,338.9 445.2,333.4 " /></g><g id="bbox:6.1_45.7_6.2_45.8" ><polygon points="449.1,333.4 452.9,333.4 452.9,338.9 449.1,338.9 449.1,333.4 " /></g><g id="bbox:6.2_45.7_6.3_45.8" ><polygon points="452.9,333.4 456.8,333.4 456.8,338.9 452.9,338.9 452.9,333.4 " /></g><g id="bbox:6.3_45.7_6.4_45.8" ><polygon points="456.8,333.4 460.6,333.4 460.6,338.9 456.8,338.9 456.8,333.4 " /></g><g id="bbox:6.4_45.7_6.5_45.8" ><polygon points="460.6,333.4 464.5,333.4 464.5,338.9 460.6,338.9 460.6,333.4 " /></g><g id="bbox:6.5_45.7_6.6_45.8" ><polygon points="464.5,333.4 468.3,333.4 468.3,338.9 464.5,338.9 464.5,333.4 " /></g><g id="bbox:6.6_45.7_6.7_45.8" ><polygon points="468.3,333.4 472.2,333.4 472.2,338.9 468.3,338.9 468.3,333.4 " /></g><g id="bbox:6.7_45.7_6.8_45.8" ><polygon points="472.2,333.4 476.0,333.4 476.0,338.9 472.2,338.9 472.2,333.4 " /></g><g id="bbox:6.8_45.7_6.9_45.8" ><polygon points="476.0,333.4 479.9,333.4 479.9,338.9 476.0,338.9 476.0,333.4 " /></g><g id="bbox:-1.3_45.6_-1.2_45.7" ><polygon points="164.3,338.9 168.2,338.9 168.2,344.4 164.3,344.4 164.3,338.9 " /></g><g id="bbox:-1.2_45.6_-1.1_45.7" ><polygon points="168.2,338.9 172.0,338.9 172.0,344.4 168.2,344.4 168.2,338.9 " /></g><g id="bbox:-1.1_45.6_-1_45.7" ><polygon points="172.0,338.9 175.9,338.9 175.9,344.4 172.0,344.4 172.0,338.9 " /></g><g id="bbox:-1_45.6_-0.9_45.7" ><polygon points="175.9,338.9 179.7,338.9 179.7,344.4 175.9,344.4 175.9,338.9 " /></g><g id="bbox:-0.9_45.6_-0.8_45.7" ><polygon points="179.7,338.9 183.6,338.9 183.6,344.4 179.7,344.4 179.7,338.9 " /></g><g id="bbox:-0.8_45.6_-0.7_45.7" ><polygon points="183.6,338.9 187.4,338.9 187.4,344.4 183.6,344.4 183.6,338.9 " /></g><g id="bbox:-0.7_45.6_-0.6_45.7" ><polygon points="187.4,338.9 191.3,338.9 191.3,344.4 187.4,344.4 187.4,338.9 " /></g><g id="bbox:-0.6_45.6_-0.5_45.7" ><polygon points="191.3,338.9 195.1,338.9 195.1,344.4 191.3,344.4 191.3,338.9 " /></g><g id="bbox:-0.5_45.6_-0.4_45.7" ><polygon points="195.1,338.9 198.9,338.9 198.9,344.4 195.1,344.4 195.1,338.9 " /></g><g id="bbox:-0.4_45.6_-0.3_45.7" ><polygon points="198.9,338.9 202.8,338.9 202.8,344.4 198.9,344.4 198.9,338.9 " /></g><g id="bbox:-0.3_45.6_-0.2_45.7" ><polygon points="202.8,338.9 206.6,338.9 206.6,344.4 202.8,344.4 202.8,338.9 " /></g><g id="bbox:-0.2_45.6_-0.1_45.7" ><polygon points="206.6,338.9 210.5,338.9 210.5,344.4 206.6,344.4 206.6,338.9 " /></g><g id="bbox:-0.1_45.6_0_45.7" ><polygon points="210.5,338.9 214.3,338.9 214.3,344.4 210.5,344.4 210.5,338.9 " /></g><g id="bbox:0_45.6_0.1_45.7" ><polygon points="214.3,338.9 218.2,338.9 218.2,344.4 214.3,344.4 214.3,338.9 " /></g><g id="bbox:0.1_45.6_0.2_45.7" ><polygon points="218.2,338.9 222.0,338.9 222.0,344.4 218.2,344.4 218.2,338.9 " /></g><g id="bbox:0.2_45.6_0.3_45.7" ><polygon points="222.0,338.9 225.9,338.9 225.9,344.4 222.0,344.4 222.0,338.9 " /></g><g id="bbox:0.3_45.6_0.4_45.7" ><polygon points="225.9,338.9 229.7,338.9 229.7,344.4 225.9,344.4 225.9,338.9 " /></g><g id="bbox:0.4_45.6_0.5_45.7" ><polygon points="229.7,338.9 233.6,338.9 233.6,344.4 229.7,344.4 229.7,338.9 " /></g><g id="bbox:0.5_45.6_0.6_45.7" ><polygon points="233.6,338.9 237.4,338.9 237.4,344.4 233.6,344.4 233.6,338.9 " /></g><g id="bbox:0.6_45.6_0.7_45.7" ><polygon points="237.4,338.9 241.3,338.9 241.3,344.4 237.4,344.4 237.4,338.9 " /></g><g id="bbox:0.7_45.6_0.8_45.7" ><polygon points="241.3,338.9 245.1,338.9 245.1,344.4 241.3,344.4 241.3,338.9 " /></g><g id="bbox:0.8_45.6_0.9_45.7" ><polygon points="245.1,338.9 249.0,338.9 249.0,344.4 245.1,344.4 245.1,338.9 " /></g><g id="bbox:0.9_45.6_1_45.7" ><polygon points="249.0,338.9 252.8,338.9 252.8,344.4 249.0,344.4 249.0,338.9 " /></g><g id="bbox:1_45.6_1.1_45.7" ><polygon points="252.8,338.9 256.7,338.9 256.7,344.4 252.8,344.4 252.8,338.9 " /></g><g id="bbox:1.1_45.6_1.2_45.7" ><polygon points="256.7,338.9 260.5,338.9 260.5,344.4 256.7,344.4 256.7,338.9 " /></g><g id="bbox:1.2_45.6_1.3_45.7" ><polygon points="260.5,338.9 264.4,338.9 264.4,344.4 260.5,344.4 260.5,338.9 " /></g><g id="bbox:1.3_45.6_1.4_45.7" ><polygon points="264.4,338.9 268.2,338.9 268.2,344.4 264.4,344.4 264.4,338.9 " /></g><g id="bbox:1.4_45.6_1.5_45.7" ><polygon points="268.2,338.9 272.1,338.9 272.1,344.4 268.2,344.4 268.2,338.9 " /></g><g id="bbox:1.5_45.6_1.6_45.7" ><polygon points="272.1,338.9 275.9,338.9 275.9,344.4 272.1,344.4 272.1,338.9 " /></g><g id="bbox:1.6_45.6_1.7_45.7" ><polygon points="275.9,338.9 279.8,338.9 279.8,344.4 275.9,344.4 275.9,338.9 " /></g><g id="bbox:1.7_45.6_1.8_45.7" ><polygon points="279.8,338.9 283.6,338.9 283.6,344.4 279.8,344.4 279.8,338.9 " /></g><g id="bbox:1.8_45.6_1.9_45.7" ><polygon points="283.6,338.9 287.5,338.9 287.5,344.4 283.6,344.4 283.6,338.9 " /></g><g id="bbox:1.9_45.6_2_45.7" ><polygon points="287.5,338.9 291.3,338.9 291.3,344.4 287.5,344.4 287.5,338.9 " /></g><g id="bbox:2_45.6_2.1_45.7" ><polygon points="291.3,338.9 295.2,338.9 295.2,344.4 291.3,344.4 291.3,338.9 " /></g><g id="bbox:2.1_45.6_2.2_45.7" ><polygon points="295.2,338.9 299.0,338.9 299.0,344.4 295.2,344.4 295.2,338.9 " /></g><g id="bbox:2.2_45.6_2.3_45.7" ><polygon points="299.0,338.9 302.8,338.9 302.8,344.4 299.0,344.4 299.0,338.9 " /></g><g id="bbox:2.3_45.6_2.4_45.7" ><polygon points="302.8,338.9 306.7,338.9 306.7,344.4 302.8,344.4 302.8,338.9 " /></g><g id="bbox:2.4_45.6_2.5_45.7" ><polygon points="306.7,338.9 310.5,338.9 310.5,344.4 306.7,344.4 306.7,338.9 " /></g><g id="bbox:2.5_45.6_2.6_45.7" ><polygon points="310.5,338.9 314.4,338.9 314.4,344.4 310.5,344.4 310.5,338.9 " /></g><g id="bbox:2.6_45.6_2.7_45.7" ><polygon points="314.4,338.9 318.2,338.9 318.2,344.4 314.4,344.4 314.4,338.9 " /></g><g id="bbox:2.7_45.6_2.8_45.7" ><polygon points="318.2,338.9 322.1,338.9 322.1,344.4 318.2,344.4 318.2,338.9 " /></g><g id="bbox:2.8_45.6_2.9_45.7" ><polygon points="322.1,338.9 325.9,338.9 325.9,344.4 322.1,344.4 322.1,338.9 " /></g><g id="bbox:2.9_45.6_3_45.7" ><polygon points="325.9,338.9 329.8,338.9 329.8,344.4 325.9,344.4 325.9,338.9 " /></g><g id="bbox:3_45.6_3.1_45.7" ><polygon points="329.8,338.9 333.6,338.9 333.6,344.4 329.8,344.4 329.8,338.9 " /></g><g id="bbox:3.1_45.6_3.2_45.7" ><polygon points="333.6,338.9 337.5,338.9 337.5,344.4 333.6,344.4 333.6,338.9 " /></g><g id="bbox:3.2_45.6_3.3_45.7" ><polygon points="337.5,338.9 341.3,338.9 341.3,344.4 337.5,344.4 337.5,338.9 " /></g><g id="bbox:3.3_45.6_3.4_45.7" ><polygon points="341.3,338.9 345.2,338.9 345.2,344.4 341.3,344.4 341.3,338.9 " /></g><g id="bbox:3.4_45.6_3.5_45.7" ><polygon points="345.2,338.9 349.0,338.9 349.0,344.4 345.2,344.4 345.2,338.9 " /></g><g id="bbox:3.5_45.6_3.6_45.7" ><polygon points="349.0,338.9 352.9,338.9 352.9,344.4 349.0,344.4 349.0,338.9 " /></g><g id="bbox:3.6_45.6_3.7_45.7" ><polygon points="352.9,338.9 356.7,338.9 356.7,344.4 352.9,344.4 352.9,338.9 " /></g><g id="bbox:3.7_45.6_3.8_45.7" ><polygon points="356.7,338.9 360.6,338.9 360.6,344.4 356.7,344.4 356.7,338.9 " /></g><g id="bbox:3.8_45.6_3.9_45.7" ><polygon points="360.6,338.9 364.4,338.9 364.4,344.4 360.6,344.4 360.6,338.9 " /></g><g id="bbox:3.9_45.6_4_45.7" ><polygon points="364.4,338.9 368.3,338.9 368.3,344.4 364.4,344.4 364.4,338.9 " /></g><g id="bbox:4_45.6_4.1_45.7" ><polygon points="368.3,338.9 372.1,338.9 372.1,344.4 368.3,344.4 368.3,338.9 " /></g><g id="bbox:4.1_45.6_4.2_45.7" ><polygon points="372.1,338.9 376.0,338.9 376.0,344.4 372.1,344.4 372.1,338.9 " /></g><g id="bbox:4.2_45.6_4.3_45.7" ><polygon points="376.0,338.9 379.8,338.9 379.8,344.4 376.0,344.4 376.0,338.9 " /></g><g id="bbox:4.3_45.6_4.4_45.7" ><polygon points="379.8,338.9 383.7,338.9 383.7,344.4 379.8,344.4 379.8,338.9 " /></g><g id="bbox:4.4_45.6_4.5_45.7" ><polygon points="383.7,338.9 387.5,338.9 387.5,344.4 383.7,344.4 383.7,338.9 " /></g><g id="bbox:4.5_45.6_4.6_45.7" ><polygon points="387.5,338.9 391.4,338.9 391.4,344.4 387.5,344.4 387.5,338.9 " /></g><g id="bbox:4.6_45.6_4.7_45.7" ><polygon points="391.4,338.9 395.2,338.9 395.2,344.4 391.4,344.4 391.4,338.9 " /></g><g id="bbox:4.7_45.6_4.8_45.7" ><polygon points="395.2,338.9 399.1,338.9 399.1,344.4 395.2,344.4 395.2,338.9 " /></g><g id="bbox:4.8_45.6_4.9_45.7" ><polygon points="399.1,338.9 402.9,338.9 402.9,344.4 399.1,344.4 399.1,338.9 " /></g><g id="bbox:4.9_45.6_5_45.7" ><polygon points="402.9,338.9 406.7,338.9 406.7,344.4 402.9,344.4 402.9,338.9 " /></g><g id="bbox:5_45.6_5.1_45.7" ><polygon points="406.7,338.9 410.6,338.9 410.6,344.4 406.7,344.4 406.7,338.9 " /></g><g id="bbox:5.1_45.6_5.2_45.7" ><polygon points="410.6,338.9 414.4,338.9 414.4,344.4 410.6,344.4 410.6,338.9 " /></g><g id="bbox:5.2_45.6_5.3_45.7" ><polygon points="414.4,338.9 418.3,338.9 418.3,344.4 414.4,344.4 414.4,338.9 " /></g><g id="bbox:5.3_45.6_5.4_45.7" ><polygon points="418.3,338.9 422.1,338.9 422.1,344.4 418.3,344.4 418.3,338.9 " /></g><g id="bbox:5.4_45.6_5.5_45.7" ><polygon points="422.1,338.9 426.0,338.9 426.0,344.4 422.1,344.4 422.1,338.9 " /></g><g id="bbox:5.5_45.6_5.6_45.7" ><polygon points="426.0,338.9 429.8,338.9 429.8,344.4 426.0,344.4 426.0,338.9 " /></g><g id="bbox:5.6_45.6_5.7_45.7" ><polygon points="429.8,338.9 433.7,338.9 433.7,344.4 429.8,344.4 429.8,338.9 " /></g><g id="bbox:5.7_45.6_5.8_45.7" ><polygon points="433.7,338.9 437.5,338.9 437.5,344.4 433.7,344.4 433.7,338.9 " /></g><g id="bbox:5.8_45.6_5.9_45.7" ><polygon points="437.5,338.9 441.4,338.9 441.4,344.4 437.5,344.4 437.5,338.9 " /></g><g id="bbox:5.9_45.6_6_45.7" ><polygon points="441.4,338.9 445.2,338.9 445.2,344.4 441.4,344.4 441.4,338.9 " /></g><g id="bbox:6_45.6_6.1_45.7" ><polygon points="445.2,338.9 449.1,338.9 449.1,344.4 445.2,344.4 445.2,338.9 " /></g><g id="bbox:6.1_45.6_6.2_45.7" ><polygon points="449.1,338.9 452.9,338.9 452.9,344.4 449.1,344.4 449.1,338.9 " /></g><g id="bbox:6.2_45.6_6.3_45.7" ><polygon points="452.9,338.9 456.8,338.9 456.8,344.4 452.9,344.4 452.9,338.9 " /></g><g id="bbox:6.3_45.6_6.4_45.7" ><polygon points="456.8,338.9 460.6,338.9 460.6,344.4 456.8,344.4 456.8,338.9 " /></g><g id="bbox:6.4_45.6_6.5_45.7" ><polygon points="460.6,338.9 464.5,338.9 464.5,344.4 460.6,344.4 460.6,338.9 " /></g><g id="bbox:6.5_45.6_6.6_45.7" ><polygon points="464.5,338.9 468.3,338.9 468.3,344.4 464.5,344.4 464.5,338.9 " /></g><g id="bbox:6.6_45.6_6.7_45.7" ><polygon points="468.3,338.9 472.2,338.9 472.2,344.4 468.3,344.4 468.3,338.9 " /></g><g id="bbox:6.7_45.6_6.8_45.7" ><polygon points="472.2,338.9 476.0,338.9 476.0,344.4 472.2,344.4 472.2,338.9 " /></g><g id="bbox:6.8_45.6_6.9_45.7" ><polygon points="476.0,338.9 479.9,338.9 479.9,344.4 476.0,344.4 476.0,338.9 " /></g><g id="bbox:6.9_45.6_7_45.7" ><polygon points="479.9,338.9 483.7,338.9 483.7,344.4 479.9,344.4 479.9,338.9 " /></g><g id="bbox:7_45.6_7.1_45.7" ><polygon points="483.7,338.9 487.6,338.9 487.6,344.4 483.7,344.4 483.7,338.9 " /></g><g id="bbox:-1.2_45.5_-1.1_45.6" ><polygon points="168.2,344.4 172.0,344.4 172.0,349.9 168.2,349.9 168.2,344.4 " /></g><g id="bbox:-1.1_45.5_-1_45.6" ><polygon points="172.0,344.4 175.9,344.4 175.9,349.9 172.0,349.9 172.0,344.4 " /></g><g id="bbox:-1_45.5_-0.9_45.6" ><polygon points="175.9,344.4 179.7,344.4 179.7,349.9 175.9,349.9 175.9,344.4 " /></g><g id="bbox:-0.9_45.5_-0.8_45.6" ><polygon points="179.7,344.4 183.6,344.4 183.6,349.9 179.7,349.9 179.7,344.4 " /></g><g id="bbox:-0.8_45.5_-0.7_45.6" ><polygon points="183.6,344.4 187.4,344.4 187.4,349.9 183.6,349.9 183.6,344.4 " /></g><g id="bbox:-0.7_45.5_-0.6_45.6" ><polygon points="187.4,344.4 191.3,344.4 191.3,349.9 187.4,349.9 187.4,344.4 " /></g><g id="bbox:-0.6_45.5_-0.5_45.6" ><polygon points="191.3,344.4 195.1,344.4 195.1,349.9 191.3,349.9 191.3,344.4 " /></g><g id="bbox:-0.5_45.5_-0.4_45.6" ><polygon points="195.1,344.4 198.9,344.4 198.9,349.9 195.1,349.9 195.1,344.4 " /></g><g id="bbox:-0.4_45.5_-0.3_45.6" ><polygon points="198.9,344.4 202.8,344.4 202.8,349.9 198.9,349.9 198.9,344.4 " /></g><g id="bbox:-0.3_45.5_-0.2_45.6" ><polygon points="202.8,344.4 206.6,344.4 206.6,349.9 202.8,349.9 202.8,344.4 " /></g><g id="bbox:-0.2_45.5_-0.1_45.6" ><polygon points="206.6,344.4 210.5,344.4 210.5,349.9 206.6,349.9 206.6,344.4 " /></g><g id="bbox:-0.1_45.5_0_45.6" ><polygon points="210.5,344.4 214.3,344.4 214.3,349.9 210.5,349.9 210.5,344.4 " /></g><g id="bbox:0_45.5_0.1_45.6" ><polygon points="214.3,344.4 218.2,344.4 218.2,349.9 214.3,349.9 214.3,344.4 " /></g><g id="bbox:0.1_45.5_0.2_45.6" ><polygon points="218.2,344.4 222.0,344.4 222.0,349.9 218.2,349.9 218.2,344.4 " /></g><g id="bbox:0.2_45.5_0.3_45.6" ><polygon points="222.0,344.4 225.9,344.4 225.9,349.9 222.0,349.9 222.0,344.4 " /></g><g id="bbox:0.3_45.5_0.4_45.6" ><polygon points="225.9,344.4 229.7,344.4 229.7,349.9 225.9,349.9 225.9,344.4 " /></g><g id="bbox:0.4_45.5_0.5_45.6" ><polygon points="229.7,344.4 233.6,344.4 233.6,349.9 229.7,349.9 229.7,344.4 " /></g><g id="bbox:0.5_45.5_0.6_45.6" ><polygon points="233.6,344.4 237.4,344.4 237.4,349.9 233.6,349.9 233.6,344.4 " /></g><g id="bbox:0.6_45.5_0.7_45.6" ><polygon points="237.4,344.4 241.3,344.4 241.3,349.9 237.4,349.9 237.4,344.4 " /></g><g id="bbox:0.7_45.5_0.8_45.6" ><polygon points="241.3,344.4 245.1,344.4 245.1,349.9 241.3,349.9 241.3,344.4 " /></g><g id="bbox:0.8_45.5_0.9_45.6" ><polygon points="245.1,344.4 249.0,344.4 249.0,349.9 245.1,349.9 245.1,344.4 " /></g><g id="bbox:0.9_45.5_1_45.6" ><polygon points="249.0,344.4 252.8,344.4 252.8,349.9 249.0,349.9 249.0,344.4 " /></g><g id="bbox:1_45.5_1.1_45.6" ><polygon points="252.8,344.4 256.7,344.4 256.7,349.9 252.8,349.9 252.8,344.4 " /></g><g id="bbox:1.1_45.5_1.2_45.6" ><polygon points="256.7,344.4 260.5,344.4 260.5,349.9 256.7,349.9 256.7,344.4 " /></g><g id="bbox:1.2_45.5_1.3_45.6" ><polygon points="260.5,344.4 264.4,344.4 264.4,349.9 260.5,349.9 260.5,344.4 " /></g><g id="bbox:1.3_45.5_1.4_45.6" ><polygon points="264.4,344.4 268.2,344.4 268.2,349.9 264.4,349.9 264.4,344.4 " /></g><g id="bbox:1.4_45.5_1.5_45.6" ><polygon points="268.2,344.4 272.1,344.4 272.1,349.9 268.2,349.9 268.2,344.4 " /></g><g id="bbox:1.5_45.5_1.6_45.6" ><polygon points="272.1,344.4 275.9,344.4 275.9,349.9 272.1,349.9 272.1,344.4 " /></g><g id="bbox:1.6_45.5_1.7_45.6" ><polygon points="275.9,344.4 279.8,344.4 279.8,349.9 275.9,349.9 275.9,344.4 " /></g><g id="bbox:1.7_45.5_1.8_45.6" ><polygon points="279.8,344.4 283.6,344.4 283.6,349.9 279.8,349.9 279.8,344.4 " /></g><g id="bbox:1.8_45.5_1.9_45.6" ><polygon points="283.6,344.4 287.5,344.4 287.5,349.9 283.6,349.9 283.6,344.4 " /></g><g id="bbox:1.9_45.5_2_45.6" ><polygon points="287.5,344.4 291.3,344.4 291.3,349.9 287.5,349.9 287.5,344.4 " /></g><g id="bbox:2_45.5_2.1_45.6" ><polygon points="291.3,344.4 295.2,344.4 295.2,349.9 291.3,349.9 291.3,344.4 " /></g><g id="bbox:2.1_45.5_2.2_45.6" ><polygon points="295.2,344.4 299.0,344.4 299.0,349.9 295.2,349.9 295.2,344.4 " /></g><g id="bbox:2.2_45.5_2.3_45.6" ><polygon points="299.0,344.4 302.8,344.4 302.8,349.9 299.0,349.9 299.0,344.4 " /></g><g id="bbox:2.3_45.5_2.4_45.6" ><polygon points="302.8,344.4 306.7,344.4 306.7,349.9 302.8,349.9 302.8,344.4 " /></g><g id="bbox:2.4_45.5_2.5_45.6" ><polygon points="306.7,344.4 310.5,344.4 310.5,349.9 306.7,349.9 306.7,344.4 " /></g><g id="bbox:2.5_45.5_2.6_45.6" ><polygon points="310.5,344.4 314.4,344.4 314.4,349.9 310.5,349.9 310.5,344.4 " /></g><g id="bbox:2.6_45.5_2.7_45.6" ><polygon points="314.4,344.4 318.2,344.4 318.2,349.9 314.4,349.9 314.4,344.4 " /></g><g id="bbox:2.7_45.5_2.8_45.6" ><polygon points="318.2,344.4 322.1,344.4 322.1,349.9 318.2,349.9 318.2,344.4 " /></g><g id="bbox:2.8_45.5_2.9_45.6" ><polygon points="322.1,344.4 325.9,344.4 325.9,349.9 322.1,349.9 322.1,344.4 " /></g><g id="bbox:2.9_45.5_3_45.6" ><polygon points="325.9,344.4 329.8,344.4 329.8,349.9 325.9,349.9 325.9,344.4 " /></g><g id="bbox:3_45.5_3.1_45.6" ><polygon points="329.8,344.4 333.6,344.4 333.6,349.9 329.8,349.9 329.8,344.4 " /></g><g id="bbox:3.1_45.5_3.2_45.6" ><polygon points="333.6,344.4 337.5,344.4 337.5,349.9 333.6,349.9 333.6,344.4 " /></g><g id="bbox:3.2_45.5_3.3_45.6" ><polygon points="337.5,344.4 341.3,344.4 341.3,349.9 337.5,349.9 337.5,344.4 " /></g><g id="bbox:3.3_45.5_3.4_45.6" ><polygon points="341.3,344.4 345.2,344.4 345.2,349.9 341.3,349.9 341.3,344.4 " /></g><g id="bbox:3.4_45.5_3.5_45.6" ><polygon points="345.2,344.4 349.0,344.4 349.0,349.9 345.2,349.9 345.2,344.4 " /></g><g id="bbox:3.5_45.5_3.6_45.6" ><polygon points="349.0,344.4 352.9,344.4 352.9,349.9 349.0,349.9 349.0,344.4 " /></g><g id="bbox:3.6_45.5_3.7_45.6" ><polygon points="352.9,344.4 356.7,344.4 356.7,349.9 352.9,349.9 352.9,344.4 " /></g><g id="bbox:3.7_45.5_3.8_45.6" ><polygon points="356.7,344.4 360.6,344.4 360.6,349.9 356.7,349.9 356.7,344.4 " /></g><g id="bbox:3.8_45.5_3.9_45.6" ><polygon points="360.6,344.4 364.4,344.4 364.4,349.9 360.6,349.9 360.6,344.4 " /></g><g id="bbox:3.9_45.5_4_45.6" ><polygon points="364.4,344.4 368.3,344.4 368.3,349.9 364.4,349.9 364.4,344.4 " /></g><g id="bbox:4_45.5_4.1_45.6" ><polygon points="368.3,344.4 372.1,344.4 372.1,349.9 368.3,349.9 368.3,344.4 " /></g><g id="bbox:4.1_45.5_4.2_45.6" ><polygon points="372.1,344.4 376.0,344.4 376.0,349.9 372.1,349.9 372.1,344.4 " /></g><g id="bbox:4.2_45.5_4.3_45.6" ><polygon points="376.0,344.4 379.8,344.4 379.8,349.9 376.0,349.9 376.0,344.4 " /></g><g id="bbox:4.3_45.5_4.4_45.6" ><polygon points="379.8,344.4 383.7,344.4 383.7,349.9 379.8,349.9 379.8,344.4 " /></g><g id="bbox:4.4_45.5_4.5_45.6" ><polygon points="383.7,344.4 387.5,344.4 387.5,349.9 383.7,349.9 383.7,344.4 " /></g><g id="bbox:4.5_45.5_4.6_45.6" ><polygon points="387.5,344.4 391.4,344.4 391.4,349.9 387.5,349.9 387.5,344.4 " /></g><g id="bbox:4.6_45.5_4.7_45.6" ><polygon points="391.4,344.4 395.2,344.4 395.2,349.9 391.4,349.9 391.4,344.4 " /></g><g id="bbox:4.7_45.5_4.8_45.6" ><polygon points="395.2,344.4 399.1,344.4 399.1,349.9 395.2,349.9 395.2,344.4 " /></g><g id="bbox:4.8_45.5_4.9_45.6" ><polygon points="399.1,344.4 402.9,344.4 402.9,349.9 399.1,349.9 399.1,344.4 " /></g><g id="bbox:4.9_45.5_5_45.6" ><polygon points="402.9,344.4 406.7,344.4 406.7,349.9 402.9,349.9 402.9,344.4 " /></g><g id="bbox:5_45.5_5.1_45.6" ><polygon points="406.7,344.4 410.6,344.4 410.6,349.9 406.7,349.9 406.7,344.4 " /></g><g id="bbox:5.1_45.5_5.2_45.6" ><polygon points="410.6,344.4 414.4,344.4 414.4,349.9 410.6,349.9 410.6,344.4 " /></g><g id="bbox:5.2_45.5_5.3_45.6" ><polygon points="414.4,344.4 418.3,344.4 418.3,349.9 414.4,349.9 414.4,344.4 " /></g><g id="bbox:5.3_45.5_5.4_45.6" ><polygon points="418.3,344.4 422.1,344.4 422.1,349.9 418.3,349.9 418.3,344.4 " /></g><g id="bbox:5.4_45.5_5.5_45.6" ><polygon points="422.1,344.4 426.0,344.4 426.0,349.9 422.1,349.9 422.1,344.4 " /></g><g id="bbox:5.5_45.5_5.6_45.6" ><polygon points="426.0,344.4 429.8,344.4 429.8,349.9 426.0,349.9 426.0,344.4 " /></g><g id="bbox:5.6_45.5_5.7_45.6" ><polygon points="429.8,344.4 433.7,344.4 433.7,349.9 429.8,349.9 429.8,344.4 " /></g><g id="bbox:5.7_45.5_5.8_45.6" ><polygon points="433.7,344.4 437.5,344.4 437.5,349.9 433.7,349.9 433.7,344.4 " /></g><g id="bbox:5.8_45.5_5.9_45.6" ><polygon points="437.5,344.4 441.4,344.4 441.4,349.9 437.5,349.9 437.5,344.4 " /></g><g id="bbox:5.9_45.5_6_45.6" ><polygon points="441.4,344.4 445.2,344.4 445.2,349.9 441.4,349.9 441.4,344.4 " /></g><g id="bbox:6_45.5_6.1_45.6" ><polygon points="445.2,344.4 449.1,344.4 449.1,349.9 445.2,349.9 445.2,344.4 " /></g><g id="bbox:6.1_45.5_6.2_45.6" ><polygon points="449.1,344.4 452.9,344.4 452.9,349.9 449.1,349.9 449.1,344.4 " /></g><g id="bbox:6.2_45.5_6.3_45.6" ><polygon points="452.9,344.4 456.8,344.4 456.8,349.9 452.9,349.9 452.9,344.4 " /></g><g id="bbox:6.3_45.5_6.4_45.6" ><polygon points="456.8,344.4 460.6,344.4 460.6,349.9 456.8,349.9 456.8,344.4 " /></g><g id="bbox:6.4_45.5_6.5_45.6" ><polygon points="460.6,344.4 464.5,344.4 464.5,349.9 460.6,349.9 460.6,344.4 " /></g><g id="bbox:6.5_45.5_6.6_45.6" ><polygon points="464.5,344.4 468.3,344.4 468.3,349.9 464.5,349.9 464.5,344.4 " /></g><g id="bbox:6.6_45.5_6.7_45.6" ><polygon points="468.3,344.4 472.2,344.4 472.2,349.9 468.3,349.9 468.3,344.4 " /></g><g id="bbox:6.7_45.5_6.8_45.6" ><polygon points="472.2,344.4 476.0,344.4 476.0,349.9 472.2,349.9 472.2,344.4 " /></g><g id="bbox:6.8_45.5_6.9_45.6" ><polygon points="476.0,344.4 479.9,344.4 479.9,349.9 476.0,349.9 476.0,344.4 " /></g><g id="bbox:6.9_45.5_7_45.6" ><polygon points="479.9,344.4 483.7,344.4 483.7,349.9 479.9,349.9 479.9,344.4 " /></g><g id="bbox:7_45.5_7.1_45.6" ><polygon points="483.7,344.4 487.6,344.4 487.6,349.9 483.7,349.9 483.7,344.4 " /></g><g id="bbox:-1.2_45.4_-1.1_45.5" ><polygon points="168.2,349.9 172.0,349.9 172.0,355.4 168.2,355.4 168.2,349.9 " /></g><g id="bbox:-1.1_45.4_-1_45.5" ><polygon points="172.0,349.9 175.9,349.9 175.9,355.4 172.0,355.4 172.0,349.9 " /></g><g id="bbox:-1_45.4_-0.9_45.5" ><polygon points="175.9,349.9 179.7,349.9 179.7,355.4 175.9,355.4 175.9,349.9 " /></g><g id="bbox:-0.9_45.4_-0.8_45.5" ><polygon points="179.7,349.9 183.6,349.9 183.6,355.4 179.7,355.4 179.7,349.9 " /></g><g id="bbox:-0.8_45.4_-0.7_45.5" ><polygon points="183.6,349.9 187.4,349.9 187.4,355.4 183.6,355.4 183.6,349.9 " /></g><g id="bbox:-0.7_45.4_-0.6_45.5" ><polygon points="187.4,349.9 191.3,349.9 191.3,355.4 187.4,355.4 187.4,349.9 " /></g><g id="bbox:-0.6_45.4_-0.5_45.5" ><polygon points="191.3,349.9 195.1,349.9 195.1,355.4 191.3,355.4 191.3,349.9 " /></g><g id="bbox:-0.5_45.4_-0.4_45.5" ><polygon points="195.1,349.9 198.9,349.9 198.9,355.4 195.1,355.4 195.1,349.9 " /></g><g id="bbox:-0.4_45.4_-0.3_45.5" ><polygon points="198.9,349.9 202.8,349.9 202.8,355.4 198.9,355.4 198.9,349.9 " /></g><g id="bbox:-0.3_45.4_-0.2_45.5" ><polygon points="202.8,349.9 206.6,349.9 206.6,355.4 202.8,355.4 202.8,349.9 " /></g><g id="bbox:-0.2_45.4_-0.1_45.5" ><polygon points="206.6,349.9 210.5,349.9 210.5,355.4 206.6,355.4 206.6,349.9 " /></g><g id="bbox:-0.1_45.4_0_45.5" ><polygon points="210.5,349.9 214.3,349.9 214.3,355.4 210.5,355.4 210.5,349.9 " /></g><g id="bbox:0_45.4_0.1_45.5" ><polygon points="214.3,349.9 218.2,349.9 218.2,355.4 214.3,355.4 214.3,349.9 " /></g><g id="bbox:0.1_45.4_0.2_45.5" ><polygon points="218.2,349.9 222.0,349.9 222.0,355.4 218.2,355.4 218.2,349.9 " /></g><g id="bbox:0.2_45.4_0.3_45.5" ><polygon points="222.0,349.9 225.9,349.9 225.9,355.4 222.0,355.4 222.0,349.9 " /></g><g id="bbox:0.3_45.4_0.4_45.5" ><polygon points="225.9,349.9 229.7,349.9 229.7,355.4 225.9,355.4 225.9,349.9 " /></g><g id="bbox:0.4_45.4_0.5_45.5" ><polygon points="229.7,349.9 233.6,349.9 233.6,355.4 229.7,355.4 229.7,349.9 " /></g><g id="bbox:0.5_45.4_0.6_45.5" ><polygon points="233.6,349.9 237.4,349.9 237.4,355.4 233.6,355.4 233.6,349.9 " /></g><g id="bbox:0.6_45.4_0.7_45.5" ><polygon points="237.4,349.9 241.3,349.9 241.3,355.4 237.4,355.4 237.4,349.9 " /></g><g id="bbox:0.7_45.4_0.8_45.5" ><polygon points="241.3,349.9 245.1,349.9 245.1,355.4 241.3,355.4 241.3,349.9 " /></g><g id="bbox:0.8_45.4_0.9_45.5" ><polygon points="245.1,349.9 249.0,349.9 249.0,355.4 245.1,355.4 245.1,349.9 " /></g><g id="bbox:0.9_45.4_1_45.5" ><polygon points="249.0,349.9 252.8,349.9 252.8,355.4 249.0,355.4 249.0,349.9 " /></g><g id="bbox:1_45.4_1.1_45.5" ><polygon points="252.8,349.9 256.7,349.9 256.7,355.4 252.8,355.4 252.8,349.9 " /></g><g id="bbox:1.1_45.4_1.2_45.5" ><polygon points="256.7,349.9 260.5,349.9 260.5,355.4 256.7,355.4 256.7,349.9 " /></g><g id="bbox:1.2_45.4_1.3_45.5" ><polygon points="260.5,349.9 264.4,349.9 264.4,355.4 260.5,355.4 260.5,349.9 " /></g><g id="bbox:1.3_45.4_1.4_45.5" ><polygon points="264.4,349.9 268.2,349.9 268.2,355.4 264.4,355.4 264.4,349.9 " /></g><g id="bbox:1.4_45.4_1.5_45.5" ><polygon points="268.2,349.9 272.1,349.9 272.1,355.4 268.2,355.4 268.2,349.9 " /></g><g id="bbox:1.5_45.4_1.6_45.5" ><polygon points="272.1,349.9 275.9,349.9 275.9,355.4 272.1,355.4 272.1,349.9 " /></g><g id="bbox:1.6_45.4_1.7_45.5" ><polygon points="275.9,349.9 279.8,349.9 279.8,355.4 275.9,355.4 275.9,349.9 " /></g><g id="bbox:1.7_45.4_1.8_45.5" ><polygon points="279.8,349.9 283.6,349.9 283.6,355.4 279.8,355.4 279.8,349.9 " /></g><g id="bbox:1.8_45.4_1.9_45.5" ><polygon points="283.6,349.9 287.5,349.9 287.5,355.4 283.6,355.4 283.6,349.9 " /></g><g id="bbox:1.9_45.4_2_45.5" ><polygon points="287.5,349.9 291.3,349.9 291.3,355.4 287.5,355.4 287.5,349.9 " /></g><g id="bbox:2_45.4_2.1_45.5" ><polygon points="291.3,349.9 295.2,349.9 295.2,355.4 291.3,355.4 291.3,349.9 " /></g><g id="bbox:2.1_45.4_2.2_45.5" ><polygon points="295.2,349.9 299.0,349.9 299.0,355.4 295.2,355.4 295.2,349.9 " /></g><g id="bbox:2.2_45.4_2.3_45.5" ><polygon points="299.0,349.9 302.8,349.9 302.8,355.4 299.0,355.4 299.0,349.9 " /></g><g id="bbox:2.3_45.4_2.4_45.5" ><polygon points="302.8,349.9 306.7,349.9 306.7,355.4 302.8,355.4 302.8,349.9 " /></g><g id="bbox:2.4_45.4_2.5_45.5" ><polygon points="306.7,349.9 310.5,349.9 310.5,355.4 306.7,355.4 306.7,349.9 " /></g><g id="bbox:2.5_45.4_2.6_45.5" ><polygon points="310.5,349.9 314.4,349.9 314.4,355.4 310.5,355.4 310.5,349.9 " /></g><g id="bbox:2.6_45.4_2.7_45.5" ><polygon points="314.4,349.9 318.2,349.9 318.2,355.4 314.4,355.4 314.4,349.9 " /></g><g id="bbox:2.7_45.4_2.8_45.5" ><polygon points="318.2,349.9 322.1,349.9 322.1,355.4 318.2,355.4 318.2,349.9 " /></g><g id="bbox:2.8_45.4_2.9_45.5" ><polygon points="322.1,349.9 325.9,349.9 325.9,355.4 322.1,355.4 322.1,349.9 " /></g><g id="bbox:2.9_45.4_3_45.5" ><polygon points="325.9,349.9 329.8,349.9 329.8,355.4 325.9,355.4 325.9,349.9 " /></g><g id="bbox:3_45.4_3.1_45.5" ><polygon points="329.8,349.9 333.6,349.9 333.6,355.4 329.8,355.4 329.8,349.9 " /></g><g id="bbox:3.1_45.4_3.2_45.5" ><polygon points="333.6,349.9 337.5,349.9 337.5,355.4 333.6,355.4 333.6,349.9 " /></g><g id="bbox:3.2_45.4_3.3_45.5" ><polygon points="337.5,349.9 341.3,349.9 341.3,355.4 337.5,355.4 337.5,349.9 " /></g><g id="bbox:3.3_45.4_3.4_45.5" ><polygon points="341.3,349.9 345.2,349.9 345.2,355.4 341.3,355.4 341.3,349.9 " /></g><g id="bbox:3.4_45.4_3.5_45.5" ><polygon points="345.2,349.9 349.0,349.9 349.0,355.4 345.2,355.4 345.2,349.9 " /></g><g id="bbox:3.5_45.4_3.6_45.5" ><polygon points="349.0,349.9 352.9,349.9 352.9,355.4 349.0,355.4 349.0,349.9 " /></g><g id="bbox:3.6_45.4_3.7_45.5" ><polygon points="352.9,349.9 356.7,349.9 356.7,355.4 352.9,355.4 352.9,349.9 " /></g><g id="bbox:3.7_45.4_3.8_45.5" ><polygon points="356.7,349.9 360.6,349.9 360.6,355.4 356.7,355.4 356.7,349.9 " /></g><g id="bbox:3.8_45.4_3.9_45.5" ><polygon points="360.6,349.9 364.4,349.9 364.4,355.4 360.6,355.4 360.6,349.9 " /></g><g id="bbox:3.9_45.4_4_45.5" ><polygon points="364.4,349.9 368.3,349.9 368.3,355.4 364.4,355.4 364.4,349.9 " /></g><g id="bbox:4_45.4_4.1_45.5" ><polygon points="368.3,349.9 372.1,349.9 372.1,355.4 368.3,355.4 368.3,349.9 " /></g><g id="bbox:4.1_45.4_4.2_45.5" ><polygon points="372.1,349.9 376.0,349.9 376.0,355.4 372.1,355.4 372.1,349.9 " /></g><g id="bbox:4.2_45.4_4.3_45.5" ><polygon points="376.0,349.9 379.8,349.9 379.8,355.4 376.0,355.4 376.0,349.9 " /></g><g id="bbox:4.3_45.4_4.4_45.5" ><polygon points="379.8,349.9 383.7,349.9 383.7,355.4 379.8,355.4 379.8,349.9 " /></g><g id="bbox:4.4_45.4_4.5_45.5" ><polygon points="383.7,349.9 387.5,349.9 387.5,355.4 383.7,355.4 383.7,349.9 " /></g><g id="bbox:4.5_45.4_4.6_45.5" ><polygon points="387.5,349.9 391.4,349.9 391.4,355.4 387.5,355.4 387.5,349.9 " /></g><g id="bbox:4.6_45.4_4.7_45.5" ><polygon points="391.4,349.9 395.2,349.9 395.2,355.4 391.4,355.4 391.4,349.9 " /></g><g id="bbox:4.7_45.4_4.8_45.5" ><polygon points="395.2,349.9 399.1,349.9 399.1,355.4 395.2,355.4 395.2,349.9 " /></g><g id="bbox:4.8_45.4_4.9_45.5" ><polygon points="399.1,349.9 402.9,349.9 402.9,355.4 399.1,355.4 399.1,349.9 " /></g><g id="bbox:4.9_45.4_5_45.5" ><polygon points="402.9,349.9 406.7,349.9 406.7,355.4 402.9,355.4 402.9,349.9 " /></g><g id="bbox:5_45.4_5.1_45.5" ><polygon points="406.7,349.9 410.6,349.9 410.6,355.4 406.7,355.4 406.7,349.9 " /></g><g id="bbox:5.1_45.4_5.2_45.5" ><polygon points="410.6,349.9 414.4,349.9 414.4,355.4 410.6,355.4 410.6,349.9 " /></g><g id="bbox:5.2_45.4_5.3_45.5" ><polygon points="414.4,349.9 418.3,349.9 418.3,355.4 414.4,355.4 414.4,349.9 " /></g><g id="bbox:5.3_45.4_5.4_45.5" ><polygon points="418.3,349.9 422.1,349.9 422.1,355.4 418.3,355.4 418.3,349.9 " /></g><g id="bbox:5.4_45.4_5.5_45.5" ><polygon points="422.1,349.9 426.0,349.9 426.0,355.4 422.1,355.4 422.1,349.9 " /></g><g id="bbox:5.5_45.4_5.6_45.5" ><polygon points="426.0,349.9 429.8,349.9 429.8,355.4 426.0,355.4 426.0,349.9 " /></g><g id="bbox:5.6_45.4_5.7_45.5" ><polygon points="429.8,349.9 433.7,349.9 433.7,355.4 429.8,355.4 429.8,349.9 " /></g><g id="bbox:5.7_45.4_5.8_45.5" ><polygon points="433.7,349.9 437.5,349.9 437.5,355.4 433.7,355.4 433.7,349.9 " /></g><g id="bbox:5.8_45.4_5.9_45.5" ><polygon points="437.5,349.9 441.4,349.9 441.4,355.4 437.5,355.4 437.5,349.9 " /></g><g id="bbox:5.9_45.4_6_45.5" ><polygon points="441.4,349.9 445.2,349.9 445.2,355.4 441.4,355.4 441.4,349.9 " /></g><g id="bbox:6_45.4_6.1_45.5" ><polygon points="445.2,349.9 449.1,349.9 449.1,355.4 445.2,355.4 445.2,349.9 " /></g><g id="bbox:6.1_45.4_6.2_45.5" ><polygon points="449.1,349.9 452.9,349.9 452.9,355.4 449.1,355.4 449.1,349.9 " /></g><g id="bbox:6.2_45.4_6.3_45.5" ><polygon points="452.9,349.9 456.8,349.9 456.8,355.4 452.9,355.4 452.9,349.9 " /></g><g id="bbox:6.3_45.4_6.4_45.5" ><polygon points="456.8,349.9 460.6,349.9 460.6,355.4 456.8,355.4 456.8,349.9 " /></g><g id="bbox:6.4_45.4_6.5_45.5" ><polygon points="460.6,349.9 464.5,349.9 464.5,355.4 460.6,355.4 460.6,349.9 " /></g><g id="bbox:6.5_45.4_6.6_45.5" ><polygon points="464.5,349.9 468.3,349.9 468.3,355.4 464.5,355.4 464.5,349.9 " /></g><g id="bbox:6.6_45.4_6.7_45.5" ><polygon points="468.3,349.9 472.2,349.9 472.2,355.4 468.3,355.4 468.3,349.9 " /></g><g id="bbox:6.7_45.4_6.8_45.5" ><polygon points="472.2,349.9 476.0,349.9 476.0,355.4 472.2,355.4 472.2,349.9 " /></g><g id="bbox:6.8_45.4_6.9_45.5" ><polygon points="476.0,349.9 479.9,349.9 479.9,355.4 476.0,355.4 476.0,349.9 " /></g><g id="bbox:6.9_45.4_7_45.5" ><polygon points="479.9,349.9 483.7,349.9 483.7,355.4 479.9,355.4 479.9,349.9 " /></g><g id="bbox:7_45.4_7.1_45.5" ><polygon points="483.7,349.9 487.6,349.9 487.6,355.4 483.7,355.4 483.7,349.9 " /></g><g id="bbox:7.1_45.4_7.2_45.5" ><polygon points="487.6,349.9 491.4,349.9 491.4,355.4 487.6,355.4 487.6,349.9 " /></g><g id="bbox:-1.2_45.3_-1.1_45.4" ><polygon points="168.2,355.4 172.0,355.4 172.0,360.9 168.2,360.9 168.2,355.4 " /></g><g id="bbox:-1.1_45.3_-1_45.4" ><polygon points="172.0,355.4 175.9,355.4 175.9,360.9 172.0,360.9 172.0,355.4 " /></g><g id="bbox:-1_45.3_-0.9_45.4" ><polygon points="175.9,355.4 179.7,355.4 179.7,360.9 175.9,360.9 175.9,355.4 " /></g><g id="bbox:-0.9_45.3_-0.8_45.4" ><polygon points="179.7,355.4 183.6,355.4 183.6,360.9 179.7,360.9 179.7,355.4 " /></g><g id="bbox:-0.8_45.3_-0.7_45.4" ><polygon points="183.6,355.4 187.4,355.4 187.4,360.9 183.6,360.9 183.6,355.4 " /></g><g id="bbox:-0.7_45.3_-0.6_45.4" ><polygon points="187.4,355.4 191.3,355.4 191.3,360.9 187.4,360.9 187.4,355.4 " /></g><g id="bbox:-0.6_45.3_-0.5_45.4" ><polygon points="191.3,355.4 195.1,355.4 195.1,360.9 191.3,360.9 191.3,355.4 " /></g><g id="bbox:-0.5_45.3_-0.4_45.4" ><polygon points="195.1,355.4 198.9,355.4 198.9,360.9 195.1,360.9 195.1,355.4 " /></g><g id="bbox:-0.4_45.3_-0.3_45.4" ><polygon points="198.9,355.4 202.8,355.4 202.8,360.9 198.9,360.9 198.9,355.4 " /></g><g id="bbox:-0.3_45.3_-0.2_45.4" ><polygon points="202.8,355.4 206.6,355.4 206.6,360.9 202.8,360.9 202.8,355.4 " /></g><g id="bbox:-0.2_45.3_-0.1_45.4" ><polygon points="206.6,355.4 210.5,355.4 210.5,360.9 206.6,360.9 206.6,355.4 " /></g><g id="bbox:-0.1_45.3_0_45.4" ><polygon points="210.5,355.4 214.3,355.4 214.3,360.9 210.5,360.9 210.5,355.4 " /></g><g id="bbox:0_45.3_0.1_45.4" ><polygon points="214.3,355.4 218.2,355.4 218.2,360.9 214.3,360.9 214.3,355.4 " /></g><g id="bbox:0.1_45.3_0.2_45.4" ><polygon points="218.2,355.4 222.0,355.4 222.0,360.9 218.2,360.9 218.2,355.4 " /></g><g id="bbox:0.2_45.3_0.3_45.4" ><polygon points="222.0,355.4 225.9,355.4 225.9,360.9 222.0,360.9 222.0,355.4 " /></g><g id="bbox:0.3_45.3_0.4_45.4" ><polygon points="225.9,355.4 229.7,355.4 229.7,360.9 225.9,360.9 225.9,355.4 " /></g><g id="bbox:0.4_45.3_0.5_45.4" ><polygon points="229.7,355.4 233.6,355.4 233.6,360.9 229.7,360.9 229.7,355.4 " /></g><g id="bbox:0.5_45.3_0.6_45.4" ><polygon points="233.6,355.4 237.4,355.4 237.4,360.9 233.6,360.9 233.6,355.4 " /></g><g id="bbox:0.6_45.3_0.7_45.4" ><polygon points="237.4,355.4 241.3,355.4 241.3,360.9 237.4,360.9 237.4,355.4 " /></g><g id="bbox:0.7_45.3_0.8_45.4" ><polygon points="241.3,355.4 245.1,355.4 245.1,360.9 241.3,360.9 241.3,355.4 " /></g><g id="bbox:0.8_45.3_0.9_45.4" ><polygon points="245.1,355.4 249.0,355.4 249.0,360.9 245.1,360.9 245.1,355.4 " /></g><g id="bbox:0.9_45.3_1_45.4" ><polygon points="249.0,355.4 252.8,355.4 252.8,360.9 249.0,360.9 249.0,355.4 " /></g><g id="bbox:1_45.3_1.1_45.4" ><polygon points="252.8,355.4 256.7,355.4 256.7,360.9 252.8,360.9 252.8,355.4 " /></g><g id="bbox:1.1_45.3_1.2_45.4" ><polygon points="256.7,355.4 260.5,355.4 260.5,360.9 256.7,360.9 256.7,355.4 " /></g><g id="bbox:1.2_45.3_1.3_45.4" ><polygon points="260.5,355.4 264.4,355.4 264.4,360.9 260.5,360.9 260.5,355.4 " /></g><g id="bbox:1.3_45.3_1.4_45.4" ><polygon points="264.4,355.4 268.2,355.4 268.2,360.9 264.4,360.9 264.4,355.4 " /></g><g id="bbox:1.4_45.3_1.5_45.4" ><polygon points="268.2,355.4 272.1,355.4 272.1,360.9 268.2,360.9 268.2,355.4 " /></g><g id="bbox:1.5_45.3_1.6_45.4" ><polygon points="272.1,355.4 275.9,355.4 275.9,360.9 272.1,360.9 272.1,355.4 " /></g><g id="bbox:1.6_45.3_1.7_45.4" ><polygon points="275.9,355.4 279.8,355.4 279.8,360.9 275.9,360.9 275.9,355.4 " /></g><g id="bbox:1.7_45.3_1.8_45.4" ><polygon points="279.8,355.4 283.6,355.4 283.6,360.9 279.8,360.9 279.8,355.4 " /></g><g id="bbox:1.8_45.3_1.9_45.4" ><polygon points="283.6,355.4 287.5,355.4 287.5,360.9 283.6,360.9 283.6,355.4 " /></g><g id="bbox:1.9_45.3_2_45.4" ><polygon points="287.5,355.4 291.3,355.4 291.3,360.9 287.5,360.9 287.5,355.4 " /></g><g id="bbox:2_45.3_2.1_45.4" ><polygon points="291.3,355.4 295.2,355.4 295.2,360.9 291.3,360.9 291.3,355.4 " /></g><g id="bbox:2.1_45.3_2.2_45.4" ><polygon points="295.2,355.4 299.0,355.4 299.0,360.9 295.2,360.9 295.2,355.4 " /></g><g id="bbox:2.2_45.3_2.3_45.4" ><polygon points="299.0,355.4 302.8,355.4 302.8,360.9 299.0,360.9 299.0,355.4 " /></g><g id="bbox:2.3_45.3_2.4_45.4" ><polygon points="302.8,355.4 306.7,355.4 306.7,360.9 302.8,360.9 302.8,355.4 " /></g><g id="bbox:2.4_45.3_2.5_45.4" ><polygon points="306.7,355.4 310.5,355.4 310.5,360.9 306.7,360.9 306.7,355.4 " /></g><g id="bbox:2.5_45.3_2.6_45.4" ><polygon points="310.5,355.4 314.4,355.4 314.4,360.9 310.5,360.9 310.5,355.4 " /></g><g id="bbox:2.6_45.3_2.7_45.4" ><polygon points="314.4,355.4 318.2,355.4 318.2,360.9 314.4,360.9 314.4,355.4 " /></g><g id="bbox:2.7_45.3_2.8_45.4" ><polygon points="318.2,355.4 322.1,355.4 322.1,360.9 318.2,360.9 318.2,355.4 " /></g><g id="bbox:2.8_45.3_2.9_45.4" ><polygon points="322.1,355.4 325.9,355.4 325.9,360.9 322.1,360.9 322.1,355.4 " /></g><g id="bbox:2.9_45.3_3_45.4" ><polygon points="325.9,355.4 329.8,355.4 329.8,360.9 325.9,360.9 325.9,355.4 " /></g><g id="bbox:3_45.3_3.1_45.4" ><polygon points="329.8,355.4 333.6,355.4 333.6,360.9 329.8,360.9 329.8,355.4 " /></g><g id="bbox:3.1_45.3_3.2_45.4" ><polygon points="333.6,355.4 337.5,355.4 337.5,360.9 333.6,360.9 333.6,355.4 " /></g><g id="bbox:3.2_45.3_3.3_45.4" ><polygon points="337.5,355.4 341.3,355.4 341.3,360.9 337.5,360.9 337.5,355.4 " /></g><g id="bbox:3.3_45.3_3.4_45.4" ><polygon points="341.3,355.4 345.2,355.4 345.2,360.9 341.3,360.9 341.3,355.4 " /></g><g id="bbox:3.4_45.3_3.5_45.4" ><polygon points="345.2,355.4 349.0,355.4 349.0,360.9 345.2,360.9 345.2,355.4 " /></g><g id="bbox:3.5_45.3_3.6_45.4" ><polygon points="349.0,355.4 352.9,355.4 352.9,360.9 349.0,360.9 349.0,355.4 " /></g><g id="bbox:3.6_45.3_3.7_45.4" ><polygon points="352.9,355.4 356.7,355.4 356.7,360.9 352.9,360.9 352.9,355.4 " /></g><g id="bbox:3.7_45.3_3.8_45.4" ><polygon points="356.7,355.4 360.6,355.4 360.6,360.9 356.7,360.9 356.7,355.4 " /></g><g id="bbox:3.8_45.3_3.9_45.4" ><polygon points="360.6,355.4 364.4,355.4 364.4,360.9 360.6,360.9 360.6,355.4 " /></g><g id="bbox:3.9_45.3_4_45.4" ><polygon points="364.4,355.4 368.3,355.4 368.3,360.9 364.4,360.9 364.4,355.4 " /></g><g id="bbox:4_45.3_4.1_45.4" ><polygon points="368.3,355.4 372.1,355.4 372.1,360.9 368.3,360.9 368.3,355.4 " /></g><g id="bbox:4.1_45.3_4.2_45.4" ><polygon points="372.1,355.4 376.0,355.4 376.0,360.9 372.1,360.9 372.1,355.4 " /></g><g id="bbox:4.2_45.3_4.3_45.4" ><polygon points="376.0,355.4 379.8,355.4 379.8,360.9 376.0,360.9 376.0,355.4 " /></g><g id="bbox:4.3_45.3_4.4_45.4" ><polygon points="379.8,355.4 383.7,355.4 383.7,360.9 379.8,360.9 379.8,355.4 " /></g><g id="bbox:4.4_45.3_4.5_45.4" ><polygon points="383.7,355.4 387.5,355.4 387.5,360.9 383.7,360.9 383.7,355.4 " /></g><g id="bbox:4.5_45.3_4.6_45.4" ><polygon points="387.5,355.4 391.4,355.4 391.4,360.9 387.5,360.9 387.5,355.4 " /></g><g id="bbox:4.6_45.3_4.7_45.4" ><polygon points="391.4,355.4 395.2,355.4 395.2,360.9 391.4,360.9 391.4,355.4 " /></g><g id="bbox:4.7_45.3_4.8_45.4" ><polygon points="395.2,355.4 399.1,355.4 399.1,360.9 395.2,360.9 395.2,355.4 " /></g><g id="bbox:4.8_45.3_4.9_45.4" ><polygon points="399.1,355.4 402.9,355.4 402.9,360.9 399.1,360.9 399.1,355.4 " /></g><g id="bbox:4.9_45.3_5_45.4" ><polygon points="402.9,355.4 406.7,355.4 406.7,360.9 402.9,360.9 402.9,355.4 " /></g><g id="bbox:5_45.3_5.1_45.4" ><polygon points="406.7,355.4 410.6,355.4 410.6,360.9 406.7,360.9 406.7,355.4 " /></g><g id="bbox:5.1_45.3_5.2_45.4" ><polygon points="410.6,355.4 414.4,355.4 414.4,360.9 410.6,360.9 410.6,355.4 " /></g><g id="bbox:5.2_45.3_5.3_45.4" ><polygon points="414.4,355.4 418.3,355.4 418.3,360.9 414.4,360.9 414.4,355.4 " /></g><g id="bbox:5.3_45.3_5.4_45.4" ><polygon points="418.3,355.4 422.1,355.4 422.1,360.9 418.3,360.9 418.3,355.4 " /></g><g id="bbox:5.4_45.3_5.5_45.4" ><polygon points="422.1,355.4 426.0,355.4 426.0,360.9 422.1,360.9 422.1,355.4 " /></g><g id="bbox:5.5_45.3_5.6_45.4" ><polygon points="426.0,355.4 429.8,355.4 429.8,360.9 426.0,360.9 426.0,355.4 " /></g><g id="bbox:5.6_45.3_5.7_45.4" ><polygon points="429.8,355.4 433.7,355.4 433.7,360.9 429.8,360.9 429.8,355.4 " /></g><g id="bbox:5.7_45.3_5.8_45.4" ><polygon points="433.7,355.4 437.5,355.4 437.5,360.9 433.7,360.9 433.7,355.4 " /></g><g id="bbox:5.8_45.3_5.9_45.4" ><polygon points="437.5,355.4 441.4,355.4 441.4,360.9 437.5,360.9 437.5,355.4 " /></g><g id="bbox:5.9_45.3_6_45.4" ><polygon points="441.4,355.4 445.2,355.4 445.2,360.9 441.4,360.9 441.4,355.4 " /></g><g id="bbox:6_45.3_6.1_45.4" ><polygon points="445.2,355.4 449.1,355.4 449.1,360.9 445.2,360.9 445.2,355.4 " /></g><g id="bbox:6.1_45.3_6.2_45.4" ><polygon points="449.1,355.4 452.9,355.4 452.9,360.9 449.1,360.9 449.1,355.4 " /></g><g id="bbox:6.2_45.3_6.3_45.4" ><polygon points="452.9,355.4 456.8,355.4 456.8,360.9 452.9,360.9 452.9,355.4 " /></g><g id="bbox:6.3_45.3_6.4_45.4" ><polygon points="456.8,355.4 460.6,355.4 460.6,360.9 456.8,360.9 456.8,355.4 " /></g><g id="bbox:6.4_45.3_6.5_45.4" ><polygon points="460.6,355.4 464.5,355.4 464.5,360.9 460.6,360.9 460.6,355.4 " /></g><g id="bbox:6.5_45.3_6.6_45.4" ><polygon points="464.5,355.4 468.3,355.4 468.3,360.9 464.5,360.9 464.5,355.4 " /></g><g id="bbox:6.6_45.3_6.7_45.4" ><polygon points="468.3,355.4 472.2,355.4 472.2,360.9 468.3,360.9 468.3,355.4 " /></g><g id="bbox:6.7_45.3_6.8_45.4" ><polygon points="472.2,355.4 476.0,355.4 476.0,360.9 472.2,360.9 472.2,355.4 " /></g><g id="bbox:6.8_45.3_6.9_45.4" ><polygon points="476.0,355.4 479.9,355.4 479.9,360.9 476.0,360.9 476.0,355.4 " /></g><g id="bbox:6.9_45.3_7_45.4" ><polygon points="479.9,355.4 483.7,355.4 483.7,360.9 479.9,360.9 479.9,355.4 " /></g><g id="bbox:7_45.3_7.1_45.4" ><polygon points="483.7,355.4 487.6,355.4 487.6,360.9 483.7,360.9 483.7,355.4 " /></g><g id="bbox:7.1_45.3_7.2_45.4" ><polygon points="487.6,355.4 491.4,355.4 491.4,360.9 487.6,360.9 487.6,355.4 " /></g><g id="bbox:-1.2_45.2_-1.1_45.3" ><polygon points="168.2,360.9 172.0,360.9 172.0,366.3 168.2,366.3 168.2,360.9 " /></g><g id="bbox:-1.1_45.2_-1_45.3" ><polygon points="172.0,360.9 175.9,360.9 175.9,366.3 172.0,366.3 172.0,360.9 " /></g><g id="bbox:-1_45.2_-0.9_45.3" ><polygon points="175.9,360.9 179.7,360.9 179.7,366.3 175.9,366.3 175.9,360.9 " /></g><g id="bbox:-0.9_45.2_-0.8_45.3" ><polygon points="179.7,360.9 183.6,360.9 183.6,366.3 179.7,366.3 179.7,360.9 " /></g><g id="bbox:-0.8_45.2_-0.7_45.3" ><polygon points="183.6,360.9 187.4,360.9 187.4,366.3 183.6,366.3 183.6,360.9 " /></g><g id="bbox:-0.7_45.2_-0.6_45.3" ><polygon points="187.4,360.9 191.3,360.9 191.3,366.3 187.4,366.3 187.4,360.9 " /></g><g id="bbox:-0.6_45.2_-0.5_45.3" ><polygon points="191.3,360.9 195.1,360.9 195.1,366.3 191.3,366.3 191.3,360.9 " /></g><g id="bbox:-0.5_45.2_-0.4_45.3" ><polygon points="195.1,360.9 198.9,360.9 198.9,366.3 195.1,366.3 195.1,360.9 " /></g><g id="bbox:-0.4_45.2_-0.3_45.3" ><polygon points="198.9,360.9 202.8,360.9 202.8,366.3 198.9,366.3 198.9,360.9 " /></g><g id="bbox:-0.3_45.2_-0.2_45.3" ><polygon points="202.8,360.9 206.6,360.9 206.6,366.3 202.8,366.3 202.8,360.9 " /></g><g id="bbox:-0.2_45.2_-0.1_45.3" ><polygon points="206.6,360.9 210.5,360.9 210.5,366.3 206.6,366.3 206.6,360.9 " /></g><g id="bbox:-0.1_45.2_0_45.3" ><polygon points="210.5,360.9 214.3,360.9 214.3,366.3 210.5,366.3 210.5,360.9 " /></g><g id="bbox:0_45.2_0.1_45.3" ><polygon points="214.3,360.9 218.2,360.9 218.2,366.3 214.3,366.3 214.3,360.9 " /></g><g id="bbox:0.1_45.2_0.2_45.3" ><polygon points="218.2,360.9 222.0,360.9 222.0,366.3 218.2,366.3 218.2,360.9 " /></g><g id="bbox:0.2_45.2_0.3_45.3" ><polygon points="222.0,360.9 225.9,360.9 225.9,366.3 222.0,366.3 222.0,360.9 " /></g><g id="bbox:0.3_45.2_0.4_45.3" ><polygon points="225.9,360.9 229.7,360.9 229.7,366.3 225.9,366.3 225.9,360.9 " /></g><g id="bbox:0.4_45.2_0.5_45.3" ><polygon points="229.7,360.9 233.6,360.9 233.6,366.3 229.7,366.3 229.7,360.9 " /></g><g id="bbox:0.5_45.2_0.6_45.3" ><polygon points="233.6,360.9 237.4,360.9 237.4,366.3 233.6,366.3 233.6,360.9 " /></g><g id="bbox:0.6_45.2_0.7_45.3" ><polygon points="237.4,360.9 241.3,360.9 241.3,366.3 237.4,366.3 237.4,360.9 " /></g><g id="bbox:0.7_45.2_0.8_45.3" ><polygon points="241.3,360.9 245.1,360.9 245.1,366.3 241.3,366.3 241.3,360.9 " /></g><g id="bbox:0.8_45.2_0.9_45.3" ><polygon points="245.1,360.9 249.0,360.9 249.0,366.3 245.1,366.3 245.1,360.9 " /></g><g id="bbox:0.9_45.2_1_45.3" ><polygon points="249.0,360.9 252.8,360.9 252.8,366.3 249.0,366.3 249.0,360.9 " /></g><g id="bbox:1_45.2_1.1_45.3" ><polygon points="252.8,360.9 256.7,360.9 256.7,366.3 252.8,366.3 252.8,360.9 " /></g><g id="bbox:1.1_45.2_1.2_45.3" ><polygon points="256.7,360.9 260.5,360.9 260.5,366.3 256.7,366.3 256.7,360.9 " /></g><g id="bbox:1.2_45.2_1.3_45.3" ><polygon points="260.5,360.9 264.4,360.9 264.4,366.3 260.5,366.3 260.5,360.9 " /></g><g id="bbox:1.3_45.2_1.4_45.3" ><polygon points="264.4,360.9 268.2,360.9 268.2,366.3 264.4,366.3 264.4,360.9 " /></g><g id="bbox:1.4_45.2_1.5_45.3" ><polygon points="268.2,360.9 272.1,360.9 272.1,366.3 268.2,366.3 268.2,360.9 " /></g><g id="bbox:1.5_45.2_1.6_45.3" ><polygon points="272.1,360.9 275.9,360.9 275.9,366.3 272.1,366.3 272.1,360.9 " /></g><g id="bbox:1.6_45.2_1.7_45.3" ><polygon points="275.9,360.9 279.8,360.9 279.8,366.3 275.9,366.3 275.9,360.9 " /></g><g id="bbox:1.7_45.2_1.8_45.3" ><polygon points="279.8,360.9 283.6,360.9 283.6,366.3 279.8,366.3 279.8,360.9 " /></g><g id="bbox:1.8_45.2_1.9_45.3" ><polygon points="283.6,360.9 287.5,360.9 287.5,366.3 283.6,366.3 283.6,360.9 " /></g><g id="bbox:1.9_45.2_2_45.3" ><polygon points="287.5,360.9 291.3,360.9 291.3,366.3 287.5,366.3 287.5,360.9 " /></g><g id="bbox:2_45.2_2.1_45.3" ><polygon points="291.3,360.9 295.2,360.9 295.2,366.3 291.3,366.3 291.3,360.9 " /></g><g id="bbox:2.1_45.2_2.2_45.3" ><polygon points="295.2,360.9 299.0,360.9 299.0,366.3 295.2,366.3 295.2,360.9 " /></g><g id="bbox:2.2_45.2_2.3_45.3" ><polygon points="299.0,360.9 302.8,360.9 302.8,366.3 299.0,366.3 299.0,360.9 " /></g><g id="bbox:2.3_45.2_2.4_45.3" ><polygon points="302.8,360.9 306.7,360.9 306.7,366.3 302.8,366.3 302.8,360.9 " /></g><g id="bbox:2.4_45.2_2.5_45.3" ><polygon points="306.7,360.9 310.5,360.9 310.5,366.3 306.7,366.3 306.7,360.9 " /></g><g id="bbox:2.5_45.2_2.6_45.3" ><polygon points="310.5,360.9 314.4,360.9 314.4,366.3 310.5,366.3 310.5,360.9 " /></g><g id="bbox:2.6_45.2_2.7_45.3" ><polygon points="314.4,360.9 318.2,360.9 318.2,366.3 314.4,366.3 314.4,360.9 " /></g><g id="bbox:2.7_45.2_2.8_45.3" ><polygon points="318.2,360.9 322.1,360.9 322.1,366.3 318.2,366.3 318.2,360.9 " /></g><g id="bbox:2.8_45.2_2.9_45.3" ><polygon points="322.1,360.9 325.9,360.9 325.9,366.3 322.1,366.3 322.1,360.9 " /></g><g id="bbox:2.9_45.2_3_45.3" ><polygon points="325.9,360.9 329.8,360.9 329.8,366.3 325.9,366.3 325.9,360.9 " /></g><g id="bbox:3_45.2_3.1_45.3" ><polygon points="329.8,360.9 333.6,360.9 333.6,366.3 329.8,366.3 329.8,360.9 " /></g><g id="bbox:3.1_45.2_3.2_45.3" ><polygon points="333.6,360.9 337.5,360.9 337.5,366.3 333.6,366.3 333.6,360.9 " /></g><g id="bbox:3.2_45.2_3.3_45.3" ><polygon points="337.5,360.9 341.3,360.9 341.3,366.3 337.5,366.3 337.5,360.9 " /></g><g id="bbox:3.3_45.2_3.4_45.3" ><polygon points="341.3,360.9 345.2,360.9 345.2,366.3 341.3,366.3 341.3,360.9 " /></g><g id="bbox:3.4_45.2_3.5_45.3" ><polygon points="345.2,360.9 349.0,360.9 349.0,366.3 345.2,366.3 345.2,360.9 " /></g><g id="bbox:3.5_45.2_3.6_45.3" ><polygon points="349.0,360.9 352.9,360.9 352.9,366.3 349.0,366.3 349.0,360.9 " /></g><g id="bbox:3.6_45.2_3.7_45.3" ><polygon points="352.9,360.9 356.7,360.9 356.7,366.3 352.9,366.3 352.9,360.9 " /></g><g id="bbox:3.7_45.2_3.8_45.3" ><polygon points="356.7,360.9 360.6,360.9 360.6,366.3 356.7,366.3 356.7,360.9 " /></g><g id="bbox:3.8_45.2_3.9_45.3" ><polygon points="360.6,360.9 364.4,360.9 364.4,366.3 360.6,366.3 360.6,360.9 " /></g><g id="bbox:3.9_45.2_4_45.3" ><polygon points="364.4,360.9 368.3,360.9 368.3,366.3 364.4,366.3 364.4,360.9 " /></g><g id="bbox:4_45.2_4.1_45.3" ><polygon points="368.3,360.9 372.1,360.9 372.1,366.3 368.3,366.3 368.3,360.9 " /></g><g id="bbox:4.1_45.2_4.2_45.3" ><polygon points="372.1,360.9 376.0,360.9 376.0,366.3 372.1,366.3 372.1,360.9 " /></g><g id="bbox:4.2_45.2_4.3_45.3" ><polygon points="376.0,360.9 379.8,360.9 379.8,366.3 376.0,366.3 376.0,360.9 " /></g><g id="bbox:4.3_45.2_4.4_45.3" ><polygon points="379.8,360.9 383.7,360.9 383.7,366.3 379.8,366.3 379.8,360.9 " /></g><g id="bbox:4.4_45.2_4.5_45.3" ><polygon points="383.7,360.9 387.5,360.9 387.5,366.3 383.7,366.3 383.7,360.9 " /></g><g id="bbox:4.5_45.2_4.6_45.3" ><polygon points="387.5,360.9 391.4,360.9 391.4,366.3 387.5,366.3 387.5,360.9 " /></g><g id="bbox:4.6_45.2_4.7_45.3" ><polygon points="391.4,360.9 395.2,360.9 395.2,366.3 391.4,366.3 391.4,360.9 " /></g><g id="bbox:4.7_45.2_4.8_45.3" ><polygon points="395.2,360.9 399.1,360.9 399.1,366.3 395.2,366.3 395.2,360.9 " /></g><g id="bbox:4.8_45.2_4.9_45.3" ><polygon points="399.1,360.9 402.9,360.9 402.9,366.3 399.1,366.3 399.1,360.9 " /></g><g id="bbox:4.9_45.2_5_45.3" ><polygon points="402.9,360.9 406.7,360.9 406.7,366.3 402.9,366.3 402.9,360.9 " /></g><g id="bbox:5_45.2_5.1_45.3" ><polygon points="406.7,360.9 410.6,360.9 410.6,366.3 406.7,366.3 406.7,360.9 " /></g><g id="bbox:5.1_45.2_5.2_45.3" ><polygon points="410.6,360.9 414.4,360.9 414.4,366.3 410.6,366.3 410.6,360.9 " /></g><g id="bbox:5.2_45.2_5.3_45.3" ><polygon points="414.4,360.9 418.3,360.9 418.3,366.3 414.4,366.3 414.4,360.9 " /></g><g id="bbox:5.3_45.2_5.4_45.3" ><polygon points="418.3,360.9 422.1,360.9 422.1,366.3 418.3,366.3 418.3,360.9 " /></g><g id="bbox:5.4_45.2_5.5_45.3" ><polygon points="422.1,360.9 426.0,360.9 426.0,366.3 422.1,366.3 422.1,360.9 " /></g><g id="bbox:5.5_45.2_5.6_45.3" ><polygon points="426.0,360.9 429.8,360.9 429.8,366.3 426.0,366.3 426.0,360.9 " /></g><g id="bbox:5.6_45.2_5.7_45.3" ><polygon points="429.8,360.9 433.7,360.9 433.7,366.3 429.8,366.3 429.8,360.9 " /></g><g id="bbox:5.7_45.2_5.8_45.3" ><polygon points="433.7,360.9 437.5,360.9 437.5,366.3 433.7,366.3 433.7,360.9 " /></g><g id="bbox:5.8_45.2_5.9_45.3" ><polygon points="437.5,360.9 441.4,360.9 441.4,366.3 437.5,366.3 437.5,360.9 " /></g><g id="bbox:5.9_45.2_6_45.3" ><polygon points="441.4,360.9 445.2,360.9 445.2,366.3 441.4,366.3 441.4,360.9 " /></g><g id="bbox:6_45.2_6.1_45.3" ><polygon points="445.2,360.9 449.1,360.9 449.1,366.3 445.2,366.3 445.2,360.9 " /></g><g id="bbox:6.1_45.2_6.2_45.3" ><polygon points="449.1,360.9 452.9,360.9 452.9,366.3 449.1,366.3 449.1,360.9 " /></g><g id="bbox:6.2_45.2_6.3_45.3" ><polygon points="452.9,360.9 456.8,360.9 456.8,366.3 452.9,366.3 452.9,360.9 " /></g><g id="bbox:6.3_45.2_6.4_45.3" ><polygon points="456.8,360.9 460.6,360.9 460.6,366.3 456.8,366.3 456.8,360.9 " /></g><g id="bbox:6.4_45.2_6.5_45.3" ><polygon points="460.6,360.9 464.5,360.9 464.5,366.3 460.6,366.3 460.6,360.9 " /></g><g id="bbox:6.5_45.2_6.6_45.3" ><polygon points="464.5,360.9 468.3,360.9 468.3,366.3 464.5,366.3 464.5,360.9 " /></g><g id="bbox:6.6_45.2_6.7_45.3" ><polygon points="468.3,360.9 472.2,360.9 472.2,366.3 468.3,366.3 468.3,360.9 " /></g><g id="bbox:6.7_45.2_6.8_45.3" ><polygon points="472.2,360.9 476.0,360.9 476.0,366.3 472.2,366.3 472.2,360.9 " /></g><g id="bbox:6.8_45.2_6.9_45.3" ><polygon points="476.0,360.9 479.9,360.9 479.9,366.3 476.0,366.3 476.0,360.9 " /></g><g id="bbox:6.9_45.2_7_45.3" ><polygon points="479.9,360.9 483.7,360.9 483.7,366.3 479.9,366.3 479.9,360.9 " /></g><g id="bbox:7_45.2_7.1_45.3" ><polygon points="483.7,360.9 487.6,360.9 487.6,366.3 483.7,366.3 483.7,360.9 " /></g><g id="bbox:7.1_45.2_7.2_45.3" ><polygon points="487.6,360.9 491.4,360.9 491.4,366.3 487.6,366.3 487.6,360.9 " /></g><g id="bbox:-1.2_45.1_-1.1_45.2" ><polygon points="168.2,366.3 172.0,366.3 172.0,371.8 168.2,371.8 168.2,366.3 " /></g><g id="bbox:-1.1_45.1_-1_45.2" ><polygon points="172.0,366.3 175.9,366.3 175.9,371.8 172.0,371.8 172.0,366.3 " /></g><g id="bbox:-1_45.1_-0.9_45.2" ><polygon points="175.9,366.3 179.7,366.3 179.7,371.8 175.9,371.8 175.9,366.3 " /></g><g id="bbox:-0.9_45.1_-0.8_45.2" ><polygon points="179.7,366.3 183.6,366.3 183.6,371.8 179.7,371.8 179.7,366.3 " /></g><g id="bbox:-0.8_45.1_-0.7_45.2" ><polygon points="183.6,366.3 187.4,366.3 187.4,371.8 183.6,371.8 183.6,366.3 " /></g><g id="bbox:-0.7_45.1_-0.6_45.2" ><polygon points="187.4,366.3 191.3,366.3 191.3,371.8 187.4,371.8 187.4,366.3 " /></g><g id="bbox:-0.6_45.1_-0.5_45.2" ><polygon points="191.3,366.3 195.1,366.3 195.1,371.8 191.3,371.8 191.3,366.3 " /></g><g id="bbox:-0.5_45.1_-0.4_45.2" ><polygon points="195.1,366.3 198.9,366.3 198.9,371.8 195.1,371.8 195.1,366.3 " /></g><g id="bbox:-0.4_45.1_-0.3_45.2" ><polygon points="198.9,366.3 202.8,366.3 202.8,371.8 198.9,371.8 198.9,366.3 " /></g><g id="bbox:-0.3_45.1_-0.2_45.2" ><polygon points="202.8,366.3 206.6,366.3 206.6,371.8 202.8,371.8 202.8,366.3 " /></g><g id="bbox:-0.2_45.1_-0.1_45.2" ><polygon points="206.6,366.3 210.5,366.3 210.5,371.8 206.6,371.8 206.6,366.3 " /></g><g id="bbox:-0.1_45.1_0_45.2" ><polygon points="210.5,366.3 214.3,366.3 214.3,371.8 210.5,371.8 210.5,366.3 " /></g><g id="bbox:0_45.1_0.1_45.2" ><polygon points="214.3,366.3 218.2,366.3 218.2,371.8 214.3,371.8 214.3,366.3 " /></g><g id="bbox:0.1_45.1_0.2_45.2" ><polygon points="218.2,366.3 222.0,366.3 222.0,371.8 218.2,371.8 218.2,366.3 " /></g><g id="bbox:0.2_45.1_0.3_45.2" ><polygon points="222.0,366.3 225.9,366.3 225.9,371.8 222.0,371.8 222.0,366.3 " /></g><g id="bbox:0.3_45.1_0.4_45.2" ><polygon points="225.9,366.3 229.7,366.3 229.7,371.8 225.9,371.8 225.9,366.3 " /></g><g id="bbox:0.4_45.1_0.5_45.2" ><polygon points="229.7,366.3 233.6,366.3 233.6,371.8 229.7,371.8 229.7,366.3 " /></g><g id="bbox:0.5_45.1_0.6_45.2" ><polygon points="233.6,366.3 237.4,366.3 237.4,371.8 233.6,371.8 233.6,366.3 " /></g><g id="bbox:0.6_45.1_0.7_45.2" ><polygon points="237.4,366.3 241.3,366.3 241.3,371.8 237.4,371.8 237.4,366.3 " /></g><g id="bbox:0.7_45.1_0.8_45.2" ><polygon points="241.3,366.3 245.1,366.3 245.1,371.8 241.3,371.8 241.3,366.3 " /></g><g id="bbox:0.8_45.1_0.9_45.2" ><polygon points="245.1,366.3 249.0,366.3 249.0,371.8 245.1,371.8 245.1,366.3 " /></g><g id="bbox:0.9_45.1_1_45.2" ><polygon points="249.0,366.3 252.8,366.3 252.8,371.8 249.0,371.8 249.0,366.3 " /></g><g id="bbox:1_45.1_1.1_45.2" ><polygon points="252.8,366.3 256.7,366.3 256.7,371.8 252.8,371.8 252.8,366.3 " /></g><g id="bbox:1.1_45.1_1.2_45.2" ><polygon points="256.7,366.3 260.5,366.3 260.5,371.8 256.7,371.8 256.7,366.3 " /></g><g id="bbox:1.2_45.1_1.3_45.2" ><polygon points="260.5,366.3 264.4,366.3 264.4,371.8 260.5,371.8 260.5,366.3 " /></g><g id="bbox:1.3_45.1_1.4_45.2" ><polygon points="264.4,366.3 268.2,366.3 268.2,371.8 264.4,371.8 264.4,366.3 " /></g><g id="bbox:1.4_45.1_1.5_45.2" ><polygon points="268.2,366.3 272.1,366.3 272.1,371.8 268.2,371.8 268.2,366.3 " /></g><g id="bbox:1.5_45.1_1.6_45.2" ><polygon points="272.1,366.3 275.9,366.3 275.9,371.8 272.1,371.8 272.1,366.3 " /></g><g id="bbox:1.6_45.1_1.7_45.2" ><polygon points="275.9,366.3 279.8,366.3 279.8,371.8 275.9,371.8 275.9,366.3 " /></g><g id="bbox:1.7_45.1_1.8_45.2" ><polygon points="279.8,366.3 283.6,366.3 283.6,371.8 279.8,371.8 279.8,366.3 " /></g><g id="bbox:1.8_45.1_1.9_45.2" ><polygon points="283.6,366.3 287.5,366.3 287.5,371.8 283.6,371.8 283.6,366.3 " /></g><g id="bbox:1.9_45.1_2_45.2" ><polygon points="287.5,366.3 291.3,366.3 291.3,371.8 287.5,371.8 287.5,366.3 " /></g><g id="bbox:2_45.1_2.1_45.2" ><polygon points="291.3,366.3 295.2,366.3 295.2,371.8 291.3,371.8 291.3,366.3 " /></g><g id="bbox:2.1_45.1_2.2_45.2" ><polygon points="295.2,366.3 299.0,366.3 299.0,371.8 295.2,371.8 295.2,366.3 " /></g><g id="bbox:2.2_45.1_2.3_45.2" ><polygon points="299.0,366.3 302.8,366.3 302.8,371.8 299.0,371.8 299.0,366.3 " /></g><g id="bbox:2.3_45.1_2.4_45.2" ><polygon points="302.8,366.3 306.7,366.3 306.7,371.8 302.8,371.8 302.8,366.3 " /></g><g id="bbox:2.4_45.1_2.5_45.2" ><polygon points="306.7,366.3 310.5,366.3 310.5,371.8 306.7,371.8 306.7,366.3 " /></g><g id="bbox:2.5_45.1_2.6_45.2" ><polygon points="310.5,366.3 314.4,366.3 314.4,371.8 310.5,371.8 310.5,366.3 " /></g><g id="bbox:2.6_45.1_2.7_45.2" ><polygon points="314.4,366.3 318.2,366.3 318.2,371.8 314.4,371.8 314.4,366.3 " /></g><g id="bbox:2.7_45.1_2.8_45.2" ><polygon points="318.2,366.3 322.1,366.3 322.1,371.8 318.2,371.8 318.2,366.3 " /></g><g id="bbox:2.8_45.1_2.9_45.2" ><polygon points="322.1,366.3 325.9,366.3 325.9,371.8 322.1,371.8 322.1,366.3 " /></g><g id="bbox:2.9_45.1_3_45.2" ><polygon points="325.9,366.3 329.8,366.3 329.8,371.8 325.9,371.8 325.9,366.3 " /></g><g id="bbox:3_45.1_3.1_45.2" ><polygon points="329.8,366.3 333.6,366.3 333.6,371.8 329.8,371.8 329.8,366.3 " /></g><g id="bbox:3.1_45.1_3.2_45.2" ><polygon points="333.6,366.3 337.5,366.3 337.5,371.8 333.6,371.8 333.6,366.3 " /></g><g id="bbox:3.2_45.1_3.3_45.2" ><polygon points="337.5,366.3 341.3,366.3 341.3,371.8 337.5,371.8 337.5,366.3 " /></g><g id="bbox:3.3_45.1_3.4_45.2" ><polygon points="341.3,366.3 345.2,366.3 345.2,371.8 341.3,371.8 341.3,366.3 " /></g><g id="bbox:3.4_45.1_3.5_45.2" ><polygon points="345.2,366.3 349.0,366.3 349.0,371.8 345.2,371.8 345.2,366.3 " /></g><g id="bbox:3.5_45.1_3.6_45.2" ><polygon points="349.0,366.3 352.9,366.3 352.9,371.8 349.0,371.8 349.0,366.3 " /></g><g id="bbox:3.6_45.1_3.7_45.2" ><polygon points="352.9,366.3 356.7,366.3 356.7,371.8 352.9,371.8 352.9,366.3 " /></g><g id="bbox:3.7_45.1_3.8_45.2" ><polygon points="356.7,366.3 360.6,366.3 360.6,371.8 356.7,371.8 356.7,366.3 " /></g><g id="bbox:3.8_45.1_3.9_45.2" ><polygon points="360.6,366.3 364.4,366.3 364.4,371.8 360.6,371.8 360.6,366.3 " /></g><g id="bbox:3.9_45.1_4_45.2" ><polygon points="364.4,366.3 368.3,366.3 368.3,371.8 364.4,371.8 364.4,366.3 " /></g><g id="bbox:4_45.1_4.1_45.2" ><polygon points="368.3,366.3 372.1,366.3 372.1,371.8 368.3,371.8 368.3,366.3 " /></g><g id="bbox:4.1_45.1_4.2_45.2" ><polygon points="372.1,366.3 376.0,366.3 376.0,371.8 372.1,371.8 372.1,366.3 " /></g><g id="bbox:4.2_45.1_4.3_45.2" ><polygon points="376.0,366.3 379.8,366.3 379.8,371.8 376.0,371.8 376.0,366.3 " /></g><g id="bbox:4.3_45.1_4.4_45.2" ><polygon points="379.8,366.3 383.7,366.3 383.7,371.8 379.8,371.8 379.8,366.3 " /></g><g id="bbox:4.4_45.1_4.5_45.2" ><polygon points="383.7,366.3 387.5,366.3 387.5,371.8 383.7,371.8 383.7,366.3 " /></g><g id="bbox:4.5_45.1_4.6_45.2" ><polygon points="387.5,366.3 391.4,366.3 391.4,371.8 387.5,371.8 387.5,366.3 " /></g><g id="bbox:4.6_45.1_4.7_45.2" ><polygon points="391.4,366.3 395.2,366.3 395.2,371.8 391.4,371.8 391.4,366.3 " /></g><g id="bbox:4.7_45.1_4.8_45.2" ><polygon points="395.2,366.3 399.1,366.3 399.1,371.8 395.2,371.8 395.2,366.3 " /></g><g id="bbox:4.8_45.1_4.9_45.2" ><polygon points="399.1,366.3 402.9,366.3 402.9,371.8 399.1,371.8 399.1,366.3 " /></g><g id="bbox:4.9_45.1_5_45.2" ><polygon points="402.9,366.3 406.7,366.3 406.7,371.8 402.9,371.8 402.9,366.3 " /></g><g id="bbox:5_45.1_5.1_45.2" ><polygon points="406.7,366.3 410.6,366.3 410.6,371.8 406.7,371.8 406.7,366.3 " /></g><g id="bbox:5.1_45.1_5.2_45.2" ><polygon points="410.6,366.3 414.4,366.3 414.4,371.8 410.6,371.8 410.6,366.3 " /></g><g id="bbox:5.2_45.1_5.3_45.2" ><polygon points="414.4,366.3 418.3,366.3 418.3,371.8 414.4,371.8 414.4,366.3 " /></g><g id="bbox:5.3_45.1_5.4_45.2" ><polygon points="418.3,366.3 422.1,366.3 422.1,371.8 418.3,371.8 418.3,366.3 " /></g><g id="bbox:5.4_45.1_5.5_45.2" ><polygon points="422.1,366.3 426.0,366.3 426.0,371.8 422.1,371.8 422.1,366.3 " /></g><g id="bbox:5.5_45.1_5.6_45.2" ><polygon points="426.0,366.3 429.8,366.3 429.8,371.8 426.0,371.8 426.0,366.3 " /></g><g id="bbox:5.6_45.1_5.7_45.2" ><polygon points="429.8,366.3 433.7,366.3 433.7,371.8 429.8,371.8 429.8,366.3 " /></g><g id="bbox:5.7_45.1_5.8_45.2" ><polygon points="433.7,366.3 437.5,366.3 437.5,371.8 433.7,371.8 433.7,366.3 " /></g><g id="bbox:5.8_45.1_5.9_45.2" ><polygon points="437.5,366.3 441.4,366.3 441.4,371.8 437.5,371.8 437.5,366.3 " /></g><g id="bbox:5.9_45.1_6_45.2" ><polygon points="441.4,366.3 445.2,366.3 445.2,371.8 441.4,371.8 441.4,366.3 " /></g><g id="bbox:6_45.1_6.1_45.2" ><polygon points="445.2,366.3 449.1,366.3 449.1,371.8 445.2,371.8 445.2,366.3 " /></g><g id="bbox:6.1_45.1_6.2_45.2" ><polygon points="449.1,366.3 452.9,366.3 452.9,371.8 449.1,371.8 449.1,366.3 " /></g><g id="bbox:6.2_45.1_6.3_45.2" ><polygon points="452.9,366.3 456.8,366.3 456.8,371.8 452.9,371.8 452.9,366.3 " /></g><g id="bbox:6.3_45.1_6.4_45.2" ><polygon points="456.8,366.3 460.6,366.3 460.6,371.8 456.8,371.8 456.8,366.3 " /></g><g id="bbox:6.4_45.1_6.5_45.2" ><polygon points="460.6,366.3 464.5,366.3 464.5,371.8 460.6,371.8 460.6,366.3 " /></g><g id="bbox:6.5_45.1_6.6_45.2" ><polygon points="464.5,366.3 468.3,366.3 468.3,371.8 464.5,371.8 464.5,366.3 " /></g><g id="bbox:6.6_45.1_6.7_45.2" ><polygon points="468.3,366.3 472.2,366.3 472.2,371.8 468.3,371.8 468.3,366.3 " /></g><g id="bbox:6.7_45.1_6.8_45.2" ><polygon points="472.2,366.3 476.0,366.3 476.0,371.8 472.2,371.8 472.2,366.3 " /></g><g id="bbox:6.8_45.1_6.9_45.2" ><polygon points="476.0,366.3 479.9,366.3 479.9,371.8 476.0,371.8 476.0,366.3 " /></g><g id="bbox:6.9_45.1_7_45.2" ><polygon points="479.9,366.3 483.7,366.3 483.7,371.8 479.9,371.8 479.9,366.3 " /></g><g id="bbox:-1.3_45_-1.2_45.1" ><polygon points="164.3,371.8 168.2,371.8 168.2,377.2 164.3,377.2 164.3,371.8 " /></g><g id="bbox:-1.2_45_-1.1_45.1" ><polygon points="168.2,371.8 172.0,371.8 172.0,377.2 168.2,377.2 168.2,371.8 " /></g><g id="bbox:-1.1_45_-1_45.1" ><polygon points="172.0,371.8 175.9,371.8 175.9,377.2 172.0,377.2 172.0,371.8 " /></g><g id="bbox:-1_45_-0.9_45.1" ><polygon points="175.9,371.8 179.7,371.8 179.7,377.2 175.9,377.2 175.9,371.8 " /></g><g id="bbox:-0.9_45_-0.8_45.1" ><polygon points="179.7,371.8 183.6,371.8 183.6,377.2 179.7,377.2 179.7,371.8 " /></g><g id="bbox:-0.8_45_-0.7_45.1" ><polygon points="183.6,371.8 187.4,371.8 187.4,377.2 183.6,377.2 183.6,371.8 " /></g><g id="bbox:-0.7_45_-0.6_45.1" ><polygon points="187.4,371.8 191.3,371.8 191.3,377.2 187.4,377.2 187.4,371.8 " /></g><g id="bbox:-0.6_45_-0.5_45.1" ><polygon points="191.3,371.8 195.1,371.8 195.1,377.2 191.3,377.2 191.3,371.8 " /></g><g id="bbox:-0.5_45_-0.4_45.1" ><polygon points="195.1,371.8 198.9,371.8 198.9,377.2 195.1,377.2 195.1,371.8 " /></g><g id="bbox:-0.4_45_-0.3_45.1" ><polygon points="198.9,371.8 202.8,371.8 202.8,377.2 198.9,377.2 198.9,371.8 " /></g><g id="bbox:-0.3_45_-0.2_45.1" ><polygon points="202.8,371.8 206.6,371.8 206.6,377.2 202.8,377.2 202.8,371.8 " /></g><g id="bbox:-0.2_45_-0.1_45.1" ><polygon points="206.6,371.8 210.5,371.8 210.5,377.2 206.6,377.2 206.6,371.8 " /></g><g id="bbox:-0.1_45_0_45.1" ><polygon points="210.5,371.8 214.3,371.8 214.3,377.2 210.5,377.2 210.5,371.8 " /></g><g id="bbox:0_45_0.1_45.1" ><polygon points="214.3,371.8 218.2,371.8 218.2,377.2 214.3,377.2 214.3,371.8 " /></g><g id="bbox:0.1_45_0.2_45.1" ><polygon points="218.2,371.8 222.0,371.8 222.0,377.2 218.2,377.2 218.2,371.8 " /></g><g id="bbox:0.2_45_0.3_45.1" ><polygon points="222.0,371.8 225.9,371.8 225.9,377.2 222.0,377.2 222.0,371.8 " /></g><g id="bbox:0.3_45_0.4_45.1" ><polygon points="225.9,371.8 229.7,371.8 229.7,377.2 225.9,377.2 225.9,371.8 " /></g><g id="bbox:0.4_45_0.5_45.1" ><polygon points="229.7,371.8 233.6,371.8 233.6,377.2 229.7,377.2 229.7,371.8 " /></g><g id="bbox:0.5_45_0.6_45.1" ><polygon points="233.6,371.8 237.4,371.8 237.4,377.2 233.6,377.2 233.6,371.8 " /></g><g id="bbox:0.6_45_0.7_45.1" ><polygon points="237.4,371.8 241.3,371.8 241.3,377.2 237.4,377.2 237.4,371.8 " /></g><g id="bbox:0.7_45_0.8_45.1" ><polygon points="241.3,371.8 245.1,371.8 245.1,377.2 241.3,377.2 241.3,371.8 " /></g><g id="bbox:0.8_45_0.9_45.1" ><polygon points="245.1,371.8 249.0,371.8 249.0,377.2 245.1,377.2 245.1,371.8 " /></g><g id="bbox:0.9_45_1_45.1" ><polygon points="249.0,371.8 252.8,371.8 252.8,377.2 249.0,377.2 249.0,371.8 " /></g><g id="bbox:1_45_1.1_45.1" ><polygon points="252.8,371.8 256.7,371.8 256.7,377.2 252.8,377.2 252.8,371.8 " /></g><g id="bbox:1.1_45_1.2_45.1" ><polygon points="256.7,371.8 260.5,371.8 260.5,377.2 256.7,377.2 256.7,371.8 " /></g><g id="bbox:1.2_45_1.3_45.1" ><polygon points="260.5,371.8 264.4,371.8 264.4,377.2 260.5,377.2 260.5,371.8 " /></g><g id="bbox:1.3_45_1.4_45.1" ><polygon points="264.4,371.8 268.2,371.8 268.2,377.2 264.4,377.2 264.4,371.8 " /></g><g id="bbox:1.4_45_1.5_45.1" ><polygon points="268.2,371.8 272.1,371.8 272.1,377.2 268.2,377.2 268.2,371.8 " /></g><g id="bbox:1.5_45_1.6_45.1" ><polygon points="272.1,371.8 275.9,371.8 275.9,377.2 272.1,377.2 272.1,371.8 " /></g><g id="bbox:1.6_45_1.7_45.1" ><polygon points="275.9,371.8 279.8,371.8 279.8,377.2 275.9,377.2 275.9,371.8 " /></g><g id="bbox:1.7_45_1.8_45.1" ><polygon points="279.8,371.8 283.6,371.8 283.6,377.2 279.8,377.2 279.8,371.8 " /></g><g id="bbox:1.8_45_1.9_45.1" ><polygon points="283.6,371.8 287.5,371.8 287.5,377.2 283.6,377.2 283.6,371.8 " /></g><g id="bbox:1.9_45_2_45.1" ><polygon points="287.5,371.8 291.3,371.8 291.3,377.2 287.5,377.2 287.5,371.8 " /></g><g id="bbox:2_45_2.1_45.1" ><polygon points="291.3,371.8 295.2,371.8 295.2,377.2 291.3,377.2 291.3,371.8 " /></g><g id="bbox:2.1_45_2.2_45.1" ><polygon points="295.2,371.8 299.0,371.8 299.0,377.2 295.2,377.2 295.2,371.8 " /></g><g id="bbox:2.2_45_2.3_45.1" ><polygon points="299.0,371.8 302.8,371.8 302.8,377.2 299.0,377.2 299.0,371.8 " /></g><g id="bbox:2.3_45_2.4_45.1" ><polygon points="302.8,371.8 306.7,371.8 306.7,377.2 302.8,377.2 302.8,371.8 " /></g><g id="bbox:2.4_45_2.5_45.1" ><polygon points="306.7,371.8 310.5,371.8 310.5,377.2 306.7,377.2 306.7,371.8 " /></g><g id="bbox:2.5_45_2.6_45.1" ><polygon points="310.5,371.8 314.4,371.8 314.4,377.2 310.5,377.2 310.5,371.8 " /></g><g id="bbox:2.6_45_2.7_45.1" ><polygon points="314.4,371.8 318.2,371.8 318.2,377.2 314.4,377.2 314.4,371.8 " /></g><g id="bbox:2.7_45_2.8_45.1" ><polygon points="318.2,371.8 322.1,371.8 322.1,377.2 318.2,377.2 318.2,371.8 " /></g><g id="bbox:2.8_45_2.9_45.1" ><polygon points="322.1,371.8 325.9,371.8 325.9,377.2 322.1,377.2 322.1,371.8 " /></g><g id="bbox:2.9_45_3_45.1" ><polygon points="325.9,371.8 329.8,371.8 329.8,377.2 325.9,377.2 325.9,371.8 " /></g><g id="bbox:3_45_3.1_45.1" ><polygon points="329.8,371.8 333.6,371.8 333.6,377.2 329.8,377.2 329.8,371.8 " /></g><g id="bbox:3.1_45_3.2_45.1" ><polygon points="333.6,371.8 337.5,371.8 337.5,377.2 333.6,377.2 333.6,371.8 " /></g><g id="bbox:3.2_45_3.3_45.1" ><polygon points="337.5,371.8 341.3,371.8 341.3,377.2 337.5,377.2 337.5,371.8 " /></g><g id="bbox:3.3_45_3.4_45.1" ><polygon points="341.3,371.8 345.2,371.8 345.2,377.2 341.3,377.2 341.3,371.8 " /></g><g id="bbox:3.4_45_3.5_45.1" ><polygon points="345.2,371.8 349.0,371.8 349.0,377.2 345.2,377.2 345.2,371.8 " /></g><g id="bbox:3.5_45_3.6_45.1" ><polygon points="349.0,371.8 352.9,371.8 352.9,377.2 349.0,377.2 349.0,371.8 " /></g><g id="bbox:3.6_45_3.7_45.1" ><polygon points="352.9,371.8 356.7,371.8 356.7,377.2 352.9,377.2 352.9,371.8 " /></g><g id="bbox:3.7_45_3.8_45.1" ><polygon points="356.7,371.8 360.6,371.8 360.6,377.2 356.7,377.2 356.7,371.8 " /></g><g id="bbox:3.8_45_3.9_45.1" ><polygon points="360.6,371.8 364.4,371.8 364.4,377.2 360.6,377.2 360.6,371.8 " /></g><g id="bbox:3.9_45_4_45.1" ><polygon points="364.4,371.8 368.3,371.8 368.3,377.2 364.4,377.2 364.4,371.8 " /></g><g id="bbox:4_45_4.1_45.1" ><polygon points="368.3,371.8 372.1,371.8 372.1,377.2 368.3,377.2 368.3,371.8 " /></g><g id="bbox:4.1_45_4.2_45.1" ><polygon points="372.1,371.8 376.0,371.8 376.0,377.2 372.1,377.2 372.1,371.8 " /></g><g id="bbox:4.2_45_4.3_45.1" ><polygon points="376.0,371.8 379.8,371.8 379.8,377.2 376.0,377.2 376.0,371.8 " /></g><g id="bbox:4.3_45_4.4_45.1" ><polygon points="379.8,371.8 383.7,371.8 383.7,377.2 379.8,377.2 379.8,371.8 " /></g><g id="bbox:4.4_45_4.5_45.1" ><polygon points="383.7,371.8 387.5,371.8 387.5,377.2 383.7,377.2 383.7,371.8 " /></g><g id="bbox:4.5_45_4.6_45.1" ><polygon points="387.5,371.8 391.4,371.8 391.4,377.2 387.5,377.2 387.5,371.8 " /></g><g id="bbox:4.6_45_4.7_45.1" ><polygon points="391.4,371.8 395.2,371.8 395.2,377.2 391.4,377.2 391.4,371.8 " /></g><g id="bbox:4.7_45_4.8_45.1" ><polygon points="395.2,371.8 399.1,371.8 399.1,377.2 395.2,377.2 395.2,371.8 " /></g><g id="bbox:4.8_45_4.9_45.1" ><polygon points="399.1,371.8 402.9,371.8 402.9,377.2 399.1,377.2 399.1,371.8 " /></g><g id="bbox:4.9_45_5_45.1" ><polygon points="402.9,371.8 406.7,371.8 406.7,377.2 402.9,377.2 402.9,371.8 " /></g><g id="bbox:5_45_5.1_45.1" ><polygon points="406.7,371.8 410.6,371.8 410.6,377.2 406.7,377.2 406.7,371.8 " /></g><g id="bbox:5.1_45_5.2_45.1" ><polygon points="410.6,371.8 414.4,371.8 414.4,377.2 410.6,377.2 410.6,371.8 " /></g><g id="bbox:5.2_45_5.3_45.1" ><polygon points="414.4,371.8 418.3,371.8 418.3,377.2 414.4,377.2 414.4,371.8 " /></g><g id="bbox:5.3_45_5.4_45.1" ><polygon points="418.3,371.8 422.1,371.8 422.1,377.2 418.3,377.2 418.3,371.8 " /></g><g id="bbox:5.4_45_5.5_45.1" ><polygon points="422.1,371.8 426.0,371.8 426.0,377.2 422.1,377.2 422.1,371.8 " /></g><g id="bbox:5.5_45_5.6_45.1" ><polygon points="426.0,371.8 429.8,371.8 429.8,377.2 426.0,377.2 426.0,371.8 " /></g><g id="bbox:5.6_45_5.7_45.1" ><polygon points="429.8,371.8 433.7,371.8 433.7,377.2 429.8,377.2 429.8,371.8 " /></g><g id="bbox:5.7_45_5.8_45.1" ><polygon points="433.7,371.8 437.5,371.8 437.5,377.2 433.7,377.2 433.7,371.8 " /></g><g id="bbox:5.8_45_5.9_45.1" ><polygon points="437.5,371.8 441.4,371.8 441.4,377.2 437.5,377.2 437.5,371.8 " /></g><g id="bbox:5.9_45_6_45.1" ><polygon points="441.4,371.8 445.2,371.8 445.2,377.2 441.4,377.2 441.4,371.8 " /></g><g id="bbox:6_45_6.1_45.1" ><polygon points="445.2,371.8 449.1,371.8 449.1,377.2 445.2,377.2 445.2,371.8 " /></g><g id="bbox:6.1_45_6.2_45.1" ><polygon points="449.1,371.8 452.9,371.8 452.9,377.2 449.1,377.2 449.1,371.8 " /></g><g id="bbox:6.2_45_6.3_45.1" ><polygon points="452.9,371.8 456.8,371.8 456.8,377.2 452.9,377.2 452.9,371.8 " /></g><g id="bbox:6.3_45_6.4_45.1" ><polygon points="456.8,371.8 460.6,371.8 460.6,377.2 456.8,377.2 456.8,371.8 " /></g><g id="bbox:6.4_45_6.5_45.1" ><polygon points="460.6,371.8 464.5,371.8 464.5,377.2 460.6,377.2 460.6,371.8 " /></g><g id="bbox:6.5_45_6.6_45.1" ><polygon points="464.5,371.8 468.3,371.8 468.3,377.2 464.5,377.2 464.5,371.8 " /></g><g id="bbox:6.6_45_6.7_45.1" ><polygon points="468.3,371.8 472.2,371.8 472.2,377.2 468.3,377.2 468.3,371.8 " /></g><g id="bbox:6.7_45_6.8_45.1" ><polygon points="472.2,371.8 476.0,371.8 476.0,377.2 472.2,377.2 472.2,371.8 " /></g><g id="bbox:-1.3_44.9_-1.2_45" ><polygon points="164.3,377.2 168.2,377.2 168.2,382.7 164.3,382.7 164.3,377.2 " /></g><g id="bbox:-1.2_44.9_-1.1_45" ><polygon points="168.2,377.2 172.0,377.2 172.0,382.7 168.2,382.7 168.2,377.2 " /></g><g id="bbox:-1.1_44.9_-1_45" ><polygon points="172.0,377.2 175.9,377.2 175.9,382.7 172.0,382.7 172.0,377.2 " /></g><g id="bbox:-1_44.9_-0.9_45" ><polygon points="175.9,377.2 179.7,377.2 179.7,382.7 175.9,382.7 175.9,377.2 " /></g><g id="bbox:-0.9_44.9_-0.8_45" ><polygon points="179.7,377.2 183.6,377.2 183.6,382.7 179.7,382.7 179.7,377.2 " /></g><g id="bbox:-0.8_44.9_-0.7_45" ><polygon points="183.6,377.2 187.4,377.2 187.4,382.7 183.6,382.7 183.6,377.2 " /></g><g id="bbox:-0.7_44.9_-0.6_45" ><polygon points="187.4,377.2 191.3,377.2 191.3,382.7 187.4,382.7 187.4,377.2 " /></g><g id="bbox:-0.6_44.9_-0.5_45" ><polygon points="191.3,377.2 195.1,377.2 195.1,382.7 191.3,382.7 191.3,377.2 " /></g><g id="bbox:-0.5_44.9_-0.4_45" ><polygon points="195.1,377.2 198.9,377.2 198.9,382.7 195.1,382.7 195.1,377.2 " /></g><g id="bbox:-0.4_44.9_-0.3_45" ><polygon points="198.9,377.2 202.8,377.2 202.8,382.7 198.9,382.7 198.9,377.2 " /></g><g id="bbox:-0.3_44.9_-0.2_45" ><polygon points="202.8,377.2 206.6,377.2 206.6,382.7 202.8,382.7 202.8,377.2 " /></g><g id="bbox:-0.2_44.9_-0.1_45" ><polygon points="206.6,377.2 210.5,377.2 210.5,382.7 206.6,382.7 206.6,377.2 " /></g><g id="bbox:-0.1_44.9_0_45" ><polygon points="210.5,377.2 214.3,377.2 214.3,382.7 210.5,382.7 210.5,377.2 " /></g><g id="bbox:0_44.9_0.1_45" ><polygon points="214.3,377.2 218.2,377.2 218.2,382.7 214.3,382.7 214.3,377.2 " /></g><g id="bbox:0.1_44.9_0.2_45" ><polygon points="218.2,377.2 222.0,377.2 222.0,382.7 218.2,382.7 218.2,377.2 " /></g><g id="bbox:0.2_44.9_0.3_45" ><polygon points="222.0,377.2 225.9,377.2 225.9,382.7 222.0,382.7 222.0,377.2 " /></g><g id="bbox:0.3_44.9_0.4_45" ><polygon points="225.9,377.2 229.7,377.2 229.7,382.7 225.9,382.7 225.9,377.2 " /></g><g id="bbox:0.4_44.9_0.5_45" ><polygon points="229.7,377.2 233.6,377.2 233.6,382.7 229.7,382.7 229.7,377.2 " /></g><g id="bbox:0.5_44.9_0.6_45" ><polygon points="233.6,377.2 237.4,377.2 237.4,382.7 233.6,382.7 233.6,377.2 " /></g><g id="bbox:0.6_44.9_0.7_45" ><polygon points="237.4,377.2 241.3,377.2 241.3,382.7 237.4,382.7 237.4,377.2 " /></g><g id="bbox:0.7_44.9_0.8_45" ><polygon points="241.3,377.2 245.1,377.2 245.1,382.7 241.3,382.7 241.3,377.2 " /></g><g id="bbox:0.8_44.9_0.9_45" ><polygon points="245.1,377.2 249.0,377.2 249.0,382.7 245.1,382.7 245.1,377.2 " /></g><g id="bbox:0.9_44.9_1_45" ><polygon points="249.0,377.2 252.8,377.2 252.8,382.7 249.0,382.7 249.0,377.2 " /></g><g id="bbox:1_44.9_1.1_45" ><polygon points="252.8,377.2 256.7,377.2 256.7,382.7 252.8,382.7 252.8,377.2 " /></g><g id="bbox:1.1_44.9_1.2_45" ><polygon points="256.7,377.2 260.5,377.2 260.5,382.7 256.7,382.7 256.7,377.2 " /></g><g id="bbox:1.2_44.9_1.3_45" ><polygon points="260.5,377.2 264.4,377.2 264.4,382.7 260.5,382.7 260.5,377.2 " /></g><g id="bbox:1.3_44.9_1.4_45" ><polygon points="264.4,377.2 268.2,377.2 268.2,382.7 264.4,382.7 264.4,377.2 " /></g><g id="bbox:1.4_44.9_1.5_45" ><polygon points="268.2,377.2 272.1,377.2 272.1,382.7 268.2,382.7 268.2,377.2 " /></g><g id="bbox:1.5_44.9_1.6_45" ><polygon points="272.1,377.2 275.9,377.2 275.9,382.7 272.1,382.7 272.1,377.2 " /></g><g id="bbox:1.6_44.9_1.7_45" ><polygon points="275.9,377.2 279.8,377.2 279.8,382.7 275.9,382.7 275.9,377.2 " /></g><g id="bbox:1.7_44.9_1.8_45" ><polygon points="279.8,377.2 283.6,377.2 283.6,382.7 279.8,382.7 279.8,377.2 " /></g><g id="bbox:1.8_44.9_1.9_45" ><polygon points="283.6,377.2 287.5,377.2 287.5,382.7 283.6,382.7 283.6,377.2 " /></g><g id="bbox:1.9_44.9_2_45" ><polygon points="287.5,377.2 291.3,377.2 291.3,382.7 287.5,382.7 287.5,377.2 " /></g><g id="bbox:2_44.9_2.1_45" ><polygon points="291.3,377.2 295.2,377.2 295.2,382.7 291.3,382.7 291.3,377.2 " /></g><g id="bbox:2.1_44.9_2.2_45" ><polygon points="295.2,377.2 299.0,377.2 299.0,382.7 295.2,382.7 295.2,377.2 " /></g><g id="bbox:2.2_44.9_2.3_45" ><polygon points="299.0,377.2 302.8,377.2 302.8,382.7 299.0,382.7 299.0,377.2 " /></g><g id="bbox:2.3_44.9_2.4_45" ><polygon points="302.8,377.2 306.7,377.2 306.7,382.7 302.8,382.7 302.8,377.2 " /></g><g id="bbox:2.4_44.9_2.5_45" ><polygon points="306.7,377.2 310.5,377.2 310.5,382.7 306.7,382.7 306.7,377.2 " /></g><g id="bbox:2.5_44.9_2.6_45" ><polygon points="310.5,377.2 314.4,377.2 314.4,382.7 310.5,382.7 310.5,377.2 " /></g><g id="bbox:2.6_44.9_2.7_45" ><polygon points="314.4,377.2 318.2,377.2 318.2,382.7 314.4,382.7 314.4,377.2 " /></g><g id="bbox:2.7_44.9_2.8_45" ><polygon points="318.2,377.2 322.1,377.2 322.1,382.7 318.2,382.7 318.2,377.2 " /></g><g id="bbox:2.8_44.9_2.9_45" ><polygon points="322.1,377.2 325.9,377.2 325.9,382.7 322.1,382.7 322.1,377.2 " /></g><g id="bbox:2.9_44.9_3_45" ><polygon points="325.9,377.2 329.8,377.2 329.8,382.7 325.9,382.7 325.9,377.2 " /></g><g id="bbox:3_44.9_3.1_45" ><polygon points="329.8,377.2 333.6,377.2 333.6,382.7 329.8,382.7 329.8,377.2 " /></g><g id="bbox:3.1_44.9_3.2_45" ><polygon points="333.6,377.2 337.5,377.2 337.5,382.7 333.6,382.7 333.6,377.2 " /></g><g id="bbox:3.2_44.9_3.3_45" ><polygon points="337.5,377.2 341.3,377.2 341.3,382.7 337.5,382.7 337.5,377.2 " /></g><g id="bbox:3.3_44.9_3.4_45" ><polygon points="341.3,377.2 345.2,377.2 345.2,382.7 341.3,382.7 341.3,377.2 " /></g><g id="bbox:3.4_44.9_3.5_45" ><polygon points="345.2,377.2 349.0,377.2 349.0,382.7 345.2,382.7 345.2,377.2 " /></g><g id="bbox:3.5_44.9_3.6_45" ><polygon points="349.0,377.2 352.9,377.2 352.9,382.7 349.0,382.7 349.0,377.2 " /></g><g id="bbox:3.6_44.9_3.7_45" ><polygon points="352.9,377.2 356.7,377.2 356.7,382.7 352.9,382.7 352.9,377.2 " /></g><g id="bbox:3.7_44.9_3.8_45" ><polygon points="356.7,377.2 360.6,377.2 360.6,382.7 356.7,382.7 356.7,377.2 " /></g><g id="bbox:3.8_44.9_3.9_45" ><polygon points="360.6,377.2 364.4,377.2 364.4,382.7 360.6,382.7 360.6,377.2 " /></g><g id="bbox:3.9_44.9_4_45" ><polygon points="364.4,377.2 368.3,377.2 368.3,382.7 364.4,382.7 364.4,377.2 " /></g><g id="bbox:4_44.9_4.1_45" ><polygon points="368.3,377.2 372.1,377.2 372.1,382.7 368.3,382.7 368.3,377.2 " /></g><g id="bbox:4.1_44.9_4.2_45" ><polygon points="372.1,377.2 376.0,377.2 376.0,382.7 372.1,382.7 372.1,377.2 " /></g><g id="bbox:4.2_44.9_4.3_45" ><polygon points="376.0,377.2 379.8,377.2 379.8,382.7 376.0,382.7 376.0,377.2 " /></g><g id="bbox:4.3_44.9_4.4_45" ><polygon points="379.8,377.2 383.7,377.2 383.7,382.7 379.8,382.7 379.8,377.2 " /></g><g id="bbox:4.4_44.9_4.5_45" ><polygon points="383.7,377.2 387.5,377.2 387.5,382.7 383.7,382.7 383.7,377.2 " /></g><g id="bbox:4.5_44.9_4.6_45" ><polygon points="387.5,377.2 391.4,377.2 391.4,382.7 387.5,382.7 387.5,377.2 " /></g><g id="bbox:4.6_44.9_4.7_45" ><polygon points="391.4,377.2 395.2,377.2 395.2,382.7 391.4,382.7 391.4,377.2 " /></g><g id="bbox:4.7_44.9_4.8_45" ><polygon points="395.2,377.2 399.1,377.2 399.1,382.7 395.2,382.7 395.2,377.2 " /></g><g id="bbox:4.8_44.9_4.9_45" ><polygon points="399.1,377.2 402.9,377.2 402.9,382.7 399.1,382.7 399.1,377.2 " /></g><g id="bbox:4.9_44.9_5_45" ><polygon points="402.9,377.2 406.7,377.2 406.7,382.7 402.9,382.7 402.9,377.2 " /></g><g id="bbox:5_44.9_5.1_45" ><polygon points="406.7,377.2 410.6,377.2 410.6,382.7 406.7,382.7 406.7,377.2 " /></g><g id="bbox:5.1_44.9_5.2_45" ><polygon points="410.6,377.2 414.4,377.2 414.4,382.7 410.6,382.7 410.6,377.2 " /></g><g id="bbox:5.2_44.9_5.3_45" ><polygon points="414.4,377.2 418.3,377.2 418.3,382.7 414.4,382.7 414.4,377.2 " /></g><g id="bbox:5.3_44.9_5.4_45" ><polygon points="418.3,377.2 422.1,377.2 422.1,382.7 418.3,382.7 418.3,377.2 " /></g><g id="bbox:5.4_44.9_5.5_45" ><polygon points="422.1,377.2 426.0,377.2 426.0,382.7 422.1,382.7 422.1,377.2 " /></g><g id="bbox:5.5_44.9_5.6_45" ><polygon points="426.0,377.2 429.8,377.2 429.8,382.7 426.0,382.7 426.0,377.2 " /></g><g id="bbox:5.6_44.9_5.7_45" ><polygon points="429.8,377.2 433.7,377.2 433.7,382.7 429.8,382.7 429.8,377.2 " /></g><g id="bbox:5.7_44.9_5.8_45" ><polygon points="433.7,377.2 437.5,377.2 437.5,382.7 433.7,382.7 433.7,377.2 " /></g><g id="bbox:5.8_44.9_5.9_45" ><polygon points="437.5,377.2 441.4,377.2 441.4,382.7 437.5,382.7 437.5,377.2 " /></g><g id="bbox:5.9_44.9_6_45" ><polygon points="441.4,377.2 445.2,377.2 445.2,382.7 441.4,382.7 441.4,377.2 " /></g><g id="bbox:6_44.9_6.1_45" ><polygon points="445.2,377.2 449.1,377.2 449.1,382.7 445.2,382.7 445.2,377.2 " /></g><g id="bbox:6.1_44.9_6.2_45" ><polygon points="449.1,377.2 452.9,377.2 452.9,382.7 449.1,382.7 449.1,377.2 " /></g><g id="bbox:6.2_44.9_6.3_45" ><polygon points="452.9,377.2 456.8,377.2 456.8,382.7 452.9,382.7 452.9,377.2 " /></g><g id="bbox:6.3_44.9_6.4_45" ><polygon points="456.8,377.2 460.6,377.2 460.6,382.7 456.8,382.7 456.8,377.2 " /></g><g id="bbox:6.4_44.9_6.5_45" ><polygon points="460.6,377.2 464.5,377.2 464.5,382.7 460.6,382.7 460.6,377.2 " /></g><g id="bbox:6.5_44.9_6.6_45" ><polygon points="464.5,377.2 468.3,377.2 468.3,382.7 464.5,382.7 464.5,377.2 " /></g><g id="bbox:6.6_44.9_6.7_45" ><polygon points="468.3,377.2 472.2,377.2 472.2,382.7 468.3,382.7 468.3,377.2 " /></g><g id="bbox:6.7_44.9_6.8_45" ><polygon points="472.2,377.2 476.0,377.2 476.0,382.7 472.2,382.7 472.2,377.2 " /></g><g id="bbox:-1.3_44.8_-1.2_44.9" ><polygon points="164.3,382.7 168.2,382.7 168.2,388.1 164.3,388.1 164.3,382.7 " /></g><g id="bbox:-1.2_44.8_-1.1_44.9" ><polygon points="168.2,382.7 172.0,382.7 172.0,388.1 168.2,388.1 168.2,382.7 " /></g><g id="bbox:-1.1_44.8_-1_44.9" ><polygon points="172.0,382.7 175.9,382.7 175.9,388.1 172.0,388.1 172.0,382.7 " /></g><g id="bbox:-1_44.8_-0.9_44.9" ><polygon points="175.9,382.7 179.7,382.7 179.7,388.1 175.9,388.1 175.9,382.7 " /></g><g id="bbox:-0.9_44.8_-0.8_44.9" ><polygon points="179.7,382.7 183.6,382.7 183.6,388.1 179.7,388.1 179.7,382.7 " /></g><g id="bbox:-0.8_44.8_-0.7_44.9" ><polygon points="183.6,382.7 187.4,382.7 187.4,388.1 183.6,388.1 183.6,382.7 " /></g><g id="bbox:-0.7_44.8_-0.6_44.9" ><polygon points="187.4,382.7 191.3,382.7 191.3,388.1 187.4,388.1 187.4,382.7 " /></g><g id="bbox:-0.6_44.8_-0.5_44.9" ><polygon points="191.3,382.7 195.1,382.7 195.1,388.1 191.3,388.1 191.3,382.7 " /></g><g id="bbox:-0.5_44.8_-0.4_44.9" ><polygon points="195.1,382.7 198.9,382.7 198.9,388.1 195.1,388.1 195.1,382.7 " /></g><g id="bbox:-0.4_44.8_-0.3_44.9" ><polygon points="198.9,382.7 202.8,382.7 202.8,388.1 198.9,388.1 198.9,382.7 " /></g><g id="bbox:-0.3_44.8_-0.2_44.9" ><polygon points="202.8,382.7 206.6,382.7 206.6,388.1 202.8,388.1 202.8,382.7 " /></g><g id="bbox:-0.2_44.8_-0.1_44.9" ><polygon points="206.6,382.7 210.5,382.7 210.5,388.1 206.6,388.1 206.6,382.7 " /></g><g id="bbox:-0.1_44.8_0_44.9" ><polygon points="210.5,382.7 214.3,382.7 214.3,388.1 210.5,388.1 210.5,382.7 " /></g><g id="bbox:0_44.8_0.1_44.9" ><polygon points="214.3,382.7 218.2,382.7 218.2,388.1 214.3,388.1 214.3,382.7 " /></g><g id="bbox:0.1_44.8_0.2_44.9" ><polygon points="218.2,382.7 222.0,382.7 222.0,388.1 218.2,388.1 218.2,382.7 " /></g><g id="bbox:0.2_44.8_0.3_44.9" ><polygon points="222.0,382.7 225.9,382.7 225.9,388.1 222.0,388.1 222.0,382.7 " /></g><g id="bbox:0.3_44.8_0.4_44.9" ><polygon points="225.9,382.7 229.7,382.7 229.7,388.1 225.9,388.1 225.9,382.7 " /></g><g id="bbox:0.4_44.8_0.5_44.9" ><polygon points="229.7,382.7 233.6,382.7 233.6,388.1 229.7,388.1 229.7,382.7 " /></g><g id="bbox:0.5_44.8_0.6_44.9" ><polygon points="233.6,382.7 237.4,382.7 237.4,388.1 233.6,388.1 233.6,382.7 " /></g><g id="bbox:0.6_44.8_0.7_44.9" ><polygon points="237.4,382.7 241.3,382.7 241.3,388.1 237.4,388.1 237.4,382.7 " /></g><g id="bbox:0.7_44.8_0.8_44.9" ><polygon points="241.3,382.7 245.1,382.7 245.1,388.1 241.3,388.1 241.3,382.7 " /></g><g id="bbox:0.8_44.8_0.9_44.9" ><polygon points="245.1,382.7 249.0,382.7 249.0,388.1 245.1,388.1 245.1,382.7 " /></g><g id="bbox:0.9_44.8_1_44.9" ><polygon points="249.0,382.7 252.8,382.7 252.8,388.1 249.0,388.1 249.0,382.7 " /></g><g id="bbox:1_44.8_1.1_44.9" ><polygon points="252.8,382.7 256.7,382.7 256.7,388.1 252.8,388.1 252.8,382.7 " /></g><g id="bbox:1.1_44.8_1.2_44.9" ><polygon points="256.7,382.7 260.5,382.7 260.5,388.1 256.7,388.1 256.7,382.7 " /></g><g id="bbox:1.2_44.8_1.3_44.9" ><polygon points="260.5,382.7 264.4,382.7 264.4,388.1 260.5,388.1 260.5,382.7 " /></g><g id="bbox:1.3_44.8_1.4_44.9" ><polygon points="264.4,382.7 268.2,382.7 268.2,388.1 264.4,388.1 264.4,382.7 " /></g><g id="bbox:1.4_44.8_1.5_44.9" ><polygon points="268.2,382.7 272.1,382.7 272.1,388.1 268.2,388.1 268.2,382.7 " /></g><g id="bbox:1.5_44.8_1.6_44.9" ><polygon points="272.1,382.7 275.9,382.7 275.9,388.1 272.1,388.1 272.1,382.7 " /></g><g id="bbox:1.6_44.8_1.7_44.9" ><polygon points="275.9,382.7 279.8,382.7 279.8,388.1 275.9,388.1 275.9,382.7 " /></g><g id="bbox:1.7_44.8_1.8_44.9" ><polygon points="279.8,382.7 283.6,382.7 283.6,388.1 279.8,388.1 279.8,382.7 " /></g><g id="bbox:1.8_44.8_1.9_44.9" ><polygon points="283.6,382.7 287.5,382.7 287.5,388.1 283.6,388.1 283.6,382.7 " /></g><g id="bbox:1.9_44.8_2_44.9" ><polygon points="287.5,382.7 291.3,382.7 291.3,388.1 287.5,388.1 287.5,382.7 " /></g><g id="bbox:2_44.8_2.1_44.9" ><polygon points="291.3,382.7 295.2,382.7 295.2,388.1 291.3,388.1 291.3,382.7 " /></g><g id="bbox:2.1_44.8_2.2_44.9" ><polygon points="295.2,382.7 299.0,382.7 299.0,388.1 295.2,388.1 295.2,382.7 " /></g><g id="bbox:2.2_44.8_2.3_44.9" ><polygon points="299.0,382.7 302.8,382.7 302.8,388.1 299.0,388.1 299.0,382.7 " /></g><g id="bbox:2.3_44.8_2.4_44.9" ><polygon points="302.8,382.7 306.7,382.7 306.7,388.1 302.8,388.1 302.8,382.7 " /></g><g id="bbox:2.4_44.8_2.5_44.9" ><polygon points="306.7,382.7 310.5,382.7 310.5,388.1 306.7,388.1 306.7,382.7 " /></g><g id="bbox:2.5_44.8_2.6_44.9" ><polygon points="310.5,382.7 314.4,382.7 314.4,388.1 310.5,388.1 310.5,382.7 " /></g><g id="bbox:2.6_44.8_2.7_44.9" ><polygon points="314.4,382.7 318.2,382.7 318.2,388.1 314.4,388.1 314.4,382.7 " /></g><g id="bbox:2.7_44.8_2.8_44.9" ><polygon points="318.2,382.7 322.1,382.7 322.1,388.1 318.2,388.1 318.2,382.7 " /></g><g id="bbox:2.8_44.8_2.9_44.9" ><polygon points="322.1,382.7 325.9,382.7 325.9,388.1 322.1,388.1 322.1,382.7 " /></g><g id="bbox:2.9_44.8_3_44.9" ><polygon points="325.9,382.7 329.8,382.7 329.8,388.1 325.9,388.1 325.9,382.7 " /></g><g id="bbox:3_44.8_3.1_44.9" ><polygon points="329.8,382.7 333.6,382.7 333.6,388.1 329.8,388.1 329.8,382.7 " /></g><g id="bbox:3.1_44.8_3.2_44.9" ><polygon points="333.6,382.7 337.5,382.7 337.5,388.1 333.6,388.1 333.6,382.7 " /></g><g id="bbox:3.2_44.8_3.3_44.9" ><polygon points="337.5,382.7 341.3,382.7 341.3,388.1 337.5,388.1 337.5,382.7 " /></g><g id="bbox:3.3_44.8_3.4_44.9" ><polygon points="341.3,382.7 345.2,382.7 345.2,388.1 341.3,388.1 341.3,382.7 " /></g><g id="bbox:3.4_44.8_3.5_44.9" ><polygon points="345.2,382.7 349.0,382.7 349.0,388.1 345.2,388.1 345.2,382.7 " /></g><g id="bbox:3.5_44.8_3.6_44.9" ><polygon points="349.0,382.7 352.9,382.7 352.9,388.1 349.0,388.1 349.0,382.7 " /></g><g id="bbox:3.6_44.8_3.7_44.9" ><polygon points="352.9,382.7 356.7,382.7 356.7,388.1 352.9,388.1 352.9,382.7 " /></g><g id="bbox:3.7_44.8_3.8_44.9" ><polygon points="356.7,382.7 360.6,382.7 360.6,388.1 356.7,388.1 356.7,382.7 " /></g><g id="bbox:3.8_44.8_3.9_44.9" ><polygon points="360.6,382.7 364.4,382.7 364.4,388.1 360.6,388.1 360.6,382.7 " /></g><g id="bbox:3.9_44.8_4_44.9" ><polygon points="364.4,382.7 368.3,382.7 368.3,388.1 364.4,388.1 364.4,382.7 " /></g><g id="bbox:4_44.8_4.1_44.9" ><polygon points="368.3,382.7 372.1,382.7 372.1,388.1 368.3,388.1 368.3,382.7 " /></g><g id="bbox:4.1_44.8_4.2_44.9" ><polygon points="372.1,382.7 376.0,382.7 376.0,388.1 372.1,388.1 372.1,382.7 " /></g><g id="bbox:4.2_44.8_4.3_44.9" ><polygon points="376.0,382.7 379.8,382.7 379.8,388.1 376.0,388.1 376.0,382.7 " /></g><g id="bbox:4.3_44.8_4.4_44.9" ><polygon points="379.8,382.7 383.7,382.7 383.7,388.1 379.8,388.1 379.8,382.7 " /></g><g id="bbox:4.4_44.8_4.5_44.9" ><polygon points="383.7,382.7 387.5,382.7 387.5,388.1 383.7,388.1 383.7,382.7 " /></g><g id="bbox:4.5_44.8_4.6_44.9" ><polygon points="387.5,382.7 391.4,382.7 391.4,388.1 387.5,388.1 387.5,382.7 " /></g><g id="bbox:4.6_44.8_4.7_44.9" ><polygon points="391.4,382.7 395.2,382.7 395.2,388.1 391.4,388.1 391.4,382.7 " /></g><g id="bbox:4.7_44.8_4.8_44.9" ><polygon points="395.2,382.7 399.1,382.7 399.1,388.1 395.2,388.1 395.2,382.7 " /></g><g id="bbox:4.8_44.8_4.9_44.9" ><polygon points="399.1,382.7 402.9,382.7 402.9,388.1 399.1,388.1 399.1,382.7 " /></g><g id="bbox:4.9_44.8_5_44.9" ><polygon points="402.9,382.7 406.7,382.7 406.7,388.1 402.9,388.1 402.9,382.7 " /></g><g id="bbox:5_44.8_5.1_44.9" ><polygon points="406.7,382.7 410.6,382.7 410.6,388.1 406.7,388.1 406.7,382.7 " /></g><g id="bbox:5.1_44.8_5.2_44.9" ><polygon points="410.6,382.7 414.4,382.7 414.4,388.1 410.6,388.1 410.6,382.7 " /></g><g id="bbox:5.2_44.8_5.3_44.9" ><polygon points="414.4,382.7 418.3,382.7 418.3,388.1 414.4,388.1 414.4,382.7 " /></g><g id="bbox:5.3_44.8_5.4_44.9" ><polygon points="418.3,382.7 422.1,382.7 422.1,388.1 418.3,388.1 418.3,382.7 " /></g><g id="bbox:5.4_44.8_5.5_44.9" ><polygon points="422.1,382.7 426.0,382.7 426.0,388.1 422.1,388.1 422.1,382.7 " /></g><g id="bbox:5.5_44.8_5.6_44.9" ><polygon points="426.0,382.7 429.8,382.7 429.8,388.1 426.0,388.1 426.0,382.7 " /></g><g id="bbox:5.6_44.8_5.7_44.9" ><polygon points="429.8,382.7 433.7,382.7 433.7,388.1 429.8,388.1 429.8,382.7 " /></g><g id="bbox:5.7_44.8_5.8_44.9" ><polygon points="433.7,382.7 437.5,382.7 437.5,388.1 433.7,388.1 433.7,382.7 " /></g><g id="bbox:5.8_44.8_5.9_44.9" ><polygon points="437.5,382.7 441.4,382.7 441.4,388.1 437.5,388.1 437.5,382.7 " /></g><g id="bbox:5.9_44.8_6_44.9" ><polygon points="441.4,382.7 445.2,382.7 445.2,388.1 441.4,388.1 441.4,382.7 " /></g><g id="bbox:6_44.8_6.1_44.9" ><polygon points="445.2,382.7 449.1,382.7 449.1,388.1 445.2,388.1 445.2,382.7 " /></g><g id="bbox:6.1_44.8_6.2_44.9" ><polygon points="449.1,382.7 452.9,382.7 452.9,388.1 449.1,388.1 449.1,382.7 " /></g><g id="bbox:6.2_44.8_6.3_44.9" ><polygon points="452.9,382.7 456.8,382.7 456.8,388.1 452.9,388.1 452.9,382.7 " /></g><g id="bbox:6.3_44.8_6.4_44.9" ><polygon points="456.8,382.7 460.6,382.7 460.6,388.1 456.8,388.1 456.8,382.7 " /></g><g id="bbox:6.4_44.8_6.5_44.9" ><polygon points="460.6,382.7 464.5,382.7 464.5,388.1 460.6,388.1 460.6,382.7 " /></g><g id="bbox:6.5_44.8_6.6_44.9" ><polygon points="464.5,382.7 468.3,382.7 468.3,388.1 464.5,388.1 464.5,382.7 " /></g><g id="bbox:6.6_44.8_6.7_44.9" ><polygon points="468.3,382.7 472.2,382.7 472.2,388.1 468.3,388.1 468.3,382.7 " /></g><g id="bbox:6.7_44.8_6.8_44.9" ><polygon points="472.2,382.7 476.0,382.7 476.0,388.1 472.2,388.1 472.2,382.7 " /></g><g id="bbox:6.8_44.8_6.9_44.9" ><polygon points="476.0,382.7 479.9,382.7 479.9,388.1 476.0,388.1 476.0,382.7 " /></g><g id="bbox:6.9_44.8_7_44.9" ><polygon points="479.9,382.7 483.7,382.7 483.7,388.1 479.9,388.1 479.9,382.7 " /></g><g id="bbox:7_44.8_7.1_44.9" ><polygon points="483.7,382.7 487.6,382.7 487.6,388.1 483.7,388.1 483.7,382.7 " /></g><g id="bbox:-1.3_44.7_-1.2_44.8" ><polygon points="164.3,388.1 168.2,388.1 168.2,393.5 164.3,393.5 164.3,388.1 " /></g><g id="bbox:-1.2_44.7_-1.1_44.8" ><polygon points="168.2,388.1 172.0,388.1 172.0,393.5 168.2,393.5 168.2,388.1 " /></g><g id="bbox:-1.1_44.7_-1_44.8" ><polygon points="172.0,388.1 175.9,388.1 175.9,393.5 172.0,393.5 172.0,388.1 " /></g><g id="bbox:-1_44.7_-0.9_44.8" ><polygon points="175.9,388.1 179.7,388.1 179.7,393.5 175.9,393.5 175.9,388.1 " /></g><g id="bbox:-0.9_44.7_-0.8_44.8" ><polygon points="179.7,388.1 183.6,388.1 183.6,393.5 179.7,393.5 179.7,388.1 " /></g><g id="bbox:-0.8_44.7_-0.7_44.8" ><polygon points="183.6,388.1 187.4,388.1 187.4,393.5 183.6,393.5 183.6,388.1 " /></g><g id="bbox:-0.7_44.7_-0.6_44.8" ><polygon points="187.4,388.1 191.3,388.1 191.3,393.5 187.4,393.5 187.4,388.1 " /></g><g id="bbox:-0.6_44.7_-0.5_44.8" ><polygon points="191.3,388.1 195.1,388.1 195.1,393.5 191.3,393.5 191.3,388.1 " /></g><g id="bbox:-0.5_44.7_-0.4_44.8" ><polygon points="195.1,388.1 198.9,388.1 198.9,393.5 195.1,393.5 195.1,388.1 " /></g><g id="bbox:-0.4_44.7_-0.3_44.8" ><polygon points="198.9,388.1 202.8,388.1 202.8,393.5 198.9,393.5 198.9,388.1 " /></g><g id="bbox:-0.3_44.7_-0.2_44.8" ><polygon points="202.8,388.1 206.6,388.1 206.6,393.5 202.8,393.5 202.8,388.1 " /></g><g id="bbox:-0.2_44.7_-0.1_44.8" ><polygon points="206.6,388.1 210.5,388.1 210.5,393.5 206.6,393.5 206.6,388.1 " /></g><g id="bbox:-0.1_44.7_0_44.8" ><polygon points="210.5,388.1 214.3,388.1 214.3,393.5 210.5,393.5 210.5,388.1 " /></g><g id="bbox:0_44.7_0.1_44.8" ><polygon points="214.3,388.1 218.2,388.1 218.2,393.5 214.3,393.5 214.3,388.1 " /></g><g id="bbox:0.1_44.7_0.2_44.8" ><polygon points="218.2,388.1 222.0,388.1 222.0,393.5 218.2,393.5 218.2,388.1 " /></g><g id="bbox:0.2_44.7_0.3_44.8" ><polygon points="222.0,388.1 225.9,388.1 225.9,393.5 222.0,393.5 222.0,388.1 " /></g><g id="bbox:0.3_44.7_0.4_44.8" ><polygon points="225.9,388.1 229.7,388.1 229.7,393.5 225.9,393.5 225.9,388.1 " /></g><g id="bbox:0.4_44.7_0.5_44.8" ><polygon points="229.7,388.1 233.6,388.1 233.6,393.5 229.7,393.5 229.7,388.1 " /></g><g id="bbox:0.5_44.7_0.6_44.8" ><polygon points="233.6,388.1 237.4,388.1 237.4,393.5 233.6,393.5 233.6,388.1 " /></g><g id="bbox:0.6_44.7_0.7_44.8" ><polygon points="237.4,388.1 241.3,388.1 241.3,393.5 237.4,393.5 237.4,388.1 " /></g><g id="bbox:0.7_44.7_0.8_44.8" ><polygon points="241.3,388.1 245.1,388.1 245.1,393.5 241.3,393.5 241.3,388.1 " /></g><g id="bbox:0.8_44.7_0.9_44.8" ><polygon points="245.1,388.1 249.0,388.1 249.0,393.5 245.1,393.5 245.1,388.1 " /></g><g id="bbox:0.9_44.7_1_44.8" ><polygon points="249.0,388.1 252.8,388.1 252.8,393.5 249.0,393.5 249.0,388.1 " /></g><g id="bbox:1_44.7_1.1_44.8" ><polygon points="252.8,388.1 256.7,388.1 256.7,393.5 252.8,393.5 252.8,388.1 " /></g><g id="bbox:1.1_44.7_1.2_44.8" ><polygon points="256.7,388.1 260.5,388.1 260.5,393.5 256.7,393.5 256.7,388.1 " /></g><g id="bbox:1.2_44.7_1.3_44.8" ><polygon points="260.5,388.1 264.4,388.1 264.4,393.5 260.5,393.5 260.5,388.1 " /></g><g id="bbox:1.3_44.7_1.4_44.8" ><polygon points="264.4,388.1 268.2,388.1 268.2,393.5 264.4,393.5 264.4,388.1 " /></g><g id="bbox:1.4_44.7_1.5_44.8" ><polygon points="268.2,388.1 272.1,388.1 272.1,393.5 268.2,393.5 268.2,388.1 " /></g><g id="bbox:1.5_44.7_1.6_44.8" ><polygon points="272.1,388.1 275.9,388.1 275.9,393.5 272.1,393.5 272.1,388.1 " /></g><g id="bbox:1.6_44.7_1.7_44.8" ><polygon points="275.9,388.1 279.8,388.1 279.8,393.5 275.9,393.5 275.9,388.1 " /></g><g id="bbox:1.7_44.7_1.8_44.8" ><polygon points="279.8,388.1 283.6,388.1 283.6,393.5 279.8,393.5 279.8,388.1 " /></g><g id="bbox:1.8_44.7_1.9_44.8" ><polygon points="283.6,388.1 287.5,388.1 287.5,393.5 283.6,393.5 283.6,388.1 " /></g><g id="bbox:1.9_44.7_2_44.8" ><polygon points="287.5,388.1 291.3,388.1 291.3,393.5 287.5,393.5 287.5,388.1 " /></g><g id="bbox:2_44.7_2.1_44.8" ><polygon points="291.3,388.1 295.2,388.1 295.2,393.5 291.3,393.5 291.3,388.1 " /></g><g id="bbox:2.1_44.7_2.2_44.8" ><polygon points="295.2,388.1 299.0,388.1 299.0,393.5 295.2,393.5 295.2,388.1 " /></g><g id="bbox:2.2_44.7_2.3_44.8" ><polygon points="299.0,388.1 302.8,388.1 302.8,393.5 299.0,393.5 299.0,388.1 " /></g><g id="bbox:2.3_44.7_2.4_44.8" ><polygon points="302.8,388.1 306.7,388.1 306.7,393.5 302.8,393.5 302.8,388.1 " /></g><g id="bbox:2.4_44.7_2.5_44.8" ><polygon points="306.7,388.1 310.5,388.1 310.5,393.5 306.7,393.5 306.7,388.1 " /></g><g id="bbox:2.5_44.7_2.6_44.8" ><polygon points="310.5,388.1 314.4,388.1 314.4,393.5 310.5,393.5 310.5,388.1 " /></g><g id="bbox:2.6_44.7_2.7_44.8" ><polygon points="314.4,388.1 318.2,388.1 318.2,393.5 314.4,393.5 314.4,388.1 " /></g><g id="bbox:2.7_44.7_2.8_44.8" ><polygon points="318.2,388.1 322.1,388.1 322.1,393.5 318.2,393.5 318.2,388.1 " /></g><g id="bbox:2.8_44.7_2.9_44.8" ><polygon points="322.1,388.1 325.9,388.1 325.9,393.5 322.1,393.5 322.1,388.1 " /></g><g id="bbox:2.9_44.7_3_44.8" ><polygon points="325.9,388.1 329.8,388.1 329.8,393.5 325.9,393.5 325.9,388.1 " /></g><g id="bbox:3_44.7_3.1_44.8" ><polygon points="329.8,388.1 333.6,388.1 333.6,393.5 329.8,393.5 329.8,388.1 " /></g><g id="bbox:3.1_44.7_3.2_44.8" ><polygon points="333.6,388.1 337.5,388.1 337.5,393.5 333.6,393.5 333.6,388.1 " /></g><g id="bbox:3.2_44.7_3.3_44.8" ><polygon points="337.5,388.1 341.3,388.1 341.3,393.5 337.5,393.5 337.5,388.1 " /></g><g id="bbox:3.3_44.7_3.4_44.8" ><polygon points="341.3,388.1 345.2,388.1 345.2,393.5 341.3,393.5 341.3,388.1 " /></g><g id="bbox:3.4_44.7_3.5_44.8" ><polygon points="345.2,388.1 349.0,388.1 349.0,393.5 345.2,393.5 345.2,388.1 " /></g><g id="bbox:3.5_44.7_3.6_44.8" ><polygon points="349.0,388.1 352.9,388.1 352.9,393.5 349.0,393.5 349.0,388.1 " /></g><g id="bbox:3.6_44.7_3.7_44.8" ><polygon points="352.9,388.1 356.7,388.1 356.7,393.5 352.9,393.5 352.9,388.1 " /></g><g id="bbox:3.7_44.7_3.8_44.8" ><polygon points="356.7,388.1 360.6,388.1 360.6,393.5 356.7,393.5 356.7,388.1 " /></g><g id="bbox:3.8_44.7_3.9_44.8" ><polygon points="360.6,388.1 364.4,388.1 364.4,393.5 360.6,393.5 360.6,388.1 " /></g><g id="bbox:3.9_44.7_4_44.8" ><polygon points="364.4,388.1 368.3,388.1 368.3,393.5 364.4,393.5 364.4,388.1 " /></g><g id="bbox:4_44.7_4.1_44.8" ><polygon points="368.3,388.1 372.1,388.1 372.1,393.5 368.3,393.5 368.3,388.1 " /></g><g id="bbox:4.1_44.7_4.2_44.8" ><polygon points="372.1,388.1 376.0,388.1 376.0,393.5 372.1,393.5 372.1,388.1 " /></g><g id="bbox:4.2_44.7_4.3_44.8" ><polygon points="376.0,388.1 379.8,388.1 379.8,393.5 376.0,393.5 376.0,388.1 " /></g><g id="bbox:4.3_44.7_4.4_44.8" ><polygon points="379.8,388.1 383.7,388.1 383.7,393.5 379.8,393.5 379.8,388.1 " /></g><g id="bbox:4.4_44.7_4.5_44.8" ><polygon points="383.7,388.1 387.5,388.1 387.5,393.5 383.7,393.5 383.7,388.1 " /></g><g id="bbox:4.5_44.7_4.6_44.8" ><polygon points="387.5,388.1 391.4,388.1 391.4,393.5 387.5,393.5 387.5,388.1 " /></g><g id="bbox:4.6_44.7_4.7_44.8" ><polygon points="391.4,388.1 395.2,388.1 395.2,393.5 391.4,393.5 391.4,388.1 " /></g><g id="bbox:4.7_44.7_4.8_44.8" ><polygon points="395.2,388.1 399.1,388.1 399.1,393.5 395.2,393.5 395.2,388.1 " /></g><g id="bbox:4.8_44.7_4.9_44.8" ><polygon points="399.1,388.1 402.9,388.1 402.9,393.5 399.1,393.5 399.1,388.1 " /></g><g id="bbox:4.9_44.7_5_44.8" ><polygon points="402.9,388.1 406.7,388.1 406.7,393.5 402.9,393.5 402.9,388.1 " /></g><g id="bbox:5_44.7_5.1_44.8" ><polygon points="406.7,388.1 410.6,388.1 410.6,393.5 406.7,393.5 406.7,388.1 " /></g><g id="bbox:5.1_44.7_5.2_44.8" ><polygon points="410.6,388.1 414.4,388.1 414.4,393.5 410.6,393.5 410.6,388.1 " /></g><g id="bbox:5.2_44.7_5.3_44.8" ><polygon points="414.4,388.1 418.3,388.1 418.3,393.5 414.4,393.5 414.4,388.1 " /></g><g id="bbox:5.3_44.7_5.4_44.8" ><polygon points="418.3,388.1 422.1,388.1 422.1,393.5 418.3,393.5 418.3,388.1 " /></g><g id="bbox:5.4_44.7_5.5_44.8" ><polygon points="422.1,388.1 426.0,388.1 426.0,393.5 422.1,393.5 422.1,388.1 " /></g><g id="bbox:5.5_44.7_5.6_44.8" ><polygon points="426.0,388.1 429.8,388.1 429.8,393.5 426.0,393.5 426.0,388.1 " /></g><g id="bbox:5.6_44.7_5.7_44.8" ><polygon points="429.8,388.1 433.7,388.1 433.7,393.5 429.8,393.5 429.8,388.1 " /></g><g id="bbox:5.7_44.7_5.8_44.8" ><polygon points="433.7,388.1 437.5,388.1 437.5,393.5 433.7,393.5 433.7,388.1 " /></g><g id="bbox:5.8_44.7_5.9_44.8" ><polygon points="437.5,388.1 441.4,388.1 441.4,393.5 437.5,393.5 437.5,388.1 " /></g><g id="bbox:5.9_44.7_6_44.8" ><polygon points="441.4,388.1 445.2,388.1 445.2,393.5 441.4,393.5 441.4,388.1 " /></g><g id="bbox:6_44.7_6.1_44.8" ><polygon points="445.2,388.1 449.1,388.1 449.1,393.5 445.2,393.5 445.2,388.1 " /></g><g id="bbox:6.1_44.7_6.2_44.8" ><polygon points="449.1,388.1 452.9,388.1 452.9,393.5 449.1,393.5 449.1,388.1 " /></g><g id="bbox:6.2_44.7_6.3_44.8" ><polygon points="452.9,388.1 456.8,388.1 456.8,393.5 452.9,393.5 452.9,388.1 " /></g><g id="bbox:6.3_44.7_6.4_44.8" ><polygon points="456.8,388.1 460.6,388.1 460.6,393.5 456.8,393.5 456.8,388.1 " /></g><g id="bbox:6.4_44.7_6.5_44.8" ><polygon points="460.6,388.1 464.5,388.1 464.5,393.5 460.6,393.5 460.6,388.1 " /></g><g id="bbox:6.5_44.7_6.6_44.8" ><polygon points="464.5,388.1 468.3,388.1 468.3,393.5 464.5,393.5 464.5,388.1 " /></g><g id="bbox:6.6_44.7_6.7_44.8" ><polygon points="468.3,388.1 472.2,388.1 472.2,393.5 468.3,393.5 468.3,388.1 " /></g><g id="bbox:6.7_44.7_6.8_44.8" ><polygon points="472.2,388.1 476.0,388.1 476.0,393.5 472.2,393.5 472.2,388.1 " /></g><g id="bbox:6.8_44.7_6.9_44.8" ><polygon points="476.0,388.1 479.9,388.1 479.9,393.5 476.0,393.5 476.0,388.1 " /></g><g id="bbox:6.9_44.7_7_44.8" ><polygon points="479.9,388.1 483.7,388.1 483.7,393.5 479.9,393.5 479.9,388.1 " /></g><g id="bbox:7_44.7_7.1_44.8" ><polygon points="483.7,388.1 487.6,388.1 487.6,393.5 483.7,393.5 483.7,388.1 " /></g><g id="bbox:-1.3_44.6_-1.2_44.7" ><polygon points="164.3,393.5 168.2,393.5 168.2,398.9 164.3,398.9 164.3,393.5 " /></g><g id="bbox:-1.2_44.6_-1.1_44.7" ><polygon points="168.2,393.5 172.0,393.5 172.0,398.9 168.2,398.9 168.2,393.5 " /></g><g id="bbox:-1.1_44.6_-1_44.7" ><polygon points="172.0,393.5 175.9,393.5 175.9,398.9 172.0,398.9 172.0,393.5 " /></g><g id="bbox:-1_44.6_-0.9_44.7" ><polygon points="175.9,393.5 179.7,393.5 179.7,398.9 175.9,398.9 175.9,393.5 " /></g><g id="bbox:-0.9_44.6_-0.8_44.7" ><polygon points="179.7,393.5 183.6,393.5 183.6,398.9 179.7,398.9 179.7,393.5 " /></g><g id="bbox:-0.8_44.6_-0.7_44.7" ><polygon points="183.6,393.5 187.4,393.5 187.4,398.9 183.6,398.9 183.6,393.5 " /></g><g id="bbox:-0.7_44.6_-0.6_44.7" ><polygon points="187.4,393.5 191.3,393.5 191.3,398.9 187.4,398.9 187.4,393.5 " /></g><g id="bbox:-0.6_44.6_-0.5_44.7" ><polygon points="191.3,393.5 195.1,393.5 195.1,398.9 191.3,398.9 191.3,393.5 " /></g><g id="bbox:-0.5_44.6_-0.4_44.7" ><polygon points="195.1,393.5 198.9,393.5 198.9,398.9 195.1,398.9 195.1,393.5 " /></g><g id="bbox:-0.4_44.6_-0.3_44.7" ><polygon points="198.9,393.5 202.8,393.5 202.8,398.9 198.9,398.9 198.9,393.5 " /></g><g id="bbox:-0.3_44.6_-0.2_44.7" ><polygon points="202.8,393.5 206.6,393.5 206.6,398.9 202.8,398.9 202.8,393.5 " /></g><g id="bbox:-0.2_44.6_-0.1_44.7" ><polygon points="206.6,393.5 210.5,393.5 210.5,398.9 206.6,398.9 206.6,393.5 " /></g><g id="bbox:-0.1_44.6_0_44.7" ><polygon points="210.5,393.5 214.3,393.5 214.3,398.9 210.5,398.9 210.5,393.5 " /></g><g id="bbox:0_44.6_0.1_44.7" ><polygon points="214.3,393.5 218.2,393.5 218.2,398.9 214.3,398.9 214.3,393.5 " /></g><g id="bbox:0.1_44.6_0.2_44.7" ><polygon points="218.2,393.5 222.0,393.5 222.0,398.9 218.2,398.9 218.2,393.5 " /></g><g id="bbox:0.2_44.6_0.3_44.7" ><polygon points="222.0,393.5 225.9,393.5 225.9,398.9 222.0,398.9 222.0,393.5 " /></g><g id="bbox:0.3_44.6_0.4_44.7" ><polygon points="225.9,393.5 229.7,393.5 229.7,398.9 225.9,398.9 225.9,393.5 " /></g><g id="bbox:0.4_44.6_0.5_44.7" ><polygon points="229.7,393.5 233.6,393.5 233.6,398.9 229.7,398.9 229.7,393.5 " /></g><g id="bbox:0.5_44.6_0.6_44.7" ><polygon points="233.6,393.5 237.4,393.5 237.4,398.9 233.6,398.9 233.6,393.5 " /></g><g id="bbox:0.6_44.6_0.7_44.7" ><polygon points="237.4,393.5 241.3,393.5 241.3,398.9 237.4,398.9 237.4,393.5 " /></g><g id="bbox:0.7_44.6_0.8_44.7" ><polygon points="241.3,393.5 245.1,393.5 245.1,398.9 241.3,398.9 241.3,393.5 " /></g><g id="bbox:0.8_44.6_0.9_44.7" ><polygon points="245.1,393.5 249.0,393.5 249.0,398.9 245.1,398.9 245.1,393.5 " /></g><g id="bbox:0.9_44.6_1_44.7" ><polygon points="249.0,393.5 252.8,393.5 252.8,398.9 249.0,398.9 249.0,393.5 " /></g><g id="bbox:1_44.6_1.1_44.7" ><polygon points="252.8,393.5 256.7,393.5 256.7,398.9 252.8,398.9 252.8,393.5 " /></g><g id="bbox:1.1_44.6_1.2_44.7" ><polygon points="256.7,393.5 260.5,393.5 260.5,398.9 256.7,398.9 256.7,393.5 " /></g><g id="bbox:1.2_44.6_1.3_44.7" ><polygon points="260.5,393.5 264.4,393.5 264.4,398.9 260.5,398.9 260.5,393.5 " /></g><g id="bbox:1.3_44.6_1.4_44.7" ><polygon points="264.4,393.5 268.2,393.5 268.2,398.9 264.4,398.9 264.4,393.5 " /></g><g id="bbox:1.4_44.6_1.5_44.7" ><polygon points="268.2,393.5 272.1,393.5 272.1,398.9 268.2,398.9 268.2,393.5 " /></g><g id="bbox:1.5_44.6_1.6_44.7" ><polygon points="272.1,393.5 275.9,393.5 275.9,398.9 272.1,398.9 272.1,393.5 " /></g><g id="bbox:1.6_44.6_1.7_44.7" ><polygon points="275.9,393.5 279.8,393.5 279.8,398.9 275.9,398.9 275.9,393.5 " /></g><g id="bbox:1.7_44.6_1.8_44.7" ><polygon points="279.8,393.5 283.6,393.5 283.6,398.9 279.8,398.9 279.8,393.5 " /></g><g id="bbox:1.8_44.6_1.9_44.7" ><polygon points="283.6,393.5 287.5,393.5 287.5,398.9 283.6,398.9 283.6,393.5 " /></g><g id="bbox:1.9_44.6_2_44.7" ><polygon points="287.5,393.5 291.3,393.5 291.3,398.9 287.5,398.9 287.5,393.5 " /></g><g id="bbox:2_44.6_2.1_44.7" ><polygon points="291.3,393.5 295.2,393.5 295.2,398.9 291.3,398.9 291.3,393.5 " /></g><g id="bbox:2.1_44.6_2.2_44.7" ><polygon points="295.2,393.5 299.0,393.5 299.0,398.9 295.2,398.9 295.2,393.5 " /></g><g id="bbox:2.2_44.6_2.3_44.7" ><polygon points="299.0,393.5 302.8,393.5 302.8,398.9 299.0,398.9 299.0,393.5 " /></g><g id="bbox:2.3_44.6_2.4_44.7" ><polygon points="302.8,393.5 306.7,393.5 306.7,398.9 302.8,398.9 302.8,393.5 " /></g><g id="bbox:2.4_44.6_2.5_44.7" ><polygon points="306.7,393.5 310.5,393.5 310.5,398.9 306.7,398.9 306.7,393.5 " /></g><g id="bbox:2.5_44.6_2.6_44.7" ><polygon points="310.5,393.5 314.4,393.5 314.4,398.9 310.5,398.9 310.5,393.5 " /></g><g id="bbox:2.6_44.6_2.7_44.7" ><polygon points="314.4,393.5 318.2,393.5 318.2,398.9 314.4,398.9 314.4,393.5 " /></g><g id="bbox:2.7_44.6_2.8_44.7" ><polygon points="318.2,393.5 322.1,393.5 322.1,398.9 318.2,398.9 318.2,393.5 " /></g><g id="bbox:2.8_44.6_2.9_44.7" ><polygon points="322.1,393.5 325.9,393.5 325.9,398.9 322.1,398.9 322.1,393.5 " /></g><g id="bbox:2.9_44.6_3_44.7" ><polygon points="325.9,393.5 329.8,393.5 329.8,398.9 325.9,398.9 325.9,393.5 " /></g><g id="bbox:3_44.6_3.1_44.7" ><polygon points="329.8,393.5 333.6,393.5 333.6,398.9 329.8,398.9 329.8,393.5 " /></g><g id="bbox:3.1_44.6_3.2_44.7" ><polygon points="333.6,393.5 337.5,393.5 337.5,398.9 333.6,398.9 333.6,393.5 " /></g><g id="bbox:3.2_44.6_3.3_44.7" ><polygon points="337.5,393.5 341.3,393.5 341.3,398.9 337.5,398.9 337.5,393.5 " /></g><g id="bbox:3.3_44.6_3.4_44.7" ><polygon points="341.3,393.5 345.2,393.5 345.2,398.9 341.3,398.9 341.3,393.5 " /></g><g id="bbox:3.4_44.6_3.5_44.7" ><polygon points="345.2,393.5 349.0,393.5 349.0,398.9 345.2,398.9 345.2,393.5 " /></g><g id="bbox:3.5_44.6_3.6_44.7" ><polygon points="349.0,393.5 352.9,393.5 352.9,398.9 349.0,398.9 349.0,393.5 " /></g><g id="bbox:3.6_44.6_3.7_44.7" ><polygon points="352.9,393.5 356.7,393.5 356.7,398.9 352.9,398.9 352.9,393.5 " /></g><g id="bbox:3.7_44.6_3.8_44.7" ><polygon points="356.7,393.5 360.6,393.5 360.6,398.9 356.7,398.9 356.7,393.5 " /></g><g id="bbox:3.8_44.6_3.9_44.7" ><polygon points="360.6,393.5 364.4,393.5 364.4,398.9 360.6,398.9 360.6,393.5 " /></g><g id="bbox:3.9_44.6_4_44.7" ><polygon points="364.4,393.5 368.3,393.5 368.3,398.9 364.4,398.9 364.4,393.5 " /></g><g id="bbox:4_44.6_4.1_44.7" ><polygon points="368.3,393.5 372.1,393.5 372.1,398.9 368.3,398.9 368.3,393.5 " /></g><g id="bbox:4.1_44.6_4.2_44.7" ><polygon points="372.1,393.5 376.0,393.5 376.0,398.9 372.1,398.9 372.1,393.5 " /></g><g id="bbox:4.2_44.6_4.3_44.7" ><polygon points="376.0,393.5 379.8,393.5 379.8,398.9 376.0,398.9 376.0,393.5 " /></g><g id="bbox:4.3_44.6_4.4_44.7" ><polygon points="379.8,393.5 383.7,393.5 383.7,398.9 379.8,398.9 379.8,393.5 " /></g><g id="bbox:4.4_44.6_4.5_44.7" ><polygon points="383.7,393.5 387.5,393.5 387.5,398.9 383.7,398.9 383.7,393.5 " /></g><g id="bbox:4.5_44.6_4.6_44.7" ><polygon points="387.5,393.5 391.4,393.5 391.4,398.9 387.5,398.9 387.5,393.5 " /></g><g id="bbox:4.6_44.6_4.7_44.7" ><polygon points="391.4,393.5 395.2,393.5 395.2,398.9 391.4,398.9 391.4,393.5 " /></g><g id="bbox:4.7_44.6_4.8_44.7" ><polygon points="395.2,393.5 399.1,393.5 399.1,398.9 395.2,398.9 395.2,393.5 " /></g><g id="bbox:4.8_44.6_4.9_44.7" ><polygon points="399.1,393.5 402.9,393.5 402.9,398.9 399.1,398.9 399.1,393.5 " /></g><g id="bbox:4.9_44.6_5_44.7" ><polygon points="402.9,393.5 406.7,393.5 406.7,398.9 402.9,398.9 402.9,393.5 " /></g><g id="bbox:5_44.6_5.1_44.7" ><polygon points="406.7,393.5 410.6,393.5 410.6,398.9 406.7,398.9 406.7,393.5 " /></g><g id="bbox:5.1_44.6_5.2_44.7" ><polygon points="410.6,393.5 414.4,393.5 414.4,398.9 410.6,398.9 410.6,393.5 " /></g><g id="bbox:5.2_44.6_5.3_44.7" ><polygon points="414.4,393.5 418.3,393.5 418.3,398.9 414.4,398.9 414.4,393.5 " /></g><g id="bbox:5.3_44.6_5.4_44.7" ><polygon points="418.3,393.5 422.1,393.5 422.1,398.9 418.3,398.9 418.3,393.5 " /></g><g id="bbox:5.4_44.6_5.5_44.7" ><polygon points="422.1,393.5 426.0,393.5 426.0,398.9 422.1,398.9 422.1,393.5 " /></g><g id="bbox:5.5_44.6_5.6_44.7" ><polygon points="426.0,393.5 429.8,393.5 429.8,398.9 426.0,398.9 426.0,393.5 " /></g><g id="bbox:5.6_44.6_5.7_44.7" ><polygon points="429.8,393.5 433.7,393.5 433.7,398.9 429.8,398.9 429.8,393.5 " /></g><g id="bbox:5.7_44.6_5.8_44.7" ><polygon points="433.7,393.5 437.5,393.5 437.5,398.9 433.7,398.9 433.7,393.5 " /></g><g id="bbox:5.8_44.6_5.9_44.7" ><polygon points="437.5,393.5 441.4,393.5 441.4,398.9 437.5,398.9 437.5,393.5 " /></g><g id="bbox:5.9_44.6_6_44.7" ><polygon points="441.4,393.5 445.2,393.5 445.2,398.9 441.4,398.9 441.4,393.5 " /></g><g id="bbox:6_44.6_6.1_44.7" ><polygon points="445.2,393.5 449.1,393.5 449.1,398.9 445.2,398.9 445.2,393.5 " /></g><g id="bbox:6.1_44.6_6.2_44.7" ><polygon points="449.1,393.5 452.9,393.5 452.9,398.9 449.1,398.9 449.1,393.5 " /></g><g id="bbox:6.2_44.6_6.3_44.7" ><polygon points="452.9,393.5 456.8,393.5 456.8,398.9 452.9,398.9 452.9,393.5 " /></g><g id="bbox:6.3_44.6_6.4_44.7" ><polygon points="456.8,393.5 460.6,393.5 460.6,398.9 456.8,398.9 456.8,393.5 " /></g><g id="bbox:6.4_44.6_6.5_44.7" ><polygon points="460.6,393.5 464.5,393.5 464.5,398.9 460.6,398.9 460.6,393.5 " /></g><g id="bbox:6.5_44.6_6.6_44.7" ><polygon points="464.5,393.5 468.3,393.5 468.3,398.9 464.5,398.9 464.5,393.5 " /></g><g id="bbox:6.6_44.6_6.7_44.7" ><polygon points="468.3,393.5 472.2,393.5 472.2,398.9 468.3,398.9 468.3,393.5 " /></g><g id="bbox:6.7_44.6_6.8_44.7" ><polygon points="472.2,393.5 476.0,393.5 476.0,398.9 472.2,398.9 472.2,393.5 " /></g><g id="bbox:6.8_44.6_6.9_44.7" ><polygon points="476.0,393.5 479.9,393.5 479.9,398.9 476.0,398.9 476.0,393.5 " /></g><g id="bbox:6.9_44.6_7_44.7" ><polygon points="479.9,393.5 483.7,393.5 483.7,398.9 479.9,398.9 479.9,393.5 " /></g><g id="bbox:7_44.6_7.1_44.7" ><polygon points="483.7,393.5 487.6,393.5 487.6,398.9 483.7,398.9 483.7,393.5 " /></g><g id="bbox:-1.3_44.5_-1.2_44.6" ><polygon points="164.3,398.9 168.2,398.9 168.2,404.3 164.3,404.3 164.3,398.9 " /></g><g id="bbox:-1.2_44.5_-1.1_44.6" ><polygon points="168.2,398.9 172.0,398.9 172.0,404.3 168.2,404.3 168.2,398.9 " /></g><g id="bbox:-1.1_44.5_-1_44.6" ><polygon points="172.0,398.9 175.9,398.9 175.9,404.3 172.0,404.3 172.0,398.9 " /></g><g id="bbox:-1_44.5_-0.9_44.6" ><polygon points="175.9,398.9 179.7,398.9 179.7,404.3 175.9,404.3 175.9,398.9 " /></g><g id="bbox:-0.9_44.5_-0.8_44.6" ><polygon points="179.7,398.9 183.6,398.9 183.6,404.3 179.7,404.3 179.7,398.9 " /></g><g id="bbox:-0.8_44.5_-0.7_44.6" ><polygon points="183.6,398.9 187.4,398.9 187.4,404.3 183.6,404.3 183.6,398.9 " /></g><g id="bbox:-0.7_44.5_-0.6_44.6" ><polygon points="187.4,398.9 191.3,398.9 191.3,404.3 187.4,404.3 187.4,398.9 " /></g><g id="bbox:-0.6_44.5_-0.5_44.6" ><polygon points="191.3,398.9 195.1,398.9 195.1,404.3 191.3,404.3 191.3,398.9 " /></g><g id="bbox:-0.5_44.5_-0.4_44.6" ><polygon points="195.1,398.9 198.9,398.9 198.9,404.3 195.1,404.3 195.1,398.9 " /></g><g id="bbox:-0.4_44.5_-0.3_44.6" ><polygon points="198.9,398.9 202.8,398.9 202.8,404.3 198.9,404.3 198.9,398.9 " /></g><g id="bbox:-0.3_44.5_-0.2_44.6" ><polygon points="202.8,398.9 206.6,398.9 206.6,404.3 202.8,404.3 202.8,398.9 " /></g><g id="bbox:-0.2_44.5_-0.1_44.6" ><polygon points="206.6,398.9 210.5,398.9 210.5,404.3 206.6,404.3 206.6,398.9 " /></g><g id="bbox:-0.1_44.5_0_44.6" ><polygon points="210.5,398.9 214.3,398.9 214.3,404.3 210.5,404.3 210.5,398.9 " /></g><g id="bbox:0_44.5_0.1_44.6" ><polygon points="214.3,398.9 218.2,398.9 218.2,404.3 214.3,404.3 214.3,398.9 " /></g><g id="bbox:0.1_44.5_0.2_44.6" ><polygon points="218.2,398.9 222.0,398.9 222.0,404.3 218.2,404.3 218.2,398.9 " /></g><g id="bbox:0.2_44.5_0.3_44.6" ><polygon points="222.0,398.9 225.9,398.9 225.9,404.3 222.0,404.3 222.0,398.9 " /></g><g id="bbox:0.3_44.5_0.4_44.6" ><polygon points="225.9,398.9 229.7,398.9 229.7,404.3 225.9,404.3 225.9,398.9 " /></g><g id="bbox:0.4_44.5_0.5_44.6" ><polygon points="229.7,398.9 233.6,398.9 233.6,404.3 229.7,404.3 229.7,398.9 " /></g><g id="bbox:0.5_44.5_0.6_44.6" ><polygon points="233.6,398.9 237.4,398.9 237.4,404.3 233.6,404.3 233.6,398.9 " /></g><g id="bbox:0.6_44.5_0.7_44.6" ><polygon points="237.4,398.9 241.3,398.9 241.3,404.3 237.4,404.3 237.4,398.9 " /></g><g id="bbox:0.7_44.5_0.8_44.6" ><polygon points="241.3,398.9 245.1,398.9 245.1,404.3 241.3,404.3 241.3,398.9 " /></g><g id="bbox:0.8_44.5_0.9_44.6" ><polygon points="245.1,398.9 249.0,398.9 249.0,404.3 245.1,404.3 245.1,398.9 " /></g><g id="bbox:0.9_44.5_1_44.6" ><polygon points="249.0,398.9 252.8,398.9 252.8,404.3 249.0,404.3 249.0,398.9 " /></g><g id="bbox:1_44.5_1.1_44.6" ><polygon points="252.8,398.9 256.7,398.9 256.7,404.3 252.8,404.3 252.8,398.9 " /></g><g id="bbox:1.1_44.5_1.2_44.6" ><polygon points="256.7,398.9 260.5,398.9 260.5,404.3 256.7,404.3 256.7,398.9 " /></g><g id="bbox:1.2_44.5_1.3_44.6" ><polygon points="260.5,398.9 264.4,398.9 264.4,404.3 260.5,404.3 260.5,398.9 " /></g><g id="bbox:1.3_44.5_1.4_44.6" ><polygon points="264.4,398.9 268.2,398.9 268.2,404.3 264.4,404.3 264.4,398.9 " /></g><g id="bbox:1.4_44.5_1.5_44.6" ><polygon points="268.2,398.9 272.1,398.9 272.1,404.3 268.2,404.3 268.2,398.9 " /></g><g id="bbox:1.5_44.5_1.6_44.6" ><polygon points="272.1,398.9 275.9,398.9 275.9,404.3 272.1,404.3 272.1,398.9 " /></g><g id="bbox:1.6_44.5_1.7_44.6" ><polygon points="275.9,398.9 279.8,398.9 279.8,404.3 275.9,404.3 275.9,398.9 " /></g><g id="bbox:1.7_44.5_1.8_44.6" ><polygon points="279.8,398.9 283.6,398.9 283.6,404.3 279.8,404.3 279.8,398.9 " /></g><g id="bbox:1.8_44.5_1.9_44.6" ><polygon points="283.6,398.9 287.5,398.9 287.5,404.3 283.6,404.3 283.6,398.9 " /></g><g id="bbox:1.9_44.5_2_44.6" ><polygon points="287.5,398.9 291.3,398.9 291.3,404.3 287.5,404.3 287.5,398.9 " /></g><g id="bbox:2_44.5_2.1_44.6" ><polygon points="291.3,398.9 295.2,398.9 295.2,404.3 291.3,404.3 291.3,398.9 " /></g><g id="bbox:2.1_44.5_2.2_44.6" ><polygon points="295.2,398.9 299.0,398.9 299.0,404.3 295.2,404.3 295.2,398.9 " /></g><g id="bbox:2.2_44.5_2.3_44.6" ><polygon points="299.0,398.9 302.8,398.9 302.8,404.3 299.0,404.3 299.0,398.9 " /></g><g id="bbox:2.3_44.5_2.4_44.6" ><polygon points="302.8,398.9 306.7,398.9 306.7,404.3 302.8,404.3 302.8,398.9 " /></g><g id="bbox:2.4_44.5_2.5_44.6" ><polygon points="306.7,398.9 310.5,398.9 310.5,404.3 306.7,404.3 306.7,398.9 " /></g><g id="bbox:2.5_44.5_2.6_44.6" ><polygon points="310.5,398.9 314.4,398.9 314.4,404.3 310.5,404.3 310.5,398.9 " /></g><g id="bbox:2.6_44.5_2.7_44.6" ><polygon points="314.4,398.9 318.2,398.9 318.2,404.3 314.4,404.3 314.4,398.9 " /></g><g id="bbox:2.7_44.5_2.8_44.6" ><polygon points="318.2,398.9 322.1,398.9 322.1,404.3 318.2,404.3 318.2,398.9 " /></g><g id="bbox:2.8_44.5_2.9_44.6" ><polygon points="322.1,398.9 325.9,398.9 325.9,404.3 322.1,404.3 322.1,398.9 " /></g><g id="bbox:2.9_44.5_3_44.6" ><polygon points="325.9,398.9 329.8,398.9 329.8,404.3 325.9,404.3 325.9,398.9 " /></g><g id="bbox:3_44.5_3.1_44.6" ><polygon points="329.8,398.9 333.6,398.9 333.6,404.3 329.8,404.3 329.8,398.9 " /></g><g id="bbox:3.1_44.5_3.2_44.6" ><polygon points="333.6,398.9 337.5,398.9 337.5,404.3 333.6,404.3 333.6,398.9 " /></g><g id="bbox:3.2_44.5_3.3_44.6" ><polygon points="337.5,398.9 341.3,398.9 341.3,404.3 337.5,404.3 337.5,398.9 " /></g><g id="bbox:3.3_44.5_3.4_44.6" ><polygon points="341.3,398.9 345.2,398.9 345.2,404.3 341.3,404.3 341.3,398.9 " /></g><g id="bbox:3.4_44.5_3.5_44.6" ><polygon points="345.2,398.9 349.0,398.9 349.0,404.3 345.2,404.3 345.2,398.9 " /></g><g id="bbox:3.5_44.5_3.6_44.6" ><polygon points="349.0,398.9 352.9,398.9 352.9,404.3 349.0,404.3 349.0,398.9 " /></g><g id="bbox:3.6_44.5_3.7_44.6" ><polygon points="352.9,398.9 356.7,398.9 356.7,404.3 352.9,404.3 352.9,398.9 " /></g><g id="bbox:3.7_44.5_3.8_44.6" ><polygon points="356.7,398.9 360.6,398.9 360.6,404.3 356.7,404.3 356.7,398.9 " /></g><g id="bbox:3.8_44.5_3.9_44.6" ><polygon points="360.6,398.9 364.4,398.9 364.4,404.3 360.6,404.3 360.6,398.9 " /></g><g id="bbox:3.9_44.5_4_44.6" ><polygon points="364.4,398.9 368.3,398.9 368.3,404.3 364.4,404.3 364.4,398.9 " /></g><g id="bbox:4_44.5_4.1_44.6" ><polygon points="368.3,398.9 372.1,398.9 372.1,404.3 368.3,404.3 368.3,398.9 " /></g><g id="bbox:4.1_44.5_4.2_44.6" ><polygon points="372.1,398.9 376.0,398.9 376.0,404.3 372.1,404.3 372.1,398.9 " /></g><g id="bbox:4.2_44.5_4.3_44.6" ><polygon points="376.0,398.9 379.8,398.9 379.8,404.3 376.0,404.3 376.0,398.9 " /></g><g id="bbox:4.3_44.5_4.4_44.6" ><polygon points="379.8,398.9 383.7,398.9 383.7,404.3 379.8,404.3 379.8,398.9 " /></g><g id="bbox:4.4_44.5_4.5_44.6" ><polygon points="383.7,398.9 387.5,398.9 387.5,404.3 383.7,404.3 383.7,398.9 " /></g><g id="bbox:4.5_44.5_4.6_44.6" ><polygon points="387.5,398.9 391.4,398.9 391.4,404.3 387.5,404.3 387.5,398.9 " /></g><g id="bbox:4.6_44.5_4.7_44.6" ><polygon points="391.4,398.9 395.2,398.9 395.2,404.3 391.4,404.3 391.4,398.9 " /></g><g id="bbox:4.7_44.5_4.8_44.6" ><polygon points="395.2,398.9 399.1,398.9 399.1,404.3 395.2,404.3 395.2,398.9 " /></g><g id="bbox:4.8_44.5_4.9_44.6" ><polygon points="399.1,398.9 402.9,398.9 402.9,404.3 399.1,404.3 399.1,398.9 " /></g><g id="bbox:4.9_44.5_5_44.6" ><polygon points="402.9,398.9 406.7,398.9 406.7,404.3 402.9,404.3 402.9,398.9 " /></g><g id="bbox:5_44.5_5.1_44.6" ><polygon points="406.7,398.9 410.6,398.9 410.6,404.3 406.7,404.3 406.7,398.9 " /></g><g id="bbox:5.1_44.5_5.2_44.6" ><polygon points="410.6,398.9 414.4,398.9 414.4,404.3 410.6,404.3 410.6,398.9 " /></g><g id="bbox:5.2_44.5_5.3_44.6" ><polygon points="414.4,398.9 418.3,398.9 418.3,404.3 414.4,404.3 414.4,398.9 " /></g><g id="bbox:5.3_44.5_5.4_44.6" ><polygon points="418.3,398.9 422.1,398.9 422.1,404.3 418.3,404.3 418.3,398.9 " /></g><g id="bbox:5.4_44.5_5.5_44.6" ><polygon points="422.1,398.9 426.0,398.9 426.0,404.3 422.1,404.3 422.1,398.9 " /></g><g id="bbox:5.5_44.5_5.6_44.6" ><polygon points="426.0,398.9 429.8,398.9 429.8,404.3 426.0,404.3 426.0,398.9 " /></g><g id="bbox:5.6_44.5_5.7_44.6" ><polygon points="429.8,398.9 433.7,398.9 433.7,404.3 429.8,404.3 429.8,398.9 " /></g><g id="bbox:5.7_44.5_5.8_44.6" ><polygon points="433.7,398.9 437.5,398.9 437.5,404.3 433.7,404.3 433.7,398.9 " /></g><g id="bbox:5.8_44.5_5.9_44.6" ><polygon points="437.5,398.9 441.4,398.9 441.4,404.3 437.5,404.3 437.5,398.9 " /></g><g id="bbox:5.9_44.5_6_44.6" ><polygon points="441.4,398.9 445.2,398.9 445.2,404.3 441.4,404.3 441.4,398.9 " /></g><g id="bbox:6_44.5_6.1_44.6" ><polygon points="445.2,398.9 449.1,398.9 449.1,404.3 445.2,404.3 445.2,398.9 " /></g><g id="bbox:6.1_44.5_6.2_44.6" ><polygon points="449.1,398.9 452.9,398.9 452.9,404.3 449.1,404.3 449.1,398.9 " /></g><g id="bbox:6.2_44.5_6.3_44.6" ><polygon points="452.9,398.9 456.8,398.9 456.8,404.3 452.9,404.3 452.9,398.9 " /></g><g id="bbox:6.3_44.5_6.4_44.6" ><polygon points="456.8,398.9 460.6,398.9 460.6,404.3 456.8,404.3 456.8,398.9 " /></g><g id="bbox:6.4_44.5_6.5_44.6" ><polygon points="460.6,398.9 464.5,398.9 464.5,404.3 460.6,404.3 460.6,398.9 " /></g><g id="bbox:6.5_44.5_6.6_44.6" ><polygon points="464.5,398.9 468.3,398.9 468.3,404.3 464.5,404.3 464.5,398.9 " /></g><g id="bbox:6.6_44.5_6.7_44.6" ><polygon points="468.3,398.9 472.2,398.9 472.2,404.3 468.3,404.3 468.3,398.9 " /></g><g id="bbox:6.7_44.5_6.8_44.6" ><polygon points="472.2,398.9 476.0,398.9 476.0,404.3 472.2,404.3 472.2,398.9 " /></g><g id="bbox:6.8_44.5_6.9_44.6" ><polygon points="476.0,398.9 479.9,398.9 479.9,404.3 476.0,404.3 476.0,398.9 " /></g><g id="bbox:6.9_44.5_7_44.6" ><polygon points="479.9,398.9 483.7,398.9 483.7,404.3 479.9,404.3 479.9,398.9 " /></g><g id="bbox:-1.3_44.4_-1.2_44.5" ><polygon points="164.3,404.3 168.2,404.3 168.2,409.7 164.3,409.7 164.3,404.3 " /></g><g id="bbox:-1.2_44.4_-1.1_44.5" ><polygon points="168.2,404.3 172.0,404.3 172.0,409.7 168.2,409.7 168.2,404.3 " /></g><g id="bbox:-1.1_44.4_-1_44.5" ><polygon points="172.0,404.3 175.9,404.3 175.9,409.7 172.0,409.7 172.0,404.3 " /></g><g id="bbox:-1_44.4_-0.9_44.5" ><polygon points="175.9,404.3 179.7,404.3 179.7,409.7 175.9,409.7 175.9,404.3 " /></g><g id="bbox:-0.9_44.4_-0.8_44.5" ><polygon points="179.7,404.3 183.6,404.3 183.6,409.7 179.7,409.7 179.7,404.3 " /></g><g id="bbox:-0.8_44.4_-0.7_44.5" ><polygon points="183.6,404.3 187.4,404.3 187.4,409.7 183.6,409.7 183.6,404.3 " /></g><g id="bbox:-0.7_44.4_-0.6_44.5" ><polygon points="187.4,404.3 191.3,404.3 191.3,409.7 187.4,409.7 187.4,404.3 " /></g><g id="bbox:-0.6_44.4_-0.5_44.5" ><polygon points="191.3,404.3 195.1,404.3 195.1,409.7 191.3,409.7 191.3,404.3 " /></g><g id="bbox:-0.5_44.4_-0.4_44.5" ><polygon points="195.1,404.3 198.9,404.3 198.9,409.7 195.1,409.7 195.1,404.3 " /></g><g id="bbox:-0.4_44.4_-0.3_44.5" ><polygon points="198.9,404.3 202.8,404.3 202.8,409.7 198.9,409.7 198.9,404.3 " /></g><g id="bbox:-0.3_44.4_-0.2_44.5" ><polygon points="202.8,404.3 206.6,404.3 206.6,409.7 202.8,409.7 202.8,404.3 " /></g><g id="bbox:-0.2_44.4_-0.1_44.5" ><polygon points="206.6,404.3 210.5,404.3 210.5,409.7 206.6,409.7 206.6,404.3 " /></g><g id="bbox:-0.1_44.4_0_44.5" ><polygon points="210.5,404.3 214.3,404.3 214.3,409.7 210.5,409.7 210.5,404.3 " /></g><g id="bbox:0_44.4_0.1_44.5" ><polygon points="214.3,404.3 218.2,404.3 218.2,409.7 214.3,409.7 214.3,404.3 " /></g><g id="bbox:0.1_44.4_0.2_44.5" ><polygon points="218.2,404.3 222.0,404.3 222.0,409.7 218.2,409.7 218.2,404.3 " /></g><g id="bbox:0.2_44.4_0.3_44.5" ><polygon points="222.0,404.3 225.9,404.3 225.9,409.7 222.0,409.7 222.0,404.3 " /></g><g id="bbox:0.3_44.4_0.4_44.5" ><polygon points="225.9,404.3 229.7,404.3 229.7,409.7 225.9,409.7 225.9,404.3 " /></g><g id="bbox:0.4_44.4_0.5_44.5" ><polygon points="229.7,404.3 233.6,404.3 233.6,409.7 229.7,409.7 229.7,404.3 " /></g><g id="bbox:0.5_44.4_0.6_44.5" ><polygon points="233.6,404.3 237.4,404.3 237.4,409.7 233.6,409.7 233.6,404.3 " /></g><g id="bbox:0.6_44.4_0.7_44.5" ><polygon points="237.4,404.3 241.3,404.3 241.3,409.7 237.4,409.7 237.4,404.3 " /></g><g id="bbox:0.7_44.4_0.8_44.5" ><polygon points="241.3,404.3 245.1,404.3 245.1,409.7 241.3,409.7 241.3,404.3 " /></g><g id="bbox:0.8_44.4_0.9_44.5" ><polygon points="245.1,404.3 249.0,404.3 249.0,409.7 245.1,409.7 245.1,404.3 " /></g><g id="bbox:0.9_44.4_1_44.5" ><polygon points="249.0,404.3 252.8,404.3 252.8,409.7 249.0,409.7 249.0,404.3 " /></g><g id="bbox:1_44.4_1.1_44.5" ><polygon points="252.8,404.3 256.7,404.3 256.7,409.7 252.8,409.7 252.8,404.3 " /></g><g id="bbox:1.1_44.4_1.2_44.5" ><polygon points="256.7,404.3 260.5,404.3 260.5,409.7 256.7,409.7 256.7,404.3 " /></g><g id="bbox:1.2_44.4_1.3_44.5" ><polygon points="260.5,404.3 264.4,404.3 264.4,409.7 260.5,409.7 260.5,404.3 " /></g><g id="bbox:1.3_44.4_1.4_44.5" ><polygon points="264.4,404.3 268.2,404.3 268.2,409.7 264.4,409.7 264.4,404.3 " /></g><g id="bbox:1.4_44.4_1.5_44.5" ><polygon points="268.2,404.3 272.1,404.3 272.1,409.7 268.2,409.7 268.2,404.3 " /></g><g id="bbox:1.5_44.4_1.6_44.5" ><polygon points="272.1,404.3 275.9,404.3 275.9,409.7 272.1,409.7 272.1,404.3 " /></g><g id="bbox:1.6_44.4_1.7_44.5" ><polygon points="275.9,404.3 279.8,404.3 279.8,409.7 275.9,409.7 275.9,404.3 " /></g><g id="bbox:1.7_44.4_1.8_44.5" ><polygon points="279.8,404.3 283.6,404.3 283.6,409.7 279.8,409.7 279.8,404.3 " /></g><g id="bbox:1.8_44.4_1.9_44.5" ><polygon points="283.6,404.3 287.5,404.3 287.5,409.7 283.6,409.7 283.6,404.3 " /></g><g id="bbox:1.9_44.4_2_44.5" ><polygon points="287.5,404.3 291.3,404.3 291.3,409.7 287.5,409.7 287.5,404.3 " /></g><g id="bbox:2_44.4_2.1_44.5" ><polygon points="291.3,404.3 295.2,404.3 295.2,409.7 291.3,409.7 291.3,404.3 " /></g><g id="bbox:2.1_44.4_2.2_44.5" ><polygon points="295.2,404.3 299.0,404.3 299.0,409.7 295.2,409.7 295.2,404.3 " /></g><g id="bbox:2.2_44.4_2.3_44.5" ><polygon points="299.0,404.3 302.8,404.3 302.8,409.7 299.0,409.7 299.0,404.3 " /></g><g id="bbox:2.3_44.4_2.4_44.5" ><polygon points="302.8,404.3 306.7,404.3 306.7,409.7 302.8,409.7 302.8,404.3 " /></g><g id="bbox:2.4_44.4_2.5_44.5" ><polygon points="306.7,404.3 310.5,404.3 310.5,409.7 306.7,409.7 306.7,404.3 " /></g><g id="bbox:2.5_44.4_2.6_44.5" ><polygon points="310.5,404.3 314.4,404.3 314.4,409.7 310.5,409.7 310.5,404.3 " /></g><g id="bbox:2.6_44.4_2.7_44.5" ><polygon points="314.4,404.3 318.2,404.3 318.2,409.7 314.4,409.7 314.4,404.3 " /></g><g id="bbox:2.7_44.4_2.8_44.5" ><polygon points="318.2,404.3 322.1,404.3 322.1,409.7 318.2,409.7 318.2,404.3 " /></g><g id="bbox:2.8_44.4_2.9_44.5" ><polygon points="322.1,404.3 325.9,404.3 325.9,409.7 322.1,409.7 322.1,404.3 " /></g><g id="bbox:2.9_44.4_3_44.5" ><polygon points="325.9,404.3 329.8,404.3 329.8,409.7 325.9,409.7 325.9,404.3 " /></g><g id="bbox:3_44.4_3.1_44.5" ><polygon points="329.8,404.3 333.6,404.3 333.6,409.7 329.8,409.7 329.8,404.3 " /></g><g id="bbox:3.1_44.4_3.2_44.5" ><polygon points="333.6,404.3 337.5,404.3 337.5,409.7 333.6,409.7 333.6,404.3 " /></g><g id="bbox:3.2_44.4_3.3_44.5" ><polygon points="337.5,404.3 341.3,404.3 341.3,409.7 337.5,409.7 337.5,404.3 " /></g><g id="bbox:3.3_44.4_3.4_44.5" ><polygon points="341.3,404.3 345.2,404.3 345.2,409.7 341.3,409.7 341.3,404.3 " /></g><g id="bbox:3.4_44.4_3.5_44.5" ><polygon points="345.2,404.3 349.0,404.3 349.0,409.7 345.2,409.7 345.2,404.3 " /></g><g id="bbox:3.5_44.4_3.6_44.5" ><polygon points="349.0,404.3 352.9,404.3 352.9,409.7 349.0,409.7 349.0,404.3 " /></g><g id="bbox:3.6_44.4_3.7_44.5" ><polygon points="352.9,404.3 356.7,404.3 356.7,409.7 352.9,409.7 352.9,404.3 " /></g><g id="bbox:3.7_44.4_3.8_44.5" ><polygon points="356.7,404.3 360.6,404.3 360.6,409.7 356.7,409.7 356.7,404.3 " /></g><g id="bbox:3.8_44.4_3.9_44.5" ><polygon points="360.6,404.3 364.4,404.3 364.4,409.7 360.6,409.7 360.6,404.3 " /></g><g id="bbox:3.9_44.4_4_44.5" ><polygon points="364.4,404.3 368.3,404.3 368.3,409.7 364.4,409.7 364.4,404.3 " /></g><g id="bbox:4_44.4_4.1_44.5" ><polygon points="368.3,404.3 372.1,404.3 372.1,409.7 368.3,409.7 368.3,404.3 " /></g><g id="bbox:4.1_44.4_4.2_44.5" ><polygon points="372.1,404.3 376.0,404.3 376.0,409.7 372.1,409.7 372.1,404.3 " /></g><g id="bbox:4.2_44.4_4.3_44.5" ><polygon points="376.0,404.3 379.8,404.3 379.8,409.7 376.0,409.7 376.0,404.3 " /></g><g id="bbox:4.3_44.4_4.4_44.5" ><polygon points="379.8,404.3 383.7,404.3 383.7,409.7 379.8,409.7 379.8,404.3 " /></g><g id="bbox:4.4_44.4_4.5_44.5" ><polygon points="383.7,404.3 387.5,404.3 387.5,409.7 383.7,409.7 383.7,404.3 " /></g><g id="bbox:4.5_44.4_4.6_44.5" ><polygon points="387.5,404.3 391.4,404.3 391.4,409.7 387.5,409.7 387.5,404.3 " /></g><g id="bbox:4.6_44.4_4.7_44.5" ><polygon points="391.4,404.3 395.2,404.3 395.2,409.7 391.4,409.7 391.4,404.3 " /></g><g id="bbox:4.7_44.4_4.8_44.5" ><polygon points="395.2,404.3 399.1,404.3 399.1,409.7 395.2,409.7 395.2,404.3 " /></g><g id="bbox:4.8_44.4_4.9_44.5" ><polygon points="399.1,404.3 402.9,404.3 402.9,409.7 399.1,409.7 399.1,404.3 " /></g><g id="bbox:4.9_44.4_5_44.5" ><polygon points="402.9,404.3 406.7,404.3 406.7,409.7 402.9,409.7 402.9,404.3 " /></g><g id="bbox:5_44.4_5.1_44.5" ><polygon points="406.7,404.3 410.6,404.3 410.6,409.7 406.7,409.7 406.7,404.3 " /></g><g id="bbox:5.1_44.4_5.2_44.5" ><polygon points="410.6,404.3 414.4,404.3 414.4,409.7 410.6,409.7 410.6,404.3 " /></g><g id="bbox:5.2_44.4_5.3_44.5" ><polygon points="414.4,404.3 418.3,404.3 418.3,409.7 414.4,409.7 414.4,404.3 " /></g><g id="bbox:5.3_44.4_5.4_44.5" ><polygon points="418.3,404.3 422.1,404.3 422.1,409.7 418.3,409.7 418.3,404.3 " /></g><g id="bbox:5.4_44.4_5.5_44.5" ><polygon points="422.1,404.3 426.0,404.3 426.0,409.7 422.1,409.7 422.1,404.3 " /></g><g id="bbox:5.5_44.4_5.6_44.5" ><polygon points="426.0,404.3 429.8,404.3 429.8,409.7 426.0,409.7 426.0,404.3 " /></g><g id="bbox:5.6_44.4_5.7_44.5" ><polygon points="429.8,404.3 433.7,404.3 433.7,409.7 429.8,409.7 429.8,404.3 " /></g><g id="bbox:5.7_44.4_5.8_44.5" ><polygon points="433.7,404.3 437.5,404.3 437.5,409.7 433.7,409.7 433.7,404.3 " /></g><g id="bbox:5.8_44.4_5.9_44.5" ><polygon points="437.5,404.3 441.4,404.3 441.4,409.7 437.5,409.7 437.5,404.3 " /></g><g id="bbox:5.9_44.4_6_44.5" ><polygon points="441.4,404.3 445.2,404.3 445.2,409.7 441.4,409.7 441.4,404.3 " /></g><g id="bbox:6_44.4_6.1_44.5" ><polygon points="445.2,404.3 449.1,404.3 449.1,409.7 445.2,409.7 445.2,404.3 " /></g><g id="bbox:6.1_44.4_6.2_44.5" ><polygon points="449.1,404.3 452.9,404.3 452.9,409.7 449.1,409.7 449.1,404.3 " /></g><g id="bbox:6.2_44.4_6.3_44.5" ><polygon points="452.9,404.3 456.8,404.3 456.8,409.7 452.9,409.7 452.9,404.3 " /></g><g id="bbox:6.3_44.4_6.4_44.5" ><polygon points="456.8,404.3 460.6,404.3 460.6,409.7 456.8,409.7 456.8,404.3 " /></g><g id="bbox:6.4_44.4_6.5_44.5" ><polygon points="460.6,404.3 464.5,404.3 464.5,409.7 460.6,409.7 460.6,404.3 " /></g><g id="bbox:6.5_44.4_6.6_44.5" ><polygon points="464.5,404.3 468.3,404.3 468.3,409.7 464.5,409.7 464.5,404.3 " /></g><g id="bbox:6.6_44.4_6.7_44.5" ><polygon points="468.3,404.3 472.2,404.3 472.2,409.7 468.3,409.7 468.3,404.3 " /></g><g id="bbox:6.7_44.4_6.8_44.5" ><polygon points="472.2,404.3 476.0,404.3 476.0,409.7 472.2,409.7 472.2,404.3 " /></g><g id="bbox:6.8_44.4_6.9_44.5" ><polygon points="476.0,404.3 479.9,404.3 479.9,409.7 476.0,409.7 476.0,404.3 " /></g><g id="bbox:6.9_44.4_7_44.5" ><polygon points="479.9,404.3 483.7,404.3 483.7,409.7 479.9,409.7 479.9,404.3 " /></g><g id="bbox:-1.3_44.3_-1.2_44.4" ><polygon points="164.3,409.7 168.2,409.7 168.2,415.1 164.3,415.1 164.3,409.7 " /></g><g id="bbox:-1.2_44.3_-1.1_44.4" ><polygon points="168.2,409.7 172.0,409.7 172.0,415.1 168.2,415.1 168.2,409.7 " /></g><g id="bbox:-1.1_44.3_-1_44.4" ><polygon points="172.0,409.7 175.9,409.7 175.9,415.1 172.0,415.1 172.0,409.7 " /></g><g id="bbox:-1_44.3_-0.9_44.4" ><polygon points="175.9,409.7 179.7,409.7 179.7,415.1 175.9,415.1 175.9,409.7 " /></g><g id="bbox:-0.9_44.3_-0.8_44.4" ><polygon points="179.7,409.7 183.6,409.7 183.6,415.1 179.7,415.1 179.7,409.7 " /></g><g id="bbox:-0.8_44.3_-0.7_44.4" ><polygon points="183.6,409.7 187.4,409.7 187.4,415.1 183.6,415.1 183.6,409.7 " /></g><g id="bbox:-0.7_44.3_-0.6_44.4" ><polygon points="187.4,409.7 191.3,409.7 191.3,415.1 187.4,415.1 187.4,409.7 " /></g><g id="bbox:-0.6_44.3_-0.5_44.4" ><polygon points="191.3,409.7 195.1,409.7 195.1,415.1 191.3,415.1 191.3,409.7 " /></g><g id="bbox:-0.5_44.3_-0.4_44.4" ><polygon points="195.1,409.7 198.9,409.7 198.9,415.1 195.1,415.1 195.1,409.7 " /></g><g id="bbox:-0.4_44.3_-0.3_44.4" ><polygon points="198.9,409.7 202.8,409.7 202.8,415.1 198.9,415.1 198.9,409.7 " /></g><g id="bbox:-0.3_44.3_-0.2_44.4" ><polygon points="202.8,409.7 206.6,409.7 206.6,415.1 202.8,415.1 202.8,409.7 " /></g><g id="bbox:-0.2_44.3_-0.1_44.4" ><polygon points="206.6,409.7 210.5,409.7 210.5,415.1 206.6,415.1 206.6,409.7 " /></g><g id="bbox:-0.1_44.3_0_44.4" ><polygon points="210.5,409.7 214.3,409.7 214.3,415.1 210.5,415.1 210.5,409.7 " /></g><g id="bbox:0_44.3_0.1_44.4" ><polygon points="214.3,409.7 218.2,409.7 218.2,415.1 214.3,415.1 214.3,409.7 " /></g><g id="bbox:0.1_44.3_0.2_44.4" ><polygon points="218.2,409.7 222.0,409.7 222.0,415.1 218.2,415.1 218.2,409.7 " /></g><g id="bbox:0.2_44.3_0.3_44.4" ><polygon points="222.0,409.7 225.9,409.7 225.9,415.1 222.0,415.1 222.0,409.7 " /></g><g id="bbox:0.3_44.3_0.4_44.4" ><polygon points="225.9,409.7 229.7,409.7 229.7,415.1 225.9,415.1 225.9,409.7 " /></g><g id="bbox:0.4_44.3_0.5_44.4" ><polygon points="229.7,409.7 233.6,409.7 233.6,415.1 229.7,415.1 229.7,409.7 " /></g><g id="bbox:0.5_44.3_0.6_44.4" ><polygon points="233.6,409.7 237.4,409.7 237.4,415.1 233.6,415.1 233.6,409.7 " /></g><g id="bbox:0.6_44.3_0.7_44.4" ><polygon points="237.4,409.7 241.3,409.7 241.3,415.1 237.4,415.1 237.4,409.7 " /></g><g id="bbox:0.7_44.3_0.8_44.4" ><polygon points="241.3,409.7 245.1,409.7 245.1,415.1 241.3,415.1 241.3,409.7 " /></g><g id="bbox:0.8_44.3_0.9_44.4" ><polygon points="245.1,409.7 249.0,409.7 249.0,415.1 245.1,415.1 245.1,409.7 " /></g><g id="bbox:0.9_44.3_1_44.4" ><polygon points="249.0,409.7 252.8,409.7 252.8,415.1 249.0,415.1 249.0,409.7 " /></g><g id="bbox:1_44.3_1.1_44.4" ><polygon points="252.8,409.7 256.7,409.7 256.7,415.1 252.8,415.1 252.8,409.7 " /></g><g id="bbox:1.1_44.3_1.2_44.4" ><polygon points="256.7,409.7 260.5,409.7 260.5,415.1 256.7,415.1 256.7,409.7 " /></g><g id="bbox:1.2_44.3_1.3_44.4" ><polygon points="260.5,409.7 264.4,409.7 264.4,415.1 260.5,415.1 260.5,409.7 " /></g><g id="bbox:1.3_44.3_1.4_44.4" ><polygon points="264.4,409.7 268.2,409.7 268.2,415.1 264.4,415.1 264.4,409.7 " /></g><g id="bbox:1.4_44.3_1.5_44.4" ><polygon points="268.2,409.7 272.1,409.7 272.1,415.1 268.2,415.1 268.2,409.7 " /></g><g id="bbox:1.5_44.3_1.6_44.4" ><polygon points="272.1,409.7 275.9,409.7 275.9,415.1 272.1,415.1 272.1,409.7 " /></g><g id="bbox:1.6_44.3_1.7_44.4" ><polygon points="275.9,409.7 279.8,409.7 279.8,415.1 275.9,415.1 275.9,409.7 " /></g><g id="bbox:1.7_44.3_1.8_44.4" ><polygon points="279.8,409.7 283.6,409.7 283.6,415.1 279.8,415.1 279.8,409.7 " /></g><g id="bbox:1.8_44.3_1.9_44.4" ><polygon points="283.6,409.7 287.5,409.7 287.5,415.1 283.6,415.1 283.6,409.7 " /></g><g id="bbox:1.9_44.3_2_44.4" ><polygon points="287.5,409.7 291.3,409.7 291.3,415.1 287.5,415.1 287.5,409.7 " /></g><g id="bbox:2_44.3_2.1_44.4" ><polygon points="291.3,409.7 295.2,409.7 295.2,415.1 291.3,415.1 291.3,409.7 " /></g><g id="bbox:2.1_44.3_2.2_44.4" ><polygon points="295.2,409.7 299.0,409.7 299.0,415.1 295.2,415.1 295.2,409.7 " /></g><g id="bbox:2.2_44.3_2.3_44.4" ><polygon points="299.0,409.7 302.8,409.7 302.8,415.1 299.0,415.1 299.0,409.7 " /></g><g id="bbox:2.3_44.3_2.4_44.4" ><polygon points="302.8,409.7 306.7,409.7 306.7,415.1 302.8,415.1 302.8,409.7 " /></g><g id="bbox:2.4_44.3_2.5_44.4" ><polygon points="306.7,409.7 310.5,409.7 310.5,415.1 306.7,415.1 306.7,409.7 " /></g><g id="bbox:2.5_44.3_2.6_44.4" ><polygon points="310.5,409.7 314.4,409.7 314.4,415.1 310.5,415.1 310.5,409.7 " /></g><g id="bbox:2.6_44.3_2.7_44.4" ><polygon points="314.4,409.7 318.2,409.7 318.2,415.1 314.4,415.1 314.4,409.7 " /></g><g id="bbox:2.7_44.3_2.8_44.4" ><polygon points="318.2,409.7 322.1,409.7 322.1,415.1 318.2,415.1 318.2,409.7 " /></g><g id="bbox:2.8_44.3_2.9_44.4" ><polygon points="322.1,409.7 325.9,409.7 325.9,415.1 322.1,415.1 322.1,409.7 " /></g><g id="bbox:2.9_44.3_3_44.4" ><polygon points="325.9,409.7 329.8,409.7 329.8,415.1 325.9,415.1 325.9,409.7 " /></g><g id="bbox:3_44.3_3.1_44.4" ><polygon points="329.8,409.7 333.6,409.7 333.6,415.1 329.8,415.1 329.8,409.7 " /></g><g id="bbox:3.1_44.3_3.2_44.4" ><polygon points="333.6,409.7 337.5,409.7 337.5,415.1 333.6,415.1 333.6,409.7 " /></g><g id="bbox:3.2_44.3_3.3_44.4" ><polygon points="337.5,409.7 341.3,409.7 341.3,415.1 337.5,415.1 337.5,409.7 " /></g><g id="bbox:3.3_44.3_3.4_44.4" ><polygon points="341.3,409.7 345.2,409.7 345.2,415.1 341.3,415.1 341.3,409.7 " /></g><g id="bbox:3.4_44.3_3.5_44.4" ><polygon points="345.2,409.7 349.0,409.7 349.0,415.1 345.2,415.1 345.2,409.7 " /></g><g id="bbox:3.5_44.3_3.6_44.4" ><polygon points="349.0,409.7 352.9,409.7 352.9,415.1 349.0,415.1 349.0,409.7 " /></g><g id="bbox:3.6_44.3_3.7_44.4" ><polygon points="352.9,409.7 356.7,409.7 356.7,415.1 352.9,415.1 352.9,409.7 " /></g><g id="bbox:3.7_44.3_3.8_44.4" ><polygon points="356.7,409.7 360.6,409.7 360.6,415.1 356.7,415.1 356.7,409.7 " /></g><g id="bbox:3.8_44.3_3.9_44.4" ><polygon points="360.6,409.7 364.4,409.7 364.4,415.1 360.6,415.1 360.6,409.7 " /></g><g id="bbox:3.9_44.3_4_44.4" ><polygon points="364.4,409.7 368.3,409.7 368.3,415.1 364.4,415.1 364.4,409.7 " /></g><g id="bbox:4_44.3_4.1_44.4" ><polygon points="368.3,409.7 372.1,409.7 372.1,415.1 368.3,415.1 368.3,409.7 " /></g><g id="bbox:4.1_44.3_4.2_44.4" ><polygon points="372.1,409.7 376.0,409.7 376.0,415.1 372.1,415.1 372.1,409.7 " /></g><g id="bbox:4.2_44.3_4.3_44.4" ><polygon points="376.0,409.7 379.8,409.7 379.8,415.1 376.0,415.1 376.0,409.7 " /></g><g id="bbox:4.3_44.3_4.4_44.4" ><polygon points="379.8,409.7 383.7,409.7 383.7,415.1 379.8,415.1 379.8,409.7 " /></g><g id="bbox:4.4_44.3_4.5_44.4" ><polygon points="383.7,409.7 387.5,409.7 387.5,415.1 383.7,415.1 383.7,409.7 " /></g><g id="bbox:4.5_44.3_4.6_44.4" ><polygon points="387.5,409.7 391.4,409.7 391.4,415.1 387.5,415.1 387.5,409.7 " /></g><g id="bbox:4.6_44.3_4.7_44.4" ><polygon points="391.4,409.7 395.2,409.7 395.2,415.1 391.4,415.1 391.4,409.7 " /></g><g id="bbox:4.7_44.3_4.8_44.4" ><polygon points="395.2,409.7 399.1,409.7 399.1,415.1 395.2,415.1 395.2,409.7 " /></g><g id="bbox:4.8_44.3_4.9_44.4" ><polygon points="399.1,409.7 402.9,409.7 402.9,415.1 399.1,415.1 399.1,409.7 " /></g><g id="bbox:4.9_44.3_5_44.4" ><polygon points="402.9,409.7 406.7,409.7 406.7,415.1 402.9,415.1 402.9,409.7 " /></g><g id="bbox:5_44.3_5.1_44.4" ><polygon points="406.7,409.7 410.6,409.7 410.6,415.1 406.7,415.1 406.7,409.7 " /></g><g id="bbox:5.1_44.3_5.2_44.4" ><polygon points="410.6,409.7 414.4,409.7 414.4,415.1 410.6,415.1 410.6,409.7 " /></g><g id="bbox:5.2_44.3_5.3_44.4" ><polygon points="414.4,409.7 418.3,409.7 418.3,415.1 414.4,415.1 414.4,409.7 " /></g><g id="bbox:5.3_44.3_5.4_44.4" ><polygon points="418.3,409.7 422.1,409.7 422.1,415.1 418.3,415.1 418.3,409.7 " /></g><g id="bbox:5.4_44.3_5.5_44.4" ><polygon points="422.1,409.7 426.0,409.7 426.0,415.1 422.1,415.1 422.1,409.7 " /></g><g id="bbox:5.5_44.3_5.6_44.4" ><polygon points="426.0,409.7 429.8,409.7 429.8,415.1 426.0,415.1 426.0,409.7 " /></g><g id="bbox:5.6_44.3_5.7_44.4" ><polygon points="429.8,409.7 433.7,409.7 433.7,415.1 429.8,415.1 429.8,409.7 " /></g><g id="bbox:5.7_44.3_5.8_44.4" ><polygon points="433.7,409.7 437.5,409.7 437.5,415.1 433.7,415.1 433.7,409.7 " /></g><g id="bbox:5.8_44.3_5.9_44.4" ><polygon points="437.5,409.7 441.4,409.7 441.4,415.1 437.5,415.1 437.5,409.7 " /></g><g id="bbox:5.9_44.3_6_44.4" ><polygon points="441.4,409.7 445.2,409.7 445.2,415.1 441.4,415.1 441.4,409.7 " /></g><g id="bbox:6_44.3_6.1_44.4" ><polygon points="445.2,409.7 449.1,409.7 449.1,415.1 445.2,415.1 445.2,409.7 " /></g><g id="bbox:6.1_44.3_6.2_44.4" ><polygon points="449.1,409.7 452.9,409.7 452.9,415.1 449.1,415.1 449.1,409.7 " /></g><g id="bbox:6.2_44.3_6.3_44.4" ><polygon points="452.9,409.7 456.8,409.7 456.8,415.1 452.9,415.1 452.9,409.7 " /></g><g id="bbox:6.3_44.3_6.4_44.4" ><polygon points="456.8,409.7 460.6,409.7 460.6,415.1 456.8,415.1 456.8,409.7 " /></g><g id="bbox:6.4_44.3_6.5_44.4" ><polygon points="460.6,409.7 464.5,409.7 464.5,415.1 460.6,415.1 460.6,409.7 " /></g><g id="bbox:6.5_44.3_6.6_44.4" ><polygon points="464.5,409.7 468.3,409.7 468.3,415.1 464.5,415.1 464.5,409.7 " /></g><g id="bbox:6.6_44.3_6.7_44.4" ><polygon points="468.3,409.7 472.2,409.7 472.2,415.1 468.3,415.1 468.3,409.7 " /></g><g id="bbox:6.7_44.3_6.8_44.4" ><polygon points="472.2,409.7 476.0,409.7 476.0,415.1 472.2,415.1 472.2,409.7 " /></g><g id="bbox:6.8_44.3_6.9_44.4" ><polygon points="476.0,409.7 479.9,409.7 479.9,415.1 476.0,415.1 476.0,409.7 " /></g><g id="bbox:6.9_44.3_7_44.4" ><polygon points="479.9,409.7 483.7,409.7 483.7,415.1 479.9,415.1 479.9,409.7 " /></g><g id="bbox:-1.4_44.2_-1.3_44.3" ><polygon points="160.5,415.1 164.3,415.1 164.3,420.5 160.5,420.5 160.5,415.1 " /></g><g id="bbox:-1.3_44.2_-1.2_44.3" ><polygon points="164.3,415.1 168.2,415.1 168.2,420.5 164.3,420.5 164.3,415.1 " /></g><g id="bbox:-1.2_44.2_-1.1_44.3" ><polygon points="168.2,415.1 172.0,415.1 172.0,420.5 168.2,420.5 168.2,415.1 " /></g><g id="bbox:-1.1_44.2_-1_44.3" ><polygon points="172.0,415.1 175.9,415.1 175.9,420.5 172.0,420.5 172.0,415.1 " /></g><g id="bbox:-1_44.2_-0.9_44.3" ><polygon points="175.9,415.1 179.7,415.1 179.7,420.5 175.9,420.5 175.9,415.1 " /></g><g id="bbox:-0.9_44.2_-0.8_44.3" ><polygon points="179.7,415.1 183.6,415.1 183.6,420.5 179.7,420.5 179.7,415.1 " /></g><g id="bbox:-0.8_44.2_-0.7_44.3" ><polygon points="183.6,415.1 187.4,415.1 187.4,420.5 183.6,420.5 183.6,415.1 " /></g><g id="bbox:-0.7_44.2_-0.6_44.3" ><polygon points="187.4,415.1 191.3,415.1 191.3,420.5 187.4,420.5 187.4,415.1 " /></g><g id="bbox:-0.6_44.2_-0.5_44.3" ><polygon points="191.3,415.1 195.1,415.1 195.1,420.5 191.3,420.5 191.3,415.1 " /></g><g id="bbox:-0.5_44.2_-0.4_44.3" ><polygon points="195.1,415.1 198.9,415.1 198.9,420.5 195.1,420.5 195.1,415.1 " /></g><g id="bbox:-0.4_44.2_-0.3_44.3" ><polygon points="198.9,415.1 202.8,415.1 202.8,420.5 198.9,420.5 198.9,415.1 " /></g><g id="bbox:-0.3_44.2_-0.2_44.3" ><polygon points="202.8,415.1 206.6,415.1 206.6,420.5 202.8,420.5 202.8,415.1 " /></g><g id="bbox:-0.2_44.2_-0.1_44.3" ><polygon points="206.6,415.1 210.5,415.1 210.5,420.5 206.6,420.5 206.6,415.1 " /></g><g id="bbox:-0.1_44.2_0_44.3" ><polygon points="210.5,415.1 214.3,415.1 214.3,420.5 210.5,420.5 210.5,415.1 " /></g><g id="bbox:0_44.2_0.1_44.3" ><polygon points="214.3,415.1 218.2,415.1 218.2,420.5 214.3,420.5 214.3,415.1 " /></g><g id="bbox:0.1_44.2_0.2_44.3" ><polygon points="218.2,415.1 222.0,415.1 222.0,420.5 218.2,420.5 218.2,415.1 " /></g><g id="bbox:0.2_44.2_0.3_44.3" ><polygon points="222.0,415.1 225.9,415.1 225.9,420.5 222.0,420.5 222.0,415.1 " /></g><g id="bbox:0.3_44.2_0.4_44.3" ><polygon points="225.9,415.1 229.7,415.1 229.7,420.5 225.9,420.5 225.9,415.1 " /></g><g id="bbox:0.4_44.2_0.5_44.3" ><polygon points="229.7,415.1 233.6,415.1 233.6,420.5 229.7,420.5 229.7,415.1 " /></g><g id="bbox:0.5_44.2_0.6_44.3" ><polygon points="233.6,415.1 237.4,415.1 237.4,420.5 233.6,420.5 233.6,415.1 " /></g><g id="bbox:0.6_44.2_0.7_44.3" ><polygon points="237.4,415.1 241.3,415.1 241.3,420.5 237.4,420.5 237.4,415.1 " /></g><g id="bbox:0.7_44.2_0.8_44.3" ><polygon points="241.3,415.1 245.1,415.1 245.1,420.5 241.3,420.5 241.3,415.1 " /></g><g id="bbox:0.8_44.2_0.9_44.3" ><polygon points="245.1,415.1 249.0,415.1 249.0,420.5 245.1,420.5 245.1,415.1 " /></g><g id="bbox:0.9_44.2_1_44.3" ><polygon points="249.0,415.1 252.8,415.1 252.8,420.5 249.0,420.5 249.0,415.1 " /></g><g id="bbox:1_44.2_1.1_44.3" ><polygon points="252.8,415.1 256.7,415.1 256.7,420.5 252.8,420.5 252.8,415.1 " /></g><g id="bbox:1.1_44.2_1.2_44.3" ><polygon points="256.7,415.1 260.5,415.1 260.5,420.5 256.7,420.5 256.7,415.1 " /></g><g id="bbox:1.2_44.2_1.3_44.3" ><polygon points="260.5,415.1 264.4,415.1 264.4,420.5 260.5,420.5 260.5,415.1 " /></g><g id="bbox:1.3_44.2_1.4_44.3" ><polygon points="264.4,415.1 268.2,415.1 268.2,420.5 264.4,420.5 264.4,415.1 " /></g><g id="bbox:1.4_44.2_1.5_44.3" ><polygon points="268.2,415.1 272.1,415.1 272.1,420.5 268.2,420.5 268.2,415.1 " /></g><g id="bbox:1.5_44.2_1.6_44.3" ><polygon points="272.1,415.1 275.9,415.1 275.9,420.5 272.1,420.5 272.1,415.1 " /></g><g id="bbox:1.6_44.2_1.7_44.3" ><polygon points="275.9,415.1 279.8,415.1 279.8,420.5 275.9,420.5 275.9,415.1 " /></g><g id="bbox:1.7_44.2_1.8_44.3" ><polygon points="279.8,415.1 283.6,415.1 283.6,420.5 279.8,420.5 279.8,415.1 " /></g><g id="bbox:1.8_44.2_1.9_44.3" ><polygon points="283.6,415.1 287.5,415.1 287.5,420.5 283.6,420.5 283.6,415.1 " /></g><g id="bbox:1.9_44.2_2_44.3" ><polygon points="287.5,415.1 291.3,415.1 291.3,420.5 287.5,420.5 287.5,415.1 " /></g><g id="bbox:2_44.2_2.1_44.3" ><polygon points="291.3,415.1 295.2,415.1 295.2,420.5 291.3,420.5 291.3,415.1 " /></g><g id="bbox:2.1_44.2_2.2_44.3" ><polygon points="295.2,415.1 299.0,415.1 299.0,420.5 295.2,420.5 295.2,415.1 " /></g><g id="bbox:2.2_44.2_2.3_44.3" ><polygon points="299.0,415.1 302.8,415.1 302.8,420.5 299.0,420.5 299.0,415.1 " /></g><g id="bbox:2.3_44.2_2.4_44.3" ><polygon points="302.8,415.1 306.7,415.1 306.7,420.5 302.8,420.5 302.8,415.1 " /></g><g id="bbox:2.4_44.2_2.5_44.3" ><polygon points="306.7,415.1 310.5,415.1 310.5,420.5 306.7,420.5 306.7,415.1 " /></g><g id="bbox:2.5_44.2_2.6_44.3" ><polygon points="310.5,415.1 314.4,415.1 314.4,420.5 310.5,420.5 310.5,415.1 " /></g><g id="bbox:2.6_44.2_2.7_44.3" ><polygon points="314.4,415.1 318.2,415.1 318.2,420.5 314.4,420.5 314.4,415.1 " /></g><g id="bbox:2.7_44.2_2.8_44.3" ><polygon points="318.2,415.1 322.1,415.1 322.1,420.5 318.2,420.5 318.2,415.1 " /></g><g id="bbox:2.8_44.2_2.9_44.3" ><polygon points="322.1,415.1 325.9,415.1 325.9,420.5 322.1,420.5 322.1,415.1 " /></g><g id="bbox:2.9_44.2_3_44.3" ><polygon points="325.9,415.1 329.8,415.1 329.8,420.5 325.9,420.5 325.9,415.1 " /></g><g id="bbox:3_44.2_3.1_44.3" ><polygon points="329.8,415.1 333.6,415.1 333.6,420.5 329.8,420.5 329.8,415.1 " /></g><g id="bbox:3.1_44.2_3.2_44.3" ><polygon points="333.6,415.1 337.5,415.1 337.5,420.5 333.6,420.5 333.6,415.1 " /></g><g id="bbox:3.2_44.2_3.3_44.3" ><polygon points="337.5,415.1 341.3,415.1 341.3,420.5 337.5,420.5 337.5,415.1 " /></g><g id="bbox:3.3_44.2_3.4_44.3" ><polygon points="341.3,415.1 345.2,415.1 345.2,420.5 341.3,420.5 341.3,415.1 " /></g><g id="bbox:3.4_44.2_3.5_44.3" ><polygon points="345.2,415.1 349.0,415.1 349.0,420.5 345.2,420.5 345.2,415.1 " /></g><g id="bbox:3.5_44.2_3.6_44.3" ><polygon points="349.0,415.1 352.9,415.1 352.9,420.5 349.0,420.5 349.0,415.1 " /></g><g id="bbox:3.6_44.2_3.7_44.3" ><polygon points="352.9,415.1 356.7,415.1 356.7,420.5 352.9,420.5 352.9,415.1 " /></g><g id="bbox:3.7_44.2_3.8_44.3" ><polygon points="356.7,415.1 360.6,415.1 360.6,420.5 356.7,420.5 356.7,415.1 " /></g><g id="bbox:3.8_44.2_3.9_44.3" ><polygon points="360.6,415.1 364.4,415.1 364.4,420.5 360.6,420.5 360.6,415.1 " /></g><g id="bbox:3.9_44.2_4_44.3" ><polygon points="364.4,415.1 368.3,415.1 368.3,420.5 364.4,420.5 364.4,415.1 " /></g><g id="bbox:4_44.2_4.1_44.3" ><polygon points="368.3,415.1 372.1,415.1 372.1,420.5 368.3,420.5 368.3,415.1 " /></g><g id="bbox:4.1_44.2_4.2_44.3" ><polygon points="372.1,415.1 376.0,415.1 376.0,420.5 372.1,420.5 372.1,415.1 " /></g><g id="bbox:4.2_44.2_4.3_44.3" ><polygon points="376.0,415.1 379.8,415.1 379.8,420.5 376.0,420.5 376.0,415.1 " /></g><g id="bbox:4.3_44.2_4.4_44.3" ><polygon points="379.8,415.1 383.7,415.1 383.7,420.5 379.8,420.5 379.8,415.1 " /></g><g id="bbox:4.4_44.2_4.5_44.3" ><polygon points="383.7,415.1 387.5,415.1 387.5,420.5 383.7,420.5 383.7,415.1 " /></g><g id="bbox:4.5_44.2_4.6_44.3" ><polygon points="387.5,415.1 391.4,415.1 391.4,420.5 387.5,420.5 387.5,415.1 " /></g><g id="bbox:4.6_44.2_4.7_44.3" ><polygon points="391.4,415.1 395.2,415.1 395.2,420.5 391.4,420.5 391.4,415.1 " /></g><g id="bbox:4.7_44.2_4.8_44.3" ><polygon points="395.2,415.1 399.1,415.1 399.1,420.5 395.2,420.5 395.2,415.1 " /></g><g id="bbox:4.8_44.2_4.9_44.3" ><polygon points="399.1,415.1 402.9,415.1 402.9,420.5 399.1,420.5 399.1,415.1 " /></g><g id="bbox:4.9_44.2_5_44.3" ><polygon points="402.9,415.1 406.7,415.1 406.7,420.5 402.9,420.5 402.9,415.1 " /></g><g id="bbox:5_44.2_5.1_44.3" ><polygon points="406.7,415.1 410.6,415.1 410.6,420.5 406.7,420.5 406.7,415.1 " /></g><g id="bbox:5.1_44.2_5.2_44.3" ><polygon points="410.6,415.1 414.4,415.1 414.4,420.5 410.6,420.5 410.6,415.1 " /></g><g id="bbox:5.2_44.2_5.3_44.3" ><polygon points="414.4,415.1 418.3,415.1 418.3,420.5 414.4,420.5 414.4,415.1 " /></g><g id="bbox:5.3_44.2_5.4_44.3" ><polygon points="418.3,415.1 422.1,415.1 422.1,420.5 418.3,420.5 418.3,415.1 " /></g><g id="bbox:5.4_44.2_5.5_44.3" ><polygon points="422.1,415.1 426.0,415.1 426.0,420.5 422.1,420.5 422.1,415.1 " /></g><g id="bbox:5.5_44.2_5.6_44.3" ><polygon points="426.0,415.1 429.8,415.1 429.8,420.5 426.0,420.5 426.0,415.1 " /></g><g id="bbox:5.6_44.2_5.7_44.3" ><polygon points="429.8,415.1 433.7,415.1 433.7,420.5 429.8,420.5 429.8,415.1 " /></g><g id="bbox:5.7_44.2_5.8_44.3" ><polygon points="433.7,415.1 437.5,415.1 437.5,420.5 433.7,420.5 433.7,415.1 " /></g><g id="bbox:5.8_44.2_5.9_44.3" ><polygon points="437.5,415.1 441.4,415.1 441.4,420.5 437.5,420.5 437.5,415.1 " /></g><g id="bbox:5.9_44.2_6_44.3" ><polygon points="441.4,415.1 445.2,415.1 445.2,420.5 441.4,420.5 441.4,415.1 " /></g><g id="bbox:6_44.2_6.1_44.3" ><polygon points="445.2,415.1 449.1,415.1 449.1,420.5 445.2,420.5 445.2,415.1 " /></g><g id="bbox:6.1_44.2_6.2_44.3" ><polygon points="449.1,415.1 452.9,415.1 452.9,420.5 449.1,420.5 449.1,415.1 " /></g><g id="bbox:6.2_44.2_6.3_44.3" ><polygon points="452.9,415.1 456.8,415.1 456.8,420.5 452.9,420.5 452.9,415.1 " /></g><g id="bbox:6.3_44.2_6.4_44.3" ><polygon points="456.8,415.1 460.6,415.1 460.6,420.5 456.8,420.5 456.8,415.1 " /></g><g id="bbox:6.4_44.2_6.5_44.3" ><polygon points="460.6,415.1 464.5,415.1 464.5,420.5 460.6,420.5 460.6,415.1 " /></g><g id="bbox:6.5_44.2_6.6_44.3" ><polygon points="464.5,415.1 468.3,415.1 468.3,420.5 464.5,420.5 464.5,415.1 " /></g><g id="bbox:6.6_44.2_6.7_44.3" ><polygon points="468.3,415.1 472.2,415.1 472.2,420.5 468.3,420.5 468.3,415.1 " /></g><g id="bbox:6.7_44.2_6.8_44.3" ><polygon points="472.2,415.1 476.0,415.1 476.0,420.5 472.2,420.5 472.2,415.1 " /></g><g id="bbox:6.8_44.2_6.9_44.3" ><polygon points="476.0,415.1 479.9,415.1 479.9,420.5 476.0,420.5 476.0,415.1 " /></g><g id="bbox:6.9_44.2_7_44.3" ><polygon points="479.9,415.1 483.7,415.1 483.7,420.5 479.9,420.5 479.9,415.1 " /></g><g id="bbox:7_44.2_7.1_44.3" ><polygon points="483.7,415.1 487.6,415.1 487.6,420.5 483.7,420.5 483.7,415.1 " /></g><g id="bbox:7.1_44.2_7.2_44.3" ><polygon points="487.6,415.1 491.4,415.1 491.4,420.5 487.6,420.5 487.6,415.1 " /></g><g id="bbox:-1.4_44.1_-1.3_44.2" ><polygon points="160.5,420.5 164.3,420.5 164.3,425.8 160.5,425.8 160.5,420.5 " /></g><g id="bbox:-1.3_44.1_-1.2_44.2" ><polygon points="164.3,420.5 168.2,420.5 168.2,425.8 164.3,425.8 164.3,420.5 " /></g><g id="bbox:-1.2_44.1_-1.1_44.2" ><polygon points="168.2,420.5 172.0,420.5 172.0,425.8 168.2,425.8 168.2,420.5 " /></g><g id="bbox:-1.1_44.1_-1_44.2" ><polygon points="172.0,420.5 175.9,420.5 175.9,425.8 172.0,425.8 172.0,420.5 " /></g><g id="bbox:-1_44.1_-0.9_44.2" ><polygon points="175.9,420.5 179.7,420.5 179.7,425.8 175.9,425.8 175.9,420.5 " /></g><g id="bbox:-0.9_44.1_-0.8_44.2" ><polygon points="179.7,420.5 183.6,420.5 183.6,425.8 179.7,425.8 179.7,420.5 " /></g><g id="bbox:-0.8_44.1_-0.7_44.2" ><polygon points="183.6,420.5 187.4,420.5 187.4,425.8 183.6,425.8 183.6,420.5 " /></g><g id="bbox:-0.7_44.1_-0.6_44.2" ><polygon points="187.4,420.5 191.3,420.5 191.3,425.8 187.4,425.8 187.4,420.5 " /></g><g id="bbox:-0.6_44.1_-0.5_44.2" ><polygon points="191.3,420.5 195.1,420.5 195.1,425.8 191.3,425.8 191.3,420.5 " /></g><g id="bbox:-0.5_44.1_-0.4_44.2" ><polygon points="195.1,420.5 198.9,420.5 198.9,425.8 195.1,425.8 195.1,420.5 " /></g><g id="bbox:-0.4_44.1_-0.3_44.2" ><polygon points="198.9,420.5 202.8,420.5 202.8,425.8 198.9,425.8 198.9,420.5 " /></g><g id="bbox:-0.3_44.1_-0.2_44.2" ><polygon points="202.8,420.5 206.6,420.5 206.6,425.8 202.8,425.8 202.8,420.5 " /></g><g id="bbox:-0.2_44.1_-0.1_44.2" ><polygon points="206.6,420.5 210.5,420.5 210.5,425.8 206.6,425.8 206.6,420.5 " /></g><g id="bbox:-0.1_44.1_0_44.2" ><polygon points="210.5,420.5 214.3,420.5 214.3,425.8 210.5,425.8 210.5,420.5 " /></g><g id="bbox:0_44.1_0.1_44.2" ><polygon points="214.3,420.5 218.2,420.5 218.2,425.8 214.3,425.8 214.3,420.5 " /></g><g id="bbox:0.1_44.1_0.2_44.2" ><polygon points="218.2,420.5 222.0,420.5 222.0,425.8 218.2,425.8 218.2,420.5 " /></g><g id="bbox:0.2_44.1_0.3_44.2" ><polygon points="222.0,420.5 225.9,420.5 225.9,425.8 222.0,425.8 222.0,420.5 " /></g><g id="bbox:0.3_44.1_0.4_44.2" ><polygon points="225.9,420.5 229.7,420.5 229.7,425.8 225.9,425.8 225.9,420.5 " /></g><g id="bbox:0.4_44.1_0.5_44.2" ><polygon points="229.7,420.5 233.6,420.5 233.6,425.8 229.7,425.8 229.7,420.5 " /></g><g id="bbox:0.5_44.1_0.6_44.2" ><polygon points="233.6,420.5 237.4,420.5 237.4,425.8 233.6,425.8 233.6,420.5 " /></g><g id="bbox:0.6_44.1_0.7_44.2" ><polygon points="237.4,420.5 241.3,420.5 241.3,425.8 237.4,425.8 237.4,420.5 " /></g><g id="bbox:0.7_44.1_0.8_44.2" ><polygon points="241.3,420.5 245.1,420.5 245.1,425.8 241.3,425.8 241.3,420.5 " /></g><g id="bbox:0.8_44.1_0.9_44.2" ><polygon points="245.1,420.5 249.0,420.5 249.0,425.8 245.1,425.8 245.1,420.5 " /></g><g id="bbox:0.9_44.1_1_44.2" ><polygon points="249.0,420.5 252.8,420.5 252.8,425.8 249.0,425.8 249.0,420.5 " /></g><g id="bbox:1_44.1_1.1_44.2" ><polygon points="252.8,420.5 256.7,420.5 256.7,425.8 252.8,425.8 252.8,420.5 " /></g><g id="bbox:1.1_44.1_1.2_44.2" ><polygon points="256.7,420.5 260.5,420.5 260.5,425.8 256.7,425.8 256.7,420.5 " /></g><g id="bbox:1.2_44.1_1.3_44.2" ><polygon points="260.5,420.5 264.4,420.5 264.4,425.8 260.5,425.8 260.5,420.5 " /></g><g id="bbox:1.3_44.1_1.4_44.2" ><polygon points="264.4,420.5 268.2,420.5 268.2,425.8 264.4,425.8 264.4,420.5 " /></g><g id="bbox:1.4_44.1_1.5_44.2" ><polygon points="268.2,420.5 272.1,420.5 272.1,425.8 268.2,425.8 268.2,420.5 " /></g><g id="bbox:1.5_44.1_1.6_44.2" ><polygon points="272.1,420.5 275.9,420.5 275.9,425.8 272.1,425.8 272.1,420.5 " /></g><g id="bbox:1.6_44.1_1.7_44.2" ><polygon points="275.9,420.5 279.8,420.5 279.8,425.8 275.9,425.8 275.9,420.5 " /></g><g id="bbox:1.7_44.1_1.8_44.2" ><polygon points="279.8,420.5 283.6,420.5 283.6,425.8 279.8,425.8 279.8,420.5 " /></g><g id="bbox:1.8_44.1_1.9_44.2" ><polygon points="283.6,420.5 287.5,420.5 287.5,425.8 283.6,425.8 283.6,420.5 " /></g><g id="bbox:1.9_44.1_2_44.2" ><polygon points="287.5,420.5 291.3,420.5 291.3,425.8 287.5,425.8 287.5,420.5 " /></g><g id="bbox:2_44.1_2.1_44.2" ><polygon points="291.3,420.5 295.2,420.5 295.2,425.8 291.3,425.8 291.3,420.5 " /></g><g id="bbox:2.1_44.1_2.2_44.2" ><polygon points="295.2,420.5 299.0,420.5 299.0,425.8 295.2,425.8 295.2,420.5 " /></g><g id="bbox:2.2_44.1_2.3_44.2" ><polygon points="299.0,420.5 302.8,420.5 302.8,425.8 299.0,425.8 299.0,420.5 " /></g><g id="bbox:2.3_44.1_2.4_44.2" ><polygon points="302.8,420.5 306.7,420.5 306.7,425.8 302.8,425.8 302.8,420.5 " /></g><g id="bbox:2.4_44.1_2.5_44.2" ><polygon points="306.7,420.5 310.5,420.5 310.5,425.8 306.7,425.8 306.7,420.5 " /></g><g id="bbox:2.5_44.1_2.6_44.2" ><polygon points="310.5,420.5 314.4,420.5 314.4,425.8 310.5,425.8 310.5,420.5 " /></g><g id="bbox:2.6_44.1_2.7_44.2" ><polygon points="314.4,420.5 318.2,420.5 318.2,425.8 314.4,425.8 314.4,420.5 " /></g><g id="bbox:2.7_44.1_2.8_44.2" ><polygon points="318.2,420.5 322.1,420.5 322.1,425.8 318.2,425.8 318.2,420.5 " /></g><g id="bbox:2.8_44.1_2.9_44.2" ><polygon points="322.1,420.5 325.9,420.5 325.9,425.8 322.1,425.8 322.1,420.5 " /></g><g id="bbox:2.9_44.1_3_44.2" ><polygon points="325.9,420.5 329.8,420.5 329.8,425.8 325.9,425.8 325.9,420.5 " /></g><g id="bbox:3_44.1_3.1_44.2" ><polygon points="329.8,420.5 333.6,420.5 333.6,425.8 329.8,425.8 329.8,420.5 " /></g><g id="bbox:3.1_44.1_3.2_44.2" ><polygon points="333.6,420.5 337.5,420.5 337.5,425.8 333.6,425.8 333.6,420.5 " /></g><g id="bbox:3.2_44.1_3.3_44.2" ><polygon points="337.5,420.5 341.3,420.5 341.3,425.8 337.5,425.8 337.5,420.5 " /></g><g id="bbox:3.3_44.1_3.4_44.2" ><polygon points="341.3,420.5 345.2,420.5 345.2,425.8 341.3,425.8 341.3,420.5 " /></g><g id="bbox:3.4_44.1_3.5_44.2" ><polygon points="345.2,420.5 349.0,420.5 349.0,425.8 345.2,425.8 345.2,420.5 " /></g><g id="bbox:3.5_44.1_3.6_44.2" ><polygon points="349.0,420.5 352.9,420.5 352.9,425.8 349.0,425.8 349.0,420.5 " /></g><g id="bbox:3.6_44.1_3.7_44.2" ><polygon points="352.9,420.5 356.7,420.5 356.7,425.8 352.9,425.8 352.9,420.5 " /></g><g id="bbox:3.7_44.1_3.8_44.2" ><polygon points="356.7,420.5 360.6,420.5 360.6,425.8 356.7,425.8 356.7,420.5 " /></g><g id="bbox:3.8_44.1_3.9_44.2" ><polygon points="360.6,420.5 364.4,420.5 364.4,425.8 360.6,425.8 360.6,420.5 " /></g><g id="bbox:3.9_44.1_4_44.2" ><polygon points="364.4,420.5 368.3,420.5 368.3,425.8 364.4,425.8 364.4,420.5 " /></g><g id="bbox:4_44.1_4.1_44.2" ><polygon points="368.3,420.5 372.1,420.5 372.1,425.8 368.3,425.8 368.3,420.5 " /></g><g id="bbox:4.1_44.1_4.2_44.2" ><polygon points="372.1,420.5 376.0,420.5 376.0,425.8 372.1,425.8 372.1,420.5 " /></g><g id="bbox:4.2_44.1_4.3_44.2" ><polygon points="376.0,420.5 379.8,420.5 379.8,425.8 376.0,425.8 376.0,420.5 " /></g><g id="bbox:4.3_44.1_4.4_44.2" ><polygon points="379.8,420.5 383.7,420.5 383.7,425.8 379.8,425.8 379.8,420.5 " /></g><g id="bbox:4.4_44.1_4.5_44.2" ><polygon points="383.7,420.5 387.5,420.5 387.5,425.8 383.7,425.8 383.7,420.5 " /></g><g id="bbox:4.5_44.1_4.6_44.2" ><polygon points="387.5,420.5 391.4,420.5 391.4,425.8 387.5,425.8 387.5,420.5 " /></g><g id="bbox:4.6_44.1_4.7_44.2" ><polygon points="391.4,420.5 395.2,420.5 395.2,425.8 391.4,425.8 391.4,420.5 " /></g><g id="bbox:4.7_44.1_4.8_44.2" ><polygon points="395.2,420.5 399.1,420.5 399.1,425.8 395.2,425.8 395.2,420.5 " /></g><g id="bbox:4.8_44.1_4.9_44.2" ><polygon points="399.1,420.5 402.9,420.5 402.9,425.8 399.1,425.8 399.1,420.5 " /></g><g id="bbox:4.9_44.1_5_44.2" ><polygon points="402.9,420.5 406.7,420.5 406.7,425.8 402.9,425.8 402.9,420.5 " /></g><g id="bbox:5_44.1_5.1_44.2" ><polygon points="406.7,420.5 410.6,420.5 410.6,425.8 406.7,425.8 406.7,420.5 " /></g><g id="bbox:5.1_44.1_5.2_44.2" ><polygon points="410.6,420.5 414.4,420.5 414.4,425.8 410.6,425.8 410.6,420.5 " /></g><g id="bbox:5.2_44.1_5.3_44.2" ><polygon points="414.4,420.5 418.3,420.5 418.3,425.8 414.4,425.8 414.4,420.5 " /></g><g id="bbox:5.3_44.1_5.4_44.2" ><polygon points="418.3,420.5 422.1,420.5 422.1,425.8 418.3,425.8 418.3,420.5 " /></g><g id="bbox:5.4_44.1_5.5_44.2" ><polygon points="422.1,420.5 426.0,420.5 426.0,425.8 422.1,425.8 422.1,420.5 " /></g><g id="bbox:5.5_44.1_5.6_44.2" ><polygon points="426.0,420.5 429.8,420.5 429.8,425.8 426.0,425.8 426.0,420.5 " /></g><g id="bbox:5.6_44.1_5.7_44.2" ><polygon points="429.8,420.5 433.7,420.5 433.7,425.8 429.8,425.8 429.8,420.5 " /></g><g id="bbox:5.7_44.1_5.8_44.2" ><polygon points="433.7,420.5 437.5,420.5 437.5,425.8 433.7,425.8 433.7,420.5 " /></g><g id="bbox:5.8_44.1_5.9_44.2" ><polygon points="437.5,420.5 441.4,420.5 441.4,425.8 437.5,425.8 437.5,420.5 " /></g><g id="bbox:5.9_44.1_6_44.2" ><polygon points="441.4,420.5 445.2,420.5 445.2,425.8 441.4,425.8 441.4,420.5 " /></g><g id="bbox:6_44.1_6.1_44.2" ><polygon points="445.2,420.5 449.1,420.5 449.1,425.8 445.2,425.8 445.2,420.5 " /></g><g id="bbox:6.1_44.1_6.2_44.2" ><polygon points="449.1,420.5 452.9,420.5 452.9,425.8 449.1,425.8 449.1,420.5 " /></g><g id="bbox:6.2_44.1_6.3_44.2" ><polygon points="452.9,420.5 456.8,420.5 456.8,425.8 452.9,425.8 452.9,420.5 " /></g><g id="bbox:6.3_44.1_6.4_44.2" ><polygon points="456.8,420.5 460.6,420.5 460.6,425.8 456.8,425.8 456.8,420.5 " /></g><g id="bbox:6.4_44.1_6.5_44.2" ><polygon points="460.6,420.5 464.5,420.5 464.5,425.8 460.6,425.8 460.6,420.5 " /></g><g id="bbox:6.5_44.1_6.6_44.2" ><polygon points="464.5,420.5 468.3,420.5 468.3,425.8 464.5,425.8 464.5,420.5 " /></g><g id="bbox:6.6_44.1_6.7_44.2" ><polygon points="468.3,420.5 472.2,420.5 472.2,425.8 468.3,425.8 468.3,420.5 " /></g><g id="bbox:6.7_44.1_6.8_44.2" ><polygon points="472.2,420.5 476.0,420.5 476.0,425.8 472.2,425.8 472.2,420.5 " /></g><g id="bbox:6.8_44.1_6.9_44.2" ><polygon points="476.0,420.5 479.9,420.5 479.9,425.8 476.0,425.8 476.0,420.5 " /></g><g id="bbox:6.9_44.1_7_44.2" ><polygon points="479.9,420.5 483.7,420.5 483.7,425.8 479.9,425.8 479.9,420.5 " /></g><g id="bbox:7_44.1_7.1_44.2" ><polygon points="483.7,420.5 487.6,420.5 487.6,425.8 483.7,425.8 483.7,420.5 " /></g><g id="bbox:7.1_44.1_7.2_44.2" ><polygon points="487.6,420.5 491.4,420.5 491.4,425.8 487.6,425.8 487.6,420.5 " /></g><g id="bbox:7.2_44.1_7.3_44.2" ><polygon points="491.4,420.5 495.3,420.5 495.3,425.8 491.4,425.8 491.4,420.5 " /></g><g id="bbox:7.3_44.1_7.4_44.2" ><polygon points="495.3,420.5 499.1,420.5 499.1,425.8 495.3,425.8 495.3,420.5 " /></g><g id="bbox:7.4_44.1_7.5_44.2" ><polygon points="499.1,420.5 503.0,420.5 503.0,425.8 499.1,425.8 499.1,420.5 " /></g><g id="bbox:7.5_44.1_7.6_44.2" ><polygon points="503.0,420.5 506.8,420.5 506.8,425.8 503.0,425.8 503.0,420.5 " /></g><g id="bbox:7.6_44.1_7.7_44.2" ><polygon points="506.8,420.5 510.6,420.5 510.6,425.8 506.8,425.8 506.8,420.5 " /></g><g id="bbox:-1.4_44_-1.3_44.1" ><polygon points="160.5,425.8 164.3,425.8 164.3,431.2 160.5,431.2 160.5,425.8 " /></g><g id="bbox:-1.3_44_-1.2_44.1" ><polygon points="164.3,425.8 168.2,425.8 168.2,431.2 164.3,431.2 164.3,425.8 " /></g><g id="bbox:-1.2_44_-1.1_44.1" ><polygon points="168.2,425.8 172.0,425.8 172.0,431.2 168.2,431.2 168.2,425.8 " /></g><g id="bbox:-1.1_44_-1_44.1" ><polygon points="172.0,425.8 175.9,425.8 175.9,431.2 172.0,431.2 172.0,425.8 " /></g><g id="bbox:-1_44_-0.9_44.1" ><polygon points="175.9,425.8 179.7,425.8 179.7,431.2 175.9,431.2 175.9,425.8 " /></g><g id="bbox:-0.9_44_-0.8_44.1" ><polygon points="179.7,425.8 183.6,425.8 183.6,431.2 179.7,431.2 179.7,425.8 " /></g><g id="bbox:-0.8_44_-0.7_44.1" ><polygon points="183.6,425.8 187.4,425.8 187.4,431.2 183.6,431.2 183.6,425.8 " /></g><g id="bbox:-0.7_44_-0.6_44.1" ><polygon points="187.4,425.8 191.3,425.8 191.3,431.2 187.4,431.2 187.4,425.8 " /></g><g id="bbox:-0.6_44_-0.5_44.1" ><polygon points="191.3,425.8 195.1,425.8 195.1,431.2 191.3,431.2 191.3,425.8 " /></g><g id="bbox:-0.5_44_-0.4_44.1" ><polygon points="195.1,425.8 198.9,425.8 198.9,431.2 195.1,431.2 195.1,425.8 " /></g><g id="bbox:-0.4_44_-0.3_44.1" ><polygon points="198.9,425.8 202.8,425.8 202.8,431.2 198.9,431.2 198.9,425.8 " /></g><g id="bbox:-0.3_44_-0.2_44.1" ><polygon points="202.8,425.8 206.6,425.8 206.6,431.2 202.8,431.2 202.8,425.8 " /></g><g id="bbox:-0.2_44_-0.1_44.1" ><polygon points="206.6,425.8 210.5,425.8 210.5,431.2 206.6,431.2 206.6,425.8 " /></g><g id="bbox:-0.1_44_0_44.1" ><polygon points="210.5,425.8 214.3,425.8 214.3,431.2 210.5,431.2 210.5,425.8 " /></g><g id="bbox:0_44_0.1_44.1" ><polygon points="214.3,425.8 218.2,425.8 218.2,431.2 214.3,431.2 214.3,425.8 " /></g><g id="bbox:0.1_44_0.2_44.1" ><polygon points="218.2,425.8 222.0,425.8 222.0,431.2 218.2,431.2 218.2,425.8 " /></g><g id="bbox:0.2_44_0.3_44.1" ><polygon points="222.0,425.8 225.9,425.8 225.9,431.2 222.0,431.2 222.0,425.8 " /></g><g id="bbox:0.3_44_0.4_44.1" ><polygon points="225.9,425.8 229.7,425.8 229.7,431.2 225.9,431.2 225.9,425.8 " /></g><g id="bbox:0.4_44_0.5_44.1" ><polygon points="229.7,425.8 233.6,425.8 233.6,431.2 229.7,431.2 229.7,425.8 " /></g><g id="bbox:0.5_44_0.6_44.1" ><polygon points="233.6,425.8 237.4,425.8 237.4,431.2 233.6,431.2 233.6,425.8 " /></g><g id="bbox:0.6_44_0.7_44.1" ><polygon points="237.4,425.8 241.3,425.8 241.3,431.2 237.4,431.2 237.4,425.8 " /></g><g id="bbox:0.7_44_0.8_44.1" ><polygon points="241.3,425.8 245.1,425.8 245.1,431.2 241.3,431.2 241.3,425.8 " /></g><g id="bbox:0.8_44_0.9_44.1" ><polygon points="245.1,425.8 249.0,425.8 249.0,431.2 245.1,431.2 245.1,425.8 " /></g><g id="bbox:0.9_44_1_44.1" ><polygon points="249.0,425.8 252.8,425.8 252.8,431.2 249.0,431.2 249.0,425.8 " /></g><g id="bbox:1_44_1.1_44.1" ><polygon points="252.8,425.8 256.7,425.8 256.7,431.2 252.8,431.2 252.8,425.8 " /></g><g id="bbox:1.1_44_1.2_44.1" ><polygon points="256.7,425.8 260.5,425.8 260.5,431.2 256.7,431.2 256.7,425.8 " /></g><g id="bbox:1.2_44_1.3_44.1" ><polygon points="260.5,425.8 264.4,425.8 264.4,431.2 260.5,431.2 260.5,425.8 " /></g><g id="bbox:1.3_44_1.4_44.1" ><polygon points="264.4,425.8 268.2,425.8 268.2,431.2 264.4,431.2 264.4,425.8 " /></g><g id="bbox:1.4_44_1.5_44.1" ><polygon points="268.2,425.8 272.1,425.8 272.1,431.2 268.2,431.2 268.2,425.8 " /></g><g id="bbox:1.5_44_1.6_44.1" ><polygon points="272.1,425.8 275.9,425.8 275.9,431.2 272.1,431.2 272.1,425.8 " /></g><g id="bbox:1.6_44_1.7_44.1" ><polygon points="275.9,425.8 279.8,425.8 279.8,431.2 275.9,431.2 275.9,425.8 " /></g><g id="bbox:1.7_44_1.8_44.1" ><polygon points="279.8,425.8 283.6,425.8 283.6,431.2 279.8,431.2 279.8,425.8 " /></g><g id="bbox:1.8_44_1.9_44.1" ><polygon points="283.6,425.8 287.5,425.8 287.5,431.2 283.6,431.2 283.6,425.8 " /></g><g id="bbox:1.9_44_2_44.1" ><polygon points="287.5,425.8 291.3,425.8 291.3,431.2 287.5,431.2 287.5,425.8 " /></g><g id="bbox:2_44_2.1_44.1" ><polygon points="291.3,425.8 295.2,425.8 295.2,431.2 291.3,431.2 291.3,425.8 " /></g><g id="bbox:2.1_44_2.2_44.1" ><polygon points="295.2,425.8 299.0,425.8 299.0,431.2 295.2,431.2 295.2,425.8 " /></g><g id="bbox:2.2_44_2.3_44.1" ><polygon points="299.0,425.8 302.8,425.8 302.8,431.2 299.0,431.2 299.0,425.8 " /></g><g id="bbox:2.3_44_2.4_44.1" ><polygon points="302.8,425.8 306.7,425.8 306.7,431.2 302.8,431.2 302.8,425.8 " /></g><g id="bbox:2.4_44_2.5_44.1" ><polygon points="306.7,425.8 310.5,425.8 310.5,431.2 306.7,431.2 306.7,425.8 " /></g><g id="bbox:2.5_44_2.6_44.1" ><polygon points="310.5,425.8 314.4,425.8 314.4,431.2 310.5,431.2 310.5,425.8 " /></g><g id="bbox:2.6_44_2.7_44.1" ><polygon points="314.4,425.8 318.2,425.8 318.2,431.2 314.4,431.2 314.4,425.8 " /></g><g id="bbox:2.7_44_2.8_44.1" ><polygon points="318.2,425.8 322.1,425.8 322.1,431.2 318.2,431.2 318.2,425.8 " /></g><g id="bbox:2.8_44_2.9_44.1" ><polygon points="322.1,425.8 325.9,425.8 325.9,431.2 322.1,431.2 322.1,425.8 " /></g><g id="bbox:2.9_44_3_44.1" ><polygon points="325.9,425.8 329.8,425.8 329.8,431.2 325.9,431.2 325.9,425.8 " /></g><g id="bbox:3_44_3.1_44.1" ><polygon points="329.8,425.8 333.6,425.8 333.6,431.2 329.8,431.2 329.8,425.8 " /></g><g id="bbox:3.1_44_3.2_44.1" ><polygon points="333.6,425.8 337.5,425.8 337.5,431.2 333.6,431.2 333.6,425.8 " /></g><g id="bbox:3.2_44_3.3_44.1" ><polygon points="337.5,425.8 341.3,425.8 341.3,431.2 337.5,431.2 337.5,425.8 " /></g><g id="bbox:3.3_44_3.4_44.1" ><polygon points="341.3,425.8 345.2,425.8 345.2,431.2 341.3,431.2 341.3,425.8 " /></g><g id="bbox:3.4_44_3.5_44.1" ><polygon points="345.2,425.8 349.0,425.8 349.0,431.2 345.2,431.2 345.2,425.8 " /></g><g id="bbox:3.5_44_3.6_44.1" ><polygon points="349.0,425.8 352.9,425.8 352.9,431.2 349.0,431.2 349.0,425.8 " /></g><g id="bbox:3.6_44_3.7_44.1" ><polygon points="352.9,425.8 356.7,425.8 356.7,431.2 352.9,431.2 352.9,425.8 " /></g><g id="bbox:3.7_44_3.8_44.1" ><polygon points="356.7,425.8 360.6,425.8 360.6,431.2 356.7,431.2 356.7,425.8 " /></g><g id="bbox:3.8_44_3.9_44.1" ><polygon points="360.6,425.8 364.4,425.8 364.4,431.2 360.6,431.2 360.6,425.8 " /></g><g id="bbox:3.9_44_4_44.1" ><polygon points="364.4,425.8 368.3,425.8 368.3,431.2 364.4,431.2 364.4,425.8 " /></g><g id="bbox:4_44_4.1_44.1" ><polygon points="368.3,425.8 372.1,425.8 372.1,431.2 368.3,431.2 368.3,425.8 " /></g><g id="bbox:4.1_44_4.2_44.1" ><polygon points="372.1,425.8 376.0,425.8 376.0,431.2 372.1,431.2 372.1,425.8 " /></g><g id="bbox:4.2_44_4.3_44.1" ><polygon points="376.0,425.8 379.8,425.8 379.8,431.2 376.0,431.2 376.0,425.8 " /></g><g id="bbox:4.3_44_4.4_44.1" ><polygon points="379.8,425.8 383.7,425.8 383.7,431.2 379.8,431.2 379.8,425.8 " /></g><g id="bbox:4.4_44_4.5_44.1" ><polygon points="383.7,425.8 387.5,425.8 387.5,431.2 383.7,431.2 383.7,425.8 " /></g><g id="bbox:4.5_44_4.6_44.1" ><polygon points="387.5,425.8 391.4,425.8 391.4,431.2 387.5,431.2 387.5,425.8 " /></g><g id="bbox:4.6_44_4.7_44.1" ><polygon points="391.4,425.8 395.2,425.8 395.2,431.2 391.4,431.2 391.4,425.8 " /></g><g id="bbox:4.7_44_4.8_44.1" ><polygon points="395.2,425.8 399.1,425.8 399.1,431.2 395.2,431.2 395.2,425.8 " /></g><g id="bbox:4.8_44_4.9_44.1" ><polygon points="399.1,425.8 402.9,425.8 402.9,431.2 399.1,431.2 399.1,425.8 " /></g><g id="bbox:4.9_44_5_44.1" ><polygon points="402.9,425.8 406.7,425.8 406.7,431.2 402.9,431.2 402.9,425.8 " /></g><g id="bbox:5_44_5.1_44.1" ><polygon points="406.7,425.8 410.6,425.8 410.6,431.2 406.7,431.2 406.7,425.8 " /></g><g id="bbox:5.1_44_5.2_44.1" ><polygon points="410.6,425.8 414.4,425.8 414.4,431.2 410.6,431.2 410.6,425.8 " /></g><g id="bbox:5.2_44_5.3_44.1" ><polygon points="414.4,425.8 418.3,425.8 418.3,431.2 414.4,431.2 414.4,425.8 " /></g><g id="bbox:5.3_44_5.4_44.1" ><polygon points="418.3,425.8 422.1,425.8 422.1,431.2 418.3,431.2 418.3,425.8 " /></g><g id="bbox:5.4_44_5.5_44.1" ><polygon points="422.1,425.8 426.0,425.8 426.0,431.2 422.1,431.2 422.1,425.8 " /></g><g id="bbox:5.5_44_5.6_44.1" ><polygon points="426.0,425.8 429.8,425.8 429.8,431.2 426.0,431.2 426.0,425.8 " /></g><g id="bbox:5.6_44_5.7_44.1" ><polygon points="429.8,425.8 433.7,425.8 433.7,431.2 429.8,431.2 429.8,425.8 " /></g><g id="bbox:5.7_44_5.8_44.1" ><polygon points="433.7,425.8 437.5,425.8 437.5,431.2 433.7,431.2 433.7,425.8 " /></g><g id="bbox:5.8_44_5.9_44.1" ><polygon points="437.5,425.8 441.4,425.8 441.4,431.2 437.5,431.2 437.5,425.8 " /></g><g id="bbox:5.9_44_6_44.1" ><polygon points="441.4,425.8 445.2,425.8 445.2,431.2 441.4,431.2 441.4,425.8 " /></g><g id="bbox:6_44_6.1_44.1" ><polygon points="445.2,425.8 449.1,425.8 449.1,431.2 445.2,431.2 445.2,425.8 " /></g><g id="bbox:6.1_44_6.2_44.1" ><polygon points="449.1,425.8 452.9,425.8 452.9,431.2 449.1,431.2 449.1,425.8 " /></g><g id="bbox:6.2_44_6.3_44.1" ><polygon points="452.9,425.8 456.8,425.8 456.8,431.2 452.9,431.2 452.9,425.8 " /></g><g id="bbox:6.3_44_6.4_44.1" ><polygon points="456.8,425.8 460.6,425.8 460.6,431.2 456.8,431.2 456.8,425.8 " /></g><g id="bbox:6.4_44_6.5_44.1" ><polygon points="460.6,425.8 464.5,425.8 464.5,431.2 460.6,431.2 460.6,425.8 " /></g><g id="bbox:6.5_44_6.6_44.1" ><polygon points="464.5,425.8 468.3,425.8 468.3,431.2 464.5,431.2 464.5,425.8 " /></g><g id="bbox:6.6_44_6.7_44.1" ><polygon points="468.3,425.8 472.2,425.8 472.2,431.2 468.3,431.2 468.3,425.8 " /></g><g id="bbox:6.7_44_6.8_44.1" ><polygon points="472.2,425.8 476.0,425.8 476.0,431.2 472.2,431.2 472.2,425.8 " /></g><g id="bbox:6.8_44_6.9_44.1" ><polygon points="476.0,425.8 479.9,425.8 479.9,431.2 476.0,431.2 476.0,425.8 " /></g><g id="bbox:6.9_44_7_44.1" ><polygon points="479.9,425.8 483.7,425.8 483.7,431.2 479.9,431.2 479.9,425.8 " /></g><g id="bbox:7_44_7.1_44.1" ><polygon points="483.7,425.8 487.6,425.8 487.6,431.2 483.7,431.2 483.7,425.8 " /></g><g id="bbox:7.1_44_7.2_44.1" ><polygon points="487.6,425.8 491.4,425.8 491.4,431.2 487.6,431.2 487.6,425.8 " /></g><g id="bbox:7.2_44_7.3_44.1" ><polygon points="491.4,425.8 495.3,425.8 495.3,431.2 491.4,431.2 491.4,425.8 " /></g><g id="bbox:7.3_44_7.4_44.1" ><polygon points="495.3,425.8 499.1,425.8 499.1,431.2 495.3,431.2 495.3,425.8 " /></g><g id="bbox:7.4_44_7.5_44.1" ><polygon points="499.1,425.8 503.0,425.8 503.0,431.2 499.1,431.2 499.1,425.8 " /></g><g id="bbox:7.5_44_7.6_44.1" ><polygon points="503.0,425.8 506.8,425.8 506.8,431.2 503.0,431.2 503.0,425.8 " /></g><g id="bbox:7.6_44_7.7_44.1" ><polygon points="506.8,425.8 510.6,425.8 510.6,431.2 506.8,431.2 506.8,425.8 " /></g><g id="bbox:7.7_44_7.8_44.1" ><polygon points="510.6,425.8 514.5,425.8 514.5,431.2 510.6,431.2 510.6,425.8 " /></g><g id="bbox:8.2_44_8.3_44.1" ><polygon points="529.9,425.8 533.7,425.8 533.7,431.2 529.9,431.2 529.9,425.8 " /></g><g id="bbox:-1.4_43.9_-1.3_44" ><polygon points="160.5,431.2 164.3,431.2 164.3,436.5 160.5,436.5 160.5,431.2 " /></g><g id="bbox:-1.3_43.9_-1.2_44" ><polygon points="164.3,431.2 168.2,431.2 168.2,436.5 164.3,436.5 164.3,431.2 " /></g><g id="bbox:-1.2_43.9_-1.1_44" ><polygon points="168.2,431.2 172.0,431.2 172.0,436.5 168.2,436.5 168.2,431.2 " /></g><g id="bbox:-1.1_43.9_-1_44" ><polygon points="172.0,431.2 175.9,431.2 175.9,436.5 172.0,436.5 172.0,431.2 " /></g><g id="bbox:-1_43.9_-0.9_44" ><polygon points="175.9,431.2 179.7,431.2 179.7,436.5 175.9,436.5 175.9,431.2 " /></g><g id="bbox:-0.9_43.9_-0.8_44" ><polygon points="179.7,431.2 183.6,431.2 183.6,436.5 179.7,436.5 179.7,431.2 " /></g><g id="bbox:-0.8_43.9_-0.7_44" ><polygon points="183.6,431.2 187.4,431.2 187.4,436.5 183.6,436.5 183.6,431.2 " /></g><g id="bbox:-0.7_43.9_-0.6_44" ><polygon points="187.4,431.2 191.3,431.2 191.3,436.5 187.4,436.5 187.4,431.2 " /></g><g id="bbox:-0.6_43.9_-0.5_44" ><polygon points="191.3,431.2 195.1,431.2 195.1,436.5 191.3,436.5 191.3,431.2 " /></g><g id="bbox:-0.5_43.9_-0.4_44" ><polygon points="195.1,431.2 198.9,431.2 198.9,436.5 195.1,436.5 195.1,431.2 " /></g><g id="bbox:-0.4_43.9_-0.3_44" ><polygon points="198.9,431.2 202.8,431.2 202.8,436.5 198.9,436.5 198.9,431.2 " /></g><g id="bbox:-0.3_43.9_-0.2_44" ><polygon points="202.8,431.2 206.6,431.2 206.6,436.5 202.8,436.5 202.8,431.2 " /></g><g id="bbox:-0.2_43.9_-0.1_44" ><polygon points="206.6,431.2 210.5,431.2 210.5,436.5 206.6,436.5 206.6,431.2 " /></g><g id="bbox:-0.1_43.9_0_44" ><polygon points="210.5,431.2 214.3,431.2 214.3,436.5 210.5,436.5 210.5,431.2 " /></g><g id="bbox:0_43.9_0.1_44" ><polygon points="214.3,431.2 218.2,431.2 218.2,436.5 214.3,436.5 214.3,431.2 " /></g><g id="bbox:0.1_43.9_0.2_44" ><polygon points="218.2,431.2 222.0,431.2 222.0,436.5 218.2,436.5 218.2,431.2 " /></g><g id="bbox:0.2_43.9_0.3_44" ><polygon points="222.0,431.2 225.9,431.2 225.9,436.5 222.0,436.5 222.0,431.2 " /></g><g id="bbox:0.3_43.9_0.4_44" ><polygon points="225.9,431.2 229.7,431.2 229.7,436.5 225.9,436.5 225.9,431.2 " /></g><g id="bbox:0.4_43.9_0.5_44" ><polygon points="229.7,431.2 233.6,431.2 233.6,436.5 229.7,436.5 229.7,431.2 " /></g><g id="bbox:0.5_43.9_0.6_44" ><polygon points="233.6,431.2 237.4,431.2 237.4,436.5 233.6,436.5 233.6,431.2 " /></g><g id="bbox:0.6_43.9_0.7_44" ><polygon points="237.4,431.2 241.3,431.2 241.3,436.5 237.4,436.5 237.4,431.2 " /></g><g id="bbox:0.7_43.9_0.8_44" ><polygon points="241.3,431.2 245.1,431.2 245.1,436.5 241.3,436.5 241.3,431.2 " /></g><g id="bbox:0.8_43.9_0.9_44" ><polygon points="245.1,431.2 249.0,431.2 249.0,436.5 245.1,436.5 245.1,431.2 " /></g><g id="bbox:0.9_43.9_1_44" ><polygon points="249.0,431.2 252.8,431.2 252.8,436.5 249.0,436.5 249.0,431.2 " /></g><g id="bbox:1_43.9_1.1_44" ><polygon points="252.8,431.2 256.7,431.2 256.7,436.5 252.8,436.5 252.8,431.2 " /></g><g id="bbox:1.1_43.9_1.2_44" ><polygon points="256.7,431.2 260.5,431.2 260.5,436.5 256.7,436.5 256.7,431.2 " /></g><g id="bbox:1.2_43.9_1.3_44" ><polygon points="260.5,431.2 264.4,431.2 264.4,436.5 260.5,436.5 260.5,431.2 " /></g><g id="bbox:1.3_43.9_1.4_44" ><polygon points="264.4,431.2 268.2,431.2 268.2,436.5 264.4,436.5 264.4,431.2 " /></g><g id="bbox:1.4_43.9_1.5_44" ><polygon points="268.2,431.2 272.1,431.2 272.1,436.5 268.2,436.5 268.2,431.2 " /></g><g id="bbox:1.5_43.9_1.6_44" ><polygon points="272.1,431.2 275.9,431.2 275.9,436.5 272.1,436.5 272.1,431.2 " /></g><g id="bbox:1.6_43.9_1.7_44" ><polygon points="275.9,431.2 279.8,431.2 279.8,436.5 275.9,436.5 275.9,431.2 " /></g><g id="bbox:1.7_43.9_1.8_44" ><polygon points="279.8,431.2 283.6,431.2 283.6,436.5 279.8,436.5 279.8,431.2 " /></g><g id="bbox:1.8_43.9_1.9_44" ><polygon points="283.6,431.2 287.5,431.2 287.5,436.5 283.6,436.5 283.6,431.2 " /></g><g id="bbox:1.9_43.9_2_44" ><polygon points="287.5,431.2 291.3,431.2 291.3,436.5 287.5,436.5 287.5,431.2 " /></g><g id="bbox:2_43.9_2.1_44" ><polygon points="291.3,431.2 295.2,431.2 295.2,436.5 291.3,436.5 291.3,431.2 " /></g><g id="bbox:2.1_43.9_2.2_44" ><polygon points="295.2,431.2 299.0,431.2 299.0,436.5 295.2,436.5 295.2,431.2 " /></g><g id="bbox:2.2_43.9_2.3_44" ><polygon points="299.0,431.2 302.8,431.2 302.8,436.5 299.0,436.5 299.0,431.2 " /></g><g id="bbox:2.3_43.9_2.4_44" ><polygon points="302.8,431.2 306.7,431.2 306.7,436.5 302.8,436.5 302.8,431.2 " /></g><g id="bbox:2.4_43.9_2.5_44" ><polygon points="306.7,431.2 310.5,431.2 310.5,436.5 306.7,436.5 306.7,431.2 " /></g><g id="bbox:2.5_43.9_2.6_44" ><polygon points="310.5,431.2 314.4,431.2 314.4,436.5 310.5,436.5 310.5,431.2 " /></g><g id="bbox:2.6_43.9_2.7_44" ><polygon points="314.4,431.2 318.2,431.2 318.2,436.5 314.4,436.5 314.4,431.2 " /></g><g id="bbox:2.7_43.9_2.8_44" ><polygon points="318.2,431.2 322.1,431.2 322.1,436.5 318.2,436.5 318.2,431.2 " /></g><g id="bbox:2.8_43.9_2.9_44" ><polygon points="322.1,431.2 325.9,431.2 325.9,436.5 322.1,436.5 322.1,431.2 " /></g><g id="bbox:2.9_43.9_3_44" ><polygon points="325.9,431.2 329.8,431.2 329.8,436.5 325.9,436.5 325.9,431.2 " /></g><g id="bbox:3_43.9_3.1_44" ><polygon points="329.8,431.2 333.6,431.2 333.6,436.5 329.8,436.5 329.8,431.2 " /></g><g id="bbox:3.1_43.9_3.2_44" ><polygon points="333.6,431.2 337.5,431.2 337.5,436.5 333.6,436.5 333.6,431.2 " /></g><g id="bbox:3.2_43.9_3.3_44" ><polygon points="337.5,431.2 341.3,431.2 341.3,436.5 337.5,436.5 337.5,431.2 " /></g><g id="bbox:3.3_43.9_3.4_44" ><polygon points="341.3,431.2 345.2,431.2 345.2,436.5 341.3,436.5 341.3,431.2 " /></g><g id="bbox:3.4_43.9_3.5_44" ><polygon points="345.2,431.2 349.0,431.2 349.0,436.5 345.2,436.5 345.2,431.2 " /></g><g id="bbox:3.5_43.9_3.6_44" ><polygon points="349.0,431.2 352.9,431.2 352.9,436.5 349.0,436.5 349.0,431.2 " /></g><g id="bbox:3.6_43.9_3.7_44" ><polygon points="352.9,431.2 356.7,431.2 356.7,436.5 352.9,436.5 352.9,431.2 " /></g><g id="bbox:3.7_43.9_3.8_44" ><polygon points="356.7,431.2 360.6,431.2 360.6,436.5 356.7,436.5 356.7,431.2 " /></g><g id="bbox:3.8_43.9_3.9_44" ><polygon points="360.6,431.2 364.4,431.2 364.4,436.5 360.6,436.5 360.6,431.2 " /></g><g id="bbox:3.9_43.9_4_44" ><polygon points="364.4,431.2 368.3,431.2 368.3,436.5 364.4,436.5 364.4,431.2 " /></g><g id="bbox:4_43.9_4.1_44" ><polygon points="368.3,431.2 372.1,431.2 372.1,436.5 368.3,436.5 368.3,431.2 " /></g><g id="bbox:4.1_43.9_4.2_44" ><polygon points="372.1,431.2 376.0,431.2 376.0,436.5 372.1,436.5 372.1,431.2 " /></g><g id="bbox:4.2_43.9_4.3_44" ><polygon points="376.0,431.2 379.8,431.2 379.8,436.5 376.0,436.5 376.0,431.2 " /></g><g id="bbox:4.3_43.9_4.4_44" ><polygon points="379.8,431.2 383.7,431.2 383.7,436.5 379.8,436.5 379.8,431.2 " /></g><g id="bbox:4.4_43.9_4.5_44" ><polygon points="383.7,431.2 387.5,431.2 387.5,436.5 383.7,436.5 383.7,431.2 " /></g><g id="bbox:4.5_43.9_4.6_44" ><polygon points="387.5,431.2 391.4,431.2 391.4,436.5 387.5,436.5 387.5,431.2 " /></g><g id="bbox:4.6_43.9_4.7_44" ><polygon points="391.4,431.2 395.2,431.2 395.2,436.5 391.4,436.5 391.4,431.2 " /></g><g id="bbox:4.7_43.9_4.8_44" ><polygon points="395.2,431.2 399.1,431.2 399.1,436.5 395.2,436.5 395.2,431.2 " /></g><g id="bbox:4.8_43.9_4.9_44" ><polygon points="399.1,431.2 402.9,431.2 402.9,436.5 399.1,436.5 399.1,431.2 " /></g><g id="bbox:4.9_43.9_5_44" ><polygon points="402.9,431.2 406.7,431.2 406.7,436.5 402.9,436.5 402.9,431.2 " /></g><g id="bbox:5_43.9_5.1_44" ><polygon points="406.7,431.2 410.6,431.2 410.6,436.5 406.7,436.5 406.7,431.2 " /></g><g id="bbox:5.1_43.9_5.2_44" ><polygon points="410.6,431.2 414.4,431.2 414.4,436.5 410.6,436.5 410.6,431.2 " /></g><g id="bbox:5.2_43.9_5.3_44" ><polygon points="414.4,431.2 418.3,431.2 418.3,436.5 414.4,436.5 414.4,431.2 " /></g><g id="bbox:5.3_43.9_5.4_44" ><polygon points="418.3,431.2 422.1,431.2 422.1,436.5 418.3,436.5 418.3,431.2 " /></g><g id="bbox:5.4_43.9_5.5_44" ><polygon points="422.1,431.2 426.0,431.2 426.0,436.5 422.1,436.5 422.1,431.2 " /></g><g id="bbox:5.5_43.9_5.6_44" ><polygon points="426.0,431.2 429.8,431.2 429.8,436.5 426.0,436.5 426.0,431.2 " /></g><g id="bbox:5.6_43.9_5.7_44" ><polygon points="429.8,431.2 433.7,431.2 433.7,436.5 429.8,436.5 429.8,431.2 " /></g><g id="bbox:5.7_43.9_5.8_44" ><polygon points="433.7,431.2 437.5,431.2 437.5,436.5 433.7,436.5 433.7,431.2 " /></g><g id="bbox:5.8_43.9_5.9_44" ><polygon points="437.5,431.2 441.4,431.2 441.4,436.5 437.5,436.5 437.5,431.2 " /></g><g id="bbox:5.9_43.9_6_44" ><polygon points="441.4,431.2 445.2,431.2 445.2,436.5 441.4,436.5 441.4,431.2 " /></g><g id="bbox:6_43.9_6.1_44" ><polygon points="445.2,431.2 449.1,431.2 449.1,436.5 445.2,436.5 445.2,431.2 " /></g><g id="bbox:6.1_43.9_6.2_44" ><polygon points="449.1,431.2 452.9,431.2 452.9,436.5 449.1,436.5 449.1,431.2 " /></g><g id="bbox:6.2_43.9_6.3_44" ><polygon points="452.9,431.2 456.8,431.2 456.8,436.5 452.9,436.5 452.9,431.2 " /></g><g id="bbox:6.3_43.9_6.4_44" ><polygon points="456.8,431.2 460.6,431.2 460.6,436.5 456.8,436.5 456.8,431.2 " /></g><g id="bbox:6.4_43.9_6.5_44" ><polygon points="460.6,431.2 464.5,431.2 464.5,436.5 460.6,436.5 460.6,431.2 " /></g><g id="bbox:6.5_43.9_6.6_44" ><polygon points="464.5,431.2 468.3,431.2 468.3,436.5 464.5,436.5 464.5,431.2 " /></g><g id="bbox:6.6_43.9_6.7_44" ><polygon points="468.3,431.2 472.2,431.2 472.2,436.5 468.3,436.5 468.3,431.2 " /></g><g id="bbox:6.7_43.9_6.8_44" ><polygon points="472.2,431.2 476.0,431.2 476.0,436.5 472.2,436.5 472.2,431.2 " /></g><g id="bbox:6.8_43.9_6.9_44" ><polygon points="476.0,431.2 479.9,431.2 479.9,436.5 476.0,436.5 476.0,431.2 " /></g><g id="bbox:6.9_43.9_7_44" ><polygon points="479.9,431.2 483.7,431.2 483.7,436.5 479.9,436.5 479.9,431.2 " /></g><g id="bbox:7_43.9_7.1_44" ><polygon points="483.7,431.2 487.6,431.2 487.6,436.5 483.7,436.5 483.7,431.2 " /></g><g id="bbox:7.1_43.9_7.2_44" ><polygon points="487.6,431.2 491.4,431.2 491.4,436.5 487.6,436.5 487.6,431.2 " /></g><g id="bbox:7.2_43.9_7.3_44" ><polygon points="491.4,431.2 495.3,431.2 495.3,436.5 491.4,436.5 491.4,431.2 " /></g><g id="bbox:7.3_43.9_7.4_44" ><polygon points="495.3,431.2 499.1,431.2 499.1,436.5 495.3,436.5 495.3,431.2 " /></g><g id="bbox:7.4_43.9_7.5_44" ><polygon points="499.1,431.2 503.0,431.2 503.0,436.5 499.1,436.5 499.1,431.2 " /></g><g id="bbox:7.5_43.9_7.6_44" ><polygon points="503.0,431.2 506.8,431.2 506.8,436.5 503.0,436.5 503.0,431.2 " /></g><g id="bbox:7.6_43.9_7.7_44" ><polygon points="506.8,431.2 510.6,431.2 510.6,436.5 506.8,436.5 506.8,431.2 " /></g><g id="bbox:-1.5_43.8_-1.4_43.9" ><polygon points="156.6,436.5 160.5,436.5 160.5,441.9 156.6,441.9 156.6,436.5 " /></g><g id="bbox:-1.4_43.8_-1.3_43.9" ><polygon points="160.5,436.5 164.3,436.5 164.3,441.9 160.5,441.9 160.5,436.5 " /></g><g id="bbox:-1.3_43.8_-1.2_43.9" ><polygon points="164.3,436.5 168.2,436.5 168.2,441.9 164.3,441.9 164.3,436.5 " /></g><g id="bbox:-1.2_43.8_-1.1_43.9" ><polygon points="168.2,436.5 172.0,436.5 172.0,441.9 168.2,441.9 168.2,436.5 " /></g><g id="bbox:-1.1_43.8_-1_43.9" ><polygon points="172.0,436.5 175.9,436.5 175.9,441.9 172.0,441.9 172.0,436.5 " /></g><g id="bbox:-1_43.8_-0.9_43.9" ><polygon points="175.9,436.5 179.7,436.5 179.7,441.9 175.9,441.9 175.9,436.5 " /></g><g id="bbox:-0.9_43.8_-0.8_43.9" ><polygon points="179.7,436.5 183.6,436.5 183.6,441.9 179.7,441.9 179.7,436.5 " /></g><g id="bbox:-0.8_43.8_-0.7_43.9" ><polygon points="183.6,436.5 187.4,436.5 187.4,441.9 183.6,441.9 183.6,436.5 " /></g><g id="bbox:-0.7_43.8_-0.6_43.9" ><polygon points="187.4,436.5 191.3,436.5 191.3,441.9 187.4,441.9 187.4,436.5 " /></g><g id="bbox:-0.6_43.8_-0.5_43.9" ><polygon points="191.3,436.5 195.1,436.5 195.1,441.9 191.3,441.9 191.3,436.5 " /></g><g id="bbox:-0.5_43.8_-0.4_43.9" ><polygon points="195.1,436.5 198.9,436.5 198.9,441.9 195.1,441.9 195.1,436.5 " /></g><g id="bbox:-0.4_43.8_-0.3_43.9" ><polygon points="198.9,436.5 202.8,436.5 202.8,441.9 198.9,441.9 198.9,436.5 " /></g><g id="bbox:-0.3_43.8_-0.2_43.9" ><polygon points="202.8,436.5 206.6,436.5 206.6,441.9 202.8,441.9 202.8,436.5 " /></g><g id="bbox:-0.2_43.8_-0.1_43.9" ><polygon points="206.6,436.5 210.5,436.5 210.5,441.9 206.6,441.9 206.6,436.5 " /></g><g id="bbox:-0.1_43.8_0_43.9" ><polygon points="210.5,436.5 214.3,436.5 214.3,441.9 210.5,441.9 210.5,436.5 " /></g><g id="bbox:0_43.8_0.1_43.9" ><polygon points="214.3,436.5 218.2,436.5 218.2,441.9 214.3,441.9 214.3,436.5 " /></g><g id="bbox:0.1_43.8_0.2_43.9" ><polygon points="218.2,436.5 222.0,436.5 222.0,441.9 218.2,441.9 218.2,436.5 " /></g><g id="bbox:0.2_43.8_0.3_43.9" ><polygon points="222.0,436.5 225.9,436.5 225.9,441.9 222.0,441.9 222.0,436.5 " /></g><g id="bbox:0.3_43.8_0.4_43.9" ><polygon points="225.9,436.5 229.7,436.5 229.7,441.9 225.9,441.9 225.9,436.5 " /></g><g id="bbox:0.4_43.8_0.5_43.9" ><polygon points="229.7,436.5 233.6,436.5 233.6,441.9 229.7,441.9 229.7,436.5 " /></g><g id="bbox:0.5_43.8_0.6_43.9" ><polygon points="233.6,436.5 237.4,436.5 237.4,441.9 233.6,441.9 233.6,436.5 " /></g><g id="bbox:0.6_43.8_0.7_43.9" ><polygon points="237.4,436.5 241.3,436.5 241.3,441.9 237.4,441.9 237.4,436.5 " /></g><g id="bbox:0.7_43.8_0.8_43.9" ><polygon points="241.3,436.5 245.1,436.5 245.1,441.9 241.3,441.9 241.3,436.5 " /></g><g id="bbox:0.8_43.8_0.9_43.9" ><polygon points="245.1,436.5 249.0,436.5 249.0,441.9 245.1,441.9 245.1,436.5 " /></g><g id="bbox:0.9_43.8_1_43.9" ><polygon points="249.0,436.5 252.8,436.5 252.8,441.9 249.0,441.9 249.0,436.5 " /></g><g id="bbox:1_43.8_1.1_43.9" ><polygon points="252.8,436.5 256.7,436.5 256.7,441.9 252.8,441.9 252.8,436.5 " /></g><g id="bbox:1.1_43.8_1.2_43.9" ><polygon points="256.7,436.5 260.5,436.5 260.5,441.9 256.7,441.9 256.7,436.5 " /></g><g id="bbox:1.2_43.8_1.3_43.9" ><polygon points="260.5,436.5 264.4,436.5 264.4,441.9 260.5,441.9 260.5,436.5 " /></g><g id="bbox:1.3_43.8_1.4_43.9" ><polygon points="264.4,436.5 268.2,436.5 268.2,441.9 264.4,441.9 264.4,436.5 " /></g><g id="bbox:1.4_43.8_1.5_43.9" ><polygon points="268.2,436.5 272.1,436.5 272.1,441.9 268.2,441.9 268.2,436.5 " /></g><g id="bbox:1.5_43.8_1.6_43.9" ><polygon points="272.1,436.5 275.9,436.5 275.9,441.9 272.1,441.9 272.1,436.5 " /></g><g id="bbox:1.6_43.8_1.7_43.9" ><polygon points="275.9,436.5 279.8,436.5 279.8,441.9 275.9,441.9 275.9,436.5 " /></g><g id="bbox:1.7_43.8_1.8_43.9" ><polygon points="279.8,436.5 283.6,436.5 283.6,441.9 279.8,441.9 279.8,436.5 " /></g><g id="bbox:1.8_43.8_1.9_43.9" ><polygon points="283.6,436.5 287.5,436.5 287.5,441.9 283.6,441.9 283.6,436.5 " /></g><g id="bbox:1.9_43.8_2_43.9" ><polygon points="287.5,436.5 291.3,436.5 291.3,441.9 287.5,441.9 287.5,436.5 " /></g><g id="bbox:2_43.8_2.1_43.9" ><polygon points="291.3,436.5 295.2,436.5 295.2,441.9 291.3,441.9 291.3,436.5 " /></g><g id="bbox:2.1_43.8_2.2_43.9" ><polygon points="295.2,436.5 299.0,436.5 299.0,441.9 295.2,441.9 295.2,436.5 " /></g><g id="bbox:2.2_43.8_2.3_43.9" ><polygon points="299.0,436.5 302.8,436.5 302.8,441.9 299.0,441.9 299.0,436.5 " /></g><g id="bbox:2.3_43.8_2.4_43.9" ><polygon points="302.8,436.5 306.7,436.5 306.7,441.9 302.8,441.9 302.8,436.5 " /></g><g id="bbox:2.4_43.8_2.5_43.9" ><polygon points="306.7,436.5 310.5,436.5 310.5,441.9 306.7,441.9 306.7,436.5 " /></g><g id="bbox:2.5_43.8_2.6_43.9" ><polygon points="310.5,436.5 314.4,436.5 314.4,441.9 310.5,441.9 310.5,436.5 " /></g><g id="bbox:2.6_43.8_2.7_43.9" ><polygon points="314.4,436.5 318.2,436.5 318.2,441.9 314.4,441.9 314.4,436.5 " /></g><g id="bbox:2.7_43.8_2.8_43.9" ><polygon points="318.2,436.5 322.1,436.5 322.1,441.9 318.2,441.9 318.2,436.5 " /></g><g id="bbox:2.8_43.8_2.9_43.9" ><polygon points="322.1,436.5 325.9,436.5 325.9,441.9 322.1,441.9 322.1,436.5 " /></g><g id="bbox:2.9_43.8_3_43.9" ><polygon points="325.9,436.5 329.8,436.5 329.8,441.9 325.9,441.9 325.9,436.5 " /></g><g id="bbox:3_43.8_3.1_43.9" ><polygon points="329.8,436.5 333.6,436.5 333.6,441.9 329.8,441.9 329.8,436.5 " /></g><g id="bbox:3.1_43.8_3.2_43.9" ><polygon points="333.6,436.5 337.5,436.5 337.5,441.9 333.6,441.9 333.6,436.5 " /></g><g id="bbox:3.2_43.8_3.3_43.9" ><polygon points="337.5,436.5 341.3,436.5 341.3,441.9 337.5,441.9 337.5,436.5 " /></g><g id="bbox:3.3_43.8_3.4_43.9" ><polygon points="341.3,436.5 345.2,436.5 345.2,441.9 341.3,441.9 341.3,436.5 " /></g><g id="bbox:3.4_43.8_3.5_43.9" ><polygon points="345.2,436.5 349.0,436.5 349.0,441.9 345.2,441.9 345.2,436.5 " /></g><g id="bbox:3.5_43.8_3.6_43.9" ><polygon points="349.0,436.5 352.9,436.5 352.9,441.9 349.0,441.9 349.0,436.5 " /></g><g id="bbox:3.6_43.8_3.7_43.9" ><polygon points="352.9,436.5 356.7,436.5 356.7,441.9 352.9,441.9 352.9,436.5 " /></g><g id="bbox:3.7_43.8_3.8_43.9" ><polygon points="356.7,436.5 360.6,436.5 360.6,441.9 356.7,441.9 356.7,436.5 " /></g><g id="bbox:3.8_43.8_3.9_43.9" ><polygon points="360.6,436.5 364.4,436.5 364.4,441.9 360.6,441.9 360.6,436.5 " /></g><g id="bbox:3.9_43.8_4_43.9" ><polygon points="364.4,436.5 368.3,436.5 368.3,441.9 364.4,441.9 364.4,436.5 " /></g><g id="bbox:4_43.8_4.1_43.9" ><polygon points="368.3,436.5 372.1,436.5 372.1,441.9 368.3,441.9 368.3,436.5 " /></g><g id="bbox:4.1_43.8_4.2_43.9" ><polygon points="372.1,436.5 376.0,436.5 376.0,441.9 372.1,441.9 372.1,436.5 " /></g><g id="bbox:4.2_43.8_4.3_43.9" ><polygon points="376.0,436.5 379.8,436.5 379.8,441.9 376.0,441.9 376.0,436.5 " /></g><g id="bbox:4.3_43.8_4.4_43.9" ><polygon points="379.8,436.5 383.7,436.5 383.7,441.9 379.8,441.9 379.8,436.5 " /></g><g id="bbox:4.4_43.8_4.5_43.9" ><polygon points="383.7,436.5 387.5,436.5 387.5,441.9 383.7,441.9 383.7,436.5 " /></g><g id="bbox:4.5_43.8_4.6_43.9" ><polygon points="387.5,436.5 391.4,436.5 391.4,441.9 387.5,441.9 387.5,436.5 " /></g><g id="bbox:4.6_43.8_4.7_43.9" ><polygon points="391.4,436.5 395.2,436.5 395.2,441.9 391.4,441.9 391.4,436.5 " /></g><g id="bbox:4.7_43.8_4.8_43.9" ><polygon points="395.2,436.5 399.1,436.5 399.1,441.9 395.2,441.9 395.2,436.5 " /></g><g id="bbox:4.8_43.8_4.9_43.9" ><polygon points="399.1,436.5 402.9,436.5 402.9,441.9 399.1,441.9 399.1,436.5 " /></g><g id="bbox:4.9_43.8_5_43.9" ><polygon points="402.9,436.5 406.7,436.5 406.7,441.9 402.9,441.9 402.9,436.5 " /></g><g id="bbox:5_43.8_5.1_43.9" ><polygon points="406.7,436.5 410.6,436.5 410.6,441.9 406.7,441.9 406.7,436.5 " /></g><g id="bbox:5.1_43.8_5.2_43.9" ><polygon points="410.6,436.5 414.4,436.5 414.4,441.9 410.6,441.9 410.6,436.5 " /></g><g id="bbox:5.2_43.8_5.3_43.9" ><polygon points="414.4,436.5 418.3,436.5 418.3,441.9 414.4,441.9 414.4,436.5 " /></g><g id="bbox:5.3_43.8_5.4_43.9" ><polygon points="418.3,436.5 422.1,436.5 422.1,441.9 418.3,441.9 418.3,436.5 " /></g><g id="bbox:5.4_43.8_5.5_43.9" ><polygon points="422.1,436.5 426.0,436.5 426.0,441.9 422.1,441.9 422.1,436.5 " /></g><g id="bbox:5.5_43.8_5.6_43.9" ><polygon points="426.0,436.5 429.8,436.5 429.8,441.9 426.0,441.9 426.0,436.5 " /></g><g id="bbox:5.6_43.8_5.7_43.9" ><polygon points="429.8,436.5 433.7,436.5 433.7,441.9 429.8,441.9 429.8,436.5 " /></g><g id="bbox:5.7_43.8_5.8_43.9" ><polygon points="433.7,436.5 437.5,436.5 437.5,441.9 433.7,441.9 433.7,436.5 " /></g><g id="bbox:5.8_43.8_5.9_43.9" ><polygon points="437.5,436.5 441.4,436.5 441.4,441.9 437.5,441.9 437.5,436.5 " /></g><g id="bbox:5.9_43.8_6_43.9" ><polygon points="441.4,436.5 445.2,436.5 445.2,441.9 441.4,441.9 441.4,436.5 " /></g><g id="bbox:6_43.8_6.1_43.9" ><polygon points="445.2,436.5 449.1,436.5 449.1,441.9 445.2,441.9 445.2,436.5 " /></g><g id="bbox:6.1_43.8_6.2_43.9" ><polygon points="449.1,436.5 452.9,436.5 452.9,441.9 449.1,441.9 449.1,436.5 " /></g><g id="bbox:6.2_43.8_6.3_43.9" ><polygon points="452.9,436.5 456.8,436.5 456.8,441.9 452.9,441.9 452.9,436.5 " /></g><g id="bbox:6.3_43.8_6.4_43.9" ><polygon points="456.8,436.5 460.6,436.5 460.6,441.9 456.8,441.9 456.8,436.5 " /></g><g id="bbox:6.4_43.8_6.5_43.9" ><polygon points="460.6,436.5 464.5,436.5 464.5,441.9 460.6,441.9 460.6,436.5 " /></g><g id="bbox:6.5_43.8_6.6_43.9" ><polygon points="464.5,436.5 468.3,436.5 468.3,441.9 464.5,441.9 464.5,436.5 " /></g><g id="bbox:6.6_43.8_6.7_43.9" ><polygon points="468.3,436.5 472.2,436.5 472.2,441.9 468.3,441.9 468.3,436.5 " /></g><g id="bbox:6.7_43.8_6.8_43.9" ><polygon points="472.2,436.5 476.0,436.5 476.0,441.9 472.2,441.9 472.2,436.5 " /></g><g id="bbox:6.8_43.8_6.9_43.9" ><polygon points="476.0,436.5 479.9,436.5 479.9,441.9 476.0,441.9 476.0,436.5 " /></g><g id="bbox:6.9_43.8_7_43.9" ><polygon points="479.9,436.5 483.7,436.5 483.7,441. |